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

Version Description

  • Added options to define paragraph counting inside container elements
  • Added support to pin block list (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.5.2
Comparing to
See all releases

Code changes from version 2.5.0 to 2.5.2

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.5.0
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,14 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.5.0 - 2019-08-20
19
  - Improved user interface
20
  - Simplified user interface for individual post/page exceptions
@@ -40,7 +48,7 @@ Ad Inserter 2.4.21 - 2019-07-11
40
  Ad Inserter 2.4.20 - 2019-07-09
41
  - Fix for path traversal vulnerability - credit to Wilfried B�card of Synacktiv (https://synacktiv.com)
42
  - Fix for block rearrangement issues
43
- - Added experimental support to remember closed ad for specified time period (Pro only)
44
  - Added experimental support to automatically close ad after specified time period (Pro only)
45
  - Few minor bug fixes, cosmetic changes and code improvements
46
 
@@ -663,6 +671,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
663
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
664
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
665
  case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE"; break;
 
666
  case AI_CHECK_PARAGRAPHS_AFTER_MIN_MAX_WORDS: $status .= "PARAGRAPHS AFTER MIN MAX WORDS"; break;
667
  case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
668
  case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
@@ -1835,6 +1844,15 @@ function ai_admin_remove_scripts ($hook_suffix) {
1835
  // Fix for All in One Schema.org Rich Snippets plugin: remove styles loaded on Ad Inserter admin page
1836
  wp_dequeue_style ('admin_style');
1837
  wp_deregister_style ('admin_style');
 
 
 
 
 
 
 
 
 
1838
  }
1839
  }
1840
 
@@ -2460,12 +2478,38 @@ function ai_current_user_role_ok () {
2460
 
2461
 
2462
  function ai_add_meta_box_hook() {
 
2463
 
2464
  if (!ai_current_user_role_ok ()) return;
2465
 
2466
  if (is_multisite() && !is_main_site () && !multisite_exceptions_enabled ()) return;
2467
 
2468
- $screens = array ('post', 'page');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2469
 
2470
  $args = array (
2471
  'public' => true,
@@ -2922,7 +2966,7 @@ function ai_wp_head_hook () {
2922
  jQuery(window).on ('load', function () {
2923
  setTimeout (function() {
2924
  // var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
2925
- var google_auto_placed = jQuery ('.google-auto-placed ins ins ins');
2926
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">",
2927
  __('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
2928
  "</section>');
@@ -3567,6 +3611,12 @@ function ai_write_debug_info ($write_processing_log = false) {
3567
  case AI_OPTION_PARAGRAPH_TEXT_TYPE:
3568
  $settings .= "[" . $key . ": " . $obj->get_paragraph_text_type_text (false) . ']';
3569
  break;
 
 
 
 
 
 
3570
  case AI_OPTION_DISPLAY_FOR_USERS:
3571
  $settings .= "[" . $key . ": " . $obj->get_display_for_users_text (false) . ']';
3572
  break;
@@ -3574,6 +3624,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3574
  $settings .= "[" . $key . ": " . $obj->get_display_for_devices_text (false) . ']';
3575
  break;
3576
  case AI_OPTION_PARAGRAPH_TEXT:
 
3577
  case AI_OPTION_AVOID_TEXT_ABOVE:
3578
  case AI_OPTION_AVOID_TEXT_BELOW:
3579
  case AI_OPTION_HTML_SELECTOR:
@@ -4332,6 +4383,13 @@ function get_disable_footer_code () {
4332
  return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE']);
4333
  }
4334
 
 
 
 
 
 
 
 
4335
  function get_viewport_name ($viewport_number) {
4336
  global $ai_db_options;
4337
 
@@ -4653,6 +4711,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4653
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
4654
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
4655
  $option == AI_OPTION_PARAGRAPH_TAGS ||
 
4656
  $option == AI_OPTION_IP_ADDRESS_LIST ||
4657
  $option == AI_OPTION_COUNTRY_LIST) {
4658
  $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "[", "]", "'", '"'), "", $value);
@@ -4660,6 +4719,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4660
  }
4661
  elseif (
4662
  $option == AI_OPTION_PARAGRAPH_TEXT ||
 
4663
  $option == AI_OPTION_AVOID_TEXT_ABOVE ||
4664
  $option == AI_OPTION_AVOID_TEXT_BELOW
4665
  ) {
@@ -4674,7 +4734,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4674
  $option == AI_OPTION_ID_LIST ||
4675
  $option == AI_OPTION_URL_LIST ||
4676
  $option == AI_OPTION_URL_PARAMETER_LIST ||
4677
- $option == AI_OPTION_PARAGRAPH_TEXT_TYPE ||
4678
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
4679
  $option == AI_OPTION_MIN_PARAGRAPHS ||
4680
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
@@ -4810,7 +4870,11 @@ function ai_ajax_backend () {
4810
  // check_ajax_referer ("adinserter_data", "ai_check");
4811
  check_admin_referer ("adinserter_data", "ai_check");
4812
 
4813
- if (!current_user_can ('activate_plugins')) {
 
 
 
 
4814
  wp_die ();
4815
  }
4816
 
@@ -4840,10 +4904,6 @@ function ai_ajax_backend () {
4840
  if (isset ($_POST ['count'])) $preview_parameters ['count'] = $_POST ['count'];
4841
  if (isset ($_POST ['rotate'])) $preview_parameters ['rotate'] = $_POST ['rotate'];
4842
 
4843
- if (!current_user_can ('edit_plugins')) {
4844
- $preview_parameters ['php'] = false;
4845
- }
4846
-
4847
  generate_code_preview (
4848
  $block,
4849
  $preview_parameters
@@ -4853,9 +4913,6 @@ function ai_ajax_backend () {
4853
  require_once AD_INSERTER_PLUGIN_DIR.'includes/preview-adb.php';
4854
 
4855
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
4856
- if (!current_user_can ('edit_plugins')) {
4857
- $process_php = false;
4858
- }
4859
 
4860
  generate_code_preview_adb (base64_decode ($_POST ["code"]), $process_php);
4861
  }
@@ -4901,9 +4958,6 @@ function ai_ajax_backend () {
4901
  require_once AD_INSERTER_PLUGIN_DIR.'includes/editor.php';
4902
 
4903
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
4904
- if (!current_user_can ('edit_plugins')) {
4905
- $process_php = false;
4906
- }
4907
 
4908
  generate_code_editor ($_POST ["edit"], base64_decode ($_POST ["code"]), $process_php);
4909
  }
@@ -4994,7 +5048,14 @@ function ai_ajax_backend () {
4994
  }
4995
 
4996
  elseif (isset ($_GET ["list"])) {
4997
- code_block_list ();
 
 
 
 
 
 
 
4998
  }
4999
 
5000
  elseif (isset ($_GET ["adsense-list"])) {
@@ -5592,8 +5653,8 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
5592
 
5593
  .ai-debug-code {margin: 0; padding: 0; border: 0; font-family: monospace, sans-serif; font-size: 12px; line-height: 13px; background: #fff; color: #000;}
5594
 
5595
- .ai-debug-code.ai-code-org {float: left; max-width: 48%;}
5596
- .ai-debug-code.ai-code-inserted {float: right; max-width: 48%;}
5597
 
5598
  .ai-debug-block.ai-debug-default {border-color: #e00; outline-color: #e00;}
5599
  .ai-debug-bar.ai-debug-default {background: #e00;}
@@ -5725,15 +5786,14 @@ function generate_selection_css () {
5725
  function ai_settings () {
5726
  global $ai_db_options, $block_object, $wpdb, $ai_db_options_extract;
5727
 
5728
- if (!current_user_can ('activate_plugins')) {
 
 
5729
  return;
5730
  }
5731
 
5732
  if (isset ($_POST [AI_FORM_SAVE])) {
5733
 
5734
- // echo count ($_POST);
5735
- // print_r ($_POST);
5736
-
5737
  check_admin_referer ('save_adinserter_settings');
5738
 
5739
  $subpage = 'main';
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.5.2
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.5.2 - 2019-09-10
19
+ - Added options to define paragraph counting inside container elements
20
+ - Added support to pin block list (Pro only)
21
+ - Few minor bug fixes, cosmetic changes and code improvements
22
+
23
+ Ad Inserter 2.5.1 - 2019-08-24
24
+ - Few minor bug fixes (Pro only)
25
+
26
  Ad Inserter 2.5.0 - 2019-08-20
27
  - Improved user interface
28
  - Simplified user interface for individual post/page exceptions
48
  Ad Inserter 2.4.20 - 2019-07-09
49
  - Fix for path traversal vulnerability - credit to Wilfried B�card of Synacktiv (https://synacktiv.com)
50
  - Fix for block rearrangement issues
51
+ - Added experimental support to remember closed ad for specified time period (Pro only)
52
  - Added experimental support to automatically close ad after specified time period (Pro only)
53
  - Few minor bug fixes, cosmetic changes and code improvements
54
 
671
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
672
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
673
  case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE"; break;
674
+ case AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS: $status .= "PARAGRAPHS AFTER NO COUNTING INSIDE ELEMENTS"; break;
675
  case AI_CHECK_PARAGRAPHS_AFTER_MIN_MAX_WORDS: $status .= "PARAGRAPHS AFTER MIN MAX WORDS"; break;
676
  case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
677
  case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
1844
  // Fix for All in One Schema.org Rich Snippets plugin: remove styles loaded on Ad Inserter admin page
1845
  wp_dequeue_style ('admin_style');
1846
  wp_deregister_style ('admin_style');
1847
+
1848
+ // Fix for ACF for AMP plugin: remove styles loaded on Ad Inserter admin page
1849
+ wp_dequeue_style ('amp-acf-admin');
1850
+ wp_deregister_style ('amp-acf-admin');
1851
+ wp_dequeue_script ('ace_code_highlighter_js');
1852
+ wp_dequeue_script ('ace_mode_js');
1853
+ wp_dequeue_script ('custom_css_js');
1854
+ wp_dequeue_script ('field-creator');
1855
+ wp_dequeue_script ('amp_acf_field');
1856
  }
1857
  }
1858
 
2478
 
2479
 
2480
  function ai_add_meta_box_hook() {
2481
+ global $ai_wp_data, $block_object;
2482
 
2483
  if (!ai_current_user_role_ok ()) return;
2484
 
2485
  if (is_multisite() && !is_main_site () && !multisite_exceptions_enabled ()) return;
2486
 
2487
+ $exceptions_posts = false;
2488
+ $exceptions_pages = false;
2489
+ for ($block = 1; $block <= 96; $block ++) {
2490
+ $obj = $block_object [$block];
2491
+ if ($obj->get_exceptions_enabled ()) {
2492
+ if ($obj->get_display_settings_post ()) {
2493
+ $exceptions_posts = true;
2494
+ }
2495
+ if ($obj->get_display_settings_page ()) {
2496
+ $exceptions_pages = true;
2497
+ }
2498
+ if ($exceptions_posts && $exceptions_pages) {
2499
+ break;
2500
+ }
2501
+ }
2502
+ }
2503
+
2504
+ $screens = array ();
2505
+ if ($exceptions_posts) {
2506
+ $screens []= 'post';
2507
+ }
2508
+ if ($exceptions_pages) {
2509
+ $screens []= 'page';
2510
+ }
2511
+
2512
+ if (empty ($screens)) return;
2513
 
2514
  $args = array (
2515
  'public' => true,
2966
  jQuery(window).on ('load', function () {
2967
  setTimeout (function() {
2968
  // var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
2969
+ var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
2970
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">",
2971
  __('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
2972
  "</section>');
3611
  case AI_OPTION_PARAGRAPH_TEXT_TYPE:
3612
  $settings .= "[" . $key . ": " . $obj->get_paragraph_text_type_text (false) . ']';
3613
  break;
3614
+ case AI_OPTION_COUNT_INSIDE:
3615
+ $settings .= "[" . $key . ": " . $obj->get_count_inside_text (false) . ']';
3616
+ break;
3617
+ case AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN:
3618
+ $settings .= "[" . $key . ": " . $obj->get_count_inside_elements_contain_text (false) . ']';
3619
+ break;
3620
  case AI_OPTION_DISPLAY_FOR_USERS:
3621
  $settings .= "[" . $key . ": " . $obj->get_display_for_users_text (false) . ']';
3622
  break;
3624
  $settings .= "[" . $key . ": " . $obj->get_display_for_devices_text (false) . ']';
3625
  break;
3626
  case AI_OPTION_PARAGRAPH_TEXT:
3627
+ case AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT:
3628
  case AI_OPTION_AVOID_TEXT_ABOVE:
3629
  case AI_OPTION_AVOID_TEXT_BELOW:
3630
  case AI_OPTION_HTML_SELECTOR:
4383
  return ($ai_db_options [AI_OPTION_GLOBAL]['DISABLE_FOOTER_CODE']);
4384
  }
4385
 
4386
+ function get_blocks_sticky () {
4387
+ if (!function_exists ('ai_block_list_buttons')) return false;
4388
+
4389
+ $current_flags = get_option (AI_FLAGS_NAME, 0);
4390
+ return (($current_flags & AD_FLAGS_BLOCKS_STICKY) != 0);
4391
+ }
4392
+
4393
  function get_viewport_name ($viewport_number) {
4394
  global $ai_db_options;
4395
 
4711
  elseif ($option == AI_OPTION_DOMAIN_LIST ||
4712
  $option == 'NO_PARAGRAPH_COUNTING_INSIDE' ||
4713
  $option == AI_OPTION_PARAGRAPH_TAGS ||
4714
+ $option == AI_OPTION_COUNT_INSIDE_ELEMENTS ||
4715
  $option == AI_OPTION_IP_ADDRESS_LIST ||
4716
  $option == AI_OPTION_COUNTRY_LIST) {
4717
  $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "[", "]", "'", '"'), "", $value);
4719
  }
4720
  elseif (
4721
  $option == AI_OPTION_PARAGRAPH_TEXT ||
4722
+ $option == AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT ||
4723
  $option == AI_OPTION_AVOID_TEXT_ABOVE ||
4724
  $option == AI_OPTION_AVOID_TEXT_BELOW
4725
  ) {
4734
  $option == AI_OPTION_ID_LIST ||
4735
  $option == AI_OPTION_URL_LIST ||
4736
  $option == AI_OPTION_URL_PARAMETER_LIST ||
4737
+ // $option == AI_OPTION_PARAGRAPH_TEXT_TYPE ||
4738
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
4739
  $option == AI_OPTION_MIN_PARAGRAPHS ||
4740
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
4870
  // check_ajax_referer ("adinserter_data", "ai_check");
4871
  check_admin_referer ("adinserter_data", "ai_check");
4872
 
4873
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) {
4874
+ wp_die ();
4875
+ }
4876
+
4877
+ if (!current_user_can ('manage_options')) {
4878
  wp_die ();
4879
  }
4880
 
4904
  if (isset ($_POST ['count'])) $preview_parameters ['count'] = $_POST ['count'];
4905
  if (isset ($_POST ['rotate'])) $preview_parameters ['rotate'] = $_POST ['rotate'];
4906
 
 
 
 
 
4907
  generate_code_preview (
4908
  $block,
4909
  $preview_parameters
4913
  require_once AD_INSERTER_PLUGIN_DIR.'includes/preview-adb.php';
4914
 
4915
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
 
 
 
4916
 
4917
  generate_code_preview_adb (base64_decode ($_POST ["code"]), $process_php);
4918
  }
4958
  require_once AD_INSERTER_PLUGIN_DIR.'includes/editor.php';
4959
 
4960
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
 
 
 
4961
 
4962
  generate_code_editor ($_POST ["edit"], base64_decode ($_POST ["code"]), $process_php);
4963
  }
5048
  }
5049
 
5050
  elseif (isset ($_GET ["list"])) {
5051
+ $search_text = trim ($_GET ["list"]);
5052
+
5053
+ $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
5054
+
5055
+ $start = trim ($_GET ["start"]);
5056
+ $end = trim ($_GET ["end"]);
5057
+
5058
+ code_block_list ($start, $end, $search_text, $show_all_blocks);
5059
  }
5060
 
5061
  elseif (isset ($_GET ["adsense-list"])) {
5653
 
5654
  .ai-debug-code {margin: 0; padding: 0; border: 0; font-family: monospace, sans-serif; font-size: 12px; line-height: 13px; background: #fff; color: #000;}
5655
 
5656
+ .ai-debug-code.ai-code-org {float: left; max-width: 47%;}
5657
+ .ai-debug-code.ai-code-inserted {float: right; max-width: 47%;}
5658
 
5659
  .ai-debug-block.ai-debug-default {border-color: #e00; outline-color: #e00;}
5660
  .ai-debug-bar.ai-debug-default {background: #e00;}
5786
  function ai_settings () {
5787
  global $ai_db_options, $block_object, $wpdb, $ai_db_options_extract;
5788
 
5789
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) return;
5790
+
5791
+ if (!current_user_can ('manage_options')) {
5792
  return;
5793
  }
5794
 
5795
  if (isset ($_POST [AI_FORM_SAVE])) {
5796
 
 
 
 
5797
  check_admin_referer ('save_adinserter_settings');
5798
 
5799
  $subpage = 'main';
class.php CHANGED
@@ -557,6 +557,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
557
  $this->wp_options [AI_OPTION_MIN_PARAGRAPH_WORDS] = AD_EMPTY_DATA;
558
  $this->wp_options [AI_OPTION_MAX_PARAGRAPH_WORDS] = AD_EMPTY_DATA;
559
  $this->wp_options [AI_OPTION_COUNT_INSIDE_BLOCKQUOTE] = AI_DISABLED;
 
 
 
 
560
  $this->wp_options [AI_OPTION_PARAGRAPH_TAGS] = DEFAULT_PARAGRAPH_TAGS;
561
  $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] = AD_EMPTY_DATA;
562
  $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_BELOW] = AD_EMPTY_DATA;
@@ -1446,6 +1450,58 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1446
  return $option;
1447
  }
1448
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1449
  public function get_avoid_paragraphs_above(){
1450
  $option = isset ($this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE]) ? $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] : "";
1451
  return $option;
@@ -2358,7 +2414,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2358
  }
2359
 
2360
  $processed_code = $ads [$counter_for_filter - 1];
2361
- } else $processed_code = '';
 
 
 
2362
  } else $processed_code = $ads [rand (0, count ($ads) - 1)];
2363
  }
2364
  }
@@ -2546,6 +2605,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2546
  }
2547
  }
2548
 
 
 
 
 
2549
  break;
2550
 
2551
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
@@ -2679,6 +2742,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2679
  if ($ai_wp_data [AI_WP_AMP_PAGE]) {
2680
  if (!$this->get_enable_amp ()) {
2681
  $processed_code = '';
 
2682
  $this->hide_debug_labels = true;
2683
  ai_log ('BLOCK ' . $this->number . ' NOT ENABLED FOR AMP PAGES - EMPTY CODE');
2684
  }
@@ -2699,6 +2763,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2699
 
2700
  break;
2701
  case AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC:
 
 
 
 
2702
  $this->w3tc_code .= '$ai_amp_separator = \'' . AD_AMP_SEPARATOR . '\'; $ai_amp_page = ' . ($ai_wp_data [AI_WP_AMP_PAGE] ? 'true' : 'false') . '; $ai_amp_enabled = ' . $this->get_enable_amp () . ';';
2703
 
2704
  // Fix to prevent converting && into &amp;&amp; on AMP pages
@@ -2710,7 +2778,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2710
  $this->w3tc_code .= 'if (strpos ($ai_code, $ai_head_separator) !== false) {$codes = explode ($ai_head_separator, $ai_code); $ai_code = trim ($codes [1]); } $ai_enabled = true;';
2711
 
2712
  if ($additional_code != '') {
2713
- $this->w3tc_code .= '$ai_code = base64_decode (\''.base64_encode ($additional_code).'\') . $ai_code;';
2714
  }
2715
 
2716
  // Lazy loading code for W3TC cases with ROTATE separator
@@ -3998,6 +4066,112 @@ echo '</body>
3998
  if (array_sum ($active_paragraph_positions) == 0) return $content;
3999
  }
4000
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4001
 
4002
  if (!$before_image) {
4003
  $paragraph_min_words = intval ($this->get_minimum_paragraph_words());
@@ -4653,6 +4827,112 @@ echo '</body>
4653
  if (array_sum ($active_paragraph_positions) == 0) return $content;
4654
  }
4655
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4656
  if (!$after_image) {
4657
  $paragraph_min_words = intval ($this->get_minimum_paragraph_words());
4658
  $paragraph_max_words = intval ($this->get_maximum_paragraph_words());
557
  $this->wp_options [AI_OPTION_MIN_PARAGRAPH_WORDS] = AD_EMPTY_DATA;
558
  $this->wp_options [AI_OPTION_MAX_PARAGRAPH_WORDS] = AD_EMPTY_DATA;
559
  $this->wp_options [AI_OPTION_COUNT_INSIDE_BLOCKQUOTE] = AI_DISABLED;
560
+ $this->wp_options [AI_OPTION_COUNT_INSIDE] = DEFAULT_COUNT_INSIDE;
561
+ $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS] = AD_EMPTY_DATA;
562
+ $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN] = DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN;
563
+ $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT] = AD_EMPTY_DATA;
564
  $this->wp_options [AI_OPTION_PARAGRAPH_TAGS] = DEFAULT_PARAGRAPH_TAGS;
565
  $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] = AD_EMPTY_DATA;
566
  $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_BELOW] = AD_EMPTY_DATA;
1450
  return $option;
1451
  }
1452
 
1453
+ public function get_count_inside (){
1454
+ $option = isset ($this->wp_options [AI_OPTION_COUNT_INSIDE]) ? $this->wp_options [AI_OPTION_COUNT_INSIDE] : DEFAULT_COUNT_INSIDE;
1455
+ return $option;
1456
+ }
1457
+
1458
+ public function get_count_inside_text ($translate = true){
1459
+ switch ($this->get_count_inside ()) {
1460
+ case AI_DO_NOT_COUNT:
1461
+ if (!$translate) return AI_TEXT_ENG_DO_NOT_COUNT;
1462
+ return AI_TEXT_DO_NOT_COUNT;
1463
+ break;
1464
+ case AI_COUNT_ONLY:
1465
+ if (!$translate) return AI_TEXT_ENG_COUNT_ONLY;
1466
+ return AI_TEXT_COUNT_ONLY;
1467
+ break;
1468
+ default:
1469
+ return '';
1470
+ break;
1471
+ }
1472
+ }
1473
+
1474
+ public function get_count_inside_elements (){
1475
+ $option = isset ($this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS]) ? $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS] : "";
1476
+ return $option;
1477
+ }
1478
+
1479
+ public function get_count_inside_elements_contain (){
1480
+ $option = isset ($this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN]) ? $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN] : DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN;
1481
+ return $option;
1482
+ }
1483
+
1484
+ public function get_count_inside_elements_contain_text ($translate = true){
1485
+ switch ($this->get_count_inside_elements_contain ()) {
1486
+ case AI_CONTAIN:
1487
+ if (!$translate) return AI_TEXT_ENG_CONTAIN;
1488
+ return AI_TEXT_CONTAIN;
1489
+ break;
1490
+ case AI_DO_NOT_CONTAIN:
1491
+ if (!$translate) return AI_TEXT_ENG_DO_NOT_CONTAIN;
1492
+ return AI_TEXT_DO_NOT_CONTAIN;
1493
+ break;
1494
+ default:
1495
+ return '';
1496
+ break;
1497
+ }
1498
+ }
1499
+
1500
+ public function get_count_inside_elements_text (){
1501
+ $option = isset ($this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT]) ? $this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT] : "";
1502
+ return $option;
1503
+ }
1504
+
1505
  public function get_avoid_paragraphs_above(){
1506
  $option = isset ($this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE]) ? $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] : "";
1507
  return $option;
2414
  }
2415
 
2416
  $processed_code = $ads [$counter_for_filter - 1];
2417
+ } else {
2418
+ $processed_code = '';
2419
+ $additional_code = '';
2420
+ }
2421
  } else $processed_code = $ads [rand (0, count ($ads) - 1)];
2422
  }
2423
  }
2605
  }
2606
  }
2607
 
2608
+ if ($processed_code == '') {
2609
+ $additional_code = '';
2610
+ }
2611
+
2612
  break;
2613
 
2614
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
2742
  if ($ai_wp_data [AI_WP_AMP_PAGE]) {
2743
  if (!$this->get_enable_amp ()) {
2744
  $processed_code = '';
2745
+ $additional_code = '';
2746
  $this->hide_debug_labels = true;
2747
  ai_log ('BLOCK ' . $this->number . ' NOT ENABLED FOR AMP PAGES - EMPTY CODE');
2748
  }
2763
 
2764
  break;
2765
  case AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC:
2766
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
2767
+ $this->labels->class = $ai_wp_data [AI_WP_AMP_PAGE] ? 'ai-debug-amp' : 'ai-debug-default';
2768
+ }
2769
+
2770
  $this->w3tc_code .= '$ai_amp_separator = \'' . AD_AMP_SEPARATOR . '\'; $ai_amp_page = ' . ($ai_wp_data [AI_WP_AMP_PAGE] ? 'true' : 'false') . '; $ai_amp_enabled = ' . $this->get_enable_amp () . ';';
2771
 
2772
  // Fix to prevent converting && into &amp;&amp; on AMP pages
2778
  $this->w3tc_code .= 'if (strpos ($ai_code, $ai_head_separator) !== false) {$codes = explode ($ai_head_separator, $ai_code); $ai_code = trim ($codes [1]); } $ai_enabled = true;';
2779
 
2780
  if ($additional_code != '') {
2781
+ $this->w3tc_code .= 'if ($ai_code != \'\') $ai_code = base64_decode (\''.base64_encode ($additional_code).'\') . $ai_code;';
2782
  }
2783
 
2784
  // Lazy loading code for W3TC cases with ROTATE separator
4066
  if (array_sum ($active_paragraph_positions) == 0) return $content;
4067
  }
4068
 
4069
+ $element_tags = $this->get_count_inside_elements ();
4070
+ if ($element_tags != '') {
4071
+ $special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
4072
+
4073
+ $count_inside = $this->get_count_inside ();
4074
+ $element_text_type = $this->get_count_inside_elements_contain ();
4075
+
4076
+ $element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
4077
+ if (strpos ($element_text, ",") !== false) {
4078
+ $element_texts = explode (',', $element_text);
4079
+ }
4080
+ elseif (trim ($element_text) != '') $element_texts = array (trim ($element_text)); else $element_texts = array ();
4081
+
4082
+ $special_element_offsets = array ();
4083
+
4084
+ foreach ($special_element_tags_array as $special_element_tag) {
4085
+ preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
4086
+
4087
+ $nesting = array ();
4088
+ $special_elements = $special_elements [0];
4089
+ foreach ($special_elements as $index => $special_element) {
4090
+ if (isset ($special_elements [$index + 1][0])) {
4091
+ $tag1 = strtolower ($special_element [0]);
4092
+ $tag2 = strtolower ($special_elements [$index + 1][0]);
4093
+
4094
+ $start_offset = $special_element [1];
4095
+ $nesting_ended = false;
4096
+
4097
+ $tag1_start = $tag1 == "<$special_element_tag";
4098
+ $tag2_start = $tag2 == "<$special_element_tag";
4099
+ $tag1_end = $tag1 == "</$special_element_tag";
4100
+ $tag2_end = $tag2 == "</$special_element_tag";
4101
+
4102
+ if ($tag1_start && $tag2_start) {
4103
+ array_push ($nesting, $start_offset);
4104
+ continue;
4105
+ }
4106
+ elseif ($tag1_end && $tag2_end) {
4107
+ $start_offset = array_pop ($nesting);
4108
+ if (count ($nesting) == 0) $nesting_ended = true;
4109
+ }
4110
+
4111
+ if (count ($nesting) != 0) continue;
4112
+
4113
+ if (($nesting_ended || $tag1_start) && $tag2_end) {
4114
+
4115
+ if ($multibyte) {
4116
+ $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)) + 1, mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
4117
+ } else {
4118
+ $element_offsets = array ($start_offset + 1, $special_elements [$index + 1][1]);
4119
+ }
4120
+
4121
+ if (!empty ($element_texts)) {
4122
+ $check = false;
4123
+ foreach ($element_texts as $element_text) {
4124
+ if (stripos (substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]), $element_text)) {
4125
+ $check = true;
4126
+ break;
4127
+ }
4128
+ }
4129
+ switch ($element_text_type) {
4130
+ case AI_CONTAIN:
4131
+ if ($check) {
4132
+ $special_element_offsets []= $element_offsets;
4133
+ }
4134
+ break;
4135
+ default:
4136
+ if (!$check) {
4137
+ $special_element_offsets []= $element_offsets;
4138
+ }
4139
+ break;
4140
+ }
4141
+ } else {
4142
+ $special_element_offsets []= $element_offsets;
4143
+ }
4144
+ }
4145
+ }
4146
+ }
4147
+ }
4148
+
4149
+ $inside_special_element = array ();
4150
+
4151
+ if (count ($special_element_offsets) != 0) {
4152
+ foreach ($special_element_offsets as $special_element_offset) {
4153
+ foreach ($paragraph_positions as $paragraph_position) {
4154
+ if ($paragraph_position >= $special_element_offset [0] + 1 && $paragraph_position <= $special_element_offset [1]) $inside_special_element [] = $paragraph_position;
4155
+ }
4156
+ }
4157
+ }
4158
+
4159
+ foreach ($paragraph_positions as $index => $paragraph_position) {
4160
+ $paragraph_inside = in_array ($paragraph_position, $inside_special_element);
4161
+ switch ($count_inside) {
4162
+ case AI_COUNT_ONLY:
4163
+ if (!$paragraph_inside) $active_paragraph_positions [$index] = 0;
4164
+ break;
4165
+ default:
4166
+ if ($paragraph_inside) $active_paragraph_positions [$index] = 0;
4167
+ break;
4168
+ }
4169
+ }
4170
+
4171
+ $ai_last_check = AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS;
4172
+ if (array_sum ($active_paragraph_positions) == 0) return $content;
4173
+ }
4174
+
4175
 
4176
  if (!$before_image) {
4177
  $paragraph_min_words = intval ($this->get_minimum_paragraph_words());
4827
  if (array_sum ($active_paragraph_positions) == 0) return $content;
4828
  }
4829
 
4830
+ $element_tags = $this->get_count_inside_elements ();
4831
+ if ($element_tags != '') {
4832
+ $special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
4833
+
4834
+ $count_inside = $this->get_count_inside ();
4835
+ $element_text_type = $this->get_count_inside_elements_contain ();
4836
+
4837
+ $element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
4838
+ if (strpos ($element_text, ",") !== false) {
4839
+ $element_texts = explode (',', $element_text);
4840
+ }
4841
+ elseif (trim ($element_text) != '') $element_texts = array (trim ($element_text)); else $element_texts = array ();
4842
+
4843
+ $special_element_offsets = array ();
4844
+
4845
+ foreach ($special_element_tags_array as $special_element_tag) {
4846
+ preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
4847
+
4848
+ $nesting = array ();
4849
+ $special_elements = $special_elements [0];
4850
+ foreach ($special_elements as $index => $special_element) {
4851
+ if (isset ($special_elements [$index + 1][0])) {
4852
+ $tag1 = strtolower ($special_element [0]);
4853
+ $tag2 = strtolower ($special_elements [$index + 1][0]);
4854
+
4855
+ $start_offset = $special_element [1];
4856
+ $nesting_ended = false;
4857
+
4858
+ $tag1_start = $tag1 == "<$special_element_tag";
4859
+ $tag2_start = $tag2 == "<$special_element_tag";
4860
+ $tag1_end = $tag1 == "</$special_element_tag";
4861
+ $tag2_end = $tag2 == "</$special_element_tag";
4862
+
4863
+ if ($tag1_start && $tag2_start) {
4864
+ array_push ($nesting, $start_offset);
4865
+ continue;
4866
+ }
4867
+ elseif ($tag1_end && $tag2_end) {
4868
+ $start_offset = array_pop ($nesting);
4869
+ if (count ($nesting) == 0) $nesting_ended = true;
4870
+ }
4871
+
4872
+ if (count ($nesting) != 0) continue;
4873
+
4874
+ if (($nesting_ended || $tag1_start) && $tag2_end) {
4875
+
4876
+ if ($multibyte) {
4877
+ $element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)), mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
4878
+ } else {
4879
+ $element_offsets = array ($start_offset, $special_elements [$index + 1][1]);
4880
+ }
4881
+
4882
+ if (!empty ($element_texts)) {
4883
+ $check = false;
4884
+ foreach ($element_texts as $element_text) {
4885
+ if (stripos (substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]), $element_text)) {
4886
+ $check = true;
4887
+ break;
4888
+ }
4889
+ }
4890
+ switch ($element_text_type) {
4891
+ case AI_CONTAIN:
4892
+ if ($check) {
4893
+ $special_element_offsets []= $element_offsets;
4894
+ }
4895
+ break;
4896
+ default:
4897
+ if (!$check) {
4898
+ $special_element_offsets []= $element_offsets;
4899
+ }
4900
+ break;
4901
+ }
4902
+ } else {
4903
+ $special_element_offsets []= $element_offsets;
4904
+ }
4905
+ }
4906
+ }
4907
+ }
4908
+ }
4909
+
4910
+ $inside_special_element = array ();
4911
+
4912
+ if (count ($special_element_offsets) != 0) {
4913
+ foreach ($special_element_offsets as $special_element_offset) {
4914
+ foreach ($paragraph_positions as $paragraph_position) {
4915
+ if ($paragraph_position >= $special_element_offset [0] && $paragraph_position <= $special_element_offset [1]) $inside_special_element [] = $paragraph_position;
4916
+ }
4917
+ }
4918
+ }
4919
+
4920
+ foreach ($paragraph_positions as $index => $paragraph_position) {
4921
+ $paragraph_inside = in_array ($paragraph_position, $inside_special_element);
4922
+ switch ($count_inside) {
4923
+ case AI_COUNT_ONLY:
4924
+ if (!$paragraph_inside) $active_paragraph_positions [$index] = 0;
4925
+ break;
4926
+ default:
4927
+ if ($paragraph_inside) $active_paragraph_positions [$index] = 0;
4928
+ break;
4929
+ }
4930
+ }
4931
+
4932
+ $ai_last_check = AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS;
4933
+ if (array_sum ($active_paragraph_positions) == 0) return $content;
4934
+ }
4935
+
4936
  if (!$after_image) {
4937
  $paragraph_min_words = intval ($this->get_minimum_paragraph_words());
4938
  $paragraph_max_words = intval ($this->get_maximum_paragraph_words());
constants.php CHANGED
@@ -5,6 +5,7 @@
5
 
6
  define ('AI_OPTION_NAME', 'ad_inserter');
7
  define ('AI_EXTRACT_NAME', 'ad_inserter_extract');
 
8
  define ('AI_INSTALL_NAME', 'ai-install');
9
  define ('AI_ADS_TXT_NAME', 'ai-ads-txt');
10
  define ('AI_OPTION_GLOBAL', 'global');
@@ -30,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
30
  define ('AD_INSERTER_NAME', 'Ad Inserter');
31
 
32
  if (!defined( 'AD_INSERTER_VERSION'))
33
- define ('AD_INSERTER_VERSION', '2.5.0');
34
 
35
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
36
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -49,6 +50,8 @@ define ('AD_ZERO', '0');
49
  define ('AD_ONE', '1');
50
  define ('AD_TWO', '2');
51
 
 
 
52
  // Old options
53
  define ('AD_OPTIONS', 'AdInserterOptions'); // general plugin options
54
  define ('AD_ADx_OPTIONS', 'AdInserter#Options');
@@ -84,6 +87,10 @@ define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
84
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
85
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
86
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
 
 
 
 
87
  define ('AI_OPTION_MIN_WORDS', 'min_words');
88
  define ('AI_OPTION_MAX_WORDS', 'max_words');
89
  define ('AI_OPTION_MIN_PARAGRAPH_WORDS', 'min_paragraph_words');
@@ -470,7 +477,6 @@ define('AI_ALIGNMENT_CSS_AMP_LEFT', 'display: flex; justify-content: flex-
470
  define('AI_ALIGNMENT_CSS_AMP_RIGHT', 'display: flex; justify-content: flex-end;');
471
  define('AI_ALIGNMENT_CSS_AMP_CENTER', 'display: flex; justify-content: center;');
472
 
473
-
474
  // List Type - deprecated
475
  define('AD_BLACK_LIST', 'Black List');
476
  define('AD_WHITE_LIST', 'White List');
@@ -534,6 +540,12 @@ define('AI_DO_NOT_CONTAIN', 1);
534
  define('AI_TEXT_ENG_CONTAIN', 'contain');
535
  define('AI_TEXT_ENG_DO_NOT_CONTAIN', 'do not contain');
536
 
 
 
 
 
 
 
537
 
538
  // Avoid text action - deprecated
539
  define('AD_DO_NOT_INSERT', 'do not insert');
@@ -827,6 +839,8 @@ define ('DEFAULT_MAX_CLICKS', '');
827
  define ('DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD', '');
828
  define ('DEFAULT_LIMIT_CLICKS_TIME_PERIOD', '');
829
  define ('DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION', AI_DISABLED);
 
 
830
 
831
  define ('AI_ADBLOCKING_DETECTION', true);
832
  define ('AI_NORMAL_HEADER_STYLES', true);
@@ -951,6 +965,7 @@ define ('AI_CHECK_MAX_IMPRESSIONS' , 57);
951
  define ('AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 58);
952
  define ('AI_CHECK_MAX_CLICKS', 59);
953
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
 
954
 
955
 
956
  define ('AI_PT_NONE', - 1);
5
 
6
  define ('AI_OPTION_NAME', 'ad_inserter');
7
  define ('AI_EXTRACT_NAME', 'ad_inserter_extract');
8
+ define ('AI_FLAGS_NAME', 'ad_inserter_flags');
9
  define ('AI_INSTALL_NAME', 'ai-install');
10
  define ('AI_ADS_TXT_NAME', 'ai-ads-txt');
11
  define ('AI_OPTION_GLOBAL', 'global');
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.5.2');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
50
  define ('AD_ONE', '1');
51
  define ('AD_TWO', '2');
52
 
53
+ define ('AD_FLAGS_BLOCKS_STICKY', 0x01);
54
+
55
  // Old options
56
  define ('AD_OPTIONS', 'AdInserterOptions'); // general plugin options
57
  define ('AD_ADx_OPTIONS', 'AdInserter#Options');
87
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
88
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
89
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
90
+ define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
91
+ define ('AI_OPTION_COUNT_INSIDE_ELEMENTS', 'count_inside_el');
92
+ define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN','count_inside_el_contain');
93
+ define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT', 'count_inside_el_text');
94
  define ('AI_OPTION_MIN_WORDS', 'min_words');
95
  define ('AI_OPTION_MAX_WORDS', 'max_words');
96
  define ('AI_OPTION_MIN_PARAGRAPH_WORDS', 'min_paragraph_words');
477
  define('AI_ALIGNMENT_CSS_AMP_RIGHT', 'display: flex; justify-content: flex-end;');
478
  define('AI_ALIGNMENT_CSS_AMP_CENTER', 'display: flex; justify-content: center;');
479
 
 
480
  // List Type - deprecated
481
  define('AD_BLACK_LIST', 'Black List');
482
  define('AD_WHITE_LIST', 'White List');
540
  define('AI_TEXT_ENG_CONTAIN', 'contain');
541
  define('AI_TEXT_ENG_DO_NOT_CONTAIN', 'do not contain');
542
 
543
+ define('AI_DO_NOT_COUNT', 0);
544
+ define('AI_COUNT_ONLY', 1);
545
+
546
+ define('AI_TEXT_ENG_DO_NOT_COUNT', 'Do not count');
547
+ define('AI_TEXT_ENG_COUNT_ONLY', 'Count only');
548
+
549
 
550
  // Avoid text action - deprecated
551
  define('AD_DO_NOT_INSERT', 'do not insert');
839
  define ('DEFAULT_LIMIT_CLICKS_PER_TIME_PERIOD', '');
840
  define ('DEFAULT_LIMIT_CLICKS_TIME_PERIOD', '');
841
  define ('DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION', AI_DISABLED);
842
+ define ('DEFAULT_COUNT_INSIDE', AI_DO_NOT_COUNT);
843
+ define ('DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN', AI_CONTAIN);
844
 
845
  define ('AI_ADBLOCKING_DETECTION', true);
846
  define ('AI_NORMAL_HEADER_STYLES', true);
965
  define ('AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 58);
966
  define ('AI_CHECK_MAX_CLICKS', 59);
967
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
968
+ define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
969
 
970
 
971
  define ('AI_PT_NONE', - 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.5.0"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -484,13 +484,13 @@ div.automatic-insertion img {
484
  vertical-align: top;
485
  }
486
 
487
- .checkbox-button.on.dashicons {
488
  color: #5f76ff;
489
  }
490
 
491
- .checkbox-button.dashicons.on {
492
- color: red;
493
- }
494
 
495
  .checkbox-button.dashicons.green {
496
  color: #0d0;
@@ -500,9 +500,9 @@ div.automatic-insertion img {
500
  color: #00f;
501
  }
502
 
503
- .checkbox-button.dashicons.blue-active {
504
- color: #66f;
505
- }
506
 
507
  .checkbox-button.dashicons.red {
508
  color: #f00;
@@ -512,11 +512,11 @@ div.automatic-insertion img {
512
  color: #90f;
513
  }
514
 
515
- .checkbox-button.light-blue.dashicons {
516
  color: #b0d2fd;
517
  }
518
 
519
- .checkbox-button.light-red.dashicons {
520
  color: #ff8585;
521
  }
522
 
@@ -1247,7 +1247,7 @@ img.automatic-insertion.preview {
1247
  background-size: 160px 112px;
1248
  }
1249
 
1250
- .tracking-disabled .checkbox-icon.icon-tracking.on {
1251
  background: url(images/icons.png) -32px -32px;
1252
  background-size: 160px 112px;
1253
  }
1
  #ai-data {
2
+ font-family: "2.5.2"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
484
  vertical-align: top;
485
  }
486
 
487
+ .checkbox-button.dashicons.on {
488
  color: #5f76ff;
489
  }
490
 
491
+ /*.checkbox-button.dashicons.on {*/
492
+ /* color: red;*/
493
+ /*}*/
494
 
495
  .checkbox-button.dashicons.green {
496
  color: #0d0;
500
  color: #00f;
501
  }
502
 
503
+ /*.checkbox-button.dashicons.blue-active {*/
504
+ /* color: #66f;*/
505
+ /*}*/
506
 
507
  .checkbox-button.dashicons.red {
508
  color: #f00;
512
  color: #90f;
513
  }
514
 
515
+ .checkbox-button.dashicons.light-blue {
516
  color: #b0d2fd;
517
  }
518
 
519
+ .checkbox-button.dashicons.light-red {
520
  color: #ff8585;
521
  }
522
 
1247
  background-size: 160px 112px;
1248
  }
1249
 
1250
+ .tracking-disabled .checkbox-icon.size-img16.icon-tracking.on {
1251
  background: url(images/icons.png) -32px -32px;
1252
  background-size: 160px 112px;
1253
  }
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.5.0";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -90,6 +90,7 @@ var AI_STICK_TO_THE_BOTTOM = 3;
90
 
91
  var AI_ANIMATION_NONE = 0;
92
 
 
93
  var before_update_selection_from_list = null;
94
 
95
  /*
@@ -1649,13 +1650,18 @@ jQuery(document).ready(function($) {
1649
  process_scheduling_dates (block);
1650
  }
1651
 
1652
-
1653
  $("#adb-block-replacement-"+block).hide();
1654
  var adb_block_action = $("select#adb-block-action-"+block).val();
1655
  if (adb_block_action == AI_ADB_BLOCK_ACTION_REPLACE) {
1656
  $("#adb-block-replacement-"+block).show();
1657
  }
1658
 
 
 
 
 
 
 
1659
  if (syntax_highlighting) configure_editor_language (block);
1660
 
1661
  check_insertion (block);
@@ -2255,6 +2261,11 @@ jQuery(document).ready(function($) {
2255
  });
2256
 
2257
 
 
 
 
 
 
2258
  $("input#process-php-"+tab).change (function() {
2259
  var block = $(this).attr('id').replace ("process-php-", "");
2260
  process_display_elements (block);
@@ -4284,16 +4295,46 @@ jQuery(document).ready(function($) {
4284
  }
4285
 
4286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4287
  function reload_list () {
4288
  list_search_reload = false;
4289
  var list = encodeURIComponent ($("#ai-list-search").val());
4290
- var all = + !$("#ai-load-all").parent ().find ('.checkbox-icon').hasClass ('on');
4291
- // var nonce = $("#ai-form").attr ('nonce');
4292
 
4293
  var rearrange_controls = $('#list-rearrange-controls');
4294
  var rearrange = rearrange_controls.hasClass ('rearrange')
 
4295
  rearrange_controls.removeClass ('rearrange').hide ();
4296
- $("#ai-rearrange").parent ().find ('.checkbox-icon').removeClass ('on');
4297
 
4298
  var rearrange_data = '';
4299
  if (rearrange) {
@@ -4317,32 +4358,34 @@ jQuery(document).ready(function($) {
4317
  data_container.html (message);
4318
  if (debug) console.log (message);
4319
  } else {
4320
- $(".ai-tab-link").click (function () {
4321
- var tab = $(this).data ('tab') - start;
4322
- $("#ai-tab-container").tabs ({active: tab});
4323
- });
4324
 
4325
- $("label.ai-copy-block").click (function () {
4326
- var block = $(this).closest ('tr').data ('block');
4327
 
4328
- load_saved_settings_to_clipboard (block, true);
4329
- });
4330
 
4331
- $("label.ai-preview-block").click (function () {
4332
- var block = $(this).closest ('tr').data ('block');
4333
 
4334
- var window_width = 820;
4335
- var window_height = 820;
4336
- var window_left = 100;
4337
- var window_top = (screen.height / 2) - (820 / 2);
4338
- // var nonce = $("#ai-form").attr ('nonce');
4339
 
4340
- var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
4341
- 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);
4342
- });
4343
 
4344
 
4345
- data_container.disableSelection();
 
 
4346
 
4347
  if (rearrange) reload_settings ();
4348
  }
@@ -4783,7 +4826,8 @@ jQuery(document).ready(function($) {
4783
  });
4784
  }
4785
  } catch (error) {
4786
- error_message.find ('.ai-error-message-text').text ('JSON error');
 
4787
  error_message.show ();
4788
  console.log ("AI CHECK PAGES: JSON error decoding available positions: " + data);
4789
  }
@@ -5081,9 +5125,6 @@ jQuery(document).ready(function($) {
5081
 
5082
  $('.header button').button().show ();
5083
 
5084
- // $('#dummy-ranges').hide();
5085
- // $('#ai-ranges').show();
5086
-
5087
  $("#ai-form").submit (function (event) {
5088
  for (var tab = start; tab <= end; tab ++) {
5089
  remove_default_values (tab);
@@ -5139,7 +5180,7 @@ jQuery(document).ready(function($) {
5139
  if ($("#page-checker-container").is(':visible')) {
5140
  $(".page-checker-button").addClass ('blue');
5141
  $("#page-checker-button").addClass ('blue');
5142
- reload_list ();
5143
  } else {
5144
  $(".page-checker-button").removeClass ('blue');
5145
  $("#page-checker-button").removeClass ('blue');
@@ -5148,24 +5189,26 @@ jQuery(document).ready(function($) {
5148
 
5149
  $("#ai-list").click (function () {
5150
 
 
 
5151
  var container = $("#ai-list-container");
5152
- container.toggle ();
 
 
 
 
5153
 
5154
  if (container.is(':visible')) {
5155
- $("#ai-list").addClass ('blue');
 
5156
 
 
5157
  $("#plugin_name").hide ();
5158
  $("#block-ranges").show ();
5159
-
5160
- reload_list ();
5161
  } else {
5162
- $("#ai-list").removeClass ('blue');
5163
-
5164
  $("#plugin_name").show ();
5165
  $("#block-ranges").hide ();
5166
  }
5167
-
5168
- $("#ai-ranges").toggle ();
5169
  });
5170
 
5171
  $("#ai-list-search").keyup (function (event) {
@@ -5176,17 +5219,25 @@ jQuery(document).ready(function($) {
5176
  });
5177
 
5178
  $("#ai-load-all").click (function () {
5179
- $(this).parent ().find ('.checkbox-icon').toggleClass ('on');
5180
  reload_list ();
5181
  });
5182
 
5183
  $("#ai-rearrange").click (function () {
5184
- $(this).parent ().find ('.checkbox-icon').toggleClass ('on');
5185
 
5186
  var data_container = $("#ai-list-data");
5187
  var rearrange_controls = $('#list-rearrange-controls');
5188
- if ($(this).parent ().find ('.checkbox-icon').hasClass ('on')) {
5189
- $("#ai-rearrange").parent ().find ('.checkbox-button').attr ('title', ai_admin.cancel_rearrangement);
 
 
 
 
 
 
 
 
5190
  rearrange_controls.show ();
5191
  data_container.find ('tbody').sortable ({
5192
  start: function (event, ui) {$('#list-save').show ();},
@@ -5194,7 +5245,15 @@ jQuery(document).ready(function($) {
5194
  }).css ('cursor', 'move');
5195
  } else {
5196
  data_container.find ('tbody').sortable ("disable");
5197
- $("#ai-rearrange").parent ().find ('.checkbox-button').attr ('title', ai_admin.rearrange_block_order);
 
 
 
 
 
 
 
 
5198
  $('#list-save').hide ();
5199
  rearrange_controls.hide ();
5200
  reload_list ();
@@ -5206,6 +5265,27 @@ jQuery(document).ready(function($) {
5206
  reload_list ();
5207
  });
5208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5209
  if ($("#maxmind-db-status").hasClass ('maxmind-db-missing')) {
5210
  // var nonce = $("#ai-form").attr ('nonce');
5211
  var page = ajaxurl+"?action=ai_ajax_backend&update=maxmind&ai_check=" + ai_nonce;
@@ -5431,6 +5511,9 @@ jQuery(document).ready(function($) {
5431
  window.open (url, 'ai-report');
5432
  });
5433
 
 
 
 
5434
  });
5435
 
5436
 
1
+ var javascript_version = "2.5.2";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
90
 
91
  var AI_ANIMATION_NONE = 0;
92
 
93
+
94
  var before_update_selection_from_list = null;
95
 
96
  /*
1650
  process_scheduling_dates (block);
1651
  }
1652
 
 
1653
  $("#adb-block-replacement-"+block).hide();
1654
  var adb_block_action = $("select#adb-block-action-"+block).val();
1655
  if (adb_block_action == AI_ADB_BLOCK_ACTION_REPLACE) {
1656
  $("#adb-block-replacement-"+block).show();
1657
  }
1658
 
1659
+ if ($("#exceptions-enabled-" + block).is(":checked")) {
1660
+ $("#default-insertion-"+block).show();
1661
+ } else {
1662
+ $("#default-insertion-"+block).hide();
1663
+ }
1664
+
1665
  if (syntax_highlighting) configure_editor_language (block);
1666
 
1667
  check_insertion (block);
2261
  });
2262
 
2263
 
2264
+ $("input#exceptions-enabled-"+tab).change (function() {
2265
+ var block = $(this).attr('id').replace ("exceptions-enabled-", "");
2266
+ process_display_elements (block);
2267
+ });
2268
+
2269
  $("input#process-php-"+tab).change (function() {
2270
  var block = $(this).attr('id').replace ("process-php-", "");
2271
  process_display_elements (block);
4295
  }
4296
 
4297
 
4298
+ function configure_list () {
4299
+ var data_container = $("#ai-list-data");
4300
+
4301
+ $(".ai-tab-link").click (function () {
4302
+ var tab = $(this).data ('tab') - start;
4303
+ $("#ai-tab-container").tabs ({active: tab});
4304
+ });
4305
+
4306
+ $("label.ai-copy-block").click (function () {
4307
+ var block = $(this).closest ('tr').data ('block');
4308
+
4309
+ load_saved_settings_to_clipboard (block, true);
4310
+ });
4311
+
4312
+ $("label.ai-preview-block").click (function () {
4313
+ var block = $(this).closest ('tr').data ('block');
4314
+
4315
+ var window_width = 820;
4316
+ var window_height = 820;
4317
+ var window_left = 100;
4318
+ var window_top = (screen.height / 2) - (820 / 2);
4319
+ // var nonce = $("#ai-form").attr ('nonce');
4320
+
4321
+ var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
4322
+ 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);
4323
+ });
4324
+
4325
+ data_container.disableSelection();
4326
+ }
4327
+
4328
  function reload_list () {
4329
  list_search_reload = false;
4330
  var list = encodeURIComponent ($("#ai-list-search").val());
4331
+ var all = + !$("#ai-load-all").hasClass ('light-blue');
 
4332
 
4333
  var rearrange_controls = $('#list-rearrange-controls');
4334
  var rearrange = rearrange_controls.hasClass ('rearrange')
4335
+
4336
  rearrange_controls.removeClass ('rearrange').hide ();
4337
+ $("#ai-rearrange").removeClass ('blue');
4338
 
4339
  var rearrange_data = '';
4340
  if (rearrange) {
4358
  data_container.html (message);
4359
  if (debug) console.log (message);
4360
  } else {
4361
+ // $(".ai-tab-link").click (function () {
4362
+ // var tab = $(this).data ('tab') - start;
4363
+ // $("#ai-tab-container").tabs ({active: tab});
4364
+ // });
4365
 
4366
+ // $("label.ai-copy-block").click (function () {
4367
+ // var block = $(this).closest ('tr').data ('block');
4368
 
4369
+ // load_saved_settings_to_clipboard (block, true);
4370
+ // });
4371
 
4372
+ // $("label.ai-preview-block").click (function () {
4373
+ // var block = $(this).closest ('tr').data ('block');
4374
 
4375
+ // var window_width = 820;
4376
+ // var window_height = 820;
4377
+ // var window_left = 100;
4378
+ // var window_top = (screen.height / 2) - (820 / 2);
4379
+ //// var nonce = $("#ai-form").attr ('nonce');
4380
 
4381
+ // var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
4382
+ // 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);
4383
+ // });
4384
 
4385
 
4386
+ // data_container.disableSelection();
4387
+
4388
+ configure_list ();
4389
 
4390
  if (rearrange) reload_settings ();
4391
  }
4826
  });
4827
  }
4828
  } catch (error) {
4829
+ // error_message.find ('.ai-error-message-text').text ('JSON error');
4830
+ error_message.find ('.ai-error-message-text').text (data);
4831
  error_message.show ();
4832
  console.log ("AI CHECK PAGES: JSON error decoding available positions: " + data);
4833
  }
5125
 
5126
  $('.header button').button().show ();
5127
 
 
 
 
5128
  $("#ai-form").submit (function (event) {
5129
  for (var tab = start; tab <= end; tab ++) {
5130
  remove_default_values (tab);
5180
  if ($("#page-checker-container").is(':visible')) {
5181
  $(".page-checker-button").addClass ('blue');
5182
  $("#page-checker-button").addClass ('blue');
5183
+ // reload_list ();
5184
  } else {
5185
  $(".page-checker-button").removeClass ('blue');
5186
  $("#page-checker-button").removeClass ('blue');
5189
 
5190
  $("#ai-list").click (function () {
5191
 
5192
+ $("#ai-list").toggleClass ('blue');
5193
+
5194
  var container = $("#ai-list-container");
5195
+ var list_sticky = $("#ai-pin-list").hasClass ('on');
5196
+
5197
+ if (!list_sticky && ($("#ai-list").hasClass ('blue') != container.is(':visible'))) {
5198
+ container.toggle ();
5199
+ }
5200
 
5201
  if (container.is(':visible')) {
5202
+ reload_list ();
5203
+ }
5204
 
5205
+ if ($("#ai-list").hasClass ('blue')) {
5206
  $("#plugin_name").hide ();
5207
  $("#block-ranges").show ();
 
 
5208
  } else {
 
 
5209
  $("#plugin_name").show ();
5210
  $("#block-ranges").hide ();
5211
  }
 
 
5212
  });
5213
 
5214
  $("#ai-list-search").keyup (function (event) {
5219
  });
5220
 
5221
  $("#ai-load-all").click (function () {
5222
+ $(this).toggleClass ('light-blue');
5223
  reload_list ();
5224
  });
5225
 
5226
  $("#ai-rearrange").click (function () {
5227
+ $(this).toggleClass ('blue');
5228
 
5229
  var data_container = $("#ai-list-data");
5230
  var rearrange_controls = $('#list-rearrange-controls');
5231
+ if ($(this).hasClass ('blue')) {
5232
+ $("#ai-rearrange").attr ('title', ai_admin.cancel_rearrangement)
5233
+ .tooltip({
5234
+ track: true,
5235
+ delay: 700,
5236
+ showURL: false,
5237
+ showBody: " | ",
5238
+ fade: 250
5239
+ });
5240
+
5241
  rearrange_controls.show ();
5242
  data_container.find ('tbody').sortable ({
5243
  start: function (event, ui) {$('#list-save').show ();},
5245
  }).css ('cursor', 'move');
5246
  } else {
5247
  data_container.find ('tbody').sortable ("disable");
5248
+ $("#ai-rearrange").attr ('title', ai_admin.rearrange_block_order)
5249
+ .tooltip({
5250
+ track: true,
5251
+ delay: 700,
5252
+ showURL: false,
5253
+ showBody: " | ",
5254
+ fade: 250
5255
+ });
5256
+
5257
  $('#list-save').hide ();
5258
  rearrange_controls.hide ();
5259
  reload_list ();
5265
  reload_list ();
5266
  });
5267
 
5268
+ $("#ai-pin-list").click (function () {
5269
+ $(this).toggleClass ('on');
5270
+
5271
+ var sticky = $(this).hasClass ('on') ? '1' : '0';
5272
+
5273
+ if (!$("#ai-list").hasClass ('blue')) {
5274
+ $("#ai-list-container").toggle ();
5275
+ }
5276
+
5277
+ $.get (ajaxurl+"?action=ai_ajax_backend&blocks-sticky=" + sticky + "&start=" + start + "&end=" + end + '&ai_check=' + ai_nonce, function (response, status, xhr) {
5278
+ if (status == "error") {
5279
+ var message = "Error updating sticky: " + xhr.status + " " + xhr.statusText;
5280
+ var data_container = $("#ai-list-data");
5281
+ data_container.html (message);
5282
+ if (debug) console.log (message);
5283
+ } else {
5284
+ if (debug) console.log ('AI blocks sticky:', response);
5285
+ }
5286
+ });
5287
+ });
5288
+
5289
  if ($("#maxmind-db-status").hasClass ('maxmind-db-missing')) {
5290
  // var nonce = $("#ai-form").attr ('nonce');
5291
  var page = ajaxurl+"?action=ai_ajax_backend&update=maxmind&ai_check=" + ai_nonce;
5511
  window.open (url, 'ai-report');
5512
  });
5513
 
5514
+ if ($("#ai-list-data").hasClass ('ai-sticky')) {
5515
+ configure_list ();
5516
+ }
5517
  });
5518
 
5519
 
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -2,11 +2,11 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-08-20 18:00:03+00:00\n"
8
- "PO-Revision-Date: 2019-08-20 20:00+0200\n"
9
- "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
@@ -16,129 +16,129 @@ 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:386
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:402
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:409
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:480
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:487
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:496
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:503
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:513
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1114
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1119
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1124 strings.php:100
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1129 strings.php:101
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1134 strings.php:102
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1139 strings.php:152
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1186
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1190
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1399
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1724 ad-inserter.php:2594
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2162
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2162
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2163
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2164
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2165
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2166
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2167
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2366
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,25 +146,27 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2367 includes/functions.php:1662
 
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
- #: ad-inserter.php:2370
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
- #: ad-inserter.php:2371 includes/functions.php:1665
 
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
- #: ad-inserter.php:2381
164
  msgid "I would really appreciate if you could rate the plugin on WordPres."
165
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
166
 
167
- #: ad-inserter.php:2383
168
  msgid ""
169
  "Positive reviews are a great incentive to fix bugs and to add new features "
170
  "for better monetization of your website. Thank you, Igor"
@@ -173,86 +175,86 @@ msgstr ""
173
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
174
 
175
  #. translators: %s: Ad Inserter
176
- #: ad-inserter.php:2389
177
  msgid "Rate %s"
178
  msgstr "Ocenite %s"
179
 
180
- #: ad-inserter.php:2394
181
  msgid "I already did."
182
  msgstr "Sem že."
183
 
184
- #: ad-inserter.php:2411
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr "Nastavitve"
188
 
189
  #. translators: %s: Ad Inserter
190
- #: ad-inserter.php:2485
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr "Posamezne Izjeme za %s"
194
 
195
- #: ad-inserter.php:2514 ad-inserter.php:8499 class.php:1997
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
- #: includes/preview.php:2057 settings.php:4046 strings.php:3
198
  msgid "Block"
199
  msgstr "Blok"
200
 
201
- #: ad-inserter.php:2515 settings.php:4047 settings.php:4132
202
  msgid "Name"
203
  msgstr "Ime"
204
 
205
- #: ad-inserter.php:2518 settings.php:1104
206
  msgid "Default insertion"
207
  msgstr "Privzeto vstavljanje"
208
 
209
  #. translators: For this post or page
210
- #: ad-inserter.php:2521
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr "Za to"
214
 
215
- #: ad-inserter.php:2522
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr "Za ta"
219
 
220
- #: ad-inserter.php:2534
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr "straneh"
224
 
225
- #: ad-inserter.php:2537
226
  msgctxt "Enabled/disabled on all"
227
  msgid "posts"
228
  msgstr "prispevkih"
229
 
230
- #: ad-inserter.php:2555 ad-inserter.php:2567 strings.php:158
231
  msgid "Enabled"
232
  msgstr "Omogočeno"
233
 
234
  #. translators: Menu items
235
- #: ad-inserter.php:2555 ad-inserter.php:2567 includes/functions.php:2323
236
- #: strings.php:16
237
  msgid "Disabled"
238
  msgstr "Onemogočeno"
239
 
240
- #: ad-inserter.php:2557
241
  msgid "No individual exceptions"
242
  msgstr "Ni posameznih izjem"
243
 
244
  #. translators: Not enabled for pages or posts
245
- #: ad-inserter.php:2559
246
  msgid "Not enabled for"
247
  msgstr "Ni omogočeno za"
248
 
249
  #. translators: No individual exceptions enabled for pages or posts
250
- #: ad-inserter.php:2587
251
  msgid "No block has individual exceptions enabled"
252
  msgstr "Noben blok nima omogočenih posameznih izjem"
253
 
254
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
255
- #: ad-inserter.php:2592
256
  msgid ""
257
  "Default insertion can be configured for each block on %1$s page - button "
258
  "next to %2$s checkbox."
@@ -260,11 +262,11 @@ msgstr ""
260
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
261
  "poleg kljukice za vklop %2$s."
262
 
263
- #: ad-inserter.php:2595 settings.php:1082
264
  msgid "Tag / Archive pages"
265
  msgstr "Strani oznak / arhiva"
266
 
267
- #: ad-inserter.php:2597
268
  msgid ""
269
  "When individual exceptions for a block are enabled, a checkbox will be "
270
  "listed here to change default insertion for this post or page."
@@ -272,7 +274,7 @@ msgstr ""
272
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
273
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
274
 
275
- #: ad-inserter.php:2598
276
  msgid ""
277
  "This way you can individually enable or disable blocks on specific posts or "
278
  "pages."
@@ -280,61 +282,61 @@ msgstr ""
280
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
281
  "prispevku ali strani."
282
 
283
- #: ad-inserter.php:2600
284
  msgid "For more information check page %s"
285
  msgstr "Za več informacij poglejte stran %s"
286
 
287
  #. translators: Ad Inserter Exceptions documentation page
288
- #: ad-inserter.php:2602
289
  msgid "Individual Exceptions"
290
  msgstr "Posamezne Izjeme"
291
 
292
- #: ad-inserter.php:2649
293
  msgid "STATIC PAGE"
294
  msgstr "STATIČNA STRAN"
295
 
296
- #: ad-inserter.php:2652
297
  msgid "POST"
298
  msgstr "PRISPEVEK"
299
 
300
- #: ad-inserter.php:2655
301
  msgid "HOMEPAGE"
302
  msgstr "DOMAČA STRAN"
303
 
304
- #: ad-inserter.php:2658
305
  msgid "CATEGORY PAGE"
306
  msgstr "STRAN KATEGORIJE"
307
 
308
- #: ad-inserter.php:2661
309
  msgid "SEARCH PAGE"
310
  msgstr "STRAN ISKANJE"
311
 
312
- #: ad-inserter.php:2664
313
  msgid "ARCHIVE PAGE"
314
  msgstr "STRAN ARHIVA"
315
 
316
- #: ad-inserter.php:2667
317
  msgid "ERROR 404 PAGE"
318
  msgstr "STRAN NAPAKA 404"
319
 
320
- #: ad-inserter.php:2670
321
  msgid "AJAX CALL"
322
  msgstr "AJAX KLIC"
323
 
324
- #: ad-inserter.php:2673
325
  msgid "UNKNOWN PAGE TYPE"
326
  msgstr "NEZNAN TIP STRANI"
327
 
328
- #: ad-inserter.php:2690
329
  msgid "Click to delete ad blocking detection cokies"
330
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
331
 
332
- #: ad-inserter.php:2691
333
  msgid "AD BLOCKING STATUS UNKNOWN"
334
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
335
 
336
  #. translators: %s: AdSense Auto Ads
337
- #: ad-inserter.php:2715
338
  msgid ""
339
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
340
  "positions"
@@ -342,11 +344,11 @@ msgstr ""
342
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
343
  "položaje"
344
 
345
- #: ad-inserter.php:2854
346
  msgid "Code for insertion"
347
  msgstr "Koda za vstavljanje"
348
 
349
- #: ad-inserter.php:2854
350
  msgid "character"
351
  msgid_plural "characters"
352
  msgstr[0] "znak"
@@ -354,16 +356,16 @@ msgstr[1] "znaka"
354
  msgstr[2] "znaki"
355
  msgstr[3] "znakov"
356
 
357
- #: ad-inserter.php:2897
358
  msgid "Header code"
359
  msgstr "Koda v glavi"
360
 
361
- #: ad-inserter.php:2897
362
  msgctxt "Header code"
363
  msgid "DISABLED"
364
  msgstr "ONEMOGOČENA"
365
 
366
- #: ad-inserter.php:2897 ad-inserter.php:3120
367
  msgid "character inserted"
368
  msgid_plural "characters inserted"
369
  msgstr[0] "znak vstavljen"
@@ -371,43 +373,43 @@ msgstr[1] "znaka vstavljena"
371
  msgstr[2] "znaki vstavljeni"
372
  msgstr[3] "znakov vstavljenih"
373
 
374
- #: ad-inserter.php:2931
375
  msgid "Automatically placed by AdSense Auto ads code"
376
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
377
 
378
- #: ad-inserter.php:3120
379
  msgid "Footer code"
380
  msgstr "Koda v nogi"
381
 
382
- #: ad-inserter.php:3120
383
  msgctxt "Footer code"
384
  msgid "DISABLED"
385
  msgstr "ONEMOGOČENA"
386
 
387
- #: ad-inserter.php:3126
388
  msgid "JAVASCRIPT NOT WORKING"
389
  msgstr "JAVASCRIPT NE DELA"
390
 
391
- #: ad-inserter.php:3126
392
  msgid "NO JAVASCRIPT ERRORS"
393
  msgstr "BREZ JAVASCRIPT NAPAK"
394
 
395
- #: ad-inserter.php:3126
396
  msgid "JAVASCRIPT ERRORS"
397
  msgstr "JAVASCRIPT NAPAKE"
398
 
399
  #. translators: block name (block with default settings)
400
- #: ad-inserter.php:5364
401
  msgctxt "Block name"
402
  msgid "Default"
403
  msgstr "Privzeti"
404
 
405
  #. translators: %s: Ad Inserter
406
- #: ad-inserter.php:5946
407
  msgid "Error importing %s settings."
408
  msgstr "Napaka pri uvozu %s nastavitev."
409
 
410
- #: ad-inserter.php:5947
411
  msgid "Error importing settings for block"
412
  msgid_plural "Error importing settings for blocks:"
413
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -415,15 +417,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
415
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
416
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
417
 
418
- #: ad-inserter.php:5996
419
  msgid "Settings saved."
420
  msgstr "Nastavitve shranjene."
421
 
422
- #: ad-inserter.php:6083
423
  msgid "Settings cleared."
424
  msgstr "Nastavitve ponastavljene."
425
 
426
- #: ad-inserter.php:6428 ad-inserter.php:6430 ad-inserter.php:6453
427
  msgid "word"
428
  msgid_plural "words"
429
  msgstr[0] "beseda"
@@ -431,38 +433,38 @@ msgstr[1] "besedi"
431
  msgstr[2] "besede"
432
  msgstr[3] "besed"
433
 
434
- #: ad-inserter.php:6467 ad-inserter.php:6579
435
  msgid "HTML TAGS REMOVED"
436
  msgstr "HTML ZNAČKE ODSTRANJENE"
437
 
438
- #: ad-inserter.php:6655
439
  msgid "BEFORE COMMENTS"
440
  msgstr "PRED KOMENTARJI"
441
 
442
- #: ad-inserter.php:6763
443
  msgid "AFTER COMMENTS"
444
  msgstr "PO KOMETARJIH"
445
 
446
- #: ad-inserter.php:6826
447
  msgid "BETWEEN COMMENTS"
448
  msgstr "MED KOMENTARJI"
449
 
450
- #: ad-inserter.php:8133
451
  msgid "requires WordPress 4.0 or newer"
452
  msgstr "potrebuje WordPress 4.0 ali novejši"
453
 
454
- #: ad-inserter.php:8133
455
  msgid "Please update!"
456
  msgstr "Prosimo, posodobite!"
457
 
458
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
459
  #. name with HTML tags will be added)
460
- #: ad-inserter.php:8372
461
  msgid "Thank you for installing"
462
  msgstr "Hvala za namestitev vtičnika"
463
 
464
  #. translators: Opt-in message: %s: HTML tags
465
- #: ad-inserter.php:8374
466
  msgid ""
467
  "We would like to %s track its usage %s on your site. This is completely "
468
  "optional and can be disabled at any time."
@@ -470,7 +472,7 @@ msgstr ""
470
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
471
  "izbirno in se lahko izključi kadarkoli."
472
 
473
- #: ad-inserter.php:8376
474
  msgid ""
475
  "We don't record any sensitive data, only information regarding the WordPress "
476
  "environment and plugin usage, which will help us to make improvements to the "
@@ -480,7 +482,7 @@ msgstr ""
480
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
481
 
482
  #. translators: Deactivation message: %s: HTML tags
483
- #: ad-inserter.php:8413
484
  msgid ""
485
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
486
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -491,50 +493,50 @@ msgstr ""
491
  "nam %s in poskušali vam bomo pomagati."
492
 
493
  #. translators: %s: Ad Inserter
494
- #: ad-inserter.php:8456
495
  msgid "%s block."
496
  msgstr "%s blok."
497
 
498
  #. translators: widget title
499
- #: ad-inserter.php:8472 ad-inserter.php:8508
500
  msgid "Processing log"
501
  msgstr "Dnevnik procesiranja"
502
 
503
  #. translators: widget title
504
- #: ad-inserter.php:8474 ad-inserter.php:8509
505
  msgid "Dummy widget"
506
  msgstr "Prazen gradnik"
507
 
508
  #. translators: widget title
509
- #: ad-inserter.php:8476 ad-inserter.php:8507
510
  msgid "Debugging tools"
511
  msgstr "Orodja za razhroščevanje"
512
 
513
  #. translators: block status (widget title)
514
- #: ad-inserter.php:8483
515
  msgctxt "block"
516
  msgid "PAUSED"
517
  msgstr "USTAVLJEN"
518
 
519
- #: ad-inserter.php:8484
520
  msgid "WIDGET DISABLED"
521
  msgstr "GRADNIK ONEMOGOČEN"
522
 
523
- #: ad-inserter.php:8485
524
  msgid "Unknown block"
525
  msgstr "Neznan blok"
526
 
527
- #: ad-inserter.php:8494 includes/functions.php:3183 settings.php:1133
528
- #: settings.php:1188 settings.php:1234
529
  msgid "Title"
530
  msgstr "Naslov"
531
 
532
- #: ad-inserter.php:8516
533
  msgctxt "Widget"
534
  msgid "Sticky"
535
  msgstr "Lepljiv"
536
 
537
- #: ad-inserter.php:8565
538
  msgid ""
539
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
540
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -543,7 +545,7 @@ msgstr ""
543
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
544
  "Inserter Pro."
545
 
546
- #: ad-inserter.php:8566
547
  msgid ""
548
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
549
  "will clear all settings that are available only in the Pro version "
@@ -558,130 +560,130 @@ msgstr ""
558
  msgid "PHP error in %s block"
559
  msgstr "PHP napaka v bloku %s"
560
 
561
- #: class.php:1963
562
  msgid "Counters"
563
  msgstr "Števci"
564
 
565
- #: class.php:1967
566
  msgid "Content"
567
  msgstr "Vsebina"
568
 
569
- #: class.php:1972
570
  msgid "Excerpt"
571
  msgstr "Izvleček"
572
 
573
- #: class.php:1977 strings.php:17
574
  msgid "Before post"
575
  msgstr "Pred prispevkom"
576
 
577
- #: class.php:1982 strings.php:18
578
  msgid "After post"
579
  msgstr "Za prispevkom"
580
 
581
- #: class.php:1987 settings.php:1812 settings.php:4064
582
  msgid "Widget"
583
  msgstr "Gradnik"
584
 
585
- #: class.php:1992 settings.php:4062
586
  msgid "PHP function call"
587
  msgstr "Klic PHP funkcije"
588
 
589
- #: class.php:2027
590
  msgid "AJAX REQUEST"
591
  msgstr "AJAX ZAHTEVEK"
592
 
593
- #: class.php:2030
594
  msgid "Ajax request for block in iframe"
595
  msgstr "Ajax zahtevek za blok v iframe-u"
596
 
597
- #: class.php:2060
598
  msgid "Ajax request url, click to open it in a new tab"
599
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
600
 
601
- #: class.php:2063
602
  msgid "IN THE LOOP"
603
  msgstr "V ZANKI"
604
 
605
- #: class.php:2063
606
  msgid "YES"
607
  msgstr "DA"
608
 
609
- #: class.php:2063
610
  msgid "NO"
611
  msgstr "NE"
612
 
613
- #: class.php:2099
614
  msgid "BLOCK"
615
  msgstr "BLOK"
616
 
617
- #: class.php:2099
618
  msgctxt "block or widget"
619
  msgid "INSERTED BUT NOT VISIBLE"
620
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
621
 
622
- #: class.php:2545 class.php:2604
623
  msgid "ACTIVE GROUPS"
624
  msgstr "AKTIVNE SKUPINE"
625
 
626
  #. translators: %s: list parameters and type
627
- #: class.php:2779
628
  msgid "parameters='%s' type='%s'"
629
  msgstr "parametri='%s' tip='%s'"
630
 
631
  #. translators: %s: list parameters and type
632
- #: class.php:2781
633
  msgid "referers='%s' type='%s'"
634
  msgstr "napotitelji='%s' tip='%s'"
635
 
636
  #. translators: %s: list parameters and type
637
- #: class.php:2842
638
  msgid "countries='%s' type='%s'"
639
  msgstr "države='%s' tip='%s'"
640
 
641
  #. translators: %s: list parameters and type
642
- #: class.php:2844
643
  msgid "ip addresses='%s' type='%s'"
644
  msgstr "ip naslovi='%s' tip='%s'"
645
 
646
- #: class.php:3113 strings.php:236
647
  msgid "BEFORE"
648
  msgstr "PRED"
649
 
650
- #: class.php:3121 strings.php:238
651
  msgid "PREPEND CONTENT"
652
  msgstr "DODAJ PRED VSEBINO"
653
 
654
- #: class.php:3125 strings.php:239
655
  msgid "APPEND CONTENT"
656
  msgstr "DODAJ ZA VSEBINO"
657
 
658
- #: class.php:3129 strings.php:240
659
  msgid "REPLACE CONTENT"
660
  msgstr "NADOMESTI VSEBINO"
661
 
662
- #: class.php:3133 strings.php:241
663
  msgid "REPLACE ELEMENT"
664
  msgstr "NADOMESTI ELEMENT"
665
 
666
- #: class.php:3144 strings.php:237
667
  msgid "AFTER"
668
  msgstr "ZA"
669
 
670
- #: class.php:3211
671
  msgctxt "JavaScript"
672
  msgid "script"
673
  msgstr "skripta"
674
 
675
- #: class.php:3214 settings.php:2081
676
  msgid "for"
677
  msgstr "za"
678
 
679
- #: class.php:6009 class.php:6061
680
  msgctxt "category name"
681
  msgid "Uncategorized"
682
  msgstr "Nekategorizirano"
683
 
684
- #: class.php:6554
685
  msgid ""
686
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
687
  "extension for PHP."
@@ -690,7 +692,7 @@ msgstr ""
690
  "namestiti DOM razširitev za PHP."
691
 
692
  #: includes/editor.php:7 includes/placeholders.php:352
693
- #: includes/preview.php:1962 strings.php:243
694
  msgid "Use"
695
  msgstr "Uporabi"
696
 
@@ -699,7 +701,7 @@ msgid "Reset"
699
  msgstr "Ponastavi"
700
 
701
  #: includes/editor.php:9 includes/placeholders.php:354
702
- #: includes/preview.php:1965 settings.php:3474 strings.php:205 strings.php:242
703
  msgid "Cancel"
704
  msgstr "Prekliči"
705
 
@@ -716,7 +718,7 @@ msgstr ""
716
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
717
  "blokiranje oglasov."
718
 
719
- #: includes/editor.php:264 settings.php:242
720
  msgid "Error loading page"
721
  msgstr "Napaka pri nalaganju strani"
722
 
@@ -725,17 +727,17 @@ msgstr "Napaka pri nalaganju strani"
725
  msgid "PAGE BLOCKED"
726
  msgstr "STRAN BLOKIRANA"
727
 
728
- #: includes/functions.php:299
729
  msgid "%d of %d names shown"
730
  msgstr "Prikazanih %d od %d imen"
731
 
732
  #. translators: %s: name filter
733
- #: includes/functions.php:318
734
  msgid "No name matches filter"
735
  msgstr "Noben podatek ne ustreza filtru"
736
 
737
  #. translators: %s: Ad Inserter Pro
738
- #: includes/functions.php:393
739
  msgid ""
740
  "Import %s settings when saving - if checked, the encoded settings below will "
741
  "be imported for all blocks and settings"
@@ -743,39 +745,39 @@ msgstr ""
743
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
744
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
745
 
746
- #: includes/functions.php:393
747
  msgid "Import Settings for"
748
  msgstr "Uvozi Nastavitve za"
749
 
750
- #: includes/functions.php:397
751
  msgid "Saved settings for"
752
  msgstr "Shranjene nastavitve za"
753
 
754
- #: includes/functions.php:417
755
  msgid "License Key"
756
  msgstr "Licenčni Ključ"
757
 
758
- #: includes/functions.php:420
759
  msgid "License Key for"
760
  msgstr "Licenčni Ključ za"
761
 
762
- #: includes/functions.php:423
763
  msgid "Open license page"
764
  msgstr "Odpri licenčno stran"
765
 
766
- #: includes/functions.php:431
767
  msgid "Hide license key"
768
  msgstr "Skrij licenčni ključ"
769
 
770
- #: includes/functions.php:431
771
  msgid "Hide key"
772
  msgstr "Skrij ključ"
773
 
774
- #: includes/functions.php:446
775
  msgid "Main content element"
776
  msgstr "Glavni element vsebine"
777
 
778
- #: includes/functions.php:449
779
  msgid ""
780
  "Main content element (#id or .class) for 'Stick to the content' position. "
781
  "Leave empty unless position is not properly calculated."
@@ -783,70 +785,73 @@ msgstr ""
783
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
784
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
785
 
786
- #: includes/functions.php:450 settings.php:1382 settings.php:2695
 
787
  msgid "Open HTML element selector"
788
  msgstr "Odpri izbirnik HTML elementa"
789
 
790
- #: includes/functions.php:455
791
  msgid "Lazy loading offset"
792
  msgstr "Zamik za leno nalaganje"
793
 
794
- #: includes/functions.php:458
795
  msgid "Offset of the block from the visible viewport when it should be loaded"
796
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
797
 
798
- #: includes/functions.php:469
799
  msgid "Export / Import Block Settings"
800
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
801
 
802
- #: includes/functions.php:484
803
  msgid "Track impressions and clicks for this block"
804
  msgstr "Sledi prikazom in klikom za ta blok"
805
 
806
- #: includes/functions.php:484
807
  msgid " - global tracking disabled"
808
  msgstr " - globalno sledenje onemogočeno"
809
 
810
- #: includes/functions.php:491
811
  msgid "Generate PDF report"
812
  msgstr "Generiraj PDF poročilo"
813
 
814
- #: includes/functions.php:496
815
  msgid "Open public report"
816
  msgstr "Odpri javno poročilo"
817
 
818
- #: includes/functions.php:510
819
  msgid "Toggle Ad Blocking Statistics"
820
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
821
 
822
- #: includes/functions.php:518 includes/functions.php:2957
 
823
  msgid "Toggle Statistics"
824
  msgstr "Preklopi Statistiko"
825
 
826
  #. translators: %s: Ad Inserter Pro
827
- #: includes/functions.php:534
828
  msgid "%s license key is not set. Continue?"
829
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
830
 
831
  #. translators: %s: Ad Inserter Pro
832
- #: includes/functions.php:538
833
  msgid "Invalid %s license key. Continue?"
834
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
835
 
836
  #. translators: %s: Ad Inserter Pro
837
- #: includes/functions.php:542
838
  msgid "%s license overused. Continue?"
839
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
840
 
841
- #: includes/functions.php:546 settings.php:2152
842
  msgid "Save Settings"
843
  msgstr "Shrani Nastavitve"
844
 
845
- #: includes/functions.php:606 includes/preview.php:2106
 
846
  msgid "Horizontal position"
847
  msgstr "Vodoravni položaj"
848
 
849
- #: includes/functions.php:629
850
  msgid ""
851
  "Horizontal margin from the content or screen edge, empty means default value "
852
  "from CSS"
@@ -854,11 +859,12 @@ msgstr ""
854
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
855
  "iz CSS"
856
 
857
- #: includes/functions.php:637 includes/preview.php:2161
 
858
  msgid "Vertical position"
859
  msgstr "Navpični položaj"
860
 
861
- #: includes/functions.php:652
862
  msgid ""
863
  "Vertical margin from the top or bottom screen edge, empty means default "
864
  "value from CSS"
@@ -866,15 +872,16 @@ msgstr ""
866
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
867
  "iz CSS"
868
 
869
- #: includes/functions.php:677 includes/preview.php:2212
 
870
  msgid "Animation"
871
  msgstr "Animacija"
872
 
873
- #: includes/functions.php:695
874
  msgid "Trigger"
875
  msgstr "Sporžilec"
876
 
877
- #: includes/functions.php:704
878
  msgid ""
879
  "Trigger value: page scroll in %, page scroll in px or element with selector "
880
  "(#id or .class) becomes visible"
@@ -882,50 +889,52 @@ msgstr ""
882
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
883
  "selektorjem (#id ali .razred) postane viden"
884
 
885
- #: includes/functions.php:708
886
  msgid "Offset"
887
  msgstr "Zamik"
888
 
889
- #: includes/functions.php:708
890
  msgid "Offset of trigger element"
891
  msgstr "Zamik sprožilnega elementa"
892
 
893
- #: includes/functions.php:712
894
  msgid "Delay"
895
  msgstr "Zakasnitev"
896
 
897
- #: includes/functions.php:712
898
  msgid "Delay animation after trigger condition"
899
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
900
 
901
- #: includes/functions.php:716
902
  msgid "Trigger once"
903
  msgstr "Sproži enkrat"
904
 
905
- #: includes/functions.php:718
906
  msgid "Trigger animation only once"
907
  msgstr "Sproži animacijo samo enkrat"
908
 
909
- #: includes/functions.php:760 includes/functions.php:2450
910
- #: includes/functions.php:2464
 
911
  msgid "Tracking is globally disabled"
912
  msgstr "Sledenje je globalno onemogočeno"
913
 
914
- #: includes/functions.php:764 includes/functions.php:2454
915
- #: includes/functions.php:2468
 
916
  msgid "Tracking for this block is disabled"
917
  msgstr "Sledenje za ta blok je onemogočeno"
918
 
919
- #: includes/functions.php:771
920
  msgid "Double click to toggle controls in public reports"
921
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
922
 
923
- #: includes/functions.php:777 settings.php:3409 settings.php:3445
924
- #: settings.php:3487 strings.php:215
925
  msgid "Loading..."
926
  msgstr "Nalagam..."
927
 
928
- #: includes/functions.php:798
929
  msgid ""
930
  "Clear statistics data for the selected range - clear both dates to delete "
931
  "all data for this block"
@@ -933,59 +942,71 @@ msgstr ""
933
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
934
  "brisanje vseh podatkov za ta blok"
935
 
936
- #: includes/functions.php:802
937
  msgid "Auto refresh data for the selected range every 60 seconds"
938
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
939
 
940
- #: includes/functions.php:805 includes/functions.php:5259
 
941
  msgid "Load data for last month"
942
  msgstr "Naloži podatke za zadnji mesec"
943
 
944
- #: includes/functions.php:805 includes/functions.php:5259
 
945
  msgid "Last Month"
946
  msgstr "Zadnji Mesec"
947
 
948
- #: includes/functions.php:808 includes/functions.php:5262
 
949
  msgid "Load data for this month"
950
  msgstr "Naloži podatke za ta mesec"
951
 
952
- #: includes/functions.php:808 includes/functions.php:5262
 
953
  msgid "This Month"
954
  msgstr "Ta Mesec"
955
 
956
- #: includes/functions.php:811 includes/functions.php:5265
 
957
  msgid "Load data for this year"
958
  msgstr "Naloži podatke za to leto"
959
 
960
- #: includes/functions.php:811 includes/functions.php:5265
 
961
  msgid "This Year"
962
  msgstr "To Leto"
963
 
964
- #: includes/functions.php:814 includes/functions.php:5268
 
965
  msgid "Load data for the last 15 days"
966
  msgstr "Naloži podatke za zadnjih 15 dni"
967
 
968
- #: includes/functions.php:817 includes/functions.php:5271
 
969
  msgid "Load data for the last 30 days"
970
  msgstr "Naloži podatke za zadnjih 30 dni"
971
 
972
- #: includes/functions.php:820 includes/functions.php:5274
 
973
  msgid "Load data for the last 90 days"
974
  msgstr "Naloži podatke za zadnjih 90 dni"
975
 
976
- #: includes/functions.php:823 includes/functions.php:5277
 
977
  msgid "Load data for the last 180 days"
978
  msgstr "Naloži podatke za zadnjih 180 dni"
979
 
980
- #: includes/functions.php:826 includes/functions.php:5280
 
981
  msgid "Load data for the last 365 days"
982
  msgstr "Naloži podatke za zadnjih 365 dni"
983
 
984
- #: includes/functions.php:836 includes/functions.php:5290
 
985
  msgid "Load data for the selected range"
986
  msgstr "Naloži podatke za izbrano obdobje"
987
 
988
- #: includes/functions.php:852
989
  msgid ""
990
  "Import settings when saving - if checked, the encoded settings below will be "
991
  "imported for this block"
@@ -993,11 +1014,11 @@ msgstr ""
993
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
994
  "nastavitve spodaj uvozile za ta blok"
995
 
996
- #: includes/functions.php:852
997
  msgid "Import settings for block"
998
  msgstr "Uvozi nastavitve za blok"
999
 
1000
- #: includes/functions.php:856
1001
  msgid ""
1002
  "Import block name when saving - if checked and 'Import settings for block' "
1003
  "is also checked, the name from encoded settings below will be imported for "
@@ -1007,41 +1028,41 @@ msgstr ""
1007
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1008
  "uvozilo za ta blok"
1009
 
1010
- #: includes/functions.php:856
1011
  msgid "Import block name"
1012
  msgstr "Uvozi ime bloka"
1013
 
1014
- #: includes/functions.php:860
1015
  msgid "Saved settings for block"
1016
  msgstr "Shranjene nastavitve za blok"
1017
 
1018
- #: includes/functions.php:873
1019
  msgid "Export / Import Ad Inserter Pro Settings"
1020
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1021
 
1022
- #: includes/functions.php:883
1023
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1024
  msgstr ""
1025
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1026
  "bloke?"
1027
 
1028
- #: includes/functions.php:885
1029
  msgid "Clear All Statistics Data"
1030
  msgstr "Pobriši Vse Podatke o Statistiki"
1031
 
1032
- #: includes/functions.php:912
1033
  msgid "Toggle country/city editor"
1034
  msgstr "Preklopi urejevalnik držav/mest"
1035
 
1036
- #: includes/functions.php:918
1037
  msgid "IP Addresses"
1038
  msgstr "IP Naslovi"
1039
 
1040
- #: includes/functions.php:921
1041
  msgid "Toggle IP address editor"
1042
  msgstr "Preklopi urejevalnik IP nslovov"
1043
 
1044
- #: includes/functions.php:924
1045
  msgid ""
1046
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1047
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1049,48 +1070,51 @@ msgstr ""
1049
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1050
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1051
 
1052
- #: includes/functions.php:928
1053
  msgid "Blacklist IP addresses"
1054
  msgstr "Črni seznam IP naslovov"
1055
 
1056
- #: includes/functions.php:932
1057
  msgid "Whitelist IP addresses"
1058
  msgstr "Beli seznam IP naslovov"
1059
 
1060
- #: includes/functions.php:943
1061
  msgid "Countries"
1062
  msgstr "Države"
1063
 
1064
- #: includes/functions.php:944
1065
  msgid "Cities"
1066
  msgstr "Mesta"
1067
 
1068
- #: includes/functions.php:948 includes/functions.php:2922
 
1069
  msgid "Toggle country editor"
1070
  msgstr "Preklopi urejevalnik držav"
1071
 
1072
- #: includes/functions.php:951
1073
  msgid "Toggle city editor"
1074
  msgstr "Preklopi urejevalnik mest"
1075
 
1076
- #: includes/functions.php:955 includes/functions.php:2925
 
1077
  msgid "Comma separated country ISO Alpha-2 codes"
1078
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1079
 
1080
- #: includes/functions.php:959
1081
  msgid "Blacklist countries"
1082
  msgstr "Črni seznam držav"
1083
 
1084
- #: includes/functions.php:963
1085
  msgid "Whitelist countries"
1086
  msgstr "Beli seznam držav"
1087
 
 
1088
  #: includes/functions.php:1371 includes/functions.php:1618
1089
  msgid "Enter license key"
1090
  msgstr "Vnesite licenčni ključ"
1091
 
1092
  #. translators: %s: Ad Inserter Pro
1093
- #: includes/functions.php:1377
1094
  msgid ""
1095
  "%s license key is not set. Plugin functionality is limited and updates are "
1096
  "disabled."
@@ -1098,40 +1122,41 @@ msgstr ""
1098
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1099
  "posodobitve onemogočene."
1100
 
 
1101
  #: includes/functions.php:1389 includes/functions.php:1627
1102
  msgid "Check license key"
1103
  msgstr "Preverite licenčni ključ"
1104
 
1105
  #. translators: %s: Ad Inserter Pro
1106
- #: includes/functions.php:1395
1107
  msgid "Invalid %s license key."
1108
  msgstr "Neveljaven %s licenčni ključ."
1109
 
1110
  #. translators: %s: Ad Inserter Pro
1111
- #: includes/functions.php:1404
1112
  msgid "%s license expired. Plugin updates are disabled."
1113
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1114
 
1115
- #: includes/functions.php:1405
1116
  msgid "Renew license"
1117
  msgstr "Obnovite licenco"
1118
 
1119
  #. translators: %s: Ad Inserter Pro
1120
- #: includes/functions.php:1413
1121
  msgid "%s license overused. Plugin updates are disabled."
1122
  msgstr ""
1123
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1124
 
1125
- #: includes/functions.php:1414
1126
  msgid "Manage licenses"
1127
  msgstr "Upravljajte z licencami"
1128
 
1129
- #: includes/functions.php:1414
1130
  msgid "Upgrade license"
1131
  msgstr "Nadgradite licenco"
1132
 
1133
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1134
- #: includes/functions.php:1620
1135
  msgid ""
1136
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1137
  "limited and updates are disabled."
@@ -1140,12 +1165,12 @@ msgstr ""
1140
  "so omejene in posodobitve onemogočene."
1141
 
1142
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1143
- #: includes/functions.php:1629
1144
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1145
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1146
 
1147
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1148
- #: includes/functions.php:1645
1149
  msgid ""
1150
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1151
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1155,7 +1180,7 @@ msgstr ""
1155
  "pogrešate. %3$s"
1156
 
1157
  #. translators: 1, 3: HTML tags, 2: percentage
1158
- #: includes/functions.php:1652
1159
  msgid ""
1160
  "During the license period and 30 days after the license has expired we offer "
1161
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1163,16 +1188,16 @@ msgstr ""
1163
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1164
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1165
 
1166
- #: includes/functions.php:1679
1167
  msgid "Renew the licence"
1168
  msgstr "Obnovi licenco"
1169
 
1170
- #: includes/functions.php:1681
1171
  msgid "Update license status"
1172
  msgstr "Posodobi status licence"
1173
 
1174
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1175
- #: includes/functions.php:1692
1176
  msgid ""
1177
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1178
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1182,99 +1207,105 @@ msgstr ""
1182
  "Nadgradite licenco %7$s"
1183
 
1184
  #. Translators: %s: HTML tag
1185
- #: includes/functions.php:1714
1186
  msgid "Warning: %s MaxMind IP geolocation database not found."
1187
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1188
 
1189
- #: includes/functions.php:2252
1190
  msgid "Geolocation"
1191
  msgstr "Geolokacija"
1192
 
1193
- #: includes/functions.php:2256 settings.php:4051
 
1194
  msgid "Exceptions"
1195
  msgstr "Izjeme"
1196
 
1197
- #: includes/functions.php:2261
1198
  msgid "Multisite"
1199
  msgstr "Multisite"
1200
 
1201
- #: includes/functions.php:2266 settings.php:4057
 
1202
  msgid "Tracking"
1203
  msgstr "Sledenje"
1204
 
1205
  #. translators: %d: days, hours, minutes
1206
- #: includes/functions.php:2297
1207
  msgid "Scheduled in %d days %d hours %d minutes"
1208
  msgstr "Planirano v %d dneh %d urah %d minutah"
1209
 
1210
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1211
  #. HTML code for long dash separator
1212
- #: includes/functions.php:2306
1213
  msgid "Active %s expires in %d days %d hours %d minutes"
1214
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1215
 
1216
- #: includes/functions.php:2310
1217
  msgid "Expired"
1218
  msgstr "Poteklo"
1219
 
1220
- #: includes/functions.php:2318 settings.php:1465 settings.php:1480
1221
- #: settings.php:2067
1222
  msgid "and"
1223
  msgstr "in"
1224
 
1225
- #: includes/functions.php:2321
1226
  msgid "fallback"
1227
  msgstr "rezerva"
1228
 
1229
- #: includes/functions.php:2322
1230
  msgid "Block to be used when scheduling expires"
1231
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1232
 
1233
- #: includes/functions.php:2347
1234
  msgid "Load in iframe"
1235
  msgstr "Naloži v iframe-u"
1236
 
1237
- #: includes/functions.php:2351 includes/placeholders.php:389
 
1238
  msgid "Width"
1239
  msgstr "Širina"
1240
 
1241
- #: includes/functions.php:2352
1242
  msgid "iframe width, empty means full width (100%)"
1243
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1244
 
1245
- #: includes/functions.php:2358 includes/placeholders.php:384
 
1246
  msgid "Height"
1247
  msgstr "Višina"
1248
 
1249
- #: includes/functions.php:2359
1250
  msgid "iframe height, empty means adjust it to iframe content height"
1251
  msgstr ""
1252
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1253
 
1254
- #: includes/functions.php:2366
1255
  msgid "Ad label in iframe"
1256
  msgstr "Oznaka oglasa v iframe-u"
1257
 
1258
- #: includes/functions.php:2371
1259
  msgid "Preview iframe code"
1260
  msgstr "Predpreglej kodo iframe"
1261
 
1262
- #: includes/functions.php:2371 includes/preview.php:1974 settings.php:1034
1263
- #: settings.php:2757
1264
  msgid "Preview"
1265
  msgstr "Predogled"
1266
 
1267
- #: includes/functions.php:2385 settings.php:4058
 
1268
  msgid "Limits"
1269
  msgstr "Omejitve"
1270
 
1271
- #: includes/functions.php:2390 includes/functions.php:4263
1272
- #: includes/functions.php:4326 settings.php:2199
 
1273
  msgid "Ad Blocking"
1274
  msgstr "Blokiranje Oglasov"
1275
 
1276
  #. translators: 1, 2 and 3, 4: HTML tags
1277
- #: includes/functions.php:2399
1278
  msgid ""
1279
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1280
  "for tracking!"
@@ -1284,7 +1315,7 @@ msgstr ""
1284
 
1285
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1286
  #. header
1287
- #: includes/functions.php:2408
1288
  msgid ""
1289
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1290
  "enabled and automatic insertion %6$s!"
@@ -1292,22 +1323,23 @@ msgstr ""
1292
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1293
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1294
 
1295
- #: includes/functions.php:2472
1296
  msgid "Click fraud protection is globally disabled"
1297
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1298
 
1299
- #: includes/functions.php:2476
1300
  msgid "Max clicks per time period are not defined"
1301
  msgstr "Največje število klikov na časovno enoto ni definirano"
1302
 
1303
  #. Translators: Max n impressions
1304
- #: includes/functions.php:2493
1305
  msgid "General limits"
1306
  msgstr "Splošne omejitve"
1307
 
1308
  #. Translators: Max n impressions per x days
1309
- #: includes/functions.php:2499 includes/functions.php:2511
1310
- #: includes/functions.php:2596
 
1311
  msgid "Current value"
1312
  msgstr "Trenutna vrednost"
1313
 
@@ -1319,14 +1351,18 @@ msgstr "Trenutna vrednost"
1319
  #. Translators: Max n impressions per x days
1320
  #. Translators: Max n clicks
1321
  #. Translators: Max n clicks per x days
1322
- #: includes/functions.php:2518 includes/functions.php:2528
1323
- #: includes/functions.php:2547 includes/functions.php:2557
1324
- #: includes/functions.php:2603 includes/functions.php:2612
1325
- #: includes/functions.php:2630 includes/functions.php:2639 settings.php:1988
 
 
 
 
1326
  msgid "Max"
1327
  msgstr "Največ"
1328
 
1329
- #: includes/functions.php:2519
1330
  msgid ""
1331
  "Maximum number of impressions for this block. Empty means no general "
1332
  "impression limit."
@@ -1338,8 +1374,10 @@ msgstr ""
1338
  #. Translators: Max n impressions per x days
1339
  #. Translators: Max n impressions
1340
  #. Translators: Max n impressions per x days
1341
- #: includes/functions.php:2521 includes/functions.php:2531
1342
- #: includes/functions.php:2606 includes/functions.php:2615
 
 
1343
  msgid "impression"
1344
  msgid_plural "impressions"
1345
  msgstr[0] "prikaz"
@@ -1347,7 +1385,7 @@ msgstr[1] "prikaza"
1347
  msgstr[2] "prikazi"
1348
  msgstr[3] "prikazov"
1349
 
1350
- #: includes/functions.php:2529
1351
  msgid ""
1352
  "Maximum number of impressions per time period. Empty means no time limit."
1353
  msgstr ""
@@ -1358,12 +1396,15 @@ msgstr ""
1358
  #. Translators: Max n clicks per x days
1359
  #. Translators: Max n impressions per x days
1360
  #. Translators: Max n clicks per x days
1361
- #: includes/functions.php:2535 includes/functions.php:2564
1362
- #: includes/functions.php:2619 includes/functions.php:2646
 
 
1363
  msgid "per"
1364
  msgstr "na"
1365
 
1366
- #: includes/functions.php:2536 includes/functions.php:2565
 
1367
  msgid "Time period in days. Empty means no time limit."
1368
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1369
 
@@ -1372,11 +1413,14 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1372
  #. Translators: Max n impressions per x days
1373
  #. Translators: Max n clicks per x days
1374
  #. Translators: Don't show for x days
1375
- #: includes/functions.php:2538 includes/functions.php:2567
1376
- #: includes/functions.php:2622 includes/functions.php:2649
1377
- #: includes/functions.php:2755 includes/functions.php:3083 strings.php:196
1378
- #: strings.php:197 strings.php:198 strings.php:199 strings.php:200
1379
- #: strings.php:201
 
 
 
1380
  msgid "day"
1381
  msgid_plural "days"
1382
  msgstr[0] "dan"
@@ -1384,7 +1428,7 @@ msgstr[1] "dni"
1384
  msgstr[2] "dni"
1385
  msgstr[3] "dni"
1386
 
1387
- #: includes/functions.php:2548
1388
  msgid ""
1389
  "Maximum number of clicks on this block. Empty means no general click limit."
1390
  msgstr ""
@@ -1395,9 +1439,11 @@ msgstr ""
1395
  #. Translators: Max n clicks per x days
1396
  #. Translators: Max n clicks
1397
  #. Translators: Max n clicks per x days
1398
- #: includes/functions.php:2550 includes/functions.php:2560
1399
- #: includes/functions.php:2633 includes/functions.php:2642
1400
- #: includes/functions.php:4474
 
 
1401
  msgid "click"
1402
  msgid_plural "clicks"
1403
  msgstr[0] "klik"
@@ -1405,17 +1451,18 @@ msgstr[1] "klika"
1405
  msgstr[2] "kliki"
1406
  msgstr[3] "klikov"
1407
 
1408
- #: includes/functions.php:2558
1409
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1410
  msgstr ""
1411
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1412
  "omejitev."
1413
 
1414
- #: includes/functions.php:2583
1415
  msgid "Individual visitor limits"
1416
  msgstr "Omejitve posameznih obiskovalcev"
1417
 
1418
- #: includes/functions.php:2587 includes/functions.php:2589
 
1419
  msgid ""
1420
  "When specified number of clicks on this block for a visitor will be reached "
1421
  "in the specified time period, all blocks that have click fraud protection "
@@ -1427,11 +1474,11 @@ msgstr ""
1427
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1428
  "pred goljufijo s kliki."
1429
 
1430
- #: includes/functions.php:2589
1431
  msgid "Trigger click fraud protection"
1432
  msgstr "Sproži zaščito pred goljufijo s kliki"
1433
 
1434
- #: includes/functions.php:2604
1435
  msgid ""
1436
  "Maximum number of impressions of this block for each visitor. Empty means no "
1437
  "impression limit."
@@ -1439,7 +1486,7 @@ msgstr ""
1439
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1440
  "pomeni brez omejitev prikazov."
1441
 
1442
- #: includes/functions.php:2613
1443
  msgid ""
1444
  "Maximum number of impressions per time period for each visitor. Empty means "
1445
  "no impression limit per time period for visitors."
@@ -1447,7 +1494,8 @@ msgstr ""
1447
  "Največje število prikazov na časovno enoto za posameznega obiskovalca. "
1448
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1449
 
1450
- #: includes/functions.php:2620 includes/functions.php:2647
 
1451
  msgid ""
1452
  "Time period in days. Use decimal value (with decimal point) for shorter "
1453
  "periods. Empty means no time limit."
@@ -1455,7 +1503,7 @@ msgstr ""
1455
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1456
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1457
 
1458
- #: includes/functions.php:2631
1459
  msgid ""
1460
  "Maximum number of clicks on this block for each visitor. Empty means no "
1461
  "click limit."
@@ -1463,7 +1511,7 @@ msgstr ""
1463
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1464
  "brez omejitev klikov."
1465
 
1466
- #: includes/functions.php:2640
1467
  msgid ""
1468
  "Maximum number of clicks per time period for each visitor. Empty means no "
1469
  "click limit per time period for visitors."
@@ -1471,32 +1519,33 @@ msgstr ""
1471
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1472
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1473
 
1474
- #: includes/functions.php:2666
1475
  msgid "When ad blocking is detected"
1476
  msgstr "Ko je blokiranje oglasov zaznano"
1477
 
1478
- #: includes/functions.php:2675
1479
  msgid "replacement"
1480
  msgstr "nadomestek"
1481
 
1482
- #: includes/functions.php:2676
1483
  msgid "Block to be shown when ad blocking is detected"
1484
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1485
 
1486
- #: includes/functions.php:2677
1487
  msgctxt "replacement"
1488
  msgid "None"
1489
  msgstr "Noben"
1490
 
1491
- #: includes/functions.php:2694 includes/functions.php:5481
 
1492
  msgid "Close button"
1493
  msgstr "Gumb Zapri"
1494
 
1495
- #: includes/functions.php:2746
1496
  msgid "Auto close after"
1497
  msgstr "Ssamodejno zapri po"
1498
 
1499
- #: includes/functions.php:2747
1500
  msgid ""
1501
  "Time in seconds in which the ad will automatically close. Leave empty to "
1502
  "disable auto closing."
@@ -1505,11 +1554,11 @@ msgstr ""
1505
  "izključitev samodejnega zapiranja."
1506
 
1507
  #. Translators: Don't show for x days
1508
- #: includes/functions.php:2752
1509
  msgid "Don't show for"
1510
  msgstr "Ne prikaži"
1511
 
1512
- #: includes/functions.php:2753
1513
  msgid ""
1514
  "Time in days in which closed ad will not be shown again. Use decimal value "
1515
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1520,11 +1569,11 @@ msgstr ""
1520
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1521
 
1522
  #. Translators: Delay showing for x pageviews
1523
- #: includes/functions.php:2773
1524
  msgid "Delay showing for"
1525
  msgstr "Zakasni prikaz za"
1526
 
1527
- #: includes/functions.php:2774
1528
  msgid ""
1529
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1530
  "empty to insert the code for the first pageview."
@@ -1534,7 +1583,8 @@ msgstr ""
1534
 
1535
  #. Translators: Delay showing for x pageviews
1536
  #. Translators: Show every x pageviews
1537
- #: includes/functions.php:2776 includes/functions.php:2783
 
1538
  msgid "pageview"
1539
  msgid_plural "pageviews"
1540
  msgstr[0] "ogled strani"
@@ -1543,7 +1593,7 @@ msgstr[2] "oglede strani"
1543
  msgstr[3] "ogledov strani"
1544
 
1545
  #. Translators: Show every x pageviews
1546
- #: includes/functions.php:2780
1547
  msgid "Show every"
1548
  msgid_plural "Show every"
1549
  msgstr[0] "Prikaži vsak"
@@ -1551,7 +1601,7 @@ msgstr[1] "Prikaži vsaka"
1551
  msgstr[2] "Prikaži vsake"
1552
  msgstr[3] "Prikaži vsakih"
1553
 
1554
- #: includes/functions.php:2781
1555
  msgid ""
1556
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1557
  "for every pageview."
@@ -1559,28 +1609,28 @@ msgstr ""
1559
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1560
  "vstavljanje kode pri vsakem ogledu strani."
1561
 
1562
- #: includes/functions.php:2800
1563
  msgid "Lazy loading"
1564
  msgstr "Leno nalaganje"
1565
 
1566
  #. Translators: %s MaxMind
1567
- #: includes/functions.php:2857
1568
  msgid "This product includes GeoLite2 data created by %s"
1569
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1570
 
1571
- #: includes/functions.php:2868
1572
  msgid "IP geolocation database"
1573
  msgstr "Podatkovna baza za IP geolokacijo"
1574
 
1575
- #: includes/functions.php:2871
1576
  msgid "Select IP geolocation database."
1577
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1578
 
1579
- #: includes/functions.php:2882
1580
  msgid "Automatic database updates"
1581
  msgstr "Samodejna posodobitev podatkovne baze"
1582
 
1583
- #: includes/functions.php:2885
1584
  msgid ""
1585
  "Automatically download and update free GeoLite2 IP geolocation database by "
1586
  "MaxMind"
@@ -1588,11 +1638,11 @@ msgstr ""
1588
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1589
  "podatkovno bazo MaxMind"
1590
 
1591
- #: includes/functions.php:2893
1592
  msgid "Database"
1593
  msgstr "Podatkovna baza"
1594
 
1595
- #: includes/functions.php:2896
1596
  msgid ""
1597
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1598
  "file"
@@ -1601,15 +1651,15 @@ msgstr ""
1601
  "podatkovne baze"
1602
 
1603
  #. translators: %d: group number
1604
- #: includes/functions.php:2914
1605
  msgid "Group %d"
1606
  msgstr "Skupina %d"
1607
 
1608
- #: includes/functions.php:2920
1609
  msgid "countries"
1610
  msgstr "države"
1611
 
1612
- #: includes/functions.php:2965
1613
  msgid ""
1614
  "Enable impression and click tracking. You also need to enable tracking for "
1615
  "each block you want to track."
@@ -1617,32 +1667,33 @@ msgstr ""
1617
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1618
  "vsak blok, ki bi ga radi sledili."
1619
 
1620
- #: includes/functions.php:2972
1621
  msgid "Generate report"
1622
  msgstr "Generiraj poročilo"
1623
 
1624
- #: includes/functions.php:2980
1625
  msgid "Impression and Click Tracking"
1626
  msgstr "Sledenje Prikazov in Klikov"
1627
 
1628
- #: includes/functions.php:2981 settings.php:2645
 
1629
  msgctxt "ad blocking detection"
1630
  msgid "NOT ENABLED"
1631
  msgstr "NI OMOGOČENO"
1632
 
1633
- #: includes/functions.php:2997
1634
  msgid "Internal"
1635
  msgstr "Notranje"
1636
 
1637
- #: includes/functions.php:3001
1638
  msgid "Track impressions and clicks with internal tracking and statistics"
1639
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1640
 
1641
- #: includes/functions.php:3006
1642
  msgid "External"
1643
  msgstr "Zunanje"
1644
 
1645
- #: includes/functions.php:3010
1646
  msgid ""
1647
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1648
  "code installed)"
@@ -1650,27 +1701,27 @@ msgstr ""
1650
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1651
  "kodo za sledenje)"
1652
 
1653
- #: includes/functions.php:3015
1654
  msgid "Track Pageviews"
1655
  msgstr "Sledi Ogledom Strani"
1656
 
1657
- #: includes/functions.php:3021
1658
  msgid "Track Pageviews by Device (as configured for viewports)"
1659
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1660
 
1661
- #: includes/functions.php:3031
1662
  msgid "Track for Logged in Users"
1663
  msgstr "Sledi za Prijavljene Upor."
1664
 
1665
- #: includes/functions.php:3037
1666
  msgid "Track impressions and clicks from logged in users"
1667
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1668
 
1669
- #: includes/functions.php:3047
1670
  msgid "Click Detection"
1671
  msgstr "Zaznavanje klikov"
1672
 
1673
- #: includes/functions.php:3053
1674
  msgid ""
1675
  "Standard method detects clicks only on banners with links, Advanced method "
1676
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1678,19 +1729,19 @@ msgstr ""
1678
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1679
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1680
 
1681
- #: includes/functions.php:3072
1682
  msgid "Click fraud protection"
1683
  msgstr "Zaščita pred goljufijo s kliki"
1684
 
1685
- #: includes/functions.php:3076
1686
  msgid "Globally enable click fraud protection for selected blocks."
1687
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1688
 
1689
- #: includes/functions.php:3082
1690
  msgid "Protection time"
1691
  msgstr "Čas zaščite"
1692
 
1693
- #: includes/functions.php:3083
1694
  msgid ""
1695
  "Time period in days in which blocks with enabled click fraud protection will "
1696
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1699,11 +1750,11 @@ msgstr ""
1699
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1700
  "za krajša obdobja."
1701
 
1702
- #: includes/functions.php:3102
1703
  msgid "Report header image"
1704
  msgstr "Slika v glavi poročila"
1705
 
1706
- #: includes/functions.php:3105
1707
  msgid ""
1708
  "Image or logo to be displayed in the header of the statistins report. "
1709
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1713,15 +1764,15 @@ msgstr ""
1713
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1714
  "ponastavitev na privzeto sliko."
1715
 
1716
- #: includes/functions.php:3106 strings.php:227
1717
  msgid "Select or upload header image"
1718
  msgstr "Izberi ali naloži sliko glave"
1719
 
1720
- #: includes/functions.php:3111
1721
  msgid "Report header title"
1722
  msgstr "Naslov v glavi poročila"
1723
 
1724
- #: includes/functions.php:3114
1725
  msgid ""
1726
  "Title to be displayed in the header of the statistics report. Text or HTML "
1727
  "code, clear to reset to default text."
@@ -1729,11 +1780,11 @@ msgstr ""
1729
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1730
  "pobrišite za ponastavitev na privzeto besedilo."
1731
 
1732
- #: includes/functions.php:3119
1733
  msgid "Report header description"
1734
  msgstr "Opis v glavi poročila"
1735
 
1736
- #: includes/functions.php:3122
1737
  msgid ""
1738
  "Description to be displayed in the header of the statistics report. Text or "
1739
  "HTML code, clear to reset to default text."
@@ -1741,11 +1792,11 @@ msgstr ""
1741
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1742
  "pobrišite za ponastavitev na privzeto besedilo."
1743
 
1744
- #: includes/functions.php:3127
1745
  msgid "Report footer"
1746
  msgstr "Noga poročila"
1747
 
1748
- #: includes/functions.php:3130
1749
  msgid ""
1750
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1751
  "to default text."
@@ -1753,114 +1804,118 @@ msgstr ""
1753
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1754
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1755
 
1756
- #: includes/functions.php:3135
1757
  msgid "Public report key"
1758
  msgstr "Ključ za javno poročilo"
1759
 
1760
- #: includes/functions.php:3138
1761
  msgid "String to generate unique report IDs. Clear to reset to default value."
1762
  msgstr ""
1763
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1764
  "privzeto vrednost."
1765
 
1766
- #: includes/functions.php:3170
1767
  msgid "Are you sure you want to clear all exceptions for block"
1768
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1769
 
1770
- #: includes/functions.php:3171 settings.php:1136 settings.php:1191
1771
- #: settings.php:1237
1772
  msgid "Clear all exceptions for block"
1773
  msgstr "Pobriši vse izjeme za blok"
1774
 
1775
- #: includes/functions.php:3178
1776
  msgid "Are you sure you want to clear all exceptions?"
1777
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1778
 
1779
- #: includes/functions.php:3178
1780
  msgid "Clear all exceptions for all blocks"
1781
  msgstr "Pobriši vse izjeme za vse bloke"
1782
 
1783
- #: includes/functions.php:3183 settings.php:3715 settings.php:4134
 
1784
  msgid "Type"
1785
  msgstr "Vrsta"
1786
 
1787
- #: includes/functions.php:3201
1788
  msgid "View"
1789
  msgstr "Poglej"
1790
 
1791
- #: includes/functions.php:3202 includes/functions.php:3209
1792
- #: includes/functions.php:3213 includes/placeholders.php:353
1793
- #: includes/preview.php:2281 settings.php:1368 settings.php:3478
 
 
1794
  msgid "Edit"
1795
  msgstr "Uredi"
1796
 
1797
- #: includes/functions.php:3232
1798
  msgid "Are you sure you want to clear all exceptions for"
1799
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1800
 
1801
- #: includes/functions.php:3233
1802
  msgid "Clear all exceptions for"
1803
  msgstr "Pobriši vse izjeme za"
1804
 
1805
- #: includes/functions.php:3246
1806
  msgid "No exceptions"
1807
  msgstr "Brez izjem"
1808
 
1809
  #. translators: %s: Ad Inserter Pro
1810
- #: includes/functions.php:3257
1811
  msgid "%s options for network blogs"
1812
  msgstr "%s izbire za omrežne bloge"
1813
 
1814
  #. translators: %s: Ad Inserter Pro
1815
- #: includes/functions.php:3262
1816
  msgid "Enable %s widgets for sub-sites"
1817
  msgstr "Omogoči %s gradnik za pod-spletišča"
1818
 
1819
- #: includes/functions.php:3262
1820
  msgid "Widgets"
1821
  msgstr "Gradniki"
1822
 
1823
- #: includes/functions.php:3267
1824
  msgid "Enable PHP code processing for sub-sites"
1825
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1826
 
1827
- #: includes/functions.php:3267
1828
  msgid "PHP Processing"
1829
  msgstr "PHP Procesiranje"
1830
 
1831
  #. translators: %s: Ad Inserter Pro
1832
- #: includes/functions.php:3272
1833
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1834
  msgstr ""
1835
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1836
 
1837
- #: includes/functions.php:3272
1838
  msgid "Post/Page exceptions"
1839
  msgstr "Izjeme prispevkov/strani"
1840
 
1841
  #. translators: %s: Ad Inserter Pro
1842
- #: includes/functions.php:3277
1843
  msgid "Enable %s settings page for sub-sites"
1844
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1845
 
1846
- #: includes/functions.php:3277
1847
  msgid "Settings page"
1848
  msgstr "Stran z nastavitvami"
1849
 
1850
  #. translators: %s: Ad Inserter Pro
1851
- #: includes/functions.php:3282
1852
  msgid "Enable %s settings of main site to be used for all blogs"
1853
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1854
 
1855
- #: includes/functions.php:3282
1856
  msgid "Main site settings used for all blogs"
1857
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1858
 
1859
- #: includes/functions.php:3293 settings.php:2644
 
1860
  msgid "Ad Blocking Detection"
1861
  msgstr "Zaznavanje Blokiranja Oglasov"
1862
 
1863
- #: includes/functions.php:3299
1864
  msgid ""
1865
  "Standard method is reliable but should be used only if Advanced method does "
1866
  "not work. Advanced method recreates files used for detection with random "
@@ -1872,71 +1927,79 @@ msgstr ""
1872
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1873
  "dostopna"
1874
 
1875
- #: includes/functions.php:3926 includes/functions.php:4016
1876
- #: includes/functions.php:4036
 
1877
  msgid "AD BLOCKING"
1878
  msgstr "BLOKIRANJE OGLASOV"
1879
 
1880
- #: includes/functions.php:3927 includes/functions.php:3967
1881
- #: includes/functions.php:4010 includes/functions.php:4037
 
 
1882
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1883
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1884
 
1885
- #: includes/functions.php:3930 includes/functions.php:4009
1886
- #: includes/functions.php:4043
 
1887
  msgid "NO AD BLOCKING"
1888
  msgstr "NI BLOKIRANJA OGLASOV"
1889
 
1890
- #: includes/functions.php:3966 includes/functions.php:3973
 
1891
  msgid "AD BLOCKING REPLACEMENT"
1892
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1893
 
1894
- #: includes/functions.php:4116 includes/functions.php:4325
 
1895
  msgid "Pageviews"
1896
  msgstr "Ogledi strani"
1897
 
1898
- #: includes/functions.php:4262
1899
  msgctxt "Version"
1900
  msgid "Unknown"
1901
  msgstr "Neznana"
1902
 
1903
- #: includes/functions.php:4262
1904
  msgctxt "Times"
1905
  msgid "DISPLAYED"
1906
  msgstr "PRIKAZANO"
1907
 
1908
- #: includes/functions.php:4262
1909
  msgid "No version"
1910
  msgstr "Brez različice"
1911
 
1912
- #: includes/functions.php:4263
1913
  msgctxt "Times"
1914
  msgid "BLOCKED"
1915
  msgstr "BLOKIRANO"
1916
 
1917
- #: includes/functions.php:4325
1918
  msgid "Impressions"
1919
  msgstr "Prikazi"
1920
 
1921
- #: includes/functions.php:4326 includes/functions.php:4327
1922
- #: includes/functions.php:4382
 
1923
  msgid "Clicks"
1924
  msgstr "Kliki"
1925
 
1926
- #: includes/functions.php:4327
1927
  msgid "events"
1928
  msgstr "dogodki"
1929
 
1930
- #: includes/functions.php:4328
1931
  msgid "Ad Blocking Share"
1932
  msgstr "Delež blokiranja oglasov"
1933
 
1934
  #. translators: CTR as Click Through Rate
1935
- #: includes/functions.php:4328 includes/functions.php:4388
 
1936
  msgid "CTR"
1937
  msgstr "CTR"
1938
 
1939
- #: includes/functions.php:4470
1940
  msgid "pageviews"
1941
  msgid_plural "pageviews"
1942
  msgstr[0] "ogled strani"
@@ -1944,7 +2007,7 @@ msgstr[1] "ogleda strani"
1944
  msgstr[2] "oglede strani"
1945
  msgstr[3] "ogledov strani"
1946
 
1947
- #: includes/functions.php:4470
1948
  msgid "impressions"
1949
  msgid_plural "impressions"
1950
  msgstr[0] "prikaz"
@@ -1952,7 +2015,7 @@ msgstr[1] "prikaza"
1952
  msgstr[2] "prikazi"
1953
  msgstr[3] "prikazov"
1954
 
1955
- #: includes/functions.php:4474
1956
  msgid "event"
1957
  msgid_plural "events"
1958
  msgstr[0] "dogodek"
@@ -1960,59 +2023,64 @@ msgstr[1] "dogodka"
1960
  msgstr[2] "dogodki"
1961
  msgstr[3] "dogodkov"
1962
 
1963
- #: includes/functions.php:4569
1964
  msgctxt "Pageviews / Impressions"
1965
  msgid "Average"
1966
  msgstr "Povprečni"
1967
 
1968
- #: includes/functions.php:4590
1969
  msgctxt "Ad Blocking / Clicks"
1970
  msgid "Average"
1971
  msgstr "Povprečno"
1972
 
1973
- #: includes/functions.php:4614
1974
  msgctxt "Ad Blocking Share / CTR"
1975
  msgid "Average"
1976
  msgstr "Povprečni"
1977
 
1978
  #. Translators: %s: Ad Inserter Pro
1979
- #: includes/functions.php:4796 includes/functions.php:4888
1980
- #: includes/functions.php:5204 strings.php:181
 
1981
  msgid "%s Report"
1982
  msgstr "%s Poročilo"
1983
 
1984
- #: includes/functions.php:5110
1985
  msgid "for last month"
1986
  msgstr "za zadnji mesec"
1987
 
1988
- #: includes/functions.php:5115
1989
  msgid "for this month"
1990
  msgstr "za ta mesec"
1991
 
1992
- #: includes/functions.php:5120
1993
  msgid "for this year"
1994
  msgstr "za to leto"
1995
 
1996
- #: includes/functions.php:5125
1997
  msgid "for the last 15 days"
1998
  msgstr "za zadnjih 15 dni"
1999
 
2000
- #: includes/functions.php:5130
2001
  msgid "for the last 30 days"
2002
  msgstr "za zadnjih 30 dni"
2003
 
2004
- #: includes/functions.php:5135
2005
  msgid "for the last 90 days"
2006
  msgstr "za zadnjih 90 dni"
2007
 
2008
- #: includes/functions.php:5140
2009
  msgid "for the last 180 days"
2010
  msgstr "za zadnjih 180 dni"
2011
 
2012
- #: includes/functions.php:5145
2013
  msgid "for the last 365 days"
2014
  msgstr "za zadnjih 365 dni"
2015
 
 
 
 
 
2016
  #: includes/placeholders.php:20
2017
  msgid "Custom"
2018
  msgstr "Po meri"
@@ -2037,7 +2105,7 @@ msgstr "Zapri urejevalnik polnila"
2037
  msgid "Placeholder"
2038
  msgstr "Polnilo"
2039
 
2040
- #: includes/placeholders.php:363 settings.php:881 settings.php:4135
2041
  msgid "Size"
2042
  msgstr "Velikost"
2043
 
@@ -2170,11 +2238,11 @@ msgstr "Prekliči"
2170
  msgid "Ad Blocking Detected Message Preview"
2171
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2172
 
2173
- #: includes/preview-adb.php:348 settings.php:2770
2174
  msgid "Message CSS"
2175
  msgstr "CSS sporočila"
2176
 
2177
- #: includes/preview-adb.php:353 settings.php:2778
2178
  msgid "Overlay CSS"
2179
  msgstr "CSS prevleke"
2180
 
@@ -2214,7 +2282,7 @@ msgstr "div za ovijanje"
2214
  msgid "background"
2215
  msgstr "ozadje"
2216
 
2217
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1329
2218
  msgid "Alignment"
2219
  msgstr "Poravnava"
2220
 
@@ -2359,7 +2427,7 @@ msgstr ""
2359
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2360
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2361
 
2362
- #: settings.php:157 settings.php:1121
2363
  msgid ""
2364
  "Settings for individual exceptions have been updated. Please check all "
2365
  "blocks that have exceptions and and then save settings."
@@ -2367,32 +2435,32 @@ msgstr ""
2367
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
2368
  "bloke, ki imajo izjeme in potem shranite nastavitve."
2369
 
2370
- #: settings.php:199
2371
  msgid "Online documentation"
2372
  msgstr "Spletna Dokumentacija"
2373
 
2374
- #: settings.php:203 settings.php:717 settings.php:2166
2375
  msgid "Show AdSense ad units"
2376
  msgstr "Pokaži oglasne enote AdSense"
2377
 
2378
- #: settings.php:208
2379
  msgid "Edit ads.txt file"
2380
  msgstr "Uredi datoteko ads.txt"
2381
 
2382
- #: settings.php:211 settings.php:1064
2383
  msgid "Check theme for available positions for automatic insertion"
2384
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2385
 
2386
- #: settings.php:213
2387
  msgid "List all blocks"
2388
  msgstr "Izpiši seznam vseh blokov"
2389
 
2390
- #: settings.php:220
2391
  msgid "Loaded plugin JavaScript file version"
2392
  msgstr "Naložena različica JavaScript datoteke vtičnika"
2393
 
2394
  #. translators: %s: HTML tags
2395
- #: settings.php:222
2396
  msgid ""
2397
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2398
  "due to inappropriate caching."
@@ -2400,7 +2468,7 @@ msgstr ""
2400
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
2401
  "zaradi nepravilnega predpomnjenja."
2402
 
2403
- #: settings.php:223
2404
  msgid ""
2405
  "Missing version parameter of the JavaScript file, probably due to "
2406
  "inappropriate caching."
@@ -2408,7 +2476,7 @@ msgstr ""
2408
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2409
  "predpomnjenja."
2410
 
2411
- #: settings.php:224
2412
  msgid ""
2413
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2414
  "caching."
@@ -2416,7 +2484,7 @@ msgstr ""
2416
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
2417
  "zaradi nepravilnega predpomnjenja."
2418
 
2419
- #: settings.php:225 settings.php:236
2420
  msgid ""
2421
  "Please delete browser's cache and all other caches used and then reload this "
2422
  "page."
@@ -2424,12 +2492,12 @@ msgstr ""
2424
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
2425
  "potem na novo naložite to stran."
2426
 
2427
- #: settings.php:231
2428
  msgid "Loaded plugin CSS file version"
2429
  msgstr "Naložena različica CSS datoteke vtičnika"
2430
 
2431
  #. translators: %s: HTML tags
2432
- #: settings.php:233
2433
  msgid ""
2434
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2435
  "inappropriate caching."
@@ -2437,7 +2505,7 @@ msgstr ""
2437
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
2438
  "nepravilnega predpomnjenja."
2439
 
2440
- #: settings.php:234
2441
  msgid ""
2442
  "Missing version parameter of the CSS file, probably due to inappropriate "
2443
  "caching."
@@ -2445,54 +2513,54 @@ msgstr ""
2445
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2446
  "predpomnjenja."
2447
 
2448
- #: settings.php:235
2449
  msgid ""
2450
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2451
  msgstr ""
2452
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
2453
  "nepravilnega predpomnjenja."
2454
 
2455
- #: settings.php:242 settings.php:254
2456
  msgid "WARNING"
2457
  msgstr "OPOZORILO"
2458
 
2459
  #. translators: %s: HTML tags
2460
- #: settings.php:244
2461
  msgid "Page may %s not be loaded properly. %s"
2462
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
2463
 
2464
- #: settings.php:245
2465
  msgid ""
2466
  "Check ad blocking software that may block CSS, JavaScript or image files."
2467
  msgstr ""
2468
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
2469
  "JavaScript ali slikovne datoteke."
2470
 
2471
- #: settings.php:254
2472
  msgid ""
2473
- "To disable debugging functions and to enable insertions go to tab &#9881; / "
2474
- "tab Debugging"
2475
  msgstr ""
2476
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
2477
- "na zavihek &#9881; / zavihek Razhroščevanje"
2478
 
2479
- #: settings.php:256
2480
  msgid "Debugging functions enabled - some code is not inserted"
2481
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
2482
 
2483
- #: settings.php:273
2484
  msgid "Group name"
2485
  msgstr "Ime skupine"
2486
 
2487
- #: settings.php:274
2488
  msgid "Option name"
2489
  msgstr "Ime različice"
2490
 
2491
- #: settings.php:280
2492
  msgid "Share"
2493
  msgstr "Delež"
2494
 
2495
- #: settings.php:283
2496
  msgid ""
2497
  "Option share in percents - 0 means option is disabled, if share for one "
2498
  "option is not defined it will be calculated automatically. Leave all share "
@@ -2502,11 +2570,11 @@ msgstr ""
2502
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
2503
  "prazne za enakomerno porazdelitev deležev različic."
2504
 
2505
- #: settings.php:286
2506
  msgid "Time"
2507
  msgstr "Čas"
2508
 
2509
- #: settings.php:289
2510
  msgid ""
2511
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2512
  "Leave all time fields empty for no timed rotation."
@@ -2514,162 +2582,162 @@ msgstr ""
2514
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
2515
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
2516
 
2517
- #: settings.php:441
2518
  msgid "General Settings"
2519
  msgstr "Splošne Nastavitve"
2520
 
2521
- #: settings.php:665 settings.php:2497 settings.php:2564 settings.php:2750
2522
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2523
  msgstr ""
2524
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2525
 
2526
- #: settings.php:672
2527
  msgid "Toggle tools"
2528
  msgstr "Preklopi orodja"
2529
 
2530
- #: settings.php:680
2531
  msgid "Process PHP code in block"
2532
  msgstr "Procesiraj PHP kodo v bloku"
2533
 
2534
- #: settings.php:687
2535
  msgid "Disable insertion of this block"
2536
  msgstr "Onemogoči vstavljanje tega bloka"
2537
 
2538
- #: settings.php:699
2539
  msgid "Toggle code generator"
2540
  msgstr "Preklopi generator kode"
2541
 
2542
- #: settings.php:703
2543
  msgid "Toggle rotation editor"
2544
  msgstr "Preklopi urejevalnik rotacije"
2545
 
2546
- #: settings.php:707
2547
  msgid "Open visual HTML editor"
2548
  msgstr "Odpri vizualni HTML urejevalnik"
2549
 
2550
- #: settings.php:726
2551
  msgid "Clear block"
2552
  msgstr "Počisti blok"
2553
 
2554
- #: settings.php:731 settings.php:4007
2555
  msgid "Copy block"
2556
  msgstr "Kopiraj blok"
2557
 
2558
- #: settings.php:735
2559
  msgid "Paste name"
2560
  msgstr "Prilepi ime"
2561
 
2562
- #: settings.php:739
2563
  msgid "Paste code"
2564
  msgstr "Prilepi kodo"
2565
 
2566
- #: settings.php:743
2567
  msgid "Paste settings"
2568
  msgstr "Prilepi nastavitve"
2569
 
2570
- #: settings.php:747
2571
  msgid "Paste block (name, code and settings)"
2572
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2573
 
2574
- #: settings.php:766
2575
  msgid "Rotation groups"
2576
  msgstr "Skupine za rotacijo"
2577
 
2578
- #: settings.php:770
2579
  msgid "Remove option"
2580
  msgstr "Odstrani različico"
2581
 
2582
- #: settings.php:774
2583
  msgid "Add option"
2584
  msgstr "Dodaj različico"
2585
 
2586
- #: settings.php:789
2587
  msgid "Import code"
2588
  msgstr "Uvozi kodo"
2589
 
2590
- #: settings.php:793
2591
  msgid "Generate code"
2592
  msgstr "Generiraj kodo"
2593
 
2594
- #: settings.php:798
2595
  msgid "Banner"
2596
  msgstr "Pasica"
2597
 
2598
- #: settings.php:809
2599
  msgid "Image"
2600
  msgstr "Slika"
2601
 
2602
- #: settings.php:817
2603
  msgid "Link"
2604
  msgstr "Povezava"
2605
 
2606
- #: settings.php:828
2607
  msgid "Open link in a new tab"
2608
  msgstr "Odpri povezavo v novem zavihku"
2609
 
2610
- #: settings.php:829
2611
  msgid "Select Image"
2612
  msgstr "Izberi Sliko"
2613
 
2614
- #: settings.php:830
2615
  msgid "Select Placeholder"
2616
  msgstr "Izberi Polnilo"
2617
 
2618
- #: settings.php:842
2619
  msgid "Comment"
2620
  msgstr "Komentar"
2621
 
2622
- #: settings.php:851
2623
  msgctxt "AdSense"
2624
  msgid "Publisher ID"
2625
  msgstr "ID založnika"
2626
 
2627
- #: settings.php:860
2628
  msgctxt "AdSense"
2629
  msgid "Ad Slot ID"
2630
  msgstr "ID mesta"
2631
 
2632
- #: settings.php:869
2633
  msgid "Ad Type"
2634
  msgstr "Vrsta"
2635
 
2636
- #: settings.php:893
2637
  msgid "AMP Ad"
2638
  msgstr "AMP Oglas"
2639
 
2640
- #: settings.php:910
2641
  msgid "Show ad units from your AdSense account"
2642
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2643
 
2644
- #: settings.php:910
2645
  msgid "AdSense ad units"
2646
  msgstr "Oglasne enote AdSense"
2647
 
2648
- #: settings.php:927
2649
  msgctxt "AdSense"
2650
  msgid "Layout"
2651
  msgstr "Postavitev"
2652
 
2653
- #: settings.php:936
2654
  msgctxt "AdSense"
2655
  msgid "Layout Key"
2656
  msgstr "Ključ postavitve"
2657
 
2658
- #: settings.php:946
2659
  msgid "Full width"
2660
  msgstr "Celotna širina"
2661
 
2662
- #: settings.php:948
2663
  msgctxt "Full width"
2664
  msgid "Enabled"
2665
  msgstr "Omogočena"
2666
 
2667
- #: settings.php:949
2668
  msgctxt "Full width"
2669
  msgid "Disabled"
2670
  msgstr "Onemogočena"
2671
 
2672
- #: settings.php:1030
2673
  msgid ""
2674
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2675
  "Cookie or Referer (domain)"
@@ -2677,28 +2745,28 @@ msgstr ""
2677
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2678
  "parametrov, Piškotkov ali napotiteljev (domen)"
2679
 
2680
- #: settings.php:1030
2681
  msgid "Lists"
2682
  msgstr "Seznami"
2683
 
2684
- #: settings.php:1031
2685
  msgid "Widget, Shortcode and PHP function call"
2686
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2687
 
2688
- #: settings.php:1031
2689
  msgid "Manual"
2690
  msgstr "Ročno"
2691
 
2692
- #: settings.php:1032
2693
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2694
  msgstr ""
2695
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2696
 
2697
- #: settings.php:1032
2698
  msgid "Devices"
2699
  msgstr "Naprave"
2700
 
2701
- #: settings.php:1033
2702
  msgid ""
2703
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2704
  "feeds), Filter, Scheduling, General tag"
@@ -2706,15 +2774,15 @@ msgstr ""
2706
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2707
  "RSS), Filter, Urnik, Splošna oznaka"
2708
 
2709
- #: settings.php:1033
2710
  msgid "Misc"
2711
  msgstr "Razno"
2712
 
2713
- #: settings.php:1034
2714
  msgid "Preview code and alignment"
2715
  msgstr "Predogled kode in poravnave"
2716
 
2717
- #: settings.php:1037 settings.php:2150
2718
  msgid ""
2719
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2720
  "editor is active before saving settings."
@@ -2722,19 +2790,19 @@ msgstr ""
2722
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2723
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2724
 
2725
- #: settings.php:1039
2726
  msgid "Save All Settings"
2727
  msgstr "Shrani Vse Nastavitve"
2728
 
2729
- #: settings.php:1050 settings.php:1051
2730
  msgid "Enable insertion on posts"
2731
  msgstr "Omogoči vstavljanje na prispevkih"
2732
 
2733
- #: settings.php:1051 settings.php:3296
2734
  msgid "Posts"
2735
  msgstr "Prispevki"
2736
 
2737
- #: settings.php:1055 settings.php:1056
2738
  msgid ""
2739
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2740
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -2744,43 +2812,43 @@ msgstr ""
2744
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2745
  "lahko odvisni od ročic, ki jih tema uporablja)"
2746
 
2747
- #: settings.php:1056 settings.php:3298
2748
  msgid "Homepage"
2749
  msgstr "Domača stran"
2750
 
2751
- #: settings.php:1060 settings.php:1061
2752
  msgid "Enable insertion on category blog pages (including sub-pages)"
2753
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2754
 
2755
- #: settings.php:1061 settings.php:3299
2756
  msgid "Category pages"
2757
  msgstr "Strani kategorij"
2758
 
2759
- #: settings.php:1071 settings.php:1072
2760
  msgid "Enable insertion on static pages"
2761
  msgstr "Omogoči vstavljanje na statičnih straneh"
2762
 
2763
- #: settings.php:1072 settings.php:3297
2764
  msgid "Static pages"
2765
  msgstr "Statične strani"
2766
 
2767
- #: settings.php:1076 settings.php:1077
2768
  msgid "Enable insertion on search blog pages"
2769
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2770
 
2771
- #: settings.php:1077 settings.php:3301
2772
  msgid "Search pages"
2773
  msgstr "Iskalne strani"
2774
 
2775
- #: settings.php:1081 settings.php:1082
2776
  msgid "Enable insertion on tag or archive blog pages"
2777
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2778
 
2779
- #: settings.php:1085
2780
  msgid "Toggle settings for default insertion and list of individual exceptions"
2781
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2782
 
2783
- #: settings.php:1097
2784
  msgid ""
2785
  "Enable individual post/page exceptions for insertion of this block. They can "
2786
  "be configured on the individual post/page editor page (in the settings below "
@@ -2790,7 +2858,7 @@ msgstr ""
2790
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2791
  "nastavitvah pod urejevalnikom)."
2792
 
2793
- #: settings.php:1098
2794
  msgid ""
2795
  "Enable individual post/page exceptions for insertion of this block. When "
2796
  "enabled they can be configured on the individual post/page editor page (in "
@@ -2800,13 +2868,13 @@ msgstr ""
2800
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2801
  "strani (v nastavitvah pod urejevalnikom)."
2802
 
2803
- #: settings.php:1098
2804
  msgid "Use exceptions for individual posts or pages to change insertion"
2805
  msgstr ""
2806
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2807
 
2808
  #. Translators: Enabled means...
2809
- #: settings.php:1106
2810
  msgid ""
2811
  "means the insertion for this block is enabled by default and disabled for "
2812
  "exceptions."
@@ -2815,7 +2883,7 @@ msgstr ""
2815
  "izjeme."
2816
 
2817
  #. Translators: Disabled means...
2818
- #: settings.php:1107
2819
  msgid ""
2820
  "means the insertion for this block is disabled by default and enabled for "
2821
  "exceptions."
@@ -2823,7 +2891,7 @@ msgstr ""
2823
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2824
  "izjeme."
2825
 
2826
- #: settings.php:1108
2827
  msgid ""
2828
  "When individual post/page exceptions are enabled they can be configured on "
2829
  "the individual post/page editor page (in the settings below the editor)."
@@ -2832,69 +2900,27 @@ msgstr ""
2832
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2833
  "urejevalnikom)."
2834
 
2835
- #: settings.php:1116
2836
  msgid ""
2837
  "No exception for post or static page defined. Block will not be inserted."
2838
  msgstr ""
2839
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2840
 
2841
- #: settings.php:1133 settings.php:1188 settings.php:1234
2842
  msgctxt "post"
2843
  msgid "Type"
2844
  msgstr "Vrsta"
2845
 
2846
  #. translators: %d: block number
2847
- #: settings.php:1135 settings.php:1190 settings.php:1236
2848
  msgid "Are you sure you want to clear all exceptions for block %d?"
2849
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2850
 
2851
- #: settings.php:1165
2852
- msgid "Individual exceptions for posts"
2853
- msgstr "Posamezne izjeme za prispevke"
2854
-
2855
- #: settings.php:1168
2856
- msgid ""
2857
- "Define function of exceptions for posts for this block. Individual post "
2858
- "exceptions (if enabled here) can be configured in post editor."
2859
- msgstr ""
2860
- "Določite funkcijo izjem za prispevke za ta blok. Posamezne izjeme za "
2861
- "prispevke (če so omogočene tukaj) se lahko nastavijo v urejevalniku "
2862
- "prispevka."
2863
-
2864
- #: settings.php:1176
2865
- msgid ""
2866
- "No post with enabled insertion defined. Block will not be inserted into "
2867
- "posts."
2868
- msgstr ""
2869
- "Ni določen noben prispevek z omogočenim vstavljanjem. Blok ne bo vstavljen v "
2870
- "prispevke."
2871
-
2872
- #: settings.php:1210
2873
- msgid "Individual exceptions for static pages"
2874
- msgstr "Posamezne izjeme za statične strani"
2875
-
2876
- #: settings.php:1213
2877
- msgid ""
2878
- "Define function of exceptions for static pages for this block. Individual "
2879
- "static page exceptions (if enabled here) can be configured in page editor."
2880
- msgstr ""
2881
- "Določite funkcijo izjem za statične strani za ta blok. Posamezne izjeme za "
2882
- "statične strani (če so omogočene tukaj) se lahko nastavijo v urejevalniku "
2883
- "strani."
2884
-
2885
- #: settings.php:1221
2886
- msgid ""
2887
- "No static page with enabled insertion defined. Block will not be inserted "
2888
- "into static pages."
2889
- msgstr ""
2890
- "Ni določena nobena statična stran z omogočenim vstavljanjem. Blok ne bo "
2891
- "vstavljen v statične strani."
2892
-
2893
- #: settings.php:1260 settings.php:1408 settings.php:1942
2894
  msgid "Insertion"
2895
  msgstr "Vstavljanje"
2896
 
2897
- #: settings.php:1298
2898
  msgid ""
2899
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2900
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2910,7 +2936,7 @@ msgstr ""
2910
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2911
  "število pomeni štetje z nasprotne smeri"
2912
 
2913
- #: settings.php:1299
2914
  msgid ""
2915
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2916
  "means every N images, empty means all images, 0 means random image, value "
@@ -2925,7 +2951,7 @@ msgstr ""
2925
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2926
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2927
 
2928
- #: settings.php:1312
2929
  msgid ""
2930
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2931
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -2934,7 +2960,7 @@ msgstr ""
2934
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2935
  "izvlečki"
2936
 
2937
- #: settings.php:1313
2938
  msgid ""
2939
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2940
  "numbers, %N means every N posts, empty means all posts"
@@ -2943,7 +2969,7 @@ msgstr ""
2943
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2944
  "prispevki"
2945
 
2946
- #: settings.php:1314
2947
  msgid ""
2948
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2949
  "numbers, %N means every N comments, empty means all comments"
@@ -2952,44 +2978,44 @@ msgstr ""
2952
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2953
  "vsi komentarji"
2954
 
2955
- #: settings.php:1321
2956
  msgid "Toggle paragraph counting settings"
2957
  msgstr "Preklopi nastavitve za štetje odstavkov"
2958
 
2959
- #: settings.php:1322
2960
  msgid "Toggle paragraph clearance settings"
2961
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2962
 
2963
- #: settings.php:1325
2964
  msgid "Toggle insertion filter settings"
2965
  msgstr "Preklopi nastavitve filtra vstavljanja"
2966
 
2967
- #: settings.php:1343
2968
  msgid "Toggle insertion and alignment icons"
2969
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2970
 
2971
- #: settings.php:1357
2972
  msgid "Custom CSS code for the wrapping div"
2973
  msgstr "CSS koda po meri za div za ovijanje"
2974
 
2975
- #: settings.php:1360 settings.php:1361 settings.php:1362 settings.php:1363
2976
- #: settings.php:1364 settings.php:1365
2977
  msgid "CSS code for the wrapping div, click to edit"
2978
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
2979
 
2980
- #: settings.php:1378
2981
  msgid "HTML element"
2982
  msgstr "HTML element"
2983
 
2984
- #: settings.php:1391
2985
  msgid "HTML element selector or comma separated list of selectors"
2986
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2987
 
2988
- #: settings.php:1397 settings.php:2655
2989
  msgid "Action"
2990
  msgstr "Akcija"
2991
 
2992
- #: settings.php:1409
2993
  msgid ""
2994
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2995
  "Server-side insertion inserts block when the page is generated but needs "
@@ -2999,11 +3025,11 @@ msgstr ""
2999
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3000
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3001
 
3002
- #: settings.php:1419
3003
  msgid "JavaScript code position"
3004
  msgstr "Položaj JavaScript kode"
3005
 
3006
- #: settings.php:1420
3007
  msgid ""
3008
  "Page position where the JavaScript code for client-side insertion will be "
3009
  "inserted. Should be after the HTML element if not waiting for DOM ready."
@@ -3012,61 +3038,75 @@ msgstr ""
3012
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3013
  "DOM."
3014
 
3015
- #: settings.php:1435
3016
  msgid "Count"
3017
  msgstr "Štej"
3018
 
3019
- #: settings.php:1441
3020
  msgid "paragraphs with tags"
3021
  msgstr "odstavke z značkami"
3022
 
3023
- #: settings.php:1447
3024
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3025
  msgstr ""
3026
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3027
 
3028
- #: settings.php:1456
3029
  msgid "that have between"
3030
  msgstr "ki imajo med"
3031
 
3032
- #: settings.php:1462
3033
  msgid "Minimum number of paragraph words, leave empty for no limit"
3034
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3035
 
3036
- #: settings.php:1471
3037
  msgid "Maximum number of paragraph words, leave empty for no limit"
3038
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3039
 
3040
- #: settings.php:1474 settings.php:2069
3041
  msgid "words"
3042
  msgstr "besed"
3043
 
3044
- #: settings.php:1489 settings.php:1555 settings.php:1581
3045
  msgid "Comma separated texts"
3046
  msgstr "Z vejico ločena besedila"
3047
 
3048
- #: settings.php:1498
3049
- msgid "Minimum number of paragraphs"
3050
- msgstr "Najmanjše število odstavkov"
3051
-
3052
- #. translators: %s: list of HTML tags
3053
- #: settings.php:1513
3054
  msgid ""
3055
- "Count also paragraphs inside %s elements - defined on general plugin "
3056
- "settings page - tab &#9881; / tab General"
3057
  msgstr ""
3058
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
3059
- "nastavitev vtičnika - zavihek &#9881; / zavihek Splošno"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3060
 
3061
- #: settings.php:1513
3062
- msgid "Count inside special elements"
3063
- msgstr "Štej znotraj posebnih elementov"
 
3064
 
3065
- #: settings.php:1524
 
 
 
 
3066
  msgid "Minimum number of words in paragraphs above"
3067
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3068
 
3069
- #: settings.php:1530
3070
  msgid ""
3071
  "Used only with automatic insertion After paragraph and empty paragraph "
3072
  "numbers"
@@ -3074,128 +3114,128 @@ msgstr ""
3074
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3075
  "številkami odstavkov"
3076
 
3077
- #: settings.php:1540 settings.php:1566
3078
  msgid "In"
3079
  msgstr "V"
3080
 
3081
- #: settings.php:1546
3082
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3083
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3084
 
3085
- #: settings.php:1549
3086
  msgid "paragraphs above avoid"
3087
  msgstr "odstavkih zgoraj se izogni"
3088
 
3089
- #: settings.php:1572
3090
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3091
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3092
 
3093
- #: settings.php:1575
3094
  msgid "paragraphs below avoid"
3095
  msgstr "odstavkih spodaj se izogni"
3096
 
3097
- #: settings.php:1591
3098
  msgid "If text is found"
3099
  msgstr "Če je besedilo najdeno"
3100
 
3101
- #: settings.php:1598
3102
  msgid "check up to"
3103
  msgstr "preveri do"
3104
 
3105
- #: settings.php:1606
3106
  msgctxt "check up to"
3107
  msgid "paragraphs"
3108
  msgstr "odstavkov"
3109
 
3110
- #: settings.php:1622
3111
  msgid "Categories"
3112
  msgstr "Kategorije"
3113
 
3114
- #: settings.php:1625
3115
  msgid "Toggle category editor"
3116
  msgstr "Preklopi urejevalnik kategorij"
3117
 
3118
- #: settings.php:1628
3119
  msgid "Comma separated category slugs"
3120
  msgstr "Z vejico ločeni ključi kategorij"
3121
 
3122
- #: settings.php:1632
3123
  msgid "Blacklist categories"
3124
  msgstr "Črni seznam kategorij"
3125
 
3126
- #: settings.php:1636
3127
  msgid "Whitelist categories"
3128
  msgstr "Beli seznam kategorij"
3129
 
3130
- #: settings.php:1648
3131
  msgid "Tags"
3132
  msgstr "Oznake"
3133
 
3134
- #: settings.php:1651
3135
  msgid "Toggle tag editor"
3136
  msgstr "Preklopi urejevalnik oznak"
3137
 
3138
- #: settings.php:1654
3139
  msgid "Comma separated tag slugs"
3140
  msgstr "Z vejico ločeni ključi oznak"
3141
 
3142
- #: settings.php:1658
3143
  msgid "Blacklist tags"
3144
  msgstr "Črni seznam oznak"
3145
 
3146
- #: settings.php:1662
3147
  msgid "Whitelist tags"
3148
  msgstr "Beli seznam oznak"
3149
 
3150
- #: settings.php:1674
3151
  msgid "Taxonomies"
3152
  msgstr "Taksonomije"
3153
 
3154
- #: settings.php:1677
3155
  msgid "Toggle taxonomy editor"
3156
  msgstr "Preklopi urejevalnik taksonomij"
3157
 
3158
- #: settings.php:1680
3159
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3160
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3161
 
3162
- #: settings.php:1684
3163
  msgid "Blacklist taxonomies"
3164
  msgstr "Črni seznam taksonomij"
3165
 
3166
- #: settings.php:1688
3167
  msgid "Whitelist taxonomies"
3168
  msgstr "Beli seznam taksonomij"
3169
 
3170
- #: settings.php:1700
3171
  msgid "Post IDs"
3172
  msgstr "ID-ji prispevkov"
3173
 
3174
- #: settings.php:1703
3175
  msgid "Toggle post/page ID editor"
3176
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3177
 
3178
- #: settings.php:1706
3179
  msgid "Comma separated post/page IDs"
3180
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3181
 
3182
- #: settings.php:1710
3183
  msgid "Blacklist IDs"
3184
  msgstr "Črni seznam ID-jev"
3185
 
3186
- #: settings.php:1714
3187
  msgid "Whitelist IDs"
3188
  msgstr "Beli seznam ID-jev"
3189
 
3190
- #: settings.php:1726
3191
  msgid "Urls"
3192
  msgstr "Url-ji"
3193
 
3194
- #: settings.php:1729
3195
  msgid "Toggle url editor"
3196
  msgstr "Preklopi urejevalnik url-jev"
3197
 
3198
- #: settings.php:1732
3199
  msgid ""
3200
  "Comma separated urls (page addresses) starting with / after domain name (e."
3201
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3207,23 +3247,23 @@ msgstr ""
3207
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3208
  "začetek*. *url-vzorec*, *url-konec)"
3209
 
3210
- #: settings.php:1736
3211
  msgid "Blacklist urls"
3212
  msgstr "Črni seznam url-jev"
3213
 
3214
- #: settings.php:1740
3215
  msgid "Whitelist urls"
3216
  msgstr "Beli seznam url-jev"
3217
 
3218
- #: settings.php:1751
3219
  msgid "Url parameters"
3220
  msgstr "Url parametri"
3221
 
3222
- #: settings.php:1755
3223
  msgid "Toggle url parameter and cookie editor"
3224
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3225
 
3226
- #: settings.php:1758
3227
  msgid ""
3228
  "Comma separated url query parameters or cookies with optional values (use "
3229
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3232,23 +3272,23 @@ msgstr ""
3232
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3233
  "'piškotek=vrednost')"
3234
 
3235
- #: settings.php:1762
3236
  msgid "Blacklist url parameters"
3237
  msgstr "Črni seznam url parametrov"
3238
 
3239
- #: settings.php:1766
3240
  msgid "Whitelist url parameters"
3241
  msgstr "Beli seznam url parametrov"
3242
 
3243
- #: settings.php:1777
3244
  msgid "Referrers"
3245
  msgstr "Napotitelji"
3246
 
3247
- #: settings.php:1780
3248
  msgid "Toggle referer editor"
3249
  msgstr "Preklopi urejevalnik napotiteljev"
3250
 
3251
- #: settings.php:1783
3252
  msgid ""
3253
  "Comma separated domains, use # for no referrer, you can also use partial "
3254
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3256,28 +3296,28 @@ msgstr ""
3256
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3257
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3258
 
3259
- #: settings.php:1787
3260
  msgid "Blacklist referers"
3261
  msgstr "Črni seznam napotiteljev"
3262
 
3263
- #: settings.php:1791
3264
  msgid "Whitelist referers"
3265
  msgstr "Beli seznam napotiteljev"
3266
 
3267
- #: settings.php:1811
3268
  msgid "Enable widget for this block"
3269
  msgstr "Omogočite gradnik za ta blok"
3270
 
3271
- #: settings.php:1823
3272
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3273
  msgstr ""
3274
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3275
 
3276
- #: settings.php:1824 settings.php:4063
3277
  msgid "Shortcode"
3278
  msgstr "Kratka koda"
3279
 
3280
- #: settings.php:1839
3281
  msgid ""
3282
  "Enable PHP function call to insert this block at any position in theme file. "
3283
  "If function is disabled for block it will return empty string."
@@ -3286,66 +3326,66 @@ msgstr ""
3286
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3287
  "prazen niz."
3288
 
3289
- #: settings.php:1840
3290
  msgid "PHP function"
3291
  msgstr "PHP funkcija"
3292
 
3293
- #: settings.php:1855
3294
  msgid "Client-side device detection"
3295
  msgstr "Zaznavanje naprave na strani klienta"
3296
 
3297
- #: settings.php:1856
3298
  msgid "Server-side device detection"
3299
  msgstr "Zaznavanje naprave na strani strežnika"
3300
 
3301
- #: settings.php:1863
3302
  msgid "Use client-side detection to"
3303
  msgstr "Uporabi zaznavanje na strani klienta in"
3304
 
3305
- #: settings.php:1865
3306
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3307
  msgstr ""
3308
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3309
 
3310
  #. Translators: only on (the following devices): viewport names (devices)
3311
  #. listed
3312
- #: settings.php:1870
3313
  msgid "only on"
3314
  msgstr "samo na"
3315
 
3316
- #: settings.php:1898
3317
  msgid "Device min width %s px"
3318
  msgstr "Najmanjša širina naprave %s px"
3319
 
3320
- #: settings.php:1924
3321
  msgid "Use server-side detection to insert block only for"
3322
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3323
 
3324
- #: settings.php:1943
3325
  msgid "Filter"
3326
  msgstr "Filter"
3327
 
3328
- #: settings.php:1944
3329
  msgid "Word Count"
3330
  msgstr "Število Besed"
3331
 
3332
- #: settings.php:1945 settings.php:4053
3333
  msgid "Scheduling"
3334
  msgstr "Urnik"
3335
 
3336
- #: settings.php:1946
3337
  msgid "Display"
3338
  msgstr "Prikaz"
3339
 
3340
- #: settings.php:1948 settings.php:2192
3341
  msgid "General"
3342
  msgstr "Splošno"
3343
 
3344
- #: settings.php:1960
3345
  msgid "Old settings for AMP pages detected"
3346
  msgstr "Zaznane stare nastavitve za AMP strani"
3347
 
3348
- #: settings.php:1960
3349
  msgid ""
3350
  "To insert different codes on normal and AMP pages separate them with "
3351
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3356,60 +3396,60 @@ msgstr ""
3356
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3357
  "separatorja)."
3358
 
3359
- #: settings.php:1960
3360
  msgid "AMP pages"
3361
  msgstr "AMP strani"
3362
 
3363
- #: settings.php:1965
3364
  msgid "Enable insertion for Ajax requests"
3365
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3366
 
3367
- #: settings.php:1965
3368
  msgid "Ajax requests"
3369
  msgstr "Ajax zahteve"
3370
 
3371
- #: settings.php:1970
3372
  msgid "Enable insertion in RSS feeds"
3373
  msgstr "Omogoči vstavljanje v RSS virih"
3374
 
3375
- #: settings.php:1970
3376
  msgid "RSS Feed"
3377
  msgstr "RSS Vir"
3378
 
3379
- #: settings.php:1975
3380
  msgid "Enable insertion on page for Error 404: Page not found"
3381
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3382
 
3383
- #: settings.php:1975
3384
  msgid "Error 404 page"
3385
  msgstr "Stran napake 404"
3386
 
3387
- #: settings.php:1987
3388
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3389
  msgstr ""
3390
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3391
 
3392
- #: settings.php:1988
3393
  msgid "insertions"
3394
  msgstr "vstavljanj"
3395
 
3396
- #: settings.php:1990
3397
  msgid ""
3398
- "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
3399
- "tab General)"
3400
  msgstr ""
3401
- "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
3402
- "&#9881; / zavihek Splošno)"
3403
 
3404
- #: settings.php:1993 settings.php:2361
3405
  msgid "Max blocks per page"
3406
  msgstr "Največ blokov na stran"
3407
 
3408
- #: settings.php:2005
3409
  msgid "Insert for"
3410
  msgstr "Vstavi za"
3411
 
3412
- #: settings.php:2013
3413
  msgid ""
3414
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3415
  "currently active). Might speed up insertion on content pages when "
@@ -3419,26 +3459,26 @@ msgstr ""
3419
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3420
  "filter the_content večkrat klican."
3421
 
3422
- #: settings.php:2016
3423
  msgid "Insert only in the loop"
3424
  msgstr "Vstavi samo v zanki"
3425
 
3426
- #: settings.php:2022
3427
  msgid ""
3428
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3429
  msgstr ""
3430
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3431
  "Rocket"
3432
 
3433
- #: settings.php:2022
3434
  msgid "Disable caching"
3435
  msgstr "Onemogoči predpomnjenje"
3436
 
3437
- #: settings.php:2034
3438
  msgid "Filter insertions"
3439
  msgstr "Filtriraj vstavljanja"
3440
 
3441
- #: settings.php:2037
3442
  msgid ""
3443
  "Filter multiple insertions by specifying wanted insertions for this block - "
3444
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3450,56 +3490,56 @@ msgstr ""
3450
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3451
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3452
 
3453
- #: settings.php:2040
3454
  msgid "using"
3455
  msgstr "z uporabo"
3456
 
3457
- #: settings.php:2059
3458
  msgid "Checked means specified calls are unwanted"
3459
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3460
 
3461
- #: settings.php:2059
3462
  msgid "Invert filter"
3463
  msgstr "Obrni filter"
3464
 
3465
- #: settings.php:2065
3466
  msgid "Post/Static page must have between"
3467
  msgstr "Prispevek/Statična stran mora imeti med"
3468
 
3469
- #: settings.php:2066
3470
  msgid "Minimum number of post/static page words, leave empty for no limit"
3471
  msgstr ""
3472
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3473
  "omejitev"
3474
 
3475
- #: settings.php:2068
3476
  msgid "Maximum number of post/static page words, leave empty for no limit"
3477
  msgstr ""
3478
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3479
  "omejitev"
3480
 
3481
- #: settings.php:2081
3482
  msgid "days after publishing"
3483
  msgstr "dni po objavi"
3484
 
3485
- #: settings.php:2083
3486
  msgid "Not available"
3487
  msgstr "Ni na razpolago"
3488
 
3489
- #: settings.php:2096 settings.php:2353
3490
  msgid "Ad label"
3491
  msgstr "Oznaka oglasa"
3492
 
3493
- #: settings.php:2116
3494
  msgid "General tag"
3495
  msgstr "Splošna oznaka"
3496
 
3497
- #: settings.php:2120
3498
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3499
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3500
 
3501
  #. translators: %s: HTML tags
3502
- #: settings.php:2129
3503
  msgid ""
3504
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3505
  "side device detection!"
@@ -3507,86 +3547,86 @@ msgstr ""
3507
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3508
  "potrebna za zaznavanje naprave na strani klienta!"
3509
 
3510
- #: settings.php:2141
3511
  msgid "Settings"
3512
  msgstr "Nastavitve"
3513
 
3514
- #: settings.php:2144
3515
  msgid "Settings timestamp"
3516
  msgstr "Časovni žig nastavitev"
3517
 
3518
- #: settings.php:2157
3519
  msgid "Are you sure you want to reset all settings?"
3520
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3521
 
3522
- #: settings.php:2157
3523
  msgid "Reset All Settings"
3524
  msgstr "Ponastavi Vse Nastavitve"
3525
 
3526
- #: settings.php:2193
3527
  msgid "Viewports"
3528
  msgstr "Pogledi"
3529
 
3530
- #: settings.php:2194
3531
  msgid "Hooks"
3532
  msgstr "Ročice"
3533
 
3534
- #: settings.php:2195
3535
  msgid "Header"
3536
  msgstr "Glava"
3537
 
3538
- #: settings.php:2196 strings.php:30
3539
  msgid "Footer"
3540
  msgstr "Noga"
3541
 
3542
- #: settings.php:2201
3543
  msgid "Debugging"
3544
  msgstr "Razhroščevanje"
3545
 
3546
- #: settings.php:2211
3547
  msgid "Plugin priority"
3548
  msgstr "Prednost vtičnika"
3549
 
3550
- #: settings.php:2219
3551
  msgid "Output buffering"
3552
  msgstr "Predpomnjenje izhoda"
3553
 
3554
- #: settings.php:2222
3555
  msgid "Needed for position Above header but may not work with all themes"
3556
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3557
 
3558
- #: settings.php:2230
3559
  msgid "Syntax highlighting theme"
3560
  msgstr "Tema za poudarjanje sintakse"
3561
 
3562
- #: settings.php:2237
3563
  msgctxt "no syntax highlighting themes"
3564
  msgid "None"
3565
  msgstr "Brez"
3566
 
3567
- #: settings.php:2238
3568
  msgid "No Syntax Highlighting"
3569
  msgstr "Brez Poudarjanja Sintakse"
3570
 
3571
- #: settings.php:2240
3572
  msgctxt "syntax highlighting themes"
3573
  msgid "Light"
3574
  msgstr "Svetle"
3575
 
3576
- #: settings.php:2255
3577
  msgctxt "syntax highlighting themes"
3578
  msgid "Dark"
3579
  msgstr "Temne"
3580
 
3581
- #: settings.php:2281
3582
  msgid "Min. user role for ind. exceptions editing"
3583
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3584
 
3585
- #: settings.php:2291
3586
  msgid "Disable caching for logged in administrators"
3587
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3588
 
3589
- #: settings.php:2294
3590
  msgid ""
3591
  "Enabled means that logged in administrators will see non-cached (live) pages "
3592
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -3594,11 +3634,11 @@ msgstr ""
3594
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3595
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3596
 
3597
- #: settings.php:2302
3598
  msgid "Sticky widget mode"
3599
  msgstr "Način za lepljive gradnike"
3600
 
3601
- #: settings.php:2305
3602
  msgid ""
3603
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3604
  "mode works with most themes but may reload ads on page load."
@@ -3607,19 +3647,19 @@ msgstr ""
3607
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3608
  "nalaganju strani."
3609
 
3610
- #: settings.php:2313
3611
  msgid "Sticky widget top margin"
3612
  msgstr "Zgornji rob za lepljiv gradnik"
3613
 
3614
- #: settings.php:2321
3615
  msgid "Dynamic blocks"
3616
  msgstr "Dinamični bloki"
3617
 
3618
- #: settings.php:2334
3619
  msgid "Functions for paragraph counting"
3620
  msgstr "Funkcije za štetje odstavkov"
3621
 
3622
- #: settings.php:2337
3623
  msgid ""
3624
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3625
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3628,15 +3668,15 @@ msgstr ""
3628
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3629
  "šteti."
3630
 
3631
- #: settings.php:2345
3632
  msgid "No paragraph counting inside"
3633
  msgstr "Ni štetja odstavkov znotraj"
3634
 
3635
- #: settings.php:2356
3636
  msgid "Label text or HTML code"
3637
  msgstr "Besedilo oznake ali HTML koda"
3638
 
3639
- #: settings.php:2364
3640
  msgid ""
3641
  "Maximum number of inserted blocks per page. You need to enable Max page "
3642
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3645,12 +3685,12 @@ msgstr ""
3645
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3646
  "omejitev."
3647
 
3648
- #: settings.php:2378
3649
  msgid "Plugin usage tracking"
3650
  msgstr "Sledenje uporabe vtičnika"
3651
 
3652
  #. translators: %s: Ad Inserter
3653
- #: settings.php:2381
3654
  msgid ""
3655
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3656
  "Only information regarding the WordPress environment and %s usage is "
@@ -3660,125 +3700,125 @@ msgstr ""
3660
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3661
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3662
 
3663
- #: settings.php:2399
3664
  msgid "CSS class name for the wrapping div"
3665
  msgstr "Ime CSS razreda za div za ovijanje"
3666
 
3667
- #: settings.php:2399
3668
  msgid "Block class name"
3669
  msgstr "Ime razreda za blok"
3670
 
3671
- #: settings.php:2403
3672
  msgid "Include general plugin block class"
3673
  msgstr "Vključi splošni razred vtičnika za blok"
3674
 
3675
- #: settings.php:2403
3676
  msgid "Block class"
3677
  msgstr "Razred bloka"
3678
 
3679
- #: settings.php:2408
3680
  msgid "Include block number class"
3681
  msgstr "Vključi razred številke bloka"
3682
 
3683
- #: settings.php:2408
3684
  msgid "Block number class"
3685
  msgstr "Razred številke bloka"
3686
 
3687
- #: settings.php:2413
3688
  msgid ""
3689
  "Instead of alignment classes generate inline alignment styles for blocks"
3690
  msgstr ""
3691
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3692
 
3693
- #: settings.php:2413
3694
  msgid "Inline styles"
3695
  msgstr "Medvrstični slogi"
3696
 
3697
- #: settings.php:2419
3698
  msgid "Preview of the block wrapping code"
3699
  msgstr "Predogled kode za ovijanje blokov"
3700
 
3701
- #: settings.php:2420
3702
  msgid "Wrapping div"
3703
  msgstr "div za ovijanje"
3704
 
3705
- #: settings.php:2421 settings.php:2861
3706
  msgid "BLOCK CODE"
3707
  msgstr "KODA BLOKA"
3708
 
3709
- #: settings.php:2429
3710
  msgid "Viewport Settings used for client-side device detection"
3711
  msgstr ""
3712
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3713
 
3714
  #. Translators: %d: viewport number
3715
- #: settings.php:2437
3716
  msgid "Viewport %d name"
3717
  msgstr "Ime pogleda %d"
3718
 
3719
- #: settings.php:2440
3720
  msgid "min width"
3721
  msgstr "najmanjša širina"
3722
 
3723
- #: settings.php:2451
3724
  msgid "Custom Hooks"
3725
  msgstr "Ročice Po Meri"
3726
 
3727
- #: settings.php:2463 settings.php:2466
3728
  msgid "Enable hook"
3729
  msgstr "Omogoči ročico"
3730
 
3731
  #. translators: %d: hook number
3732
- #: settings.php:2466
3733
  msgid "Hook %d name"
3734
  msgstr "Ime ročice %d"
3735
 
3736
- #: settings.php:2469
3737
  msgid "Hook name for automatic insertion selection"
3738
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3739
 
3740
- #: settings.php:2472
3741
  msgid "action"
3742
  msgstr "akcija"
3743
 
3744
- #: settings.php:2475
3745
  msgid "Action name as used in the do_action () function"
3746
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3747
 
3748
- #: settings.php:2478
3749
  msgid "priority"
3750
  msgstr "prednost"
3751
 
3752
- #: settings.php:2481
3753
  msgid "Priority for the hook (default is 10)"
3754
  msgstr "Prednost za ročico (privzeta je 10)"
3755
 
3756
- #: settings.php:2502
3757
  msgid "Enable insertion of this code into HTML page header"
3758
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3759
 
3760
- #: settings.php:2506 settings.php:2573 settings.php:2755
3761
  msgid "Process PHP code"
3762
  msgstr "Procesiraj PHP kodo"
3763
 
3764
- #: settings.php:2510
3765
  msgid "HTML Page Header Code"
3766
  msgstr "Koda v Glavi HTML Strani"
3767
 
3768
- #: settings.php:2518
3769
  msgid "Code in the %s section of the HTML page"
3770
  msgstr "Koda v %s delu HTML strani"
3771
 
3772
- #: settings.php:2519
3773
  msgctxt "code in the header"
3774
  msgid "NOT ENABLED"
3775
  msgstr "NI OMOGOČENA"
3776
 
3777
- #: settings.php:2536 settings.php:2604
3778
  msgid "Use server-side detection to insert code only for"
3779
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3780
 
3781
- #: settings.php:2551
3782
  msgid ""
3783
  "Enable insertion of this code into HTML page header on page for Error 404: "
3784
  "Page not found"
@@ -3786,29 +3826,29 @@ msgstr ""
3786
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3787
  "obstaja"
3788
 
3789
- #: settings.php:2551 settings.php:2619
3790
  msgid "Insert on Error 404 page"
3791
  msgstr "Vstavi na strani Napake 404"
3792
 
3793
- #: settings.php:2569
3794
  msgid "Enable insertion of this code into HTML page footer"
3795
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3796
 
3797
- #: settings.php:2577
3798
  msgid "HTML Page Footer Code"
3799
  msgstr "Koda v Nogi HTML Strani"
3800
 
3801
  #. translators: %s: HTML tags
3802
- #: settings.php:2585
3803
  msgid "Code before the %s tag of the the HTML page"
3804
  msgstr "Koda pred %s značko HTML strani"
3805
 
3806
- #: settings.php:2586
3807
  msgctxt "code in the footer"
3808
  msgid "NOT ENABLED"
3809
  msgstr "NI OMOGOČENA"
3810
 
3811
- #: settings.php:2619
3812
  msgid ""
3813
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3814
  "Page not found"
@@ -3816,32 +3856,32 @@ msgstr ""
3816
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3817
  "Stran ne obstaja"
3818
 
3819
- #: settings.php:2635
3820
  msgid "Code for ad blocking detection inserted. Click for details."
3821
  msgstr ""
3822
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3823
 
3824
- #: settings.php:2640
3825
  msgid "Enable detection of ad blocking"
3826
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3827
 
3828
- #: settings.php:2658
3829
  msgid "Global action when ad blocking is detected"
3830
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3831
 
3832
- #: settings.php:2664
3833
  msgid "No action for"
3834
  msgstr "Ni akcije za"
3835
 
3836
- #: settings.php:2665
3837
  msgid "Exceptions for global action when ad blocking is detected."
3838
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3839
 
3840
- #: settings.php:2675
3841
  msgid "Delay Action"
3842
  msgstr "Zakasni Akcijo"
3843
 
3844
- #: settings.php:2678
3845
  msgid ""
3846
  "Number of page views to delay action when ad blocking is detected. Leave "
3847
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3850,16 +3890,16 @@ msgstr ""
3850
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3851
  "strani). Nastavi piškotek."
3852
 
3853
- #: settings.php:2678
3854
  msgctxt "Delay Action for x "
3855
  msgid "page views"
3856
  msgstr "ogledov strani"
3857
 
3858
- #: settings.php:2683
3859
  msgid "No Action Period"
3860
  msgstr "Obdobje Brez Akcije"
3861
 
3862
- #: settings.php:2686
3863
  msgid ""
3864
  "Number of days to supress action when ad blocking is detected. Leave empty "
3865
  "for no no-action period (action fires always after defined page view delay). "
@@ -3869,16 +3909,16 @@ msgstr ""
3869
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3870
  "strani). Nastavi piškotek."
3871
 
3872
- #: settings.php:2686
3873
  msgctxt "no action period"
3874
  msgid "days"
3875
  msgstr "dni"
3876
 
3877
- #: settings.php:2691
3878
  msgid "Custom Selectors"
3879
  msgstr "Selektorji Po Meri"
3880
 
3881
- #: settings.php:2694
3882
  msgid ""
3883
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3884
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3888,15 +3928,15 @@ msgstr ""
3888
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3889
  "pomeni prisotnost blokiranja oglasov."
3890
 
3891
- #: settings.php:2706
3892
  msgid "Redirection Page"
3893
  msgstr "Stran za Preusmeritev"
3894
 
3895
- #: settings.php:2718
3896
  msgid "Custom Url"
3897
  msgstr "Url Po Meri"
3898
 
3899
- #: settings.php:2723
3900
  msgid ""
3901
  "Static page for redirection when ad blocking is detected. For other pages "
3902
  "select Custom url and set it below."
@@ -3904,35 +3944,35 @@ msgstr ""
3904
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3905
  "strani izberite Url Po Meri in ga nastavite spodaj."
3906
 
3907
- #: settings.php:2732
3908
  msgid "Custom Redirection Url"
3909
  msgstr "Url za Preusmeritev Po Meri"
3910
 
3911
- #: settings.php:2744
3912
  msgid "Message HTML code"
3913
  msgstr "HTML koda sporočila"
3914
 
3915
- #: settings.php:2757
3916
  msgid "Preview message when ad blocking is detected"
3917
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3918
 
3919
- #: settings.php:2786
3920
  msgid "Prevent visitors from closing the warning message"
3921
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3922
 
3923
- #: settings.php:2786
3924
  msgid "Undismissible Message"
3925
  msgstr "Neodstranljivo Sporočilo"
3926
 
3927
- #: settings.php:2792
3928
  msgid "Not undismissible for"
3929
  msgstr "Ni neodstranljivo za"
3930
 
3931
- #: settings.php:2793
3932
  msgid "Users which can close the warning message."
3933
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
3934
 
3935
- #: settings.php:2807
3936
  msgid ""
3937
  "Force showing admin toolbar for administrators when viewing site. Enable "
3938
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3941,84 +3981,84 @@ msgstr ""
3941
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3942
  "skrbnike."
3943
 
3944
- #: settings.php:2815
3945
  msgid "Disable header code (Header tab)"
3946
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3947
 
3948
- #: settings.php:2819
3949
  msgid "Disable footer code (Footer tab)"
3950
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3951
 
3952
  #. translators: %s: Ad Inserter
3953
- #: settings.php:2823
3954
  msgid "Disable %s JavaScript code"
3955
  msgstr "Onemogoči %s JavaScript kodo"
3956
 
3957
  #. translators: %s: Ad Inserter
3958
- #: settings.php:2827
3959
  msgid "Disable %s CSS code"
3960
  msgstr "Onemogoči %s CSS kodo"
3961
 
3962
- #: settings.php:2831
3963
  msgid ""
3964
  "Disable PHP code processing (in all blocks including header and footer code)"
3965
  msgstr ""
3966
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3967
 
3968
- #: settings.php:2835
3969
  msgid "Disable insertion of all blocks"
3970
  msgstr "Onemogoči vstavljanje vseh blokov"
3971
 
3972
- #: settings.php:2839
3973
  msgid "Disable insertions"
3974
  msgstr "Onemogoči vstavljanja"
3975
 
3976
  #. translators: %s: Ad Inserter
3977
- #: settings.php:2851
3978
  msgid "%s CSS CODE"
3979
  msgstr "%s CSS KODA"
3980
 
3981
- #: settings.php:2854
3982
  msgid "HEADER CODE"
3983
  msgstr "KODA GLAVE"
3984
 
3985
  #. translators: %s: PHP tags
3986
- #: settings.php:2860
3987
  msgid "BLOCK PHP CODE"
3988
  msgstr "PHP KODA BLOKA"
3989
 
3990
  #. translators: %s: Ad Inserter
3991
- #: settings.php:2866
3992
  msgid "%s JS CODE"
3993
  msgstr "%s JS KODA"
3994
 
3995
- #: settings.php:2869
3996
  msgid "FOOTER CODE"
3997
  msgstr "KODA NOGE"
3998
 
3999
- #: settings.php:2878
4000
  msgid "Force showing admin toolbar when viewing site"
4001
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4002
 
4003
- #: settings.php:2885
4004
  msgid "Enable debugging functions in admin toolbar"
4005
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4006
 
4007
- #: settings.php:2887
4008
  msgid "Debugging functions in admin toolbar"
4009
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4010
 
4011
- #: settings.php:2894
4012
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4013
  msgstr ""
4014
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4015
  "zaslonih"
4016
 
4017
- #: settings.php:2896
4018
  msgid "Debugging functions on mobile screens"
4019
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4020
 
4021
- #: settings.php:2903
4022
  msgid ""
4023
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4024
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4033,11 +4073,11 @@ msgstr ""
4033
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4034
  "vedno omogočeno."
4035
 
4036
- #: settings.php:2905
4037
  msgid "Remote debugging"
4038
  msgstr "Oddaljeno razhroščevanje"
4039
 
4040
- #: settings.php:2912
4041
  msgid ""
4042
  "Disable translation to see original texts for the settings and messages in "
4043
  "English"
@@ -4045,211 +4085,202 @@ msgstr ""
4045
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4046
  "angleščini"
4047
 
4048
- #: settings.php:2914
4049
  msgid "Disable translation"
4050
  msgstr "Onemogoči prevod"
4051
 
4052
- #: settings.php:3284
4053
  msgid "Available positions for current theme"
4054
  msgstr "Razpoložljivi položaji za trenutno temo"
4055
 
4056
- #: settings.php:3285
4057
  msgid "Error checking pages"
4058
  msgstr "Napaka pri preverjanju strani"
4059
 
4060
- #: settings.php:3288
4061
  msgid "Toggle theme checker for available positions for automatic insertion"
4062
  msgstr ""
4063
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4064
 
4065
- #: settings.php:3288
4066
  msgctxt "Button"
4067
  msgid "Check"
4068
  msgstr "Preveri"
4069
 
4070
- #: settings.php:3295
4071
  msgid "Position"
4072
  msgstr "Položaj"
4073
 
4074
- #: settings.php:3300
4075
  msgid "Archive pages"
4076
  msgstr "Strani arhiva"
4077
 
4078
- #: settings.php:3359
4079
  msgid ""
4080
  "Position not available because output buffering (tab [*]) is not enabled"
4081
  msgstr ""
4082
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4083
 
4084
- #: settings.php:3362 strings.php:223
4085
  msgid "Position not checked yet"
4086
  msgstr "Položaj še ni bil preverjen"
4087
 
4088
- #: settings.php:3393
4089
  msgid "Toggle active/all blocks"
4090
  msgstr "Preklopi aktive/vse bloke"
4091
 
4092
- #: settings.php:3397 strings.php:210
4093
  msgid "Rearrange block order"
4094
  msgstr "Preuredi vrstni red blokov"
4095
 
4096
- #: settings.php:3402
4097
  msgid "Save new block order"
4098
  msgstr "Shrani vrstni red blokov"
4099
 
4100
- #: settings.php:3402
4101
- msgid "Save Changes"
4102
- msgstr "Shrani Spremembe"
4103
-
4104
- #: settings.php:3427
4105
  msgid "Toggle active/all ad units"
4106
  msgstr "Preklopi aktivne/vse oglasne enote"
4107
 
4108
- #: settings.php:3431
4109
  msgid "Reload AdSense ad units"
4110
  msgstr "Ponovno naloži oglasne enote AdSense"
4111
 
4112
- #: settings.php:3435
4113
  msgid "Clear authorization to access AdSense account"
4114
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4115
 
4116
- #: settings.php:3439 settings.php:4220 settings.php:4287 strings.php:218
4117
  msgid "Google AdSense Homepage"
4118
  msgstr "Google AdSense Domača Stran"
4119
 
4120
- #: settings.php:3455
4121
  msgid "Switch to physical ads.txt file"
4122
  msgstr "Preklopi na fizično datoteko ads.txt"
4123
 
4124
- #: settings.php:3456
4125
  msgid "Switch to virtual ads.txt file"
4126
  msgstr "Preklopi na navidezno datoteko ads.txt"
4127
 
4128
  #. translators: %s: ads.txt
4129
- #: settings.php:3466
4130
  msgid "Open %s"
4131
  msgstr "Odpri %s"
4132
 
4133
- #: settings.php:3474
4134
  msgid "Reload ads.txt file"
4135
  msgstr "Ponovno naloži datoteko ads.txt"
4136
 
4137
- #: settings.php:3478 settings.php:4347
4138
  msgid "Save"
4139
  msgstr "Shrani"
4140
 
4141
  #. translators: %s: Ad Inserter
4142
- #: settings.php:3653
4143
  msgid "ads.txt file: %s virtual ads.txt file"
4144
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4145
 
4146
- #: settings.php:3658 settings.php:3675 strings.php:202
4147
  msgid "Warning"
4148
  msgstr "Opozorilo"
4149
 
4150
  #. translators: %s: Ad Inserter
4151
- #: settings.php:3658
4152
  msgid "%s virtual file ads.txt not found"
4153
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4154
 
4155
- #: settings.php:3665
4156
  msgid "IMPORTANT"
4157
  msgstr "POMEMBNO"
4158
 
4159
- #: settings.php:3665
4160
  msgid "ads.txt file must be placed on the root domain"
4161
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4162
 
4163
- #: settings.php:3668
4164
- msgid "ads.txt file:"
4165
- msgstr "datoteka ads.txt:"
4166
 
4167
- #. translators: %s: file path
4168
- #: settings.php:3669
4169
- msgid "WordPress is installed in %s"
4170
- msgstr "WordPress je nameščen v %s"
4171
-
4172
- #: settings.php:3675
4173
  msgid "file %s not found"
4174
  msgstr "datoteka %s ni najdena"
4175
 
4176
- #: settings.php:3685
4177
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4178
  msgstr ""
4179
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4180
 
4181
  #. translators: %s: Ad Inserter
4182
- #: settings.php:3691
4183
  msgid "%s virtual ads.txt file"
4184
  msgstr "%s navidezna datoteka ads.txt"
4185
 
4186
- #: settings.php:3713
4187
  msgid "Advertising system"
4188
  msgstr "Oglaševalski sistem"
4189
 
4190
- #: settings.php:3714
4191
  msgid "Account ID"
4192
  msgstr "ID Računa"
4193
 
4194
- #: settings.php:3716
4195
  msgid "Certification authority ID"
4196
  msgstr "ID organa za potrjevanje"
4197
 
4198
- #: settings.php:3731
4199
  msgid "Account ID found in block and present in ads.txt"
4200
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4201
 
4202
- #: settings.php:3735
4203
  msgid "Account ID found in block but not present in ads.txt"
4204
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4205
 
4206
- #: settings.php:4010
4207
  msgid "Preview block"
4208
  msgstr "Predogled bloka"
4209
 
4210
- #: settings.php:4019
4211
  msgid "Insertion disabled"
4212
  msgstr "Vstavljanje onemogočeno"
4213
 
4214
- #: settings.php:4049
4215
  msgid "Automatic insertion"
4216
  msgstr "Samodejno vstavljanje"
4217
 
4218
  #. translators: %s HTML tags
4219
- #: settings.php:4050 settings.php:4954
4220
  msgid "PHP code processing"
4221
  msgstr "Procesiranje PHP kode"
4222
 
4223
- #: settings.php:4052
4224
  msgid "Device detection"
4225
  msgstr "Zaznavanje naprave"
4226
 
4227
- #: settings.php:4065
4228
  msgid "Widget positions"
4229
  msgstr "Položaji gradnikov"
4230
 
4231
- #: settings.php:4131
4232
  msgid "Ad unit"
4233
  msgstr "Enota"
4234
 
4235
- #: settings.php:4133
4236
  msgid "Slot ID"
4237
  msgstr "ID mesta"
4238
 
4239
- #: settings.php:4159
4240
  msgid "Copy AdSense code"
4241
  msgstr "Kopiraj kodo AdSense"
4242
 
4243
- #: settings.php:4162
4244
  msgid "Preview AdSense ad"
4245
  msgstr "Predogled oglasa AdSense"
4246
 
4247
- #: settings.php:4165
4248
  msgid "Get AdSense code"
4249
  msgstr "Pridobi kodo AdSense"
4250
 
4251
  #. translators: %s: HTML tags
4252
- #: settings.php:4197
4253
  msgid ""
4254
  "Please %s clear authorization %s with the button %s above and once again "
4255
  "authorize access to your AdSense account."
@@ -4257,16 +4288,16 @@ msgstr ""
4257
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4258
  "avtorizirajte dostop do vašega računa AdSense."
4259
 
4260
- #: settings.php:4216
4261
  msgid "AdSense Integration"
4262
  msgstr "Integracija AdSense"
4263
 
4264
- #: settings.php:4218
4265
  msgid "AdSense Integration - Step 2"
4266
  msgstr "Integracija AdSense - Korak 2"
4267
 
4268
  #. translators: %s: HTML tags
4269
- #: settings.php:4224
4270
  msgid ""
4271
  "Authorize %s to access your AdSense account. Click on the %s Get "
4272
  "Authorization Code %s button to open a new window where you can allow "
@@ -4279,7 +4310,7 @@ msgstr ""
4279
  "Avtoriziraj. %s"
4280
 
4281
  #. translators: %s: HTML tags
4282
- #: settings.php:4231
4283
  msgid ""
4284
  "If you get error, can't access ad units or would like to use own Google API "
4285
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4290,7 +4321,7 @@ msgstr ""
4290
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4291
 
4292
  #. translators: %s: HTML tags
4293
- #: settings.php:4233
4294
  msgid ""
4295
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4296
  "Authorization Code %s button to open a new window where you can allow "
@@ -4303,7 +4334,7 @@ msgstr ""
4303
  "gumb %s Avtoriziraj. %s"
4304
 
4305
  #. translators: %s: HTML tags
4306
- #: settings.php:4240
4307
  msgid ""
4308
  "If you get error %s invalid client %s click on the button %s Clear and "
4309
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4311,32 +4342,32 @@ msgstr ""
4311
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4312
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4313
 
4314
- #: settings.php:4251
4315
  msgid "Get Authorization Code"
4316
  msgstr "Pridobi Avtoriazcijsko Kodo"
4317
 
4318
- #: settings.php:4254
4319
  msgid "Enter Authorization Code"
4320
  msgstr "Vnesi Avorizacijsko Kodo"
4321
 
4322
- #: settings.php:4264
4323
  msgid "Use own API IDs"
4324
  msgstr "Uporabi lastne API ID-je"
4325
 
4326
- #: settings.php:4266
4327
  msgid "Clear and return to Step 1"
4328
  msgstr "Odstrani in se vrni na Korak 1"
4329
 
4330
- #: settings.php:4270
4331
  msgid "Authorize"
4332
  msgstr "Avtoriziraj"
4333
 
4334
- #: settings.php:4286
4335
  msgid "AdSense Integration - Step 1"
4336
  msgstr "Integracija AdSense - Korak 1"
4337
 
4338
  #. translators: %s: Ad Inserter
4339
- #: settings.php:4290
4340
  msgid ""
4341
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4342
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4349,12 +4380,12 @@ msgstr ""
4349
  "Klienta in Skrivnost Klienta."
4350
 
4351
  #. translators: %s: HTML tags
4352
- #: settings.php:4299
4353
  msgid "Go to %s Google APIs and Services console %s"
4354
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4355
 
4356
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4357
- #: settings.php:4300
4358
  msgid ""
4359
  "Create %1$s project - if the project and IDs are already created click on "
4360
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4363,7 +4394,7 @@ msgstr ""
4363
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4364
 
4365
  #. translators: %s: HTML tags
4366
- #: settings.php:4301
4367
  msgid ""
4368
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4369
  "create a new project"
@@ -4372,12 +4403,12 @@ msgstr ""
4372
  "ustvaritev novega projekta"
4373
 
4374
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4375
- #: settings.php:4302
4376
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4377
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4378
 
4379
  #. translators: %s: HTML tags
4380
- #: settings.php:4303
4381
  msgid ""
4382
  "Click on project selection, wait for the project to be created and then and "
4383
  "select %s as the current project"
@@ -4386,39 +4417,39 @@ msgstr ""
4386
  "izberite %s kot trenutni projekt"
4387
 
4388
  #. translators: %s: HTML tags
4389
- #: settings.php:4304
4390
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4391
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4392
 
4393
  #. translators: %s: HTML tags
4394
- #: settings.php:4305
4395
  msgid "Search for adsense and enable %s"
4396
  msgstr "Poiščite adsense in omogočite %s"
4397
 
4398
  #. translators: %s: HTML tags
4399
- #: settings.php:4306
4400
  msgid "Click on %s CREATE CREDENTIALS %s"
4401
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4402
 
4403
  #. translators: %s: HTML tags
4404
- #: settings.php:4307
4405
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4406
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4407
 
4408
  #. translators: %s: HTML tags
4409
- #: settings.php:4308
4410
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4411
  msgstr ""
4412
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4413
  "podatki %s"
4414
 
4415
  #. translators: %s: HTML tags
4416
- #: settings.php:4309
4417
  msgid "Click on %s What credentials do I need? %s"
4418
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4419
 
4420
  #. translators: %s: HTML tags
4421
- #: settings.php:4310
4422
  msgid ""
4423
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4424
  "Ad Inserter client %s"
@@ -4427,7 +4458,7 @@ msgstr ""
4427
  "%s Ad Inserter klient %s"
4428
 
4429
  #. translators: %s: HTML tags
4430
- #: settings.php:4311
4431
  msgid ""
4432
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4433
  "enter %s"
@@ -4436,17 +4467,17 @@ msgstr ""
4436
  "uporabnikom %s vnesite %s"
4437
 
4438
  #. translators: %s: HTML tags
4439
- #: settings.php:4312
4440
  msgid "Click on %s Continue %s"
4441
  msgstr "Kliknite na %s Nadaljuj %s"
4442
 
4443
  #. translators: %s: HTML tags
4444
- #: settings.php:4313
4445
  msgid "Click on %s Done %s"
4446
  msgstr "Kliknite na %s Končaj %s"
4447
 
4448
  #. translators: %s: HTML tags
4449
- #: settings.php:4314
4450
  msgid ""
4451
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4452
  "secret %s"
@@ -4454,54 +4485,54 @@ msgstr ""
4454
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4455
  "Skrivnost klienta %s"
4456
 
4457
- #: settings.php:4315
4458
  msgid "Copy them to the appropriate fields below"
4459
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4460
 
4461
- #: settings.php:4321
4462
  msgid "Client ID"
4463
  msgstr "ID klienta"
4464
 
4465
- #: settings.php:4324
4466
  msgid "Enter Client ID"
4467
  msgstr "Vnesite ID klienta"
4468
 
4469
- #: settings.php:4329
4470
  msgid "Client secret"
4471
  msgstr "Skrivnost klienta"
4472
 
4473
- #: settings.php:4332
4474
  msgid "Enter Client secret"
4475
  msgstr "Vnesite Skrivnost klienta"
4476
 
4477
- #: settings.php:4342
4478
  msgid "Use default API IDs"
4479
  msgstr "Uporabi privzete API ID-je"
4480
 
4481
- #: settings.php:4623 settings.php:4636 settings.php:4649 settings.php:4664
4482
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4483
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4484
 
4485
- #: settings.php:4628 settings.php:4641 settings.php:4654 settings.php:4669
4486
- #: settings.php:4849 settings.php:4853 settings.php:4871 settings.php:4875
4487
- #: settings.php:4883 settings.php:4886 settings.php:4892 settings.php:4904
4488
  msgid "Looking for AdSense alternative?"
4489
  msgstr "Iščete alternativo za AdSense?"
4490
 
4491
- #: settings.php:4680
4492
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4493
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4494
 
4495
- #: settings.php:4685 settings.php:4851 settings.php:4855 settings.php:4863
4496
- #: settings.php:4889
4497
  msgid "Use Infolinks ads with Adsense to earn more"
4498
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4499
 
4500
- #: settings.php:4704 settings.php:4742
4501
  msgid "Support plugin development"
4502
  msgstr "Podprite razvoj vtičnika"
4503
 
4504
- #: settings.php:4705 settings.php:4743
4505
  msgid ""
4506
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4507
  "reviewing the plugin on WordPres"
@@ -4509,12 +4540,12 @@ msgstr ""
4509
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4510
  "razširiti novico z oceno vtičnika na WordPress-u"
4511
 
4512
- #: settings.php:4705
4513
  msgctxt "Review ad Inserter"
4514
  msgid "Review"
4515
  msgstr "Oceni"
4516
 
4517
- #: settings.php:4706
4518
  msgid ""
4519
  "Support free Ad Inserter development. If you are making money with Ad "
4520
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4523,16 +4554,16 @@ msgstr ""
4523
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4524
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4525
 
4526
- #: settings.php:4706
4527
  msgid "Donate"
4528
  msgstr "Donirajte"
4529
 
4530
- #: settings.php:4713 settings.php:4758
4531
  msgid "Average rating of the plugin - Thank you!"
4532
  msgstr "Povprečna ocena vtičnika - Hvala!"
4533
 
4534
  #. translators: %s: Ad Inserter, HTML tags
4535
- #: settings.php:4724
4536
  msgid ""
4537
  "You've been using %s for a while now, and I hope you're happy with it. "
4538
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4546,24 +4577,24 @@ msgstr ""
4546
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4547
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4548
 
4549
- #: settings.php:4743
4550
  msgid "Review"
4551
  msgstr "Ocena"
4552
 
4553
- #: settings.php:4747
4554
  msgid "Ad Inserter on Twitter"
4555
  msgstr "Ad Inserter na Twitter-ju"
4556
 
4557
- #: settings.php:4748
4558
  msgid "Ad Inserter on Facebook"
4559
  msgstr "Ad Inserter na Facebook-u"
4560
 
4561
- #: settings.php:4751
4562
  msgid "Follow Ad Inserter"
4563
  msgstr "Sledi Ad Inserter-ju"
4564
 
4565
  #. translators: %s: HTML tags
4566
- #: settings.php:4778
4567
  msgid ""
4568
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4569
  "and %s Common Settings %s pages"
@@ -4572,7 +4603,7 @@ msgstr ""
4572
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4573
 
4574
  #. translators: %s: HTML tags
4575
- #: settings.php:4790
4576
  msgid ""
4577
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4578
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4583,7 +4614,7 @@ msgstr ""
4583
  "%s Infolinks %s oglasno kodo %s"
4584
 
4585
  #. translators: %s: HTML tags
4586
- #: settings.php:4811
4587
  msgid ""
4588
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4589
  "purchase you refer to us"
@@ -4592,7 +4623,7 @@ msgstr ""
4592
  "nakup, ki nam ga posredujete"
4593
 
4594
  #. translators: %s: HTML tags
4595
- #: settings.php:4818
4596
  msgid ""
4597
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4598
  "diagnose and fix the problem."
@@ -4601,7 +4632,7 @@ msgstr ""
4601
  "navodili za diagnozo in rešitvami za težave."
4602
 
4603
  #. translators: %s: HTML tags
4604
- #: settings.php:4822
4605
  msgid ""
4606
  "If you need any kind of help or support, please do not hesitate to open a "
4607
  "thread on the %s support forum. %s"
@@ -4609,44 +4640,44 @@ msgstr ""
4609
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4610
  "nit na %s podpornem forumu. %s"
4611
 
4612
- #: settings.php:4867 settings.php:4908
4613
  msgid "A/B testing - Track ad impressions and clicks"
4614
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4615
 
4616
- #: settings.php:4900 settings.php:4912
4617
  msgid "Code preview with visual CSS editor"
4618
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4619
 
4620
- #: settings.php:4920
4621
  msgid "Looking for Pro Ad Management plugin?"
4622
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4623
 
4624
- #: settings.php:4921
4625
  msgid "To Optimally Monetize your WordPress website?"
4626
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4627
 
4628
  #. translators: %s HTML tags
4629
- #: settings.php:4924
4630
  msgid "%s AdSense Integration %s"
4631
  msgstr "%s Integracija AdSense %s"
4632
 
4633
  #. translators: %s HTML tags
4634
- #: settings.php:4925
4635
  msgid "Syntax highlighting %s editor %s"
4636
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4637
 
4638
  #. translators: %s HTML tags
4639
- #: settings.php:4926
4640
  msgid "%s Code preview %s with visual CSS editor"
4641
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4642
 
4643
  #. translators: %s HTML tags
4644
- #: settings.php:4927
4645
  msgid "Simple user interface - all settings on a single page"
4646
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4647
 
4648
  #. translators: %s HTML tags
4649
- #: settings.php:4928
4650
  msgid ""
4651
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4652
  "image / excerpt"
@@ -4655,27 +4686,27 @@ msgstr ""
4655
  "%s / sliko / izvlečkom"
4656
 
4657
  #. translators: %s HTML tags
4658
- #: settings.php:4929
4659
  msgid "%s Automatic insertion %s between posts on blog pages"
4660
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4661
 
4662
  #. translators: %s HTML tags
4663
- #: settings.php:4930
4664
  msgid "%s Automatic insertion %s before, between and after comments"
4665
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4666
 
4667
  #. translators: %s HTML tags
4668
- #: settings.php:4931
4669
  msgid "%s Automatic insertion %s after %s or before %s tag"
4670
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4671
 
4672
  #. translators: %s HTML tags
4673
- #: settings.php:4932
4674
  msgid "Automatic insertion at %s custom hook positions %s"
4675
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4676
 
4677
  #. translators: %s HTML tags
4678
- #: settings.php:4933
4679
  msgid ""
4680
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4681
  "selectors)"
@@ -4684,17 +4715,17 @@ msgstr ""
4684
  "selektorjev)"
4685
 
4686
  #. translators: %s HTML tags
4687
- #: settings.php:4934
4688
  msgid "%s Insertion exceptions %s for individual posts and pages"
4689
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4690
 
4691
  #. translators: %s HTML tags
4692
- #: settings.php:4935
4693
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4694
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4695
 
4696
  #. translators: %s HTML tags
4697
- #: settings.php:4936
4698
  msgid ""
4699
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4700
  "scrolls)"
@@ -4703,19 +4734,19 @@ msgstr ""
4703
  "se stran pomika)"
4704
 
4705
  #. translators: %s HTML tags
4706
- #: settings.php:4937
4707
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4708
  msgstr ""
4709
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4710
 
4711
  #. translators: %s HTML tags
4712
- #: settings.php:4938
4713
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4714
  msgstr ""
4715
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4716
 
4717
  #. translators: %s HTML tags
4718
- #: settings.php:4939
4719
  msgid ""
4720
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4721
  "visible)"
@@ -4724,7 +4755,7 @@ msgstr ""
4724
  "postane viden)"
4725
 
4726
  #. translators: %s HTML tags
4727
- #: settings.php:4940
4728
  msgid ""
4729
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4730
  msgstr ""
@@ -4732,12 +4763,12 @@ msgstr ""
4732
  "strani)"
4733
 
4734
  #. translators: %s HTML tags
4735
- #: settings.php:4941
4736
  msgid "Block %s alignment and style %s customizations"
4737
  msgstr "%s Poravnave in slogi %s bloka po meri"
4738
 
4739
  #. translators: %s HTML tags
4740
- #: settings.php:4942
4741
  msgid ""
4742
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4743
  "TOS)"
@@ -4745,7 +4776,7 @@ msgstr ""
4745
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4746
 
4747
  #. translators: %s HTML tags
4748
- #: settings.php:4943
4749
  msgid ""
4750
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4751
  "feeds"
@@ -4754,17 +4785,17 @@ msgstr ""
4754
  "virih"
4755
 
4756
  #. translators: %s HTML tags
4757
- #: settings.php:4944
4758
  msgid "%s Ad rotation %s (works also with caching)"
4759
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4760
 
4761
  #. translators: %s HTML tags
4762
- #: settings.php:4945
4763
  msgid "Create, edit and check %s ads.txt %s file"
4764
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4765
 
4766
  #. translators: %s HTML tags
4767
- #: settings.php:4946
4768
  msgid ""
4769
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4770
  "AdSense)"
@@ -4773,71 +4804,81 @@ msgstr ""
4773
  "AdSense)"
4774
 
4775
  #. translators: %s HTML tags
4776
- #: settings.php:4947
4777
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4778
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4779
 
4780
  #. translators: %s HTML tags
4781
- #: settings.php:4948
4782
  msgid "%s Public web reports %s for clients, export to PDF"
4783
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4784
 
4785
  #. translators: %s HTML tags
4786
- #: settings.php:4949
4787
  msgid "Support for %s A/B testing %s"
4788
  msgstr "Podpora za %s A/B testiranje %s"
4789
 
4790
  #. translators: %s HTML tags
4791
- #: settings.php:4950
 
 
 
 
 
 
 
 
 
 
4792
  msgid "Support for %s lazy loading %s"
4793
  msgstr "Podpora za %s leno nalaganje %s"
4794
 
4795
  #. translators: %s HTML tags
4796
- #: settings.php:4951
4797
  msgid "Support for ads on %s AMP pages %s"
4798
  msgstr "Podpora za oglase na %s AMP straneh %s"
4799
 
4800
  #. translators: %s HTML tags
4801
- #: settings.php:4952
4802
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4803
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4804
 
4805
  #. translators: %s HTML tags
4806
- #: settings.php:4953
4807
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4808
  msgstr ""
4809
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4810
 
4811
  #. translators: %s HTML tags
4812
- #: settings.php:4955
4813
  msgid "%s Banner %s code generator"
4814
  msgstr "Generator kode za %s pasice %s"
4815
 
4816
  #. translators: %s HTML tags
4817
- #: settings.php:4956
4818
  msgid "Support for %s header and footer %s code"
4819
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4820
 
4821
  #. translators: %s HTML tags
4822
- #: settings.php:4957
4823
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4824
  msgstr ""
4825
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4826
 
4827
  #. translators: %s HTML tags
4828
- #: settings.php:4958
4829
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4830
  msgstr ""
4831
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4832
  "strežnika"
4833
 
4834
  #. translators: %s HTML tags
4835
- #: settings.php:4959
4836
  msgid "Client-side %s mobile device detection %s (works with caching)"
4837
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4838
 
4839
  #. translators: %s HTML tags
4840
- #: settings.php:4960
4841
  msgid ""
4842
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4843
  "protection"
@@ -4846,12 +4887,12 @@ msgstr ""
4846
  "vsebine"
4847
 
4848
  #. translators: %s HTML tags
4849
- #: settings.php:4961
4850
  msgid "%s Ad blocking statistics %s"
4851
  msgstr "%s Statistika blokiranja oglasov %s"
4852
 
4853
  #. translators: %s HTML tags
4854
- #: settings.php:4962
4855
  msgid ""
4856
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4857
  "referers"
@@ -4859,75 +4900,75 @@ msgstr ""
4859
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4860
 
4861
  #. translators: %s HTML tags
4862
- #: settings.php:4963
4863
  msgid ""
4864
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4865
  msgstr ""
4866
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4867
 
4868
  #. translators: %s HTML tags
4869
- #: settings.php:4964
4870
  msgid "%s Multisite options %s to limit settings on the sites"
4871
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4872
 
4873
  #. translators: %s HTML tags
4874
- #: settings.php:4965
4875
  msgid "%s Import/Export %s block or plugin settings"
4876
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4877
 
4878
  #. translators: %s HTML tags
4879
- #: settings.php:4966
4880
  msgid "%s Insertion scheduling %s with fallback option"
4881
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4882
 
4883
  #. translators: %s HTML tags
4884
- #: settings.php:4967
4885
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4886
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4887
 
4888
  #. translators: %s HTML tags
4889
- #: settings.php:4968
4890
  msgid "Simple troubleshooting with many %s debugging functions %s"
4891
  msgstr ""
4892
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4893
 
4894
  #. translators: %s HTML tags
4895
- #: settings.php:4969
4896
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4897
  msgstr ""
4898
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4899
 
4900
  #. translators: %s HTML tags
4901
- #: settings.php:4970
4902
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4903
  msgstr ""
4904
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4905
 
4906
  #. translators: %s HTML tags
4907
- #: settings.php:4971
4908
  msgid ""
4909
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4910
  msgstr ""
4911
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4912
 
4913
  #. translators: %s HTML tags
4914
- #: settings.php:4972
4915
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4916
  msgstr ""
4917
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4918
 
4919
  #. translators: %s HTML tags
4920
- #: settings.php:4973
4921
  msgid "No ads on the settings page"
4922
  msgstr "Stran z nastavitvami brez oglasov"
4923
 
4924
  #. translators: %s HTML tags
4925
- #: settings.php:4974
4926
  msgid "Premium support"
4927
  msgstr "Vrhunska podpora"
4928
 
4929
  #. translators: %s HTML tags
4930
- #: settings.php:4977
4931
  msgid ""
4932
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4933
  "website with many advertising features to automatically insert adverts on "
@@ -4954,82 +4995,82 @@ msgstr ""
4954
  "bodo ohranile)."
4955
 
4956
  #. translators: %s HTML tags
4957
- #: settings.php:4990
4958
  msgid "Looking for %s Pro Ad Management plugin? %s"
4959
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4960
 
4961
  #. translators: %s HTML tags
4962
- #: settings.php:4995
4963
  msgid "Ads between posts"
4964
  msgstr "Oglasi med prispevki"
4965
 
4966
  #. translators: %s HTML tags
4967
- #: settings.php:4996
4968
  msgid "Ads between comments"
4969
  msgstr "Oglasi med komentarji"
4970
 
4971
  #. translators: %s HTML tags
4972
- #: settings.php:4997
4973
  msgid "Support via email"
4974
  msgstr "Podpora prek elektronske pošte"
4975
 
4976
  #. translators: %s HTML tags
4977
- #: settings.php:5003
4978
  msgid "%s Sticky positions %s"
4979
  msgstr "%s Lepljivi položaji %s"
4980
 
4981
  #. translators: %s HTML tags
4982
- #: settings.php:5004
4983
  msgid "%s Limit insertions %s"
4984
  msgstr "%s Omeji vstavljanja %s"
4985
 
4986
  #. translators: %s HTML tags
4987
- #: settings.php:5005
4988
  msgid "%s Clearance %s options"
4989
  msgstr "Možnosti %s izogibanja %s"
4990
 
4991
  #. translators: %s HTML tags
4992
- #: settings.php:5011
4993
  msgid "Ad rotation"
4994
  msgstr "Vrtenje oglasov"
4995
 
4996
  #. translators: %s HTML tags
4997
- #: settings.php:5012
4998
  msgid "%s A/B testing %s"
4999
  msgstr "%s A/B testiranje %s"
5000
 
5001
  #. translators: %s HTML tags
5002
- #: settings.php:5013
5003
  msgid "%s Ad tracking %s"
5004
  msgstr "%s Sledenje oglasom %s"
5005
 
5006
  #. translators: %s HTML tags
5007
- #: settings.php:5019
5008
  msgid "Support for %s AMP pages %s"
5009
  msgstr "Podpora za %s AMP strani %s"
5010
 
5011
  #. translators: %s HTML tags
5012
- #: settings.php:5020
5013
  msgid "%s Ad blocking detection %s"
5014
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5015
 
5016
  #. translators: %s HTML tags
5017
- #: settings.php:5021
5018
  msgid "%s Mobile device detection %s"
5019
  msgstr "%s Zaznavanje mobilne naprave %s"
5020
 
5021
  #. translators: %s HTML tags
5022
- #: settings.php:5028
5023
  msgid "64 code blocks"
5024
  msgstr "64 kodnih blokov"
5025
 
5026
  #. translators: %s HTML tags
5027
- #: settings.php:5029
5028
  msgid "%s GEO targeting %s"
5029
  msgstr "%s GEO ciljanje %s"
5030
 
5031
  #. translators: %s HTML tags
5032
- #: settings.php:5030
5033
  msgid "%s Scheduling %s"
5034
  msgstr "%s Urnik %s"
5035
 
@@ -5180,569 +5221,577 @@ msgid "do not contain"
5180
  msgstr "ne vsebujejo"
5181
 
5182
  #: strings.php:51
 
 
 
 
 
 
 
 
5183
  msgctxt "insert for"
5184
  msgid "all users"
5185
  msgstr "vse uporabnike"
5186
 
5187
- #: strings.php:52
5188
  msgctxt "insert for"
5189
  msgid "logged in users"
5190
  msgstr "prijavljene uporabnike"
5191
 
5192
- #: strings.php:53
5193
  msgctxt "insert for"
5194
  msgid "not logged in users"
5195
  msgstr "neprijavljene uporabnike"
5196
 
5197
- #: strings.php:54
5198
  msgctxt "insert for"
5199
  msgid "administrators"
5200
  msgstr "skrbnike"
5201
 
5202
- #: strings.php:56
5203
  msgid "Black list"
5204
  msgstr "Črni seznam"
5205
 
5206
- #: strings.php:57
5207
  msgid "White list"
5208
  msgstr "Beli seznam"
5209
 
5210
- #: strings.php:59
5211
  msgctxt "alignment"
5212
  msgid "Default"
5213
  msgstr "Privzeta"
5214
 
5215
- #: strings.php:60
5216
  msgctxt "alignment"
5217
  msgid "Left"
5218
  msgstr "Leva"
5219
 
5220
- #: strings.php:61
5221
  msgctxt "alignment"
5222
  msgid "Right"
5223
  msgstr "Desna"
5224
 
5225
- #: strings.php:62
5226
  msgctxt "alignment"
5227
  msgid "Center"
5228
  msgstr "Sredinska"
5229
 
5230
- #: strings.php:63
5231
  msgctxt "alignment"
5232
  msgid "Float left"
5233
  msgstr "Plavajoča levo"
5234
 
5235
- #: strings.php:64
5236
  msgctxt "alignment"
5237
  msgid "Float right"
5238
  msgstr "Plavajoča desno"
5239
 
5240
- #: strings.php:65
5241
  msgctxt "alignment"
5242
  msgid "No wrapping"
5243
  msgstr "Brez ovijanja"
5244
 
5245
- #: strings.php:66
5246
  msgid "Custom CSS"
5247
  msgstr "CSS po meri"
5248
 
5249
- #: strings.php:67
5250
  msgid "Sticky left"
5251
  msgstr "Lepljiv levo"
5252
 
5253
- #: strings.php:68
5254
  msgid "Sticky right"
5255
  msgstr "Lepljiv desno"
5256
 
5257
- #: strings.php:69
5258
  msgid "Sticky top"
5259
  msgstr "Lepljiv zgoraj"
5260
 
5261
- #: strings.php:70
5262
  msgid "Sticky bottom"
5263
  msgstr "Lepljiv spodaj"
5264
 
5265
- #: strings.php:71
5266
  msgctxt "alignment"
5267
  msgid "Sticky"
5268
  msgstr "Lepljiva"
5269
 
5270
- #: strings.php:73
5271
  msgctxt "using"
5272
  msgid "auto counter"
5273
  msgstr "samodejnega števca"
5274
 
5275
- #: strings.php:74
5276
  msgctxt "using"
5277
  msgid "PHP function calls counter"
5278
  msgstr "števca klicev PHP funkcije"
5279
 
5280
- #: strings.php:75
5281
  msgctxt "using"
5282
  msgid "content processing counter"
5283
  msgstr "števca procesiranja vsebine"
5284
 
5285
- #: strings.php:76
5286
  msgctxt "using"
5287
  msgid "excerpt processing counter"
5288
  msgstr "števca procesiranja izvlečkov"
5289
 
5290
- #: strings.php:77
5291
  msgctxt "using"
5292
  msgid "before post processing counter"
5293
  msgstr "števca pred prispevkom"
5294
 
5295
- #: strings.php:78
5296
  msgctxt "using"
5297
  msgid "after post processing counter"
5298
  msgstr "števca za prispevkom"
5299
 
5300
- #: strings.php:79
5301
  msgctxt "using"
5302
  msgid "widget drawing counter"
5303
  msgstr "števca risanja gradnikov"
5304
 
5305
- #: strings.php:80
5306
  msgctxt "using"
5307
  msgid "subpages counter"
5308
  msgstr "števca podstrani"
5309
 
5310
- #: strings.php:81
5311
  msgctxt "using"
5312
  msgid "posts counter"
5313
  msgstr "števca prispevkov"
5314
 
5315
- #: strings.php:82
5316
  msgctxt "using"
5317
  msgid "paragraphs counter"
5318
  msgstr "števca odstavkov"
5319
 
5320
- #: strings.php:83
5321
  msgctxt "using"
5322
  msgid "comments counter"
5323
  msgstr "števca komentarjev"
5324
 
5325
- #: strings.php:84
5326
  msgctxt "using"
5327
  msgid "images counter"
5328
  msgstr "števca slik"
5329
 
5330
- #: strings.php:87
5331
  msgctxt "posts"
5332
  msgid "Individually disabled"
5333
  msgstr "Posamezno onemogočeni"
5334
 
5335
- #: strings.php:88
5336
  msgctxt "posts"
5337
  msgid "Individually enabled"
5338
  msgstr "Posamezno omogočeni"
5339
 
5340
- #: strings.php:90
5341
  msgctxt "static pages"
5342
  msgid "Individually disabled"
5343
  msgstr "Posamezno onemogočene"
5344
 
5345
- #: strings.php:91
5346
  msgctxt "static pages"
5347
  msgid "Individually enabled"
5348
  msgstr "Posamezno omogočene"
5349
 
5350
- #: strings.php:93
5351
  msgid "Server-side"
5352
  msgstr "Na strani strežnika"
5353
 
5354
- #: strings.php:94
5355
  msgctxt "Insertion"
5356
  msgid "Client-side"
5357
  msgstr "Na strani klienta"
5358
 
5359
- #: strings.php:95
5360
  msgctxt "Dynamic blocks"
5361
  msgid "Client-side show"
5362
  msgstr "Prikaži na strani klienta"
5363
 
5364
- #: strings.php:96
5365
  msgctxt "Dynamic blocks"
5366
  msgid "Client-side insert"
5367
  msgstr "Vstavi na strani klienta"
5368
 
5369
- #: strings.php:97
5370
  msgctxt "Insertion"
5371
  msgid "Server-side using W3 Total Cache"
5372
  msgstr "Na strani strežnika z uporabo W3 Total Cache"
5373
 
5374
- #: strings.php:98
5375
  msgctxt "Insertion"
5376
  msgid "Client-side when DOM ready"
5377
  msgstr "Na strani klienta, ko je DOM pripravljen"
5378
 
5379
- #: strings.php:103
5380
  msgid "Replace element"
5381
  msgstr "Nadomesti element"
5382
 
5383
- #: strings.php:105
5384
  msgid "desktop devices"
5385
  msgstr "namizne naprave"
5386
 
5387
- #: strings.php:106
5388
  msgid "mobile devices"
5389
  msgstr "mobilne naprave"
5390
 
5391
- #: strings.php:107
5392
  msgid "tablet devices"
5393
  msgstr "tablične naprave"
5394
 
5395
- #: strings.php:108
5396
  msgid "phone devices"
5397
  msgstr "telefonske naprave"
5398
 
5399
- #: strings.php:109
5400
  msgid "desktop and tablet devices"
5401
  msgstr "namizne in telefonske naprave"
5402
 
5403
- #: strings.php:110
5404
  msgid "desktop and phone devices"
5405
  msgstr "tablične in telefonske naprave"
5406
 
5407
- #: strings.php:112
5408
  msgid "Stick to the left"
5409
  msgstr "Lepljiv na levi"
5410
 
5411
- #: strings.php:113
5412
  msgid "Stick to the content left"
5413
  msgstr "Lepljiv na vsebino levo"
5414
 
5415
- #: strings.php:114
5416
  msgid "Stick to the content right"
5417
  msgstr "Lepljiv na vsebino desno"
5418
 
5419
- #: strings.php:115
5420
  msgid "Stick to the right"
5421
  msgstr "Lepljiv na desni"
5422
 
5423
- #: strings.php:117
5424
  msgid "Stick to the top"
5425
  msgstr "Lepljiv na vrh"
5426
 
5427
- #: strings.php:118
5428
  msgid "Scroll with the content"
5429
  msgstr "Pomikaj z vsebino"
5430
 
5431
- #: strings.php:119
5432
  msgid "Stick to the bottom"
5433
  msgstr "Lepljiv na dno"
5434
 
5435
- #: strings.php:121
5436
  msgid "Fade"
5437
  msgstr "Uveni"
5438
 
5439
- #: strings.php:122
5440
  msgid "Slide"
5441
  msgstr "Drsaj"
5442
 
5443
- #: strings.php:123
5444
  msgid "Slide and Fade"
5445
  msgstr "Drsaj in Uveni"
5446
 
5447
- #: strings.php:124
5448
  msgid "Flip"
5449
  msgstr "Zavrti"
5450
 
5451
- #: strings.php:125
5452
  msgid "Zoom In"
5453
  msgstr "Približaj"
5454
 
5455
- #: strings.php:126
5456
  msgid "Zoom Out"
5457
  msgstr "Oddalji"
5458
 
5459
- #: strings.php:127
5460
  msgid "Turn"
5461
  msgstr "Obrni"
5462
 
5463
- #: strings.php:129
5464
  msgid "Page loaded"
5465
  msgstr "Stran naložena"
5466
 
5467
- #: strings.php:130
5468
  msgid "Page scrolled (%)"
5469
  msgstr "Stran pomaknjena (%)"
5470
 
5471
- #: strings.php:131
5472
  msgid "Page scrolled (px)"
5473
  msgstr "Stran pomaknjena (px)"
5474
 
5475
- #: strings.php:132
5476
  msgid "Element visible"
5477
  msgstr "Element viden"
5478
 
5479
- #: strings.php:134
5480
  msgid "Insert immediately"
5481
  msgstr "Vstavi takoj"
5482
 
5483
- #: strings.php:135
5484
  msgid "Delay insertion"
5485
  msgstr "Zakasni vstavljanje"
5486
 
5487
- #: strings.php:136
5488
  msgid "Insert between dates"
5489
  msgstr "Vstavi med datumoma"
5490
 
5491
- #: strings.php:137
5492
  msgid "Insert outside dates"
5493
  msgstr "Vstavi izven datumov"
5494
 
5495
- #: strings.php:138
5496
  msgid "Insert only"
5497
  msgstr "Vstavi samo"
5498
 
5499
- #: strings.php:139
5500
  msgid "Insert for posts published between dates"
5501
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
5502
 
5503
- #: strings.php:140
5504
  msgid "Insert for posts published outside dates"
5505
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
5506
 
5507
- #: strings.php:142
5508
  msgctxt "functions"
5509
  msgid "Standard"
5510
  msgstr "Običajne"
5511
 
5512
- #: strings.php:143
5513
  msgctxt "detection"
5514
  msgid "Standard"
5515
  msgstr "Običajno"
5516
 
5517
- #: strings.php:144
5518
  msgctxt "functions"
5519
  msgid "Multibyte"
5520
  msgstr "Večznakovne"
5521
 
5522
- #: strings.php:146
5523
  msgctxt "action"
5524
  msgid "None"
5525
  msgstr "Nobena"
5526
 
5527
- #: strings.php:147
5528
  msgctxt "button"
5529
  msgid "None"
5530
  msgstr "Noben"
5531
 
5532
- #: strings.php:148
5533
  msgid "Popup Message"
5534
  msgstr "Pojavno Sporočilo"
5535
 
5536
- #: strings.php:149
5537
  msgid "Redirection"
5538
  msgstr "Preusmeritev"
5539
 
5540
- #: strings.php:151
5541
  msgid "Do nothnig"
5542
  msgstr "Ne naredi ničesar"
5543
 
5544
- #: strings.php:153
5545
  msgctxt "Action when ad blocking detected"
5546
  msgid "Show"
5547
  msgstr "Pokaži"
5548
 
5549
- #: strings.php:154
5550
  msgctxt "Action when ad blocking detected"
5551
  msgid "Hide"
5552
  msgstr "Skrij"
5553
 
5554
- #: strings.php:156
5555
  msgctxt "tracking"
5556
  msgid "Internal"
5557
  msgstr "Interno"
5558
 
5559
- #: strings.php:157
5560
  msgctxt "detection"
5561
  msgid "Advanced"
5562
  msgstr "Napredno"
5563
 
5564
- #: strings.php:160
5565
  msgid "Top right"
5566
  msgstr "Zgoraj desno"
5567
 
5568
- #: strings.php:161
5569
  msgid "Top left"
5570
  msgstr "Zgoraj levo"
5571
 
5572
- #: strings.php:162
5573
  msgid "Bottom right"
5574
  msgstr "Spodaj desno"
5575
 
5576
- #: strings.php:163
5577
  msgid "Bottom left"
5578
  msgstr "Spodaj levo"
5579
 
5580
- #: strings.php:165
5581
  msgctxt "AdSense Ad Type"
5582
  msgid "Standard"
5583
  msgstr "Običajni"
5584
 
5585
- #: strings.php:166
5586
  msgctxt "AdSense Ad Type"
5587
  msgid "Link"
5588
  msgstr "Povezave"
5589
 
5590
- #: strings.php:167
5591
  msgctxt "AdSense Ad Type"
5592
  msgid "In-article"
5593
  msgstr "V članku"
5594
 
5595
- #: strings.php:168
5596
  msgctxt "AdSense Ad Type"
5597
  msgid "In-feed"
5598
  msgstr "V viru"
5599
 
5600
- #: strings.php:169
5601
  msgctxt "AdSense Ad Type"
5602
  msgid "Matched content"
5603
  msgstr "Prilagojena vsebina"
5604
 
5605
- #: strings.php:170
5606
  msgctxt "AdSense Ad Type"
5607
  msgid "Auto Ads"
5608
  msgstr "Samodejni"
5609
 
5610
- #: strings.php:172
5611
  msgctxt "AMP ad"
5612
  msgid "Disabled"
5613
  msgstr "Onemogočen"
5614
 
5615
- #: strings.php:173
5616
  msgid "Above the fold"
5617
  msgstr "Nad pregibom"
5618
 
5619
- #: strings.php:174
5620
  msgid "Below the fold"
5621
  msgstr "Pod pregibom"
5622
 
5623
- #: strings.php:176
5624
  msgctxt "size"
5625
  msgid "Fixed"
5626
  msgstr "Fiksna"
5627
 
5628
- #: strings.php:177
5629
  msgctxt "size"
5630
  msgid "Responsive"
5631
  msgstr "Odzivna"
5632
 
5633
- #: strings.php:178
5634
  msgctxt "size"
5635
  msgid "Fixed by viewport"
5636
  msgstr "Fiksna glede na pogled"
5637
 
5638
- #: strings.php:182
5639
  msgid "Impressions and clicks"
5640
  msgstr "Prikazi in Kliki"
5641
 
5642
- #: strings.php:183
5643
  msgid "Advanced WordPress Ad Management Plugin"
5644
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
5645
 
5646
- #: strings.php:189
5647
  msgctxt "Button"
5648
  msgid "Hide"
5649
  msgstr "Skrij"
5650
 
5651
- #: strings.php:190
5652
  msgctxt "Button"
5653
  msgid "Show"
5654
  msgstr "Pokaži"
5655
 
5656
- #: strings.php:191
5657
  msgid "Insertion expired"
5658
  msgstr "Vstavljanje poteklo"
5659
 
5660
- #: strings.php:192
5661
  msgid "Duration"
5662
  msgstr "Trajanje"
5663
 
5664
- #: strings.php:193
5665
  msgid "Invalid end date - must be after start date"
5666
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5667
 
5668
- #: strings.php:194
5669
  msgid "Invalid start date - only data for 1 year back is available"
5670
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5671
 
5672
- #: strings.php:195
5673
  msgid "Invalid date range - only data for 1 year can be displayed"
5674
  msgstr ""
5675
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5676
 
5677
- #: strings.php:203
5678
  msgid "Delete"
5679
  msgstr "Pobriši"
5680
 
5681
- #: strings.php:204
5682
  msgid "Switch"
5683
  msgstr "Preklopi"
5684
 
5685
- #: strings.php:206
5686
  msgid "Delete all statistics data?"
5687
  msgstr "Pobrišem vse podatke o statistiki?"
5688
 
5689
  #. translators: %s: dates
5690
- #: strings.php:208
5691
  msgid "Delete statistics data between %s and %s?"
5692
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5693
 
5694
- #: strings.php:209
5695
  msgid "Cancel block order rearrangement"
5696
  msgstr "Prekliči preureditev vrstnega reda blokov"
5697
 
5698
- #: strings.php:211
5699
  msgid "downloading..."
5700
  msgstr "prenašam..."
5701
 
5702
- #: strings.php:212
5703
  msgid "download error"
5704
  msgstr "napaka pri prenosu"
5705
 
5706
- #: strings.php:213
5707
  msgid "update error"
5708
  msgstr "napaka pri posodobitvi"
5709
 
5710
- #: strings.php:214
5711
  msgid "Updating..."
5712
  msgstr "Posodabljam..."
5713
 
5714
- #: strings.php:216
5715
  msgid "ERROR"
5716
  msgstr "NAPAKA"
5717
 
5718
- #: strings.php:217
5719
  msgid "Error reloading settings"
5720
  msgstr "Napaka pri nalaganju nastavitev"
5721
 
5722
- #: strings.php:219
5723
  msgctxt "Search field placeholder"
5724
  msgid "Search..."
5725
  msgstr "Išči..."
5726
 
5727
- #: strings.php:220
5728
  msgctxt "Search field placeholder"
5729
  msgid "Filter..."
5730
  msgstr "Filter..."
5731
 
5732
- #: strings.php:221
5733
  msgid "Use filter to limit names in the list"
5734
  msgstr "Uporabite filter za omejitev imen v seznamu"
5735
 
5736
- #: strings.php:222
5737
  msgctxt "Button"
5738
  msgid "Filter"
5739
  msgstr "Filter"
5740
 
5741
- #: strings.php:224
5742
  msgid "Position not available"
5743
  msgstr "Položaj ni na razpolago"
5744
 
5745
- #: strings.php:225
5746
  msgid ""
5747
  "Theme check | Selected position for automatic insertion might not be not "
5748
  "available on this page type"
@@ -5750,65 +5799,65 @@ msgstr ""
5750
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5751
  "razpolago na tem tipu strani"
5752
 
5753
- #: strings.php:226
5754
  msgid "Position available"
5755
  msgstr "Položaj na razpolago"
5756
 
5757
- #: strings.php:228
5758
  msgid "Select or upload banner image"
5759
  msgstr "Izberi ali naloži sliko pasice"
5760
 
5761
- #: strings.php:229
5762
  msgid "Use this image"
5763
  msgstr "Uporabi to sliko"
5764
 
5765
- #: strings.php:230
5766
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5767
  msgstr ""
5768
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
5769
 
5770
- #: strings.php:244
5771
  msgid "Add"
5772
  msgstr "Dodaj"
5773
 
5774
- #: strings.php:245
5775
  msgid "Parent"
5776
  msgstr "Starš"
5777
 
5778
- #: strings.php:246
5779
  msgid "Cancel element selection"
5780
  msgstr "Prekliči izbor HTML elementa"
5781
 
5782
- #: strings.php:247
5783
  msgid "Select parent element"
5784
  msgstr "Izberi starševski element"
5785
 
5786
- #: strings.php:248
5787
  msgid "CSS selector"
5788
  msgstr "CSS selektor"
5789
 
5790
- #: strings.php:249
5791
  msgid "Use current selector"
5792
  msgstr "Uporabi trenutni selektor"
5793
 
5794
- #: strings.php:250
5795
  msgid "ELEMENT"
5796
  msgstr "ELEMENT"
5797
 
5798
- #: strings.php:251
5799
  msgid "PATH"
5800
  msgstr "POT"
5801
 
5802
- #: strings.php:252
5803
  msgid "SELECTOR"
5804
  msgstr "SELEKTOR"
5805
 
5806
- #: strings.php:253
5807
  msgctxt "Block"
5808
  msgid "VISIBLE"
5809
  msgstr "VIDEN"
5810
 
5811
- #: strings.php:254
5812
  msgctxt "Block"
5813
  msgid "HIDDEN"
5814
  msgstr "SKRIT"
@@ -5821,6 +5870,48 @@ msgstr ""
5821
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5822
  "na optimalna mesta"
5823
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5824
  #~ msgid "Default insertion for pages"
5825
  #~ msgstr "Privzeto vstavljanje za strani"
5826
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-04 18:34:16+00:00\n"
8
+ "PO-Revision-Date: 2019-09-04 20:34+0200\n"
9
+ "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
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:394
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:410
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:417
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:488
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:495
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:504
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:511
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:521
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1123
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1128
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1133 strings.php:103
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1138 strings.php:104
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1143 strings.php:105
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1148 strings.php:155
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1195
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1199
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1408
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1733 ad-inserter.php:2634
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2180
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2180
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2181
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2182
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2183
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2184
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2185
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2384
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2385 includes/functions.old.php:1652
150
+ #: includes/functions.php:1662
151
  msgid "No, thank you."
152
  msgstr "Ne, hvala."
153
 
154
  #. Translators: %s: Ad Inserter
155
+ #: ad-inserter.php:2388
156
  msgid ""
157
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
158
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
159
 
160
+ #: ad-inserter.php:2389 includes/functions.old.php:1655
161
+ #: includes/functions.php:1665
162
  msgid "Not now, maybe later."
163
  msgstr "Ne zdaj, mogoče kasneje."
164
 
165
+ #: ad-inserter.php:2399
166
  msgid "I would really appreciate if you could rate the plugin on WordPres."
167
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
168
 
169
+ #: ad-inserter.php:2401
170
  msgid ""
171
  "Positive reviews are a great incentive to fix bugs and to add new features "
172
  "for better monetization of your website. Thank you, Igor"
175
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
176
 
177
  #. translators: %s: Ad Inserter
178
+ #: ad-inserter.php:2407
179
  msgid "Rate %s"
180
  msgstr "Ocenite %s"
181
 
182
+ #: ad-inserter.php:2412
183
  msgid "I already did."
184
  msgstr "Sem že."
185
 
186
+ #: ad-inserter.php:2425
187
  msgctxt "Menu item"
188
  msgid "Settings"
189
  msgstr "Nastavitve"
190
 
191
  #. translators: %s: Ad Inserter
192
+ #: ad-inserter.php:2525
193
  msgctxt "Meta box name"
194
  msgid "%s Individual Exceptions"
195
  msgstr "Posamezne Izjeme za %s"
196
 
197
+ #: ad-inserter.php:2554 ad-inserter.php:8555 class.php:2053
198
  #: includes/preview.php:1976 includes/preview.php:2020
199
+ #: includes/preview.php:2057 settings.php:4040 strings.php:3
200
  msgid "Block"
201
  msgstr "Blok"
202
 
203
+ #: ad-inserter.php:2555 settings.php:4041 settings.php:4126
204
  msgid "Name"
205
  msgstr "Ime"
206
 
207
+ #: ad-inserter.php:2558 settings.php:1119
208
  msgid "Default insertion"
209
  msgstr "Privzeto vstavljanje"
210
 
211
  #. translators: For this post or page
212
+ #: ad-inserter.php:2561
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr "Za to"
216
 
217
+ #: ad-inserter.php:2562
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr "Za ta"
221
 
222
+ #: ad-inserter.php:2574
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr "straneh"
226
 
227
+ #: ad-inserter.php:2577
228
  msgctxt "Enabled/disabled on all"
229
  msgid "posts"
230
  msgstr "prispevkih"
231
 
232
+ #: ad-inserter.php:2595 ad-inserter.php:2607 strings.php:161
233
  msgid "Enabled"
234
  msgstr "Omogočeno"
235
 
236
  #. translators: Menu items
237
+ #: ad-inserter.php:2595 ad-inserter.php:2607 includes/functions.old.php:2326
238
+ #: includes/functions.php:2338 strings.php:16
239
  msgid "Disabled"
240
  msgstr "Onemogočeno"
241
 
242
+ #: ad-inserter.php:2597
243
  msgid "No individual exceptions"
244
  msgstr "Ni posameznih izjem"
245
 
246
  #. translators: Not enabled for pages or posts
247
+ #: ad-inserter.php:2599
248
  msgid "Not enabled for"
249
  msgstr "Ni omogočeno za"
250
 
251
  #. translators: No individual exceptions enabled for pages or posts
252
+ #: ad-inserter.php:2627
253
  msgid "No block has individual exceptions enabled"
254
  msgstr "Noben blok nima omogočenih posameznih izjem"
255
 
256
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
257
+ #: ad-inserter.php:2632
258
  msgid ""
259
  "Default insertion can be configured for each block on %1$s page - button "
260
  "next to %2$s checkbox."
262
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
263
  "poleg kljukice za vklop %2$s."
264
 
265
+ #: ad-inserter.php:2635 settings.php:1097
266
  msgid "Tag / Archive pages"
267
  msgstr "Strani oznak / arhiva"
268
 
269
+ #: ad-inserter.php:2637
270
  msgid ""
271
  "When individual exceptions for a block are enabled, a checkbox will be "
272
  "listed here to change default insertion for this post or page."
274
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
275
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
276
 
277
+ #: ad-inserter.php:2638
278
  msgid ""
279
  "This way you can individually enable or disable blocks on specific posts or "
280
  "pages."
282
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
283
  "prispevku ali strani."
284
 
285
+ #: ad-inserter.php:2640
286
  msgid "For more information check page %s"
287
  msgstr "Za več informacij poglejte stran %s"
288
 
289
  #. translators: Ad Inserter Exceptions documentation page
290
+ #: ad-inserter.php:2642
291
  msgid "Individual Exceptions"
292
  msgstr "Posamezne Izjeme"
293
 
294
+ #: ad-inserter.php:2689
295
  msgid "STATIC PAGE"
296
  msgstr "STATIČNA STRAN"
297
 
298
+ #: ad-inserter.php:2692
299
  msgid "POST"
300
  msgstr "PRISPEVEK"
301
 
302
+ #: ad-inserter.php:2695
303
  msgid "HOMEPAGE"
304
  msgstr "DOMAČA STRAN"
305
 
306
+ #: ad-inserter.php:2698
307
  msgid "CATEGORY PAGE"
308
  msgstr "STRAN KATEGORIJE"
309
 
310
+ #: ad-inserter.php:2701
311
  msgid "SEARCH PAGE"
312
  msgstr "STRAN ISKANJE"
313
 
314
+ #: ad-inserter.php:2704
315
  msgid "ARCHIVE PAGE"
316
  msgstr "STRAN ARHIVA"
317
 
318
+ #: ad-inserter.php:2707
319
  msgid "ERROR 404 PAGE"
320
  msgstr "STRAN NAPAKA 404"
321
 
322
+ #: ad-inserter.php:2710
323
  msgid "AJAX CALL"
324
  msgstr "AJAX KLIC"
325
 
326
+ #: ad-inserter.php:2713
327
  msgid "UNKNOWN PAGE TYPE"
328
  msgstr "NEZNAN TIP STRANI"
329
 
330
+ #: ad-inserter.php:2730
331
  msgid "Click to delete ad blocking detection cokies"
332
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
333
 
334
+ #: ad-inserter.php:2731
335
  msgid "AD BLOCKING STATUS UNKNOWN"
336
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
337
 
338
  #. translators: %s: AdSense Auto Ads
339
+ #: ad-inserter.php:2755
340
  msgid ""
341
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
342
  "positions"
344
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
345
  "položaje"
346
 
347
+ #: ad-inserter.php:2894
348
  msgid "Code for insertion"
349
  msgstr "Koda za vstavljanje"
350
 
351
+ #: ad-inserter.php:2894
352
  msgid "character"
353
  msgid_plural "characters"
354
  msgstr[0] "znak"
356
  msgstr[2] "znaki"
357
  msgstr[3] "znakov"
358
 
359
+ #: ad-inserter.php:2937
360
  msgid "Header code"
361
  msgstr "Koda v glavi"
362
 
363
+ #: ad-inserter.php:2937
364
  msgctxt "Header code"
365
  msgid "DISABLED"
366
  msgstr "ONEMOGOČENA"
367
 
368
+ #: ad-inserter.php:2937 ad-inserter.php:3160
369
  msgid "character inserted"
370
  msgid_plural "characters inserted"
371
  msgstr[0] "znak vstavljen"
373
  msgstr[2] "znaki vstavljeni"
374
  msgstr[3] "znakov vstavljenih"
375
 
376
+ #: ad-inserter.php:2971
377
  msgid "Automatically placed by AdSense Auto ads code"
378
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
379
 
380
+ #: ad-inserter.php:3160
381
  msgid "Footer code"
382
  msgstr "Koda v nogi"
383
 
384
+ #: ad-inserter.php:3160
385
  msgctxt "Footer code"
386
  msgid "DISABLED"
387
  msgstr "ONEMOGOČENA"
388
 
389
+ #: ad-inserter.php:3166
390
  msgid "JAVASCRIPT NOT WORKING"
391
  msgstr "JAVASCRIPT NE DELA"
392
 
393
+ #: ad-inserter.php:3166
394
  msgid "NO JAVASCRIPT ERRORS"
395
  msgstr "BREZ JAVASCRIPT NAPAK"
396
 
397
+ #: ad-inserter.php:3166
398
  msgid "JAVASCRIPT ERRORS"
399
  msgstr "JAVASCRIPT NAPAKE"
400
 
401
  #. translators: block name (block with default settings)
402
+ #: ad-inserter.php:5421
403
  msgctxt "Block name"
404
  msgid "Default"
405
  msgstr "Privzeti"
406
 
407
  #. translators: %s: Ad Inserter
408
+ #: ad-inserter.php:6002
409
  msgid "Error importing %s settings."
410
  msgstr "Napaka pri uvozu %s nastavitev."
411
 
412
+ #: ad-inserter.php:6003
413
  msgid "Error importing settings for block"
414
  msgid_plural "Error importing settings for blocks:"
415
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
417
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
418
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
419
 
420
+ #: ad-inserter.php:6052
421
  msgid "Settings saved."
422
  msgstr "Nastavitve shranjene."
423
 
424
+ #: ad-inserter.php:6139
425
  msgid "Settings cleared."
426
  msgstr "Nastavitve ponastavljene."
427
 
428
+ #: ad-inserter.php:6484 ad-inserter.php:6486 ad-inserter.php:6509
429
  msgid "word"
430
  msgid_plural "words"
431
  msgstr[0] "beseda"
433
  msgstr[2] "besede"
434
  msgstr[3] "besed"
435
 
436
+ #: ad-inserter.php:6523 ad-inserter.php:6635
437
  msgid "HTML TAGS REMOVED"
438
  msgstr "HTML ZNAČKE ODSTRANJENE"
439
 
440
+ #: ad-inserter.php:6711
441
  msgid "BEFORE COMMENTS"
442
  msgstr "PRED KOMENTARJI"
443
 
444
+ #: ad-inserter.php:6819
445
  msgid "AFTER COMMENTS"
446
  msgstr "PO KOMETARJIH"
447
 
448
+ #: ad-inserter.php:6882
449
  msgid "BETWEEN COMMENTS"
450
  msgstr "MED KOMENTARJI"
451
 
452
+ #: ad-inserter.php:8189
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr "potrebuje WordPress 4.0 ali novejši"
455
 
456
+ #: ad-inserter.php:8189
457
  msgid "Please update!"
458
  msgstr "Prosimo, posodobite!"
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
+ #: ad-inserter.php:8428
463
  msgid "Thank you for installing"
464
  msgstr "Hvala za namestitev vtičnika"
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
+ #: ad-inserter.php:8430
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
472
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
473
  "izbirno in se lahko izključi kadarkoli."
474
 
475
+ #: ad-inserter.php:8432
476
  msgid ""
477
  "We don't record any sensitive data, only information regarding the WordPress "
478
  "environment and plugin usage, which will help us to make improvements to the "
482
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
483
 
484
  #. translators: Deactivation message: %s: HTML tags
485
+ #: ad-inserter.php:8469
486
  msgid ""
487
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
488
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
493
  "nam %s in poskušali vam bomo pomagati."
494
 
495
  #. translators: %s: Ad Inserter
496
+ #: ad-inserter.php:8512
497
  msgid "%s block."
498
  msgstr "%s blok."
499
 
500
  #. translators: widget title
501
+ #: ad-inserter.php:8528 ad-inserter.php:8564
502
  msgid "Processing log"
503
  msgstr "Dnevnik procesiranja"
504
 
505
  #. translators: widget title
506
+ #: ad-inserter.php:8530 ad-inserter.php:8565
507
  msgid "Dummy widget"
508
  msgstr "Prazen gradnik"
509
 
510
  #. translators: widget title
511
+ #: ad-inserter.php:8532 ad-inserter.php:8563
512
  msgid "Debugging tools"
513
  msgstr "Orodja za razhroščevanje"
514
 
515
  #. translators: block status (widget title)
516
+ #: ad-inserter.php:8539
517
  msgctxt "block"
518
  msgid "PAUSED"
519
  msgstr "USTAVLJEN"
520
 
521
+ #: ad-inserter.php:8540
522
  msgid "WIDGET DISABLED"
523
  msgstr "GRADNIK ONEMOGOČEN"
524
 
525
+ #: ad-inserter.php:8541
526
  msgid "Unknown block"
527
  msgstr "Neznan blok"
528
 
529
+ #: ad-inserter.php:8550 includes/functions.old.php:3186
530
+ #: includes/functions.php:3198 settings.php:1149
531
  msgid "Title"
532
  msgstr "Naslov"
533
 
534
+ #: ad-inserter.php:8572
535
  msgctxt "Widget"
536
  msgid "Sticky"
537
  msgstr "Lepljiv"
538
 
539
+ #: ad-inserter.php:8621
540
  msgid ""
541
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
542
  "Inserter you need to first deactivate Ad Inserter Pro."
545
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
546
  "Inserter Pro."
547
 
548
+ #: ad-inserter.php:8622
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 "
560
  msgid "PHP error in %s block"
561
  msgstr "PHP napaka v bloku %s"
562
 
563
+ #: class.php:2019
564
  msgid "Counters"
565
  msgstr "Števci"
566
 
567
+ #: class.php:2023
568
  msgid "Content"
569
  msgstr "Vsebina"
570
 
571
+ #: class.php:2028
572
  msgid "Excerpt"
573
  msgstr "Izvleček"
574
 
575
+ #: class.php:2033 strings.php:17
576
  msgid "Before post"
577
  msgstr "Pred prispevkom"
578
 
579
+ #: class.php:2038 strings.php:18
580
  msgid "After post"
581
  msgstr "Za prispevkom"
582
 
583
+ #: class.php:2043 settings.php:1785 settings.php:4058
584
  msgid "Widget"
585
  msgstr "Gradnik"
586
 
587
+ #: class.php:2048 settings.php:4056
588
  msgid "PHP function call"
589
  msgstr "Klic PHP funkcije"
590
 
591
+ #: class.php:2083
592
  msgid "AJAX REQUEST"
593
  msgstr "AJAX ZAHTEVEK"
594
 
595
+ #: class.php:2086
596
  msgid "Ajax request for block in iframe"
597
  msgstr "Ajax zahtevek za blok v iframe-u"
598
 
599
+ #: class.php:2116
600
  msgid "Ajax request url, click to open it in a new tab"
601
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
602
 
603
+ #: class.php:2119
604
  msgid "IN THE LOOP"
605
  msgstr "V ZANKI"
606
 
607
+ #: class.php:2119
608
  msgid "YES"
609
  msgstr "DA"
610
 
611
+ #: class.php:2119
612
  msgid "NO"
613
  msgstr "NE"
614
 
615
+ #: class.php:2155
616
  msgid "BLOCK"
617
  msgstr "BLOK"
618
 
619
+ #: class.php:2155
620
  msgctxt "block or widget"
621
  msgid "INSERTED BUT NOT VISIBLE"
622
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
623
 
624
+ #: class.php:2601 class.php:2660
625
  msgid "ACTIVE GROUPS"
626
  msgstr "AKTIVNE SKUPINE"
627
 
628
  #. translators: %s: list parameters and type
629
+ #: class.php:2835
630
  msgid "parameters='%s' type='%s'"
631
  msgstr "parametri='%s' tip='%s'"
632
 
633
  #. translators: %s: list parameters and type
634
+ #: class.php:2837
635
  msgid "referers='%s' type='%s'"
636
  msgstr "napotitelji='%s' tip='%s'"
637
 
638
  #. translators: %s: list parameters and type
639
+ #: class.php:2898
640
  msgid "countries='%s' type='%s'"
641
  msgstr "države='%s' tip='%s'"
642
 
643
  #. translators: %s: list parameters and type
644
+ #: class.php:2900
645
  msgid "ip addresses='%s' type='%s'"
646
  msgstr "ip naslovi='%s' tip='%s'"
647
 
648
+ #: class.php:3169 strings.php:239
649
  msgid "BEFORE"
650
  msgstr "PRED"
651
 
652
+ #: class.php:3177 strings.php:241
653
  msgid "PREPEND CONTENT"
654
  msgstr "DODAJ PRED VSEBINO"
655
 
656
+ #: class.php:3181 strings.php:242
657
  msgid "APPEND CONTENT"
658
  msgstr "DODAJ ZA VSEBINO"
659
 
660
+ #: class.php:3185 strings.php:243
661
  msgid "REPLACE CONTENT"
662
  msgstr "NADOMESTI VSEBINO"
663
 
664
+ #: class.php:3189 strings.php:244
665
  msgid "REPLACE ELEMENT"
666
  msgstr "NADOMESTI ELEMENT"
667
 
668
+ #: class.php:3200 strings.php:240
669
  msgid "AFTER"
670
  msgstr "ZA"
671
 
672
+ #: class.php:3267
673
  msgctxt "JavaScript"
674
  msgid "script"
675
  msgstr "skripta"
676
 
677
+ #: class.php:3270 settings.php:2054
678
  msgid "for"
679
  msgstr "za"
680
 
681
+ #: class.php:6277 class.php:6329
682
  msgctxt "category name"
683
  msgid "Uncategorized"
684
  msgstr "Nekategorizirano"
685
 
686
+ #: class.php:6822
687
  msgid ""
688
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
689
  "extension for PHP."
692
  "namestiti DOM razširitev za PHP."
693
 
694
  #: includes/editor.php:7 includes/placeholders.php:352
695
+ #: includes/preview.php:1962 strings.php:246
696
  msgid "Use"
697
  msgstr "Uporabi"
698
 
701
  msgstr "Ponastavi"
702
 
703
  #: includes/editor.php:9 includes/placeholders.php:354
704
+ #: includes/preview.php:1965 settings.php:3453 strings.php:208 strings.php:245
705
  msgid "Cancel"
706
  msgstr "Prekliči"
707
 
718
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
719
  "blokiranje oglasov."
720
 
721
+ #: includes/editor.php:264 settings.php:257
722
  msgid "Error loading page"
723
  msgstr "Napaka pri nalaganju strani"
724
 
727
  msgid "PAGE BLOCKED"
728
  msgstr "STRAN BLOKIRANA"
729
 
730
+ #: includes/functions.old.php:289 includes/functions.php:291
731
  msgid "%d of %d names shown"
732
  msgstr "Prikazanih %d od %d imen"
733
 
734
  #. translators: %s: name filter
735
+ #: includes/functions.old.php:308 includes/functions.php:310
736
  msgid "No name matches filter"
737
  msgstr "Noben podatek ne ustreza filtru"
738
 
739
  #. translators: %s: Ad Inserter Pro
740
+ #: includes/functions.old.php:383 includes/functions.php:385
741
  msgid ""
742
  "Import %s settings when saving - if checked, the encoded settings below will "
743
  "be imported for all blocks and settings"
745
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
746
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
747
 
748
+ #: includes/functions.old.php:383 includes/functions.php:385
749
  msgid "Import Settings for"
750
  msgstr "Uvozi Nastavitve za"
751
 
752
+ #: includes/functions.old.php:387 includes/functions.php:389
753
  msgid "Saved settings for"
754
  msgstr "Shranjene nastavitve za"
755
 
756
+ #: includes/functions.old.php:407 includes/functions.php:409
757
  msgid "License Key"
758
  msgstr "Licenčni Ključ"
759
 
760
+ #: includes/functions.old.php:410 includes/functions.php:412
761
  msgid "License Key for"
762
  msgstr "Licenčni Ključ za"
763
 
764
+ #: includes/functions.old.php:413 includes/functions.php:415
765
  msgid "Open license page"
766
  msgstr "Odpri licenčno stran"
767
 
768
+ #: includes/functions.old.php:421 includes/functions.php:423
769
  msgid "Hide license key"
770
  msgstr "Skrij licenčni ključ"
771
 
772
+ #: includes/functions.old.php:421 includes/functions.php:423
773
  msgid "Hide key"
774
  msgstr "Skrij ključ"
775
 
776
+ #: includes/functions.old.php:436 includes/functions.php:438
777
  msgid "Main content element"
778
  msgstr "Glavni element vsebine"
779
 
780
+ #: includes/functions.old.php:439 includes/functions.php:441
781
  msgid ""
782
  "Main content element (#id or .class) for 'Stick to the content' position. "
783
  "Leave empty unless position is not properly calculated."
785
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
786
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
787
 
788
+ #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1300
789
+ #: settings.php:2668
790
  msgid "Open HTML element selector"
791
  msgstr "Odpri izbirnik HTML elementa"
792
 
793
+ #: includes/functions.old.php:445 includes/functions.php:447
794
  msgid "Lazy loading offset"
795
  msgstr "Zamik za leno nalaganje"
796
 
797
+ #: includes/functions.old.php:448 includes/functions.php:450
798
  msgid "Offset of the block from the visible viewport when it should be loaded"
799
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
800
 
801
+ #: includes/functions.old.php:459 includes/functions.php:461
802
  msgid "Export / Import Block Settings"
803
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
804
 
805
+ #: includes/functions.old.php:474 includes/functions.php:476
806
  msgid "Track impressions and clicks for this block"
807
  msgstr "Sledi prikazom in klikom za ta blok"
808
 
809
+ #: includes/functions.old.php:474 includes/functions.php:476
810
  msgid " - global tracking disabled"
811
  msgstr " - globalno sledenje onemogočeno"
812
 
813
+ #: includes/functions.old.php:481 includes/functions.php:483
814
  msgid "Generate PDF report"
815
  msgstr "Generiraj PDF poročilo"
816
 
817
+ #: includes/functions.old.php:486 includes/functions.php:488
818
  msgid "Open public report"
819
  msgstr "Odpri javno poročilo"
820
 
821
+ #: includes/functions.old.php:500 includes/functions.php:502
822
  msgid "Toggle Ad Blocking Statistics"
823
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
824
 
825
+ #: includes/functions.old.php:508 includes/functions.old.php:2960
826
+ #: includes/functions.php:510 includes/functions.php:2972
827
  msgid "Toggle Statistics"
828
  msgstr "Preklopi Statistiko"
829
 
830
  #. translators: %s: Ad Inserter Pro
831
+ #: includes/functions.old.php:524 includes/functions.php:534
832
  msgid "%s license key is not set. Continue?"
833
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
834
 
835
  #. translators: %s: Ad Inserter Pro
836
+ #: includes/functions.old.php:528 includes/functions.php:538
837
  msgid "Invalid %s license key. Continue?"
838
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
839
 
840
  #. translators: %s: Ad Inserter Pro
841
+ #: includes/functions.old.php:532 includes/functions.php:542
842
  msgid "%s license overused. Continue?"
843
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
844
 
845
+ #: includes/functions.old.php:536 includes/functions.php:546 settings.php:2125
846
  msgid "Save Settings"
847
  msgstr "Shrani Nastavitve"
848
 
849
+ #: includes/functions.old.php:596 includes/functions.php:606
850
+ #: includes/preview.php:2106
851
  msgid "Horizontal position"
852
  msgstr "Vodoravni položaj"
853
 
854
+ #: includes/functions.old.php:619 includes/functions.php:629
855
  msgid ""
856
  "Horizontal margin from the content or screen edge, empty means default value "
857
  "from CSS"
859
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
860
  "iz CSS"
861
 
862
+ #: includes/functions.old.php:627 includes/functions.php:637
863
+ #: includes/preview.php:2161
864
  msgid "Vertical position"
865
  msgstr "Navpični položaj"
866
 
867
+ #: includes/functions.old.php:642 includes/functions.php:652
868
  msgid ""
869
  "Vertical margin from the top or bottom screen edge, empty means default "
870
  "value from CSS"
872
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
873
  "iz CSS"
874
 
875
+ #: includes/functions.old.php:667 includes/functions.php:677
876
+ #: includes/preview.php:2212
877
  msgid "Animation"
878
  msgstr "Animacija"
879
 
880
+ #: includes/functions.old.php:685 includes/functions.php:695
881
  msgid "Trigger"
882
  msgstr "Sporžilec"
883
 
884
+ #: includes/functions.old.php:694 includes/functions.php:704
885
  msgid ""
886
  "Trigger value: page scroll in %, page scroll in px or element with selector "
887
  "(#id or .class) becomes visible"
889
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
890
  "selektorjem (#id ali .razred) postane viden"
891
 
892
+ #: includes/functions.old.php:698 includes/functions.php:708
893
  msgid "Offset"
894
  msgstr "Zamik"
895
 
896
+ #: includes/functions.old.php:698 includes/functions.php:708
897
  msgid "Offset of trigger element"
898
  msgstr "Zamik sprožilnega elementa"
899
 
900
+ #: includes/functions.old.php:702 includes/functions.php:712
901
  msgid "Delay"
902
  msgstr "Zakasnitev"
903
 
904
+ #: includes/functions.old.php:702 includes/functions.php:712
905
  msgid "Delay animation after trigger condition"
906
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
907
 
908
+ #: includes/functions.old.php:706 includes/functions.php:716
909
  msgid "Trigger once"
910
  msgstr "Sproži enkrat"
911
 
912
+ #: includes/functions.old.php:708 includes/functions.php:718
913
  msgid "Trigger animation only once"
914
  msgstr "Sproži animacijo samo enkrat"
915
 
916
+ #: includes/functions.old.php:750 includes/functions.old.php:2453
917
+ #: includes/functions.old.php:2470 includes/functions.php:760
918
+ #: includes/functions.php:2465 includes/functions.php:2482
919
  msgid "Tracking is globally disabled"
920
  msgstr "Sledenje je globalno onemogočeno"
921
 
922
+ #: includes/functions.old.php:754 includes/functions.old.php:2457
923
+ #: includes/functions.old.php:2474 includes/functions.php:764
924
+ #: includes/functions.php:2469 includes/functions.php:2486
925
  msgid "Tracking for this block is disabled"
926
  msgstr "Sledenje za ta blok je onemogočeno"
927
 
928
+ #: includes/functions.old.php:761 includes/functions.php:771
929
  msgid "Double click to toggle controls in public reports"
930
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
931
 
932
+ #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3388
933
+ #: settings.php:3424 settings.php:3466 strings.php:218
934
  msgid "Loading..."
935
  msgstr "Nalagam..."
936
 
937
+ #: includes/functions.old.php:788 includes/functions.php:798
938
  msgid ""
939
  "Clear statistics data for the selected range - clear both dates to delete "
940
  "all data for this block"
942
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
943
  "brisanje vseh podatkov za ta blok"
944
 
945
+ #: includes/functions.old.php:792 includes/functions.php:802
946
  msgid "Auto refresh data for the selected range every 60 seconds"
947
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
948
 
949
+ #: includes/functions.old.php:795 includes/functions.old.php:5262
950
+ #: includes/functions.php:805 includes/functions.php:5287
951
  msgid "Load data for last month"
952
  msgstr "Naloži podatke za zadnji mesec"
953
 
954
+ #: includes/functions.old.php:795 includes/functions.old.php:5262
955
+ #: includes/functions.php:805 includes/functions.php:5287
956
  msgid "Last Month"
957
  msgstr "Zadnji Mesec"
958
 
959
+ #: includes/functions.old.php:798 includes/functions.old.php:5265
960
+ #: includes/functions.php:808 includes/functions.php:5290
961
  msgid "Load data for this month"
962
  msgstr "Naloži podatke za ta mesec"
963
 
964
+ #: includes/functions.old.php:798 includes/functions.old.php:5265
965
+ #: includes/functions.php:808 includes/functions.php:5290
966
  msgid "This Month"
967
  msgstr "Ta Mesec"
968
 
969
+ #: includes/functions.old.php:801 includes/functions.old.php:5268
970
+ #: includes/functions.php:811 includes/functions.php:5293
971
  msgid "Load data for this year"
972
  msgstr "Naloži podatke za to leto"
973
 
974
+ #: includes/functions.old.php:801 includes/functions.old.php:5268
975
+ #: includes/functions.php:811 includes/functions.php:5293
976
  msgid "This Year"
977
  msgstr "To Leto"
978
 
979
+ #: includes/functions.old.php:804 includes/functions.old.php:5271
980
+ #: includes/functions.php:814 includes/functions.php:5296
981
  msgid "Load data for the last 15 days"
982
  msgstr "Naloži podatke za zadnjih 15 dni"
983
 
984
+ #: includes/functions.old.php:807 includes/functions.old.php:5274
985
+ #: includes/functions.php:817 includes/functions.php:5299
986
  msgid "Load data for the last 30 days"
987
  msgstr "Naloži podatke za zadnjih 30 dni"
988
 
989
+ #: includes/functions.old.php:810 includes/functions.old.php:5277
990
+ #: includes/functions.php:820 includes/functions.php:5302
991
  msgid "Load data for the last 90 days"
992
  msgstr "Naloži podatke za zadnjih 90 dni"
993
 
994
+ #: includes/functions.old.php:813 includes/functions.old.php:5280
995
+ #: includes/functions.php:823 includes/functions.php:5305
996
  msgid "Load data for the last 180 days"
997
  msgstr "Naloži podatke za zadnjih 180 dni"
998
 
999
+ #: includes/functions.old.php:816 includes/functions.old.php:5283
1000
+ #: includes/functions.php:826 includes/functions.php:5308
1001
  msgid "Load data for the last 365 days"
1002
  msgstr "Naloži podatke za zadnjih 365 dni"
1003
 
1004
+ #: includes/functions.old.php:826 includes/functions.old.php:5293
1005
+ #: includes/functions.php:836 includes/functions.php:5318
1006
  msgid "Load data for the selected range"
1007
  msgstr "Naloži podatke za izbrano obdobje"
1008
 
1009
+ #: includes/functions.old.php:842 includes/functions.php:852
1010
  msgid ""
1011
  "Import settings when saving - if checked, the encoded settings below will be "
1012
  "imported for this block"
1014
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1015
  "nastavitve spodaj uvozile za ta blok"
1016
 
1017
+ #: includes/functions.old.php:842 includes/functions.php:852
1018
  msgid "Import settings for block"
1019
  msgstr "Uvozi nastavitve za blok"
1020
 
1021
+ #: includes/functions.old.php:846 includes/functions.php:856
1022
  msgid ""
1023
  "Import block name when saving - if checked and 'Import settings for block' "
1024
  "is also checked, the name from encoded settings below will be imported for "
1028
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1029
  "uvozilo za ta blok"
1030
 
1031
+ #: includes/functions.old.php:846 includes/functions.php:856
1032
  msgid "Import block name"
1033
  msgstr "Uvozi ime bloka"
1034
 
1035
+ #: includes/functions.old.php:850 includes/functions.php:860
1036
  msgid "Saved settings for block"
1037
  msgstr "Shranjene nastavitve za blok"
1038
 
1039
+ #: includes/functions.old.php:863 includes/functions.php:873
1040
  msgid "Export / Import Ad Inserter Pro Settings"
1041
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1042
 
1043
+ #: includes/functions.old.php:873 includes/functions.php:883
1044
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1045
  msgstr ""
1046
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1047
  "bloke?"
1048
 
1049
+ #: includes/functions.old.php:875 includes/functions.php:885
1050
  msgid "Clear All Statistics Data"
1051
  msgstr "Pobriši Vse Podatke o Statistiki"
1052
 
1053
+ #: includes/functions.old.php:902 includes/functions.php:912
1054
  msgid "Toggle country/city editor"
1055
  msgstr "Preklopi urejevalnik držav/mest"
1056
 
1057
+ #: includes/functions.old.php:908 includes/functions.php:918
1058
  msgid "IP Addresses"
1059
  msgstr "IP Naslovi"
1060
 
1061
+ #: includes/functions.old.php:911 includes/functions.php:921
1062
  msgid "Toggle IP address editor"
1063
  msgstr "Preklopi urejevalnik IP nslovov"
1064
 
1065
+ #: includes/functions.old.php:914 includes/functions.php:924
1066
  msgid ""
1067
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1068
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1070
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1071
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1072
 
1073
+ #: includes/functions.old.php:918 includes/functions.php:928
1074
  msgid "Blacklist IP addresses"
1075
  msgstr "Črni seznam IP naslovov"
1076
 
1077
+ #: includes/functions.old.php:922 includes/functions.php:932
1078
  msgid "Whitelist IP addresses"
1079
  msgstr "Beli seznam IP naslovov"
1080
 
1081
+ #: includes/functions.old.php:933 includes/functions.php:943
1082
  msgid "Countries"
1083
  msgstr "Države"
1084
 
1085
+ #: includes/functions.old.php:934 includes/functions.php:944
1086
  msgid "Cities"
1087
  msgstr "Mesta"
1088
 
1089
+ #: includes/functions.old.php:938 includes/functions.old.php:2925
1090
+ #: includes/functions.php:948 includes/functions.php:2937
1091
  msgid "Toggle country editor"
1092
  msgstr "Preklopi urejevalnik držav"
1093
 
1094
+ #: includes/functions.old.php:941 includes/functions.php:951
1095
  msgid "Toggle city editor"
1096
  msgstr "Preklopi urejevalnik mest"
1097
 
1098
+ #: includes/functions.old.php:945 includes/functions.old.php:2928
1099
+ #: includes/functions.php:955 includes/functions.php:2940
1100
  msgid "Comma separated country ISO Alpha-2 codes"
1101
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1102
 
1103
+ #: includes/functions.old.php:949 includes/functions.php:959
1104
  msgid "Blacklist countries"
1105
  msgstr "Črni seznam držav"
1106
 
1107
+ #: includes/functions.old.php:953 includes/functions.php:963
1108
  msgid "Whitelist countries"
1109
  msgstr "Beli seznam držav"
1110
 
1111
+ #: includes/functions.old.php:1361 includes/functions.old.php:1608
1112
  #: includes/functions.php:1371 includes/functions.php:1618
1113
  msgid "Enter license key"
1114
  msgstr "Vnesite licenčni ključ"
1115
 
1116
  #. translators: %s: Ad Inserter Pro
1117
+ #: includes/functions.old.php:1367 includes/functions.php:1377
1118
  msgid ""
1119
  "%s license key is not set. Plugin functionality is limited and updates are "
1120
  "disabled."
1122
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1123
  "posodobitve onemogočene."
1124
 
1125
+ #: includes/functions.old.php:1379 includes/functions.old.php:1617
1126
  #: includes/functions.php:1389 includes/functions.php:1627
1127
  msgid "Check license key"
1128
  msgstr "Preverite licenčni ključ"
1129
 
1130
  #. translators: %s: Ad Inserter Pro
1131
+ #: includes/functions.old.php:1385 includes/functions.php:1395
1132
  msgid "Invalid %s license key."
1133
  msgstr "Neveljaven %s licenčni ključ."
1134
 
1135
  #. translators: %s: Ad Inserter Pro
1136
+ #: includes/functions.old.php:1394 includes/functions.php:1404
1137
  msgid "%s license expired. Plugin updates are disabled."
1138
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1139
 
1140
+ #: includes/functions.old.php:1395 includes/functions.php:1405
1141
  msgid "Renew license"
1142
  msgstr "Obnovite licenco"
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
+ #: includes/functions.old.php:1403 includes/functions.php:1413
1146
  msgid "%s license overused. Plugin updates are disabled."
1147
  msgstr ""
1148
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1149
 
1150
+ #: includes/functions.old.php:1404 includes/functions.php:1414
1151
  msgid "Manage licenses"
1152
  msgstr "Upravljajte z licencami"
1153
 
1154
+ #: includes/functions.old.php:1404 includes/functions.php:1414
1155
  msgid "Upgrade license"
1156
  msgstr "Nadgradite licenco"
1157
 
1158
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1159
+ #: includes/functions.old.php:1610 includes/functions.php:1620
1160
  msgid ""
1161
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1162
  "limited and updates are disabled."
1165
  "so omejene in posodobitve onemogočene."
1166
 
1167
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1168
+ #: includes/functions.old.php:1619 includes/functions.php:1629
1169
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1170
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1171
 
1172
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1173
+ #: includes/functions.old.php:1635 includes/functions.php:1645
1174
  msgid ""
1175
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1176
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1180
  "pogrešate. %3$s"
1181
 
1182
  #. translators: 1, 3: HTML tags, 2: percentage
1183
+ #: includes/functions.old.php:1642 includes/functions.php:1652
1184
  msgid ""
1185
  "During the license period and 30 days after the license has expired we offer "
1186
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1188
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1189
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1190
 
1191
+ #: includes/functions.old.php:1669 includes/functions.php:1679
1192
  msgid "Renew the licence"
1193
  msgstr "Obnovi licenco"
1194
 
1195
+ #: includes/functions.old.php:1671 includes/functions.php:1681
1196
  msgid "Update license status"
1197
  msgstr "Posodobi status licence"
1198
 
1199
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1200
+ #: includes/functions.old.php:1682 includes/functions.php:1692
1201
  msgid ""
1202
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1203
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1207
  "Nadgradite licenco %7$s"
1208
 
1209
  #. Translators: %s: HTML tag
1210
+ #: includes/functions.old.php:1704 includes/functions.php:1714
1211
  msgid "Warning: %s MaxMind IP geolocation database not found."
1212
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1213
 
1214
+ #: includes/functions.old.php:2255 includes/functions.php:2267
1215
  msgid "Geolocation"
1216
  msgstr "Geolokacija"
1217
 
1218
+ #: includes/functions.old.php:2259 includes/functions.php:2271
1219
+ #: settings.php:4045
1220
  msgid "Exceptions"
1221
  msgstr "Izjeme"
1222
 
1223
+ #: includes/functions.old.php:2264 includes/functions.php:2276
1224
  msgid "Multisite"
1225
  msgstr "Multisite"
1226
 
1227
+ #: includes/functions.old.php:2269 includes/functions.php:2281
1228
+ #: settings.php:4051
1229
  msgid "Tracking"
1230
  msgstr "Sledenje"
1231
 
1232
  #. translators: %d: days, hours, minutes
1233
+ #: includes/functions.old.php:2300 includes/functions.php:2312
1234
  msgid "Scheduled in %d days %d hours %d minutes"
1235
  msgstr "Planirano v %d dneh %d urah %d minutah"
1236
 
1237
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1238
  #. HTML code for long dash separator
1239
+ #: includes/functions.old.php:2309 includes/functions.php:2321
1240
  msgid "Active %s expires in %d days %d hours %d minutes"
1241
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1242
 
1243
+ #: includes/functions.old.php:2313 includes/functions.php:2325
1244
  msgid "Expired"
1245
  msgstr "Poteklo"
1246
 
1247
+ #: includes/functions.old.php:2321 includes/functions.php:2333
1248
+ #: settings.php:1383 settings.php:1398 settings.php:2040
1249
  msgid "and"
1250
  msgstr "in"
1251
 
1252
+ #: includes/functions.old.php:2324 includes/functions.php:2336
1253
  msgid "fallback"
1254
  msgstr "rezerva"
1255
 
1256
+ #: includes/functions.old.php:2325 includes/functions.php:2337
1257
  msgid "Block to be used when scheduling expires"
1258
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1259
 
1260
+ #: includes/functions.old.php:2350 includes/functions.php:2362
1261
  msgid "Load in iframe"
1262
  msgstr "Naloži v iframe-u"
1263
 
1264
+ #: includes/functions.old.php:2354 includes/functions.php:2366
1265
+ #: includes/placeholders.php:389
1266
  msgid "Width"
1267
  msgstr "Širina"
1268
 
1269
+ #: includes/functions.old.php:2355 includes/functions.php:2367
1270
  msgid "iframe width, empty means full width (100%)"
1271
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1272
 
1273
+ #: includes/functions.old.php:2361 includes/functions.php:2373
1274
+ #: includes/placeholders.php:384
1275
  msgid "Height"
1276
  msgstr "Višina"
1277
 
1278
+ #: includes/functions.old.php:2362 includes/functions.php:2374
1279
  msgid "iframe height, empty means adjust it to iframe content height"
1280
  msgstr ""
1281
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1282
 
1283
+ #: includes/functions.old.php:2369 includes/functions.php:2381
1284
  msgid "Ad label in iframe"
1285
  msgstr "Oznaka oglasa v iframe-u"
1286
 
1287
+ #: includes/functions.old.php:2374 includes/functions.php:2386
1288
  msgid "Preview iframe code"
1289
  msgstr "Predpreglej kodo iframe"
1290
 
1291
+ #: includes/functions.old.php:2374 includes/functions.php:2386
1292
+ #: includes/preview.php:1974 settings.php:1049 settings.php:2730
1293
  msgid "Preview"
1294
  msgstr "Predogled"
1295
 
1296
+ #: includes/functions.old.php:2388 includes/functions.php:2400
1297
+ #: settings.php:4052
1298
  msgid "Limits"
1299
  msgstr "Omejitve"
1300
 
1301
+ #: includes/functions.old.php:2393 includes/functions.old.php:4266
1302
+ #: includes/functions.old.php:4329 includes/functions.php:2405
1303
+ #: includes/functions.php:4278 includes/functions.php:4341 settings.php:2172
1304
  msgid "Ad Blocking"
1305
  msgstr "Blokiranje Oglasov"
1306
 
1307
  #. translators: 1, 2 and 3, 4: HTML tags
1308
+ #: includes/functions.old.php:2402 includes/functions.php:2414
1309
  msgid ""
1310
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1311
  "for tracking!"
1315
 
1316
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1317
  #. header
1318
+ #: includes/functions.old.php:2411 includes/functions.php:2423
1319
  msgid ""
1320
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1321
  "enabled and automatic insertion %6$s!"
1323
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1324
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1325
 
1326
+ #: includes/functions.old.php:2478 includes/functions.php:2490
1327
  msgid "Click fraud protection is globally disabled"
1328
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1329
 
1330
+ #: includes/functions.old.php:2482 includes/functions.php:2494
1331
  msgid "Max clicks per time period are not defined"
1332
  msgstr "Največje število klikov na časovno enoto ni definirano"
1333
 
1334
  #. Translators: Max n impressions
1335
+ #: includes/functions.old.php:2496 includes/functions.php:2508
1336
  msgid "General limits"
1337
  msgstr "Splošne omejitve"
1338
 
1339
  #. Translators: Max n impressions per x days
1340
+ #: includes/functions.old.php:2502 includes/functions.old.php:2514
1341
+ #: includes/functions.old.php:2599 includes/functions.php:2514
1342
+ #: includes/functions.php:2526 includes/functions.php:2611
1343
  msgid "Current value"
1344
  msgstr "Trenutna vrednost"
1345
 
1351
  #. Translators: Max n impressions per x days
1352
  #. Translators: Max n clicks
1353
  #. Translators: Max n clicks per x days
1354
+ #: includes/functions.old.php:2521 includes/functions.old.php:2531
1355
+ #: includes/functions.old.php:2550 includes/functions.old.php:2560
1356
+ #: includes/functions.old.php:2606 includes/functions.old.php:2615
1357
+ #: includes/functions.old.php:2633 includes/functions.old.php:2642
1358
+ #: includes/functions.php:2533 includes/functions.php:2543
1359
+ #: includes/functions.php:2562 includes/functions.php:2572
1360
+ #: includes/functions.php:2618 includes/functions.php:2627
1361
+ #: includes/functions.php:2645 includes/functions.php:2654 settings.php:1961
1362
  msgid "Max"
1363
  msgstr "Največ"
1364
 
1365
+ #: includes/functions.old.php:2522 includes/functions.php:2534
1366
  msgid ""
1367
  "Maximum number of impressions for this block. Empty means no general "
1368
  "impression limit."
1374
  #. Translators: Max n impressions per x days
1375
  #. Translators: Max n impressions
1376
  #. Translators: Max n impressions per x days
1377
+ #: includes/functions.old.php:2524 includes/functions.old.php:2534
1378
+ #: includes/functions.old.php:2609 includes/functions.old.php:2618
1379
+ #: includes/functions.php:2536 includes/functions.php:2546
1380
+ #: includes/functions.php:2621 includes/functions.php:2630
1381
  msgid "impression"
1382
  msgid_plural "impressions"
1383
  msgstr[0] "prikaz"
1385
  msgstr[2] "prikazi"
1386
  msgstr[3] "prikazov"
1387
 
1388
+ #: includes/functions.old.php:2532 includes/functions.php:2544
1389
  msgid ""
1390
  "Maximum number of impressions per time period. Empty means no time limit."
1391
  msgstr ""
1396
  #. Translators: Max n clicks per x days
1397
  #. Translators: Max n impressions per x days
1398
  #. Translators: Max n clicks per x days
1399
+ #: includes/functions.old.php:2538 includes/functions.old.php:2567
1400
+ #: includes/functions.old.php:2622 includes/functions.old.php:2649
1401
+ #: includes/functions.php:2550 includes/functions.php:2579
1402
+ #: includes/functions.php:2634 includes/functions.php:2661
1403
  msgid "per"
1404
  msgstr "na"
1405
 
1406
+ #: includes/functions.old.php:2539 includes/functions.old.php:2568
1407
+ #: includes/functions.php:2551 includes/functions.php:2580
1408
  msgid "Time period in days. Empty means no time limit."
1409
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1410
 
1413
  #. Translators: Max n impressions per x days
1414
  #. Translators: Max n clicks per x days
1415
  #. Translators: Don't show for x days
1416
+ #: includes/functions.old.php:2541 includes/functions.old.php:2570
1417
+ #: includes/functions.old.php:2625 includes/functions.old.php:2652
1418
+ #: includes/functions.old.php:2758 includes/functions.old.php:3086
1419
+ #: includes/functions.php:2553 includes/functions.php:2582
1420
+ #: includes/functions.php:2637 includes/functions.php:2664
1421
+ #: includes/functions.php:2770 includes/functions.php:3098 strings.php:199
1422
+ #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1423
+ #: strings.php:204
1424
  msgid "day"
1425
  msgid_plural "days"
1426
  msgstr[0] "dan"
1428
  msgstr[2] "dni"
1429
  msgstr[3] "dni"
1430
 
1431
+ #: includes/functions.old.php:2551 includes/functions.php:2563
1432
  msgid ""
1433
  "Maximum number of clicks on this block. Empty means no general click limit."
1434
  msgstr ""
1439
  #. Translators: Max n clicks per x days
1440
  #. Translators: Max n clicks
1441
  #. Translators: Max n clicks per x days
1442
+ #: includes/functions.old.php:2553 includes/functions.old.php:2563
1443
+ #: includes/functions.old.php:2636 includes/functions.old.php:2645
1444
+ #: includes/functions.old.php:4477 includes/functions.php:2565
1445
+ #: includes/functions.php:2575 includes/functions.php:2648
1446
+ #: includes/functions.php:2657 includes/functions.php:4489
1447
  msgid "click"
1448
  msgid_plural "clicks"
1449
  msgstr[0] "klik"
1451
  msgstr[2] "kliki"
1452
  msgstr[3] "klikov"
1453
 
1454
+ #: includes/functions.old.php:2561 includes/functions.php:2573
1455
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1456
  msgstr ""
1457
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1458
  "omejitev."
1459
 
1460
+ #: includes/functions.old.php:2586 includes/functions.php:2598
1461
  msgid "Individual visitor limits"
1462
  msgstr "Omejitve posameznih obiskovalcev"
1463
 
1464
+ #: includes/functions.old.php:2590 includes/functions.old.php:2592
1465
+ #: includes/functions.php:2602 includes/functions.php:2604
1466
  msgid ""
1467
  "When specified number of clicks on this block for a visitor will be reached "
1468
  "in the specified time period, all blocks that have click fraud protection "
1474
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1475
  "pred goljufijo s kliki."
1476
 
1477
+ #: includes/functions.old.php:2592 includes/functions.php:2604
1478
  msgid "Trigger click fraud protection"
1479
  msgstr "Sproži zaščito pred goljufijo s kliki"
1480
 
1481
+ #: includes/functions.old.php:2607 includes/functions.php:2619
1482
  msgid ""
1483
  "Maximum number of impressions of this block for each visitor. Empty means no "
1484
  "impression limit."
1486
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1487
  "pomeni brez omejitev prikazov."
1488
 
1489
+ #: includes/functions.old.php:2616 includes/functions.php:2628
1490
  msgid ""
1491
  "Maximum number of impressions per time period for each visitor. Empty means "
1492
  "no impression limit per time period for visitors."
1494
  "Največje število prikazov na časovno enoto za posameznega obiskovalca. "
1495
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1496
 
1497
+ #: includes/functions.old.php:2623 includes/functions.old.php:2650
1498
+ #: includes/functions.php:2635 includes/functions.php:2662
1499
  msgid ""
1500
  "Time period in days. Use decimal value (with decimal point) for shorter "
1501
  "periods. Empty means no time limit."
1503
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1504
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1505
 
1506
+ #: includes/functions.old.php:2634 includes/functions.php:2646
1507
  msgid ""
1508
  "Maximum number of clicks on this block for each visitor. Empty means no "
1509
  "click limit."
1511
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1512
  "brez omejitev klikov."
1513
 
1514
+ #: includes/functions.old.php:2643 includes/functions.php:2655
1515
  msgid ""
1516
  "Maximum number of clicks per time period for each visitor. Empty means no "
1517
  "click limit per time period for visitors."
1519
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1520
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1521
 
1522
+ #: includes/functions.old.php:2669 includes/functions.php:2681
1523
  msgid "When ad blocking is detected"
1524
  msgstr "Ko je blokiranje oglasov zaznano"
1525
 
1526
+ #: includes/functions.old.php:2678 includes/functions.php:2690
1527
  msgid "replacement"
1528
  msgstr "nadomestek"
1529
 
1530
+ #: includes/functions.old.php:2679 includes/functions.php:2691
1531
  msgid "Block to be shown when ad blocking is detected"
1532
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1533
 
1534
+ #: includes/functions.old.php:2680 includes/functions.php:2692
1535
  msgctxt "replacement"
1536
  msgid "None"
1537
  msgstr "Noben"
1538
 
1539
+ #: includes/functions.old.php:2697 includes/functions.old.php:5484
1540
+ #: includes/functions.php:2709 includes/functions.php:5509
1541
  msgid "Close button"
1542
  msgstr "Gumb Zapri"
1543
 
1544
+ #: includes/functions.old.php:2749 includes/functions.php:2761
1545
  msgid "Auto close after"
1546
  msgstr "Ssamodejno zapri po"
1547
 
1548
+ #: includes/functions.old.php:2750 includes/functions.php:2762
1549
  msgid ""
1550
  "Time in seconds in which the ad will automatically close. Leave empty to "
1551
  "disable auto closing."
1554
  "izključitev samodejnega zapiranja."
1555
 
1556
  #. Translators: Don't show for x days
1557
+ #: includes/functions.old.php:2755 includes/functions.php:2767
1558
  msgid "Don't show for"
1559
  msgstr "Ne prikaži"
1560
 
1561
+ #: includes/functions.old.php:2756 includes/functions.php:2768
1562
  msgid ""
1563
  "Time in days in which closed ad will not be shown again. Use decimal value "
1564
  "(with decimal point) for shorter time period or leave empty to show it again "
1569
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1570
 
1571
  #. Translators: Delay showing for x pageviews
1572
+ #: includes/functions.old.php:2776 includes/functions.php:2788
1573
  msgid "Delay showing for"
1574
  msgstr "Zakasni prikaz za"
1575
 
1576
+ #: includes/functions.old.php:2777 includes/functions.php:2789
1577
  msgid ""
1578
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1579
  "empty to insert the code for the first pageview."
1583
 
1584
  #. Translators: Delay showing for x pageviews
1585
  #. Translators: Show every x pageviews
1586
+ #: includes/functions.old.php:2779 includes/functions.old.php:2786
1587
+ #: includes/functions.php:2791 includes/functions.php:2798
1588
  msgid "pageview"
1589
  msgid_plural "pageviews"
1590
  msgstr[0] "ogled strani"
1593
  msgstr[3] "ogledov strani"
1594
 
1595
  #. Translators: Show every x pageviews
1596
+ #: includes/functions.old.php:2783 includes/functions.php:2795
1597
  msgid "Show every"
1598
  msgid_plural "Show every"
1599
  msgstr[0] "Prikaži vsak"
1601
  msgstr[2] "Prikaži vsake"
1602
  msgstr[3] "Prikaži vsakih"
1603
 
1604
+ #: includes/functions.old.php:2784 includes/functions.php:2796
1605
  msgid ""
1606
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1607
  "for every pageview."
1609
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1610
  "vstavljanje kode pri vsakem ogledu strani."
1611
 
1612
+ #: includes/functions.old.php:2803 includes/functions.php:2815
1613
  msgid "Lazy loading"
1614
  msgstr "Leno nalaganje"
1615
 
1616
  #. Translators: %s MaxMind
1617
+ #: includes/functions.old.php:2860 includes/functions.php:2872
1618
  msgid "This product includes GeoLite2 data created by %s"
1619
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1620
 
1621
+ #: includes/functions.old.php:2871 includes/functions.php:2883
1622
  msgid "IP geolocation database"
1623
  msgstr "Podatkovna baza za IP geolokacijo"
1624
 
1625
+ #: includes/functions.old.php:2874 includes/functions.php:2886
1626
  msgid "Select IP geolocation database."
1627
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1628
 
1629
+ #: includes/functions.old.php:2885 includes/functions.php:2897
1630
  msgid "Automatic database updates"
1631
  msgstr "Samodejna posodobitev podatkovne baze"
1632
 
1633
+ #: includes/functions.old.php:2888 includes/functions.php:2900
1634
  msgid ""
1635
  "Automatically download and update free GeoLite2 IP geolocation database by "
1636
  "MaxMind"
1638
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1639
  "podatkovno bazo MaxMind"
1640
 
1641
+ #: includes/functions.old.php:2896 includes/functions.php:2908
1642
  msgid "Database"
1643
  msgstr "Podatkovna baza"
1644
 
1645
+ #: includes/functions.old.php:2899 includes/functions.php:2911
1646
  msgid ""
1647
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1648
  "file"
1651
  "podatkovne baze"
1652
 
1653
  #. translators: %d: group number
1654
+ #: includes/functions.old.php:2917 includes/functions.php:2929
1655
  msgid "Group %d"
1656
  msgstr "Skupina %d"
1657
 
1658
+ #: includes/functions.old.php:2923 includes/functions.php:2935
1659
  msgid "countries"
1660
  msgstr "države"
1661
 
1662
+ #: includes/functions.old.php:2968 includes/functions.php:2980
1663
  msgid ""
1664
  "Enable impression and click tracking. You also need to enable tracking for "
1665
  "each block you want to track."
1667
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1668
  "vsak blok, ki bi ga radi sledili."
1669
 
1670
+ #: includes/functions.old.php:2975 includes/functions.php:2987
1671
  msgid "Generate report"
1672
  msgstr "Generiraj poročilo"
1673
 
1674
+ #: includes/functions.old.php:2983 includes/functions.php:2995
1675
  msgid "Impression and Click Tracking"
1676
  msgstr "Sledenje Prikazov in Klikov"
1677
 
1678
+ #: includes/functions.old.php:2984 includes/functions.php:2996
1679
+ #: settings.php:2618
1680
  msgctxt "ad blocking detection"
1681
  msgid "NOT ENABLED"
1682
  msgstr "NI OMOGOČENO"
1683
 
1684
+ #: includes/functions.old.php:3000 includes/functions.php:3012
1685
  msgid "Internal"
1686
  msgstr "Notranje"
1687
 
1688
+ #: includes/functions.old.php:3004 includes/functions.php:3016
1689
  msgid "Track impressions and clicks with internal tracking and statistics"
1690
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1691
 
1692
+ #: includes/functions.old.php:3009 includes/functions.php:3021
1693
  msgid "External"
1694
  msgstr "Zunanje"
1695
 
1696
+ #: includes/functions.old.php:3013 includes/functions.php:3025
1697
  msgid ""
1698
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1699
  "code installed)"
1701
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1702
  "kodo za sledenje)"
1703
 
1704
+ #: includes/functions.old.php:3018 includes/functions.php:3030
1705
  msgid "Track Pageviews"
1706
  msgstr "Sledi Ogledom Strani"
1707
 
1708
+ #: includes/functions.old.php:3024 includes/functions.php:3036
1709
  msgid "Track Pageviews by Device (as configured for viewports)"
1710
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1711
 
1712
+ #: includes/functions.old.php:3034 includes/functions.php:3046
1713
  msgid "Track for Logged in Users"
1714
  msgstr "Sledi za Prijavljene Upor."
1715
 
1716
+ #: includes/functions.old.php:3040 includes/functions.php:3052
1717
  msgid "Track impressions and clicks from logged in users"
1718
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1719
 
1720
+ #: includes/functions.old.php:3050 includes/functions.php:3062
1721
  msgid "Click Detection"
1722
  msgstr "Zaznavanje klikov"
1723
 
1724
+ #: includes/functions.old.php:3056 includes/functions.php:3068
1725
  msgid ""
1726
  "Standard method detects clicks only on banners with links, Advanced method "
1727
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1729
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1730
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1731
 
1732
+ #: includes/functions.old.php:3075 includes/functions.php:3087
1733
  msgid "Click fraud protection"
1734
  msgstr "Zaščita pred goljufijo s kliki"
1735
 
1736
+ #: includes/functions.old.php:3079 includes/functions.php:3091
1737
  msgid "Globally enable click fraud protection for selected blocks."
1738
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1739
 
1740
+ #: includes/functions.old.php:3085 includes/functions.php:3097
1741
  msgid "Protection time"
1742
  msgstr "Čas zaščite"
1743
 
1744
+ #: includes/functions.old.php:3086 includes/functions.php:3098
1745
  msgid ""
1746
  "Time period in days in which blocks with enabled click fraud protection will "
1747
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1750
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1751
  "za krajša obdobja."
1752
 
1753
+ #: includes/functions.old.php:3105 includes/functions.php:3117
1754
  msgid "Report header image"
1755
  msgstr "Slika v glavi poročila"
1756
 
1757
+ #: includes/functions.old.php:3108 includes/functions.php:3120
1758
  msgid ""
1759
  "Image or logo to be displayed in the header of the statistins report. "
1760
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1764
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1765
  "ponastavitev na privzeto sliko."
1766
 
1767
+ #: includes/functions.old.php:3109 includes/functions.php:3121 strings.php:230
1768
  msgid "Select or upload header image"
1769
  msgstr "Izberi ali naloži sliko glave"
1770
 
1771
+ #: includes/functions.old.php:3114 includes/functions.php:3126
1772
  msgid "Report header title"
1773
  msgstr "Naslov v glavi poročila"
1774
 
1775
+ #: includes/functions.old.php:3117 includes/functions.php:3129
1776
  msgid ""
1777
  "Title to be displayed in the header of the statistics report. Text or HTML "
1778
  "code, clear to reset to default text."
1780
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1781
  "pobrišite za ponastavitev na privzeto besedilo."
1782
 
1783
+ #: includes/functions.old.php:3122 includes/functions.php:3134
1784
  msgid "Report header description"
1785
  msgstr "Opis v glavi poročila"
1786
 
1787
+ #: includes/functions.old.php:3125 includes/functions.php:3137
1788
  msgid ""
1789
  "Description to be displayed in the header of the statistics report. Text or "
1790
  "HTML code, clear to reset to default text."
1792
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1793
  "pobrišite za ponastavitev na privzeto besedilo."
1794
 
1795
+ #: includes/functions.old.php:3130 includes/functions.php:3142
1796
  msgid "Report footer"
1797
  msgstr "Noga poročila"
1798
 
1799
+ #: includes/functions.old.php:3133 includes/functions.php:3145
1800
  msgid ""
1801
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1802
  "to default text."
1804
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1805
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1806
 
1807
+ #: includes/functions.old.php:3138 includes/functions.php:3150
1808
  msgid "Public report key"
1809
  msgstr "Ključ za javno poročilo"
1810
 
1811
+ #: includes/functions.old.php:3141 includes/functions.php:3153
1812
  msgid "String to generate unique report IDs. Clear to reset to default value."
1813
  msgstr ""
1814
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1815
  "privzeto vrednost."
1816
 
1817
+ #: includes/functions.old.php:3173 includes/functions.php:3185
1818
  msgid "Are you sure you want to clear all exceptions for block"
1819
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1820
 
1821
+ #: includes/functions.old.php:3174 includes/functions.php:3186
1822
+ #: settings.php:1152
1823
  msgid "Clear all exceptions for block"
1824
  msgstr "Pobriši vse izjeme za blok"
1825
 
1826
+ #: includes/functions.old.php:3181 includes/functions.php:3193
1827
  msgid "Are you sure you want to clear all exceptions?"
1828
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1829
 
1830
+ #: includes/functions.old.php:3181 includes/functions.php:3193
1831
  msgid "Clear all exceptions for all blocks"
1832
  msgstr "Pobriši vse izjeme za vse bloke"
1833
 
1834
+ #: includes/functions.old.php:3186 includes/functions.php:3198
1835
+ #: settings.php:3697 settings.php:4128
1836
  msgid "Type"
1837
  msgstr "Vrsta"
1838
 
1839
+ #: includes/functions.old.php:3204 includes/functions.php:3216
1840
  msgid "View"
1841
  msgstr "Poglej"
1842
 
1843
+ #: includes/functions.old.php:3205 includes/functions.old.php:3212
1844
+ #: includes/functions.old.php:3216 includes/functions.php:3217
1845
+ #: includes/functions.php:3224 includes/functions.php:3228
1846
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1286
1847
+ #: settings.php:3457
1848
  msgid "Edit"
1849
  msgstr "Uredi"
1850
 
1851
+ #: includes/functions.old.php:3235 includes/functions.php:3247
1852
  msgid "Are you sure you want to clear all exceptions for"
1853
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1854
 
1855
+ #: includes/functions.old.php:3236 includes/functions.php:3248
1856
  msgid "Clear all exceptions for"
1857
  msgstr "Pobriši vse izjeme za"
1858
 
1859
+ #: includes/functions.old.php:3249 includes/functions.php:3261
1860
  msgid "No exceptions"
1861
  msgstr "Brez izjem"
1862
 
1863
  #. translators: %s: Ad Inserter Pro
1864
+ #: includes/functions.old.php:3260 includes/functions.php:3272
1865
  msgid "%s options for network blogs"
1866
  msgstr "%s izbire za omrežne bloge"
1867
 
1868
  #. translators: %s: Ad Inserter Pro
1869
+ #: includes/functions.old.php:3265 includes/functions.php:3277
1870
  msgid "Enable %s widgets for sub-sites"
1871
  msgstr "Omogoči %s gradnik za pod-spletišča"
1872
 
1873
+ #: includes/functions.old.php:3265 includes/functions.php:3277
1874
  msgid "Widgets"
1875
  msgstr "Gradniki"
1876
 
1877
+ #: includes/functions.old.php:3270 includes/functions.php:3282
1878
  msgid "Enable PHP code processing for sub-sites"
1879
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1880
 
1881
+ #: includes/functions.old.php:3270 includes/functions.php:3282
1882
  msgid "PHP Processing"
1883
  msgstr "PHP Procesiranje"
1884
 
1885
  #. translators: %s: Ad Inserter Pro
1886
+ #: includes/functions.old.php:3275 includes/functions.php:3287
1887
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1888
  msgstr ""
1889
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1890
 
1891
+ #: includes/functions.old.php:3275 includes/functions.php:3287
1892
  msgid "Post/Page exceptions"
1893
  msgstr "Izjeme prispevkov/strani"
1894
 
1895
  #. translators: %s: Ad Inserter Pro
1896
+ #: includes/functions.old.php:3280 includes/functions.php:3292
1897
  msgid "Enable %s settings page for sub-sites"
1898
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1899
 
1900
+ #: includes/functions.old.php:3280 includes/functions.php:3292
1901
  msgid "Settings page"
1902
  msgstr "Stran z nastavitvami"
1903
 
1904
  #. translators: %s: Ad Inserter Pro
1905
+ #: includes/functions.old.php:3285 includes/functions.php:3297
1906
  msgid "Enable %s settings of main site to be used for all blogs"
1907
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1908
 
1909
+ #: includes/functions.old.php:3285 includes/functions.php:3297
1910
  msgid "Main site settings used for all blogs"
1911
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1912
 
1913
+ #: includes/functions.old.php:3296 includes/functions.php:3308
1914
+ #: settings.php:2617
1915
  msgid "Ad Blocking Detection"
1916
  msgstr "Zaznavanje Blokiranja Oglasov"
1917
 
1918
+ #: includes/functions.old.php:3302 includes/functions.php:3314
1919
  msgid ""
1920
  "Standard method is reliable but should be used only if Advanced method does "
1921
  "not work. Advanced method recreates files used for detection with random "
1927
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1928
  "dostopna"
1929
 
1930
+ #: includes/functions.old.php:3929 includes/functions.old.php:4019
1931
+ #: includes/functions.old.php:4039 includes/functions.php:3941
1932
+ #: includes/functions.php:4031 includes/functions.php:4051
1933
  msgid "AD BLOCKING"
1934
  msgstr "BLOKIRANJE OGLASOV"
1935
 
1936
+ #: includes/functions.old.php:3930 includes/functions.old.php:3970
1937
+ #: includes/functions.old.php:4013 includes/functions.old.php:4040
1938
+ #: includes/functions.php:3942 includes/functions.php:3982
1939
+ #: includes/functions.php:4025 includes/functions.php:4052
1940
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1941
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1942
 
1943
+ #: includes/functions.old.php:3933 includes/functions.old.php:4012
1944
+ #: includes/functions.old.php:4046 includes/functions.php:3945
1945
+ #: includes/functions.php:4024 includes/functions.php:4058
1946
  msgid "NO AD BLOCKING"
1947
  msgstr "NI BLOKIRANJA OGLASOV"
1948
 
1949
+ #: includes/functions.old.php:3969 includes/functions.old.php:3976
1950
+ #: includes/functions.php:3981 includes/functions.php:3988
1951
  msgid "AD BLOCKING REPLACEMENT"
1952
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1953
 
1954
+ #: includes/functions.old.php:4119 includes/functions.old.php:4328
1955
+ #: includes/functions.php:4131 includes/functions.php:4340
1956
  msgid "Pageviews"
1957
  msgstr "Ogledi strani"
1958
 
1959
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1960
  msgctxt "Version"
1961
  msgid "Unknown"
1962
  msgstr "Neznana"
1963
 
1964
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1965
  msgctxt "Times"
1966
  msgid "DISPLAYED"
1967
  msgstr "PRIKAZANO"
1968
 
1969
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1970
  msgid "No version"
1971
  msgstr "Brez različice"
1972
 
1973
+ #: includes/functions.old.php:4266 includes/functions.php:4278
1974
  msgctxt "Times"
1975
  msgid "BLOCKED"
1976
  msgstr "BLOKIRANO"
1977
 
1978
+ #: includes/functions.old.php:4328 includes/functions.php:4340
1979
  msgid "Impressions"
1980
  msgstr "Prikazi"
1981
 
1982
+ #: includes/functions.old.php:4329 includes/functions.old.php:4330
1983
+ #: includes/functions.old.php:4385 includes/functions.php:4341
1984
+ #: includes/functions.php:4342 includes/functions.php:4397
1985
  msgid "Clicks"
1986
  msgstr "Kliki"
1987
 
1988
+ #: includes/functions.old.php:4330 includes/functions.php:4342
1989
  msgid "events"
1990
  msgstr "dogodki"
1991
 
1992
+ #: includes/functions.old.php:4331 includes/functions.php:4343
1993
  msgid "Ad Blocking Share"
1994
  msgstr "Delež blokiranja oglasov"
1995
 
1996
  #. translators: CTR as Click Through Rate
1997
+ #: includes/functions.old.php:4331 includes/functions.old.php:4391
1998
+ #: includes/functions.php:4343 includes/functions.php:4403
1999
  msgid "CTR"
2000
  msgstr "CTR"
2001
 
2002
+ #: includes/functions.old.php:4473 includes/functions.php:4485
2003
  msgid "pageviews"
2004
  msgid_plural "pageviews"
2005
  msgstr[0] "ogled strani"
2007
  msgstr[2] "oglede strani"
2008
  msgstr[3] "ogledov strani"
2009
 
2010
+ #: includes/functions.old.php:4473 includes/functions.php:4485
2011
  msgid "impressions"
2012
  msgid_plural "impressions"
2013
  msgstr[0] "prikaz"
2015
  msgstr[2] "prikazi"
2016
  msgstr[3] "prikazov"
2017
 
2018
+ #: includes/functions.old.php:4477 includes/functions.php:4489
2019
  msgid "event"
2020
  msgid_plural "events"
2021
  msgstr[0] "dogodek"
2023
  msgstr[2] "dogodki"
2024
  msgstr[3] "dogodkov"
2025
 
2026
+ #: includes/functions.old.php:4572 includes/functions.php:4584
2027
  msgctxt "Pageviews / Impressions"
2028
  msgid "Average"
2029
  msgstr "Povprečni"
2030
 
2031
+ #: includes/functions.old.php:4593 includes/functions.php:4605
2032
  msgctxt "Ad Blocking / Clicks"
2033
  msgid "Average"
2034
  msgstr "Povprečno"
2035
 
2036
+ #: includes/functions.old.php:4617 includes/functions.php:4629
2037
  msgctxt "Ad Blocking Share / CTR"
2038
  msgid "Average"
2039
  msgstr "Povprečni"
2040
 
2041
  #. Translators: %s: Ad Inserter Pro
2042
+ #: includes/functions.old.php:4799 includes/functions.old.php:4891
2043
+ #: includes/functions.old.php:5207 includes/functions.php:4811
2044
+ #: includes/functions.php:4903 includes/functions.php:5232 strings.php:184
2045
  msgid "%s Report"
2046
  msgstr "%s Poročilo"
2047
 
2048
+ #: includes/functions.old.php:5113 includes/functions.php:5138
2049
  msgid "for last month"
2050
  msgstr "za zadnji mesec"
2051
 
2052
+ #: includes/functions.old.php:5118 includes/functions.php:5143
2053
  msgid "for this month"
2054
  msgstr "za ta mesec"
2055
 
2056
+ #: includes/functions.old.php:5123 includes/functions.php:5148
2057
  msgid "for this year"
2058
  msgstr "za to leto"
2059
 
2060
+ #: includes/functions.old.php:5128 includes/functions.php:5153
2061
  msgid "for the last 15 days"
2062
  msgstr "za zadnjih 15 dni"
2063
 
2064
+ #: includes/functions.old.php:5133 includes/functions.php:5158
2065
  msgid "for the last 30 days"
2066
  msgstr "za zadnjih 30 dni"
2067
 
2068
+ #: includes/functions.old.php:5138 includes/functions.php:5163
2069
  msgid "for the last 90 days"
2070
  msgstr "za zadnjih 90 dni"
2071
 
2072
+ #: includes/functions.old.php:5143 includes/functions.php:5168
2073
  msgid "for the last 180 days"
2074
  msgstr "za zadnjih 180 dni"
2075
 
2076
+ #: includes/functions.old.php:5148 includes/functions.php:5173
2077
  msgid "for the last 365 days"
2078
  msgstr "za zadnjih 365 dni"
2079
 
2080
+ #: includes/functions.php:519
2081
+ msgid "Pin list"
2082
+ msgstr "Pripni seznam"
2083
+
2084
  #: includes/placeholders.php:20
2085
  msgid "Custom"
2086
  msgstr "Po meri"
2105
  msgid "Placeholder"
2106
  msgstr "Polnilo"
2107
 
2108
+ #: includes/placeholders.php:363 settings.php:896 settings.php:4129
2109
  msgid "Size"
2110
  msgstr "Velikost"
2111
 
2238
  msgid "Ad Blocking Detected Message Preview"
2239
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2240
 
2241
+ #: includes/preview-adb.php:348 settings.php:2743
2242
  msgid "Message CSS"
2243
  msgstr "CSS sporočila"
2244
 
2245
+ #: includes/preview-adb.php:353 settings.php:2751
2246
  msgid "Overlay CSS"
2247
  msgstr "CSS prevleke"
2248
 
2282
  msgid "background"
2283
  msgstr "ozadje"
2284
 
2285
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1247
2286
  msgid "Alignment"
2287
  msgstr "Poravnava"
2288
 
2427
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2428
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2429
 
2430
+ #: settings.php:172 settings.php:1136
2431
  msgid ""
2432
  "Settings for individual exceptions have been updated. Please check all "
2433
  "blocks that have exceptions and and then save settings."
2435
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
2436
  "bloke, ki imajo izjeme in potem shranite nastavitve."
2437
 
2438
+ #: settings.php:214
2439
  msgid "Online documentation"
2440
  msgstr "Spletna Dokumentacija"
2441
 
2442
+ #: settings.php:218 settings.php:732 settings.php:2139
2443
  msgid "Show AdSense ad units"
2444
  msgstr "Pokaži oglasne enote AdSense"
2445
 
2446
+ #: settings.php:223
2447
  msgid "Edit ads.txt file"
2448
  msgstr "Uredi datoteko ads.txt"
2449
 
2450
+ #: settings.php:226 settings.php:1079
2451
  msgid "Check theme for available positions for automatic insertion"
2452
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2453
 
2454
+ #: settings.php:228
2455
  msgid "List all blocks"
2456
  msgstr "Izpiši seznam vseh blokov"
2457
 
2458
+ #: settings.php:235
2459
  msgid "Loaded plugin JavaScript file version"
2460
  msgstr "Naložena različica JavaScript datoteke vtičnika"
2461
 
2462
  #. translators: %s: HTML tags
2463
+ #: settings.php:237
2464
  msgid ""
2465
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2466
  "due to inappropriate caching."
2468
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
2469
  "zaradi nepravilnega predpomnjenja."
2470
 
2471
+ #: settings.php:238
2472
  msgid ""
2473
  "Missing version parameter of the JavaScript file, probably due to "
2474
  "inappropriate caching."
2476
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2477
  "predpomnjenja."
2478
 
2479
+ #: settings.php:239
2480
  msgid ""
2481
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2482
  "caching."
2484
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
2485
  "zaradi nepravilnega predpomnjenja."
2486
 
2487
+ #: settings.php:240 settings.php:251
2488
  msgid ""
2489
  "Please delete browser's cache and all other caches used and then reload this "
2490
  "page."
2492
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
2493
  "potem na novo naložite to stran."
2494
 
2495
+ #: settings.php:246
2496
  msgid "Loaded plugin CSS file version"
2497
  msgstr "Naložena različica CSS datoteke vtičnika"
2498
 
2499
  #. translators: %s: HTML tags
2500
+ #: settings.php:248
2501
  msgid ""
2502
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2503
  "inappropriate caching."
2505
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
2506
  "nepravilnega predpomnjenja."
2507
 
2508
+ #: settings.php:249
2509
  msgid ""
2510
  "Missing version parameter of the CSS file, probably due to inappropriate "
2511
  "caching."
2513
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2514
  "predpomnjenja."
2515
 
2516
+ #: settings.php:250
2517
  msgid ""
2518
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2519
  msgstr ""
2520
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
2521
  "nepravilnega predpomnjenja."
2522
 
2523
+ #: settings.php:257 settings.php:269
2524
  msgid "WARNING"
2525
  msgstr "OPOZORILO"
2526
 
2527
  #. translators: %s: HTML tags
2528
+ #: settings.php:259
2529
  msgid "Page may %s not be loaded properly. %s"
2530
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
2531
 
2532
+ #: settings.php:260
2533
  msgid ""
2534
  "Check ad blocking software that may block CSS, JavaScript or image files."
2535
  msgstr ""
2536
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
2537
  "JavaScript ali slikovne datoteke."
2538
 
2539
+ #: settings.php:269
2540
  msgid ""
2541
+ "To disable debugging functions and to enable insertions go to tab [*] / tab "
2542
+ "Debugging"
2543
  msgstr ""
2544
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
2545
+ "na zavihek [*] / zavihek Razhroščevanje"
2546
 
2547
+ #: settings.php:271
2548
  msgid "Debugging functions enabled - some code is not inserted"
2549
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
2550
 
2551
+ #: settings.php:288
2552
  msgid "Group name"
2553
  msgstr "Ime skupine"
2554
 
2555
+ #: settings.php:289
2556
  msgid "Option name"
2557
  msgstr "Ime različice"
2558
 
2559
+ #: settings.php:295
2560
  msgid "Share"
2561
  msgstr "Delež"
2562
 
2563
+ #: settings.php:298
2564
  msgid ""
2565
  "Option share in percents - 0 means option is disabled, if share for one "
2566
  "option is not defined it will be calculated automatically. Leave all share "
2570
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
2571
  "prazne za enakomerno porazdelitev deležev različic."
2572
 
2573
+ #: settings.php:301
2574
  msgid "Time"
2575
  msgstr "Čas"
2576
 
2577
+ #: settings.php:304
2578
  msgid ""
2579
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2580
  "Leave all time fields empty for no timed rotation."
2582
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
2583
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
2584
 
2585
+ #: settings.php:456
2586
  msgid "General Settings"
2587
  msgstr "Splošne Nastavitve"
2588
 
2589
+ #: settings.php:680 settings.php:2470 settings.php:2537 settings.php:2723
2590
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2591
  msgstr ""
2592
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2593
 
2594
+ #: settings.php:687
2595
  msgid "Toggle tools"
2596
  msgstr "Preklopi orodja"
2597
 
2598
+ #: settings.php:695
2599
  msgid "Process PHP code in block"
2600
  msgstr "Procesiraj PHP kodo v bloku"
2601
 
2602
+ #: settings.php:702
2603
  msgid "Disable insertion of this block"
2604
  msgstr "Onemogoči vstavljanje tega bloka"
2605
 
2606
+ #: settings.php:714
2607
  msgid "Toggle code generator"
2608
  msgstr "Preklopi generator kode"
2609
 
2610
+ #: settings.php:718
2611
  msgid "Toggle rotation editor"
2612
  msgstr "Preklopi urejevalnik rotacije"
2613
 
2614
+ #: settings.php:722
2615
  msgid "Open visual HTML editor"
2616
  msgstr "Odpri vizualni HTML urejevalnik"
2617
 
2618
+ #: settings.php:741
2619
  msgid "Clear block"
2620
  msgstr "Počisti blok"
2621
 
2622
+ #: settings.php:746 settings.php:4001
2623
  msgid "Copy block"
2624
  msgstr "Kopiraj blok"
2625
 
2626
+ #: settings.php:750
2627
  msgid "Paste name"
2628
  msgstr "Prilepi ime"
2629
 
2630
+ #: settings.php:754
2631
  msgid "Paste code"
2632
  msgstr "Prilepi kodo"
2633
 
2634
+ #: settings.php:758
2635
  msgid "Paste settings"
2636
  msgstr "Prilepi nastavitve"
2637
 
2638
+ #: settings.php:762
2639
  msgid "Paste block (name, code and settings)"
2640
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2641
 
2642
+ #: settings.php:781
2643
  msgid "Rotation groups"
2644
  msgstr "Skupine za rotacijo"
2645
 
2646
+ #: settings.php:785
2647
  msgid "Remove option"
2648
  msgstr "Odstrani različico"
2649
 
2650
+ #: settings.php:789
2651
  msgid "Add option"
2652
  msgstr "Dodaj različico"
2653
 
2654
+ #: settings.php:804
2655
  msgid "Import code"
2656
  msgstr "Uvozi kodo"
2657
 
2658
+ #: settings.php:808
2659
  msgid "Generate code"
2660
  msgstr "Generiraj kodo"
2661
 
2662
+ #: settings.php:813
2663
  msgid "Banner"
2664
  msgstr "Pasica"
2665
 
2666
+ #: settings.php:824
2667
  msgid "Image"
2668
  msgstr "Slika"
2669
 
2670
+ #: settings.php:832
2671
  msgid "Link"
2672
  msgstr "Povezava"
2673
 
2674
+ #: settings.php:843
2675
  msgid "Open link in a new tab"
2676
  msgstr "Odpri povezavo v novem zavihku"
2677
 
2678
+ #: settings.php:844
2679
  msgid "Select Image"
2680
  msgstr "Izberi Sliko"
2681
 
2682
+ #: settings.php:845
2683
  msgid "Select Placeholder"
2684
  msgstr "Izberi Polnilo"
2685
 
2686
+ #: settings.php:857
2687
  msgid "Comment"
2688
  msgstr "Komentar"
2689
 
2690
+ #: settings.php:866
2691
  msgctxt "AdSense"
2692
  msgid "Publisher ID"
2693
  msgstr "ID založnika"
2694
 
2695
+ #: settings.php:875
2696
  msgctxt "AdSense"
2697
  msgid "Ad Slot ID"
2698
  msgstr "ID mesta"
2699
 
2700
+ #: settings.php:884
2701
  msgid "Ad Type"
2702
  msgstr "Vrsta"
2703
 
2704
+ #: settings.php:908
2705
  msgid "AMP Ad"
2706
  msgstr "AMP Oglas"
2707
 
2708
+ #: settings.php:925
2709
  msgid "Show ad units from your AdSense account"
2710
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2711
 
2712
+ #: settings.php:925
2713
  msgid "AdSense ad units"
2714
  msgstr "Oglasne enote AdSense"
2715
 
2716
+ #: settings.php:942
2717
  msgctxt "AdSense"
2718
  msgid "Layout"
2719
  msgstr "Postavitev"
2720
 
2721
+ #: settings.php:951
2722
  msgctxt "AdSense"
2723
  msgid "Layout Key"
2724
  msgstr "Ključ postavitve"
2725
 
2726
+ #: settings.php:961
2727
  msgid "Full width"
2728
  msgstr "Celotna širina"
2729
 
2730
+ #: settings.php:963
2731
  msgctxt "Full width"
2732
  msgid "Enabled"
2733
  msgstr "Omogočena"
2734
 
2735
+ #: settings.php:964
2736
  msgctxt "Full width"
2737
  msgid "Disabled"
2738
  msgstr "Onemogočena"
2739
 
2740
+ #: settings.php:1045
2741
  msgid ""
2742
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2743
  "Cookie or Referer (domain)"
2745
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2746
  "parametrov, Piškotkov ali napotiteljev (domen)"
2747
 
2748
+ #: settings.php:1045
2749
  msgid "Lists"
2750
  msgstr "Seznami"
2751
 
2752
+ #: settings.php:1046
2753
  msgid "Widget, Shortcode and PHP function call"
2754
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2755
 
2756
+ #: settings.php:1046
2757
  msgid "Manual"
2758
  msgstr "Ročno"
2759
 
2760
+ #: settings.php:1047
2761
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2762
  msgstr ""
2763
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2764
 
2765
+ #: settings.php:1047
2766
  msgid "Devices"
2767
  msgstr "Naprave"
2768
 
2769
+ #: settings.php:1048
2770
  msgid ""
2771
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2772
  "feeds), Filter, Scheduling, General tag"
2774
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2775
  "RSS), Filter, Urnik, Splošna oznaka"
2776
 
2777
+ #: settings.php:1048
2778
  msgid "Misc"
2779
  msgstr "Razno"
2780
 
2781
+ #: settings.php:1049
2782
  msgid "Preview code and alignment"
2783
  msgstr "Predogled kode in poravnave"
2784
 
2785
+ #: settings.php:1052 settings.php:2123
2786
  msgid ""
2787
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2788
  "editor is active before saving settings."
2790
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2791
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2792
 
2793
+ #: settings.php:1054
2794
  msgid "Save All Settings"
2795
  msgstr "Shrani Vse Nastavitve"
2796
 
2797
+ #: settings.php:1065 settings.php:1066
2798
  msgid "Enable insertion on posts"
2799
  msgstr "Omogoči vstavljanje na prispevkih"
2800
 
2801
+ #: settings.php:1066 settings.php:3269
2802
  msgid "Posts"
2803
  msgstr "Prispevki"
2804
 
2805
+ #: settings.php:1070 settings.php:1071
2806
  msgid ""
2807
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2808
  "page or theme homepage (available positions may depend on hooks used by the "
2812
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2813
  "lahko odvisni od ročic, ki jih tema uporablja)"
2814
 
2815
+ #: settings.php:1071 settings.php:3271
2816
  msgid "Homepage"
2817
  msgstr "Domača stran"
2818
 
2819
+ #: settings.php:1075 settings.php:1076
2820
  msgid "Enable insertion on category blog pages (including sub-pages)"
2821
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2822
 
2823
+ #: settings.php:1076 settings.php:3272
2824
  msgid "Category pages"
2825
  msgstr "Strani kategorij"
2826
 
2827
+ #: settings.php:1086 settings.php:1087
2828
  msgid "Enable insertion on static pages"
2829
  msgstr "Omogoči vstavljanje na statičnih straneh"
2830
 
2831
+ #: settings.php:1087 settings.php:3270
2832
  msgid "Static pages"
2833
  msgstr "Statične strani"
2834
 
2835
+ #: settings.php:1091 settings.php:1092
2836
  msgid "Enable insertion on search blog pages"
2837
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2838
 
2839
+ #: settings.php:1092 settings.php:3274
2840
  msgid "Search pages"
2841
  msgstr "Iskalne strani"
2842
 
2843
+ #: settings.php:1096 settings.php:1097
2844
  msgid "Enable insertion on tag or archive blog pages"
2845
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2846
 
2847
+ #: settings.php:1100
2848
  msgid "Toggle settings for default insertion and list of individual exceptions"
2849
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2850
 
2851
+ #: settings.php:1112
2852
  msgid ""
2853
  "Enable individual post/page exceptions for insertion of this block. They can "
2854
  "be configured on the individual post/page editor page (in the settings below "
2858
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2859
  "nastavitvah pod urejevalnikom)."
2860
 
2861
+ #: settings.php:1113
2862
  msgid ""
2863
  "Enable individual post/page exceptions for insertion of this block. When "
2864
  "enabled they can be configured on the individual post/page editor page (in "
2868
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2869
  "strani (v nastavitvah pod urejevalnikom)."
2870
 
2871
+ #: settings.php:1113
2872
  msgid "Use exceptions for individual posts or pages to change insertion"
2873
  msgstr ""
2874
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2875
 
2876
  #. Translators: Enabled means...
2877
+ #: settings.php:1121
2878
  msgid ""
2879
  "means the insertion for this block is enabled by default and disabled for "
2880
  "exceptions."
2883
  "izjeme."
2884
 
2885
  #. Translators: Disabled means...
2886
+ #: settings.php:1122
2887
  msgid ""
2888
  "means the insertion for this block is disabled by default and enabled for "
2889
  "exceptions."
2891
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2892
  "izjeme."
2893
 
2894
+ #: settings.php:1123
2895
  msgid ""
2896
  "When individual post/page exceptions are enabled they can be configured on "
2897
  "the individual post/page editor page (in the settings below the editor)."
2900
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2901
  "urejevalnikom)."
2902
 
2903
+ #: settings.php:1131
2904
  msgid ""
2905
  "No exception for post or static page defined. Block will not be inserted."
2906
  msgstr ""
2907
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2908
 
2909
+ #: settings.php:1149
2910
  msgctxt "post"
2911
  msgid "Type"
2912
  msgstr "Vrsta"
2913
 
2914
  #. translators: %d: block number
2915
+ #: settings.php:1151
2916
  msgid "Are you sure you want to clear all exceptions for block %d?"
2917
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2918
 
2919
+ #: settings.php:1178 settings.php:1326 settings.php:1915
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2920
  msgid "Insertion"
2921
  msgstr "Vstavljanje"
2922
 
2923
+ #: settings.php:1216
2924
  msgid ""
2925
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2926
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2936
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2937
  "število pomeni štetje z nasprotne smeri"
2938
 
2939
+ #: settings.php:1217
2940
  msgid ""
2941
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2942
  "means every N images, empty means all images, 0 means random image, value "
2951
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2952
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2953
 
2954
+ #: settings.php:1230
2955
  msgid ""
2956
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2957
  "numbers, %N means every N excerpts, empty means all excerpts"
2960
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2961
  "izvlečki"
2962
 
2963
+ #: settings.php:1231
2964
  msgid ""
2965
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2966
  "numbers, %N means every N posts, empty means all posts"
2969
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2970
  "prispevki"
2971
 
2972
+ #: settings.php:1232
2973
  msgid ""
2974
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2975
  "numbers, %N means every N comments, empty means all comments"
2978
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2979
  "vsi komentarji"
2980
 
2981
+ #: settings.php:1239
2982
  msgid "Toggle paragraph counting settings"
2983
  msgstr "Preklopi nastavitve za štetje odstavkov"
2984
 
2985
+ #: settings.php:1240
2986
  msgid "Toggle paragraph clearance settings"
2987
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2988
 
2989
+ #: settings.php:1243
2990
  msgid "Toggle insertion filter settings"
2991
  msgstr "Preklopi nastavitve filtra vstavljanja"
2992
 
2993
+ #: settings.php:1261
2994
  msgid "Toggle insertion and alignment icons"
2995
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2996
 
2997
+ #: settings.php:1275
2998
  msgid "Custom CSS code for the wrapping div"
2999
  msgstr "CSS koda po meri za div za ovijanje"
3000
 
3001
+ #: settings.php:1278 settings.php:1279 settings.php:1280 settings.php:1281
3002
+ #: settings.php:1282 settings.php:1283
3003
  msgid "CSS code for the wrapping div, click to edit"
3004
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3005
 
3006
+ #: settings.php:1296
3007
  msgid "HTML element"
3008
  msgstr "HTML element"
3009
 
3010
+ #: settings.php:1309
3011
  msgid "HTML element selector or comma separated list of selectors"
3012
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3013
 
3014
+ #: settings.php:1315 settings.php:2628
3015
  msgid "Action"
3016
  msgstr "Akcija"
3017
 
3018
+ #: settings.php:1327
3019
  msgid ""
3020
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3021
  "Server-side insertion inserts block when the page is generated but needs "
3025
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3026
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3027
 
3028
+ #: settings.php:1337
3029
  msgid "JavaScript code position"
3030
  msgstr "Položaj JavaScript kode"
3031
 
3032
+ #: settings.php:1338
3033
  msgid ""
3034
  "Page position where the JavaScript code for client-side insertion will be "
3035
  "inserted. Should be after the HTML element if not waiting for DOM ready."
3038
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3039
  "DOM."
3040
 
3041
+ #: settings.php:1353
3042
  msgid "Count"
3043
  msgstr "Štej"
3044
 
3045
+ #: settings.php:1359
3046
  msgid "paragraphs with tags"
3047
  msgstr "odstavke z značkami"
3048
 
3049
+ #: settings.php:1365
3050
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3051
  msgstr ""
3052
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3053
 
3054
+ #: settings.php:1374
3055
  msgid "that have between"
3056
  msgstr "ki imajo med"
3057
 
3058
+ #: settings.php:1380
3059
  msgid "Minimum number of paragraph words, leave empty for no limit"
3060
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3061
 
3062
+ #: settings.php:1389
3063
  msgid "Maximum number of paragraph words, leave empty for no limit"
3064
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3065
 
3066
+ #: settings.php:1392 settings.php:2042
3067
  msgid "words"
3068
  msgstr "besed"
3069
 
3070
+ #: settings.php:1407 settings.php:1465 settings.php:1528 settings.php:1554
3071
  msgid "Comma separated texts"
3072
  msgstr "Z vejico ločena besedila"
3073
 
3074
+ #: settings.php:1420
 
 
 
 
 
3075
  msgid ""
3076
+ "Count also paragraphs inside these elements - defined on general plugin "
3077
+ "settings page - tab [*] / tab General"
3078
  msgstr ""
3079
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
3080
+ "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3081
+
3082
+ #. Translators: %s: HTML tags
3083
+ #: settings.php:1425
3084
+ msgid "Count inside %s elements"
3085
+ msgstr "Štej znotraj elementov %s"
3086
+
3087
+ #. translators: inside [HTML tags] elements that contain
3088
+ #: settings.php:1437
3089
+ msgid "inside"
3090
+ msgstr "znotraj"
3091
+
3092
+ #: settings.php:1443
3093
+ msgid "Comma separated HTML tag names of container elements"
3094
+ msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3095
 
3096
+ #. translators: inside [HTML tags] elements that contain
3097
+ #: settings.php:1452
3098
+ msgid "elements that"
3099
+ msgstr "elementov, ki"
3100
 
3101
+ #: settings.php:1478
3102
+ msgid "Minimum number of paragraphs"
3103
+ msgstr "Najmanjše število odstavkov"
3104
+
3105
+ #: settings.php:1496
3106
  msgid "Minimum number of words in paragraphs above"
3107
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3108
 
3109
+ #: settings.php:1502
3110
  msgid ""
3111
  "Used only with automatic insertion After paragraph and empty paragraph "
3112
  "numbers"
3114
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3115
  "številkami odstavkov"
3116
 
3117
+ #: settings.php:1513 settings.php:1539
3118
  msgid "In"
3119
  msgstr "V"
3120
 
3121
+ #: settings.php:1519
3122
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3123
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3124
 
3125
+ #: settings.php:1522
3126
  msgid "paragraphs above avoid"
3127
  msgstr "odstavkih zgoraj se izogni"
3128
 
3129
+ #: settings.php:1545
3130
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3131
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3132
 
3133
+ #: settings.php:1548
3134
  msgid "paragraphs below avoid"
3135
  msgstr "odstavkih spodaj se izogni"
3136
 
3137
+ #: settings.php:1564
3138
  msgid "If text is found"
3139
  msgstr "Če je besedilo najdeno"
3140
 
3141
+ #: settings.php:1571
3142
  msgid "check up to"
3143
  msgstr "preveri do"
3144
 
3145
+ #: settings.php:1579
3146
  msgctxt "check up to"
3147
  msgid "paragraphs"
3148
  msgstr "odstavkov"
3149
 
3150
+ #: settings.php:1595
3151
  msgid "Categories"
3152
  msgstr "Kategorije"
3153
 
3154
+ #: settings.php:1598
3155
  msgid "Toggle category editor"
3156
  msgstr "Preklopi urejevalnik kategorij"
3157
 
3158
+ #: settings.php:1601
3159
  msgid "Comma separated category slugs"
3160
  msgstr "Z vejico ločeni ključi kategorij"
3161
 
3162
+ #: settings.php:1605
3163
  msgid "Blacklist categories"
3164
  msgstr "Črni seznam kategorij"
3165
 
3166
+ #: settings.php:1609
3167
  msgid "Whitelist categories"
3168
  msgstr "Beli seznam kategorij"
3169
 
3170
+ #: settings.php:1621
3171
  msgid "Tags"
3172
  msgstr "Oznake"
3173
 
3174
+ #: settings.php:1624
3175
  msgid "Toggle tag editor"
3176
  msgstr "Preklopi urejevalnik oznak"
3177
 
3178
+ #: settings.php:1627
3179
  msgid "Comma separated tag slugs"
3180
  msgstr "Z vejico ločeni ključi oznak"
3181
 
3182
+ #: settings.php:1631
3183
  msgid "Blacklist tags"
3184
  msgstr "Črni seznam oznak"
3185
 
3186
+ #: settings.php:1635
3187
  msgid "Whitelist tags"
3188
  msgstr "Beli seznam oznak"
3189
 
3190
+ #: settings.php:1647
3191
  msgid "Taxonomies"
3192
  msgstr "Taksonomije"
3193
 
3194
+ #: settings.php:1650
3195
  msgid "Toggle taxonomy editor"
3196
  msgstr "Preklopi urejevalnik taksonomij"
3197
 
3198
+ #: settings.php:1653
3199
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3200
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3201
 
3202
+ #: settings.php:1657
3203
  msgid "Blacklist taxonomies"
3204
  msgstr "Črni seznam taksonomij"
3205
 
3206
+ #: settings.php:1661
3207
  msgid "Whitelist taxonomies"
3208
  msgstr "Beli seznam taksonomij"
3209
 
3210
+ #: settings.php:1673
3211
  msgid "Post IDs"
3212
  msgstr "ID-ji prispevkov"
3213
 
3214
+ #: settings.php:1676
3215
  msgid "Toggle post/page ID editor"
3216
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3217
 
3218
+ #: settings.php:1679
3219
  msgid "Comma separated post/page IDs"
3220
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3221
 
3222
+ #: settings.php:1683
3223
  msgid "Blacklist IDs"
3224
  msgstr "Črni seznam ID-jev"
3225
 
3226
+ #: settings.php:1687
3227
  msgid "Whitelist IDs"
3228
  msgstr "Beli seznam ID-jev"
3229
 
3230
+ #: settings.php:1699
3231
  msgid "Urls"
3232
  msgstr "Url-ji"
3233
 
3234
+ #: settings.php:1702
3235
  msgid "Toggle url editor"
3236
  msgstr "Preklopi urejevalnik url-jev"
3237
 
3238
+ #: settings.php:1705
3239
  msgid ""
3240
  "Comma separated urls (page addresses) starting with / after domain name (e."
3241
  "g. /permalink-url, use only when you need to taget a specific url not "
3247
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3248
  "začetek*. *url-vzorec*, *url-konec)"
3249
 
3250
+ #: settings.php:1709
3251
  msgid "Blacklist urls"
3252
  msgstr "Črni seznam url-jev"
3253
 
3254
+ #: settings.php:1713
3255
  msgid "Whitelist urls"
3256
  msgstr "Beli seznam url-jev"
3257
 
3258
+ #: settings.php:1724
3259
  msgid "Url parameters"
3260
  msgstr "Url parametri"
3261
 
3262
+ #: settings.php:1728
3263
  msgid "Toggle url parameter and cookie editor"
3264
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3265
 
3266
+ #: settings.php:1731
3267
  msgid ""
3268
  "Comma separated url query parameters or cookies with optional values (use "
3269
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3272
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3273
  "'piškotek=vrednost')"
3274
 
3275
+ #: settings.php:1735
3276
  msgid "Blacklist url parameters"
3277
  msgstr "Črni seznam url parametrov"
3278
 
3279
+ #: settings.php:1739
3280
  msgid "Whitelist url parameters"
3281
  msgstr "Beli seznam url parametrov"
3282
 
3283
+ #: settings.php:1750
3284
  msgid "Referrers"
3285
  msgstr "Napotitelji"
3286
 
3287
+ #: settings.php:1753
3288
  msgid "Toggle referer editor"
3289
  msgstr "Preklopi urejevalnik napotiteljev"
3290
 
3291
+ #: settings.php:1756
3292
  msgid ""
3293
  "Comma separated domains, use # for no referrer, you can also use partial "
3294
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3296
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3297
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3298
 
3299
+ #: settings.php:1760
3300
  msgid "Blacklist referers"
3301
  msgstr "Črni seznam napotiteljev"
3302
 
3303
+ #: settings.php:1764
3304
  msgid "Whitelist referers"
3305
  msgstr "Beli seznam napotiteljev"
3306
 
3307
+ #: settings.php:1784
3308
  msgid "Enable widget for this block"
3309
  msgstr "Omogočite gradnik za ta blok"
3310
 
3311
+ #: settings.php:1796
3312
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3313
  msgstr ""
3314
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3315
 
3316
+ #: settings.php:1797 settings.php:4057
3317
  msgid "Shortcode"
3318
  msgstr "Kratka koda"
3319
 
3320
+ #: settings.php:1812
3321
  msgid ""
3322
  "Enable PHP function call to insert this block at any position in theme file. "
3323
  "If function is disabled for block it will return empty string."
3326
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3327
  "prazen niz."
3328
 
3329
+ #: settings.php:1813
3330
  msgid "PHP function"
3331
  msgstr "PHP funkcija"
3332
 
3333
+ #: settings.php:1828
3334
  msgid "Client-side device detection"
3335
  msgstr "Zaznavanje naprave na strani klienta"
3336
 
3337
+ #: settings.php:1829
3338
  msgid "Server-side device detection"
3339
  msgstr "Zaznavanje naprave na strani strežnika"
3340
 
3341
+ #: settings.php:1836
3342
  msgid "Use client-side detection to"
3343
  msgstr "Uporabi zaznavanje na strani klienta in"
3344
 
3345
+ #: settings.php:1838
3346
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3347
  msgstr ""
3348
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3349
 
3350
  #. Translators: only on (the following devices): viewport names (devices)
3351
  #. listed
3352
+ #: settings.php:1843
3353
  msgid "only on"
3354
  msgstr "samo na"
3355
 
3356
+ #: settings.php:1871
3357
  msgid "Device min width %s px"
3358
  msgstr "Najmanjša širina naprave %s px"
3359
 
3360
+ #: settings.php:1897
3361
  msgid "Use server-side detection to insert block only for"
3362
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3363
 
3364
+ #: settings.php:1916
3365
  msgid "Filter"
3366
  msgstr "Filter"
3367
 
3368
+ #: settings.php:1917
3369
  msgid "Word Count"
3370
  msgstr "Število Besed"
3371
 
3372
+ #: settings.php:1918 settings.php:4047
3373
  msgid "Scheduling"
3374
  msgstr "Urnik"
3375
 
3376
+ #: settings.php:1919
3377
  msgid "Display"
3378
  msgstr "Prikaz"
3379
 
3380
+ #: settings.php:1921 settings.php:2165
3381
  msgid "General"
3382
  msgstr "Splošno"
3383
 
3384
+ #: settings.php:1933
3385
  msgid "Old settings for AMP pages detected"
3386
  msgstr "Zaznane stare nastavitve za AMP strani"
3387
 
3388
+ #: settings.php:1933
3389
  msgid ""
3390
  "To insert different codes on normal and AMP pages separate them with "
3391
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3396
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3397
  "separatorja)."
3398
 
3399
+ #: settings.php:1933
3400
  msgid "AMP pages"
3401
  msgstr "AMP strani"
3402
 
3403
+ #: settings.php:1938
3404
  msgid "Enable insertion for Ajax requests"
3405
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3406
 
3407
+ #: settings.php:1938
3408
  msgid "Ajax requests"
3409
  msgstr "Ajax zahteve"
3410
 
3411
+ #: settings.php:1943
3412
  msgid "Enable insertion in RSS feeds"
3413
  msgstr "Omogoči vstavljanje v RSS virih"
3414
 
3415
+ #: settings.php:1943
3416
  msgid "RSS Feed"
3417
  msgstr "RSS Vir"
3418
 
3419
+ #: settings.php:1948
3420
  msgid "Enable insertion on page for Error 404: Page not found"
3421
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3422
 
3423
+ #: settings.php:1948
3424
  msgid "Error 404 page"
3425
  msgstr "Stran napake 404"
3426
 
3427
+ #: settings.php:1960
3428
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3429
  msgstr ""
3430
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3431
 
3432
+ #: settings.php:1961
3433
  msgid "insertions"
3434
  msgstr "vstavljanj"
3435
 
3436
+ #: settings.php:1963
3437
  msgid ""
3438
+ "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3439
+ "General)"
3440
  msgstr ""
3441
+ "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3442
+ "zavihek Splošno)"
3443
 
3444
+ #: settings.php:1966 settings.php:2334
3445
  msgid "Max blocks per page"
3446
  msgstr "Največ blokov na stran"
3447
 
3448
+ #: settings.php:1978
3449
  msgid "Insert for"
3450
  msgstr "Vstavi za"
3451
 
3452
+ #: settings.php:1986
3453
  msgid ""
3454
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3455
  "currently active). Might speed up insertion on content pages when "
3459
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3460
  "filter the_content večkrat klican."
3461
 
3462
+ #: settings.php:1989
3463
  msgid "Insert only in the loop"
3464
  msgstr "Vstavi samo v zanki"
3465
 
3466
+ #: settings.php:1995
3467
  msgid ""
3468
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3469
  msgstr ""
3470
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3471
  "Rocket"
3472
 
3473
+ #: settings.php:1995
3474
  msgid "Disable caching"
3475
  msgstr "Onemogoči predpomnjenje"
3476
 
3477
+ #: settings.php:2007
3478
  msgid "Filter insertions"
3479
  msgstr "Filtriraj vstavljanja"
3480
 
3481
+ #: settings.php:2010
3482
  msgid ""
3483
  "Filter multiple insertions by specifying wanted insertions for this block - "
3484
  "single number, comma separated numbers or %N for every N insertions - empty "
3490
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3491
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3492
 
3493
+ #: settings.php:2013
3494
  msgid "using"
3495
  msgstr "z uporabo"
3496
 
3497
+ #: settings.php:2032
3498
  msgid "Checked means specified calls are unwanted"
3499
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3500
 
3501
+ #: settings.php:2032
3502
  msgid "Invert filter"
3503
  msgstr "Obrni filter"
3504
 
3505
+ #: settings.php:2038
3506
  msgid "Post/Static page must have between"
3507
  msgstr "Prispevek/Statična stran mora imeti med"
3508
 
3509
+ #: settings.php:2039
3510
  msgid "Minimum number of post/static page words, leave empty for no limit"
3511
  msgstr ""
3512
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3513
  "omejitev"
3514
 
3515
+ #: settings.php:2041
3516
  msgid "Maximum number of post/static page words, leave empty for no limit"
3517
  msgstr ""
3518
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3519
  "omejitev"
3520
 
3521
+ #: settings.php:2054
3522
  msgid "days after publishing"
3523
  msgstr "dni po objavi"
3524
 
3525
+ #: settings.php:2056
3526
  msgid "Not available"
3527
  msgstr "Ni na razpolago"
3528
 
3529
+ #: settings.php:2069 settings.php:2326
3530
  msgid "Ad label"
3531
  msgstr "Oznaka oglasa"
3532
 
3533
+ #: settings.php:2089
3534
  msgid "General tag"
3535
  msgstr "Splošna oznaka"
3536
 
3537
+ #: settings.php:2093
3538
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3539
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3540
 
3541
  #. translators: %s: HTML tags
3542
+ #: settings.php:2102
3543
  msgid ""
3544
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3545
  "side device detection!"
3547
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3548
  "potrebna za zaznavanje naprave na strani klienta!"
3549
 
3550
+ #: settings.php:2114
3551
  msgid "Settings"
3552
  msgstr "Nastavitve"
3553
 
3554
+ #: settings.php:2117
3555
  msgid "Settings timestamp"
3556
  msgstr "Časovni žig nastavitev"
3557
 
3558
+ #: settings.php:2130
3559
  msgid "Are you sure you want to reset all settings?"
3560
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3561
 
3562
+ #: settings.php:2130
3563
  msgid "Reset All Settings"
3564
  msgstr "Ponastavi Vse Nastavitve"
3565
 
3566
+ #: settings.php:2166
3567
  msgid "Viewports"
3568
  msgstr "Pogledi"
3569
 
3570
+ #: settings.php:2167
3571
  msgid "Hooks"
3572
  msgstr "Ročice"
3573
 
3574
+ #: settings.php:2168
3575
  msgid "Header"
3576
  msgstr "Glava"
3577
 
3578
+ #: settings.php:2169 strings.php:30
3579
  msgid "Footer"
3580
  msgstr "Noga"
3581
 
3582
+ #: settings.php:2174
3583
  msgid "Debugging"
3584
  msgstr "Razhroščevanje"
3585
 
3586
+ #: settings.php:2184
3587
  msgid "Plugin priority"
3588
  msgstr "Prednost vtičnika"
3589
 
3590
+ #: settings.php:2192
3591
  msgid "Output buffering"
3592
  msgstr "Predpomnjenje izhoda"
3593
 
3594
+ #: settings.php:2195
3595
  msgid "Needed for position Above header but may not work with all themes"
3596
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3597
 
3598
+ #: settings.php:2203
3599
  msgid "Syntax highlighting theme"
3600
  msgstr "Tema za poudarjanje sintakse"
3601
 
3602
+ #: settings.php:2210
3603
  msgctxt "no syntax highlighting themes"
3604
  msgid "None"
3605
  msgstr "Brez"
3606
 
3607
+ #: settings.php:2211
3608
  msgid "No Syntax Highlighting"
3609
  msgstr "Brez Poudarjanja Sintakse"
3610
 
3611
+ #: settings.php:2213
3612
  msgctxt "syntax highlighting themes"
3613
  msgid "Light"
3614
  msgstr "Svetle"
3615
 
3616
+ #: settings.php:2228
3617
  msgctxt "syntax highlighting themes"
3618
  msgid "Dark"
3619
  msgstr "Temne"
3620
 
3621
+ #: settings.php:2254
3622
  msgid "Min. user role for ind. exceptions editing"
3623
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3624
 
3625
+ #: settings.php:2264
3626
  msgid "Disable caching for logged in administrators"
3627
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3628
 
3629
+ #: settings.php:2267
3630
  msgid ""
3631
  "Enabled means that logged in administrators will see non-cached (live) pages "
3632
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3634
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3635
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3636
 
3637
+ #: settings.php:2275
3638
  msgid "Sticky widget mode"
3639
  msgstr "Način za lepljive gradnike"
3640
 
3641
+ #: settings.php:2278
3642
  msgid ""
3643
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3644
  "mode works with most themes but may reload ads on page load."
3647
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3648
  "nalaganju strani."
3649
 
3650
+ #: settings.php:2286
3651
  msgid "Sticky widget top margin"
3652
  msgstr "Zgornji rob za lepljiv gradnik"
3653
 
3654
+ #: settings.php:2294
3655
  msgid "Dynamic blocks"
3656
  msgstr "Dinamični bloki"
3657
 
3658
+ #: settings.php:2307
3659
  msgid "Functions for paragraph counting"
3660
  msgstr "Funkcije za štetje odstavkov"
3661
 
3662
+ #: settings.php:2310
3663
  msgid ""
3664
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3665
  "functions if paragraphs are not counted properly on non-english pages."
3668
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3669
  "šteti."
3670
 
3671
+ #: settings.php:2318
3672
  msgid "No paragraph counting inside"
3673
  msgstr "Ni štetja odstavkov znotraj"
3674
 
3675
+ #: settings.php:2329
3676
  msgid "Label text or HTML code"
3677
  msgstr "Besedilo oznake ali HTML koda"
3678
 
3679
+ #: settings.php:2337
3680
  msgid ""
3681
  "Maximum number of inserted blocks per page. You need to enable Max page "
3682
  "insertions (button Misc / tab Insertion) to count block for this limit."
3685
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3686
  "omejitev."
3687
 
3688
+ #: settings.php:2351
3689
  msgid "Plugin usage tracking"
3690
  msgstr "Sledenje uporabe vtičnika"
3691
 
3692
  #. translators: %s: Ad Inserter
3693
+ #: settings.php:2354
3694
  msgid ""
3695
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3696
  "Only information regarding the WordPress environment and %s usage is "
3700
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3701
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3702
 
3703
+ #: settings.php:2372
3704
  msgid "CSS class name for the wrapping div"
3705
  msgstr "Ime CSS razreda za div za ovijanje"
3706
 
3707
+ #: settings.php:2372
3708
  msgid "Block class name"
3709
  msgstr "Ime razreda za blok"
3710
 
3711
+ #: settings.php:2376
3712
  msgid "Include general plugin block class"
3713
  msgstr "Vključi splošni razred vtičnika za blok"
3714
 
3715
+ #: settings.php:2376
3716
  msgid "Block class"
3717
  msgstr "Razred bloka"
3718
 
3719
+ #: settings.php:2381
3720
  msgid "Include block number class"
3721
  msgstr "Vključi razred številke bloka"
3722
 
3723
+ #: settings.php:2381
3724
  msgid "Block number class"
3725
  msgstr "Razred številke bloka"
3726
 
3727
+ #: settings.php:2386
3728
  msgid ""
3729
  "Instead of alignment classes generate inline alignment styles for blocks"
3730
  msgstr ""
3731
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3732
 
3733
+ #: settings.php:2386
3734
  msgid "Inline styles"
3735
  msgstr "Medvrstični slogi"
3736
 
3737
+ #: settings.php:2392
3738
  msgid "Preview of the block wrapping code"
3739
  msgstr "Predogled kode za ovijanje blokov"
3740
 
3741
+ #: settings.php:2393
3742
  msgid "Wrapping div"
3743
  msgstr "div za ovijanje"
3744
 
3745
+ #: settings.php:2394 settings.php:2834
3746
  msgid "BLOCK CODE"
3747
  msgstr "KODA BLOKA"
3748
 
3749
+ #: settings.php:2402
3750
  msgid "Viewport Settings used for client-side device detection"
3751
  msgstr ""
3752
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3753
 
3754
  #. Translators: %d: viewport number
3755
+ #: settings.php:2410
3756
  msgid "Viewport %d name"
3757
  msgstr "Ime pogleda %d"
3758
 
3759
+ #: settings.php:2413
3760
  msgid "min width"
3761
  msgstr "najmanjša širina"
3762
 
3763
+ #: settings.php:2424
3764
  msgid "Custom Hooks"
3765
  msgstr "Ročice Po Meri"
3766
 
3767
+ #: settings.php:2436 settings.php:2439
3768
  msgid "Enable hook"
3769
  msgstr "Omogoči ročico"
3770
 
3771
  #. translators: %d: hook number
3772
+ #: settings.php:2439
3773
  msgid "Hook %d name"
3774
  msgstr "Ime ročice %d"
3775
 
3776
+ #: settings.php:2442
3777
  msgid "Hook name for automatic insertion selection"
3778
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3779
 
3780
+ #: settings.php:2445
3781
  msgid "action"
3782
  msgstr "akcija"
3783
 
3784
+ #: settings.php:2448
3785
  msgid "Action name as used in the do_action () function"
3786
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3787
 
3788
+ #: settings.php:2451
3789
  msgid "priority"
3790
  msgstr "prednost"
3791
 
3792
+ #: settings.php:2454
3793
  msgid "Priority for the hook (default is 10)"
3794
  msgstr "Prednost za ročico (privzeta je 10)"
3795
 
3796
+ #: settings.php:2475
3797
  msgid "Enable insertion of this code into HTML page header"
3798
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3799
 
3800
+ #: settings.php:2479 settings.php:2546 settings.php:2728
3801
  msgid "Process PHP code"
3802
  msgstr "Procesiraj PHP kodo"
3803
 
3804
+ #: settings.php:2483
3805
  msgid "HTML Page Header Code"
3806
  msgstr "Koda v Glavi HTML Strani"
3807
 
3808
+ #: settings.php:2491
3809
  msgid "Code in the %s section of the HTML page"
3810
  msgstr "Koda v %s delu HTML strani"
3811
 
3812
+ #: settings.php:2492
3813
  msgctxt "code in the header"
3814
  msgid "NOT ENABLED"
3815
  msgstr "NI OMOGOČENA"
3816
 
3817
+ #: settings.php:2509 settings.php:2577
3818
  msgid "Use server-side detection to insert code only for"
3819
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3820
 
3821
+ #: settings.php:2524
3822
  msgid ""
3823
  "Enable insertion of this code into HTML page header on page for Error 404: "
3824
  "Page not found"
3826
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3827
  "obstaja"
3828
 
3829
+ #: settings.php:2524 settings.php:2592
3830
  msgid "Insert on Error 404 page"
3831
  msgstr "Vstavi na strani Napake 404"
3832
 
3833
+ #: settings.php:2542
3834
  msgid "Enable insertion of this code into HTML page footer"
3835
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3836
 
3837
+ #: settings.php:2550
3838
  msgid "HTML Page Footer Code"
3839
  msgstr "Koda v Nogi HTML Strani"
3840
 
3841
  #. translators: %s: HTML tags
3842
+ #: settings.php:2558
3843
  msgid "Code before the %s tag of the the HTML page"
3844
  msgstr "Koda pred %s značko HTML strani"
3845
 
3846
+ #: settings.php:2559
3847
  msgctxt "code in the footer"
3848
  msgid "NOT ENABLED"
3849
  msgstr "NI OMOGOČENA"
3850
 
3851
+ #: settings.php:2592
3852
  msgid ""
3853
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3854
  "Page not found"
3856
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3857
  "Stran ne obstaja"
3858
 
3859
+ #: settings.php:2608
3860
  msgid "Code for ad blocking detection inserted. Click for details."
3861
  msgstr ""
3862
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3863
 
3864
+ #: settings.php:2613
3865
  msgid "Enable detection of ad blocking"
3866
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3867
 
3868
+ #: settings.php:2631
3869
  msgid "Global action when ad blocking is detected"
3870
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3871
 
3872
+ #: settings.php:2637
3873
  msgid "No action for"
3874
  msgstr "Ni akcije za"
3875
 
3876
+ #: settings.php:2638
3877
  msgid "Exceptions for global action when ad blocking is detected."
3878
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3879
 
3880
+ #: settings.php:2648
3881
  msgid "Delay Action"
3882
  msgstr "Zakasni Akcijo"
3883
 
3884
+ #: settings.php:2651
3885
  msgid ""
3886
  "Number of page views to delay action when ad blocking is detected. Leave "
3887
  "empty for no delay (action fires on first page view). Sets cookie."
3890
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3891
  "strani). Nastavi piškotek."
3892
 
3893
+ #: settings.php:2651
3894
  msgctxt "Delay Action for x "
3895
  msgid "page views"
3896
  msgstr "ogledov strani"
3897
 
3898
+ #: settings.php:2656
3899
  msgid "No Action Period"
3900
  msgstr "Obdobje Brez Akcije"
3901
 
3902
+ #: settings.php:2659
3903
  msgid ""
3904
  "Number of days to supress action when ad blocking is detected. Leave empty "
3905
  "for no no-action period (action fires always after defined page view delay). "
3909
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3910
  "strani). Nastavi piškotek."
3911
 
3912
+ #: settings.php:2659
3913
  msgctxt "no action period"
3914
  msgid "days"
3915
  msgstr "dni"
3916
 
3917
+ #: settings.php:2664
3918
  msgid "Custom Selectors"
3919
  msgstr "Selektorji Po Meri"
3920
 
3921
+ #: settings.php:2667
3922
  msgid ""
3923
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3924
  "blocking detection. Invisible element or element with zero height means ad "
3928
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3929
  "pomeni prisotnost blokiranja oglasov."
3930
 
3931
+ #: settings.php:2679
3932
  msgid "Redirection Page"
3933
  msgstr "Stran za Preusmeritev"
3934
 
3935
+ #: settings.php:2691
3936
  msgid "Custom Url"
3937
  msgstr "Url Po Meri"
3938
 
3939
+ #: settings.php:2696
3940
  msgid ""
3941
  "Static page for redirection when ad blocking is detected. For other pages "
3942
  "select Custom url and set it below."
3944
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3945
  "strani izberite Url Po Meri in ga nastavite spodaj."
3946
 
3947
+ #: settings.php:2705
3948
  msgid "Custom Redirection Url"
3949
  msgstr "Url za Preusmeritev Po Meri"
3950
 
3951
+ #: settings.php:2717
3952
  msgid "Message HTML code"
3953
  msgstr "HTML koda sporočila"
3954
 
3955
+ #: settings.php:2730
3956
  msgid "Preview message when ad blocking is detected"
3957
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3958
 
3959
+ #: settings.php:2759
3960
  msgid "Prevent visitors from closing the warning message"
3961
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3962
 
3963
+ #: settings.php:2759
3964
  msgid "Undismissible Message"
3965
  msgstr "Neodstranljivo Sporočilo"
3966
 
3967
+ #: settings.php:2765
3968
  msgid "Not undismissible for"
3969
  msgstr "Ni neodstranljivo za"
3970
 
3971
+ #: settings.php:2766
3972
  msgid "Users which can close the warning message."
3973
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
3974
 
3975
+ #: settings.php:2780
3976
  msgid ""
3977
  "Force showing admin toolbar for administrators when viewing site. Enable "
3978
  "this option when you are logged in as admin and you don't see admin toolbar."
3981
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3982
  "skrbnike."
3983
 
3984
+ #: settings.php:2788
3985
  msgid "Disable header code (Header tab)"
3986
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3987
 
3988
+ #: settings.php:2792
3989
  msgid "Disable footer code (Footer tab)"
3990
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3991
 
3992
  #. translators: %s: Ad Inserter
3993
+ #: settings.php:2796
3994
  msgid "Disable %s JavaScript code"
3995
  msgstr "Onemogoči %s JavaScript kodo"
3996
 
3997
  #. translators: %s: Ad Inserter
3998
+ #: settings.php:2800
3999
  msgid "Disable %s CSS code"
4000
  msgstr "Onemogoči %s CSS kodo"
4001
 
4002
+ #: settings.php:2804
4003
  msgid ""
4004
  "Disable PHP code processing (in all blocks including header and footer code)"
4005
  msgstr ""
4006
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4007
 
4008
+ #: settings.php:2808
4009
  msgid "Disable insertion of all blocks"
4010
  msgstr "Onemogoči vstavljanje vseh blokov"
4011
 
4012
+ #: settings.php:2812
4013
  msgid "Disable insertions"
4014
  msgstr "Onemogoči vstavljanja"
4015
 
4016
  #. translators: %s: Ad Inserter
4017
+ #: settings.php:2824
4018
  msgid "%s CSS CODE"
4019
  msgstr "%s CSS KODA"
4020
 
4021
+ #: settings.php:2827
4022
  msgid "HEADER CODE"
4023
  msgstr "KODA GLAVE"
4024
 
4025
  #. translators: %s: PHP tags
4026
+ #: settings.php:2833
4027
  msgid "BLOCK PHP CODE"
4028
  msgstr "PHP KODA BLOKA"
4029
 
4030
  #. translators: %s: Ad Inserter
4031
+ #: settings.php:2839
4032
  msgid "%s JS CODE"
4033
  msgstr "%s JS KODA"
4034
 
4035
+ #: settings.php:2842
4036
  msgid "FOOTER CODE"
4037
  msgstr "KODA NOGE"
4038
 
4039
+ #: settings.php:2851
4040
  msgid "Force showing admin toolbar when viewing site"
4041
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4042
 
4043
+ #: settings.php:2858
4044
  msgid "Enable debugging functions in admin toolbar"
4045
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4046
 
4047
+ #: settings.php:2860
4048
  msgid "Debugging functions in admin toolbar"
4049
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4050
 
4051
+ #: settings.php:2867
4052
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4053
  msgstr ""
4054
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4055
  "zaslonih"
4056
 
4057
+ #: settings.php:2869
4058
  msgid "Debugging functions on mobile screens"
4059
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4060
 
4061
+ #: settings.php:2876
4062
  msgid ""
4063
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4064
  "tags, processing) by url parameters for non-logged in users. Enable this "
4073
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4074
  "vedno omogočeno."
4075
 
4076
+ #: settings.php:2878
4077
  msgid "Remote debugging"
4078
  msgstr "Oddaljeno razhroščevanje"
4079
 
4080
+ #: settings.php:2885
4081
  msgid ""
4082
  "Disable translation to see original texts for the settings and messages in "
4083
  "English"
4085
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4086
  "angleščini"
4087
 
4088
+ #: settings.php:2887
4089
  msgid "Disable translation"
4090
  msgstr "Onemogoči prevod"
4091
 
4092
+ #: settings.php:3257
4093
  msgid "Available positions for current theme"
4094
  msgstr "Razpoložljivi položaji za trenutno temo"
4095
 
4096
+ #: settings.php:3258
4097
  msgid "Error checking pages"
4098
  msgstr "Napaka pri preverjanju strani"
4099
 
4100
+ #: settings.php:3261
4101
  msgid "Toggle theme checker for available positions for automatic insertion"
4102
  msgstr ""
4103
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4104
 
4105
+ #: settings.php:3261
4106
  msgctxt "Button"
4107
  msgid "Check"
4108
  msgstr "Preveri"
4109
 
4110
+ #: settings.php:3268
4111
  msgid "Position"
4112
  msgstr "Položaj"
4113
 
4114
+ #: settings.php:3273
4115
  msgid "Archive pages"
4116
  msgstr "Strani arhiva"
4117
 
4118
+ #: settings.php:3332
4119
  msgid ""
4120
  "Position not available because output buffering (tab [*]) is not enabled"
4121
  msgstr ""
4122
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4123
 
4124
+ #: settings.php:3335 strings.php:226
4125
  msgid "Position not checked yet"
4126
  msgstr "Položaj še ni bil preverjen"
4127
 
4128
+ #: settings.php:3371
4129
  msgid "Toggle active/all blocks"
4130
  msgstr "Preklopi aktive/vse bloke"
4131
 
4132
+ #: settings.php:3375 strings.php:213
4133
  msgid "Rearrange block order"
4134
  msgstr "Preuredi vrstni red blokov"
4135
 
4136
+ #: settings.php:3380
4137
  msgid "Save new block order"
4138
  msgstr "Shrani vrstni red blokov"
4139
 
4140
+ #: settings.php:3406
 
 
 
 
4141
  msgid "Toggle active/all ad units"
4142
  msgstr "Preklopi aktivne/vse oglasne enote"
4143
 
4144
+ #: settings.php:3410
4145
  msgid "Reload AdSense ad units"
4146
  msgstr "Ponovno naloži oglasne enote AdSense"
4147
 
4148
+ #: settings.php:3414
4149
  msgid "Clear authorization to access AdSense account"
4150
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4151
 
4152
+ #: settings.php:3418 settings.php:4214 settings.php:4281 strings.php:221
4153
  msgid "Google AdSense Homepage"
4154
  msgstr "Google AdSense Domača Stran"
4155
 
4156
+ #: settings.php:3434
4157
  msgid "Switch to physical ads.txt file"
4158
  msgstr "Preklopi na fizično datoteko ads.txt"
4159
 
4160
+ #: settings.php:3435
4161
  msgid "Switch to virtual ads.txt file"
4162
  msgstr "Preklopi na navidezno datoteko ads.txt"
4163
 
4164
  #. translators: %s: ads.txt
4165
+ #: settings.php:3445
4166
  msgid "Open %s"
4167
  msgstr "Odpri %s"
4168
 
4169
+ #: settings.php:3453
4170
  msgid "Reload ads.txt file"
4171
  msgstr "Ponovno naloži datoteko ads.txt"
4172
 
4173
+ #: settings.php:3457 settings.php:4341
4174
  msgid "Save"
4175
  msgstr "Shrani"
4176
 
4177
  #. translators: %s: Ad Inserter
4178
+ #: settings.php:3632
4179
  msgid "ads.txt file: %s virtual ads.txt file"
4180
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4181
 
4182
+ #: settings.php:3637 settings.php:3657 strings.php:205
4183
  msgid "Warning"
4184
  msgstr "Opozorilo"
4185
 
4186
  #. translators: %s: Ad Inserter
4187
+ #: settings.php:3637
4188
  msgid "%s virtual file ads.txt not found"
4189
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4190
 
4191
+ #: settings.php:3645
4192
  msgid "IMPORTANT"
4193
  msgstr "POMEMBNO"
4194
 
4195
+ #: settings.php:3645
4196
  msgid "ads.txt file must be placed on the root domain"
4197
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4198
 
4199
+ #: settings.php:3650
4200
+ msgid "ads.txt file"
4201
+ msgstr "datoteka ads.txt"
4202
 
4203
+ #: settings.php:3657
 
 
 
 
 
4204
  msgid "file %s not found"
4205
  msgstr "datoteka %s ni najdena"
4206
 
4207
+ #: settings.php:3667
4208
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4209
  msgstr ""
4210
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4211
 
4212
  #. translators: %s: Ad Inserter
4213
+ #: settings.php:3673
4214
  msgid "%s virtual ads.txt file"
4215
  msgstr "%s navidezna datoteka ads.txt"
4216
 
4217
+ #: settings.php:3695
4218
  msgid "Advertising system"
4219
  msgstr "Oglaševalski sistem"
4220
 
4221
+ #: settings.php:3696
4222
  msgid "Account ID"
4223
  msgstr "ID Računa"
4224
 
4225
+ #: settings.php:3698
4226
  msgid "Certification authority ID"
4227
  msgstr "ID organa za potrjevanje"
4228
 
4229
+ #: settings.php:3713
4230
  msgid "Account ID found in block and present in ads.txt"
4231
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4232
 
4233
+ #: settings.php:3717
4234
  msgid "Account ID found in block but not present in ads.txt"
4235
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4236
 
4237
+ #: settings.php:4004
4238
  msgid "Preview block"
4239
  msgstr "Predogled bloka"
4240
 
4241
+ #: settings.php:4013
4242
  msgid "Insertion disabled"
4243
  msgstr "Vstavljanje onemogočeno"
4244
 
4245
+ #: settings.php:4043
4246
  msgid "Automatic insertion"
4247
  msgstr "Samodejno vstavljanje"
4248
 
4249
  #. translators: %s HTML tags
4250
+ #: settings.php:4044 settings.php:4950
4251
  msgid "PHP code processing"
4252
  msgstr "Procesiranje PHP kode"
4253
 
4254
+ #: settings.php:4046
4255
  msgid "Device detection"
4256
  msgstr "Zaznavanje naprave"
4257
 
4258
+ #: settings.php:4059
4259
  msgid "Widget positions"
4260
  msgstr "Položaji gradnikov"
4261
 
4262
+ #: settings.php:4125
4263
  msgid "Ad unit"
4264
  msgstr "Enota"
4265
 
4266
+ #: settings.php:4127
4267
  msgid "Slot ID"
4268
  msgstr "ID mesta"
4269
 
4270
+ #: settings.php:4153
4271
  msgid "Copy AdSense code"
4272
  msgstr "Kopiraj kodo AdSense"
4273
 
4274
+ #: settings.php:4156
4275
  msgid "Preview AdSense ad"
4276
  msgstr "Predogled oglasa AdSense"
4277
 
4278
+ #: settings.php:4159
4279
  msgid "Get AdSense code"
4280
  msgstr "Pridobi kodo AdSense"
4281
 
4282
  #. translators: %s: HTML tags
4283
+ #: settings.php:4191
4284
  msgid ""
4285
  "Please %s clear authorization %s with the button %s above and once again "
4286
  "authorize access to your AdSense account."
4288
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4289
  "avtorizirajte dostop do vašega računa AdSense."
4290
 
4291
+ #: settings.php:4210
4292
  msgid "AdSense Integration"
4293
  msgstr "Integracija AdSense"
4294
 
4295
+ #: settings.php:4212
4296
  msgid "AdSense Integration - Step 2"
4297
  msgstr "Integracija AdSense - Korak 2"
4298
 
4299
  #. translators: %s: HTML tags
4300
+ #: settings.php:4218
4301
  msgid ""
4302
  "Authorize %s to access your AdSense account. Click on the %s Get "
4303
  "Authorization Code %s button to open a new window where you can allow "
4310
  "Avtoriziraj. %s"
4311
 
4312
  #. translators: %s: HTML tags
4313
+ #: settings.php:4225
4314
  msgid ""
4315
  "If you get error, can't access ad units or would like to use own Google API "
4316
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4321
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4322
 
4323
  #. translators: %s: HTML tags
4324
+ #: settings.php:4227
4325
  msgid ""
4326
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4327
  "Authorization Code %s button to open a new window where you can allow "
4334
  "gumb %s Avtoriziraj. %s"
4335
 
4336
  #. translators: %s: HTML tags
4337
+ #: settings.php:4234
4338
  msgid ""
4339
  "If you get error %s invalid client %s click on the button %s Clear and "
4340
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4342
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4343
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4344
 
4345
+ #: settings.php:4245
4346
  msgid "Get Authorization Code"
4347
  msgstr "Pridobi Avtoriazcijsko Kodo"
4348
 
4349
+ #: settings.php:4248
4350
  msgid "Enter Authorization Code"
4351
  msgstr "Vnesi Avorizacijsko Kodo"
4352
 
4353
+ #: settings.php:4258
4354
  msgid "Use own API IDs"
4355
  msgstr "Uporabi lastne API ID-je"
4356
 
4357
+ #: settings.php:4260
4358
  msgid "Clear and return to Step 1"
4359
  msgstr "Odstrani in se vrni na Korak 1"
4360
 
4361
+ #: settings.php:4264
4362
  msgid "Authorize"
4363
  msgstr "Avtoriziraj"
4364
 
4365
+ #: settings.php:4280
4366
  msgid "AdSense Integration - Step 1"
4367
  msgstr "Integracija AdSense - Korak 1"
4368
 
4369
  #. translators: %s: Ad Inserter
4370
+ #: settings.php:4284
4371
  msgid ""
4372
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4373
  "To do this you need to authorize %s to access your AdSense account. The "
4380
  "Klienta in Skrivnost Klienta."
4381
 
4382
  #. translators: %s: HTML tags
4383
+ #: settings.php:4293
4384
  msgid "Go to %s Google APIs and Services console %s"
4385
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4386
 
4387
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4388
+ #: settings.php:4294
4389
  msgid ""
4390
  "Create %1$s project - if the project and IDs are already created click on "
4391
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4394
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4395
 
4396
  #. translators: %s: HTML tags
4397
+ #: settings.php:4295
4398
  msgid ""
4399
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4400
  "create a new project"
4403
  "ustvaritev novega projekta"
4404
 
4405
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4406
+ #: settings.php:4296
4407
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4408
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4409
 
4410
  #. translators: %s: HTML tags
4411
+ #: settings.php:4297
4412
  msgid ""
4413
  "Click on project selection, wait for the project to be created and then and "
4414
  "select %s as the current project"
4417
  "izberite %s kot trenutni projekt"
4418
 
4419
  #. translators: %s: HTML tags
4420
+ #: settings.php:4298
4421
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4422
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4423
 
4424
  #. translators: %s: HTML tags
4425
+ #: settings.php:4299
4426
  msgid "Search for adsense and enable %s"
4427
  msgstr "Poiščite adsense in omogočite %s"
4428
 
4429
  #. translators: %s: HTML tags
4430
+ #: settings.php:4300
4431
  msgid "Click on %s CREATE CREDENTIALS %s"
4432
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4433
 
4434
  #. translators: %s: HTML tags
4435
+ #: settings.php:4301
4436
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4437
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4438
 
4439
  #. translators: %s: HTML tags
4440
+ #: settings.php:4302
4441
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4442
  msgstr ""
4443
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4444
  "podatki %s"
4445
 
4446
  #. translators: %s: HTML tags
4447
+ #: settings.php:4303
4448
  msgid "Click on %s What credentials do I need? %s"
4449
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4450
 
4451
  #. translators: %s: HTML tags
4452
+ #: settings.php:4304
4453
  msgid ""
4454
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4455
  "Ad Inserter client %s"
4458
  "%s Ad Inserter klient %s"
4459
 
4460
  #. translators: %s: HTML tags
4461
+ #: settings.php:4305
4462
  msgid ""
4463
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4464
  "enter %s"
4467
  "uporabnikom %s vnesite %s"
4468
 
4469
  #. translators: %s: HTML tags
4470
+ #: settings.php:4306
4471
  msgid "Click on %s Continue %s"
4472
  msgstr "Kliknite na %s Nadaljuj %s"
4473
 
4474
  #. translators: %s: HTML tags
4475
+ #: settings.php:4307
4476
  msgid "Click on %s Done %s"
4477
  msgstr "Kliknite na %s Končaj %s"
4478
 
4479
  #. translators: %s: HTML tags
4480
+ #: settings.php:4308
4481
  msgid ""
4482
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4483
  "secret %s"
4485
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4486
  "Skrivnost klienta %s"
4487
 
4488
+ #: settings.php:4309
4489
  msgid "Copy them to the appropriate fields below"
4490
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4491
 
4492
+ #: settings.php:4315
4493
  msgid "Client ID"
4494
  msgstr "ID klienta"
4495
 
4496
+ #: settings.php:4318
4497
  msgid "Enter Client ID"
4498
  msgstr "Vnesite ID klienta"
4499
 
4500
+ #: settings.php:4323
4501
  msgid "Client secret"
4502
  msgstr "Skrivnost klienta"
4503
 
4504
+ #: settings.php:4326
4505
  msgid "Enter Client secret"
4506
  msgstr "Vnesite Skrivnost klienta"
4507
 
4508
+ #: settings.php:4336
4509
  msgid "Use default API IDs"
4510
  msgstr "Uporabi privzete API ID-je"
4511
 
4512
+ #: settings.php:4617 settings.php:4630 settings.php:4643 settings.php:4658
4513
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4514
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4515
 
4516
+ #: settings.php:4622 settings.php:4635 settings.php:4648 settings.php:4663
4517
+ #: settings.php:4843 settings.php:4847 settings.php:4865 settings.php:4869
4518
+ #: settings.php:4877 settings.php:4880 settings.php:4886 settings.php:4898
4519
  msgid "Looking for AdSense alternative?"
4520
  msgstr "Iščete alternativo za AdSense?"
4521
 
4522
+ #: settings.php:4674
4523
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4524
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4525
 
4526
+ #: settings.php:4679 settings.php:4845 settings.php:4849 settings.php:4857
4527
+ #: settings.php:4883
4528
  msgid "Use Infolinks ads with Adsense to earn more"
4529
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4530
 
4531
+ #: settings.php:4698 settings.php:4736
4532
  msgid "Support plugin development"
4533
  msgstr "Podprite razvoj vtičnika"
4534
 
4535
+ #: settings.php:4699 settings.php:4737
4536
  msgid ""
4537
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4538
  "reviewing the plugin on WordPres"
4540
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4541
  "razširiti novico z oceno vtičnika na WordPress-u"
4542
 
4543
+ #: settings.php:4699
4544
  msgctxt "Review ad Inserter"
4545
  msgid "Review"
4546
  msgstr "Oceni"
4547
 
4548
+ #: settings.php:4700
4549
  msgid ""
4550
  "Support free Ad Inserter development. If you are making money with Ad "
4551
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4554
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4555
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4556
 
4557
+ #: settings.php:4700
4558
  msgid "Donate"
4559
  msgstr "Donirajte"
4560
 
4561
+ #: settings.php:4707 settings.php:4752
4562
  msgid "Average rating of the plugin - Thank you!"
4563
  msgstr "Povprečna ocena vtičnika - Hvala!"
4564
 
4565
  #. translators: %s: Ad Inserter, HTML tags
4566
+ #: settings.php:4718
4567
  msgid ""
4568
  "You've been using %s for a while now, and I hope you're happy with it. "
4569
  "Positive %s reviews %s are a great way to show your appreciation for my "
4577
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4578
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4579
 
4580
+ #: settings.php:4737
4581
  msgid "Review"
4582
  msgstr "Ocena"
4583
 
4584
+ #: settings.php:4741
4585
  msgid "Ad Inserter on Twitter"
4586
  msgstr "Ad Inserter na Twitter-ju"
4587
 
4588
+ #: settings.php:4742
4589
  msgid "Ad Inserter on Facebook"
4590
  msgstr "Ad Inserter na Facebook-u"
4591
 
4592
+ #: settings.php:4745
4593
  msgid "Follow Ad Inserter"
4594
  msgstr "Sledi Ad Inserter-ju"
4595
 
4596
  #. translators: %s: HTML tags
4597
+ #: settings.php:4772
4598
  msgid ""
4599
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4600
  "and %s Common Settings %s pages"
4603
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4604
 
4605
  #. translators: %s: HTML tags
4606
+ #: settings.php:4784
4607
  msgid ""
4608
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4609
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4614
  "%s Infolinks %s oglasno kodo %s"
4615
 
4616
  #. translators: %s: HTML tags
4617
+ #: settings.php:4805
4618
  msgid ""
4619
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4620
  "purchase you refer to us"
4623
  "nakup, ki nam ga posredujete"
4624
 
4625
  #. translators: %s: HTML tags
4626
+ #: settings.php:4812
4627
  msgid ""
4628
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4629
  "diagnose and fix the problem."
4632
  "navodili za diagnozo in rešitvami za težave."
4633
 
4634
  #. translators: %s: HTML tags
4635
+ #: settings.php:4816
4636
  msgid ""
4637
  "If you need any kind of help or support, please do not hesitate to open a "
4638
  "thread on the %s support forum. %s"
4640
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4641
  "nit na %s podpornem forumu. %s"
4642
 
4643
+ #: settings.php:4861 settings.php:4902
4644
  msgid "A/B testing - Track ad impressions and clicks"
4645
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4646
 
4647
+ #: settings.php:4894 settings.php:4906
4648
  msgid "Code preview with visual CSS editor"
4649
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4650
 
4651
+ #: settings.php:4914
4652
  msgid "Looking for Pro Ad Management plugin?"
4653
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4654
 
4655
+ #: settings.php:4915
4656
  msgid "To Optimally Monetize your WordPress website?"
4657
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4658
 
4659
  #. translators: %s HTML tags
4660
+ #: settings.php:4918
4661
  msgid "%s AdSense Integration %s"
4662
  msgstr "%s Integracija AdSense %s"
4663
 
4664
  #. translators: %s HTML tags
4665
+ #: settings.php:4919
4666
  msgid "Syntax highlighting %s editor %s"
4667
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4668
 
4669
  #. translators: %s HTML tags
4670
+ #: settings.php:4920
4671
  msgid "%s Code preview %s with visual CSS editor"
4672
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4673
 
4674
  #. translators: %s HTML tags
4675
+ #: settings.php:4921
4676
  msgid "Simple user interface - all settings on a single page"
4677
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4678
 
4679
  #. translators: %s HTML tags
4680
+ #: settings.php:4922
4681
  msgid ""
4682
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4683
  "image / excerpt"
4686
  "%s / sliko / izvlečkom"
4687
 
4688
  #. translators: %s HTML tags
4689
+ #: settings.php:4923
4690
  msgid "%s Automatic insertion %s between posts on blog pages"
4691
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4692
 
4693
  #. translators: %s HTML tags
4694
+ #: settings.php:4924
4695
  msgid "%s Automatic insertion %s before, between and after comments"
4696
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4697
 
4698
  #. translators: %s HTML tags
4699
+ #: settings.php:4925
4700
  msgid "%s Automatic insertion %s after %s or before %s tag"
4701
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4702
 
4703
  #. translators: %s HTML tags
4704
+ #: settings.php:4926
4705
  msgid "Automatic insertion at %s custom hook positions %s"
4706
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4707
 
4708
  #. translators: %s HTML tags
4709
+ #: settings.php:4927
4710
  msgid ""
4711
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4712
  "selectors)"
4715
  "selektorjev)"
4716
 
4717
  #. translators: %s HTML tags
4718
+ #: settings.php:4928
4719
  msgid "%s Insertion exceptions %s for individual posts and pages"
4720
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4721
 
4722
  #. translators: %s HTML tags
4723
+ #: settings.php:4929
4724
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4725
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4726
 
4727
  #. translators: %s HTML tags
4728
+ #: settings.php:4930
4729
  msgid ""
4730
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4731
  "scrolls)"
4734
  "se stran pomika)"
4735
 
4736
  #. translators: %s HTML tags
4737
+ #: settings.php:4931
4738
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4739
  msgstr ""
4740
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4741
 
4742
  #. translators: %s HTML tags
4743
+ #: settings.php:4932
4744
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4745
  msgstr ""
4746
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4747
 
4748
  #. translators: %s HTML tags
4749
+ #: settings.php:4933
4750
  msgid ""
4751
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4752
  "visible)"
4755
  "postane viden)"
4756
 
4757
  #. translators: %s HTML tags
4758
+ #: settings.php:4934
4759
  msgid ""
4760
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4761
  msgstr ""
4763
  "strani)"
4764
 
4765
  #. translators: %s HTML tags
4766
+ #: settings.php:4935
4767
  msgid "Block %s alignment and style %s customizations"
4768
  msgstr "%s Poravnave in slogi %s bloka po meri"
4769
 
4770
  #. translators: %s HTML tags
4771
+ #: settings.php:4936
4772
  msgid ""
4773
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4774
  "TOS)"
4776
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4777
 
4778
  #. translators: %s HTML tags
4779
+ #: settings.php:4937
4780
  msgid ""
4781
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4782
  "feeds"
4785
  "virih"
4786
 
4787
  #. translators: %s HTML tags
4788
+ #: settings.php:4938
4789
  msgid "%s Ad rotation %s (works also with caching)"
4790
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4791
 
4792
  #. translators: %s HTML tags
4793
+ #: settings.php:4939
4794
  msgid "Create, edit and check %s ads.txt %s file"
4795
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4796
 
4797
  #. translators: %s HTML tags
4798
+ #: settings.php:4940
4799
  msgid ""
4800
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4801
  "AdSense)"
4804
  "AdSense)"
4805
 
4806
  #. translators: %s HTML tags
4807
+ #: settings.php:4941
4808
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4809
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4810
 
4811
  #. translators: %s HTML tags
4812
+ #: settings.php:4942
4813
  msgid "%s Public web reports %s for clients, export to PDF"
4814
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4815
 
4816
  #. translators: %s HTML tags
4817
+ #: settings.php:4943
4818
  msgid "Support for %s A/B testing %s"
4819
  msgstr "Podpora za %s A/B testiranje %s"
4820
 
4821
  #. translators: %s HTML tags
4822
+ #: settings.php:4944
4823
+ msgid "Frequency capping - %s limit impressions or clicks %s"
4824
+ msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
4825
+
4826
+ #. translators: %s HTML tags
4827
+ #: settings.php:4945
4828
+ msgid "Click fraud %s protection %s"
4829
+ msgstr "%s Zaščita %s pred goljufijo s kliki"
4830
+
4831
+ #. translators: %s HTML tags
4832
+ #: settings.php:4946
4833
  msgid "Support for %s lazy loading %s"
4834
  msgstr "Podpora za %s leno nalaganje %s"
4835
 
4836
  #. translators: %s HTML tags
4837
+ #: settings.php:4947
4838
  msgid "Support for ads on %s AMP pages %s"
4839
  msgstr "Podpora za oglase na %s AMP straneh %s"
4840
 
4841
  #. translators: %s HTML tags
4842
+ #: settings.php:4948
4843
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4844
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4845
 
4846
  #. translators: %s HTML tags
4847
+ #: settings.php:4949
4848
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4849
  msgstr ""
4850
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4851
 
4852
  #. translators: %s HTML tags
4853
+ #: settings.php:4951
4854
  msgid "%s Banner %s code generator"
4855
  msgstr "Generator kode za %s pasice %s"
4856
 
4857
  #. translators: %s HTML tags
4858
+ #: settings.php:4952
4859
  msgid "Support for %s header and footer %s code"
4860
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4861
 
4862
  #. translators: %s HTML tags
4863
+ #: settings.php:4953
4864
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4865
  msgstr ""
4866
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4867
 
4868
  #. translators: %s HTML tags
4869
+ #: settings.php:4954
4870
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4871
  msgstr ""
4872
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4873
  "strežnika"
4874
 
4875
  #. translators: %s HTML tags
4876
+ #: settings.php:4955
4877
  msgid "Client-side %s mobile device detection %s (works with caching)"
4878
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4879
 
4880
  #. translators: %s HTML tags
4881
+ #: settings.php:4956
4882
  msgid ""
4883
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4884
  "protection"
4887
  "vsebine"
4888
 
4889
  #. translators: %s HTML tags
4890
+ #: settings.php:4957
4891
  msgid "%s Ad blocking statistics %s"
4892
  msgstr "%s Statistika blokiranja oglasov %s"
4893
 
4894
  #. translators: %s HTML tags
4895
+ #: settings.php:4958
4896
  msgid ""
4897
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4898
  "referers"
4900
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4901
 
4902
  #. translators: %s HTML tags
4903
+ #: settings.php:4959
4904
  msgid ""
4905
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4906
  msgstr ""
4907
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4908
 
4909
  #. translators: %s HTML tags
4910
+ #: settings.php:4960
4911
  msgid "%s Multisite options %s to limit settings on the sites"
4912
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4913
 
4914
  #. translators: %s HTML tags
4915
+ #: settings.php:4961
4916
  msgid "%s Import/Export %s block or plugin settings"
4917
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4918
 
4919
  #. translators: %s HTML tags
4920
+ #: settings.php:4962
4921
  msgid "%s Insertion scheduling %s with fallback option"
4922
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4923
 
4924
  #. translators: %s HTML tags
4925
+ #: settings.php:4963
4926
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4927
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4928
 
4929
  #. translators: %s HTML tags
4930
+ #: settings.php:4964
4931
  msgid "Simple troubleshooting with many %s debugging functions %s"
4932
  msgstr ""
4933
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4934
 
4935
  #. translators: %s HTML tags
4936
+ #: settings.php:4965
4937
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4938
  msgstr ""
4939
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4940
 
4941
  #. translators: %s HTML tags
4942
+ #: settings.php:4966
4943
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4944
  msgstr ""
4945
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4946
 
4947
  #. translators: %s HTML tags
4948
+ #: settings.php:4967
4949
  msgid ""
4950
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4951
  msgstr ""
4952
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4953
 
4954
  #. translators: %s HTML tags
4955
+ #: settings.php:4968
4956
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4957
  msgstr ""
4958
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4959
 
4960
  #. translators: %s HTML tags
4961
+ #: settings.php:4969
4962
  msgid "No ads on the settings page"
4963
  msgstr "Stran z nastavitvami brez oglasov"
4964
 
4965
  #. translators: %s HTML tags
4966
+ #: settings.php:4970
4967
  msgid "Premium support"
4968
  msgstr "Vrhunska podpora"
4969
 
4970
  #. translators: %s HTML tags
4971
+ #: settings.php:4973
4972
  msgid ""
4973
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4974
  "website with many advertising features to automatically insert adverts on "
4995
  "bodo ohranile)."
4996
 
4997
  #. translators: %s HTML tags
4998
+ #: settings.php:4986
4999
  msgid "Looking for %s Pro Ad Management plugin? %s"
5000
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5001
 
5002
  #. translators: %s HTML tags
5003
+ #: settings.php:4991
5004
  msgid "Ads between posts"
5005
  msgstr "Oglasi med prispevki"
5006
 
5007
  #. translators: %s HTML tags
5008
+ #: settings.php:4992
5009
  msgid "Ads between comments"
5010
  msgstr "Oglasi med komentarji"
5011
 
5012
  #. translators: %s HTML tags
5013
+ #: settings.php:4993
5014
  msgid "Support via email"
5015
  msgstr "Podpora prek elektronske pošte"
5016
 
5017
  #. translators: %s HTML tags
5018
+ #: settings.php:4999
5019
  msgid "%s Sticky positions %s"
5020
  msgstr "%s Lepljivi položaji %s"
5021
 
5022
  #. translators: %s HTML tags
5023
+ #: settings.php:5000
5024
  msgid "%s Limit insertions %s"
5025
  msgstr "%s Omeji vstavljanja %s"
5026
 
5027
  #. translators: %s HTML tags
5028
+ #: settings.php:5001
5029
  msgid "%s Clearance %s options"
5030
  msgstr "Možnosti %s izogibanja %s"
5031
 
5032
  #. translators: %s HTML tags
5033
+ #: settings.php:5007
5034
  msgid "Ad rotation"
5035
  msgstr "Vrtenje oglasov"
5036
 
5037
  #. translators: %s HTML tags
5038
+ #: settings.php:5008
5039
  msgid "%s A/B testing %s"
5040
  msgstr "%s A/B testiranje %s"
5041
 
5042
  #. translators: %s HTML tags
5043
+ #: settings.php:5009
5044
  msgid "%s Ad tracking %s"
5045
  msgstr "%s Sledenje oglasom %s"
5046
 
5047
  #. translators: %s HTML tags
5048
+ #: settings.php:5015
5049
  msgid "Support for %s AMP pages %s"
5050
  msgstr "Podpora za %s AMP strani %s"
5051
 
5052
  #. translators: %s HTML tags
5053
+ #: settings.php:5016
5054
  msgid "%s Ad blocking detection %s"
5055
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5056
 
5057
  #. translators: %s HTML tags
5058
+ #: settings.php:5017
5059
  msgid "%s Mobile device detection %s"
5060
  msgstr "%s Zaznavanje mobilne naprave %s"
5061
 
5062
  #. translators: %s HTML tags
5063
+ #: settings.php:5024
5064
  msgid "64 code blocks"
5065
  msgstr "64 kodnih blokov"
5066
 
5067
  #. translators: %s HTML tags
5068
+ #: settings.php:5025
5069
  msgid "%s GEO targeting %s"
5070
  msgstr "%s GEO ciljanje %s"
5071
 
5072
  #. translators: %s HTML tags
5073
+ #: settings.php:5026
5074
  msgid "%s Scheduling %s"
5075
  msgstr "%s Urnik %s"
5076
 
5221
  msgstr "ne vsebujejo"
5222
 
5223
  #: strings.php:51
5224
+ msgid "Do not count"
5225
+ msgstr "Ne štej"
5226
+
5227
+ #: strings.php:52
5228
+ msgid "Count only"
5229
+ msgstr "Štej samo"
5230
+
5231
+ #: strings.php:54
5232
  msgctxt "insert for"
5233
  msgid "all users"
5234
  msgstr "vse uporabnike"
5235
 
5236
+ #: strings.php:55
5237
  msgctxt "insert for"
5238
  msgid "logged in users"
5239
  msgstr "prijavljene uporabnike"
5240
 
5241
+ #: strings.php:56
5242
  msgctxt "insert for"
5243
  msgid "not logged in users"
5244
  msgstr "neprijavljene uporabnike"
5245
 
5246
+ #: strings.php:57
5247
  msgctxt "insert for"
5248
  msgid "administrators"
5249
  msgstr "skrbnike"
5250
 
5251
+ #: strings.php:59
5252
  msgid "Black list"
5253
  msgstr "Črni seznam"
5254
 
5255
+ #: strings.php:60
5256
  msgid "White list"
5257
  msgstr "Beli seznam"
5258
 
5259
+ #: strings.php:62
5260
  msgctxt "alignment"
5261
  msgid "Default"
5262
  msgstr "Privzeta"
5263
 
5264
+ #: strings.php:63
5265
  msgctxt "alignment"
5266
  msgid "Left"
5267
  msgstr "Leva"
5268
 
5269
+ #: strings.php:64
5270
  msgctxt "alignment"
5271
  msgid "Right"
5272
  msgstr "Desna"
5273
 
5274
+ #: strings.php:65
5275
  msgctxt "alignment"
5276
  msgid "Center"
5277
  msgstr "Sredinska"
5278
 
5279
+ #: strings.php:66
5280
  msgctxt "alignment"
5281
  msgid "Float left"
5282
  msgstr "Plavajoča levo"
5283
 
5284
+ #: strings.php:67
5285
  msgctxt "alignment"
5286
  msgid "Float right"
5287
  msgstr "Plavajoča desno"
5288
 
5289
+ #: strings.php:68
5290
  msgctxt "alignment"
5291
  msgid "No wrapping"
5292
  msgstr "Brez ovijanja"
5293
 
5294
+ #: strings.php:69
5295
  msgid "Custom CSS"
5296
  msgstr "CSS po meri"
5297
 
5298
+ #: strings.php:70
5299
  msgid "Sticky left"
5300
  msgstr "Lepljiv levo"
5301
 
5302
+ #: strings.php:71
5303
  msgid "Sticky right"
5304
  msgstr "Lepljiv desno"
5305
 
5306
+ #: strings.php:72
5307
  msgid "Sticky top"
5308
  msgstr "Lepljiv zgoraj"
5309
 
5310
+ #: strings.php:73
5311
  msgid "Sticky bottom"
5312
  msgstr "Lepljiv spodaj"
5313
 
5314
+ #: strings.php:74
5315
  msgctxt "alignment"
5316
  msgid "Sticky"
5317
  msgstr "Lepljiva"
5318
 
5319
+ #: strings.php:76
5320
  msgctxt "using"
5321
  msgid "auto counter"
5322
  msgstr "samodejnega števca"
5323
 
5324
+ #: strings.php:77
5325
  msgctxt "using"
5326
  msgid "PHP function calls counter"
5327
  msgstr "števca klicev PHP funkcije"
5328
 
5329
+ #: strings.php:78
5330
  msgctxt "using"
5331
  msgid "content processing counter"
5332
  msgstr "števca procesiranja vsebine"
5333
 
5334
+ #: strings.php:79
5335
  msgctxt "using"
5336
  msgid "excerpt processing counter"
5337
  msgstr "števca procesiranja izvlečkov"
5338
 
5339
+ #: strings.php:80
5340
  msgctxt "using"
5341
  msgid "before post processing counter"
5342
  msgstr "števca pred prispevkom"
5343
 
5344
+ #: strings.php:81
5345
  msgctxt "using"
5346
  msgid "after post processing counter"
5347
  msgstr "števca za prispevkom"
5348
 
5349
+ #: strings.php:82
5350
  msgctxt "using"
5351
  msgid "widget drawing counter"
5352
  msgstr "števca risanja gradnikov"
5353
 
5354
+ #: strings.php:83
5355
  msgctxt "using"
5356
  msgid "subpages counter"
5357
  msgstr "števca podstrani"
5358
 
5359
+ #: strings.php:84
5360
  msgctxt "using"
5361
  msgid "posts counter"
5362
  msgstr "števca prispevkov"
5363
 
5364
+ #: strings.php:85
5365
  msgctxt "using"
5366
  msgid "paragraphs counter"
5367
  msgstr "števca odstavkov"
5368
 
5369
+ #: strings.php:86
5370
  msgctxt "using"
5371
  msgid "comments counter"
5372
  msgstr "števca komentarjev"
5373
 
5374
+ #: strings.php:87
5375
  msgctxt "using"
5376
  msgid "images counter"
5377
  msgstr "števca slik"
5378
 
5379
+ #: strings.php:90
5380
  msgctxt "posts"
5381
  msgid "Individually disabled"
5382
  msgstr "Posamezno onemogočeni"
5383
 
5384
+ #: strings.php:91
5385
  msgctxt "posts"
5386
  msgid "Individually enabled"
5387
  msgstr "Posamezno omogočeni"
5388
 
5389
+ #: strings.php:93
5390
  msgctxt "static pages"
5391
  msgid "Individually disabled"
5392
  msgstr "Posamezno onemogočene"
5393
 
5394
+ #: strings.php:94
5395
  msgctxt "static pages"
5396
  msgid "Individually enabled"
5397
  msgstr "Posamezno omogočene"
5398
 
5399
+ #: strings.php:96
5400
  msgid "Server-side"
5401
  msgstr "Na strani strežnika"
5402
 
5403
+ #: strings.php:97
5404
  msgctxt "Insertion"
5405
  msgid "Client-side"
5406
  msgstr "Na strani klienta"
5407
 
5408
+ #: strings.php:98
5409
  msgctxt "Dynamic blocks"
5410
  msgid "Client-side show"
5411
  msgstr "Prikaži na strani klienta"
5412
 
5413
+ #: strings.php:99
5414
  msgctxt "Dynamic blocks"
5415
  msgid "Client-side insert"
5416
  msgstr "Vstavi na strani klienta"
5417
 
5418
+ #: strings.php:100
5419
  msgctxt "Insertion"
5420
  msgid "Server-side using W3 Total Cache"
5421
  msgstr "Na strani strežnika z uporabo W3 Total Cache"
5422
 
5423
+ #: strings.php:101
5424
  msgctxt "Insertion"
5425
  msgid "Client-side when DOM ready"
5426
  msgstr "Na strani klienta, ko je DOM pripravljen"
5427
 
5428
+ #: strings.php:106
5429
  msgid "Replace element"
5430
  msgstr "Nadomesti element"
5431
 
5432
+ #: strings.php:108
5433
  msgid "desktop devices"
5434
  msgstr "namizne naprave"
5435
 
5436
+ #: strings.php:109
5437
  msgid "mobile devices"
5438
  msgstr "mobilne naprave"
5439
 
5440
+ #: strings.php:110
5441
  msgid "tablet devices"
5442
  msgstr "tablične naprave"
5443
 
5444
+ #: strings.php:111
5445
  msgid "phone devices"
5446
  msgstr "telefonske naprave"
5447
 
5448
+ #: strings.php:112
5449
  msgid "desktop and tablet devices"
5450
  msgstr "namizne in telefonske naprave"
5451
 
5452
+ #: strings.php:113
5453
  msgid "desktop and phone devices"
5454
  msgstr "tablične in telefonske naprave"
5455
 
5456
+ #: strings.php:115
5457
  msgid "Stick to the left"
5458
  msgstr "Lepljiv na levi"
5459
 
5460
+ #: strings.php:116
5461
  msgid "Stick to the content left"
5462
  msgstr "Lepljiv na vsebino levo"
5463
 
5464
+ #: strings.php:117
5465
  msgid "Stick to the content right"
5466
  msgstr "Lepljiv na vsebino desno"
5467
 
5468
+ #: strings.php:118
5469
  msgid "Stick to the right"
5470
  msgstr "Lepljiv na desni"
5471
 
5472
+ #: strings.php:120
5473
  msgid "Stick to the top"
5474
  msgstr "Lepljiv na vrh"
5475
 
5476
+ #: strings.php:121
5477
  msgid "Scroll with the content"
5478
  msgstr "Pomikaj z vsebino"
5479
 
5480
+ #: strings.php:122
5481
  msgid "Stick to the bottom"
5482
  msgstr "Lepljiv na dno"
5483
 
5484
+ #: strings.php:124
5485
  msgid "Fade"
5486
  msgstr "Uveni"
5487
 
5488
+ #: strings.php:125
5489
  msgid "Slide"
5490
  msgstr "Drsaj"
5491
 
5492
+ #: strings.php:126
5493
  msgid "Slide and Fade"
5494
  msgstr "Drsaj in Uveni"
5495
 
5496
+ #: strings.php:127
5497
  msgid "Flip"
5498
  msgstr "Zavrti"
5499
 
5500
+ #: strings.php:128
5501
  msgid "Zoom In"
5502
  msgstr "Približaj"
5503
 
5504
+ #: strings.php:129
5505
  msgid "Zoom Out"
5506
  msgstr "Oddalji"
5507
 
5508
+ #: strings.php:130
5509
  msgid "Turn"
5510
  msgstr "Obrni"
5511
 
5512
+ #: strings.php:132
5513
  msgid "Page loaded"
5514
  msgstr "Stran naložena"
5515
 
5516
+ #: strings.php:133
5517
  msgid "Page scrolled (%)"
5518
  msgstr "Stran pomaknjena (%)"
5519
 
5520
+ #: strings.php:134
5521
  msgid "Page scrolled (px)"
5522
  msgstr "Stran pomaknjena (px)"
5523
 
5524
+ #: strings.php:135
5525
  msgid "Element visible"
5526
  msgstr "Element viden"
5527
 
5528
+ #: strings.php:137
5529
  msgid "Insert immediately"
5530
  msgstr "Vstavi takoj"
5531
 
5532
+ #: strings.php:138
5533
  msgid "Delay insertion"
5534
  msgstr "Zakasni vstavljanje"
5535
 
5536
+ #: strings.php:139
5537
  msgid "Insert between dates"
5538
  msgstr "Vstavi med datumoma"
5539
 
5540
+ #: strings.php:140
5541
  msgid "Insert outside dates"
5542
  msgstr "Vstavi izven datumov"
5543
 
5544
+ #: strings.php:141
5545
  msgid "Insert only"
5546
  msgstr "Vstavi samo"
5547
 
5548
+ #: strings.php:142
5549
  msgid "Insert for posts published between dates"
5550
  msgstr "Vstavi samo za prispevke objavljene med datumoma"
5551
 
5552
+ #: strings.php:143
5553
  msgid "Insert for posts published outside dates"
5554
  msgstr "Vstavi samo za prispevke objavljene izven datumov"
5555
 
5556
+ #: strings.php:145
5557
  msgctxt "functions"
5558
  msgid "Standard"
5559
  msgstr "Običajne"
5560
 
5561
+ #: strings.php:146
5562
  msgctxt "detection"
5563
  msgid "Standard"
5564
  msgstr "Običajno"
5565
 
5566
+ #: strings.php:147
5567
  msgctxt "functions"
5568
  msgid "Multibyte"
5569
  msgstr "Večznakovne"
5570
 
5571
+ #: strings.php:149
5572
  msgctxt "action"
5573
  msgid "None"
5574
  msgstr "Nobena"
5575
 
5576
+ #: strings.php:150
5577
  msgctxt "button"
5578
  msgid "None"
5579
  msgstr "Noben"
5580
 
5581
+ #: strings.php:151
5582
  msgid "Popup Message"
5583
  msgstr "Pojavno Sporočilo"
5584
 
5585
+ #: strings.php:152
5586
  msgid "Redirection"
5587
  msgstr "Preusmeritev"
5588
 
5589
+ #: strings.php:154
5590
  msgid "Do nothnig"
5591
  msgstr "Ne naredi ničesar"
5592
 
5593
+ #: strings.php:156
5594
  msgctxt "Action when ad blocking detected"
5595
  msgid "Show"
5596
  msgstr "Pokaži"
5597
 
5598
+ #: strings.php:157
5599
  msgctxt "Action when ad blocking detected"
5600
  msgid "Hide"
5601
  msgstr "Skrij"
5602
 
5603
+ #: strings.php:159
5604
  msgctxt "tracking"
5605
  msgid "Internal"
5606
  msgstr "Interno"
5607
 
5608
+ #: strings.php:160
5609
  msgctxt "detection"
5610
  msgid "Advanced"
5611
  msgstr "Napredno"
5612
 
5613
+ #: strings.php:163
5614
  msgid "Top right"
5615
  msgstr "Zgoraj desno"
5616
 
5617
+ #: strings.php:164
5618
  msgid "Top left"
5619
  msgstr "Zgoraj levo"
5620
 
5621
+ #: strings.php:165
5622
  msgid "Bottom right"
5623
  msgstr "Spodaj desno"
5624
 
5625
+ #: strings.php:166
5626
  msgid "Bottom left"
5627
  msgstr "Spodaj levo"
5628
 
5629
+ #: strings.php:168
5630
  msgctxt "AdSense Ad Type"
5631
  msgid "Standard"
5632
  msgstr "Običajni"
5633
 
5634
+ #: strings.php:169
5635
  msgctxt "AdSense Ad Type"
5636
  msgid "Link"
5637
  msgstr "Povezave"
5638
 
5639
+ #: strings.php:170
5640
  msgctxt "AdSense Ad Type"
5641
  msgid "In-article"
5642
  msgstr "V članku"
5643
 
5644
+ #: strings.php:171
5645
  msgctxt "AdSense Ad Type"
5646
  msgid "In-feed"
5647
  msgstr "V viru"
5648
 
5649
+ #: strings.php:172
5650
  msgctxt "AdSense Ad Type"
5651
  msgid "Matched content"
5652
  msgstr "Prilagojena vsebina"
5653
 
5654
+ #: strings.php:173
5655
  msgctxt "AdSense Ad Type"
5656
  msgid "Auto Ads"
5657
  msgstr "Samodejni"
5658
 
5659
+ #: strings.php:175
5660
  msgctxt "AMP ad"
5661
  msgid "Disabled"
5662
  msgstr "Onemogočen"
5663
 
5664
+ #: strings.php:176
5665
  msgid "Above the fold"
5666
  msgstr "Nad pregibom"
5667
 
5668
+ #: strings.php:177
5669
  msgid "Below the fold"
5670
  msgstr "Pod pregibom"
5671
 
5672
+ #: strings.php:179
5673
  msgctxt "size"
5674
  msgid "Fixed"
5675
  msgstr "Fiksna"
5676
 
5677
+ #: strings.php:180
5678
  msgctxt "size"
5679
  msgid "Responsive"
5680
  msgstr "Odzivna"
5681
 
5682
+ #: strings.php:181
5683
  msgctxt "size"
5684
  msgid "Fixed by viewport"
5685
  msgstr "Fiksna glede na pogled"
5686
 
5687
+ #: strings.php:185
5688
  msgid "Impressions and clicks"
5689
  msgstr "Prikazi in Kliki"
5690
 
5691
+ #: strings.php:186
5692
  msgid "Advanced WordPress Ad Management Plugin"
5693
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
5694
 
5695
+ #: strings.php:192
5696
  msgctxt "Button"
5697
  msgid "Hide"
5698
  msgstr "Skrij"
5699
 
5700
+ #: strings.php:193
5701
  msgctxt "Button"
5702
  msgid "Show"
5703
  msgstr "Pokaži"
5704
 
5705
+ #: strings.php:194
5706
  msgid "Insertion expired"
5707
  msgstr "Vstavljanje poteklo"
5708
 
5709
+ #: strings.php:195
5710
  msgid "Duration"
5711
  msgstr "Trajanje"
5712
 
5713
+ #: strings.php:196
5714
  msgid "Invalid end date - must be after start date"
5715
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5716
 
5717
+ #: strings.php:197
5718
  msgid "Invalid start date - only data for 1 year back is available"
5719
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5720
 
5721
+ #: strings.php:198
5722
  msgid "Invalid date range - only data for 1 year can be displayed"
5723
  msgstr ""
5724
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5725
 
5726
+ #: strings.php:206
5727
  msgid "Delete"
5728
  msgstr "Pobriši"
5729
 
5730
+ #: strings.php:207
5731
  msgid "Switch"
5732
  msgstr "Preklopi"
5733
 
5734
+ #: strings.php:209
5735
  msgid "Delete all statistics data?"
5736
  msgstr "Pobrišem vse podatke o statistiki?"
5737
 
5738
  #. translators: %s: dates
5739
+ #: strings.php:211
5740
  msgid "Delete statistics data between %s and %s?"
5741
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5742
 
5743
+ #: strings.php:212
5744
  msgid "Cancel block order rearrangement"
5745
  msgstr "Prekliči preureditev vrstnega reda blokov"
5746
 
5747
+ #: strings.php:214
5748
  msgid "downloading..."
5749
  msgstr "prenašam..."
5750
 
5751
+ #: strings.php:215
5752
  msgid "download error"
5753
  msgstr "napaka pri prenosu"
5754
 
5755
+ #: strings.php:216
5756
  msgid "update error"
5757
  msgstr "napaka pri posodobitvi"
5758
 
5759
+ #: strings.php:217
5760
  msgid "Updating..."
5761
  msgstr "Posodabljam..."
5762
 
5763
+ #: strings.php:219
5764
  msgid "ERROR"
5765
  msgstr "NAPAKA"
5766
 
5767
+ #: strings.php:220
5768
  msgid "Error reloading settings"
5769
  msgstr "Napaka pri nalaganju nastavitev"
5770
 
5771
+ #: strings.php:222
5772
  msgctxt "Search field placeholder"
5773
  msgid "Search..."
5774
  msgstr "Išči..."
5775
 
5776
+ #: strings.php:223
5777
  msgctxt "Search field placeholder"
5778
  msgid "Filter..."
5779
  msgstr "Filter..."
5780
 
5781
+ #: strings.php:224
5782
  msgid "Use filter to limit names in the list"
5783
  msgstr "Uporabite filter za omejitev imen v seznamu"
5784
 
5785
+ #: strings.php:225
5786
  msgctxt "Button"
5787
  msgid "Filter"
5788
  msgstr "Filter"
5789
 
5790
+ #: strings.php:227
5791
  msgid "Position not available"
5792
  msgstr "Položaj ni na razpolago"
5793
 
5794
+ #: strings.php:228
5795
  msgid ""
5796
  "Theme check | Selected position for automatic insertion might not be not "
5797
  "available on this page type"
5799
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5800
  "razpolago na tem tipu strani"
5801
 
5802
+ #: strings.php:229
5803
  msgid "Position available"
5804
  msgstr "Položaj na razpolago"
5805
 
5806
+ #: strings.php:231
5807
  msgid "Select or upload banner image"
5808
  msgstr "Izberi ali naloži sliko pasice"
5809
 
5810
+ #: strings.php:232
5811
  msgid "Use this image"
5812
  msgstr "Uporabi to sliko"
5813
 
5814
+ #: strings.php:233
5815
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5816
  msgstr ""
5817
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
5818
 
5819
+ #: strings.php:247
5820
  msgid "Add"
5821
  msgstr "Dodaj"
5822
 
5823
+ #: strings.php:248
5824
  msgid "Parent"
5825
  msgstr "Starš"
5826
 
5827
+ #: strings.php:249
5828
  msgid "Cancel element selection"
5829
  msgstr "Prekliči izbor HTML elementa"
5830
 
5831
+ #: strings.php:250
5832
  msgid "Select parent element"
5833
  msgstr "Izberi starševski element"
5834
 
5835
+ #: strings.php:251
5836
  msgid "CSS selector"
5837
  msgstr "CSS selektor"
5838
 
5839
+ #: strings.php:252
5840
  msgid "Use current selector"
5841
  msgstr "Uporabi trenutni selektor"
5842
 
5843
+ #: strings.php:253
5844
  msgid "ELEMENT"
5845
  msgstr "ELEMENT"
5846
 
5847
+ #: strings.php:254
5848
  msgid "PATH"
5849
  msgstr "POT"
5850
 
5851
+ #: strings.php:255
5852
  msgid "SELECTOR"
5853
  msgstr "SELEKTOR"
5854
 
5855
+ #: strings.php:256
5856
  msgctxt "Block"
5857
  msgid "VISIBLE"
5858
  msgstr "VIDEN"
5859
 
5860
+ #: strings.php:257
5861
  msgctxt "Block"
5862
  msgid "HIDDEN"
5863
  msgstr "SKRIT"
5870
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5871
  "na optimalna mesta"
5872
 
5873
+ #~ msgid "Individual exceptions for posts"
5874
+ #~ msgstr "Posamezne izjeme za prispevke"
5875
+
5876
+ #~ msgid ""
5877
+ #~ "Define function of exceptions for posts for this block. Individual post "
5878
+ #~ "exceptions (if enabled here) can be configured in post editor."
5879
+ #~ msgstr ""
5880
+ #~ "Določite funkcijo izjem za prispevke za ta blok. Posamezne izjeme za "
5881
+ #~ "prispevke (če so omogočene tukaj) se lahko nastavijo v urejevalniku "
5882
+ #~ "prispevka."
5883
+
5884
+ #~ msgid ""
5885
+ #~ "No post with enabled insertion defined. Block will not be inserted into "
5886
+ #~ "posts."
5887
+ #~ msgstr ""
5888
+ #~ "Ni določen noben prispevek z omogočenim vstavljanjem. Blok ne bo "
5889
+ #~ "vstavljen v prispevke."
5890
+
5891
+ #~ msgid "Individual exceptions for static pages"
5892
+ #~ msgstr "Posamezne izjeme za statične strani"
5893
+
5894
+ #~ msgid ""
5895
+ #~ "Define function of exceptions for static pages for this block. Individual "
5896
+ #~ "static page exceptions (if enabled here) can be configured in page editor."
5897
+ #~ msgstr ""
5898
+ #~ "Določite funkcijo izjem za statične strani za ta blok. Posamezne izjeme "
5899
+ #~ "za statične strani (če so omogočene tukaj) se lahko nastavijo v "
5900
+ #~ "urejevalniku strani."
5901
+
5902
+ #~ msgid ""
5903
+ #~ "No static page with enabled insertion defined. Block will not be inserted "
5904
+ #~ "into static pages."
5905
+ #~ msgstr ""
5906
+ #~ "Ni določena nobena statična stran z omogočenim vstavljanjem. Blok ne bo "
5907
+ #~ "vstavljen v statične strani."
5908
+
5909
+ #~ msgid "Save Changes"
5910
+ #~ msgstr "Shrani Spremembe"
5911
+
5912
+ #~ msgid "WordPress is installed in %s"
5913
+ #~ msgstr "WordPress je nameščen v %s"
5914
+
5915
  #~ msgid "Default insertion for pages"
5916
  #~ msgstr "Privzeto vstavljanje za strani"
5917
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.5.0\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-08-20 18:00:03+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,439 +12,441 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:386
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:402
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:409
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:480
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:487
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:496
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:503
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:513
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1114
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1119
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1124 strings.php:100
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1129 strings.php:101
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1134 strings.php:102
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1139 strings.php:152
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1186
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1190
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1399
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1724 ad-inserter.php:2594
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2162
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2162
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2163
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2164
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2165
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2166
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2167
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2366
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2367 includes/functions.php:1662
 
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
- #: ad-inserter.php:2370
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
- #: ad-inserter.php:2371 includes/functions.php:1665
 
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
- #: ad-inserter.php:2381
158
  msgid "I would really appreciate if you could rate the plugin on WordPres."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2383
162
  msgid ""
163
  "Positive reviews are a great incentive to fix bugs and to add new features "
164
  "for better monetization of your website. Thank you, Igor"
165
  msgstr ""
166
 
167
  #. translators: %s: Ad Inserter
168
- #: ad-inserter.php:2389
169
  msgid "Rate %s"
170
  msgstr ""
171
 
172
- #: ad-inserter.php:2394
173
  msgid "I already did."
174
  msgstr ""
175
 
176
- #: ad-inserter.php:2411
177
  msgctxt "Menu item"
178
  msgid "Settings"
179
  msgstr ""
180
 
181
  #. translators: %s: Ad Inserter
182
- #: ad-inserter.php:2485
183
  msgctxt "Meta box name"
184
  msgid "%s Individual Exceptions"
185
  msgstr ""
186
 
187
- #: ad-inserter.php:2514 ad-inserter.php:8499 class.php:1997
188
  #: includes/preview.php:1976 includes/preview.php:2020
189
- #: includes/preview.php:2057 settings.php:4046 strings.php:3
190
  msgid "Block"
191
  msgstr ""
192
 
193
- #: ad-inserter.php:2515 settings.php:4047 settings.php:4132
194
  msgid "Name"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2518 settings.php:1104
198
  msgid "Default insertion"
199
  msgstr ""
200
 
201
  #. translators: For this post or page
202
- #: ad-inserter.php:2521
203
  msgctxt "Page"
204
  msgid "For this"
205
  msgstr ""
206
 
207
- #: ad-inserter.php:2522
208
  msgctxt "Post"
209
  msgid "For this"
210
  msgstr ""
211
 
212
- #: ad-inserter.php:2534
213
  msgctxt "Enabled/disabled on all"
214
  msgid "pages"
215
  msgstr ""
216
 
217
- #: ad-inserter.php:2537
218
  msgctxt "Enabled/disabled on all"
219
  msgid "posts"
220
  msgstr ""
221
 
222
- #: ad-inserter.php:2555 ad-inserter.php:2567 strings.php:158
223
  msgid "Enabled"
224
  msgstr ""
225
 
226
  #. translators: Menu items
227
- #: ad-inserter.php:2555 ad-inserter.php:2567 includes/functions.php:2323
228
- #: strings.php:16
229
  msgid "Disabled"
230
  msgstr ""
231
 
232
- #: ad-inserter.php:2557
233
  msgid "No individual exceptions"
234
  msgstr ""
235
 
236
  #. translators: Not enabled for pages or posts
237
- #: ad-inserter.php:2559
238
  msgid "Not enabled for"
239
  msgstr ""
240
 
241
  #. translators: No individual exceptions enabled for pages or posts
242
- #: ad-inserter.php:2587
243
  msgid "No block has individual exceptions enabled"
244
  msgstr ""
245
 
246
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
247
- #: ad-inserter.php:2592
248
  msgid ""
249
  "Default insertion can be configured for each block on %1$s page - button "
250
  "next to %2$s checkbox."
251
  msgstr ""
252
 
253
- #: ad-inserter.php:2595 settings.php:1082
254
  msgid "Tag / Archive pages"
255
  msgstr ""
256
 
257
- #: ad-inserter.php:2597
258
  msgid ""
259
  "When individual exceptions for a block are enabled, a checkbox will be "
260
  "listed here to change default insertion for this post or page."
261
  msgstr ""
262
 
263
- #: ad-inserter.php:2598
264
  msgid ""
265
  "This way you can individually enable or disable blocks on specific posts or "
266
  "pages."
267
  msgstr ""
268
 
269
- #: ad-inserter.php:2600
270
  msgid "For more information check page %s"
271
  msgstr ""
272
 
273
  #. translators: Ad Inserter Exceptions documentation page
274
- #: ad-inserter.php:2602
275
  msgid "Individual Exceptions"
276
  msgstr ""
277
 
278
- #: ad-inserter.php:2649
279
  msgid "STATIC PAGE"
280
  msgstr ""
281
 
282
- #: ad-inserter.php:2652
283
  msgid "POST"
284
  msgstr ""
285
 
286
- #: ad-inserter.php:2655
287
  msgid "HOMEPAGE"
288
  msgstr ""
289
 
290
- #: ad-inserter.php:2658
291
  msgid "CATEGORY PAGE"
292
  msgstr ""
293
 
294
- #: ad-inserter.php:2661
295
  msgid "SEARCH PAGE"
296
  msgstr ""
297
 
298
- #: ad-inserter.php:2664
299
  msgid "ARCHIVE PAGE"
300
  msgstr ""
301
 
302
- #: ad-inserter.php:2667
303
  msgid "ERROR 404 PAGE"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:2670
307
  msgid "AJAX CALL"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:2673
311
  msgid "UNKNOWN PAGE TYPE"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:2690
315
  msgid "Click to delete ad blocking detection cokies"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:2691
319
  msgid "AD BLOCKING STATUS UNKNOWN"
320
  msgstr ""
321
 
322
  #. translators: %s: AdSense Auto Ads
323
- #: ad-inserter.php:2715
324
  msgid ""
325
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
326
  "positions"
327
  msgstr ""
328
 
329
- #: ad-inserter.php:2854
330
  msgid "Code for insertion"
331
  msgstr ""
332
 
333
- #: ad-inserter.php:2854
334
  msgid "character"
335
  msgid_plural "characters"
336
  msgstr[0] ""
337
  msgstr[1] ""
338
 
339
- #: ad-inserter.php:2897
340
  msgid "Header code"
341
  msgstr ""
342
 
343
- #: ad-inserter.php:2897
344
  msgctxt "Header code"
345
  msgid "DISABLED"
346
  msgstr ""
347
 
348
- #: ad-inserter.php:2897 ad-inserter.php:3120
349
  msgid "character inserted"
350
  msgid_plural "characters inserted"
351
  msgstr[0] ""
352
  msgstr[1] ""
353
 
354
- #: ad-inserter.php:2931
355
  msgid "Automatically placed by AdSense Auto ads code"
356
  msgstr ""
357
 
358
- #: ad-inserter.php:3120
359
  msgid "Footer code"
360
  msgstr ""
361
 
362
- #: ad-inserter.php:3120
363
  msgctxt "Footer code"
364
  msgid "DISABLED"
365
  msgstr ""
366
 
367
- #: ad-inserter.php:3126
368
  msgid "JAVASCRIPT NOT WORKING"
369
  msgstr ""
370
 
371
- #: ad-inserter.php:3126
372
  msgid "NO JAVASCRIPT ERRORS"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3126
376
  msgid "JAVASCRIPT ERRORS"
377
  msgstr ""
378
 
379
  #. translators: block name (block with default settings)
380
- #: ad-inserter.php:5364
381
  msgctxt "Block name"
382
  msgid "Default"
383
  msgstr ""
384
 
385
  #. translators: %s: Ad Inserter
386
- #: ad-inserter.php:5946
387
  msgid "Error importing %s settings."
388
  msgstr ""
389
 
390
- #: ad-inserter.php:5947
391
  msgid "Error importing settings for block"
392
  msgid_plural "Error importing settings for blocks:"
393
  msgstr[0] ""
394
  msgstr[1] ""
395
 
396
- #: ad-inserter.php:5996
397
  msgid "Settings saved."
398
  msgstr ""
399
 
400
- #: ad-inserter.php:6083
401
  msgid "Settings cleared."
402
  msgstr ""
403
 
404
- #: ad-inserter.php:6428 ad-inserter.php:6430 ad-inserter.php:6453
405
  msgid "word"
406
  msgid_plural "words"
407
  msgstr[0] ""
408
  msgstr[1] ""
409
 
410
- #: ad-inserter.php:6467 ad-inserter.php:6579
411
  msgid "HTML TAGS REMOVED"
412
  msgstr ""
413
 
414
- #: ad-inserter.php:6655
415
  msgid "BEFORE COMMENTS"
416
  msgstr ""
417
 
418
- #: ad-inserter.php:6763
419
  msgid "AFTER COMMENTS"
420
  msgstr ""
421
 
422
- #: ad-inserter.php:6826
423
  msgid "BETWEEN COMMENTS"
424
  msgstr ""
425
 
426
- #: ad-inserter.php:8133
427
  msgid "requires WordPress 4.0 or newer"
428
  msgstr ""
429
 
430
- #: ad-inserter.php:8133
431
  msgid "Please update!"
432
  msgstr ""
433
 
434
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
435
  #. name with HTML tags will be added)
436
- #: ad-inserter.php:8372
437
  msgid "Thank you for installing"
438
  msgstr ""
439
 
440
  #. translators: Opt-in message: %s: HTML tags
441
- #: ad-inserter.php:8374
442
  msgid ""
443
  "We would like to %s track its usage %s on your site. This is completely "
444
  "optional and can be disabled at any time."
445
  msgstr ""
446
 
447
- #: ad-inserter.php:8376
448
  msgid ""
449
  "We don't record any sensitive data, only information regarding the WordPress "
450
  "environment and plugin usage, which will help us to make improvements to the "
@@ -452,7 +454,7 @@ msgid ""
452
  msgstr ""
453
 
454
  #. translators: Deactivation message: %s: HTML tags
455
- #: ad-inserter.php:8413
456
  msgid ""
457
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
458
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -460,56 +462,56 @@ msgid ""
460
  msgstr ""
461
 
462
  #. translators: %s: Ad Inserter
463
- #: ad-inserter.php:8456
464
  msgid "%s block."
465
  msgstr ""
466
 
467
  #. translators: widget title
468
- #: ad-inserter.php:8472 ad-inserter.php:8508
469
  msgid "Processing log"
470
  msgstr ""
471
 
472
  #. translators: widget title
473
- #: ad-inserter.php:8474 ad-inserter.php:8509
474
  msgid "Dummy widget"
475
  msgstr ""
476
 
477
  #. translators: widget title
478
- #: ad-inserter.php:8476 ad-inserter.php:8507
479
  msgid "Debugging tools"
480
  msgstr ""
481
 
482
  #. translators: block status (widget title)
483
- #: ad-inserter.php:8483
484
  msgctxt "block"
485
  msgid "PAUSED"
486
  msgstr ""
487
 
488
- #: ad-inserter.php:8484
489
  msgid "WIDGET DISABLED"
490
  msgstr ""
491
 
492
- #: ad-inserter.php:8485
493
  msgid "Unknown block"
494
  msgstr ""
495
 
496
- #: ad-inserter.php:8494 includes/functions.php:3183 settings.php:1133
497
- #: settings.php:1188 settings.php:1234
498
  msgid "Title"
499
  msgstr ""
500
 
501
- #: ad-inserter.php:8516
502
  msgctxt "Widget"
503
  msgid "Sticky"
504
  msgstr ""
505
 
506
- #: ad-inserter.php:8565
507
  msgid ""
508
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
509
  "Inserter you need to first deactivate Ad Inserter Pro."
510
  msgstr ""
511
 
512
- #: ad-inserter.php:8566
513
  msgid ""
514
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
515
  "will clear all settings that are available only in the Pro version "
@@ -521,137 +523,137 @@ msgstr ""
521
  msgid "PHP error in %s block"
522
  msgstr ""
523
 
524
- #: class.php:1963
525
  msgid "Counters"
526
  msgstr ""
527
 
528
- #: class.php:1967
529
  msgid "Content"
530
  msgstr ""
531
 
532
- #: class.php:1972
533
  msgid "Excerpt"
534
  msgstr ""
535
 
536
- #: class.php:1977 strings.php:17
537
  msgid "Before post"
538
  msgstr ""
539
 
540
- #: class.php:1982 strings.php:18
541
  msgid "After post"
542
  msgstr ""
543
 
544
- #: class.php:1987 settings.php:1812 settings.php:4064
545
  msgid "Widget"
546
  msgstr ""
547
 
548
- #: class.php:1992 settings.php:4062
549
  msgid "PHP function call"
550
  msgstr ""
551
 
552
- #: class.php:2027
553
  msgid "AJAX REQUEST"
554
  msgstr ""
555
 
556
- #: class.php:2030
557
  msgid "Ajax request for block in iframe"
558
  msgstr ""
559
 
560
- #: class.php:2060
561
  msgid "Ajax request url, click to open it in a new tab"
562
  msgstr ""
563
 
564
- #: class.php:2063
565
  msgid "IN THE LOOP"
566
  msgstr ""
567
 
568
- #: class.php:2063
569
  msgid "YES"
570
  msgstr ""
571
 
572
- #: class.php:2063
573
  msgid "NO"
574
  msgstr ""
575
 
576
- #: class.php:2099
577
  msgid "BLOCK"
578
  msgstr ""
579
 
580
- #: class.php:2099
581
  msgctxt "block or widget"
582
  msgid "INSERTED BUT NOT VISIBLE"
583
  msgstr ""
584
 
585
- #: class.php:2545 class.php:2604
586
  msgid "ACTIVE GROUPS"
587
  msgstr ""
588
 
589
  #. translators: %s: list parameters and type
590
- #: class.php:2779
591
  msgid "parameters='%s' type='%s'"
592
  msgstr ""
593
 
594
  #. translators: %s: list parameters and type
595
- #: class.php:2781
596
  msgid "referers='%s' type='%s'"
597
  msgstr ""
598
 
599
  #. translators: %s: list parameters and type
600
- #: class.php:2842
601
  msgid "countries='%s' type='%s'"
602
  msgstr ""
603
 
604
  #. translators: %s: list parameters and type
605
- #: class.php:2844
606
  msgid "ip addresses='%s' type='%s'"
607
  msgstr ""
608
 
609
- #: class.php:3113 strings.php:236
610
  msgid "BEFORE"
611
  msgstr ""
612
 
613
- #: class.php:3121 strings.php:238
614
  msgid "PREPEND CONTENT"
615
  msgstr ""
616
 
617
- #: class.php:3125 strings.php:239
618
  msgid "APPEND CONTENT"
619
  msgstr ""
620
 
621
- #: class.php:3129 strings.php:240
622
  msgid "REPLACE CONTENT"
623
  msgstr ""
624
 
625
- #: class.php:3133 strings.php:241
626
  msgid "REPLACE ELEMENT"
627
  msgstr ""
628
 
629
- #: class.php:3144 strings.php:237
630
  msgid "AFTER"
631
  msgstr ""
632
 
633
- #: class.php:3211
634
  msgctxt "JavaScript"
635
  msgid "script"
636
  msgstr ""
637
 
638
- #: class.php:3214 settings.php:2081
639
  msgid "for"
640
  msgstr ""
641
 
642
- #: class.php:6009 class.php:6061
643
  msgctxt "category name"
644
  msgid "Uncategorized"
645
  msgstr ""
646
 
647
- #: class.php:6554
648
  msgid ""
649
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
650
  "extension for PHP."
651
  msgstr ""
652
 
653
  #: includes/editor.php:7 includes/placeholders.php:352
654
- #: includes/preview.php:1962 strings.php:243
655
  msgid "Use"
656
  msgstr ""
657
 
@@ -660,7 +662,7 @@ msgid "Reset"
660
  msgstr ""
661
 
662
  #: includes/editor.php:9 includes/placeholders.php:354
663
- #: includes/preview.php:1965 settings.php:3474 strings.php:205 strings.php:242
664
  msgid "Cancel"
665
  msgstr ""
666
 
@@ -675,7 +677,7 @@ msgid ""
675
  "blockers."
676
  msgstr ""
677
 
678
- #: includes/editor.php:264 settings.php:242
679
  msgid "Error loading page"
680
  msgstr ""
681
 
@@ -684,521 +686,550 @@ msgstr ""
684
  msgid "PAGE BLOCKED"
685
  msgstr ""
686
 
687
- #: includes/functions.php:299
688
  msgid "%d of %d names shown"
689
  msgstr ""
690
 
691
  #. translators: %s: name filter
692
- #: includes/functions.php:318
693
  msgid "No name matches filter"
694
  msgstr ""
695
 
696
  #. translators: %s: Ad Inserter Pro
697
- #: includes/functions.php:393
698
  msgid ""
699
  "Import %s settings when saving - if checked, the encoded settings below will "
700
  "be imported for all blocks and settings"
701
  msgstr ""
702
 
703
- #: includes/functions.php:393
704
  msgid "Import Settings for"
705
  msgstr ""
706
 
707
- #: includes/functions.php:397
708
  msgid "Saved settings for"
709
  msgstr ""
710
 
711
- #: includes/functions.php:417
712
  msgid "License Key"
713
  msgstr ""
714
 
715
- #: includes/functions.php:420
716
  msgid "License Key for"
717
  msgstr ""
718
 
719
- #: includes/functions.php:423
720
  msgid "Open license page"
721
  msgstr ""
722
 
723
- #: includes/functions.php:431
724
  msgid "Hide license key"
725
  msgstr ""
726
 
727
- #: includes/functions.php:431
728
  msgid "Hide key"
729
  msgstr ""
730
 
731
- #: includes/functions.php:446
732
  msgid "Main content element"
733
  msgstr ""
734
 
735
- #: includes/functions.php:449
736
  msgid ""
737
  "Main content element (#id or .class) for 'Stick to the content' position. "
738
  "Leave empty unless position is not properly calculated."
739
  msgstr ""
740
 
741
- #: includes/functions.php:450 settings.php:1382 settings.php:2695
 
742
  msgid "Open HTML element selector"
743
  msgstr ""
744
 
745
- #: includes/functions.php:455
746
  msgid "Lazy loading offset"
747
  msgstr ""
748
 
749
- #: includes/functions.php:458
750
  msgid "Offset of the block from the visible viewport when it should be loaded"
751
  msgstr ""
752
 
753
- #: includes/functions.php:469
754
  msgid "Export / Import Block Settings"
755
  msgstr ""
756
 
757
- #: includes/functions.php:484
758
  msgid "Track impressions and clicks for this block"
759
  msgstr ""
760
 
761
- #: includes/functions.php:484
762
  msgid " - global tracking disabled"
763
  msgstr ""
764
 
765
- #: includes/functions.php:491
766
  msgid "Generate PDF report"
767
  msgstr ""
768
 
769
- #: includes/functions.php:496
770
  msgid "Open public report"
771
  msgstr ""
772
 
773
- #: includes/functions.php:510
774
  msgid "Toggle Ad Blocking Statistics"
775
  msgstr ""
776
 
777
- #: includes/functions.php:518 includes/functions.php:2957
 
778
  msgid "Toggle Statistics"
779
  msgstr ""
780
 
781
  #. translators: %s: Ad Inserter Pro
782
- #: includes/functions.php:534
783
  msgid "%s license key is not set. Continue?"
784
  msgstr ""
785
 
786
  #. translators: %s: Ad Inserter Pro
787
- #: includes/functions.php:538
788
  msgid "Invalid %s license key. Continue?"
789
  msgstr ""
790
 
791
  #. translators: %s: Ad Inserter Pro
792
- #: includes/functions.php:542
793
  msgid "%s license overused. Continue?"
794
  msgstr ""
795
 
796
- #: includes/functions.php:546 settings.php:2152
797
  msgid "Save Settings"
798
  msgstr ""
799
 
800
- #: includes/functions.php:606 includes/preview.php:2106
 
801
  msgid "Horizontal position"
802
  msgstr ""
803
 
804
- #: includes/functions.php:629
805
  msgid ""
806
  "Horizontal margin from the content or screen edge, empty means default value "
807
  "from CSS"
808
  msgstr ""
809
 
810
- #: includes/functions.php:637 includes/preview.php:2161
 
811
  msgid "Vertical position"
812
  msgstr ""
813
 
814
- #: includes/functions.php:652
815
  msgid ""
816
  "Vertical margin from the top or bottom screen edge, empty means default "
817
  "value from CSS"
818
  msgstr ""
819
 
820
- #: includes/functions.php:677 includes/preview.php:2212
 
821
  msgid "Animation"
822
  msgstr ""
823
 
824
- #: includes/functions.php:695
825
  msgid "Trigger"
826
  msgstr ""
827
 
828
- #: includes/functions.php:704
829
  msgid ""
830
  "Trigger value: page scroll in %, page scroll in px or element with selector "
831
  "(#id or .class) becomes visible"
832
  msgstr ""
833
 
834
- #: includes/functions.php:708
835
  msgid "Offset"
836
  msgstr ""
837
 
838
- #: includes/functions.php:708
839
  msgid "Offset of trigger element"
840
  msgstr ""
841
 
842
- #: includes/functions.php:712
843
  msgid "Delay"
844
  msgstr ""
845
 
846
- #: includes/functions.php:712
847
  msgid "Delay animation after trigger condition"
848
  msgstr ""
849
 
850
- #: includes/functions.php:716
851
  msgid "Trigger once"
852
  msgstr ""
853
 
854
- #: includes/functions.php:718
855
  msgid "Trigger animation only once"
856
  msgstr ""
857
 
858
- #: includes/functions.php:760 includes/functions.php:2450
859
- #: includes/functions.php:2464
 
860
  msgid "Tracking is globally disabled"
861
  msgstr ""
862
 
863
- #: includes/functions.php:764 includes/functions.php:2454
864
- #: includes/functions.php:2468
 
865
  msgid "Tracking for this block is disabled"
866
  msgstr ""
867
 
868
- #: includes/functions.php:771
869
  msgid "Double click to toggle controls in public reports"
870
  msgstr ""
871
 
872
- #: includes/functions.php:777 settings.php:3409 settings.php:3445
873
- #: settings.php:3487 strings.php:215
874
  msgid "Loading..."
875
  msgstr ""
876
 
877
- #: includes/functions.php:798
878
  msgid ""
879
  "Clear statistics data for the selected range - clear both dates to delete "
880
  "all data for this block"
881
  msgstr ""
882
 
883
- #: includes/functions.php:802
884
  msgid "Auto refresh data for the selected range every 60 seconds"
885
  msgstr ""
886
 
887
- #: includes/functions.php:805 includes/functions.php:5259
 
888
  msgid "Load data for last month"
889
  msgstr ""
890
 
891
- #: includes/functions.php:805 includes/functions.php:5259
 
892
  msgid "Last Month"
893
  msgstr ""
894
 
895
- #: includes/functions.php:808 includes/functions.php:5262
 
896
  msgid "Load data for this month"
897
  msgstr ""
898
 
899
- #: includes/functions.php:808 includes/functions.php:5262
 
900
  msgid "This Month"
901
  msgstr ""
902
 
903
- #: includes/functions.php:811 includes/functions.php:5265
 
904
  msgid "Load data for this year"
905
  msgstr ""
906
 
907
- #: includes/functions.php:811 includes/functions.php:5265
 
908
  msgid "This Year"
909
  msgstr ""
910
 
911
- #: includes/functions.php:814 includes/functions.php:5268
 
912
  msgid "Load data for the last 15 days"
913
  msgstr ""
914
 
915
- #: includes/functions.php:817 includes/functions.php:5271
 
916
  msgid "Load data for the last 30 days"
917
  msgstr ""
918
 
919
- #: includes/functions.php:820 includes/functions.php:5274
 
920
  msgid "Load data for the last 90 days"
921
  msgstr ""
922
 
923
- #: includes/functions.php:823 includes/functions.php:5277
 
924
  msgid "Load data for the last 180 days"
925
  msgstr ""
926
 
927
- #: includes/functions.php:826 includes/functions.php:5280
 
928
  msgid "Load data for the last 365 days"
929
  msgstr ""
930
 
931
- #: includes/functions.php:836 includes/functions.php:5290
 
932
  msgid "Load data for the selected range"
933
  msgstr ""
934
 
935
- #: includes/functions.php:852
936
  msgid ""
937
  "Import settings when saving - if checked, the encoded settings below will be "
938
  "imported for this block"
939
  msgstr ""
940
 
941
- #: includes/functions.php:852
942
  msgid "Import settings for block"
943
  msgstr ""
944
 
945
- #: includes/functions.php:856
946
  msgid ""
947
  "Import block name when saving - if checked and 'Import settings for block' "
948
  "is also checked, the name from encoded settings below will be imported for "
949
  "this block"
950
  msgstr ""
951
 
952
- #: includes/functions.php:856
953
  msgid "Import block name"
954
  msgstr ""
955
 
956
- #: includes/functions.php:860
957
  msgid "Saved settings for block"
958
  msgstr ""
959
 
960
- #: includes/functions.php:873
961
  msgid "Export / Import Ad Inserter Pro Settings"
962
  msgstr ""
963
 
964
- #: includes/functions.php:883
965
  msgid "Are you sure you want to clear all statistics data for all blocks?"
966
  msgstr ""
967
 
968
- #: includes/functions.php:885
969
  msgid "Clear All Statistics Data"
970
  msgstr ""
971
 
972
- #: includes/functions.php:912
973
  msgid "Toggle country/city editor"
974
  msgstr ""
975
 
976
- #: includes/functions.php:918
977
  msgid "IP Addresses"
978
  msgstr ""
979
 
980
- #: includes/functions.php:921
981
  msgid "Toggle IP address editor"
982
  msgstr ""
983
 
984
- #: includes/functions.php:924
985
  msgid ""
986
  "Comma separated IP addresses, you can also use partial IP addresses with * "
987
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
988
  msgstr ""
989
 
990
- #: includes/functions.php:928
991
  msgid "Blacklist IP addresses"
992
  msgstr ""
993
 
994
- #: includes/functions.php:932
995
  msgid "Whitelist IP addresses"
996
  msgstr ""
997
 
998
- #: includes/functions.php:943
999
  msgid "Countries"
1000
  msgstr ""
1001
 
1002
- #: includes/functions.php:944
1003
  msgid "Cities"
1004
  msgstr ""
1005
 
1006
- #: includes/functions.php:948 includes/functions.php:2922
 
1007
  msgid "Toggle country editor"
1008
  msgstr ""
1009
 
1010
- #: includes/functions.php:951
1011
  msgid "Toggle city editor"
1012
  msgstr ""
1013
 
1014
- #: includes/functions.php:955 includes/functions.php:2925
 
1015
  msgid "Comma separated country ISO Alpha-2 codes"
1016
  msgstr ""
1017
 
1018
- #: includes/functions.php:959
1019
  msgid "Blacklist countries"
1020
  msgstr ""
1021
 
1022
- #: includes/functions.php:963
1023
  msgid "Whitelist countries"
1024
  msgstr ""
1025
 
 
1026
  #: includes/functions.php:1371 includes/functions.php:1618
1027
  msgid "Enter license key"
1028
  msgstr ""
1029
 
1030
  #. translators: %s: Ad Inserter Pro
1031
- #: includes/functions.php:1377
1032
  msgid ""
1033
  "%s license key is not set. Plugin functionality is limited and updates are "
1034
  "disabled."
1035
  msgstr ""
1036
 
 
1037
  #: includes/functions.php:1389 includes/functions.php:1627
1038
  msgid "Check license key"
1039
  msgstr ""
1040
 
1041
  #. translators: %s: Ad Inserter Pro
1042
- #: includes/functions.php:1395
1043
  msgid "Invalid %s license key."
1044
  msgstr ""
1045
 
1046
  #. translators: %s: Ad Inserter Pro
1047
- #: includes/functions.php:1404
1048
  msgid "%s license expired. Plugin updates are disabled."
1049
  msgstr ""
1050
 
1051
- #: includes/functions.php:1405
1052
  msgid "Renew license"
1053
  msgstr ""
1054
 
1055
  #. translators: %s: Ad Inserter Pro
1056
- #: includes/functions.php:1413
1057
  msgid "%s license overused. Plugin updates are disabled."
1058
  msgstr ""
1059
 
1060
- #: includes/functions.php:1414
1061
  msgid "Manage licenses"
1062
  msgstr ""
1063
 
1064
- #: includes/functions.php:1414
1065
  msgid "Upgrade license"
1066
  msgstr ""
1067
 
1068
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1069
- #: includes/functions.php:1620
1070
  msgid ""
1071
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1072
  "limited and updates are disabled."
1073
  msgstr ""
1074
 
1075
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1076
- #: includes/functions.php:1629
1077
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1078
  msgstr ""
1079
 
1080
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1081
- #: includes/functions.php:1645
1082
  msgid ""
1083
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1084
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1085
  msgstr ""
1086
 
1087
  #. translators: 1, 3: HTML tags, 2: percentage
1088
- #: includes/functions.php:1652
1089
  msgid ""
1090
  "During the license period and 30 days after the license has expired we offer "
1091
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1092
  msgstr ""
1093
 
1094
- #: includes/functions.php:1679
1095
  msgid "Renew the licence"
1096
  msgstr ""
1097
 
1098
- #: includes/functions.php:1681
1099
  msgid "Update license status"
1100
  msgstr ""
1101
 
1102
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1103
- #: includes/functions.php:1692
1104
  msgid ""
1105
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1106
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1107
  msgstr ""
1108
 
1109
  #. Translators: %s: HTML tag
1110
- #: includes/functions.php:1714
1111
  msgid "Warning: %s MaxMind IP geolocation database not found."
1112
  msgstr ""
1113
 
1114
- #: includes/functions.php:2252
1115
  msgid "Geolocation"
1116
  msgstr ""
1117
 
1118
- #: includes/functions.php:2256 settings.php:4051
 
1119
  msgid "Exceptions"
1120
  msgstr ""
1121
 
1122
- #: includes/functions.php:2261
1123
  msgid "Multisite"
1124
  msgstr ""
1125
 
1126
- #: includes/functions.php:2266 settings.php:4057
 
1127
  msgid "Tracking"
1128
  msgstr ""
1129
 
1130
  #. translators: %d: days, hours, minutes
1131
- #: includes/functions.php:2297
1132
  msgid "Scheduled in %d days %d hours %d minutes"
1133
  msgstr ""
1134
 
1135
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1136
  #. HTML code for long dash separator
1137
- #: includes/functions.php:2306
1138
  msgid "Active %s expires in %d days %d hours %d minutes"
1139
  msgstr ""
1140
 
1141
- #: includes/functions.php:2310
1142
  msgid "Expired"
1143
  msgstr ""
1144
 
1145
- #: includes/functions.php:2318 settings.php:1465 settings.php:1480
1146
- #: settings.php:2067
1147
  msgid "and"
1148
  msgstr ""
1149
 
1150
- #: includes/functions.php:2321
1151
  msgid "fallback"
1152
  msgstr ""
1153
 
1154
- #: includes/functions.php:2322
1155
  msgid "Block to be used when scheduling expires"
1156
  msgstr ""
1157
 
1158
- #: includes/functions.php:2347
1159
  msgid "Load in iframe"
1160
  msgstr ""
1161
 
1162
- #: includes/functions.php:2351 includes/placeholders.php:389
 
1163
  msgid "Width"
1164
  msgstr ""
1165
 
1166
- #: includes/functions.php:2352
1167
  msgid "iframe width, empty means full width (100%)"
1168
  msgstr ""
1169
 
1170
- #: includes/functions.php:2358 includes/placeholders.php:384
 
1171
  msgid "Height"
1172
  msgstr ""
1173
 
1174
- #: includes/functions.php:2359
1175
  msgid "iframe height, empty means adjust it to iframe content height"
1176
  msgstr ""
1177
 
1178
- #: includes/functions.php:2366
1179
  msgid "Ad label in iframe"
1180
  msgstr ""
1181
 
1182
- #: includes/functions.php:2371
1183
  msgid "Preview iframe code"
1184
  msgstr ""
1185
 
1186
- #: includes/functions.php:2371 includes/preview.php:1974 settings.php:1034
1187
- #: settings.php:2757
1188
  msgid "Preview"
1189
  msgstr ""
1190
 
1191
- #: includes/functions.php:2385 settings.php:4058
 
1192
  msgid "Limits"
1193
  msgstr ""
1194
 
1195
- #: includes/functions.php:2390 includes/functions.php:4263
1196
- #: includes/functions.php:4326 settings.php:2199
 
1197
  msgid "Ad Blocking"
1198
  msgstr ""
1199
 
1200
  #. translators: 1, 2 and 3, 4: HTML tags
1201
- #: includes/functions.php:2399
1202
  msgid ""
1203
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1204
  "for tracking!"
@@ -1206,28 +1237,29 @@ msgstr ""
1206
 
1207
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1208
  #. header
1209
- #: includes/functions.php:2408
1210
  msgid ""
1211
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1212
  "enabled and automatic insertion %6$s!"
1213
  msgstr ""
1214
 
1215
- #: includes/functions.php:2472
1216
  msgid "Click fraud protection is globally disabled"
1217
  msgstr ""
1218
 
1219
- #: includes/functions.php:2476
1220
  msgid "Max clicks per time period are not defined"
1221
  msgstr ""
1222
 
1223
  #. Translators: Max n impressions
1224
- #: includes/functions.php:2493
1225
  msgid "General limits"
1226
  msgstr ""
1227
 
1228
  #. Translators: Max n impressions per x days
1229
- #: includes/functions.php:2499 includes/functions.php:2511
1230
- #: includes/functions.php:2596
 
1231
  msgid "Current value"
1232
  msgstr ""
1233
 
@@ -1239,14 +1271,18 @@ msgstr ""
1239
  #. Translators: Max n impressions per x days
1240
  #. Translators: Max n clicks
1241
  #. Translators: Max n clicks per x days
1242
- #: includes/functions.php:2518 includes/functions.php:2528
1243
- #: includes/functions.php:2547 includes/functions.php:2557
1244
- #: includes/functions.php:2603 includes/functions.php:2612
1245
- #: includes/functions.php:2630 includes/functions.php:2639 settings.php:1988
 
 
 
 
1246
  msgid "Max"
1247
  msgstr ""
1248
 
1249
- #: includes/functions.php:2519
1250
  msgid ""
1251
  "Maximum number of impressions for this block. Empty means no general "
1252
  "impression limit."
@@ -1256,14 +1292,16 @@ msgstr ""
1256
  #. Translators: Max n impressions per x days
1257
  #. Translators: Max n impressions
1258
  #. Translators: Max n impressions per x days
1259
- #: includes/functions.php:2521 includes/functions.php:2531
1260
- #: includes/functions.php:2606 includes/functions.php:2615
 
 
1261
  msgid "impression"
1262
  msgid_plural "impressions"
1263
  msgstr[0] ""
1264
  msgstr[1] ""
1265
 
1266
- #: includes/functions.php:2529
1267
  msgid ""
1268
  "Maximum number of impressions per time period. Empty means no time limit."
1269
  msgstr ""
@@ -1272,12 +1310,15 @@ msgstr ""
1272
  #. Translators: Max n clicks per x days
1273
  #. Translators: Max n impressions per x days
1274
  #. Translators: Max n clicks per x days
1275
- #: includes/functions.php:2535 includes/functions.php:2564
1276
- #: includes/functions.php:2619 includes/functions.php:2646
 
 
1277
  msgid "per"
1278
  msgstr ""
1279
 
1280
- #: includes/functions.php:2536 includes/functions.php:2565
 
1281
  msgid "Time period in days. Empty means no time limit."
1282
  msgstr ""
1283
 
@@ -1286,17 +1327,20 @@ msgstr ""
1286
  #. Translators: Max n impressions per x days
1287
  #. Translators: Max n clicks per x days
1288
  #. Translators: Don't show for x days
1289
- #: includes/functions.php:2538 includes/functions.php:2567
1290
- #: includes/functions.php:2622 includes/functions.php:2649
1291
- #: includes/functions.php:2755 includes/functions.php:3083 strings.php:196
1292
- #: strings.php:197 strings.php:198 strings.php:199 strings.php:200
1293
- #: strings.php:201
 
 
 
1294
  msgid "day"
1295
  msgid_plural "days"
1296
  msgstr[0] ""
1297
  msgstr[1] ""
1298
 
1299
- #: includes/functions.php:2548
1300
  msgid ""
1301
  "Maximum number of clicks on this block. Empty means no general click limit."
1302
  msgstr ""
@@ -1305,23 +1349,26 @@ msgstr ""
1305
  #. Translators: Max n clicks per x days
1306
  #. Translators: Max n clicks
1307
  #. Translators: Max n clicks per x days
1308
- #: includes/functions.php:2550 includes/functions.php:2560
1309
- #: includes/functions.php:2633 includes/functions.php:2642
1310
- #: includes/functions.php:4474
 
 
1311
  msgid "click"
1312
  msgid_plural "clicks"
1313
  msgstr[0] ""
1314
  msgstr[1] ""
1315
 
1316
- #: includes/functions.php:2558
1317
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1318
  msgstr ""
1319
 
1320
- #: includes/functions.php:2583
1321
  msgid "Individual visitor limits"
1322
  msgstr ""
1323
 
1324
- #: includes/functions.php:2587 includes/functions.php:2589
 
1325
  msgid ""
1326
  "When specified number of clicks on this block for a visitor will be reached "
1327
  "in the specified time period, all blocks that have click fraud protection "
@@ -1329,77 +1376,79 @@ msgid ""
1329
  "general plugin settings."
1330
  msgstr ""
1331
 
1332
- #: includes/functions.php:2589
1333
  msgid "Trigger click fraud protection"
1334
  msgstr ""
1335
 
1336
- #: includes/functions.php:2604
1337
  msgid ""
1338
  "Maximum number of impressions of this block for each visitor. Empty means no "
1339
  "impression limit."
1340
  msgstr ""
1341
 
1342
- #: includes/functions.php:2613
1343
  msgid ""
1344
  "Maximum number of impressions per time period for each visitor. Empty means "
1345
  "no impression limit per time period for visitors."
1346
  msgstr ""
1347
 
1348
- #: includes/functions.php:2620 includes/functions.php:2647
 
1349
  msgid ""
1350
  "Time period in days. Use decimal value (with decimal point) for shorter "
1351
  "periods. Empty means no time limit."
1352
  msgstr ""
1353
 
1354
- #: includes/functions.php:2631
1355
  msgid ""
1356
  "Maximum number of clicks on this block for each visitor. Empty means no "
1357
  "click limit."
1358
  msgstr ""
1359
 
1360
- #: includes/functions.php:2640
1361
  msgid ""
1362
  "Maximum number of clicks per time period for each visitor. Empty means no "
1363
  "click limit per time period for visitors."
1364
  msgstr ""
1365
 
1366
- #: includes/functions.php:2666
1367
  msgid "When ad blocking is detected"
1368
  msgstr ""
1369
 
1370
- #: includes/functions.php:2675
1371
  msgid "replacement"
1372
  msgstr ""
1373
 
1374
- #: includes/functions.php:2676
1375
  msgid "Block to be shown when ad blocking is detected"
1376
  msgstr ""
1377
 
1378
- #: includes/functions.php:2677
1379
  msgctxt "replacement"
1380
  msgid "None"
1381
  msgstr ""
1382
 
1383
- #: includes/functions.php:2694 includes/functions.php:5481
 
1384
  msgid "Close button"
1385
  msgstr ""
1386
 
1387
- #: includes/functions.php:2746
1388
  msgid "Auto close after"
1389
  msgstr ""
1390
 
1391
- #: includes/functions.php:2747
1392
  msgid ""
1393
  "Time in seconds in which the ad will automatically close. Leave empty to "
1394
  "disable auto closing."
1395
  msgstr ""
1396
 
1397
  #. Translators: Don't show for x days
1398
- #: includes/functions.php:2752
1399
  msgid "Don't show for"
1400
  msgstr ""
1401
 
1402
- #: includes/functions.php:2753
1403
  msgid ""
1404
  "Time in days in which closed ad will not be shown again. Use decimal value "
1405
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1407,11 +1456,11 @@ msgid ""
1407
  msgstr ""
1408
 
1409
  #. Translators: Delay showing for x pageviews
1410
- #: includes/functions.php:2773
1411
  msgid "Delay showing for"
1412
  msgstr ""
1413
 
1414
- #: includes/functions.php:2774
1415
  msgid ""
1416
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1417
  "empty to insert the code for the first pageview."
@@ -1419,302 +1468,308 @@ msgstr ""
1419
 
1420
  #. Translators: Delay showing for x pageviews
1421
  #. Translators: Show every x pageviews
1422
- #: includes/functions.php:2776 includes/functions.php:2783
 
1423
  msgid "pageview"
1424
  msgid_plural "pageviews"
1425
  msgstr[0] ""
1426
  msgstr[1] ""
1427
 
1428
  #. Translators: Show every x pageviews
1429
- #: includes/functions.php:2780
1430
  msgid "Show every"
1431
  msgid_plural "Show every"
1432
  msgstr[0] ""
1433
  msgstr[1] ""
1434
 
1435
- #: includes/functions.php:2781
1436
  msgid ""
1437
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1438
  "for every pageview."
1439
  msgstr ""
1440
 
1441
- #: includes/functions.php:2800
1442
  msgid "Lazy loading"
1443
  msgstr ""
1444
 
1445
  #. Translators: %s MaxMind
1446
- #: includes/functions.php:2857
1447
  msgid "This product includes GeoLite2 data created by %s"
1448
  msgstr ""
1449
 
1450
- #: includes/functions.php:2868
1451
  msgid "IP geolocation database"
1452
  msgstr ""
1453
 
1454
- #: includes/functions.php:2871
1455
  msgid "Select IP geolocation database."
1456
  msgstr ""
1457
 
1458
- #: includes/functions.php:2882
1459
  msgid "Automatic database updates"
1460
  msgstr ""
1461
 
1462
- #: includes/functions.php:2885
1463
  msgid ""
1464
  "Automatically download and update free GeoLite2 IP geolocation database by "
1465
  "MaxMind"
1466
  msgstr ""
1467
 
1468
- #: includes/functions.php:2893
1469
  msgid "Database"
1470
  msgstr ""
1471
 
1472
- #: includes/functions.php:2896
1473
  msgid ""
1474
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1475
  "file"
1476
  msgstr ""
1477
 
1478
  #. translators: %d: group number
1479
- #: includes/functions.php:2914
1480
  msgid "Group %d"
1481
  msgstr ""
1482
 
1483
- #: includes/functions.php:2920
1484
  msgid "countries"
1485
  msgstr ""
1486
 
1487
- #: includes/functions.php:2965
1488
  msgid ""
1489
  "Enable impression and click tracking. You also need to enable tracking for "
1490
  "each block you want to track."
1491
  msgstr ""
1492
 
1493
- #: includes/functions.php:2972
1494
  msgid "Generate report"
1495
  msgstr ""
1496
 
1497
- #: includes/functions.php:2980
1498
  msgid "Impression and Click Tracking"
1499
  msgstr ""
1500
 
1501
- #: includes/functions.php:2981 settings.php:2645
 
1502
  msgctxt "ad blocking detection"
1503
  msgid "NOT ENABLED"
1504
  msgstr ""
1505
 
1506
- #: includes/functions.php:2997
1507
  msgid "Internal"
1508
  msgstr ""
1509
 
1510
- #: includes/functions.php:3001
1511
  msgid "Track impressions and clicks with internal tracking and statistics"
1512
  msgstr ""
1513
 
1514
- #: includes/functions.php:3006
1515
  msgid "External"
1516
  msgstr ""
1517
 
1518
- #: includes/functions.php:3010
1519
  msgid ""
1520
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1521
  "code installed)"
1522
  msgstr ""
1523
 
1524
- #: includes/functions.php:3015
1525
  msgid "Track Pageviews"
1526
  msgstr ""
1527
 
1528
- #: includes/functions.php:3021
1529
  msgid "Track Pageviews by Device (as configured for viewports)"
1530
  msgstr ""
1531
 
1532
- #: includes/functions.php:3031
1533
  msgid "Track for Logged in Users"
1534
  msgstr ""
1535
 
1536
- #: includes/functions.php:3037
1537
  msgid "Track impressions and clicks from logged in users"
1538
  msgstr ""
1539
 
1540
- #: includes/functions.php:3047
1541
  msgid "Click Detection"
1542
  msgstr ""
1543
 
1544
- #: includes/functions.php:3053
1545
  msgid ""
1546
  "Standard method detects clicks only on banners with links, Advanced method "
1547
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1548
  msgstr ""
1549
 
1550
- #: includes/functions.php:3072
1551
  msgid "Click fraud protection"
1552
  msgstr ""
1553
 
1554
- #: includes/functions.php:3076
1555
  msgid "Globally enable click fraud protection for selected blocks."
1556
  msgstr ""
1557
 
1558
- #: includes/functions.php:3082
1559
  msgid "Protection time"
1560
  msgstr ""
1561
 
1562
- #: includes/functions.php:3083
1563
  msgid ""
1564
  "Time period in days in which blocks with enabled click fraud protection will "
1565
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1566
  msgstr ""
1567
 
1568
- #: includes/functions.php:3102
1569
  msgid "Report header image"
1570
  msgstr ""
1571
 
1572
- #: includes/functions.php:3105
1573
  msgid ""
1574
  "Image or logo to be displayed in the header of the statistins report. "
1575
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1576
  "to reset to default image."
1577
  msgstr ""
1578
 
1579
- #: includes/functions.php:3106 strings.php:227
1580
  msgid "Select or upload header image"
1581
  msgstr ""
1582
 
1583
- #: includes/functions.php:3111
1584
  msgid "Report header title"
1585
  msgstr ""
1586
 
1587
- #: includes/functions.php:3114
1588
  msgid ""
1589
  "Title to be displayed in the header of the statistics report. Text or HTML "
1590
  "code, clear to reset to default text."
1591
  msgstr ""
1592
 
1593
- #: includes/functions.php:3119
1594
  msgid "Report header description"
1595
  msgstr ""
1596
 
1597
- #: includes/functions.php:3122
1598
  msgid ""
1599
  "Description to be displayed in the header of the statistics report. Text or "
1600
  "HTML code, clear to reset to default text."
1601
  msgstr ""
1602
 
1603
- #: includes/functions.php:3127
1604
  msgid "Report footer"
1605
  msgstr ""
1606
 
1607
- #: includes/functions.php:3130
1608
  msgid ""
1609
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1610
  "to default text."
1611
  msgstr ""
1612
 
1613
- #: includes/functions.php:3135
1614
  msgid "Public report key"
1615
  msgstr ""
1616
 
1617
- #: includes/functions.php:3138
1618
  msgid "String to generate unique report IDs. Clear to reset to default value."
1619
  msgstr ""
1620
 
1621
- #: includes/functions.php:3170
1622
  msgid "Are you sure you want to clear all exceptions for block"
1623
  msgstr ""
1624
 
1625
- #: includes/functions.php:3171 settings.php:1136 settings.php:1191
1626
- #: settings.php:1237
1627
  msgid "Clear all exceptions for block"
1628
  msgstr ""
1629
 
1630
- #: includes/functions.php:3178
1631
  msgid "Are you sure you want to clear all exceptions?"
1632
  msgstr ""
1633
 
1634
- #: includes/functions.php:3178
1635
  msgid "Clear all exceptions for all blocks"
1636
  msgstr ""
1637
 
1638
- #: includes/functions.php:3183 settings.php:3715 settings.php:4134
 
1639
  msgid "Type"
1640
  msgstr ""
1641
 
1642
- #: includes/functions.php:3201
1643
  msgid "View"
1644
  msgstr ""
1645
 
1646
- #: includes/functions.php:3202 includes/functions.php:3209
1647
- #: includes/functions.php:3213 includes/placeholders.php:353
1648
- #: includes/preview.php:2281 settings.php:1368 settings.php:3478
 
 
1649
  msgid "Edit"
1650
  msgstr ""
1651
 
1652
- #: includes/functions.php:3232
1653
  msgid "Are you sure you want to clear all exceptions for"
1654
  msgstr ""
1655
 
1656
- #: includes/functions.php:3233
1657
  msgid "Clear all exceptions for"
1658
  msgstr ""
1659
 
1660
- #: includes/functions.php:3246
1661
  msgid "No exceptions"
1662
  msgstr ""
1663
 
1664
  #. translators: %s: Ad Inserter Pro
1665
- #: includes/functions.php:3257
1666
  msgid "%s options for network blogs"
1667
  msgstr ""
1668
 
1669
  #. translators: %s: Ad Inserter Pro
1670
- #: includes/functions.php:3262
1671
  msgid "Enable %s widgets for sub-sites"
1672
  msgstr ""
1673
 
1674
- #: includes/functions.php:3262
1675
  msgid "Widgets"
1676
  msgstr ""
1677
 
1678
- #: includes/functions.php:3267
1679
  msgid "Enable PHP code processing for sub-sites"
1680
  msgstr ""
1681
 
1682
- #: includes/functions.php:3267
1683
  msgid "PHP Processing"
1684
  msgstr ""
1685
 
1686
  #. translators: %s: Ad Inserter Pro
1687
- #: includes/functions.php:3272
1688
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1689
  msgstr ""
1690
 
1691
- #: includes/functions.php:3272
1692
  msgid "Post/Page exceptions"
1693
  msgstr ""
1694
 
1695
  #. translators: %s: Ad Inserter Pro
1696
- #: includes/functions.php:3277
1697
  msgid "Enable %s settings page for sub-sites"
1698
  msgstr ""
1699
 
1700
- #: includes/functions.php:3277
1701
  msgid "Settings page"
1702
  msgstr ""
1703
 
1704
  #. translators: %s: Ad Inserter Pro
1705
- #: includes/functions.php:3282
1706
  msgid "Enable %s settings of main site to be used for all blogs"
1707
  msgstr ""
1708
 
1709
- #: includes/functions.php:3282
1710
  msgid "Main site settings used for all blogs"
1711
  msgstr ""
1712
 
1713
- #: includes/functions.php:3293 settings.php:2644
 
1714
  msgid "Ad Blocking Detection"
1715
  msgstr ""
1716
 
1717
- #: includes/functions.php:3299
1718
  msgid ""
1719
  "Standard method is reliable but should be used only if Advanced method does "
1720
  "not work. Advanced method recreates files used for detection with random "
@@ -1722,141 +1777,154 @@ msgid ""
1722
  "publicly accessible"
1723
  msgstr ""
1724
 
1725
- #: includes/functions.php:3926 includes/functions.php:4016
1726
- #: includes/functions.php:4036
 
1727
  msgid "AD BLOCKING"
1728
  msgstr ""
1729
 
1730
- #: includes/functions.php:3927 includes/functions.php:3967
1731
- #: includes/functions.php:4010 includes/functions.php:4037
 
 
1732
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1733
  msgstr ""
1734
 
1735
- #: includes/functions.php:3930 includes/functions.php:4009
1736
- #: includes/functions.php:4043
 
1737
  msgid "NO AD BLOCKING"
1738
  msgstr ""
1739
 
1740
- #: includes/functions.php:3966 includes/functions.php:3973
 
1741
  msgid "AD BLOCKING REPLACEMENT"
1742
  msgstr ""
1743
 
1744
- #: includes/functions.php:4116 includes/functions.php:4325
 
1745
  msgid "Pageviews"
1746
  msgstr ""
1747
 
1748
- #: includes/functions.php:4262
1749
  msgctxt "Version"
1750
  msgid "Unknown"
1751
  msgstr ""
1752
 
1753
- #: includes/functions.php:4262
1754
  msgctxt "Times"
1755
  msgid "DISPLAYED"
1756
  msgstr ""
1757
 
1758
- #: includes/functions.php:4262
1759
  msgid "No version"
1760
  msgstr ""
1761
 
1762
- #: includes/functions.php:4263
1763
  msgctxt "Times"
1764
  msgid "BLOCKED"
1765
  msgstr ""
1766
 
1767
- #: includes/functions.php:4325
1768
  msgid "Impressions"
1769
  msgstr ""
1770
 
1771
- #: includes/functions.php:4326 includes/functions.php:4327
1772
- #: includes/functions.php:4382
 
1773
  msgid "Clicks"
1774
  msgstr ""
1775
 
1776
- #: includes/functions.php:4327
1777
  msgid "events"
1778
  msgstr ""
1779
 
1780
- #: includes/functions.php:4328
1781
  msgid "Ad Blocking Share"
1782
  msgstr ""
1783
 
1784
  #. translators: CTR as Click Through Rate
1785
- #: includes/functions.php:4328 includes/functions.php:4388
 
1786
  msgid "CTR"
1787
  msgstr ""
1788
 
1789
- #: includes/functions.php:4470
1790
  msgid "pageviews"
1791
  msgid_plural "pageviews"
1792
  msgstr[0] ""
1793
  msgstr[1] ""
1794
 
1795
- #: includes/functions.php:4470
1796
  msgid "impressions"
1797
  msgid_plural "impressions"
1798
  msgstr[0] ""
1799
  msgstr[1] ""
1800
 
1801
- #: includes/functions.php:4474
1802
  msgid "event"
1803
  msgid_plural "events"
1804
  msgstr[0] ""
1805
  msgstr[1] ""
1806
 
1807
- #: includes/functions.php:4569
1808
  msgctxt "Pageviews / Impressions"
1809
  msgid "Average"
1810
  msgstr ""
1811
 
1812
- #: includes/functions.php:4590
1813
  msgctxt "Ad Blocking / Clicks"
1814
  msgid "Average"
1815
  msgstr ""
1816
 
1817
- #: includes/functions.php:4614
1818
  msgctxt "Ad Blocking Share / CTR"
1819
  msgid "Average"
1820
  msgstr ""
1821
 
1822
  #. Translators: %s: Ad Inserter Pro
1823
- #: includes/functions.php:4796 includes/functions.php:4888
1824
- #: includes/functions.php:5204 strings.php:181
 
1825
  msgid "%s Report"
1826
  msgstr ""
1827
 
1828
- #: includes/functions.php:5110
1829
  msgid "for last month"
1830
  msgstr ""
1831
 
1832
- #: includes/functions.php:5115
1833
  msgid "for this month"
1834
  msgstr ""
1835
 
1836
- #: includes/functions.php:5120
1837
  msgid "for this year"
1838
  msgstr ""
1839
 
1840
- #: includes/functions.php:5125
1841
  msgid "for the last 15 days"
1842
  msgstr ""
1843
 
1844
- #: includes/functions.php:5130
1845
  msgid "for the last 30 days"
1846
  msgstr ""
1847
 
1848
- #: includes/functions.php:5135
1849
  msgid "for the last 90 days"
1850
  msgstr ""
1851
 
1852
- #: includes/functions.php:5140
1853
  msgid "for the last 180 days"
1854
  msgstr ""
1855
 
1856
- #: includes/functions.php:5145
1857
  msgid "for the last 365 days"
1858
  msgstr ""
1859
 
 
 
 
 
1860
  #: includes/placeholders.php:20
1861
  msgid "Custom"
1862
  msgstr ""
@@ -1881,7 +1949,7 @@ msgstr ""
1881
  msgid "Placeholder"
1882
  msgstr ""
1883
 
1884
- #: includes/placeholders.php:363 settings.php:881 settings.php:4135
1885
  msgid "Size"
1886
  msgstr ""
1887
 
@@ -1989,11 +2057,11 @@ msgstr ""
1989
  msgid "Ad Blocking Detected Message Preview"
1990
  msgstr ""
1991
 
1992
- #: includes/preview-adb.php:348 settings.php:2770
1993
  msgid "Message CSS"
1994
  msgstr ""
1995
 
1996
- #: includes/preview-adb.php:353 settings.php:2778
1997
  msgid "Overlay CSS"
1998
  msgstr ""
1999
 
@@ -2033,7 +2101,7 @@ msgstr ""
2033
  msgid "background"
2034
  msgstr ""
2035
 
2036
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1329
2037
  msgid "Alignment"
2038
  msgstr ""
2039
 
@@ -2131,481 +2199,449 @@ msgid ""
2131
  "the values to those of the current block."
2132
  msgstr ""
2133
 
2134
- #: settings.php:157 settings.php:1121
2135
  msgid ""
2136
  "Settings for individual exceptions have been updated. Please check all "
2137
  "blocks that have exceptions and and then save settings."
2138
  msgstr ""
2139
 
2140
- #: settings.php:199
2141
  msgid "Online documentation"
2142
  msgstr ""
2143
 
2144
- #: settings.php:203 settings.php:717 settings.php:2166
2145
  msgid "Show AdSense ad units"
2146
  msgstr ""
2147
 
2148
- #: settings.php:208
2149
  msgid "Edit ads.txt file"
2150
  msgstr ""
2151
 
2152
- #: settings.php:211 settings.php:1064
2153
  msgid "Check theme for available positions for automatic insertion"
2154
  msgstr ""
2155
 
2156
- #: settings.php:213
2157
  msgid "List all blocks"
2158
  msgstr ""
2159
 
2160
- #: settings.php:220
2161
  msgid "Loaded plugin JavaScript file version"
2162
  msgstr ""
2163
 
2164
  #. translators: %s: HTML tags
2165
- #: settings.php:222
2166
  msgid ""
2167
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2168
  "due to inappropriate caching."
2169
  msgstr ""
2170
 
2171
- #: settings.php:223
2172
  msgid ""
2173
  "Missing version parameter of the JavaScript file, probably due to "
2174
  "inappropriate caching."
2175
  msgstr ""
2176
 
2177
- #: settings.php:224
2178
  msgid ""
2179
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2180
  "caching."
2181
  msgstr ""
2182
 
2183
- #: settings.php:225 settings.php:236
2184
  msgid ""
2185
  "Please delete browser's cache and all other caches used and then reload this "
2186
  "page."
2187
  msgstr ""
2188
 
2189
- #: settings.php:231
2190
  msgid "Loaded plugin CSS file version"
2191
  msgstr ""
2192
 
2193
  #. translators: %s: HTML tags
2194
- #: settings.php:233
2195
  msgid ""
2196
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2197
  "inappropriate caching."
2198
  msgstr ""
2199
 
2200
- #: settings.php:234
2201
  msgid ""
2202
  "Missing version parameter of the CSS file, probably due to inappropriate "
2203
  "caching."
2204
  msgstr ""
2205
 
2206
- #: settings.php:235
2207
  msgid ""
2208
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2209
  msgstr ""
2210
 
2211
- #: settings.php:242 settings.php:254
2212
  msgid "WARNING"
2213
  msgstr ""
2214
 
2215
  #. translators: %s: HTML tags
2216
- #: settings.php:244
2217
  msgid "Page may %s not be loaded properly. %s"
2218
  msgstr ""
2219
 
2220
- #: settings.php:245
2221
  msgid ""
2222
  "Check ad blocking software that may block CSS, JavaScript or image files."
2223
  msgstr ""
2224
 
2225
- #: settings.php:254
2226
  msgid ""
2227
- "To disable debugging functions and to enable insertions go to tab &#9881; / "
2228
- "tab Debugging"
2229
  msgstr ""
2230
 
2231
- #: settings.php:256
2232
  msgid "Debugging functions enabled - some code is not inserted"
2233
  msgstr ""
2234
 
2235
- #: settings.php:273
2236
  msgid "Group name"
2237
  msgstr ""
2238
 
2239
- #: settings.php:274
2240
  msgid "Option name"
2241
  msgstr ""
2242
 
2243
- #: settings.php:280
2244
  msgid "Share"
2245
  msgstr ""
2246
 
2247
- #: settings.php:283
2248
  msgid ""
2249
  "Option share in percents - 0 means option is disabled, if share for one "
2250
  "option is not defined it will be calculated automatically. Leave all share "
2251
  "fields empty for equal option shares."
2252
  msgstr ""
2253
 
2254
- #: settings.php:286
2255
  msgid "Time"
2256
  msgstr ""
2257
 
2258
- #: settings.php:289
2259
  msgid ""
2260
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2261
  "Leave all time fields empty for no timed rotation."
2262
  msgstr ""
2263
 
2264
- #: settings.php:441
2265
  msgid "General Settings"
2266
  msgstr ""
2267
 
2268
- #: settings.php:665 settings.php:2497 settings.php:2564 settings.php:2750
2269
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2270
  msgstr ""
2271
 
2272
- #: settings.php:672
2273
  msgid "Toggle tools"
2274
  msgstr ""
2275
 
2276
- #: settings.php:680
2277
  msgid "Process PHP code in block"
2278
  msgstr ""
2279
 
2280
- #: settings.php:687
2281
  msgid "Disable insertion of this block"
2282
  msgstr ""
2283
 
2284
- #: settings.php:699
2285
  msgid "Toggle code generator"
2286
  msgstr ""
2287
 
2288
- #: settings.php:703
2289
  msgid "Toggle rotation editor"
2290
  msgstr ""
2291
 
2292
- #: settings.php:707
2293
  msgid "Open visual HTML editor"
2294
  msgstr ""
2295
 
2296
- #: settings.php:726
2297
  msgid "Clear block"
2298
  msgstr ""
2299
 
2300
- #: settings.php:731 settings.php:4007
2301
  msgid "Copy block"
2302
  msgstr ""
2303
 
2304
- #: settings.php:735
2305
  msgid "Paste name"
2306
  msgstr ""
2307
 
2308
- #: settings.php:739
2309
  msgid "Paste code"
2310
  msgstr ""
2311
 
2312
- #: settings.php:743
2313
  msgid "Paste settings"
2314
  msgstr ""
2315
 
2316
- #: settings.php:747
2317
  msgid "Paste block (name, code and settings)"
2318
  msgstr ""
2319
 
2320
- #: settings.php:766
2321
  msgid "Rotation groups"
2322
  msgstr ""
2323
 
2324
- #: settings.php:770
2325
  msgid "Remove option"
2326
  msgstr ""
2327
 
2328
- #: settings.php:774
2329
  msgid "Add option"
2330
  msgstr ""
2331
 
2332
- #: settings.php:789
2333
  msgid "Import code"
2334
  msgstr ""
2335
 
2336
- #: settings.php:793
2337
  msgid "Generate code"
2338
  msgstr ""
2339
 
2340
- #: settings.php:798
2341
  msgid "Banner"
2342
  msgstr ""
2343
 
2344
- #: settings.php:809
2345
  msgid "Image"
2346
  msgstr ""
2347
 
2348
- #: settings.php:817
2349
  msgid "Link"
2350
  msgstr ""
2351
 
2352
- #: settings.php:828
2353
  msgid "Open link in a new tab"
2354
  msgstr ""
2355
 
2356
- #: settings.php:829
2357
  msgid "Select Image"
2358
  msgstr ""
2359
 
2360
- #: settings.php:830
2361
  msgid "Select Placeholder"
2362
  msgstr ""
2363
 
2364
- #: settings.php:842
2365
  msgid "Comment"
2366
  msgstr ""
2367
 
2368
- #: settings.php:851
2369
  msgctxt "AdSense"
2370
  msgid "Publisher ID"
2371
  msgstr ""
2372
 
2373
- #: settings.php:860
2374
  msgctxt "AdSense"
2375
  msgid "Ad Slot ID"
2376
  msgstr ""
2377
 
2378
- #: settings.php:869
2379
  msgid "Ad Type"
2380
  msgstr ""
2381
 
2382
- #: settings.php:893
2383
  msgid "AMP Ad"
2384
  msgstr ""
2385
 
2386
- #: settings.php:910
2387
  msgid "Show ad units from your AdSense account"
2388
  msgstr ""
2389
 
2390
- #: settings.php:910
2391
  msgid "AdSense ad units"
2392
  msgstr ""
2393
 
2394
- #: settings.php:927
2395
  msgctxt "AdSense"
2396
  msgid "Layout"
2397
  msgstr ""
2398
 
2399
- #: settings.php:936
2400
  msgctxt "AdSense"
2401
  msgid "Layout Key"
2402
  msgstr ""
2403
 
2404
- #: settings.php:946
2405
  msgid "Full width"
2406
  msgstr ""
2407
 
2408
- #: settings.php:948
2409
  msgctxt "Full width"
2410
  msgid "Enabled"
2411
  msgstr ""
2412
 
2413
- #: settings.php:949
2414
  msgctxt "Full width"
2415
  msgid "Disabled"
2416
  msgstr ""
2417
 
2418
- #: settings.php:1030
2419
  msgid ""
2420
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2421
  "Cookie or Referer (domain)"
2422
  msgstr ""
2423
 
2424
- #: settings.php:1030
2425
  msgid "Lists"
2426
  msgstr ""
2427
 
2428
- #: settings.php:1031
2429
  msgid "Widget, Shortcode and PHP function call"
2430
  msgstr ""
2431
 
2432
- #: settings.php:1031
2433
  msgid "Manual"
2434
  msgstr ""
2435
 
2436
- #: settings.php:1032
2437
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2438
  msgstr ""
2439
 
2440
- #: settings.php:1032
2441
  msgid "Devices"
2442
  msgstr ""
2443
 
2444
- #: settings.php:1033
2445
  msgid ""
2446
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2447
  "feeds), Filter, Scheduling, General tag"
2448
  msgstr ""
2449
 
2450
- #: settings.php:1033
2451
  msgid "Misc"
2452
  msgstr ""
2453
 
2454
- #: settings.php:1034
2455
  msgid "Preview code and alignment"
2456
  msgstr ""
2457
 
2458
- #: settings.php:1037 settings.php:2150
2459
  msgid ""
2460
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2461
  "editor is active before saving settings."
2462
  msgstr ""
2463
 
2464
- #: settings.php:1039
2465
  msgid "Save All Settings"
2466
  msgstr ""
2467
 
2468
- #: settings.php:1050 settings.php:1051
2469
  msgid "Enable insertion on posts"
2470
  msgstr ""
2471
 
2472
- #: settings.php:1051 settings.php:3296
2473
  msgid "Posts"
2474
  msgstr ""
2475
 
2476
- #: settings.php:1055 settings.php:1056
2477
  msgid ""
2478
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2479
  "page or theme homepage (available positions may depend on hooks used by the "
2480
  "theme)"
2481
  msgstr ""
2482
 
2483
- #: settings.php:1056 settings.php:3298
2484
  msgid "Homepage"
2485
  msgstr ""
2486
 
2487
- #: settings.php:1060 settings.php:1061
2488
  msgid "Enable insertion on category blog pages (including sub-pages)"
2489
  msgstr ""
2490
 
2491
- #: settings.php:1061 settings.php:3299
2492
  msgid "Category pages"
2493
  msgstr ""
2494
 
2495
- #: settings.php:1071 settings.php:1072
2496
  msgid "Enable insertion on static pages"
2497
  msgstr ""
2498
 
2499
- #: settings.php:1072 settings.php:3297
2500
  msgid "Static pages"
2501
  msgstr ""
2502
 
2503
- #: settings.php:1076 settings.php:1077
2504
  msgid "Enable insertion on search blog pages"
2505
  msgstr ""
2506
 
2507
- #: settings.php:1077 settings.php:3301
2508
  msgid "Search pages"
2509
  msgstr ""
2510
 
2511
- #: settings.php:1081 settings.php:1082
2512
  msgid "Enable insertion on tag or archive blog pages"
2513
  msgstr ""
2514
 
2515
- #: settings.php:1085
2516
  msgid "Toggle settings for default insertion and list of individual exceptions"
2517
  msgstr ""
2518
 
2519
- #: settings.php:1097
2520
  msgid ""
2521
  "Enable individual post/page exceptions for insertion of this block. They can "
2522
  "be configured on the individual post/page editor page (in the settings below "
2523
  "the editor)."
2524
  msgstr ""
2525
 
2526
- #: settings.php:1098
2527
  msgid ""
2528
  "Enable individual post/page exceptions for insertion of this block. When "
2529
  "enabled they can be configured on the individual post/page editor page (in "
2530
  "the settings below the editor)."
2531
  msgstr ""
2532
 
2533
- #: settings.php:1098
2534
  msgid "Use exceptions for individual posts or pages to change insertion"
2535
  msgstr ""
2536
 
2537
  #. Translators: Enabled means...
2538
- #: settings.php:1106
2539
  msgid ""
2540
  "means the insertion for this block is enabled by default and disabled for "
2541
  "exceptions."
2542
  msgstr ""
2543
 
2544
  #. Translators: Disabled means...
2545
- #: settings.php:1107
2546
  msgid ""
2547
  "means the insertion for this block is disabled by default and enabled for "
2548
  "exceptions."
2549
  msgstr ""
2550
 
2551
- #: settings.php:1108
2552
  msgid ""
2553
  "When individual post/page exceptions are enabled they can be configured on "
2554
  "the individual post/page editor page (in the settings below the editor)."
2555
  msgstr ""
2556
 
2557
- #: settings.php:1116
2558
  msgid ""
2559
  "No exception for post or static page defined. Block will not be inserted."
2560
  msgstr ""
2561
 
2562
- #: settings.php:1133 settings.php:1188 settings.php:1234
2563
  msgctxt "post"
2564
  msgid "Type"
2565
  msgstr ""
2566
 
2567
  #. translators: %d: block number
2568
- #: settings.php:1135 settings.php:1190 settings.php:1236
2569
  msgid "Are you sure you want to clear all exceptions for block %d?"
2570
  msgstr ""
2571
 
2572
- #: settings.php:1165
2573
- msgid "Individual exceptions for posts"
2574
- msgstr ""
2575
-
2576
- #: settings.php:1168
2577
- msgid ""
2578
- "Define function of exceptions for posts for this block. Individual post "
2579
- "exceptions (if enabled here) can be configured in post editor."
2580
- msgstr ""
2581
-
2582
- #: settings.php:1176
2583
- msgid ""
2584
- "No post with enabled insertion defined. Block will not be inserted into "
2585
- "posts."
2586
- msgstr ""
2587
-
2588
- #: settings.php:1210
2589
- msgid "Individual exceptions for static pages"
2590
- msgstr ""
2591
-
2592
- #: settings.php:1213
2593
- msgid ""
2594
- "Define function of exceptions for static pages for this block. Individual "
2595
- "static page exceptions (if enabled here) can be configured in page editor."
2596
- msgstr ""
2597
-
2598
- #: settings.php:1221
2599
- msgid ""
2600
- "No static page with enabled insertion defined. Block will not be inserted "
2601
- "into static pages."
2602
- msgstr ""
2603
-
2604
- #: settings.php:1260 settings.php:1408 settings.php:1942
2605
  msgid "Insertion"
2606
  msgstr ""
2607
 
2608
- #: settings.php:1298
2609
  msgid ""
2610
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2611
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2615,7 +2651,7 @@ msgid ""
2615
  "negative number means counting from the opposite direction"
2616
  msgstr ""
2617
 
2618
- #: settings.php:1299
2619
  msgid ""
2620
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2621
  "means every N images, empty means all images, 0 means random image, value "
@@ -2625,257 +2661,271 @@ msgid ""
2625
  "direction"
2626
  msgstr ""
2627
 
2628
- #: settings.php:1312
2629
  msgid ""
2630
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2631
  "numbers, %N means every N excerpts, empty means all excerpts"
2632
  msgstr ""
2633
 
2634
- #: settings.php:1313
2635
  msgid ""
2636
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2637
  "numbers, %N means every N posts, empty means all posts"
2638
  msgstr ""
2639
 
2640
- #: settings.php:1314
2641
  msgid ""
2642
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2643
  "numbers, %N means every N comments, empty means all comments"
2644
  msgstr ""
2645
 
2646
- #: settings.php:1321
2647
  msgid "Toggle paragraph counting settings"
2648
  msgstr ""
2649
 
2650
- #: settings.php:1322
2651
  msgid "Toggle paragraph clearance settings"
2652
  msgstr ""
2653
 
2654
- #: settings.php:1325
2655
  msgid "Toggle insertion filter settings"
2656
  msgstr ""
2657
 
2658
- #: settings.php:1343
2659
  msgid "Toggle insertion and alignment icons"
2660
  msgstr ""
2661
 
2662
- #: settings.php:1357
2663
  msgid "Custom CSS code for the wrapping div"
2664
  msgstr ""
2665
 
2666
- #: settings.php:1360 settings.php:1361 settings.php:1362 settings.php:1363
2667
- #: settings.php:1364 settings.php:1365
2668
  msgid "CSS code for the wrapping div, click to edit"
2669
  msgstr ""
2670
 
2671
- #: settings.php:1378
2672
  msgid "HTML element"
2673
  msgstr ""
2674
 
2675
- #: settings.php:1391
2676
  msgid "HTML element selector or comma separated list of selectors"
2677
  msgstr ""
2678
 
2679
- #: settings.php:1397 settings.php:2655
2680
  msgid "Action"
2681
  msgstr ""
2682
 
2683
- #: settings.php:1409
2684
  msgid ""
2685
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2686
  "Server-side insertion inserts block when the page is generated but needs "
2687
  "Output buffering enabled."
2688
  msgstr ""
2689
 
2690
- #: settings.php:1419
2691
  msgid "JavaScript code position"
2692
  msgstr ""
2693
 
2694
- #: settings.php:1420
2695
  msgid ""
2696
  "Page position where the JavaScript code for client-side insertion will be "
2697
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2698
  msgstr ""
2699
 
2700
- #: settings.php:1435
2701
  msgid "Count"
2702
  msgstr ""
2703
 
2704
- #: settings.php:1441
2705
  msgid "paragraphs with tags"
2706
  msgstr ""
2707
 
2708
- #: settings.php:1447
2709
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2710
  msgstr ""
2711
 
2712
- #: settings.php:1456
2713
  msgid "that have between"
2714
  msgstr ""
2715
 
2716
- #: settings.php:1462
2717
  msgid "Minimum number of paragraph words, leave empty for no limit"
2718
  msgstr ""
2719
 
2720
- #: settings.php:1471
2721
  msgid "Maximum number of paragraph words, leave empty for no limit"
2722
  msgstr ""
2723
 
2724
- #: settings.php:1474 settings.php:2069
2725
  msgid "words"
2726
  msgstr ""
2727
 
2728
- #: settings.php:1489 settings.php:1555 settings.php:1581
2729
  msgid "Comma separated texts"
2730
  msgstr ""
2731
 
2732
- #: settings.php:1498
2733
- msgid "Minimum number of paragraphs"
 
 
2734
  msgstr ""
2735
 
2736
- #. translators: %s: list of HTML tags
2737
- #: settings.php:1513
2738
- msgid ""
2739
- "Count also paragraphs inside %s elements - defined on general plugin "
2740
- "settings page - tab &#9881; / tab General"
 
 
 
 
 
 
 
 
 
 
 
 
2741
  msgstr ""
2742
 
2743
- #: settings.php:1513
2744
- msgid "Count inside special elements"
2745
  msgstr ""
2746
 
2747
- #: settings.php:1524
2748
  msgid "Minimum number of words in paragraphs above"
2749
  msgstr ""
2750
 
2751
- #: settings.php:1530
2752
  msgid ""
2753
  "Used only with automatic insertion After paragraph and empty paragraph "
2754
  "numbers"
2755
  msgstr ""
2756
 
2757
- #: settings.php:1540 settings.php:1566
2758
  msgid "In"
2759
  msgstr ""
2760
 
2761
- #: settings.php:1546
2762
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2763
  msgstr ""
2764
 
2765
- #: settings.php:1549
2766
  msgid "paragraphs above avoid"
2767
  msgstr ""
2768
 
2769
- #: settings.php:1572
2770
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2771
  msgstr ""
2772
 
2773
- #: settings.php:1575
2774
  msgid "paragraphs below avoid"
2775
  msgstr ""
2776
 
2777
- #: settings.php:1591
2778
  msgid "If text is found"
2779
  msgstr ""
2780
 
2781
- #: settings.php:1598
2782
  msgid "check up to"
2783
  msgstr ""
2784
 
2785
- #: settings.php:1606
2786
  msgctxt "check up to"
2787
  msgid "paragraphs"
2788
  msgstr ""
2789
 
2790
- #: settings.php:1622
2791
  msgid "Categories"
2792
  msgstr ""
2793
 
2794
- #: settings.php:1625
2795
  msgid "Toggle category editor"
2796
  msgstr ""
2797
 
2798
- #: settings.php:1628
2799
  msgid "Comma separated category slugs"
2800
  msgstr ""
2801
 
2802
- #: settings.php:1632
2803
  msgid "Blacklist categories"
2804
  msgstr ""
2805
 
2806
- #: settings.php:1636
2807
  msgid "Whitelist categories"
2808
  msgstr ""
2809
 
2810
- #: settings.php:1648
2811
  msgid "Tags"
2812
  msgstr ""
2813
 
2814
- #: settings.php:1651
2815
  msgid "Toggle tag editor"
2816
  msgstr ""
2817
 
2818
- #: settings.php:1654
2819
  msgid "Comma separated tag slugs"
2820
  msgstr ""
2821
 
2822
- #: settings.php:1658
2823
  msgid "Blacklist tags"
2824
  msgstr ""
2825
 
2826
- #: settings.php:1662
2827
  msgid "Whitelist tags"
2828
  msgstr ""
2829
 
2830
- #: settings.php:1674
2831
  msgid "Taxonomies"
2832
  msgstr ""
2833
 
2834
- #: settings.php:1677
2835
  msgid "Toggle taxonomy editor"
2836
  msgstr ""
2837
 
2838
- #: settings.php:1680
2839
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2840
  msgstr ""
2841
 
2842
- #: settings.php:1684
2843
  msgid "Blacklist taxonomies"
2844
  msgstr ""
2845
 
2846
- #: settings.php:1688
2847
  msgid "Whitelist taxonomies"
2848
  msgstr ""
2849
 
2850
- #: settings.php:1700
2851
  msgid "Post IDs"
2852
  msgstr ""
2853
 
2854
- #: settings.php:1703
2855
  msgid "Toggle post/page ID editor"
2856
  msgstr ""
2857
 
2858
- #: settings.php:1706
2859
  msgid "Comma separated post/page IDs"
2860
  msgstr ""
2861
 
2862
- #: settings.php:1710
2863
  msgid "Blacklist IDs"
2864
  msgstr ""
2865
 
2866
- #: settings.php:1714
2867
  msgid "Whitelist IDs"
2868
  msgstr ""
2869
 
2870
- #: settings.php:1726
2871
  msgid "Urls"
2872
  msgstr ""
2873
 
2874
- #: settings.php:1729
2875
  msgid "Toggle url editor"
2876
  msgstr ""
2877
 
2878
- #: settings.php:1732
2879
  msgid ""
2880
  "Comma separated urls (page addresses) starting with / after domain name (e."
2881
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2883,216 +2933,216 @@ msgid ""
2883
  "start*. *url-pattern*, *url-end)"
2884
  msgstr ""
2885
 
2886
- #: settings.php:1736
2887
  msgid "Blacklist urls"
2888
  msgstr ""
2889
 
2890
- #: settings.php:1740
2891
  msgid "Whitelist urls"
2892
  msgstr ""
2893
 
2894
- #: settings.php:1751
2895
  msgid "Url parameters"
2896
  msgstr ""
2897
 
2898
- #: settings.php:1755
2899
  msgid "Toggle url parameter and cookie editor"
2900
  msgstr ""
2901
 
2902
- #: settings.php:1758
2903
  msgid ""
2904
  "Comma separated url query parameters or cookies with optional values (use "
2905
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2906
  msgstr ""
2907
 
2908
- #: settings.php:1762
2909
  msgid "Blacklist url parameters"
2910
  msgstr ""
2911
 
2912
- #: settings.php:1766
2913
  msgid "Whitelist url parameters"
2914
  msgstr ""
2915
 
2916
- #: settings.php:1777
2917
  msgid "Referrers"
2918
  msgstr ""
2919
 
2920
- #: settings.php:1780
2921
  msgid "Toggle referer editor"
2922
  msgstr ""
2923
 
2924
- #: settings.php:1783
2925
  msgid ""
2926
  "Comma separated domains, use # for no referrer, you can also use partial "
2927
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2928
  msgstr ""
2929
 
2930
- #: settings.php:1787
2931
  msgid "Blacklist referers"
2932
  msgstr ""
2933
 
2934
- #: settings.php:1791
2935
  msgid "Whitelist referers"
2936
  msgstr ""
2937
 
2938
- #: settings.php:1811
2939
  msgid "Enable widget for this block"
2940
  msgstr ""
2941
 
2942
- #: settings.php:1823
2943
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2944
  msgstr ""
2945
 
2946
- #: settings.php:1824 settings.php:4063
2947
  msgid "Shortcode"
2948
  msgstr ""
2949
 
2950
- #: settings.php:1839
2951
  msgid ""
2952
  "Enable PHP function call to insert this block at any position in theme file. "
2953
  "If function is disabled for block it will return empty string."
2954
  msgstr ""
2955
 
2956
- #: settings.php:1840
2957
  msgid "PHP function"
2958
  msgstr ""
2959
 
2960
- #: settings.php:1855
2961
  msgid "Client-side device detection"
2962
  msgstr ""
2963
 
2964
- #: settings.php:1856
2965
  msgid "Server-side device detection"
2966
  msgstr ""
2967
 
2968
- #: settings.php:1863
2969
  msgid "Use client-side detection to"
2970
  msgstr ""
2971
 
2972
- #: settings.php:1865
2973
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2974
  msgstr ""
2975
 
2976
  #. Translators: only on (the following devices): viewport names (devices)
2977
  #. listed
2978
- #: settings.php:1870
2979
  msgid "only on"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1898
2983
  msgid "Device min width %s px"
2984
  msgstr ""
2985
 
2986
- #: settings.php:1924
2987
  msgid "Use server-side detection to insert block only for"
2988
  msgstr ""
2989
 
2990
- #: settings.php:1943
2991
  msgid "Filter"
2992
  msgstr ""
2993
 
2994
- #: settings.php:1944
2995
  msgid "Word Count"
2996
  msgstr ""
2997
 
2998
- #: settings.php:1945 settings.php:4053
2999
  msgid "Scheduling"
3000
  msgstr ""
3001
 
3002
- #: settings.php:1946
3003
  msgid "Display"
3004
  msgstr ""
3005
 
3006
- #: settings.php:1948 settings.php:2192
3007
  msgid "General"
3008
  msgstr ""
3009
 
3010
- #: settings.php:1960
3011
  msgid "Old settings for AMP pages detected"
3012
  msgstr ""
3013
 
3014
- #: settings.php:1960
3015
  msgid ""
3016
  "To insert different codes on normal and AMP pages separate them with "
3017
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3018
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3019
  msgstr ""
3020
 
3021
- #: settings.php:1960
3022
  msgid "AMP pages"
3023
  msgstr ""
3024
 
3025
- #: settings.php:1965
3026
  msgid "Enable insertion for Ajax requests"
3027
  msgstr ""
3028
 
3029
- #: settings.php:1965
3030
  msgid "Ajax requests"
3031
  msgstr ""
3032
 
3033
- #: settings.php:1970
3034
  msgid "Enable insertion in RSS feeds"
3035
  msgstr ""
3036
 
3037
- #: settings.php:1970
3038
  msgid "RSS Feed"
3039
  msgstr ""
3040
 
3041
- #: settings.php:1975
3042
  msgid "Enable insertion on page for Error 404: Page not found"
3043
  msgstr ""
3044
 
3045
- #: settings.php:1975
3046
  msgid "Error 404 page"
3047
  msgstr ""
3048
 
3049
- #: settings.php:1987
3050
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3051
  msgstr ""
3052
 
3053
- #: settings.php:1988
3054
  msgid "insertions"
3055
  msgstr ""
3056
 
3057
- #: settings.php:1990
3058
  msgid ""
3059
- "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
3060
- "tab General)"
3061
  msgstr ""
3062
 
3063
- #: settings.php:1993 settings.php:2361
3064
  msgid "Max blocks per page"
3065
  msgstr ""
3066
 
3067
- #: settings.php:2005
3068
  msgid "Insert for"
3069
  msgstr ""
3070
 
3071
- #: settings.php:2013
3072
  msgid ""
3073
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3074
  "currently active). Might speed up insertion on content pages when "
3075
  "the_content filter is called multiple times."
3076
  msgstr ""
3077
 
3078
- #: settings.php:2016
3079
  msgid "Insert only in the loop"
3080
  msgstr ""
3081
 
3082
- #: settings.php:2022
3083
  msgid ""
3084
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3085
  msgstr ""
3086
 
3087
- #: settings.php:2022
3088
  msgid "Disable caching"
3089
  msgstr ""
3090
 
3091
- #: settings.php:2034
3092
  msgid "Filter insertions"
3093
  msgstr ""
3094
 
3095
- #: settings.php:2037
3096
  msgid ""
3097
  "Filter multiple insertions by specifying wanted insertions for this block - "
3098
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3100,531 +3150,531 @@ msgid ""
3100
  "using only one insertion type."
3101
  msgstr ""
3102
 
3103
- #: settings.php:2040
3104
  msgid "using"
3105
  msgstr ""
3106
 
3107
- #: settings.php:2059
3108
  msgid "Checked means specified calls are unwanted"
3109
  msgstr ""
3110
 
3111
- #: settings.php:2059
3112
  msgid "Invert filter"
3113
  msgstr ""
3114
 
3115
- #: settings.php:2065
3116
  msgid "Post/Static page must have between"
3117
  msgstr ""
3118
 
3119
- #: settings.php:2066
3120
  msgid "Minimum number of post/static page words, leave empty for no limit"
3121
  msgstr ""
3122
 
3123
- #: settings.php:2068
3124
  msgid "Maximum number of post/static page words, leave empty for no limit"
3125
  msgstr ""
3126
 
3127
- #: settings.php:2081
3128
  msgid "days after publishing"
3129
  msgstr ""
3130
 
3131
- #: settings.php:2083
3132
  msgid "Not available"
3133
  msgstr ""
3134
 
3135
- #: settings.php:2096 settings.php:2353
3136
  msgid "Ad label"
3137
  msgstr ""
3138
 
3139
- #: settings.php:2116
3140
  msgid "General tag"
3141
  msgstr ""
3142
 
3143
- #: settings.php:2120
3144
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3145
  msgstr ""
3146
 
3147
  #. translators: %s: HTML tags
3148
- #: settings.php:2129
3149
  msgid ""
3150
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3151
  "side device detection!"
3152
  msgstr ""
3153
 
3154
- #: settings.php:2141
3155
  msgid "Settings"
3156
  msgstr ""
3157
 
3158
- #: settings.php:2144
3159
  msgid "Settings timestamp"
3160
  msgstr ""
3161
 
3162
- #: settings.php:2157
3163
  msgid "Are you sure you want to reset all settings?"
3164
  msgstr ""
3165
 
3166
- #: settings.php:2157
3167
  msgid "Reset All Settings"
3168
  msgstr ""
3169
 
3170
- #: settings.php:2193
3171
  msgid "Viewports"
3172
  msgstr ""
3173
 
3174
- #: settings.php:2194
3175
  msgid "Hooks"
3176
  msgstr ""
3177
 
3178
- #: settings.php:2195
3179
  msgid "Header"
3180
  msgstr ""
3181
 
3182
- #: settings.php:2196 strings.php:30
3183
  msgid "Footer"
3184
  msgstr ""
3185
 
3186
- #: settings.php:2201
3187
  msgid "Debugging"
3188
  msgstr ""
3189
 
3190
- #: settings.php:2211
3191
  msgid "Plugin priority"
3192
  msgstr ""
3193
 
3194
- #: settings.php:2219
3195
  msgid "Output buffering"
3196
  msgstr ""
3197
 
3198
- #: settings.php:2222
3199
  msgid "Needed for position Above header but may not work with all themes"
3200
  msgstr ""
3201
 
3202
- #: settings.php:2230
3203
  msgid "Syntax highlighting theme"
3204
  msgstr ""
3205
 
3206
- #: settings.php:2237
3207
  msgctxt "no syntax highlighting themes"
3208
  msgid "None"
3209
  msgstr ""
3210
 
3211
- #: settings.php:2238
3212
  msgid "No Syntax Highlighting"
3213
  msgstr ""
3214
 
3215
- #: settings.php:2240
3216
  msgctxt "syntax highlighting themes"
3217
  msgid "Light"
3218
  msgstr ""
3219
 
3220
- #: settings.php:2255
3221
  msgctxt "syntax highlighting themes"
3222
  msgid "Dark"
3223
  msgstr ""
3224
 
3225
- #: settings.php:2281
3226
  msgid "Min. user role for ind. exceptions editing"
3227
  msgstr ""
3228
 
3229
- #: settings.php:2291
3230
  msgid "Disable caching for logged in administrators"
3231
  msgstr ""
3232
 
3233
- #: settings.php:2294
3234
  msgid ""
3235
  "Enabled means that logged in administrators will see non-cached (live) pages "
3236
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3237
  msgstr ""
3238
 
3239
- #: settings.php:2302
3240
  msgid "Sticky widget mode"
3241
  msgstr ""
3242
 
3243
- #: settings.php:2305
3244
  msgid ""
3245
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3246
  "mode works with most themes but may reload ads on page load."
3247
  msgstr ""
3248
 
3249
- #: settings.php:2313
3250
  msgid "Sticky widget top margin"
3251
  msgstr ""
3252
 
3253
- #: settings.php:2321
3254
  msgid "Dynamic blocks"
3255
  msgstr ""
3256
 
3257
- #: settings.php:2334
3258
  msgid "Functions for paragraph counting"
3259
  msgstr ""
3260
 
3261
- #: settings.php:2337
3262
  msgid ""
3263
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3264
  "functions if paragraphs are not counted properly on non-english pages."
3265
  msgstr ""
3266
 
3267
- #: settings.php:2345
3268
  msgid "No paragraph counting inside"
3269
  msgstr ""
3270
 
3271
- #: settings.php:2356
3272
  msgid "Label text or HTML code"
3273
  msgstr ""
3274
 
3275
- #: settings.php:2364
3276
  msgid ""
3277
  "Maximum number of inserted blocks per page. You need to enable Max page "
3278
  "insertions (button Misc / tab Insertion) to count block for this limit."
3279
  msgstr ""
3280
 
3281
- #: settings.php:2378
3282
  msgid "Plugin usage tracking"
3283
  msgstr ""
3284
 
3285
  #. translators: %s: Ad Inserter
3286
- #: settings.php:2381
3287
  msgid ""
3288
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3289
  "Only information regarding the WordPress environment and %s usage is "
3290
  "recorded (once per month and on events like plugin activation/deactivation)."
3291
  msgstr ""
3292
 
3293
- #: settings.php:2399
3294
  msgid "CSS class name for the wrapping div"
3295
  msgstr ""
3296
 
3297
- #: settings.php:2399
3298
  msgid "Block class name"
3299
  msgstr ""
3300
 
3301
- #: settings.php:2403
3302
  msgid "Include general plugin block class"
3303
  msgstr ""
3304
 
3305
- #: settings.php:2403
3306
  msgid "Block class"
3307
  msgstr ""
3308
 
3309
- #: settings.php:2408
3310
  msgid "Include block number class"
3311
  msgstr ""
3312
 
3313
- #: settings.php:2408
3314
  msgid "Block number class"
3315
  msgstr ""
3316
 
3317
- #: settings.php:2413
3318
  msgid ""
3319
  "Instead of alignment classes generate inline alignment styles for blocks"
3320
  msgstr ""
3321
 
3322
- #: settings.php:2413
3323
  msgid "Inline styles"
3324
  msgstr ""
3325
 
3326
- #: settings.php:2419
3327
  msgid "Preview of the block wrapping code"
3328
  msgstr ""
3329
 
3330
- #: settings.php:2420
3331
  msgid "Wrapping div"
3332
  msgstr ""
3333
 
3334
- #: settings.php:2421 settings.php:2861
3335
  msgid "BLOCK CODE"
3336
  msgstr ""
3337
 
3338
- #: settings.php:2429
3339
  msgid "Viewport Settings used for client-side device detection"
3340
  msgstr ""
3341
 
3342
  #. Translators: %d: viewport number
3343
- #: settings.php:2437
3344
  msgid "Viewport %d name"
3345
  msgstr ""
3346
 
3347
- #: settings.php:2440
3348
  msgid "min width"
3349
  msgstr ""
3350
 
3351
- #: settings.php:2451
3352
  msgid "Custom Hooks"
3353
  msgstr ""
3354
 
3355
- #: settings.php:2463 settings.php:2466
3356
  msgid "Enable hook"
3357
  msgstr ""
3358
 
3359
  #. translators: %d: hook number
3360
- #: settings.php:2466
3361
  msgid "Hook %d name"
3362
  msgstr ""
3363
 
3364
- #: settings.php:2469
3365
  msgid "Hook name for automatic insertion selection"
3366
  msgstr ""
3367
 
3368
- #: settings.php:2472
3369
  msgid "action"
3370
  msgstr ""
3371
 
3372
- #: settings.php:2475
3373
  msgid "Action name as used in the do_action () function"
3374
  msgstr ""
3375
 
3376
- #: settings.php:2478
3377
  msgid "priority"
3378
  msgstr ""
3379
 
3380
- #: settings.php:2481
3381
  msgid "Priority for the hook (default is 10)"
3382
  msgstr ""
3383
 
3384
- #: settings.php:2502
3385
  msgid "Enable insertion of this code into HTML page header"
3386
  msgstr ""
3387
 
3388
- #: settings.php:2506 settings.php:2573 settings.php:2755
3389
  msgid "Process PHP code"
3390
  msgstr ""
3391
 
3392
- #: settings.php:2510
3393
  msgid "HTML Page Header Code"
3394
  msgstr ""
3395
 
3396
- #: settings.php:2518
3397
  msgid "Code in the %s section of the HTML page"
3398
  msgstr ""
3399
 
3400
- #: settings.php:2519
3401
  msgctxt "code in the header"
3402
  msgid "NOT ENABLED"
3403
  msgstr ""
3404
 
3405
- #: settings.php:2536 settings.php:2604
3406
  msgid "Use server-side detection to insert code only for"
3407
  msgstr ""
3408
 
3409
- #: settings.php:2551
3410
  msgid ""
3411
  "Enable insertion of this code into HTML page header on page for Error 404: "
3412
  "Page not found"
3413
  msgstr ""
3414
 
3415
- #: settings.php:2551 settings.php:2619
3416
  msgid "Insert on Error 404 page"
3417
  msgstr ""
3418
 
3419
- #: settings.php:2569
3420
  msgid "Enable insertion of this code into HTML page footer"
3421
  msgstr ""
3422
 
3423
- #: settings.php:2577
3424
  msgid "HTML Page Footer Code"
3425
  msgstr ""
3426
 
3427
  #. translators: %s: HTML tags
3428
- #: settings.php:2585
3429
  msgid "Code before the %s tag of the the HTML page"
3430
  msgstr ""
3431
 
3432
- #: settings.php:2586
3433
  msgctxt "code in the footer"
3434
  msgid "NOT ENABLED"
3435
  msgstr ""
3436
 
3437
- #: settings.php:2619
3438
  msgid ""
3439
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3440
  "Page not found"
3441
  msgstr ""
3442
 
3443
- #: settings.php:2635
3444
  msgid "Code for ad blocking detection inserted. Click for details."
3445
  msgstr ""
3446
 
3447
- #: settings.php:2640
3448
  msgid "Enable detection of ad blocking"
3449
  msgstr ""
3450
 
3451
- #: settings.php:2658
3452
  msgid "Global action when ad blocking is detected"
3453
  msgstr ""
3454
 
3455
- #: settings.php:2664
3456
  msgid "No action for"
3457
  msgstr ""
3458
 
3459
- #: settings.php:2665
3460
  msgid "Exceptions for global action when ad blocking is detected."
3461
  msgstr ""
3462
 
3463
- #: settings.php:2675
3464
  msgid "Delay Action"
3465
  msgstr ""
3466
 
3467
- #: settings.php:2678
3468
  msgid ""
3469
  "Number of page views to delay action when ad blocking is detected. Leave "
3470
  "empty for no delay (action fires on first page view). Sets cookie."
3471
  msgstr ""
3472
 
3473
- #: settings.php:2678
3474
  msgctxt "Delay Action for x "
3475
  msgid "page views"
3476
  msgstr ""
3477
 
3478
- #: settings.php:2683
3479
  msgid "No Action Period"
3480
  msgstr ""
3481
 
3482
- #: settings.php:2686
3483
  msgid ""
3484
  "Number of days to supress action when ad blocking is detected. Leave empty "
3485
  "for no no-action period (action fires always after defined page view delay). "
3486
  "Sets cookie."
3487
  msgstr ""
3488
 
3489
- #: settings.php:2686
3490
  msgctxt "no action period"
3491
  msgid "days"
3492
  msgstr ""
3493
 
3494
- #: settings.php:2691
3495
  msgid "Custom Selectors"
3496
  msgstr ""
3497
 
3498
- #: settings.php:2694
3499
  msgid ""
3500
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3501
  "blocking detection. Invisible element or element with zero height means ad "
3502
  "blocking is present."
3503
  msgstr ""
3504
 
3505
- #: settings.php:2706
3506
  msgid "Redirection Page"
3507
  msgstr ""
3508
 
3509
- #: settings.php:2718
3510
  msgid "Custom Url"
3511
  msgstr ""
3512
 
3513
- #: settings.php:2723
3514
  msgid ""
3515
  "Static page for redirection when ad blocking is detected. For other pages "
3516
  "select Custom url and set it below."
3517
  msgstr ""
3518
 
3519
- #: settings.php:2732
3520
  msgid "Custom Redirection Url"
3521
  msgstr ""
3522
 
3523
- #: settings.php:2744
3524
  msgid "Message HTML code"
3525
  msgstr ""
3526
 
3527
- #: settings.php:2757
3528
  msgid "Preview message when ad blocking is detected"
3529
  msgstr ""
3530
 
3531
- #: settings.php:2786
3532
  msgid "Prevent visitors from closing the warning message"
3533
  msgstr ""
3534
 
3535
- #: settings.php:2786
3536
  msgid "Undismissible Message"
3537
  msgstr ""
3538
 
3539
- #: settings.php:2792
3540
  msgid "Not undismissible for"
3541
  msgstr ""
3542
 
3543
- #: settings.php:2793
3544
  msgid "Users which can close the warning message."
3545
  msgstr ""
3546
 
3547
- #: settings.php:2807
3548
  msgid ""
3549
  "Force showing admin toolbar for administrators when viewing site. Enable "
3550
  "this option when you are logged in as admin and you don't see admin toolbar."
3551
  msgstr ""
3552
 
3553
- #: settings.php:2815
3554
  msgid "Disable header code (Header tab)"
3555
  msgstr ""
3556
 
3557
- #: settings.php:2819
3558
  msgid "Disable footer code (Footer tab)"
3559
  msgstr ""
3560
 
3561
  #. translators: %s: Ad Inserter
3562
- #: settings.php:2823
3563
  msgid "Disable %s JavaScript code"
3564
  msgstr ""
3565
 
3566
  #. translators: %s: Ad Inserter
3567
- #: settings.php:2827
3568
  msgid "Disable %s CSS code"
3569
  msgstr ""
3570
 
3571
- #: settings.php:2831
3572
  msgid ""
3573
  "Disable PHP code processing (in all blocks including header and footer code)"
3574
  msgstr ""
3575
 
3576
- #: settings.php:2835
3577
  msgid "Disable insertion of all blocks"
3578
  msgstr ""
3579
 
3580
- #: settings.php:2839
3581
  msgid "Disable insertions"
3582
  msgstr ""
3583
 
3584
  #. translators: %s: Ad Inserter
3585
- #: settings.php:2851
3586
  msgid "%s CSS CODE"
3587
  msgstr ""
3588
 
3589
- #: settings.php:2854
3590
  msgid "HEADER CODE"
3591
  msgstr ""
3592
 
3593
  #. translators: %s: PHP tags
3594
- #: settings.php:2860
3595
  msgid "BLOCK PHP CODE"
3596
  msgstr ""
3597
 
3598
  #. translators: %s: Ad Inserter
3599
- #: settings.php:2866
3600
  msgid "%s JS CODE"
3601
  msgstr ""
3602
 
3603
- #: settings.php:2869
3604
  msgid "FOOTER CODE"
3605
  msgstr ""
3606
 
3607
- #: settings.php:2878
3608
  msgid "Force showing admin toolbar when viewing site"
3609
  msgstr ""
3610
 
3611
- #: settings.php:2885
3612
  msgid "Enable debugging functions in admin toolbar"
3613
  msgstr ""
3614
 
3615
- #: settings.php:2887
3616
  msgid "Debugging functions in admin toolbar"
3617
  msgstr ""
3618
 
3619
- #: settings.php:2894
3620
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3621
  msgstr ""
3622
 
3623
- #: settings.php:2896
3624
  msgid "Debugging functions on mobile screens"
3625
  msgstr ""
3626
 
3627
- #: settings.php:2903
3628
  msgid ""
3629
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3630
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3633,233 +3683,224 @@ msgid ""
3633
  "administrators debugging is always enabled."
3634
  msgstr ""
3635
 
3636
- #: settings.php:2905
3637
  msgid "Remote debugging"
3638
  msgstr ""
3639
 
3640
- #: settings.php:2912
3641
  msgid ""
3642
  "Disable translation to see original texts for the settings and messages in "
3643
  "English"
3644
  msgstr ""
3645
 
3646
- #: settings.php:2914
3647
  msgid "Disable translation"
3648
  msgstr ""
3649
 
3650
- #: settings.php:3284
3651
  msgid "Available positions for current theme"
3652
  msgstr ""
3653
 
3654
- #: settings.php:3285
3655
  msgid "Error checking pages"
3656
  msgstr ""
3657
 
3658
- #: settings.php:3288
3659
  msgid "Toggle theme checker for available positions for automatic insertion"
3660
  msgstr ""
3661
 
3662
- #: settings.php:3288
3663
  msgctxt "Button"
3664
  msgid "Check"
3665
  msgstr ""
3666
 
3667
- #: settings.php:3295
3668
  msgid "Position"
3669
  msgstr ""
3670
 
3671
- #: settings.php:3300
3672
  msgid "Archive pages"
3673
  msgstr ""
3674
 
3675
- #: settings.php:3359
3676
  msgid ""
3677
  "Position not available because output buffering (tab [*]) is not enabled"
3678
  msgstr ""
3679
 
3680
- #: settings.php:3362 strings.php:223
3681
  msgid "Position not checked yet"
3682
  msgstr ""
3683
 
3684
- #: settings.php:3393
3685
  msgid "Toggle active/all blocks"
3686
  msgstr ""
3687
 
3688
- #: settings.php:3397 strings.php:210
3689
  msgid "Rearrange block order"
3690
  msgstr ""
3691
 
3692
- #: settings.php:3402
3693
  msgid "Save new block order"
3694
  msgstr ""
3695
 
3696
- #: settings.php:3402
3697
- msgid "Save Changes"
3698
- msgstr ""
3699
-
3700
- #: settings.php:3427
3701
  msgid "Toggle active/all ad units"
3702
  msgstr ""
3703
 
3704
- #: settings.php:3431
3705
  msgid "Reload AdSense ad units"
3706
  msgstr ""
3707
 
3708
- #: settings.php:3435
3709
  msgid "Clear authorization to access AdSense account"
3710
  msgstr ""
3711
 
3712
- #: settings.php:3439 settings.php:4220 settings.php:4287 strings.php:218
3713
  msgid "Google AdSense Homepage"
3714
  msgstr ""
3715
 
3716
- #: settings.php:3455
3717
  msgid "Switch to physical ads.txt file"
3718
  msgstr ""
3719
 
3720
- #: settings.php:3456
3721
  msgid "Switch to virtual ads.txt file"
3722
  msgstr ""
3723
 
3724
  #. translators: %s: ads.txt
3725
- #: settings.php:3466
3726
  msgid "Open %s"
3727
  msgstr ""
3728
 
3729
- #: settings.php:3474
3730
  msgid "Reload ads.txt file"
3731
  msgstr ""
3732
 
3733
- #: settings.php:3478 settings.php:4347
3734
  msgid "Save"
3735
  msgstr ""
3736
 
3737
  #. translators: %s: Ad Inserter
3738
- #: settings.php:3653
3739
  msgid "ads.txt file: %s virtual ads.txt file"
3740
  msgstr ""
3741
 
3742
- #: settings.php:3658 settings.php:3675 strings.php:202
3743
  msgid "Warning"
3744
  msgstr ""
3745
 
3746
  #. translators: %s: Ad Inserter
3747
- #: settings.php:3658
3748
  msgid "%s virtual file ads.txt not found"
3749
  msgstr ""
3750
 
3751
- #: settings.php:3665
3752
  msgid "IMPORTANT"
3753
  msgstr ""
3754
 
3755
- #: settings.php:3665
3756
  msgid "ads.txt file must be placed on the root domain"
3757
  msgstr ""
3758
 
3759
- #: settings.php:3668
3760
- msgid "ads.txt file:"
3761
  msgstr ""
3762
 
3763
- #. translators: %s: file path
3764
- #: settings.php:3669
3765
- msgid "WordPress is installed in %s"
3766
- msgstr ""
3767
-
3768
- #: settings.php:3675
3769
  msgid "file %s not found"
3770
  msgstr ""
3771
 
3772
- #: settings.php:3685
3773
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3774
  msgstr ""
3775
 
3776
  #. translators: %s: Ad Inserter
3777
- #: settings.php:3691
3778
  msgid "%s virtual ads.txt file"
3779
  msgstr ""
3780
 
3781
- #: settings.php:3713
3782
  msgid "Advertising system"
3783
  msgstr ""
3784
 
3785
- #: settings.php:3714
3786
  msgid "Account ID"
3787
  msgstr ""
3788
 
3789
- #: settings.php:3716
3790
  msgid "Certification authority ID"
3791
  msgstr ""
3792
 
3793
- #: settings.php:3731
3794
  msgid "Account ID found in block and present in ads.txt"
3795
  msgstr ""
3796
 
3797
- #: settings.php:3735
3798
  msgid "Account ID found in block but not present in ads.txt"
3799
  msgstr ""
3800
 
3801
- #: settings.php:4010
3802
  msgid "Preview block"
3803
  msgstr ""
3804
 
3805
- #: settings.php:4019
3806
  msgid "Insertion disabled"
3807
  msgstr ""
3808
 
3809
- #: settings.php:4049
3810
  msgid "Automatic insertion"
3811
  msgstr ""
3812
 
3813
  #. translators: %s HTML tags
3814
- #: settings.php:4050 settings.php:4954
3815
  msgid "PHP code processing"
3816
  msgstr ""
3817
 
3818
- #: settings.php:4052
3819
  msgid "Device detection"
3820
  msgstr ""
3821
 
3822
- #: settings.php:4065
3823
  msgid "Widget positions"
3824
  msgstr ""
3825
 
3826
- #: settings.php:4131
3827
  msgid "Ad unit"
3828
  msgstr ""
3829
 
3830
- #: settings.php:4133
3831
  msgid "Slot ID"
3832
  msgstr ""
3833
 
3834
- #: settings.php:4159
3835
  msgid "Copy AdSense code"
3836
  msgstr ""
3837
 
3838
- #: settings.php:4162
3839
  msgid "Preview AdSense ad"
3840
  msgstr ""
3841
 
3842
- #: settings.php:4165
3843
  msgid "Get AdSense code"
3844
  msgstr ""
3845
 
3846
  #. translators: %s: HTML tags
3847
- #: settings.php:4197
3848
  msgid ""
3849
  "Please %s clear authorization %s with the button %s above and once again "
3850
  "authorize access to your AdSense account."
3851
  msgstr ""
3852
 
3853
- #: settings.php:4216
3854
  msgid "AdSense Integration"
3855
  msgstr ""
3856
 
3857
- #: settings.php:4218
3858
  msgid "AdSense Integration - Step 2"
3859
  msgstr ""
3860
 
3861
  #. translators: %s: HTML tags
3862
- #: settings.php:4224
3863
  msgid ""
3864
  "Authorize %s to access your AdSense account. Click on the %s Get "
3865
  "Authorization Code %s button to open a new window where you can allow "
@@ -3868,7 +3909,7 @@ msgid ""
3868
  msgstr ""
3869
 
3870
  #. translators: %s: HTML tags
3871
- #: settings.php:4231
3872
  msgid ""
3873
  "If you get error, can't access ad units or would like to use own Google API "
3874
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3876,7 +3917,7 @@ msgid ""
3876
  msgstr ""
3877
 
3878
  #. translators: %s: HTML tags
3879
- #: settings.php:4233
3880
  msgid ""
3881
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3882
  "Authorization Code %s button to open a new window where you can allow "
@@ -3885,38 +3926,38 @@ msgid ""
3885
  msgstr ""
3886
 
3887
  #. translators: %s: HTML tags
3888
- #: settings.php:4240
3889
  msgid ""
3890
  "If you get error %s invalid client %s click on the button %s Clear and "
3891
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3892
  msgstr ""
3893
 
3894
- #: settings.php:4251
3895
  msgid "Get Authorization Code"
3896
  msgstr ""
3897
 
3898
- #: settings.php:4254
3899
  msgid "Enter Authorization Code"
3900
  msgstr ""
3901
 
3902
- #: settings.php:4264
3903
  msgid "Use own API IDs"
3904
  msgstr ""
3905
 
3906
- #: settings.php:4266
3907
  msgid "Clear and return to Step 1"
3908
  msgstr ""
3909
 
3910
- #: settings.php:4270
3911
  msgid "Authorize"
3912
  msgstr ""
3913
 
3914
- #: settings.php:4286
3915
  msgid "AdSense Integration - Step 1"
3916
  msgstr ""
3917
 
3918
  #. translators: %s: Ad Inserter
3919
- #: settings.php:4290
3920
  msgid ""
3921
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3922
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3925,172 +3966,172 @@ msgid ""
3925
  msgstr ""
3926
 
3927
  #. translators: %s: HTML tags
3928
- #: settings.php:4299
3929
  msgid "Go to %s Google APIs and Services console %s"
3930
  msgstr ""
3931
 
3932
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3933
- #: settings.php:4300
3934
  msgid ""
3935
  "Create %1$s project - if the project and IDs are already created click on "
3936
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3937
  msgstr ""
3938
 
3939
  #. translators: %s: HTML tags
3940
- #: settings.php:4301
3941
  msgid ""
3942
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3943
  "create a new project"
3944
  msgstr ""
3945
 
3946
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3947
- #: settings.php:4302
3948
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3949
  msgstr ""
3950
 
3951
  #. translators: %s: HTML tags
3952
- #: settings.php:4303
3953
  msgid ""
3954
  "Click on project selection, wait for the project to be created and then and "
3955
  "select %s as the current project"
3956
  msgstr ""
3957
 
3958
  #. translators: %s: HTML tags
3959
- #: settings.php:4304
3960
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3961
  msgstr ""
3962
 
3963
  #. translators: %s: HTML tags
3964
- #: settings.php:4305
3965
  msgid "Search for adsense and enable %s"
3966
  msgstr ""
3967
 
3968
  #. translators: %s: HTML tags
3969
- #: settings.php:4306
3970
  msgid "Click on %s CREATE CREDENTIALS %s"
3971
  msgstr ""
3972
 
3973
  #. translators: %s: HTML tags
3974
- #: settings.php:4307
3975
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3976
  msgstr ""
3977
 
3978
  #. translators: %s: HTML tags
3979
- #: settings.php:4308
3980
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3981
  msgstr ""
3982
 
3983
  #. translators: %s: HTML tags
3984
- #: settings.php:4309
3985
  msgid "Click on %s What credentials do I need? %s"
3986
  msgstr ""
3987
 
3988
  #. translators: %s: HTML tags
3989
- #: settings.php:4310
3990
  msgid ""
3991
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3992
  "Ad Inserter client %s"
3993
  msgstr ""
3994
 
3995
  #. translators: %s: HTML tags
3996
- #: settings.php:4311
3997
  msgid ""
3998
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3999
  "enter %s"
4000
  msgstr ""
4001
 
4002
  #. translators: %s: HTML tags
4003
- #: settings.php:4312
4004
  msgid "Click on %s Continue %s"
4005
  msgstr ""
4006
 
4007
  #. translators: %s: HTML tags
4008
- #: settings.php:4313
4009
  msgid "Click on %s Done %s"
4010
  msgstr ""
4011
 
4012
  #. translators: %s: HTML tags
4013
- #: settings.php:4314
4014
  msgid ""
4015
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4016
  "secret %s"
4017
  msgstr ""
4018
 
4019
- #: settings.php:4315
4020
  msgid "Copy them to the appropriate fields below"
4021
  msgstr ""
4022
 
4023
- #: settings.php:4321
4024
  msgid "Client ID"
4025
  msgstr ""
4026
 
4027
- #: settings.php:4324
4028
  msgid "Enter Client ID"
4029
  msgstr ""
4030
 
4031
- #: settings.php:4329
4032
  msgid "Client secret"
4033
  msgstr ""
4034
 
4035
- #: settings.php:4332
4036
  msgid "Enter Client secret"
4037
  msgstr ""
4038
 
4039
- #: settings.php:4342
4040
  msgid "Use default API IDs"
4041
  msgstr ""
4042
 
4043
- #: settings.php:4623 settings.php:4636 settings.php:4649 settings.php:4664
4044
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4045
  msgstr ""
4046
 
4047
- #: settings.php:4628 settings.php:4641 settings.php:4654 settings.php:4669
4048
- #: settings.php:4849 settings.php:4853 settings.php:4871 settings.php:4875
4049
- #: settings.php:4883 settings.php:4886 settings.php:4892 settings.php:4904
4050
  msgid "Looking for AdSense alternative?"
4051
  msgstr ""
4052
 
4053
- #: settings.php:4680
4054
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4055
  msgstr ""
4056
 
4057
- #: settings.php:4685 settings.php:4851 settings.php:4855 settings.php:4863
4058
- #: settings.php:4889
4059
  msgid "Use Infolinks ads with Adsense to earn more"
4060
  msgstr ""
4061
 
4062
- #: settings.php:4704 settings.php:4742
4063
  msgid "Support plugin development"
4064
  msgstr ""
4065
 
4066
- #: settings.php:4705 settings.php:4743
4067
  msgid ""
4068
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4069
  "reviewing the plugin on WordPres"
4070
  msgstr ""
4071
 
4072
- #: settings.php:4705
4073
  msgctxt "Review ad Inserter"
4074
  msgid "Review"
4075
  msgstr ""
4076
 
4077
- #: settings.php:4706
4078
  msgid ""
4079
  "Support free Ad Inserter development. If you are making money with Ad "
4080
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4081
  "you!"
4082
  msgstr ""
4083
 
4084
- #: settings.php:4706
4085
  msgid "Donate"
4086
  msgstr ""
4087
 
4088
- #: settings.php:4713 settings.php:4758
4089
  msgid "Average rating of the plugin - Thank you!"
4090
  msgstr ""
4091
 
4092
  #. translators: %s: Ad Inserter, HTML tags
4093
- #: settings.php:4724
4094
  msgid ""
4095
  "You've been using %s for a while now, and I hope you're happy with it. "
4096
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4099,31 +4140,31 @@ msgid ""
4099
  "your website. %s Thank you!"
4100
  msgstr ""
4101
 
4102
- #: settings.php:4743
4103
  msgid "Review"
4104
  msgstr ""
4105
 
4106
- #: settings.php:4747
4107
  msgid "Ad Inserter on Twitter"
4108
  msgstr ""
4109
 
4110
- #: settings.php:4748
4111
  msgid "Ad Inserter on Facebook"
4112
  msgstr ""
4113
 
4114
- #: settings.php:4751
4115
  msgid "Follow Ad Inserter"
4116
  msgstr ""
4117
 
4118
  #. translators: %s: HTML tags
4119
- #: settings.php:4778
4120
  msgid ""
4121
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4122
  "and %s Common Settings %s pages"
4123
  msgstr ""
4124
 
4125
  #. translators: %s: HTML tags
4126
- #: settings.php:4790
4127
  msgid ""
4128
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4129
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4131,315 +4172,325 @@ msgid ""
4131
  msgstr ""
4132
 
4133
  #. translators: %s: HTML tags
4134
- #: settings.php:4811
4135
  msgid ""
4136
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4137
  "purchase you refer to us"
4138
  msgstr ""
4139
 
4140
  #. translators: %s: HTML tags
4141
- #: settings.php:4818
4142
  msgid ""
4143
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4144
  "diagnose and fix the problem."
4145
  msgstr ""
4146
 
4147
  #. translators: %s: HTML tags
4148
- #: settings.php:4822
4149
  msgid ""
4150
  "If you need any kind of help or support, please do not hesitate to open a "
4151
  "thread on the %s support forum. %s"
4152
  msgstr ""
4153
 
4154
- #: settings.php:4867 settings.php:4908
4155
  msgid "A/B testing - Track ad impressions and clicks"
4156
  msgstr ""
4157
 
4158
- #: settings.php:4900 settings.php:4912
4159
  msgid "Code preview with visual CSS editor"
4160
  msgstr ""
4161
 
4162
- #: settings.php:4920
4163
  msgid "Looking for Pro Ad Management plugin?"
4164
  msgstr ""
4165
 
4166
- #: settings.php:4921
4167
  msgid "To Optimally Monetize your WordPress website?"
4168
  msgstr ""
4169
 
4170
  #. translators: %s HTML tags
4171
- #: settings.php:4924
4172
  msgid "%s AdSense Integration %s"
4173
  msgstr ""
4174
 
4175
  #. translators: %s HTML tags
4176
- #: settings.php:4925
4177
  msgid "Syntax highlighting %s editor %s"
4178
  msgstr ""
4179
 
4180
  #. translators: %s HTML tags
4181
- #: settings.php:4926
4182
  msgid "%s Code preview %s with visual CSS editor"
4183
  msgstr ""
4184
 
4185
  #. translators: %s HTML tags
4186
- #: settings.php:4927
4187
  msgid "Simple user interface - all settings on a single page"
4188
  msgstr ""
4189
 
4190
  #. translators: %s HTML tags
4191
- #: settings.php:4928
4192
  msgid ""
4193
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4194
  "image / excerpt"
4195
  msgstr ""
4196
 
4197
  #. translators: %s HTML tags
4198
- #: settings.php:4929
4199
  msgid "%s Automatic insertion %s between posts on blog pages"
4200
  msgstr ""
4201
 
4202
  #. translators: %s HTML tags
4203
- #: settings.php:4930
4204
  msgid "%s Automatic insertion %s before, between and after comments"
4205
  msgstr ""
4206
 
4207
  #. translators: %s HTML tags
4208
- #: settings.php:4931
4209
  msgid "%s Automatic insertion %s after %s or before %s tag"
4210
  msgstr ""
4211
 
4212
  #. translators: %s HTML tags
4213
- #: settings.php:4932
4214
  msgid "Automatic insertion at %s custom hook positions %s"
4215
  msgstr ""
4216
 
4217
  #. translators: %s HTML tags
4218
- #: settings.php:4933
4219
  msgid ""
4220
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4221
  "selectors)"
4222
  msgstr ""
4223
 
4224
  #. translators: %s HTML tags
4225
- #: settings.php:4934
4226
  msgid "%s Insertion exceptions %s for individual posts and pages"
4227
  msgstr ""
4228
 
4229
  #. translators: %s HTML tags
4230
- #: settings.php:4935
4231
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4232
  msgstr ""
4233
 
4234
  #. translators: %s HTML tags
4235
- #: settings.php:4936
4236
  msgid ""
4237
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4238
  "scrolls)"
4239
  msgstr ""
4240
 
4241
  #. translators: %s HTML tags
4242
- #: settings.php:4937
4243
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4244
  msgstr ""
4245
 
4246
  #. translators: %s HTML tags
4247
- #: settings.php:4938
4248
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4249
  msgstr ""
4250
 
4251
  #. translators: %s HTML tags
4252
- #: settings.php:4939
4253
  msgid ""
4254
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4255
  "visible)"
4256
  msgstr ""
4257
 
4258
  #. translators: %s HTML tags
4259
- #: settings.php:4940
4260
  msgid ""
4261
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4262
  msgstr ""
4263
 
4264
  #. translators: %s HTML tags
4265
- #: settings.php:4941
4266
  msgid "Block %s alignment and style %s customizations"
4267
  msgstr ""
4268
 
4269
  #. translators: %s HTML tags
4270
- #: settings.php:4942
4271
  msgid ""
4272
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4273
  "TOS)"
4274
  msgstr ""
4275
 
4276
  #. translators: %s HTML tags
4277
- #: settings.php:4943
4278
  msgid ""
4279
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4280
  "feeds"
4281
  msgstr ""
4282
 
4283
  #. translators: %s HTML tags
4284
- #: settings.php:4944
4285
  msgid "%s Ad rotation %s (works also with caching)"
4286
  msgstr ""
4287
 
4288
  #. translators: %s HTML tags
4289
- #: settings.php:4945
4290
  msgid "Create, edit and check %s ads.txt %s file"
4291
  msgstr ""
4292
 
4293
  #. translators: %s HTML tags
4294
- #: settings.php:4946
4295
  msgid ""
4296
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4297
  "AdSense)"
4298
  msgstr ""
4299
 
4300
  #. translators: %s HTML tags
4301
- #: settings.php:4947
4302
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4303
  msgstr ""
4304
 
4305
  #. translators: %s HTML tags
4306
- #: settings.php:4948
4307
  msgid "%s Public web reports %s for clients, export to PDF"
4308
  msgstr ""
4309
 
4310
  #. translators: %s HTML tags
4311
- #: settings.php:4949
4312
  msgid "Support for %s A/B testing %s"
4313
  msgstr ""
4314
 
4315
  #. translators: %s HTML tags
4316
- #: settings.php:4950
 
 
 
 
 
 
 
 
 
 
4317
  msgid "Support for %s lazy loading %s"
4318
  msgstr ""
4319
 
4320
  #. translators: %s HTML tags
4321
- #: settings.php:4951
4322
  msgid "Support for ads on %s AMP pages %s"
4323
  msgstr ""
4324
 
4325
  #. translators: %s HTML tags
4326
- #: settings.php:4952
4327
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4328
  msgstr ""
4329
 
4330
  #. translators: %s HTML tags
4331
- #: settings.php:4953
4332
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4333
  msgstr ""
4334
 
4335
  #. translators: %s HTML tags
4336
- #: settings.php:4955
4337
  msgid "%s Banner %s code generator"
4338
  msgstr ""
4339
 
4340
  #. translators: %s HTML tags
4341
- #: settings.php:4956
4342
  msgid "Support for %s header and footer %s code"
4343
  msgstr ""
4344
 
4345
  #. translators: %s HTML tags
4346
- #: settings.php:4957
4347
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4348
  msgstr ""
4349
 
4350
  #. translators: %s HTML tags
4351
- #: settings.php:4958
4352
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4353
  msgstr ""
4354
 
4355
  #. translators: %s HTML tags
4356
- #: settings.php:4959
4357
  msgid "Client-side %s mobile device detection %s (works with caching)"
4358
  msgstr ""
4359
 
4360
  #. translators: %s HTML tags
4361
- #: settings.php:4960
4362
  msgid ""
4363
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4364
  "protection"
4365
  msgstr ""
4366
 
4367
  #. translators: %s HTML tags
4368
- #: settings.php:4961
4369
  msgid "%s Ad blocking statistics %s"
4370
  msgstr ""
4371
 
4372
  #. translators: %s HTML tags
4373
- #: settings.php:4962
4374
  msgid ""
4375
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4376
  "referers"
4377
  msgstr ""
4378
 
4379
  #. translators: %s HTML tags
4380
- #: settings.php:4963
4381
  msgid ""
4382
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4383
  msgstr ""
4384
 
4385
  #. translators: %s HTML tags
4386
- #: settings.php:4964
4387
  msgid "%s Multisite options %s to limit settings on the sites"
4388
  msgstr ""
4389
 
4390
  #. translators: %s HTML tags
4391
- #: settings.php:4965
4392
  msgid "%s Import/Export %s block or plugin settings"
4393
  msgstr ""
4394
 
4395
  #. translators: %s HTML tags
4396
- #: settings.php:4966
4397
  msgid "%s Insertion scheduling %s with fallback option"
4398
  msgstr ""
4399
 
4400
  #. translators: %s HTML tags
4401
- #: settings.php:4967
4402
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4403
  msgstr ""
4404
 
4405
  #. translators: %s HTML tags
4406
- #: settings.php:4968
4407
  msgid "Simple troubleshooting with many %s debugging functions %s"
4408
  msgstr ""
4409
 
4410
  #. translators: %s HTML tags
4411
- #: settings.php:4969
4412
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4413
  msgstr ""
4414
 
4415
  #. translators: %s HTML tags
4416
- #: settings.php:4970
4417
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4418
  msgstr ""
4419
 
4420
  #. translators: %s HTML tags
4421
- #: settings.php:4971
4422
  msgid ""
4423
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4424
  msgstr ""
4425
 
4426
  #. translators: %s HTML tags
4427
- #: settings.php:4972
4428
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4429
  msgstr ""
4430
 
4431
  #. translators: %s HTML tags
4432
- #: settings.php:4973
4433
  msgid "No ads on the settings page"
4434
  msgstr ""
4435
 
4436
  #. translators: %s HTML tags
4437
- #: settings.php:4974
4438
  msgid "Premium support"
4439
  msgstr ""
4440
 
4441
  #. translators: %s HTML tags
4442
- #: settings.php:4977
4443
  msgid ""
4444
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4445
  "website with many advertising features to automatically insert adverts on "
@@ -4454,82 +4505,82 @@ msgid ""
4454
  msgstr ""
4455
 
4456
  #. translators: %s HTML tags
4457
- #: settings.php:4990
4458
  msgid "Looking for %s Pro Ad Management plugin? %s"
4459
  msgstr ""
4460
 
4461
  #. translators: %s HTML tags
4462
- #: settings.php:4995
4463
  msgid "Ads between posts"
4464
  msgstr ""
4465
 
4466
  #. translators: %s HTML tags
4467
- #: settings.php:4996
4468
  msgid "Ads between comments"
4469
  msgstr ""
4470
 
4471
  #. translators: %s HTML tags
4472
- #: settings.php:4997
4473
  msgid "Support via email"
4474
  msgstr ""
4475
 
4476
  #. translators: %s HTML tags
4477
- #: settings.php:5003
4478
  msgid "%s Sticky positions %s"
4479
  msgstr ""
4480
 
4481
  #. translators: %s HTML tags
4482
- #: settings.php:5004
4483
  msgid "%s Limit insertions %s"
4484
  msgstr ""
4485
 
4486
  #. translators: %s HTML tags
4487
- #: settings.php:5005
4488
  msgid "%s Clearance %s options"
4489
  msgstr ""
4490
 
4491
  #. translators: %s HTML tags
4492
- #: settings.php:5011
4493
  msgid "Ad rotation"
4494
  msgstr ""
4495
 
4496
  #. translators: %s HTML tags
4497
- #: settings.php:5012
4498
  msgid "%s A/B testing %s"
4499
  msgstr ""
4500
 
4501
  #. translators: %s HTML tags
4502
- #: settings.php:5013
4503
  msgid "%s Ad tracking %s"
4504
  msgstr ""
4505
 
4506
  #. translators: %s HTML tags
4507
- #: settings.php:5019
4508
  msgid "Support for %s AMP pages %s"
4509
  msgstr ""
4510
 
4511
  #. translators: %s HTML tags
4512
- #: settings.php:5020
4513
  msgid "%s Ad blocking detection %s"
4514
  msgstr ""
4515
 
4516
  #. translators: %s HTML tags
4517
- #: settings.php:5021
4518
  msgid "%s Mobile device detection %s"
4519
  msgstr ""
4520
 
4521
  #. translators: %s HTML tags
4522
- #: settings.php:5028
4523
  msgid "64 code blocks"
4524
  msgstr ""
4525
 
4526
  #. translators: %s HTML tags
4527
- #: settings.php:5029
4528
  msgid "%s GEO targeting %s"
4529
  msgstr ""
4530
 
4531
  #. translators: %s HTML tags
4532
- #: settings.php:5030
4533
  msgid "%s Scheduling %s"
4534
  msgstr ""
4535
 
@@ -4676,631 +4727,639 @@ msgid "do not contain"
4676
  msgstr ""
4677
 
4678
  #: strings.php:51
 
 
 
 
 
 
 
 
4679
  msgctxt "insert for"
4680
  msgid "all users"
4681
  msgstr ""
4682
 
4683
- #: strings.php:52
4684
  msgctxt "insert for"
4685
  msgid "logged in users"
4686
  msgstr ""
4687
 
4688
- #: strings.php:53
4689
  msgctxt "insert for"
4690
  msgid "not logged in users"
4691
  msgstr ""
4692
 
4693
- #: strings.php:54
4694
  msgctxt "insert for"
4695
  msgid "administrators"
4696
  msgstr ""
4697
 
4698
- #: strings.php:56
4699
  msgid "Black list"
4700
  msgstr ""
4701
 
4702
- #: strings.php:57
4703
  msgid "White list"
4704
  msgstr ""
4705
 
4706
- #: strings.php:59
4707
  msgctxt "alignment"
4708
  msgid "Default"
4709
  msgstr ""
4710
 
4711
- #: strings.php:60
4712
  msgctxt "alignment"
4713
  msgid "Left"
4714
  msgstr ""
4715
 
4716
- #: strings.php:61
4717
  msgctxt "alignment"
4718
  msgid "Right"
4719
  msgstr ""
4720
 
4721
- #: strings.php:62
4722
  msgctxt "alignment"
4723
  msgid "Center"
4724
  msgstr ""
4725
 
4726
- #: strings.php:63
4727
  msgctxt "alignment"
4728
  msgid "Float left"
4729
  msgstr ""
4730
 
4731
- #: strings.php:64
4732
  msgctxt "alignment"
4733
  msgid "Float right"
4734
  msgstr ""
4735
 
4736
- #: strings.php:65
4737
  msgctxt "alignment"
4738
  msgid "No wrapping"
4739
  msgstr ""
4740
 
4741
- #: strings.php:66
4742
  msgid "Custom CSS"
4743
  msgstr ""
4744
 
4745
- #: strings.php:67
4746
  msgid "Sticky left"
4747
  msgstr ""
4748
 
4749
- #: strings.php:68
4750
  msgid "Sticky right"
4751
  msgstr ""
4752
 
4753
- #: strings.php:69
4754
  msgid "Sticky top"
4755
  msgstr ""
4756
 
4757
- #: strings.php:70
4758
  msgid "Sticky bottom"
4759
  msgstr ""
4760
 
4761
- #: strings.php:71
4762
  msgctxt "alignment"
4763
  msgid "Sticky"
4764
  msgstr ""
4765
 
4766
- #: strings.php:73
4767
  msgctxt "using"
4768
  msgid "auto counter"
4769
  msgstr ""
4770
 
4771
- #: strings.php:74
4772
  msgctxt "using"
4773
  msgid "PHP function calls counter"
4774
  msgstr ""
4775
 
4776
- #: strings.php:75
4777
  msgctxt "using"
4778
  msgid "content processing counter"
4779
  msgstr ""
4780
 
4781
- #: strings.php:76
4782
  msgctxt "using"
4783
  msgid "excerpt processing counter"
4784
  msgstr ""
4785
 
4786
- #: strings.php:77
4787
  msgctxt "using"
4788
  msgid "before post processing counter"
4789
  msgstr ""
4790
 
4791
- #: strings.php:78
4792
  msgctxt "using"
4793
  msgid "after post processing counter"
4794
  msgstr ""
4795
 
4796
- #: strings.php:79
4797
  msgctxt "using"
4798
  msgid "widget drawing counter"
4799
  msgstr ""
4800
 
4801
- #: strings.php:80
4802
  msgctxt "using"
4803
  msgid "subpages counter"
4804
  msgstr ""
4805
 
4806
- #: strings.php:81
4807
  msgctxt "using"
4808
  msgid "posts counter"
4809
  msgstr ""
4810
 
4811
- #: strings.php:82
4812
  msgctxt "using"
4813
  msgid "paragraphs counter"
4814
  msgstr ""
4815
 
4816
- #: strings.php:83
4817
  msgctxt "using"
4818
  msgid "comments counter"
4819
  msgstr ""
4820
 
4821
- #: strings.php:84
4822
  msgctxt "using"
4823
  msgid "images counter"
4824
  msgstr ""
4825
 
4826
- #: strings.php:87
4827
  msgctxt "posts"
4828
  msgid "Individually disabled"
4829
  msgstr ""
4830
 
4831
- #: strings.php:88
4832
  msgctxt "posts"
4833
  msgid "Individually enabled"
4834
  msgstr ""
4835
 
4836
- #: strings.php:90
4837
  msgctxt "static pages"
4838
  msgid "Individually disabled"
4839
  msgstr ""
4840
 
4841
- #: strings.php:91
4842
  msgctxt "static pages"
4843
  msgid "Individually enabled"
4844
  msgstr ""
4845
 
4846
- #: strings.php:93
4847
  msgid "Server-side"
4848
  msgstr ""
4849
 
4850
- #: strings.php:94
4851
  msgctxt "Insertion"
4852
  msgid "Client-side"
4853
  msgstr ""
4854
 
4855
- #: strings.php:95
4856
  msgctxt "Dynamic blocks"
4857
  msgid "Client-side show"
4858
  msgstr ""
4859
 
4860
- #: strings.php:96
4861
  msgctxt "Dynamic blocks"
4862
  msgid "Client-side insert"
4863
  msgstr ""
4864
 
4865
- #: strings.php:97
4866
  msgctxt "Insertion"
4867
  msgid "Server-side using W3 Total Cache"
4868
  msgstr ""
4869
 
4870
- #: strings.php:98
4871
  msgctxt "Insertion"
4872
  msgid "Client-side when DOM ready"
4873
  msgstr ""
4874
 
4875
- #: strings.php:103
4876
  msgid "Replace element"
4877
  msgstr ""
4878
 
4879
- #: strings.php:105
4880
  msgid "desktop devices"
4881
  msgstr ""
4882
 
4883
- #: strings.php:106
4884
  msgid "mobile devices"
4885
  msgstr ""
4886
 
4887
- #: strings.php:107
4888
  msgid "tablet devices"
4889
  msgstr ""
4890
 
4891
- #: strings.php:108
4892
  msgid "phone devices"
4893
  msgstr ""
4894
 
4895
- #: strings.php:109
4896
  msgid "desktop and tablet devices"
4897
  msgstr ""
4898
 
4899
- #: strings.php:110
4900
  msgid "desktop and phone devices"
4901
  msgstr ""
4902
 
4903
- #: strings.php:112
4904
  msgid "Stick to the left"
4905
  msgstr ""
4906
 
4907
- #: strings.php:113
4908
  msgid "Stick to the content left"
4909
  msgstr ""
4910
 
4911
- #: strings.php:114
4912
  msgid "Stick to the content right"
4913
  msgstr ""
4914
 
4915
- #: strings.php:115
4916
  msgid "Stick to the right"
4917
  msgstr ""
4918
 
4919
- #: strings.php:117
4920
  msgid "Stick to the top"
4921
  msgstr ""
4922
 
4923
- #: strings.php:118
4924
  msgid "Scroll with the content"
4925
  msgstr ""
4926
 
4927
- #: strings.php:119
4928
  msgid "Stick to the bottom"
4929
  msgstr ""
4930
 
4931
- #: strings.php:121
4932
  msgid "Fade"
4933
  msgstr ""
4934
 
4935
- #: strings.php:122
4936
  msgid "Slide"
4937
  msgstr ""
4938
 
4939
- #: strings.php:123
4940
  msgid "Slide and Fade"
4941
  msgstr ""
4942
 
4943
- #: strings.php:124
4944
  msgid "Flip"
4945
  msgstr ""
4946
 
4947
- #: strings.php:125
4948
  msgid "Zoom In"
4949
  msgstr ""
4950
 
4951
- #: strings.php:126
4952
  msgid "Zoom Out"
4953
  msgstr ""
4954
 
4955
- #: strings.php:127
4956
  msgid "Turn"
4957
  msgstr ""
4958
 
4959
- #: strings.php:129
4960
  msgid "Page loaded"
4961
  msgstr ""
4962
 
4963
- #: strings.php:130
4964
  msgid "Page scrolled (%)"
4965
  msgstr ""
4966
 
4967
- #: strings.php:131
4968
  msgid "Page scrolled (px)"
4969
  msgstr ""
4970
 
4971
- #: strings.php:132
4972
  msgid "Element visible"
4973
  msgstr ""
4974
 
4975
- #: strings.php:134
4976
  msgid "Insert immediately"
4977
  msgstr ""
4978
 
4979
- #: strings.php:135
4980
  msgid "Delay insertion"
4981
  msgstr ""
4982
 
4983
- #: strings.php:136
4984
  msgid "Insert between dates"
4985
  msgstr ""
4986
 
4987
- #: strings.php:137
4988
  msgid "Insert outside dates"
4989
  msgstr ""
4990
 
4991
- #: strings.php:138
4992
  msgid "Insert only"
4993
  msgstr ""
4994
 
4995
- #: strings.php:139
4996
  msgid "Insert for posts published between dates"
4997
  msgstr ""
4998
 
4999
- #: strings.php:140
5000
  msgid "Insert for posts published outside dates"
5001
  msgstr ""
5002
 
5003
- #: strings.php:142
5004
  msgctxt "functions"
5005
  msgid "Standard"
5006
  msgstr ""
5007
 
5008
- #: strings.php:143
5009
  msgctxt "detection"
5010
  msgid "Standard"
5011
  msgstr ""
5012
 
5013
- #: strings.php:144
5014
  msgctxt "functions"
5015
  msgid "Multibyte"
5016
  msgstr ""
5017
 
5018
- #: strings.php:146
5019
  msgctxt "action"
5020
  msgid "None"
5021
  msgstr ""
5022
 
5023
- #: strings.php:147
5024
  msgctxt "button"
5025
  msgid "None"
5026
  msgstr ""
5027
 
5028
- #: strings.php:148
5029
  msgid "Popup Message"
5030
  msgstr ""
5031
 
5032
- #: strings.php:149
5033
  msgid "Redirection"
5034
  msgstr ""
5035
 
5036
- #: strings.php:151
5037
  msgid "Do nothnig"
5038
  msgstr ""
5039
 
5040
- #: strings.php:153
5041
  msgctxt "Action when ad blocking detected"
5042
  msgid "Show"
5043
  msgstr ""
5044
 
5045
- #: strings.php:154
5046
  msgctxt "Action when ad blocking detected"
5047
  msgid "Hide"
5048
  msgstr ""
5049
 
5050
- #: strings.php:156
5051
  msgctxt "tracking"
5052
  msgid "Internal"
5053
  msgstr ""
5054
 
5055
- #: strings.php:157
5056
  msgctxt "detection"
5057
  msgid "Advanced"
5058
  msgstr ""
5059
 
5060
- #: strings.php:160
5061
  msgid "Top right"
5062
  msgstr ""
5063
 
5064
- #: strings.php:161
5065
  msgid "Top left"
5066
  msgstr ""
5067
 
5068
- #: strings.php:162
5069
  msgid "Bottom right"
5070
  msgstr ""
5071
 
5072
- #: strings.php:163
5073
  msgid "Bottom left"
5074
  msgstr ""
5075
 
5076
- #: strings.php:165
5077
  msgctxt "AdSense Ad Type"
5078
  msgid "Standard"
5079
  msgstr ""
5080
 
5081
- #: strings.php:166
5082
  msgctxt "AdSense Ad Type"
5083
  msgid "Link"
5084
  msgstr ""
5085
 
5086
- #: strings.php:167
5087
  msgctxt "AdSense Ad Type"
5088
  msgid "In-article"
5089
  msgstr ""
5090
 
5091
- #: strings.php:168
5092
  msgctxt "AdSense Ad Type"
5093
  msgid "In-feed"
5094
  msgstr ""
5095
 
5096
- #: strings.php:169
5097
  msgctxt "AdSense Ad Type"
5098
  msgid "Matched content"
5099
  msgstr ""
5100
 
5101
- #: strings.php:170
5102
  msgctxt "AdSense Ad Type"
5103
  msgid "Auto Ads"
5104
  msgstr ""
5105
 
5106
- #: strings.php:172
5107
  msgctxt "AMP ad"
5108
  msgid "Disabled"
5109
  msgstr ""
5110
 
5111
- #: strings.php:173
5112
  msgid "Above the fold"
5113
  msgstr ""
5114
 
5115
- #: strings.php:174
5116
  msgid "Below the fold"
5117
  msgstr ""
5118
 
5119
- #: strings.php:176
5120
  msgctxt "size"
5121
  msgid "Fixed"
5122
  msgstr ""
5123
 
5124
- #: strings.php:177
5125
  msgctxt "size"
5126
  msgid "Responsive"
5127
  msgstr ""
5128
 
5129
- #: strings.php:178
5130
  msgctxt "size"
5131
  msgid "Fixed by viewport"
5132
  msgstr ""
5133
 
5134
- #: strings.php:182
5135
  msgid "Impressions and clicks"
5136
  msgstr ""
5137
 
5138
- #: strings.php:183
5139
  msgid "Advanced WordPress Ad Management Plugin"
5140
  msgstr ""
5141
 
5142
- #: strings.php:189
5143
  msgctxt "Button"
5144
  msgid "Hide"
5145
  msgstr ""
5146
 
5147
- #: strings.php:190
5148
  msgctxt "Button"
5149
  msgid "Show"
5150
  msgstr ""
5151
 
5152
- #: strings.php:191
5153
  msgid "Insertion expired"
5154
  msgstr ""
5155
 
5156
- #: strings.php:192
5157
  msgid "Duration"
5158
  msgstr ""
5159
 
5160
- #: strings.php:193
5161
  msgid "Invalid end date - must be after start date"
5162
  msgstr ""
5163
 
5164
- #: strings.php:194
5165
  msgid "Invalid start date - only data for 1 year back is available"
5166
  msgstr ""
5167
 
5168
- #: strings.php:195
5169
  msgid "Invalid date range - only data for 1 year can be displayed"
5170
  msgstr ""
5171
 
5172
- #: strings.php:203
5173
  msgid "Delete"
5174
  msgstr ""
5175
 
5176
- #: strings.php:204
5177
  msgid "Switch"
5178
  msgstr ""
5179
 
5180
- #: strings.php:206
5181
  msgid "Delete all statistics data?"
5182
  msgstr ""
5183
 
5184
  #. translators: %s: dates
5185
- #: strings.php:208
5186
  msgid "Delete statistics data between %s and %s?"
5187
  msgstr ""
5188
 
5189
- #: strings.php:209
5190
  msgid "Cancel block order rearrangement"
5191
  msgstr ""
5192
 
5193
- #: strings.php:211
5194
  msgid "downloading..."
5195
  msgstr ""
5196
 
5197
- #: strings.php:212
5198
  msgid "download error"
5199
  msgstr ""
5200
 
5201
- #: strings.php:213
5202
  msgid "update error"
5203
  msgstr ""
5204
 
5205
- #: strings.php:214
5206
  msgid "Updating..."
5207
  msgstr ""
5208
 
5209
- #: strings.php:216
5210
  msgid "ERROR"
5211
  msgstr ""
5212
 
5213
- #: strings.php:217
5214
  msgid "Error reloading settings"
5215
  msgstr ""
5216
 
5217
- #: strings.php:219
5218
  msgctxt "Search field placeholder"
5219
  msgid "Search..."
5220
  msgstr ""
5221
 
5222
- #: strings.php:220
5223
  msgctxt "Search field placeholder"
5224
  msgid "Filter..."
5225
  msgstr ""
5226
 
5227
- #: strings.php:221
5228
  msgid "Use filter to limit names in the list"
5229
  msgstr ""
5230
 
5231
- #: strings.php:222
5232
  msgctxt "Button"
5233
  msgid "Filter"
5234
  msgstr ""
5235
 
5236
- #: strings.php:224
5237
  msgid "Position not available"
5238
  msgstr ""
5239
 
5240
- #: strings.php:225
5241
  msgid ""
5242
  "Theme check | Selected position for automatic insertion might not be not "
5243
  "available on this page type"
5244
  msgstr ""
5245
 
5246
- #: strings.php:226
5247
  msgid "Position available"
5248
  msgstr ""
5249
 
5250
- #: strings.php:228
5251
  msgid "Select or upload banner image"
5252
  msgstr ""
5253
 
5254
- #: strings.php:229
5255
  msgid "Use this image"
5256
  msgstr ""
5257
 
5258
- #: strings.php:230
5259
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5260
  msgstr ""
5261
 
5262
- #: strings.php:244
5263
  msgid "Add"
5264
  msgstr ""
5265
 
5266
- #: strings.php:245
5267
  msgid "Parent"
5268
  msgstr ""
5269
 
5270
- #: strings.php:246
5271
  msgid "Cancel element selection"
5272
  msgstr ""
5273
 
5274
- #: strings.php:247
5275
  msgid "Select parent element"
5276
  msgstr ""
5277
 
5278
- #: strings.php:248
5279
  msgid "CSS selector"
5280
  msgstr ""
5281
 
5282
- #: strings.php:249
5283
  msgid "Use current selector"
5284
  msgstr ""
5285
 
5286
- #: strings.php:250
5287
  msgid "ELEMENT"
5288
  msgstr ""
5289
 
5290
- #: strings.php:251
5291
  msgid "PATH"
5292
  msgstr ""
5293
 
5294
- #: strings.php:252
5295
  msgid "SELECTOR"
5296
  msgstr ""
5297
 
5298
- #: strings.php:253
5299
  msgctxt "Block"
5300
  msgid "VISIBLE"
5301
  msgstr ""
5302
 
5303
- #: strings.php:254
5304
  msgctxt "Block"
5305
  msgid "HIDDEN"
5306
  msgstr ""
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.5.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-04 18:34:16+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:394
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:410
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:417
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:488
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:495
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:504
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:511
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:521
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1123
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1128
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1133 strings.php:103
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1138 strings.php:104
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1143 strings.php:105
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1148 strings.php:155
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1195
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1199
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1408
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1733 ad-inserter.php:2634
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2180
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2180
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2181
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2182
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2183
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2184
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2185
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2384
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2385 includes/functions.old.php:1652
144
+ #: includes/functions.php:1662
145
  msgid "No, thank you."
146
  msgstr ""
147
 
148
  #. Translators: %s: Ad Inserter
149
+ #: ad-inserter.php:2388
150
  msgid ""
151
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
152
  msgstr ""
153
 
154
+ #: ad-inserter.php:2389 includes/functions.old.php:1655
155
+ #: includes/functions.php:1665
156
  msgid "Not now, maybe later."
157
  msgstr ""
158
 
159
+ #: ad-inserter.php:2399
160
  msgid "I would really appreciate if you could rate the plugin on WordPres."
161
  msgstr ""
162
 
163
+ #: ad-inserter.php:2401
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
+ #: ad-inserter.php:2407
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2412
175
  msgid "I already did."
176
  msgstr ""
177
 
178
+ #: ad-inserter.php:2425
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
+ #: ad-inserter.php:2525
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
+ #: ad-inserter.php:2554 ad-inserter.php:8555 class.php:2053
190
  #: includes/preview.php:1976 includes/preview.php:2020
191
+ #: includes/preview.php:2057 settings.php:4040 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2555 settings.php:4041 settings.php:4126
196
  msgid "Name"
197
  msgstr ""
198
 
199
+ #: ad-inserter.php:2558 settings.php:1119
200
  msgid "Default insertion"
201
  msgstr ""
202
 
203
  #. translators: For this post or page
204
+ #: ad-inserter.php:2561
205
  msgctxt "Page"
206
  msgid "For this"
207
  msgstr ""
208
 
209
+ #: ad-inserter.php:2562
210
  msgctxt "Post"
211
  msgid "For this"
212
  msgstr ""
213
 
214
+ #: ad-inserter.php:2574
215
  msgctxt "Enabled/disabled on all"
216
  msgid "pages"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:2577
220
  msgctxt "Enabled/disabled on all"
221
  msgid "posts"
222
  msgstr ""
223
 
224
+ #: ad-inserter.php:2595 ad-inserter.php:2607 strings.php:161
225
  msgid "Enabled"
226
  msgstr ""
227
 
228
  #. translators: Menu items
229
+ #: ad-inserter.php:2595 ad-inserter.php:2607 includes/functions.old.php:2326
230
+ #: includes/functions.php:2338 strings.php:16
231
  msgid "Disabled"
232
  msgstr ""
233
 
234
+ #: ad-inserter.php:2597
235
  msgid "No individual exceptions"
236
  msgstr ""
237
 
238
  #. translators: Not enabled for pages or posts
239
+ #: ad-inserter.php:2599
240
  msgid "Not enabled for"
241
  msgstr ""
242
 
243
  #. translators: No individual exceptions enabled for pages or posts
244
+ #: ad-inserter.php:2627
245
  msgid "No block has individual exceptions enabled"
246
  msgstr ""
247
 
248
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
249
+ #: ad-inserter.php:2632
250
  msgid ""
251
  "Default insertion can be configured for each block on %1$s page - button "
252
  "next to %2$s checkbox."
253
  msgstr ""
254
 
255
+ #: ad-inserter.php:2635 settings.php:1097
256
  msgid "Tag / Archive pages"
257
  msgstr ""
258
 
259
+ #: ad-inserter.php:2637
260
  msgid ""
261
  "When individual exceptions for a block are enabled, a checkbox will be "
262
  "listed here to change default insertion for this post or page."
263
  msgstr ""
264
 
265
+ #: ad-inserter.php:2638
266
  msgid ""
267
  "This way you can individually enable or disable blocks on specific posts or "
268
  "pages."
269
  msgstr ""
270
 
271
+ #: ad-inserter.php:2640
272
  msgid "For more information check page %s"
273
  msgstr ""
274
 
275
  #. translators: Ad Inserter Exceptions documentation page
276
+ #: ad-inserter.php:2642
277
  msgid "Individual Exceptions"
278
  msgstr ""
279
 
280
+ #: ad-inserter.php:2689
281
  msgid "STATIC PAGE"
282
  msgstr ""
283
 
284
+ #: ad-inserter.php:2692
285
  msgid "POST"
286
  msgstr ""
287
 
288
+ #: ad-inserter.php:2695
289
  msgid "HOMEPAGE"
290
  msgstr ""
291
 
292
+ #: ad-inserter.php:2698
293
  msgid "CATEGORY PAGE"
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:2701
297
  msgid "SEARCH PAGE"
298
  msgstr ""
299
 
300
+ #: ad-inserter.php:2704
301
  msgid "ARCHIVE PAGE"
302
  msgstr ""
303
 
304
+ #: ad-inserter.php:2707
305
  msgid "ERROR 404 PAGE"
306
  msgstr ""
307
 
308
+ #: ad-inserter.php:2710
309
  msgid "AJAX CALL"
310
  msgstr ""
311
 
312
+ #: ad-inserter.php:2713
313
  msgid "UNKNOWN PAGE TYPE"
314
  msgstr ""
315
 
316
+ #: ad-inserter.php:2730
317
  msgid "Click to delete ad blocking detection cokies"
318
  msgstr ""
319
 
320
+ #: ad-inserter.php:2731
321
  msgid "AD BLOCKING STATUS UNKNOWN"
322
  msgstr ""
323
 
324
  #. translators: %s: AdSense Auto Ads
325
+ #: ad-inserter.php:2755
326
  msgid ""
327
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
328
  "positions"
329
  msgstr ""
330
 
331
+ #: ad-inserter.php:2894
332
  msgid "Code for insertion"
333
  msgstr ""
334
 
335
+ #: ad-inserter.php:2894
336
  msgid "character"
337
  msgid_plural "characters"
338
  msgstr[0] ""
339
  msgstr[1] ""
340
 
341
+ #: ad-inserter.php:2937
342
  msgid "Header code"
343
  msgstr ""
344
 
345
+ #: ad-inserter.php:2937
346
  msgctxt "Header code"
347
  msgid "DISABLED"
348
  msgstr ""
349
 
350
+ #: ad-inserter.php:2937 ad-inserter.php:3160
351
  msgid "character inserted"
352
  msgid_plural "characters inserted"
353
  msgstr[0] ""
354
  msgstr[1] ""
355
 
356
+ #: ad-inserter.php:2971
357
  msgid "Automatically placed by AdSense Auto ads code"
358
  msgstr ""
359
 
360
+ #: ad-inserter.php:3160
361
  msgid "Footer code"
362
  msgstr ""
363
 
364
+ #: ad-inserter.php:3160
365
  msgctxt "Footer code"
366
  msgid "DISABLED"
367
  msgstr ""
368
 
369
+ #: ad-inserter.php:3166
370
  msgid "JAVASCRIPT NOT WORKING"
371
  msgstr ""
372
 
373
+ #: ad-inserter.php:3166
374
  msgid "NO JAVASCRIPT ERRORS"
375
  msgstr ""
376
 
377
+ #: ad-inserter.php:3166
378
  msgid "JAVASCRIPT ERRORS"
379
  msgstr ""
380
 
381
  #. translators: block name (block with default settings)
382
+ #: ad-inserter.php:5421
383
  msgctxt "Block name"
384
  msgid "Default"
385
  msgstr ""
386
 
387
  #. translators: %s: Ad Inserter
388
+ #: ad-inserter.php:6002
389
  msgid "Error importing %s settings."
390
  msgstr ""
391
 
392
+ #: ad-inserter.php:6003
393
  msgid "Error importing settings for block"
394
  msgid_plural "Error importing settings for blocks:"
395
  msgstr[0] ""
396
  msgstr[1] ""
397
 
398
+ #: ad-inserter.php:6052
399
  msgid "Settings saved."
400
  msgstr ""
401
 
402
+ #: ad-inserter.php:6139
403
  msgid "Settings cleared."
404
  msgstr ""
405
 
406
+ #: ad-inserter.php:6484 ad-inserter.php:6486 ad-inserter.php:6509
407
  msgid "word"
408
  msgid_plural "words"
409
  msgstr[0] ""
410
  msgstr[1] ""
411
 
412
+ #: ad-inserter.php:6523 ad-inserter.php:6635
413
  msgid "HTML TAGS REMOVED"
414
  msgstr ""
415
 
416
+ #: ad-inserter.php:6711
417
  msgid "BEFORE COMMENTS"
418
  msgstr ""
419
 
420
+ #: ad-inserter.php:6819
421
  msgid "AFTER COMMENTS"
422
  msgstr ""
423
 
424
+ #: ad-inserter.php:6882
425
  msgid "BETWEEN COMMENTS"
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:8189
429
  msgid "requires WordPress 4.0 or newer"
430
  msgstr ""
431
 
432
+ #: ad-inserter.php:8189
433
  msgid "Please update!"
434
  msgstr ""
435
 
436
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
437
  #. name with HTML tags will be added)
438
+ #: ad-inserter.php:8428
439
  msgid "Thank you for installing"
440
  msgstr ""
441
 
442
  #. translators: Opt-in message: %s: HTML tags
443
+ #: ad-inserter.php:8430
444
  msgid ""
445
  "We would like to %s track its usage %s on your site. This is completely "
446
  "optional and can be disabled at any time."
447
  msgstr ""
448
 
449
+ #: ad-inserter.php:8432
450
  msgid ""
451
  "We don't record any sensitive data, only information regarding the WordPress "
452
  "environment and plugin usage, which will help us to make improvements to the "
454
  msgstr ""
455
 
456
  #. translators: Deactivation message: %s: HTML tags
457
+ #: ad-inserter.php:8469
458
  msgid ""
459
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
460
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
462
  msgstr ""
463
 
464
  #. translators: %s: Ad Inserter
465
+ #: ad-inserter.php:8512
466
  msgid "%s block."
467
  msgstr ""
468
 
469
  #. translators: widget title
470
+ #: ad-inserter.php:8528 ad-inserter.php:8564
471
  msgid "Processing log"
472
  msgstr ""
473
 
474
  #. translators: widget title
475
+ #: ad-inserter.php:8530 ad-inserter.php:8565
476
  msgid "Dummy widget"
477
  msgstr ""
478
 
479
  #. translators: widget title
480
+ #: ad-inserter.php:8532 ad-inserter.php:8563
481
  msgid "Debugging tools"
482
  msgstr ""
483
 
484
  #. translators: block status (widget title)
485
+ #: ad-inserter.php:8539
486
  msgctxt "block"
487
  msgid "PAUSED"
488
  msgstr ""
489
 
490
+ #: ad-inserter.php:8540
491
  msgid "WIDGET DISABLED"
492
  msgstr ""
493
 
494
+ #: ad-inserter.php:8541
495
  msgid "Unknown block"
496
  msgstr ""
497
 
498
+ #: ad-inserter.php:8550 includes/functions.old.php:3186
499
+ #: includes/functions.php:3198 settings.php:1149
500
  msgid "Title"
501
  msgstr ""
502
 
503
+ #: ad-inserter.php:8572
504
  msgctxt "Widget"
505
  msgid "Sticky"
506
  msgstr ""
507
 
508
+ #: ad-inserter.php:8621
509
  msgid ""
510
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
511
  "Inserter you need to first deactivate Ad Inserter Pro."
512
  msgstr ""
513
 
514
+ #: ad-inserter.php:8622
515
  msgid ""
516
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
517
  "will clear all settings that are available only in the Pro version "
523
  msgid "PHP error in %s block"
524
  msgstr ""
525
 
526
+ #: class.php:2019
527
  msgid "Counters"
528
  msgstr ""
529
 
530
+ #: class.php:2023
531
  msgid "Content"
532
  msgstr ""
533
 
534
+ #: class.php:2028
535
  msgid "Excerpt"
536
  msgstr ""
537
 
538
+ #: class.php:2033 strings.php:17
539
  msgid "Before post"
540
  msgstr ""
541
 
542
+ #: class.php:2038 strings.php:18
543
  msgid "After post"
544
  msgstr ""
545
 
546
+ #: class.php:2043 settings.php:1785 settings.php:4058
547
  msgid "Widget"
548
  msgstr ""
549
 
550
+ #: class.php:2048 settings.php:4056
551
  msgid "PHP function call"
552
  msgstr ""
553
 
554
+ #: class.php:2083
555
  msgid "AJAX REQUEST"
556
  msgstr ""
557
 
558
+ #: class.php:2086
559
  msgid "Ajax request for block in iframe"
560
  msgstr ""
561
 
562
+ #: class.php:2116
563
  msgid "Ajax request url, click to open it in a new tab"
564
  msgstr ""
565
 
566
+ #: class.php:2119
567
  msgid "IN THE LOOP"
568
  msgstr ""
569
 
570
+ #: class.php:2119
571
  msgid "YES"
572
  msgstr ""
573
 
574
+ #: class.php:2119
575
  msgid "NO"
576
  msgstr ""
577
 
578
+ #: class.php:2155
579
  msgid "BLOCK"
580
  msgstr ""
581
 
582
+ #: class.php:2155
583
  msgctxt "block or widget"
584
  msgid "INSERTED BUT NOT VISIBLE"
585
  msgstr ""
586
 
587
+ #: class.php:2601 class.php:2660
588
  msgid "ACTIVE GROUPS"
589
  msgstr ""
590
 
591
  #. translators: %s: list parameters and type
592
+ #: class.php:2835
593
  msgid "parameters='%s' type='%s'"
594
  msgstr ""
595
 
596
  #. translators: %s: list parameters and type
597
+ #: class.php:2837
598
  msgid "referers='%s' type='%s'"
599
  msgstr ""
600
 
601
  #. translators: %s: list parameters and type
602
+ #: class.php:2898
603
  msgid "countries='%s' type='%s'"
604
  msgstr ""
605
 
606
  #. translators: %s: list parameters and type
607
+ #: class.php:2900
608
  msgid "ip addresses='%s' type='%s'"
609
  msgstr ""
610
 
611
+ #: class.php:3169 strings.php:239
612
  msgid "BEFORE"
613
  msgstr ""
614
 
615
+ #: class.php:3177 strings.php:241
616
  msgid "PREPEND CONTENT"
617
  msgstr ""
618
 
619
+ #: class.php:3181 strings.php:242
620
  msgid "APPEND CONTENT"
621
  msgstr ""
622
 
623
+ #: class.php:3185 strings.php:243
624
  msgid "REPLACE CONTENT"
625
  msgstr ""
626
 
627
+ #: class.php:3189 strings.php:244
628
  msgid "REPLACE ELEMENT"
629
  msgstr ""
630
 
631
+ #: class.php:3200 strings.php:240
632
  msgid "AFTER"
633
  msgstr ""
634
 
635
+ #: class.php:3267
636
  msgctxt "JavaScript"
637
  msgid "script"
638
  msgstr ""
639
 
640
+ #: class.php:3270 settings.php:2054
641
  msgid "for"
642
  msgstr ""
643
 
644
+ #: class.php:6277 class.php:6329
645
  msgctxt "category name"
646
  msgid "Uncategorized"
647
  msgstr ""
648
 
649
+ #: class.php:6822
650
  msgid ""
651
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
652
  "extension for PHP."
653
  msgstr ""
654
 
655
  #: includes/editor.php:7 includes/placeholders.php:352
656
+ #: includes/preview.php:1962 strings.php:246
657
  msgid "Use"
658
  msgstr ""
659
 
662
  msgstr ""
663
 
664
  #: includes/editor.php:9 includes/placeholders.php:354
665
+ #: includes/preview.php:1965 settings.php:3453 strings.php:208 strings.php:245
666
  msgid "Cancel"
667
  msgstr ""
668
 
677
  "blockers."
678
  msgstr ""
679
 
680
+ #: includes/editor.php:264 settings.php:257
681
  msgid "Error loading page"
682
  msgstr ""
683
 
686
  msgid "PAGE BLOCKED"
687
  msgstr ""
688
 
689
+ #: includes/functions.old.php:289 includes/functions.php:291
690
  msgid "%d of %d names shown"
691
  msgstr ""
692
 
693
  #. translators: %s: name filter
694
+ #: includes/functions.old.php:308 includes/functions.php:310
695
  msgid "No name matches filter"
696
  msgstr ""
697
 
698
  #. translators: %s: Ad Inserter Pro
699
+ #: includes/functions.old.php:383 includes/functions.php:385
700
  msgid ""
701
  "Import %s settings when saving - if checked, the encoded settings below will "
702
  "be imported for all blocks and settings"
703
  msgstr ""
704
 
705
+ #: includes/functions.old.php:383 includes/functions.php:385
706
  msgid "Import Settings for"
707
  msgstr ""
708
 
709
+ #: includes/functions.old.php:387 includes/functions.php:389
710
  msgid "Saved settings for"
711
  msgstr ""
712
 
713
+ #: includes/functions.old.php:407 includes/functions.php:409
714
  msgid "License Key"
715
  msgstr ""
716
 
717
+ #: includes/functions.old.php:410 includes/functions.php:412
718
  msgid "License Key for"
719
  msgstr ""
720
 
721
+ #: includes/functions.old.php:413 includes/functions.php:415
722
  msgid "Open license page"
723
  msgstr ""
724
 
725
+ #: includes/functions.old.php:421 includes/functions.php:423
726
  msgid "Hide license key"
727
  msgstr ""
728
 
729
+ #: includes/functions.old.php:421 includes/functions.php:423
730
  msgid "Hide key"
731
  msgstr ""
732
 
733
+ #: includes/functions.old.php:436 includes/functions.php:438
734
  msgid "Main content element"
735
  msgstr ""
736
 
737
+ #: includes/functions.old.php:439 includes/functions.php:441
738
  msgid ""
739
  "Main content element (#id or .class) for 'Stick to the content' position. "
740
  "Leave empty unless position is not properly calculated."
741
  msgstr ""
742
 
743
+ #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1300
744
+ #: settings.php:2668
745
  msgid "Open HTML element selector"
746
  msgstr ""
747
 
748
+ #: includes/functions.old.php:445 includes/functions.php:447
749
  msgid "Lazy loading offset"
750
  msgstr ""
751
 
752
+ #: includes/functions.old.php:448 includes/functions.php:450
753
  msgid "Offset of the block from the visible viewport when it should be loaded"
754
  msgstr ""
755
 
756
+ #: includes/functions.old.php:459 includes/functions.php:461
757
  msgid "Export / Import Block Settings"
758
  msgstr ""
759
 
760
+ #: includes/functions.old.php:474 includes/functions.php:476
761
  msgid "Track impressions and clicks for this block"
762
  msgstr ""
763
 
764
+ #: includes/functions.old.php:474 includes/functions.php:476
765
  msgid " - global tracking disabled"
766
  msgstr ""
767
 
768
+ #: includes/functions.old.php:481 includes/functions.php:483
769
  msgid "Generate PDF report"
770
  msgstr ""
771
 
772
+ #: includes/functions.old.php:486 includes/functions.php:488
773
  msgid "Open public report"
774
  msgstr ""
775
 
776
+ #: includes/functions.old.php:500 includes/functions.php:502
777
  msgid "Toggle Ad Blocking Statistics"
778
  msgstr ""
779
 
780
+ #: includes/functions.old.php:508 includes/functions.old.php:2960
781
+ #: includes/functions.php:510 includes/functions.php:2972
782
  msgid "Toggle Statistics"
783
  msgstr ""
784
 
785
  #. translators: %s: Ad Inserter Pro
786
+ #: includes/functions.old.php:524 includes/functions.php:534
787
  msgid "%s license key is not set. Continue?"
788
  msgstr ""
789
 
790
  #. translators: %s: Ad Inserter Pro
791
+ #: includes/functions.old.php:528 includes/functions.php:538
792
  msgid "Invalid %s license key. Continue?"
793
  msgstr ""
794
 
795
  #. translators: %s: Ad Inserter Pro
796
+ #: includes/functions.old.php:532 includes/functions.php:542
797
  msgid "%s license overused. Continue?"
798
  msgstr ""
799
 
800
+ #: includes/functions.old.php:536 includes/functions.php:546 settings.php:2125
801
  msgid "Save Settings"
802
  msgstr ""
803
 
804
+ #: includes/functions.old.php:596 includes/functions.php:606
805
+ #: includes/preview.php:2106
806
  msgid "Horizontal position"
807
  msgstr ""
808
 
809
+ #: includes/functions.old.php:619 includes/functions.php:629
810
  msgid ""
811
  "Horizontal margin from the content or screen edge, empty means default value "
812
  "from CSS"
813
  msgstr ""
814
 
815
+ #: includes/functions.old.php:627 includes/functions.php:637
816
+ #: includes/preview.php:2161
817
  msgid "Vertical position"
818
  msgstr ""
819
 
820
+ #: includes/functions.old.php:642 includes/functions.php:652
821
  msgid ""
822
  "Vertical margin from the top or bottom screen edge, empty means default "
823
  "value from CSS"
824
  msgstr ""
825
 
826
+ #: includes/functions.old.php:667 includes/functions.php:677
827
+ #: includes/preview.php:2212
828
  msgid "Animation"
829
  msgstr ""
830
 
831
+ #: includes/functions.old.php:685 includes/functions.php:695
832
  msgid "Trigger"
833
  msgstr ""
834
 
835
+ #: includes/functions.old.php:694 includes/functions.php:704
836
  msgid ""
837
  "Trigger value: page scroll in %, page scroll in px or element with selector "
838
  "(#id or .class) becomes visible"
839
  msgstr ""
840
 
841
+ #: includes/functions.old.php:698 includes/functions.php:708
842
  msgid "Offset"
843
  msgstr ""
844
 
845
+ #: includes/functions.old.php:698 includes/functions.php:708
846
  msgid "Offset of trigger element"
847
  msgstr ""
848
 
849
+ #: includes/functions.old.php:702 includes/functions.php:712
850
  msgid "Delay"
851
  msgstr ""
852
 
853
+ #: includes/functions.old.php:702 includes/functions.php:712
854
  msgid "Delay animation after trigger condition"
855
  msgstr ""
856
 
857
+ #: includes/functions.old.php:706 includes/functions.php:716
858
  msgid "Trigger once"
859
  msgstr ""
860
 
861
+ #: includes/functions.old.php:708 includes/functions.php:718
862
  msgid "Trigger animation only once"
863
  msgstr ""
864
 
865
+ #: includes/functions.old.php:750 includes/functions.old.php:2453
866
+ #: includes/functions.old.php:2470 includes/functions.php:760
867
+ #: includes/functions.php:2465 includes/functions.php:2482
868
  msgid "Tracking is globally disabled"
869
  msgstr ""
870
 
871
+ #: includes/functions.old.php:754 includes/functions.old.php:2457
872
+ #: includes/functions.old.php:2474 includes/functions.php:764
873
+ #: includes/functions.php:2469 includes/functions.php:2486
874
  msgid "Tracking for this block is disabled"
875
  msgstr ""
876
 
877
+ #: includes/functions.old.php:761 includes/functions.php:771
878
  msgid "Double click to toggle controls in public reports"
879
  msgstr ""
880
 
881
+ #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3388
882
+ #: settings.php:3424 settings.php:3466 strings.php:218
883
  msgid "Loading..."
884
  msgstr ""
885
 
886
+ #: includes/functions.old.php:788 includes/functions.php:798
887
  msgid ""
888
  "Clear statistics data for the selected range - clear both dates to delete "
889
  "all data for this block"
890
  msgstr ""
891
 
892
+ #: includes/functions.old.php:792 includes/functions.php:802
893
  msgid "Auto refresh data for the selected range every 60 seconds"
894
  msgstr ""
895
 
896
+ #: includes/functions.old.php:795 includes/functions.old.php:5262
897
+ #: includes/functions.php:805 includes/functions.php:5287
898
  msgid "Load data for last month"
899
  msgstr ""
900
 
901
+ #: includes/functions.old.php:795 includes/functions.old.php:5262
902
+ #: includes/functions.php:805 includes/functions.php:5287
903
  msgid "Last Month"
904
  msgstr ""
905
 
906
+ #: includes/functions.old.php:798 includes/functions.old.php:5265
907
+ #: includes/functions.php:808 includes/functions.php:5290
908
  msgid "Load data for this month"
909
  msgstr ""
910
 
911
+ #: includes/functions.old.php:798 includes/functions.old.php:5265
912
+ #: includes/functions.php:808 includes/functions.php:5290
913
  msgid "This Month"
914
  msgstr ""
915
 
916
+ #: includes/functions.old.php:801 includes/functions.old.php:5268
917
+ #: includes/functions.php:811 includes/functions.php:5293
918
  msgid "Load data for this year"
919
  msgstr ""
920
 
921
+ #: includes/functions.old.php:801 includes/functions.old.php:5268
922
+ #: includes/functions.php:811 includes/functions.php:5293
923
  msgid "This Year"
924
  msgstr ""
925
 
926
+ #: includes/functions.old.php:804 includes/functions.old.php:5271
927
+ #: includes/functions.php:814 includes/functions.php:5296
928
  msgid "Load data for the last 15 days"
929
  msgstr ""
930
 
931
+ #: includes/functions.old.php:807 includes/functions.old.php:5274
932
+ #: includes/functions.php:817 includes/functions.php:5299
933
  msgid "Load data for the last 30 days"
934
  msgstr ""
935
 
936
+ #: includes/functions.old.php:810 includes/functions.old.php:5277
937
+ #: includes/functions.php:820 includes/functions.php:5302
938
  msgid "Load data for the last 90 days"
939
  msgstr ""
940
 
941
+ #: includes/functions.old.php:813 includes/functions.old.php:5280
942
+ #: includes/functions.php:823 includes/functions.php:5305
943
  msgid "Load data for the last 180 days"
944
  msgstr ""
945
 
946
+ #: includes/functions.old.php:816 includes/functions.old.php:5283
947
+ #: includes/functions.php:826 includes/functions.php:5308
948
  msgid "Load data for the last 365 days"
949
  msgstr ""
950
 
951
+ #: includes/functions.old.php:826 includes/functions.old.php:5293
952
+ #: includes/functions.php:836 includes/functions.php:5318
953
  msgid "Load data for the selected range"
954
  msgstr ""
955
 
956
+ #: includes/functions.old.php:842 includes/functions.php:852
957
  msgid ""
958
  "Import settings when saving - if checked, the encoded settings below will be "
959
  "imported for this block"
960
  msgstr ""
961
 
962
+ #: includes/functions.old.php:842 includes/functions.php:852
963
  msgid "Import settings for block"
964
  msgstr ""
965
 
966
+ #: includes/functions.old.php:846 includes/functions.php:856
967
  msgid ""
968
  "Import block name when saving - if checked and 'Import settings for block' "
969
  "is also checked, the name from encoded settings below will be imported for "
970
  "this block"
971
  msgstr ""
972
 
973
+ #: includes/functions.old.php:846 includes/functions.php:856
974
  msgid "Import block name"
975
  msgstr ""
976
 
977
+ #: includes/functions.old.php:850 includes/functions.php:860
978
  msgid "Saved settings for block"
979
  msgstr ""
980
 
981
+ #: includes/functions.old.php:863 includes/functions.php:873
982
  msgid "Export / Import Ad Inserter Pro Settings"
983
  msgstr ""
984
 
985
+ #: includes/functions.old.php:873 includes/functions.php:883
986
  msgid "Are you sure you want to clear all statistics data for all blocks?"
987
  msgstr ""
988
 
989
+ #: includes/functions.old.php:875 includes/functions.php:885
990
  msgid "Clear All Statistics Data"
991
  msgstr ""
992
 
993
+ #: includes/functions.old.php:902 includes/functions.php:912
994
  msgid "Toggle country/city editor"
995
  msgstr ""
996
 
997
+ #: includes/functions.old.php:908 includes/functions.php:918
998
  msgid "IP Addresses"
999
  msgstr ""
1000
 
1001
+ #: includes/functions.old.php:911 includes/functions.php:921
1002
  msgid "Toggle IP address editor"
1003
  msgstr ""
1004
 
1005
+ #: includes/functions.old.php:914 includes/functions.php:924
1006
  msgid ""
1007
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1008
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1009
  msgstr ""
1010
 
1011
+ #: includes/functions.old.php:918 includes/functions.php:928
1012
  msgid "Blacklist IP addresses"
1013
  msgstr ""
1014
 
1015
+ #: includes/functions.old.php:922 includes/functions.php:932
1016
  msgid "Whitelist IP addresses"
1017
  msgstr ""
1018
 
1019
+ #: includes/functions.old.php:933 includes/functions.php:943
1020
  msgid "Countries"
1021
  msgstr ""
1022
 
1023
+ #: includes/functions.old.php:934 includes/functions.php:944
1024
  msgid "Cities"
1025
  msgstr ""
1026
 
1027
+ #: includes/functions.old.php:938 includes/functions.old.php:2925
1028
+ #: includes/functions.php:948 includes/functions.php:2937
1029
  msgid "Toggle country editor"
1030
  msgstr ""
1031
 
1032
+ #: includes/functions.old.php:941 includes/functions.php:951
1033
  msgid "Toggle city editor"
1034
  msgstr ""
1035
 
1036
+ #: includes/functions.old.php:945 includes/functions.old.php:2928
1037
+ #: includes/functions.php:955 includes/functions.php:2940
1038
  msgid "Comma separated country ISO Alpha-2 codes"
1039
  msgstr ""
1040
 
1041
+ #: includes/functions.old.php:949 includes/functions.php:959
1042
  msgid "Blacklist countries"
1043
  msgstr ""
1044
 
1045
+ #: includes/functions.old.php:953 includes/functions.php:963
1046
  msgid "Whitelist countries"
1047
  msgstr ""
1048
 
1049
+ #: includes/functions.old.php:1361 includes/functions.old.php:1608
1050
  #: includes/functions.php:1371 includes/functions.php:1618
1051
  msgid "Enter license key"
1052
  msgstr ""
1053
 
1054
  #. translators: %s: Ad Inserter Pro
1055
+ #: includes/functions.old.php:1367 includes/functions.php:1377
1056
  msgid ""
1057
  "%s license key is not set. Plugin functionality is limited and updates are "
1058
  "disabled."
1059
  msgstr ""
1060
 
1061
+ #: includes/functions.old.php:1379 includes/functions.old.php:1617
1062
  #: includes/functions.php:1389 includes/functions.php:1627
1063
  msgid "Check license key"
1064
  msgstr ""
1065
 
1066
  #. translators: %s: Ad Inserter Pro
1067
+ #: includes/functions.old.php:1385 includes/functions.php:1395
1068
  msgid "Invalid %s license key."
1069
  msgstr ""
1070
 
1071
  #. translators: %s: Ad Inserter Pro
1072
+ #: includes/functions.old.php:1394 includes/functions.php:1404
1073
  msgid "%s license expired. Plugin updates are disabled."
1074
  msgstr ""
1075
 
1076
+ #: includes/functions.old.php:1395 includes/functions.php:1405
1077
  msgid "Renew license"
1078
  msgstr ""
1079
 
1080
  #. translators: %s: Ad Inserter Pro
1081
+ #: includes/functions.old.php:1403 includes/functions.php:1413
1082
  msgid "%s license overused. Plugin updates are disabled."
1083
  msgstr ""
1084
 
1085
+ #: includes/functions.old.php:1404 includes/functions.php:1414
1086
  msgid "Manage licenses"
1087
  msgstr ""
1088
 
1089
+ #: includes/functions.old.php:1404 includes/functions.php:1414
1090
  msgid "Upgrade license"
1091
  msgstr ""
1092
 
1093
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1094
+ #: includes/functions.old.php:1610 includes/functions.php:1620
1095
  msgid ""
1096
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1097
  "limited and updates are disabled."
1098
  msgstr ""
1099
 
1100
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1101
+ #: includes/functions.old.php:1619 includes/functions.php:1629
1102
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1103
  msgstr ""
1104
 
1105
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1106
+ #: includes/functions.old.php:1635 includes/functions.php:1645
1107
  msgid ""
1108
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1109
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1110
  msgstr ""
1111
 
1112
  #. translators: 1, 3: HTML tags, 2: percentage
1113
+ #: includes/functions.old.php:1642 includes/functions.php:1652
1114
  msgid ""
1115
  "During the license period and 30 days after the license has expired we offer "
1116
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1117
  msgstr ""
1118
 
1119
+ #: includes/functions.old.php:1669 includes/functions.php:1679
1120
  msgid "Renew the licence"
1121
  msgstr ""
1122
 
1123
+ #: includes/functions.old.php:1671 includes/functions.php:1681
1124
  msgid "Update license status"
1125
  msgstr ""
1126
 
1127
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1128
+ #: includes/functions.old.php:1682 includes/functions.php:1692
1129
  msgid ""
1130
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1131
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1132
  msgstr ""
1133
 
1134
  #. Translators: %s: HTML tag
1135
+ #: includes/functions.old.php:1704 includes/functions.php:1714
1136
  msgid "Warning: %s MaxMind IP geolocation database not found."
1137
  msgstr ""
1138
 
1139
+ #: includes/functions.old.php:2255 includes/functions.php:2267
1140
  msgid "Geolocation"
1141
  msgstr ""
1142
 
1143
+ #: includes/functions.old.php:2259 includes/functions.php:2271
1144
+ #: settings.php:4045
1145
  msgid "Exceptions"
1146
  msgstr ""
1147
 
1148
+ #: includes/functions.old.php:2264 includes/functions.php:2276
1149
  msgid "Multisite"
1150
  msgstr ""
1151
 
1152
+ #: includes/functions.old.php:2269 includes/functions.php:2281
1153
+ #: settings.php:4051
1154
  msgid "Tracking"
1155
  msgstr ""
1156
 
1157
  #. translators: %d: days, hours, minutes
1158
+ #: includes/functions.old.php:2300 includes/functions.php:2312
1159
  msgid "Scheduled in %d days %d hours %d minutes"
1160
  msgstr ""
1161
 
1162
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1163
  #. HTML code for long dash separator
1164
+ #: includes/functions.old.php:2309 includes/functions.php:2321
1165
  msgid "Active %s expires in %d days %d hours %d minutes"
1166
  msgstr ""
1167
 
1168
+ #: includes/functions.old.php:2313 includes/functions.php:2325
1169
  msgid "Expired"
1170
  msgstr ""
1171
 
1172
+ #: includes/functions.old.php:2321 includes/functions.php:2333
1173
+ #: settings.php:1383 settings.php:1398 settings.php:2040
1174
  msgid "and"
1175
  msgstr ""
1176
 
1177
+ #: includes/functions.old.php:2324 includes/functions.php:2336
1178
  msgid "fallback"
1179
  msgstr ""
1180
 
1181
+ #: includes/functions.old.php:2325 includes/functions.php:2337
1182
  msgid "Block to be used when scheduling expires"
1183
  msgstr ""
1184
 
1185
+ #: includes/functions.old.php:2350 includes/functions.php:2362
1186
  msgid "Load in iframe"
1187
  msgstr ""
1188
 
1189
+ #: includes/functions.old.php:2354 includes/functions.php:2366
1190
+ #: includes/placeholders.php:389
1191
  msgid "Width"
1192
  msgstr ""
1193
 
1194
+ #: includes/functions.old.php:2355 includes/functions.php:2367
1195
  msgid "iframe width, empty means full width (100%)"
1196
  msgstr ""
1197
 
1198
+ #: includes/functions.old.php:2361 includes/functions.php:2373
1199
+ #: includes/placeholders.php:384
1200
  msgid "Height"
1201
  msgstr ""
1202
 
1203
+ #: includes/functions.old.php:2362 includes/functions.php:2374
1204
  msgid "iframe height, empty means adjust it to iframe content height"
1205
  msgstr ""
1206
 
1207
+ #: includes/functions.old.php:2369 includes/functions.php:2381
1208
  msgid "Ad label in iframe"
1209
  msgstr ""
1210
 
1211
+ #: includes/functions.old.php:2374 includes/functions.php:2386
1212
  msgid "Preview iframe code"
1213
  msgstr ""
1214
 
1215
+ #: includes/functions.old.php:2374 includes/functions.php:2386
1216
+ #: includes/preview.php:1974 settings.php:1049 settings.php:2730
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
1220
+ #: includes/functions.old.php:2388 includes/functions.php:2400
1221
+ #: settings.php:4052
1222
  msgid "Limits"
1223
  msgstr ""
1224
 
1225
+ #: includes/functions.old.php:2393 includes/functions.old.php:4266
1226
+ #: includes/functions.old.php:4329 includes/functions.php:2405
1227
+ #: includes/functions.php:4278 includes/functions.php:4341 settings.php:2172
1228
  msgid "Ad Blocking"
1229
  msgstr ""
1230
 
1231
  #. translators: 1, 2 and 3, 4: HTML tags
1232
+ #: includes/functions.old.php:2402 includes/functions.php:2414
1233
  msgid ""
1234
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1235
  "for tracking!"
1237
 
1238
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1239
  #. header
1240
+ #: includes/functions.old.php:2411 includes/functions.php:2423
1241
  msgid ""
1242
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1243
  "enabled and automatic insertion %6$s!"
1244
  msgstr ""
1245
 
1246
+ #: includes/functions.old.php:2478 includes/functions.php:2490
1247
  msgid "Click fraud protection is globally disabled"
1248
  msgstr ""
1249
 
1250
+ #: includes/functions.old.php:2482 includes/functions.php:2494
1251
  msgid "Max clicks per time period are not defined"
1252
  msgstr ""
1253
 
1254
  #. Translators: Max n impressions
1255
+ #: includes/functions.old.php:2496 includes/functions.php:2508
1256
  msgid "General limits"
1257
  msgstr ""
1258
 
1259
  #. Translators: Max n impressions per x days
1260
+ #: includes/functions.old.php:2502 includes/functions.old.php:2514
1261
+ #: includes/functions.old.php:2599 includes/functions.php:2514
1262
+ #: includes/functions.php:2526 includes/functions.php:2611
1263
  msgid "Current value"
1264
  msgstr ""
1265
 
1271
  #. Translators: Max n impressions per x days
1272
  #. Translators: Max n clicks
1273
  #. Translators: Max n clicks per x days
1274
+ #: includes/functions.old.php:2521 includes/functions.old.php:2531
1275
+ #: includes/functions.old.php:2550 includes/functions.old.php:2560
1276
+ #: includes/functions.old.php:2606 includes/functions.old.php:2615
1277
+ #: includes/functions.old.php:2633 includes/functions.old.php:2642
1278
+ #: includes/functions.php:2533 includes/functions.php:2543
1279
+ #: includes/functions.php:2562 includes/functions.php:2572
1280
+ #: includes/functions.php:2618 includes/functions.php:2627
1281
+ #: includes/functions.php:2645 includes/functions.php:2654 settings.php:1961
1282
  msgid "Max"
1283
  msgstr ""
1284
 
1285
+ #: includes/functions.old.php:2522 includes/functions.php:2534
1286
  msgid ""
1287
  "Maximum number of impressions for this block. Empty means no general "
1288
  "impression limit."
1292
  #. Translators: Max n impressions per x days
1293
  #. Translators: Max n impressions
1294
  #. Translators: Max n impressions per x days
1295
+ #: includes/functions.old.php:2524 includes/functions.old.php:2534
1296
+ #: includes/functions.old.php:2609 includes/functions.old.php:2618
1297
+ #: includes/functions.php:2536 includes/functions.php:2546
1298
+ #: includes/functions.php:2621 includes/functions.php:2630
1299
  msgid "impression"
1300
  msgid_plural "impressions"
1301
  msgstr[0] ""
1302
  msgstr[1] ""
1303
 
1304
+ #: includes/functions.old.php:2532 includes/functions.php:2544
1305
  msgid ""
1306
  "Maximum number of impressions per time period. Empty means no time limit."
1307
  msgstr ""
1310
  #. Translators: Max n clicks per x days
1311
  #. Translators: Max n impressions per x days
1312
  #. Translators: Max n clicks per x days
1313
+ #: includes/functions.old.php:2538 includes/functions.old.php:2567
1314
+ #: includes/functions.old.php:2622 includes/functions.old.php:2649
1315
+ #: includes/functions.php:2550 includes/functions.php:2579
1316
+ #: includes/functions.php:2634 includes/functions.php:2661
1317
  msgid "per"
1318
  msgstr ""
1319
 
1320
+ #: includes/functions.old.php:2539 includes/functions.old.php:2568
1321
+ #: includes/functions.php:2551 includes/functions.php:2580
1322
  msgid "Time period in days. Empty means no time limit."
1323
  msgstr ""
1324
 
1327
  #. Translators: Max n impressions per x days
1328
  #. Translators: Max n clicks per x days
1329
  #. Translators: Don't show for x days
1330
+ #: includes/functions.old.php:2541 includes/functions.old.php:2570
1331
+ #: includes/functions.old.php:2625 includes/functions.old.php:2652
1332
+ #: includes/functions.old.php:2758 includes/functions.old.php:3086
1333
+ #: includes/functions.php:2553 includes/functions.php:2582
1334
+ #: includes/functions.php:2637 includes/functions.php:2664
1335
+ #: includes/functions.php:2770 includes/functions.php:3098 strings.php:199
1336
+ #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1337
+ #: strings.php:204
1338
  msgid "day"
1339
  msgid_plural "days"
1340
  msgstr[0] ""
1341
  msgstr[1] ""
1342
 
1343
+ #: includes/functions.old.php:2551 includes/functions.php:2563
1344
  msgid ""
1345
  "Maximum number of clicks on this block. Empty means no general click limit."
1346
  msgstr ""
1349
  #. Translators: Max n clicks per x days
1350
  #. Translators: Max n clicks
1351
  #. Translators: Max n clicks per x days
1352
+ #: includes/functions.old.php:2553 includes/functions.old.php:2563
1353
+ #: includes/functions.old.php:2636 includes/functions.old.php:2645
1354
+ #: includes/functions.old.php:4477 includes/functions.php:2565
1355
+ #: includes/functions.php:2575 includes/functions.php:2648
1356
+ #: includes/functions.php:2657 includes/functions.php:4489
1357
  msgid "click"
1358
  msgid_plural "clicks"
1359
  msgstr[0] ""
1360
  msgstr[1] ""
1361
 
1362
+ #: includes/functions.old.php:2561 includes/functions.php:2573
1363
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1364
  msgstr ""
1365
 
1366
+ #: includes/functions.old.php:2586 includes/functions.php:2598
1367
  msgid "Individual visitor limits"
1368
  msgstr ""
1369
 
1370
+ #: includes/functions.old.php:2590 includes/functions.old.php:2592
1371
+ #: includes/functions.php:2602 includes/functions.php:2604
1372
  msgid ""
1373
  "When specified number of clicks on this block for a visitor will be reached "
1374
  "in the specified time period, all blocks that have click fraud protection "
1376
  "general plugin settings."
1377
  msgstr ""
1378
 
1379
+ #: includes/functions.old.php:2592 includes/functions.php:2604
1380
  msgid "Trigger click fraud protection"
1381
  msgstr ""
1382
 
1383
+ #: includes/functions.old.php:2607 includes/functions.php:2619
1384
  msgid ""
1385
  "Maximum number of impressions of this block for each visitor. Empty means no "
1386
  "impression limit."
1387
  msgstr ""
1388
 
1389
+ #: includes/functions.old.php:2616 includes/functions.php:2628
1390
  msgid ""
1391
  "Maximum number of impressions per time period for each visitor. Empty means "
1392
  "no impression limit per time period for visitors."
1393
  msgstr ""
1394
 
1395
+ #: includes/functions.old.php:2623 includes/functions.old.php:2650
1396
+ #: includes/functions.php:2635 includes/functions.php:2662
1397
  msgid ""
1398
  "Time period in days. Use decimal value (with decimal point) for shorter "
1399
  "periods. Empty means no time limit."
1400
  msgstr ""
1401
 
1402
+ #: includes/functions.old.php:2634 includes/functions.php:2646
1403
  msgid ""
1404
  "Maximum number of clicks on this block for each visitor. Empty means no "
1405
  "click limit."
1406
  msgstr ""
1407
 
1408
+ #: includes/functions.old.php:2643 includes/functions.php:2655
1409
  msgid ""
1410
  "Maximum number of clicks per time period for each visitor. Empty means no "
1411
  "click limit per time period for visitors."
1412
  msgstr ""
1413
 
1414
+ #: includes/functions.old.php:2669 includes/functions.php:2681
1415
  msgid "When ad blocking is detected"
1416
  msgstr ""
1417
 
1418
+ #: includes/functions.old.php:2678 includes/functions.php:2690
1419
  msgid "replacement"
1420
  msgstr ""
1421
 
1422
+ #: includes/functions.old.php:2679 includes/functions.php:2691
1423
  msgid "Block to be shown when ad blocking is detected"
1424
  msgstr ""
1425
 
1426
+ #: includes/functions.old.php:2680 includes/functions.php:2692
1427
  msgctxt "replacement"
1428
  msgid "None"
1429
  msgstr ""
1430
 
1431
+ #: includes/functions.old.php:2697 includes/functions.old.php:5484
1432
+ #: includes/functions.php:2709 includes/functions.php:5509
1433
  msgid "Close button"
1434
  msgstr ""
1435
 
1436
+ #: includes/functions.old.php:2749 includes/functions.php:2761
1437
  msgid "Auto close after"
1438
  msgstr ""
1439
 
1440
+ #: includes/functions.old.php:2750 includes/functions.php:2762
1441
  msgid ""
1442
  "Time in seconds in which the ad will automatically close. Leave empty to "
1443
  "disable auto closing."
1444
  msgstr ""
1445
 
1446
  #. Translators: Don't show for x days
1447
+ #: includes/functions.old.php:2755 includes/functions.php:2767
1448
  msgid "Don't show for"
1449
  msgstr ""
1450
 
1451
+ #: includes/functions.old.php:2756 includes/functions.php:2768
1452
  msgid ""
1453
  "Time in days in which closed ad will not be shown again. Use decimal value "
1454
  "(with decimal point) for shorter time period or leave empty to show it again "
1456
  msgstr ""
1457
 
1458
  #. Translators: Delay showing for x pageviews
1459
+ #: includes/functions.old.php:2776 includes/functions.php:2788
1460
  msgid "Delay showing for"
1461
  msgstr ""
1462
 
1463
+ #: includes/functions.old.php:2777 includes/functions.php:2789
1464
  msgid ""
1465
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1466
  "empty to insert the code for the first pageview."
1468
 
1469
  #. Translators: Delay showing for x pageviews
1470
  #. Translators: Show every x pageviews
1471
+ #: includes/functions.old.php:2779 includes/functions.old.php:2786
1472
+ #: includes/functions.php:2791 includes/functions.php:2798
1473
  msgid "pageview"
1474
  msgid_plural "pageviews"
1475
  msgstr[0] ""
1476
  msgstr[1] ""
1477
 
1478
  #. Translators: Show every x pageviews
1479
+ #: includes/functions.old.php:2783 includes/functions.php:2795
1480
  msgid "Show every"
1481
  msgid_plural "Show every"
1482
  msgstr[0] ""
1483
  msgstr[1] ""
1484
 
1485
+ #: includes/functions.old.php:2784 includes/functions.php:2796
1486
  msgid ""
1487
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1488
  "for every pageview."
1489
  msgstr ""
1490
 
1491
+ #: includes/functions.old.php:2803 includes/functions.php:2815
1492
  msgid "Lazy loading"
1493
  msgstr ""
1494
 
1495
  #. Translators: %s MaxMind
1496
+ #: includes/functions.old.php:2860 includes/functions.php:2872
1497
  msgid "This product includes GeoLite2 data created by %s"
1498
  msgstr ""
1499
 
1500
+ #: includes/functions.old.php:2871 includes/functions.php:2883
1501
  msgid "IP geolocation database"
1502
  msgstr ""
1503
 
1504
+ #: includes/functions.old.php:2874 includes/functions.php:2886
1505
  msgid "Select IP geolocation database."
1506
  msgstr ""
1507
 
1508
+ #: includes/functions.old.php:2885 includes/functions.php:2897
1509
  msgid "Automatic database updates"
1510
  msgstr ""
1511
 
1512
+ #: includes/functions.old.php:2888 includes/functions.php:2900
1513
  msgid ""
1514
  "Automatically download and update free GeoLite2 IP geolocation database by "
1515
  "MaxMind"
1516
  msgstr ""
1517
 
1518
+ #: includes/functions.old.php:2896 includes/functions.php:2908
1519
  msgid "Database"
1520
  msgstr ""
1521
 
1522
+ #: includes/functions.old.php:2899 includes/functions.php:2911
1523
  msgid ""
1524
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1525
  "file"
1526
  msgstr ""
1527
 
1528
  #. translators: %d: group number
1529
+ #: includes/functions.old.php:2917 includes/functions.php:2929
1530
  msgid "Group %d"
1531
  msgstr ""
1532
 
1533
+ #: includes/functions.old.php:2923 includes/functions.php:2935
1534
  msgid "countries"
1535
  msgstr ""
1536
 
1537
+ #: includes/functions.old.php:2968 includes/functions.php:2980
1538
  msgid ""
1539
  "Enable impression and click tracking. You also need to enable tracking for "
1540
  "each block you want to track."
1541
  msgstr ""
1542
 
1543
+ #: includes/functions.old.php:2975 includes/functions.php:2987
1544
  msgid "Generate report"
1545
  msgstr ""
1546
 
1547
+ #: includes/functions.old.php:2983 includes/functions.php:2995
1548
  msgid "Impression and Click Tracking"
1549
  msgstr ""
1550
 
1551
+ #: includes/functions.old.php:2984 includes/functions.php:2996
1552
+ #: settings.php:2618
1553
  msgctxt "ad blocking detection"
1554
  msgid "NOT ENABLED"
1555
  msgstr ""
1556
 
1557
+ #: includes/functions.old.php:3000 includes/functions.php:3012
1558
  msgid "Internal"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions.old.php:3004 includes/functions.php:3016
1562
  msgid "Track impressions and clicks with internal tracking and statistics"
1563
  msgstr ""
1564
 
1565
+ #: includes/functions.old.php:3009 includes/functions.php:3021
1566
  msgid "External"
1567
  msgstr ""
1568
 
1569
+ #: includes/functions.old.php:3013 includes/functions.php:3025
1570
  msgid ""
1571
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1572
  "code installed)"
1573
  msgstr ""
1574
 
1575
+ #: includes/functions.old.php:3018 includes/functions.php:3030
1576
  msgid "Track Pageviews"
1577
  msgstr ""
1578
 
1579
+ #: includes/functions.old.php:3024 includes/functions.php:3036
1580
  msgid "Track Pageviews by Device (as configured for viewports)"
1581
  msgstr ""
1582
 
1583
+ #: includes/functions.old.php:3034 includes/functions.php:3046
1584
  msgid "Track for Logged in Users"
1585
  msgstr ""
1586
 
1587
+ #: includes/functions.old.php:3040 includes/functions.php:3052
1588
  msgid "Track impressions and clicks from logged in users"
1589
  msgstr ""
1590
 
1591
+ #: includes/functions.old.php:3050 includes/functions.php:3062
1592
  msgid "Click Detection"
1593
  msgstr ""
1594
 
1595
+ #: includes/functions.old.php:3056 includes/functions.php:3068
1596
  msgid ""
1597
  "Standard method detects clicks only on banners with links, Advanced method "
1598
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1599
  msgstr ""
1600
 
1601
+ #: includes/functions.old.php:3075 includes/functions.php:3087
1602
  msgid "Click fraud protection"
1603
  msgstr ""
1604
 
1605
+ #: includes/functions.old.php:3079 includes/functions.php:3091
1606
  msgid "Globally enable click fraud protection for selected blocks."
1607
  msgstr ""
1608
 
1609
+ #: includes/functions.old.php:3085 includes/functions.php:3097
1610
  msgid "Protection time"
1611
  msgstr ""
1612
 
1613
+ #: includes/functions.old.php:3086 includes/functions.php:3098
1614
  msgid ""
1615
  "Time period in days in which blocks with enabled click fraud protection will "
1616
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1617
  msgstr ""
1618
 
1619
+ #: includes/functions.old.php:3105 includes/functions.php:3117
1620
  msgid "Report header image"
1621
  msgstr ""
1622
 
1623
+ #: includes/functions.old.php:3108 includes/functions.php:3120
1624
  msgid ""
1625
  "Image or logo to be displayed in the header of the statistins report. "
1626
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1627
  "to reset to default image."
1628
  msgstr ""
1629
 
1630
+ #: includes/functions.old.php:3109 includes/functions.php:3121 strings.php:230
1631
  msgid "Select or upload header image"
1632
  msgstr ""
1633
 
1634
+ #: includes/functions.old.php:3114 includes/functions.php:3126
1635
  msgid "Report header title"
1636
  msgstr ""
1637
 
1638
+ #: includes/functions.old.php:3117 includes/functions.php:3129
1639
  msgid ""
1640
  "Title to be displayed in the header of the statistics report. Text or HTML "
1641
  "code, clear to reset to default text."
1642
  msgstr ""
1643
 
1644
+ #: includes/functions.old.php:3122 includes/functions.php:3134
1645
  msgid "Report header description"
1646
  msgstr ""
1647
 
1648
+ #: includes/functions.old.php:3125 includes/functions.php:3137
1649
  msgid ""
1650
  "Description to be displayed in the header of the statistics report. Text or "
1651
  "HTML code, clear to reset to default text."
1652
  msgstr ""
1653
 
1654
+ #: includes/functions.old.php:3130 includes/functions.php:3142
1655
  msgid "Report footer"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions.old.php:3133 includes/functions.php:3145
1659
  msgid ""
1660
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1661
  "to default text."
1662
  msgstr ""
1663
 
1664
+ #: includes/functions.old.php:3138 includes/functions.php:3150
1665
  msgid "Public report key"
1666
  msgstr ""
1667
 
1668
+ #: includes/functions.old.php:3141 includes/functions.php:3153
1669
  msgid "String to generate unique report IDs. Clear to reset to default value."
1670
  msgstr ""
1671
 
1672
+ #: includes/functions.old.php:3173 includes/functions.php:3185
1673
  msgid "Are you sure you want to clear all exceptions for block"
1674
  msgstr ""
1675
 
1676
+ #: includes/functions.old.php:3174 includes/functions.php:3186
1677
+ #: settings.php:1152
1678
  msgid "Clear all exceptions for block"
1679
  msgstr ""
1680
 
1681
+ #: includes/functions.old.php:3181 includes/functions.php:3193
1682
  msgid "Are you sure you want to clear all exceptions?"
1683
  msgstr ""
1684
 
1685
+ #: includes/functions.old.php:3181 includes/functions.php:3193
1686
  msgid "Clear all exceptions for all blocks"
1687
  msgstr ""
1688
 
1689
+ #: includes/functions.old.php:3186 includes/functions.php:3198
1690
+ #: settings.php:3697 settings.php:4128
1691
  msgid "Type"
1692
  msgstr ""
1693
 
1694
+ #: includes/functions.old.php:3204 includes/functions.php:3216
1695
  msgid "View"
1696
  msgstr ""
1697
 
1698
+ #: includes/functions.old.php:3205 includes/functions.old.php:3212
1699
+ #: includes/functions.old.php:3216 includes/functions.php:3217
1700
+ #: includes/functions.php:3224 includes/functions.php:3228
1701
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1286
1702
+ #: settings.php:3457
1703
  msgid "Edit"
1704
  msgstr ""
1705
 
1706
+ #: includes/functions.old.php:3235 includes/functions.php:3247
1707
  msgid "Are you sure you want to clear all exceptions for"
1708
  msgstr ""
1709
 
1710
+ #: includes/functions.old.php:3236 includes/functions.php:3248
1711
  msgid "Clear all exceptions for"
1712
  msgstr ""
1713
 
1714
+ #: includes/functions.old.php:3249 includes/functions.php:3261
1715
  msgid "No exceptions"
1716
  msgstr ""
1717
 
1718
  #. translators: %s: Ad Inserter Pro
1719
+ #: includes/functions.old.php:3260 includes/functions.php:3272
1720
  msgid "%s options for network blogs"
1721
  msgstr ""
1722
 
1723
  #. translators: %s: Ad Inserter Pro
1724
+ #: includes/functions.old.php:3265 includes/functions.php:3277
1725
  msgid "Enable %s widgets for sub-sites"
1726
  msgstr ""
1727
 
1728
+ #: includes/functions.old.php:3265 includes/functions.php:3277
1729
  msgid "Widgets"
1730
  msgstr ""
1731
 
1732
+ #: includes/functions.old.php:3270 includes/functions.php:3282
1733
  msgid "Enable PHP code processing for sub-sites"
1734
  msgstr ""
1735
 
1736
+ #: includes/functions.old.php:3270 includes/functions.php:3282
1737
  msgid "PHP Processing"
1738
  msgstr ""
1739
 
1740
  #. translators: %s: Ad Inserter Pro
1741
+ #: includes/functions.old.php:3275 includes/functions.php:3287
1742
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1743
  msgstr ""
1744
 
1745
+ #: includes/functions.old.php:3275 includes/functions.php:3287
1746
  msgid "Post/Page exceptions"
1747
  msgstr ""
1748
 
1749
  #. translators: %s: Ad Inserter Pro
1750
+ #: includes/functions.old.php:3280 includes/functions.php:3292
1751
  msgid "Enable %s settings page for sub-sites"
1752
  msgstr ""
1753
 
1754
+ #: includes/functions.old.php:3280 includes/functions.php:3292
1755
  msgid "Settings page"
1756
  msgstr ""
1757
 
1758
  #. translators: %s: Ad Inserter Pro
1759
+ #: includes/functions.old.php:3285 includes/functions.php:3297
1760
  msgid "Enable %s settings of main site to be used for all blogs"
1761
  msgstr ""
1762
 
1763
+ #: includes/functions.old.php:3285 includes/functions.php:3297
1764
  msgid "Main site settings used for all blogs"
1765
  msgstr ""
1766
 
1767
+ #: includes/functions.old.php:3296 includes/functions.php:3308
1768
+ #: settings.php:2617
1769
  msgid "Ad Blocking Detection"
1770
  msgstr ""
1771
 
1772
+ #: includes/functions.old.php:3302 includes/functions.php:3314
1773
  msgid ""
1774
  "Standard method is reliable but should be used only if Advanced method does "
1775
  "not work. Advanced method recreates files used for detection with random "
1777
  "publicly accessible"
1778
  msgstr ""
1779
 
1780
+ #: includes/functions.old.php:3929 includes/functions.old.php:4019
1781
+ #: includes/functions.old.php:4039 includes/functions.php:3941
1782
+ #: includes/functions.php:4031 includes/functions.php:4051
1783
  msgid "AD BLOCKING"
1784
  msgstr ""
1785
 
1786
+ #: includes/functions.old.php:3930 includes/functions.old.php:3970
1787
+ #: includes/functions.old.php:4013 includes/functions.old.php:4040
1788
+ #: includes/functions.php:3942 includes/functions.php:3982
1789
+ #: includes/functions.php:4025 includes/functions.php:4052
1790
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1791
  msgstr ""
1792
 
1793
+ #: includes/functions.old.php:3933 includes/functions.old.php:4012
1794
+ #: includes/functions.old.php:4046 includes/functions.php:3945
1795
+ #: includes/functions.php:4024 includes/functions.php:4058
1796
  msgid "NO AD BLOCKING"
1797
  msgstr ""
1798
 
1799
+ #: includes/functions.old.php:3969 includes/functions.old.php:3976
1800
+ #: includes/functions.php:3981 includes/functions.php:3988
1801
  msgid "AD BLOCKING REPLACEMENT"
1802
  msgstr ""
1803
 
1804
+ #: includes/functions.old.php:4119 includes/functions.old.php:4328
1805
+ #: includes/functions.php:4131 includes/functions.php:4340
1806
  msgid "Pageviews"
1807
  msgstr ""
1808
 
1809
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1810
  msgctxt "Version"
1811
  msgid "Unknown"
1812
  msgstr ""
1813
 
1814
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1815
  msgctxt "Times"
1816
  msgid "DISPLAYED"
1817
  msgstr ""
1818
 
1819
+ #: includes/functions.old.php:4265 includes/functions.php:4277
1820
  msgid "No version"
1821
  msgstr ""
1822
 
1823
+ #: includes/functions.old.php:4266 includes/functions.php:4278
1824
  msgctxt "Times"
1825
  msgid "BLOCKED"
1826
  msgstr ""
1827
 
1828
+ #: includes/functions.old.php:4328 includes/functions.php:4340
1829
  msgid "Impressions"
1830
  msgstr ""
1831
 
1832
+ #: includes/functions.old.php:4329 includes/functions.old.php:4330
1833
+ #: includes/functions.old.php:4385 includes/functions.php:4341
1834
+ #: includes/functions.php:4342 includes/functions.php:4397
1835
  msgid "Clicks"
1836
  msgstr ""
1837
 
1838
+ #: includes/functions.old.php:4330 includes/functions.php:4342
1839
  msgid "events"
1840
  msgstr ""
1841
 
1842
+ #: includes/functions.old.php:4331 includes/functions.php:4343
1843
  msgid "Ad Blocking Share"
1844
  msgstr ""
1845
 
1846
  #. translators: CTR as Click Through Rate
1847
+ #: includes/functions.old.php:4331 includes/functions.old.php:4391
1848
+ #: includes/functions.php:4343 includes/functions.php:4403
1849
  msgid "CTR"
1850
  msgstr ""
1851
 
1852
+ #: includes/functions.old.php:4473 includes/functions.php:4485
1853
  msgid "pageviews"
1854
  msgid_plural "pageviews"
1855
  msgstr[0] ""
1856
  msgstr[1] ""
1857
 
1858
+ #: includes/functions.old.php:4473 includes/functions.php:4485
1859
  msgid "impressions"
1860
  msgid_plural "impressions"
1861
  msgstr[0] ""
1862
  msgstr[1] ""
1863
 
1864
+ #: includes/functions.old.php:4477 includes/functions.php:4489
1865
  msgid "event"
1866
  msgid_plural "events"
1867
  msgstr[0] ""
1868
  msgstr[1] ""
1869
 
1870
+ #: includes/functions.old.php:4572 includes/functions.php:4584
1871
  msgctxt "Pageviews / Impressions"
1872
  msgid "Average"
1873
  msgstr ""
1874
 
1875
+ #: includes/functions.old.php:4593 includes/functions.php:4605
1876
  msgctxt "Ad Blocking / Clicks"
1877
  msgid "Average"
1878
  msgstr ""
1879
 
1880
+ #: includes/functions.old.php:4617 includes/functions.php:4629
1881
  msgctxt "Ad Blocking Share / CTR"
1882
  msgid "Average"
1883
  msgstr ""
1884
 
1885
  #. Translators: %s: Ad Inserter Pro
1886
+ #: includes/functions.old.php:4799 includes/functions.old.php:4891
1887
+ #: includes/functions.old.php:5207 includes/functions.php:4811
1888
+ #: includes/functions.php:4903 includes/functions.php:5232 strings.php:184
1889
  msgid "%s Report"
1890
  msgstr ""
1891
 
1892
+ #: includes/functions.old.php:5113 includes/functions.php:5138
1893
  msgid "for last month"
1894
  msgstr ""
1895
 
1896
+ #: includes/functions.old.php:5118 includes/functions.php:5143
1897
  msgid "for this month"
1898
  msgstr ""
1899
 
1900
+ #: includes/functions.old.php:5123 includes/functions.php:5148
1901
  msgid "for this year"
1902
  msgstr ""
1903
 
1904
+ #: includes/functions.old.php:5128 includes/functions.php:5153
1905
  msgid "for the last 15 days"
1906
  msgstr ""
1907
 
1908
+ #: includes/functions.old.php:5133 includes/functions.php:5158
1909
  msgid "for the last 30 days"
1910
  msgstr ""
1911
 
1912
+ #: includes/functions.old.php:5138 includes/functions.php:5163
1913
  msgid "for the last 90 days"
1914
  msgstr ""
1915
 
1916
+ #: includes/functions.old.php:5143 includes/functions.php:5168
1917
  msgid "for the last 180 days"
1918
  msgstr ""
1919
 
1920
+ #: includes/functions.old.php:5148 includes/functions.php:5173
1921
  msgid "for the last 365 days"
1922
  msgstr ""
1923
 
1924
+ #: includes/functions.php:519
1925
+ msgid "Pin list"
1926
+ msgstr ""
1927
+
1928
  #: includes/placeholders.php:20
1929
  msgid "Custom"
1930
  msgstr ""
1949
  msgid "Placeholder"
1950
  msgstr ""
1951
 
1952
+ #: includes/placeholders.php:363 settings.php:896 settings.php:4129
1953
  msgid "Size"
1954
  msgstr ""
1955
 
2057
  msgid "Ad Blocking Detected Message Preview"
2058
  msgstr ""
2059
 
2060
+ #: includes/preview-adb.php:348 settings.php:2743
2061
  msgid "Message CSS"
2062
  msgstr ""
2063
 
2064
+ #: includes/preview-adb.php:353 settings.php:2751
2065
  msgid "Overlay CSS"
2066
  msgstr ""
2067
 
2101
  msgid "background"
2102
  msgstr ""
2103
 
2104
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1247
2105
  msgid "Alignment"
2106
  msgstr ""
2107
 
2199
  "the values to those of the current block."
2200
  msgstr ""
2201
 
2202
+ #: settings.php:172 settings.php:1136
2203
  msgid ""
2204
  "Settings for individual exceptions have been updated. Please check all "
2205
  "blocks that have exceptions and and then save settings."
2206
  msgstr ""
2207
 
2208
+ #: settings.php:214
2209
  msgid "Online documentation"
2210
  msgstr ""
2211
 
2212
+ #: settings.php:218 settings.php:732 settings.php:2139
2213
  msgid "Show AdSense ad units"
2214
  msgstr ""
2215
 
2216
+ #: settings.php:223
2217
  msgid "Edit ads.txt file"
2218
  msgstr ""
2219
 
2220
+ #: settings.php:226 settings.php:1079
2221
  msgid "Check theme for available positions for automatic insertion"
2222
  msgstr ""
2223
 
2224
+ #: settings.php:228
2225
  msgid "List all blocks"
2226
  msgstr ""
2227
 
2228
+ #: settings.php:235
2229
  msgid "Loaded plugin JavaScript file version"
2230
  msgstr ""
2231
 
2232
  #. translators: %s: HTML tags
2233
+ #: settings.php:237
2234
  msgid ""
2235
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2236
  "due to inappropriate caching."
2237
  msgstr ""
2238
 
2239
+ #: settings.php:238
2240
  msgid ""
2241
  "Missing version parameter of the JavaScript file, probably due to "
2242
  "inappropriate caching."
2243
  msgstr ""
2244
 
2245
+ #: settings.php:239
2246
  msgid ""
2247
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2248
  "caching."
2249
  msgstr ""
2250
 
2251
+ #: settings.php:240 settings.php:251
2252
  msgid ""
2253
  "Please delete browser's cache and all other caches used and then reload this "
2254
  "page."
2255
  msgstr ""
2256
 
2257
+ #: settings.php:246
2258
  msgid "Loaded plugin CSS file version"
2259
  msgstr ""
2260
 
2261
  #. translators: %s: HTML tags
2262
+ #: settings.php:248
2263
  msgid ""
2264
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2265
  "inappropriate caching."
2266
  msgstr ""
2267
 
2268
+ #: settings.php:249
2269
  msgid ""
2270
  "Missing version parameter of the CSS file, probably due to inappropriate "
2271
  "caching."
2272
  msgstr ""
2273
 
2274
+ #: settings.php:250
2275
  msgid ""
2276
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2277
  msgstr ""
2278
 
2279
+ #: settings.php:257 settings.php:269
2280
  msgid "WARNING"
2281
  msgstr ""
2282
 
2283
  #. translators: %s: HTML tags
2284
+ #: settings.php:259
2285
  msgid "Page may %s not be loaded properly. %s"
2286
  msgstr ""
2287
 
2288
+ #: settings.php:260
2289
  msgid ""
2290
  "Check ad blocking software that may block CSS, JavaScript or image files."
2291
  msgstr ""
2292
 
2293
+ #: settings.php:269
2294
  msgid ""
2295
+ "To disable debugging functions and to enable insertions go to tab [*] / tab "
2296
+ "Debugging"
2297
  msgstr ""
2298
 
2299
+ #: settings.php:271
2300
  msgid "Debugging functions enabled - some code is not inserted"
2301
  msgstr ""
2302
 
2303
+ #: settings.php:288
2304
  msgid "Group name"
2305
  msgstr ""
2306
 
2307
+ #: settings.php:289
2308
  msgid "Option name"
2309
  msgstr ""
2310
 
2311
+ #: settings.php:295
2312
  msgid "Share"
2313
  msgstr ""
2314
 
2315
+ #: settings.php:298
2316
  msgid ""
2317
  "Option share in percents - 0 means option is disabled, if share for one "
2318
  "option is not defined it will be calculated automatically. Leave all share "
2319
  "fields empty for equal option shares."
2320
  msgstr ""
2321
 
2322
+ #: settings.php:301
2323
  msgid "Time"
2324
  msgstr ""
2325
 
2326
+ #: settings.php:304
2327
  msgid ""
2328
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2329
  "Leave all time fields empty for no timed rotation."
2330
  msgstr ""
2331
 
2332
+ #: settings.php:456
2333
  msgid "General Settings"
2334
  msgstr ""
2335
 
2336
+ #: settings.php:680 settings.php:2470 settings.php:2537 settings.php:2723
2337
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2338
  msgstr ""
2339
 
2340
+ #: settings.php:687
2341
  msgid "Toggle tools"
2342
  msgstr ""
2343
 
2344
+ #: settings.php:695
2345
  msgid "Process PHP code in block"
2346
  msgstr ""
2347
 
2348
+ #: settings.php:702
2349
  msgid "Disable insertion of this block"
2350
  msgstr ""
2351
 
2352
+ #: settings.php:714
2353
  msgid "Toggle code generator"
2354
  msgstr ""
2355
 
2356
+ #: settings.php:718
2357
  msgid "Toggle rotation editor"
2358
  msgstr ""
2359
 
2360
+ #: settings.php:722
2361
  msgid "Open visual HTML editor"
2362
  msgstr ""
2363
 
2364
+ #: settings.php:741
2365
  msgid "Clear block"
2366
  msgstr ""
2367
 
2368
+ #: settings.php:746 settings.php:4001
2369
  msgid "Copy block"
2370
  msgstr ""
2371
 
2372
+ #: settings.php:750
2373
  msgid "Paste name"
2374
  msgstr ""
2375
 
2376
+ #: settings.php:754
2377
  msgid "Paste code"
2378
  msgstr ""
2379
 
2380
+ #: settings.php:758
2381
  msgid "Paste settings"
2382
  msgstr ""
2383
 
2384
+ #: settings.php:762
2385
  msgid "Paste block (name, code and settings)"
2386
  msgstr ""
2387
 
2388
+ #: settings.php:781
2389
  msgid "Rotation groups"
2390
  msgstr ""
2391
 
2392
+ #: settings.php:785
2393
  msgid "Remove option"
2394
  msgstr ""
2395
 
2396
+ #: settings.php:789
2397
  msgid "Add option"
2398
  msgstr ""
2399
 
2400
+ #: settings.php:804
2401
  msgid "Import code"
2402
  msgstr ""
2403
 
2404
+ #: settings.php:808
2405
  msgid "Generate code"
2406
  msgstr ""
2407
 
2408
+ #: settings.php:813
2409
  msgid "Banner"
2410
  msgstr ""
2411
 
2412
+ #: settings.php:824
2413
  msgid "Image"
2414
  msgstr ""
2415
 
2416
+ #: settings.php:832
2417
  msgid "Link"
2418
  msgstr ""
2419
 
2420
+ #: settings.php:843
2421
  msgid "Open link in a new tab"
2422
  msgstr ""
2423
 
2424
+ #: settings.php:844
2425
  msgid "Select Image"
2426
  msgstr ""
2427
 
2428
+ #: settings.php:845
2429
  msgid "Select Placeholder"
2430
  msgstr ""
2431
 
2432
+ #: settings.php:857
2433
  msgid "Comment"
2434
  msgstr ""
2435
 
2436
+ #: settings.php:866
2437
  msgctxt "AdSense"
2438
  msgid "Publisher ID"
2439
  msgstr ""
2440
 
2441
+ #: settings.php:875
2442
  msgctxt "AdSense"
2443
  msgid "Ad Slot ID"
2444
  msgstr ""
2445
 
2446
+ #: settings.php:884
2447
  msgid "Ad Type"
2448
  msgstr ""
2449
 
2450
+ #: settings.php:908
2451
  msgid "AMP Ad"
2452
  msgstr ""
2453
 
2454
+ #: settings.php:925
2455
  msgid "Show ad units from your AdSense account"
2456
  msgstr ""
2457
 
2458
+ #: settings.php:925
2459
  msgid "AdSense ad units"
2460
  msgstr ""
2461
 
2462
+ #: settings.php:942
2463
  msgctxt "AdSense"
2464
  msgid "Layout"
2465
  msgstr ""
2466
 
2467
+ #: settings.php:951
2468
  msgctxt "AdSense"
2469
  msgid "Layout Key"
2470
  msgstr ""
2471
 
2472
+ #: settings.php:961
2473
  msgid "Full width"
2474
  msgstr ""
2475
 
2476
+ #: settings.php:963
2477
  msgctxt "Full width"
2478
  msgid "Enabled"
2479
  msgstr ""
2480
 
2481
+ #: settings.php:964
2482
  msgctxt "Full width"
2483
  msgid "Disabled"
2484
  msgstr ""
2485
 
2486
+ #: settings.php:1045
2487
  msgid ""
2488
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2489
  "Cookie or Referer (domain)"
2490
  msgstr ""
2491
 
2492
+ #: settings.php:1045
2493
  msgid "Lists"
2494
  msgstr ""
2495
 
2496
+ #: settings.php:1046
2497
  msgid "Widget, Shortcode and PHP function call"
2498
  msgstr ""
2499
 
2500
+ #: settings.php:1046
2501
  msgid "Manual"
2502
  msgstr ""
2503
 
2504
+ #: settings.php:1047
2505
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2506
  msgstr ""
2507
 
2508
+ #: settings.php:1047
2509
  msgid "Devices"
2510
  msgstr ""
2511
 
2512
+ #: settings.php:1048
2513
  msgid ""
2514
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2515
  "feeds), Filter, Scheduling, General tag"
2516
  msgstr ""
2517
 
2518
+ #: settings.php:1048
2519
  msgid "Misc"
2520
  msgstr ""
2521
 
2522
+ #: settings.php:1049
2523
  msgid "Preview code and alignment"
2524
  msgstr ""
2525
 
2526
+ #: settings.php:1052 settings.php:2123
2527
  msgid ""
2528
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2529
  "editor is active before saving settings."
2530
  msgstr ""
2531
 
2532
+ #: settings.php:1054
2533
  msgid "Save All Settings"
2534
  msgstr ""
2535
 
2536
+ #: settings.php:1065 settings.php:1066
2537
  msgid "Enable insertion on posts"
2538
  msgstr ""
2539
 
2540
+ #: settings.php:1066 settings.php:3269
2541
  msgid "Posts"
2542
  msgstr ""
2543
 
2544
+ #: settings.php:1070 settings.php:1071
2545
  msgid ""
2546
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2547
  "page or theme homepage (available positions may depend on hooks used by the "
2548
  "theme)"
2549
  msgstr ""
2550
 
2551
+ #: settings.php:1071 settings.php:3271
2552
  msgid "Homepage"
2553
  msgstr ""
2554
 
2555
+ #: settings.php:1075 settings.php:1076
2556
  msgid "Enable insertion on category blog pages (including sub-pages)"
2557
  msgstr ""
2558
 
2559
+ #: settings.php:1076 settings.php:3272
2560
  msgid "Category pages"
2561
  msgstr ""
2562
 
2563
+ #: settings.php:1086 settings.php:1087
2564
  msgid "Enable insertion on static pages"
2565
  msgstr ""
2566
 
2567
+ #: settings.php:1087 settings.php:3270
2568
  msgid "Static pages"
2569
  msgstr ""
2570
 
2571
+ #: settings.php:1091 settings.php:1092
2572
  msgid "Enable insertion on search blog pages"
2573
  msgstr ""
2574
 
2575
+ #: settings.php:1092 settings.php:3274
2576
  msgid "Search pages"
2577
  msgstr ""
2578
 
2579
+ #: settings.php:1096 settings.php:1097
2580
  msgid "Enable insertion on tag or archive blog pages"
2581
  msgstr ""
2582
 
2583
+ #: settings.php:1100
2584
  msgid "Toggle settings for default insertion and list of individual exceptions"
2585
  msgstr ""
2586
 
2587
+ #: settings.php:1112
2588
  msgid ""
2589
  "Enable individual post/page exceptions for insertion of this block. They can "
2590
  "be configured on the individual post/page editor page (in the settings below "
2591
  "the editor)."
2592
  msgstr ""
2593
 
2594
+ #: settings.php:1113
2595
  msgid ""
2596
  "Enable individual post/page exceptions for insertion of this block. When "
2597
  "enabled they can be configured on the individual post/page editor page (in "
2598
  "the settings below the editor)."
2599
  msgstr ""
2600
 
2601
+ #: settings.php:1113
2602
  msgid "Use exceptions for individual posts or pages to change insertion"
2603
  msgstr ""
2604
 
2605
  #. Translators: Enabled means...
2606
+ #: settings.php:1121
2607
  msgid ""
2608
  "means the insertion for this block is enabled by default and disabled for "
2609
  "exceptions."
2610
  msgstr ""
2611
 
2612
  #. Translators: Disabled means...
2613
+ #: settings.php:1122
2614
  msgid ""
2615
  "means the insertion for this block is disabled by default and enabled for "
2616
  "exceptions."
2617
  msgstr ""
2618
 
2619
+ #: settings.php:1123
2620
  msgid ""
2621
  "When individual post/page exceptions are enabled they can be configured on "
2622
  "the individual post/page editor page (in the settings below the editor)."
2623
  msgstr ""
2624
 
2625
+ #: settings.php:1131
2626
  msgid ""
2627
  "No exception for post or static page defined. Block will not be inserted."
2628
  msgstr ""
2629
 
2630
+ #: settings.php:1149
2631
  msgctxt "post"
2632
  msgid "Type"
2633
  msgstr ""
2634
 
2635
  #. translators: %d: block number
2636
+ #: settings.php:1151
2637
  msgid "Are you sure you want to clear all exceptions for block %d?"
2638
  msgstr ""
2639
 
2640
+ #: settings.php:1178 settings.php:1326 settings.php:1915
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2641
  msgid "Insertion"
2642
  msgstr ""
2643
 
2644
+ #: settings.php:1216
2645
  msgid ""
2646
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2647
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2651
  "negative number means counting from the opposite direction"
2652
  msgstr ""
2653
 
2654
+ #: settings.php:1217
2655
  msgid ""
2656
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2657
  "means every N images, empty means all images, 0 means random image, value "
2661
  "direction"
2662
  msgstr ""
2663
 
2664
+ #: settings.php:1230
2665
  msgid ""
2666
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2667
  "numbers, %N means every N excerpts, empty means all excerpts"
2668
  msgstr ""
2669
 
2670
+ #: settings.php:1231
2671
  msgid ""
2672
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2673
  "numbers, %N means every N posts, empty means all posts"
2674
  msgstr ""
2675
 
2676
+ #: settings.php:1232
2677
  msgid ""
2678
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2679
  "numbers, %N means every N comments, empty means all comments"
2680
  msgstr ""
2681
 
2682
+ #: settings.php:1239
2683
  msgid "Toggle paragraph counting settings"
2684
  msgstr ""
2685
 
2686
+ #: settings.php:1240
2687
  msgid "Toggle paragraph clearance settings"
2688
  msgstr ""
2689
 
2690
+ #: settings.php:1243
2691
  msgid "Toggle insertion filter settings"
2692
  msgstr ""
2693
 
2694
+ #: settings.php:1261
2695
  msgid "Toggle insertion and alignment icons"
2696
  msgstr ""
2697
 
2698
+ #: settings.php:1275
2699
  msgid "Custom CSS code for the wrapping div"
2700
  msgstr ""
2701
 
2702
+ #: settings.php:1278 settings.php:1279 settings.php:1280 settings.php:1281
2703
+ #: settings.php:1282 settings.php:1283
2704
  msgid "CSS code for the wrapping div, click to edit"
2705
  msgstr ""
2706
 
2707
+ #: settings.php:1296
2708
  msgid "HTML element"
2709
  msgstr ""
2710
 
2711
+ #: settings.php:1309
2712
  msgid "HTML element selector or comma separated list of selectors"
2713
  msgstr ""
2714
 
2715
+ #: settings.php:1315 settings.php:2628
2716
  msgid "Action"
2717
  msgstr ""
2718
 
2719
+ #: settings.php:1327
2720
  msgid ""
2721
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2722
  "Server-side insertion inserts block when the page is generated but needs "
2723
  "Output buffering enabled."
2724
  msgstr ""
2725
 
2726
+ #: settings.php:1337
2727
  msgid "JavaScript code position"
2728
  msgstr ""
2729
 
2730
+ #: settings.php:1338
2731
  msgid ""
2732
  "Page position where the JavaScript code for client-side insertion will be "
2733
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2734
  msgstr ""
2735
 
2736
+ #: settings.php:1353
2737
  msgid "Count"
2738
  msgstr ""
2739
 
2740
+ #: settings.php:1359
2741
  msgid "paragraphs with tags"
2742
  msgstr ""
2743
 
2744
+ #: settings.php:1365
2745
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2746
  msgstr ""
2747
 
2748
+ #: settings.php:1374
2749
  msgid "that have between"
2750
  msgstr ""
2751
 
2752
+ #: settings.php:1380
2753
  msgid "Minimum number of paragraph words, leave empty for no limit"
2754
  msgstr ""
2755
 
2756
+ #: settings.php:1389
2757
  msgid "Maximum number of paragraph words, leave empty for no limit"
2758
  msgstr ""
2759
 
2760
+ #: settings.php:1392 settings.php:2042
2761
  msgid "words"
2762
  msgstr ""
2763
 
2764
+ #: settings.php:1407 settings.php:1465 settings.php:1528 settings.php:1554
2765
  msgid "Comma separated texts"
2766
  msgstr ""
2767
 
2768
+ #: settings.php:1420
2769
+ msgid ""
2770
+ "Count also paragraphs inside these elements - defined on general plugin "
2771
+ "settings page - tab [*] / tab General"
2772
  msgstr ""
2773
 
2774
+ #. Translators: %s: HTML tags
2775
+ #: settings.php:1425
2776
+ msgid "Count inside %s elements"
2777
+ msgstr ""
2778
+
2779
+ #. translators: inside [HTML tags] elements that contain
2780
+ #: settings.php:1437
2781
+ msgid "inside"
2782
+ msgstr ""
2783
+
2784
+ #: settings.php:1443
2785
+ msgid "Comma separated HTML tag names of container elements"
2786
+ msgstr ""
2787
+
2788
+ #. translators: inside [HTML tags] elements that contain
2789
+ #: settings.php:1452
2790
+ msgid "elements that"
2791
  msgstr ""
2792
 
2793
+ #: settings.php:1478
2794
+ msgid "Minimum number of paragraphs"
2795
  msgstr ""
2796
 
2797
+ #: settings.php:1496
2798
  msgid "Minimum number of words in paragraphs above"
2799
  msgstr ""
2800
 
2801
+ #: settings.php:1502
2802
  msgid ""
2803
  "Used only with automatic insertion After paragraph and empty paragraph "
2804
  "numbers"
2805
  msgstr ""
2806
 
2807
+ #: settings.php:1513 settings.php:1539
2808
  msgid "In"
2809
  msgstr ""
2810
 
2811
+ #: settings.php:1519
2812
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2813
  msgstr ""
2814
 
2815
+ #: settings.php:1522
2816
  msgid "paragraphs above avoid"
2817
  msgstr ""
2818
 
2819
+ #: settings.php:1545
2820
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2821
  msgstr ""
2822
 
2823
+ #: settings.php:1548
2824
  msgid "paragraphs below avoid"
2825
  msgstr ""
2826
 
2827
+ #: settings.php:1564
2828
  msgid "If text is found"
2829
  msgstr ""
2830
 
2831
+ #: settings.php:1571
2832
  msgid "check up to"
2833
  msgstr ""
2834
 
2835
+ #: settings.php:1579
2836
  msgctxt "check up to"
2837
  msgid "paragraphs"
2838
  msgstr ""
2839
 
2840
+ #: settings.php:1595
2841
  msgid "Categories"
2842
  msgstr ""
2843
 
2844
+ #: settings.php:1598
2845
  msgid "Toggle category editor"
2846
  msgstr ""
2847
 
2848
+ #: settings.php:1601
2849
  msgid "Comma separated category slugs"
2850
  msgstr ""
2851
 
2852
+ #: settings.php:1605
2853
  msgid "Blacklist categories"
2854
  msgstr ""
2855
 
2856
+ #: settings.php:1609
2857
  msgid "Whitelist categories"
2858
  msgstr ""
2859
 
2860
+ #: settings.php:1621
2861
  msgid "Tags"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:1624
2865
  msgid "Toggle tag editor"
2866
  msgstr ""
2867
 
2868
+ #: settings.php:1627
2869
  msgid "Comma separated tag slugs"
2870
  msgstr ""
2871
 
2872
+ #: settings.php:1631
2873
  msgid "Blacklist tags"
2874
  msgstr ""
2875
 
2876
+ #: settings.php:1635
2877
  msgid "Whitelist tags"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:1647
2881
  msgid "Taxonomies"
2882
  msgstr ""
2883
 
2884
+ #: settings.php:1650
2885
  msgid "Toggle taxonomy editor"
2886
  msgstr ""
2887
 
2888
+ #: settings.php:1653
2889
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2890
  msgstr ""
2891
 
2892
+ #: settings.php:1657
2893
  msgid "Blacklist taxonomies"
2894
  msgstr ""
2895
 
2896
+ #: settings.php:1661
2897
  msgid "Whitelist taxonomies"
2898
  msgstr ""
2899
 
2900
+ #: settings.php:1673
2901
  msgid "Post IDs"
2902
  msgstr ""
2903
 
2904
+ #: settings.php:1676
2905
  msgid "Toggle post/page ID editor"
2906
  msgstr ""
2907
 
2908
+ #: settings.php:1679
2909
  msgid "Comma separated post/page IDs"
2910
  msgstr ""
2911
 
2912
+ #: settings.php:1683
2913
  msgid "Blacklist IDs"
2914
  msgstr ""
2915
 
2916
+ #: settings.php:1687
2917
  msgid "Whitelist IDs"
2918
  msgstr ""
2919
 
2920
+ #: settings.php:1699
2921
  msgid "Urls"
2922
  msgstr ""
2923
 
2924
+ #: settings.php:1702
2925
  msgid "Toggle url editor"
2926
  msgstr ""
2927
 
2928
+ #: settings.php:1705
2929
  msgid ""
2930
  "Comma separated urls (page addresses) starting with / after domain name (e."
2931
  "g. /permalink-url, use only when you need to taget a specific url not "
2933
  "start*. *url-pattern*, *url-end)"
2934
  msgstr ""
2935
 
2936
+ #: settings.php:1709
2937
  msgid "Blacklist urls"
2938
  msgstr ""
2939
 
2940
+ #: settings.php:1713
2941
  msgid "Whitelist urls"
2942
  msgstr ""
2943
 
2944
+ #: settings.php:1724
2945
  msgid "Url parameters"
2946
  msgstr ""
2947
 
2948
+ #: settings.php:1728
2949
  msgid "Toggle url parameter and cookie editor"
2950
  msgstr ""
2951
 
2952
+ #: settings.php:1731
2953
  msgid ""
2954
  "Comma separated url query parameters or cookies with optional values (use "
2955
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2956
  msgstr ""
2957
 
2958
+ #: settings.php:1735
2959
  msgid "Blacklist url parameters"
2960
  msgstr ""
2961
 
2962
+ #: settings.php:1739
2963
  msgid "Whitelist url parameters"
2964
  msgstr ""
2965
 
2966
+ #: settings.php:1750
2967
  msgid "Referrers"
2968
  msgstr ""
2969
 
2970
+ #: settings.php:1753
2971
  msgid "Toggle referer editor"
2972
  msgstr ""
2973
 
2974
+ #: settings.php:1756
2975
  msgid ""
2976
  "Comma separated domains, use # for no referrer, you can also use partial "
2977
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2978
  msgstr ""
2979
 
2980
+ #: settings.php:1760
2981
  msgid "Blacklist referers"
2982
  msgstr ""
2983
 
2984
+ #: settings.php:1764
2985
  msgid "Whitelist referers"
2986
  msgstr ""
2987
 
2988
+ #: settings.php:1784
2989
  msgid "Enable widget for this block"
2990
  msgstr ""
2991
 
2992
+ #: settings.php:1796
2993
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2994
  msgstr ""
2995
 
2996
+ #: settings.php:1797 settings.php:4057
2997
  msgid "Shortcode"
2998
  msgstr ""
2999
 
3000
+ #: settings.php:1812
3001
  msgid ""
3002
  "Enable PHP function call to insert this block at any position in theme file. "
3003
  "If function is disabled for block it will return empty string."
3004
  msgstr ""
3005
 
3006
+ #: settings.php:1813
3007
  msgid "PHP function"
3008
  msgstr ""
3009
 
3010
+ #: settings.php:1828
3011
  msgid "Client-side device detection"
3012
  msgstr ""
3013
 
3014
+ #: settings.php:1829
3015
  msgid "Server-side device detection"
3016
  msgstr ""
3017
 
3018
+ #: settings.php:1836
3019
  msgid "Use client-side detection to"
3020
  msgstr ""
3021
 
3022
+ #: settings.php:1838
3023
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3024
  msgstr ""
3025
 
3026
  #. Translators: only on (the following devices): viewport names (devices)
3027
  #. listed
3028
+ #: settings.php:1843
3029
  msgid "only on"
3030
  msgstr ""
3031
 
3032
+ #: settings.php:1871
3033
  msgid "Device min width %s px"
3034
  msgstr ""
3035
 
3036
+ #: settings.php:1897
3037
  msgid "Use server-side detection to insert block only for"
3038
  msgstr ""
3039
 
3040
+ #: settings.php:1916
3041
  msgid "Filter"
3042
  msgstr ""
3043
 
3044
+ #: settings.php:1917
3045
  msgid "Word Count"
3046
  msgstr ""
3047
 
3048
+ #: settings.php:1918 settings.php:4047
3049
  msgid "Scheduling"
3050
  msgstr ""
3051
 
3052
+ #: settings.php:1919
3053
  msgid "Display"
3054
  msgstr ""
3055
 
3056
+ #: settings.php:1921 settings.php:2165
3057
  msgid "General"
3058
  msgstr ""
3059
 
3060
+ #: settings.php:1933
3061
  msgid "Old settings for AMP pages detected"
3062
  msgstr ""
3063
 
3064
+ #: settings.php:1933
3065
  msgid ""
3066
  "To insert different codes on normal and AMP pages separate them with "
3067
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3068
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3069
  msgstr ""
3070
 
3071
+ #: settings.php:1933
3072
  msgid "AMP pages"
3073
  msgstr ""
3074
 
3075
+ #: settings.php:1938
3076
  msgid "Enable insertion for Ajax requests"
3077
  msgstr ""
3078
 
3079
+ #: settings.php:1938
3080
  msgid "Ajax requests"
3081
  msgstr ""
3082
 
3083
+ #: settings.php:1943
3084
  msgid "Enable insertion in RSS feeds"
3085
  msgstr ""
3086
 
3087
+ #: settings.php:1943
3088
  msgid "RSS Feed"
3089
  msgstr ""
3090
 
3091
+ #: settings.php:1948
3092
  msgid "Enable insertion on page for Error 404: Page not found"
3093
  msgstr ""
3094
 
3095
+ #: settings.php:1948
3096
  msgid "Error 404 page"
3097
  msgstr ""
3098
 
3099
+ #: settings.php:1960
3100
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3101
  msgstr ""
3102
 
3103
+ #: settings.php:1961
3104
  msgid "insertions"
3105
  msgstr ""
3106
 
3107
+ #: settings.php:1963
3108
  msgid ""
3109
+ "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3110
+ "General)"
3111
  msgstr ""
3112
 
3113
+ #: settings.php:1966 settings.php:2334
3114
  msgid "Max blocks per page"
3115
  msgstr ""
3116
 
3117
+ #: settings.php:1978
3118
  msgid "Insert for"
3119
  msgstr ""
3120
 
3121
+ #: settings.php:1986
3122
  msgid ""
3123
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3124
  "currently active). Might speed up insertion on content pages when "
3125
  "the_content filter is called multiple times."
3126
  msgstr ""
3127
 
3128
+ #: settings.php:1989
3129
  msgid "Insert only in the loop"
3130
  msgstr ""
3131
 
3132
+ #: settings.php:1995
3133
  msgid ""
3134
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:1995
3138
  msgid "Disable caching"
3139
  msgstr ""
3140
 
3141
+ #: settings.php:2007
3142
  msgid "Filter insertions"
3143
  msgstr ""
3144
 
3145
+ #: settings.php:2010
3146
  msgid ""
3147
  "Filter multiple insertions by specifying wanted insertions for this block - "
3148
  "single number, comma separated numbers or %N for every N insertions - empty "
3150
  "using only one insertion type."
3151
  msgstr ""
3152
 
3153
+ #: settings.php:2013
3154
  msgid "using"
3155
  msgstr ""
3156
 
3157
+ #: settings.php:2032
3158
  msgid "Checked means specified calls are unwanted"
3159
  msgstr ""
3160
 
3161
+ #: settings.php:2032
3162
  msgid "Invert filter"
3163
  msgstr ""
3164
 
3165
+ #: settings.php:2038
3166
  msgid "Post/Static page must have between"
3167
  msgstr ""
3168
 
3169
+ #: settings.php:2039
3170
  msgid "Minimum number of post/static page words, leave empty for no limit"
3171
  msgstr ""
3172
 
3173
+ #: settings.php:2041
3174
  msgid "Maximum number of post/static page words, leave empty for no limit"
3175
  msgstr ""
3176
 
3177
+ #: settings.php:2054
3178
  msgid "days after publishing"
3179
  msgstr ""
3180
 
3181
+ #: settings.php:2056
3182
  msgid "Not available"
3183
  msgstr ""
3184
 
3185
+ #: settings.php:2069 settings.php:2326
3186
  msgid "Ad label"
3187
  msgstr ""
3188
 
3189
+ #: settings.php:2089
3190
  msgid "General tag"
3191
  msgstr ""
3192
 
3193
+ #: settings.php:2093
3194
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3195
  msgstr ""
3196
 
3197
  #. translators: %s: HTML tags
3198
+ #: settings.php:2102
3199
  msgid ""
3200
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3201
  "side device detection!"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:2114
3205
  msgid "Settings"
3206
  msgstr ""
3207
 
3208
+ #: settings.php:2117
3209
  msgid "Settings timestamp"
3210
  msgstr ""
3211
 
3212
+ #: settings.php:2130
3213
  msgid "Are you sure you want to reset all settings?"
3214
  msgstr ""
3215
 
3216
+ #: settings.php:2130
3217
  msgid "Reset All Settings"
3218
  msgstr ""
3219
 
3220
+ #: settings.php:2166
3221
  msgid "Viewports"
3222
  msgstr ""
3223
 
3224
+ #: settings.php:2167
3225
  msgid "Hooks"
3226
  msgstr ""
3227
 
3228
+ #: settings.php:2168
3229
  msgid "Header"
3230
  msgstr ""
3231
 
3232
+ #: settings.php:2169 strings.php:30
3233
  msgid "Footer"
3234
  msgstr ""
3235
 
3236
+ #: settings.php:2174
3237
  msgid "Debugging"
3238
  msgstr ""
3239
 
3240
+ #: settings.php:2184
3241
  msgid "Plugin priority"
3242
  msgstr ""
3243
 
3244
+ #: settings.php:2192
3245
  msgid "Output buffering"
3246
  msgstr ""
3247
 
3248
+ #: settings.php:2195
3249
  msgid "Needed for position Above header but may not work with all themes"
3250
  msgstr ""
3251
 
3252
+ #: settings.php:2203
3253
  msgid "Syntax highlighting theme"
3254
  msgstr ""
3255
 
3256
+ #: settings.php:2210
3257
  msgctxt "no syntax highlighting themes"
3258
  msgid "None"
3259
  msgstr ""
3260
 
3261
+ #: settings.php:2211
3262
  msgid "No Syntax Highlighting"
3263
  msgstr ""
3264
 
3265
+ #: settings.php:2213
3266
  msgctxt "syntax highlighting themes"
3267
  msgid "Light"
3268
  msgstr ""
3269
 
3270
+ #: settings.php:2228
3271
  msgctxt "syntax highlighting themes"
3272
  msgid "Dark"
3273
  msgstr ""
3274
 
3275
+ #: settings.php:2254
3276
  msgid "Min. user role for ind. exceptions editing"
3277
  msgstr ""
3278
 
3279
+ #: settings.php:2264
3280
  msgid "Disable caching for logged in administrators"
3281
  msgstr ""
3282
 
3283
+ #: settings.php:2267
3284
  msgid ""
3285
  "Enabled means that logged in administrators will see non-cached (live) pages "
3286
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3287
  msgstr ""
3288
 
3289
+ #: settings.php:2275
3290
  msgid "Sticky widget mode"
3291
  msgstr ""
3292
 
3293
+ #: settings.php:2278
3294
  msgid ""
3295
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3296
  "mode works with most themes but may reload ads on page load."
3297
  msgstr ""
3298
 
3299
+ #: settings.php:2286
3300
  msgid "Sticky widget top margin"
3301
  msgstr ""
3302
 
3303
+ #: settings.php:2294
3304
  msgid "Dynamic blocks"
3305
  msgstr ""
3306
 
3307
+ #: settings.php:2307
3308
  msgid "Functions for paragraph counting"
3309
  msgstr ""
3310
 
3311
+ #: settings.php:2310
3312
  msgid ""
3313
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3314
  "functions if paragraphs are not counted properly on non-english pages."
3315
  msgstr ""
3316
 
3317
+ #: settings.php:2318
3318
  msgid "No paragraph counting inside"
3319
  msgstr ""
3320
 
3321
+ #: settings.php:2329
3322
  msgid "Label text or HTML code"
3323
  msgstr ""
3324
 
3325
+ #: settings.php:2337
3326
  msgid ""
3327
  "Maximum number of inserted blocks per page. You need to enable Max page "
3328
  "insertions (button Misc / tab Insertion) to count block for this limit."
3329
  msgstr ""
3330
 
3331
+ #: settings.php:2351
3332
  msgid "Plugin usage tracking"
3333
  msgstr ""
3334
 
3335
  #. translators: %s: Ad Inserter
3336
+ #: settings.php:2354
3337
  msgid ""
3338
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3339
  "Only information regarding the WordPress environment and %s usage is "
3340
  "recorded (once per month and on events like plugin activation/deactivation)."
3341
  msgstr ""
3342
 
3343
+ #: settings.php:2372
3344
  msgid "CSS class name for the wrapping div"
3345
  msgstr ""
3346
 
3347
+ #: settings.php:2372
3348
  msgid "Block class name"
3349
  msgstr ""
3350
 
3351
+ #: settings.php:2376
3352
  msgid "Include general plugin block class"
3353
  msgstr ""
3354
 
3355
+ #: settings.php:2376
3356
  msgid "Block class"
3357
  msgstr ""
3358
 
3359
+ #: settings.php:2381
3360
  msgid "Include block number class"
3361
  msgstr ""
3362
 
3363
+ #: settings.php:2381
3364
  msgid "Block number class"
3365
  msgstr ""
3366
 
3367
+ #: settings.php:2386
3368
  msgid ""
3369
  "Instead of alignment classes generate inline alignment styles for blocks"
3370
  msgstr ""
3371
 
3372
+ #: settings.php:2386
3373
  msgid "Inline styles"
3374
  msgstr ""
3375
 
3376
+ #: settings.php:2392
3377
  msgid "Preview of the block wrapping code"
3378
  msgstr ""
3379
 
3380
+ #: settings.php:2393
3381
  msgid "Wrapping div"
3382
  msgstr ""
3383
 
3384
+ #: settings.php:2394 settings.php:2834
3385
  msgid "BLOCK CODE"
3386
  msgstr ""
3387
 
3388
+ #: settings.php:2402
3389
  msgid "Viewport Settings used for client-side device detection"
3390
  msgstr ""
3391
 
3392
  #. Translators: %d: viewport number
3393
+ #: settings.php:2410
3394
  msgid "Viewport %d name"
3395
  msgstr ""
3396
 
3397
+ #: settings.php:2413
3398
  msgid "min width"
3399
  msgstr ""
3400
 
3401
+ #: settings.php:2424
3402
  msgid "Custom Hooks"
3403
  msgstr ""
3404
 
3405
+ #: settings.php:2436 settings.php:2439
3406
  msgid "Enable hook"
3407
  msgstr ""
3408
 
3409
  #. translators: %d: hook number
3410
+ #: settings.php:2439
3411
  msgid "Hook %d name"
3412
  msgstr ""
3413
 
3414
+ #: settings.php:2442
3415
  msgid "Hook name for automatic insertion selection"
3416
  msgstr ""
3417
 
3418
+ #: settings.php:2445
3419
  msgid "action"
3420
  msgstr ""
3421
 
3422
+ #: settings.php:2448
3423
  msgid "Action name as used in the do_action () function"
3424
  msgstr ""
3425
 
3426
+ #: settings.php:2451
3427
  msgid "priority"
3428
  msgstr ""
3429
 
3430
+ #: settings.php:2454
3431
  msgid "Priority for the hook (default is 10)"
3432
  msgstr ""
3433
 
3434
+ #: settings.php:2475
3435
  msgid "Enable insertion of this code into HTML page header"
3436
  msgstr ""
3437
 
3438
+ #: settings.php:2479 settings.php:2546 settings.php:2728
3439
  msgid "Process PHP code"
3440
  msgstr ""
3441
 
3442
+ #: settings.php:2483
3443
  msgid "HTML Page Header Code"
3444
  msgstr ""
3445
 
3446
+ #: settings.php:2491
3447
  msgid "Code in the %s section of the HTML page"
3448
  msgstr ""
3449
 
3450
+ #: settings.php:2492
3451
  msgctxt "code in the header"
3452
  msgid "NOT ENABLED"
3453
  msgstr ""
3454
 
3455
+ #: settings.php:2509 settings.php:2577
3456
  msgid "Use server-side detection to insert code only for"
3457
  msgstr ""
3458
 
3459
+ #: settings.php:2524
3460
  msgid ""
3461
  "Enable insertion of this code into HTML page header on page for Error 404: "
3462
  "Page not found"
3463
  msgstr ""
3464
 
3465
+ #: settings.php:2524 settings.php:2592
3466
  msgid "Insert on Error 404 page"
3467
  msgstr ""
3468
 
3469
+ #: settings.php:2542
3470
  msgid "Enable insertion of this code into HTML page footer"
3471
  msgstr ""
3472
 
3473
+ #: settings.php:2550
3474
  msgid "HTML Page Footer Code"
3475
  msgstr ""
3476
 
3477
  #. translators: %s: HTML tags
3478
+ #: settings.php:2558
3479
  msgid "Code before the %s tag of the the HTML page"
3480
  msgstr ""
3481
 
3482
+ #: settings.php:2559
3483
  msgctxt "code in the footer"
3484
  msgid "NOT ENABLED"
3485
  msgstr ""
3486
 
3487
+ #: settings.php:2592
3488
  msgid ""
3489
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3490
  "Page not found"
3491
  msgstr ""
3492
 
3493
+ #: settings.php:2608
3494
  msgid "Code for ad blocking detection inserted. Click for details."
3495
  msgstr ""
3496
 
3497
+ #: settings.php:2613
3498
  msgid "Enable detection of ad blocking"
3499
  msgstr ""
3500
 
3501
+ #: settings.php:2631
3502
  msgid "Global action when ad blocking is detected"
3503
  msgstr ""
3504
 
3505
+ #: settings.php:2637
3506
  msgid "No action for"
3507
  msgstr ""
3508
 
3509
+ #: settings.php:2638
3510
  msgid "Exceptions for global action when ad blocking is detected."
3511
  msgstr ""
3512
 
3513
+ #: settings.php:2648
3514
  msgid "Delay Action"
3515
  msgstr ""
3516
 
3517
+ #: settings.php:2651
3518
  msgid ""
3519
  "Number of page views to delay action when ad blocking is detected. Leave "
3520
  "empty for no delay (action fires on first page view). Sets cookie."
3521
  msgstr ""
3522
 
3523
+ #: settings.php:2651
3524
  msgctxt "Delay Action for x "
3525
  msgid "page views"
3526
  msgstr ""
3527
 
3528
+ #: settings.php:2656
3529
  msgid "No Action Period"
3530
  msgstr ""
3531
 
3532
+ #: settings.php:2659
3533
  msgid ""
3534
  "Number of days to supress action when ad blocking is detected. Leave empty "
3535
  "for no no-action period (action fires always after defined page view delay). "
3536
  "Sets cookie."
3537
  msgstr ""
3538
 
3539
+ #: settings.php:2659
3540
  msgctxt "no action period"
3541
  msgid "days"
3542
  msgstr ""
3543
 
3544
+ #: settings.php:2664
3545
  msgid "Custom Selectors"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:2667
3549
  msgid ""
3550
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3551
  "blocking detection. Invisible element or element with zero height means ad "
3552
  "blocking is present."
3553
  msgstr ""
3554
 
3555
+ #: settings.php:2679
3556
  msgid "Redirection Page"
3557
  msgstr ""
3558
 
3559
+ #: settings.php:2691
3560
  msgid "Custom Url"
3561
  msgstr ""
3562
 
3563
+ #: settings.php:2696
3564
  msgid ""
3565
  "Static page for redirection when ad blocking is detected. For other pages "
3566
  "select Custom url and set it below."
3567
  msgstr ""
3568
 
3569
+ #: settings.php:2705
3570
  msgid "Custom Redirection Url"
3571
  msgstr ""
3572
 
3573
+ #: settings.php:2717
3574
  msgid "Message HTML code"
3575
  msgstr ""
3576
 
3577
+ #: settings.php:2730
3578
  msgid "Preview message when ad blocking is detected"
3579
  msgstr ""
3580
 
3581
+ #: settings.php:2759
3582
  msgid "Prevent visitors from closing the warning message"
3583
  msgstr ""
3584
 
3585
+ #: settings.php:2759
3586
  msgid "Undismissible Message"
3587
  msgstr ""
3588
 
3589
+ #: settings.php:2765
3590
  msgid "Not undismissible for"
3591
  msgstr ""
3592
 
3593
+ #: settings.php:2766
3594
  msgid "Users which can close the warning message."
3595
  msgstr ""
3596
 
3597
+ #: settings.php:2780
3598
  msgid ""
3599
  "Force showing admin toolbar for administrators when viewing site. Enable "
3600
  "this option when you are logged in as admin and you don't see admin toolbar."
3601
  msgstr ""
3602
 
3603
+ #: settings.php:2788
3604
  msgid "Disable header code (Header tab)"
3605
  msgstr ""
3606
 
3607
+ #: settings.php:2792
3608
  msgid "Disable footer code (Footer tab)"
3609
  msgstr ""
3610
 
3611
  #. translators: %s: Ad Inserter
3612
+ #: settings.php:2796
3613
  msgid "Disable %s JavaScript code"
3614
  msgstr ""
3615
 
3616
  #. translators: %s: Ad Inserter
3617
+ #: settings.php:2800
3618
  msgid "Disable %s CSS code"
3619
  msgstr ""
3620
 
3621
+ #: settings.php:2804
3622
  msgid ""
3623
  "Disable PHP code processing (in all blocks including header and footer code)"
3624
  msgstr ""
3625
 
3626
+ #: settings.php:2808
3627
  msgid "Disable insertion of all blocks"
3628
  msgstr ""
3629
 
3630
+ #: settings.php:2812
3631
  msgid "Disable insertions"
3632
  msgstr ""
3633
 
3634
  #. translators: %s: Ad Inserter
3635
+ #: settings.php:2824
3636
  msgid "%s CSS CODE"
3637
  msgstr ""
3638
 
3639
+ #: settings.php:2827
3640
  msgid "HEADER CODE"
3641
  msgstr ""
3642
 
3643
  #. translators: %s: PHP tags
3644
+ #: settings.php:2833
3645
  msgid "BLOCK PHP CODE"
3646
  msgstr ""
3647
 
3648
  #. translators: %s: Ad Inserter
3649
+ #: settings.php:2839
3650
  msgid "%s JS CODE"
3651
  msgstr ""
3652
 
3653
+ #: settings.php:2842
3654
  msgid "FOOTER CODE"
3655
  msgstr ""
3656
 
3657
+ #: settings.php:2851
3658
  msgid "Force showing admin toolbar when viewing site"
3659
  msgstr ""
3660
 
3661
+ #: settings.php:2858
3662
  msgid "Enable debugging functions in admin toolbar"
3663
  msgstr ""
3664
 
3665
+ #: settings.php:2860
3666
  msgid "Debugging functions in admin toolbar"
3667
  msgstr ""
3668
 
3669
+ #: settings.php:2867
3670
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3671
  msgstr ""
3672
 
3673
+ #: settings.php:2869
3674
  msgid "Debugging functions on mobile screens"
3675
  msgstr ""
3676
 
3677
+ #: settings.php:2876
3678
  msgid ""
3679
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3680
  "tags, processing) by url parameters for non-logged in users. Enable this "
3683
  "administrators debugging is always enabled."
3684
  msgstr ""
3685
 
3686
+ #: settings.php:2878
3687
  msgid "Remote debugging"
3688
  msgstr ""
3689
 
3690
+ #: settings.php:2885
3691
  msgid ""
3692
  "Disable translation to see original texts for the settings and messages in "
3693
  "English"
3694
  msgstr ""
3695
 
3696
+ #: settings.php:2887
3697
  msgid "Disable translation"
3698
  msgstr ""
3699
 
3700
+ #: settings.php:3257
3701
  msgid "Available positions for current theme"
3702
  msgstr ""
3703
 
3704
+ #: settings.php:3258
3705
  msgid "Error checking pages"
3706
  msgstr ""
3707
 
3708
+ #: settings.php:3261
3709
  msgid "Toggle theme checker for available positions for automatic insertion"
3710
  msgstr ""
3711
 
3712
+ #: settings.php:3261
3713
  msgctxt "Button"
3714
  msgid "Check"
3715
  msgstr ""
3716
 
3717
+ #: settings.php:3268
3718
  msgid "Position"
3719
  msgstr ""
3720
 
3721
+ #: settings.php:3273
3722
  msgid "Archive pages"
3723
  msgstr ""
3724
 
3725
+ #: settings.php:3332
3726
  msgid ""
3727
  "Position not available because output buffering (tab [*]) is not enabled"
3728
  msgstr ""
3729
 
3730
+ #: settings.php:3335 strings.php:226
3731
  msgid "Position not checked yet"
3732
  msgstr ""
3733
 
3734
+ #: settings.php:3371
3735
  msgid "Toggle active/all blocks"
3736
  msgstr ""
3737
 
3738
+ #: settings.php:3375 strings.php:213
3739
  msgid "Rearrange block order"
3740
  msgstr ""
3741
 
3742
+ #: settings.php:3380
3743
  msgid "Save new block order"
3744
  msgstr ""
3745
 
3746
+ #: settings.php:3406
 
 
 
 
3747
  msgid "Toggle active/all ad units"
3748
  msgstr ""
3749
 
3750
+ #: settings.php:3410
3751
  msgid "Reload AdSense ad units"
3752
  msgstr ""
3753
 
3754
+ #: settings.php:3414
3755
  msgid "Clear authorization to access AdSense account"
3756
  msgstr ""
3757
 
3758
+ #: settings.php:3418 settings.php:4214 settings.php:4281 strings.php:221
3759
  msgid "Google AdSense Homepage"
3760
  msgstr ""
3761
 
3762
+ #: settings.php:3434
3763
  msgid "Switch to physical ads.txt file"
3764
  msgstr ""
3765
 
3766
+ #: settings.php:3435
3767
  msgid "Switch to virtual ads.txt file"
3768
  msgstr ""
3769
 
3770
  #. translators: %s: ads.txt
3771
+ #: settings.php:3445
3772
  msgid "Open %s"
3773
  msgstr ""
3774
 
3775
+ #: settings.php:3453
3776
  msgid "Reload ads.txt file"
3777
  msgstr ""
3778
 
3779
+ #: settings.php:3457 settings.php:4341
3780
  msgid "Save"
3781
  msgstr ""
3782
 
3783
  #. translators: %s: Ad Inserter
3784
+ #: settings.php:3632
3785
  msgid "ads.txt file: %s virtual ads.txt file"
3786
  msgstr ""
3787
 
3788
+ #: settings.php:3637 settings.php:3657 strings.php:205
3789
  msgid "Warning"
3790
  msgstr ""
3791
 
3792
  #. translators: %s: Ad Inserter
3793
+ #: settings.php:3637
3794
  msgid "%s virtual file ads.txt not found"
3795
  msgstr ""
3796
 
3797
+ #: settings.php:3645
3798
  msgid "IMPORTANT"
3799
  msgstr ""
3800
 
3801
+ #: settings.php:3645
3802
  msgid "ads.txt file must be placed on the root domain"
3803
  msgstr ""
3804
 
3805
+ #: settings.php:3650
3806
+ msgid "ads.txt file"
3807
  msgstr ""
3808
 
3809
+ #: settings.php:3657
 
 
 
 
 
3810
  msgid "file %s not found"
3811
  msgstr ""
3812
 
3813
+ #: settings.php:3667
3814
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3815
  msgstr ""
3816
 
3817
  #. translators: %s: Ad Inserter
3818
+ #: settings.php:3673
3819
  msgid "%s virtual ads.txt file"
3820
  msgstr ""
3821
 
3822
+ #: settings.php:3695
3823
  msgid "Advertising system"
3824
  msgstr ""
3825
 
3826
+ #: settings.php:3696
3827
  msgid "Account ID"
3828
  msgstr ""
3829
 
3830
+ #: settings.php:3698
3831
  msgid "Certification authority ID"
3832
  msgstr ""
3833
 
3834
+ #: settings.php:3713
3835
  msgid "Account ID found in block and present in ads.txt"
3836
  msgstr ""
3837
 
3838
+ #: settings.php:3717
3839
  msgid "Account ID found in block but not present in ads.txt"
3840
  msgstr ""
3841
 
3842
+ #: settings.php:4004
3843
  msgid "Preview block"
3844
  msgstr ""
3845
 
3846
+ #: settings.php:4013
3847
  msgid "Insertion disabled"
3848
  msgstr ""
3849
 
3850
+ #: settings.php:4043
3851
  msgid "Automatic insertion"
3852
  msgstr ""
3853
 
3854
  #. translators: %s HTML tags
3855
+ #: settings.php:4044 settings.php:4950
3856
  msgid "PHP code processing"
3857
  msgstr ""
3858
 
3859
+ #: settings.php:4046
3860
  msgid "Device detection"
3861
  msgstr ""
3862
 
3863
+ #: settings.php:4059
3864
  msgid "Widget positions"
3865
  msgstr ""
3866
 
3867
+ #: settings.php:4125
3868
  msgid "Ad unit"
3869
  msgstr ""
3870
 
3871
+ #: settings.php:4127
3872
  msgid "Slot ID"
3873
  msgstr ""
3874
 
3875
+ #: settings.php:4153
3876
  msgid "Copy AdSense code"
3877
  msgstr ""
3878
 
3879
+ #: settings.php:4156
3880
  msgid "Preview AdSense ad"
3881
  msgstr ""
3882
 
3883
+ #: settings.php:4159
3884
  msgid "Get AdSense code"
3885
  msgstr ""
3886
 
3887
  #. translators: %s: HTML tags
3888
+ #: settings.php:4191
3889
  msgid ""
3890
  "Please %s clear authorization %s with the button %s above and once again "
3891
  "authorize access to your AdSense account."
3892
  msgstr ""
3893
 
3894
+ #: settings.php:4210
3895
  msgid "AdSense Integration"
3896
  msgstr ""
3897
 
3898
+ #: settings.php:4212
3899
  msgid "AdSense Integration - Step 2"
3900
  msgstr ""
3901
 
3902
  #. translators: %s: HTML tags
3903
+ #: settings.php:4218
3904
  msgid ""
3905
  "Authorize %s to access your AdSense account. Click on the %s Get "
3906
  "Authorization Code %s button to open a new window where you can allow "
3909
  msgstr ""
3910
 
3911
  #. translators: %s: HTML tags
3912
+ #: settings.php:4225
3913
  msgid ""
3914
  "If you get error, can't access ad units or would like to use own Google API "
3915
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3917
  msgstr ""
3918
 
3919
  #. translators: %s: HTML tags
3920
+ #: settings.php:4227
3921
  msgid ""
3922
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3923
  "Authorization Code %s button to open a new window where you can allow "
3926
  msgstr ""
3927
 
3928
  #. translators: %s: HTML tags
3929
+ #: settings.php:4234
3930
  msgid ""
3931
  "If you get error %s invalid client %s click on the button %s Clear and "
3932
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3933
  msgstr ""
3934
 
3935
+ #: settings.php:4245
3936
  msgid "Get Authorization Code"
3937
  msgstr ""
3938
 
3939
+ #: settings.php:4248
3940
  msgid "Enter Authorization Code"
3941
  msgstr ""
3942
 
3943
+ #: settings.php:4258
3944
  msgid "Use own API IDs"
3945
  msgstr ""
3946
 
3947
+ #: settings.php:4260
3948
  msgid "Clear and return to Step 1"
3949
  msgstr ""
3950
 
3951
+ #: settings.php:4264
3952
  msgid "Authorize"
3953
  msgstr ""
3954
 
3955
+ #: settings.php:4280
3956
  msgid "AdSense Integration - Step 1"
3957
  msgstr ""
3958
 
3959
  #. translators: %s: Ad Inserter
3960
+ #: settings.php:4284
3961
  msgid ""
3962
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3963
  "To do this you need to authorize %s to access your AdSense account. The "
3966
  msgstr ""
3967
 
3968
  #. translators: %s: HTML tags
3969
+ #: settings.php:4293
3970
  msgid "Go to %s Google APIs and Services console %s"
3971
  msgstr ""
3972
 
3973
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3974
+ #: settings.php:4294
3975
  msgid ""
3976
  "Create %1$s project - if the project and IDs are already created click on "
3977
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3978
  msgstr ""
3979
 
3980
  #. translators: %s: HTML tags
3981
+ #: settings.php:4295
3982
  msgid ""
3983
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3984
  "create a new project"
3985
  msgstr ""
3986
 
3987
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3988
+ #: settings.php:4296
3989
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3990
  msgstr ""
3991
 
3992
  #. translators: %s: HTML tags
3993
+ #: settings.php:4297
3994
  msgid ""
3995
  "Click on project selection, wait for the project to be created and then and "
3996
  "select %s as the current project"
3997
  msgstr ""
3998
 
3999
  #. translators: %s: HTML tags
4000
+ #: settings.php:4298
4001
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4002
  msgstr ""
4003
 
4004
  #. translators: %s: HTML tags
4005
+ #: settings.php:4299
4006
  msgid "Search for adsense and enable %s"
4007
  msgstr ""
4008
 
4009
  #. translators: %s: HTML tags
4010
+ #: settings.php:4300
4011
  msgid "Click on %s CREATE CREDENTIALS %s"
4012
  msgstr ""
4013
 
4014
  #. translators: %s: HTML tags
4015
+ #: settings.php:4301
4016
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4017
  msgstr ""
4018
 
4019
  #. translators: %s: HTML tags
4020
+ #: settings.php:4302
4021
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4022
  msgstr ""
4023
 
4024
  #. translators: %s: HTML tags
4025
+ #: settings.php:4303
4026
  msgid "Click on %s What credentials do I need? %s"
4027
  msgstr ""
4028
 
4029
  #. translators: %s: HTML tags
4030
+ #: settings.php:4304
4031
  msgid ""
4032
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4033
  "Ad Inserter client %s"
4034
  msgstr ""
4035
 
4036
  #. translators: %s: HTML tags
4037
+ #: settings.php:4305
4038
  msgid ""
4039
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4040
  "enter %s"
4041
  msgstr ""
4042
 
4043
  #. translators: %s: HTML tags
4044
+ #: settings.php:4306
4045
  msgid "Click on %s Continue %s"
4046
  msgstr ""
4047
 
4048
  #. translators: %s: HTML tags
4049
+ #: settings.php:4307
4050
  msgid "Click on %s Done %s"
4051
  msgstr ""
4052
 
4053
  #. translators: %s: HTML tags
4054
+ #: settings.php:4308
4055
  msgid ""
4056
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4057
  "secret %s"
4058
  msgstr ""
4059
 
4060
+ #: settings.php:4309
4061
  msgid "Copy them to the appropriate fields below"
4062
  msgstr ""
4063
 
4064
+ #: settings.php:4315
4065
  msgid "Client ID"
4066
  msgstr ""
4067
 
4068
+ #: settings.php:4318
4069
  msgid "Enter Client ID"
4070
  msgstr ""
4071
 
4072
+ #: settings.php:4323
4073
  msgid "Client secret"
4074
  msgstr ""
4075
 
4076
+ #: settings.php:4326
4077
  msgid "Enter Client secret"
4078
  msgstr ""
4079
 
4080
+ #: settings.php:4336
4081
  msgid "Use default API IDs"
4082
  msgstr ""
4083
 
4084
+ #: settings.php:4617 settings.php:4630 settings.php:4643 settings.php:4658
4085
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4086
  msgstr ""
4087
 
4088
+ #: settings.php:4622 settings.php:4635 settings.php:4648 settings.php:4663
4089
+ #: settings.php:4843 settings.php:4847 settings.php:4865 settings.php:4869
4090
+ #: settings.php:4877 settings.php:4880 settings.php:4886 settings.php:4898
4091
  msgid "Looking for AdSense alternative?"
4092
  msgstr ""
4093
 
4094
+ #: settings.php:4674
4095
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4096
  msgstr ""
4097
 
4098
+ #: settings.php:4679 settings.php:4845 settings.php:4849 settings.php:4857
4099
+ #: settings.php:4883
4100
  msgid "Use Infolinks ads with Adsense to earn more"
4101
  msgstr ""
4102
 
4103
+ #: settings.php:4698 settings.php:4736
4104
  msgid "Support plugin development"
4105
  msgstr ""
4106
 
4107
+ #: settings.php:4699 settings.php:4737
4108
  msgid ""
4109
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4110
  "reviewing the plugin on WordPres"
4111
  msgstr ""
4112
 
4113
+ #: settings.php:4699
4114
  msgctxt "Review ad Inserter"
4115
  msgid "Review"
4116
  msgstr ""
4117
 
4118
+ #: settings.php:4700
4119
  msgid ""
4120
  "Support free Ad Inserter development. If you are making money with Ad "
4121
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4122
  "you!"
4123
  msgstr ""
4124
 
4125
+ #: settings.php:4700
4126
  msgid "Donate"
4127
  msgstr ""
4128
 
4129
+ #: settings.php:4707 settings.php:4752
4130
  msgid "Average rating of the plugin - Thank you!"
4131
  msgstr ""
4132
 
4133
  #. translators: %s: Ad Inserter, HTML tags
4134
+ #: settings.php:4718
4135
  msgid ""
4136
  "You've been using %s for a while now, and I hope you're happy with it. "
4137
  "Positive %s reviews %s are a great way to show your appreciation for my "
4140
  "your website. %s Thank you!"
4141
  msgstr ""
4142
 
4143
+ #: settings.php:4737
4144
  msgid "Review"
4145
  msgstr ""
4146
 
4147
+ #: settings.php:4741
4148
  msgid "Ad Inserter on Twitter"
4149
  msgstr ""
4150
 
4151
+ #: settings.php:4742
4152
  msgid "Ad Inserter on Facebook"
4153
  msgstr ""
4154
 
4155
+ #: settings.php:4745
4156
  msgid "Follow Ad Inserter"
4157
  msgstr ""
4158
 
4159
  #. translators: %s: HTML tags
4160
+ #: settings.php:4772
4161
  msgid ""
4162
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4163
  "and %s Common Settings %s pages"
4164
  msgstr ""
4165
 
4166
  #. translators: %s: HTML tags
4167
+ #: settings.php:4784
4168
  msgid ""
4169
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4170
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4172
  msgstr ""
4173
 
4174
  #. translators: %s: HTML tags
4175
+ #: settings.php:4805
4176
  msgid ""
4177
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4178
  "purchase you refer to us"
4179
  msgstr ""
4180
 
4181
  #. translators: %s: HTML tags
4182
+ #: settings.php:4812
4183
  msgid ""
4184
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4185
  "diagnose and fix the problem."
4186
  msgstr ""
4187
 
4188
  #. translators: %s: HTML tags
4189
+ #: settings.php:4816
4190
  msgid ""
4191
  "If you need any kind of help or support, please do not hesitate to open a "
4192
  "thread on the %s support forum. %s"
4193
  msgstr ""
4194
 
4195
+ #: settings.php:4861 settings.php:4902
4196
  msgid "A/B testing - Track ad impressions and clicks"
4197
  msgstr ""
4198
 
4199
+ #: settings.php:4894 settings.php:4906
4200
  msgid "Code preview with visual CSS editor"
4201
  msgstr ""
4202
 
4203
+ #: settings.php:4914
4204
  msgid "Looking for Pro Ad Management plugin?"
4205
  msgstr ""
4206
 
4207
+ #: settings.php:4915
4208
  msgid "To Optimally Monetize your WordPress website?"
4209
  msgstr ""
4210
 
4211
  #. translators: %s HTML tags
4212
+ #: settings.php:4918
4213
  msgid "%s AdSense Integration %s"
4214
  msgstr ""
4215
 
4216
  #. translators: %s HTML tags
4217
+ #: settings.php:4919
4218
  msgid "Syntax highlighting %s editor %s"
4219
  msgstr ""
4220
 
4221
  #. translators: %s HTML tags
4222
+ #: settings.php:4920
4223
  msgid "%s Code preview %s with visual CSS editor"
4224
  msgstr ""
4225
 
4226
  #. translators: %s HTML tags
4227
+ #: settings.php:4921
4228
  msgid "Simple user interface - all settings on a single page"
4229
  msgstr ""
4230
 
4231
  #. translators: %s HTML tags
4232
+ #: settings.php:4922
4233
  msgid ""
4234
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4235
  "image / excerpt"
4236
  msgstr ""
4237
 
4238
  #. translators: %s HTML tags
4239
+ #: settings.php:4923
4240
  msgid "%s Automatic insertion %s between posts on blog pages"
4241
  msgstr ""
4242
 
4243
  #. translators: %s HTML tags
4244
+ #: settings.php:4924
4245
  msgid "%s Automatic insertion %s before, between and after comments"
4246
  msgstr ""
4247
 
4248
  #. translators: %s HTML tags
4249
+ #: settings.php:4925
4250
  msgid "%s Automatic insertion %s after %s or before %s tag"
4251
  msgstr ""
4252
 
4253
  #. translators: %s HTML tags
4254
+ #: settings.php:4926
4255
  msgid "Automatic insertion at %s custom hook positions %s"
4256
  msgstr ""
4257
 
4258
  #. translators: %s HTML tags
4259
+ #: settings.php:4927
4260
  msgid ""
4261
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4262
  "selectors)"
4263
  msgstr ""
4264
 
4265
  #. translators: %s HTML tags
4266
+ #: settings.php:4928
4267
  msgid "%s Insertion exceptions %s for individual posts and pages"
4268
  msgstr ""
4269
 
4270
  #. translators: %s HTML tags
4271
+ #: settings.php:4929
4272
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4273
  msgstr ""
4274
 
4275
  #. translators: %s HTML tags
4276
+ #: settings.php:4930
4277
  msgid ""
4278
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4279
  "scrolls)"
4280
  msgstr ""
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4931
4284
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4285
  msgstr ""
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4932
4289
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4290
  msgstr ""
4291
 
4292
  #. translators: %s HTML tags
4293
+ #: settings.php:4933
4294
  msgid ""
4295
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4296
  "visible)"
4297
  msgstr ""
4298
 
4299
  #. translators: %s HTML tags
4300
+ #: settings.php:4934
4301
  msgid ""
4302
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4303
  msgstr ""
4304
 
4305
  #. translators: %s HTML tags
4306
+ #: settings.php:4935
4307
  msgid "Block %s alignment and style %s customizations"
4308
  msgstr ""
4309
 
4310
  #. translators: %s HTML tags
4311
+ #: settings.php:4936
4312
  msgid ""
4313
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4314
  "TOS)"
4315
  msgstr ""
4316
 
4317
  #. translators: %s HTML tags
4318
+ #: settings.php:4937
4319
  msgid ""
4320
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4321
  "feeds"
4322
  msgstr ""
4323
 
4324
  #. translators: %s HTML tags
4325
+ #: settings.php:4938
4326
  msgid "%s Ad rotation %s (works also with caching)"
4327
  msgstr ""
4328
 
4329
  #. translators: %s HTML tags
4330
+ #: settings.php:4939
4331
  msgid "Create, edit and check %s ads.txt %s file"
4332
  msgstr ""
4333
 
4334
  #. translators: %s HTML tags
4335
+ #: settings.php:4940
4336
  msgid ""
4337
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4338
  "AdSense)"
4339
  msgstr ""
4340
 
4341
  #. translators: %s HTML tags
4342
+ #: settings.php:4941
4343
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4344
  msgstr ""
4345
 
4346
  #. translators: %s HTML tags
4347
+ #: settings.php:4942
4348
  msgid "%s Public web reports %s for clients, export to PDF"
4349
  msgstr ""
4350
 
4351
  #. translators: %s HTML tags
4352
+ #: settings.php:4943
4353
  msgid "Support for %s A/B testing %s"
4354
  msgstr ""
4355
 
4356
  #. translators: %s HTML tags
4357
+ #: settings.php:4944
4358
+ msgid "Frequency capping - %s limit impressions or clicks %s"
4359
+ msgstr ""
4360
+
4361
+ #. translators: %s HTML tags
4362
+ #: settings.php:4945
4363
+ msgid "Click fraud %s protection %s"
4364
+ msgstr ""
4365
+
4366
+ #. translators: %s HTML tags
4367
+ #: settings.php:4946
4368
  msgid "Support for %s lazy loading %s"
4369
  msgstr ""
4370
 
4371
  #. translators: %s HTML tags
4372
+ #: settings.php:4947
4373
  msgid "Support for ads on %s AMP pages %s"
4374
  msgstr ""
4375
 
4376
  #. translators: %s HTML tags
4377
+ #: settings.php:4948
4378
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4379
  msgstr ""
4380
 
4381
  #. translators: %s HTML tags
4382
+ #: settings.php:4949
4383
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4384
  msgstr ""
4385
 
4386
  #. translators: %s HTML tags
4387
+ #: settings.php:4951
4388
  msgid "%s Banner %s code generator"
4389
  msgstr ""
4390
 
4391
  #. translators: %s HTML tags
4392
+ #: settings.php:4952
4393
  msgid "Support for %s header and footer %s code"
4394
  msgstr ""
4395
 
4396
  #. translators: %s HTML tags
4397
+ #: settings.php:4953
4398
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4399
  msgstr ""
4400
 
4401
  #. translators: %s HTML tags
4402
+ #: settings.php:4954
4403
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4404
  msgstr ""
4405
 
4406
  #. translators: %s HTML tags
4407
+ #: settings.php:4955
4408
  msgid "Client-side %s mobile device detection %s (works with caching)"
4409
  msgstr ""
4410
 
4411
  #. translators: %s HTML tags
4412
+ #: settings.php:4956
4413
  msgid ""
4414
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4415
  "protection"
4416
  msgstr ""
4417
 
4418
  #. translators: %s HTML tags
4419
+ #: settings.php:4957
4420
  msgid "%s Ad blocking statistics %s"
4421
  msgstr ""
4422
 
4423
  #. translators: %s HTML tags
4424
+ #: settings.php:4958
4425
  msgid ""
4426
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4427
  "referers"
4428
  msgstr ""
4429
 
4430
  #. translators: %s HTML tags
4431
+ #: settings.php:4959
4432
  msgid ""
4433
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4434
  msgstr ""
4435
 
4436
  #. translators: %s HTML tags
4437
+ #: settings.php:4960
4438
  msgid "%s Multisite options %s to limit settings on the sites"
4439
  msgstr ""
4440
 
4441
  #. translators: %s HTML tags
4442
+ #: settings.php:4961
4443
  msgid "%s Import/Export %s block or plugin settings"
4444
  msgstr ""
4445
 
4446
  #. translators: %s HTML tags
4447
+ #: settings.php:4962
4448
  msgid "%s Insertion scheduling %s with fallback option"
4449
  msgstr ""
4450
 
4451
  #. translators: %s HTML tags
4452
+ #: settings.php:4963
4453
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4454
  msgstr ""
4455
 
4456
  #. translators: %s HTML tags
4457
+ #: settings.php:4964
4458
  msgid "Simple troubleshooting with many %s debugging functions %s"
4459
  msgstr ""
4460
 
4461
  #. translators: %s HTML tags
4462
+ #: settings.php:4965
4463
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4464
  msgstr ""
4465
 
4466
  #. translators: %s HTML tags
4467
+ #: settings.php:4966
4468
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4469
  msgstr ""
4470
 
4471
  #. translators: %s HTML tags
4472
+ #: settings.php:4967
4473
  msgid ""
4474
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4475
  msgstr ""
4476
 
4477
  #. translators: %s HTML tags
4478
+ #: settings.php:4968
4479
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4480
  msgstr ""
4481
 
4482
  #. translators: %s HTML tags
4483
+ #: settings.php:4969
4484
  msgid "No ads on the settings page"
4485
  msgstr ""
4486
 
4487
  #. translators: %s HTML tags
4488
+ #: settings.php:4970
4489
  msgid "Premium support"
4490
  msgstr ""
4491
 
4492
  #. translators: %s HTML tags
4493
+ #: settings.php:4973
4494
  msgid ""
4495
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4496
  "website with many advertising features to automatically insert adverts on "
4505
  msgstr ""
4506
 
4507
  #. translators: %s HTML tags
4508
+ #: settings.php:4986
4509
  msgid "Looking for %s Pro Ad Management plugin? %s"
4510
  msgstr ""
4511
 
4512
  #. translators: %s HTML tags
4513
+ #: settings.php:4991
4514
  msgid "Ads between posts"
4515
  msgstr ""
4516
 
4517
  #. translators: %s HTML tags
4518
+ #: settings.php:4992
4519
  msgid "Ads between comments"
4520
  msgstr ""
4521
 
4522
  #. translators: %s HTML tags
4523
+ #: settings.php:4993
4524
  msgid "Support via email"
4525
  msgstr ""
4526
 
4527
  #. translators: %s HTML tags
4528
+ #: settings.php:4999
4529
  msgid "%s Sticky positions %s"
4530
  msgstr ""
4531
 
4532
  #. translators: %s HTML tags
4533
+ #: settings.php:5000
4534
  msgid "%s Limit insertions %s"
4535
  msgstr ""
4536
 
4537
  #. translators: %s HTML tags
4538
+ #: settings.php:5001
4539
  msgid "%s Clearance %s options"
4540
  msgstr ""
4541
 
4542
  #. translators: %s HTML tags
4543
+ #: settings.php:5007
4544
  msgid "Ad rotation"
4545
  msgstr ""
4546
 
4547
  #. translators: %s HTML tags
4548
+ #: settings.php:5008
4549
  msgid "%s A/B testing %s"
4550
  msgstr ""
4551
 
4552
  #. translators: %s HTML tags
4553
+ #: settings.php:5009
4554
  msgid "%s Ad tracking %s"
4555
  msgstr ""
4556
 
4557
  #. translators: %s HTML tags
4558
+ #: settings.php:5015
4559
  msgid "Support for %s AMP pages %s"
4560
  msgstr ""
4561
 
4562
  #. translators: %s HTML tags
4563
+ #: settings.php:5016
4564
  msgid "%s Ad blocking detection %s"
4565
  msgstr ""
4566
 
4567
  #. translators: %s HTML tags
4568
+ #: settings.php:5017
4569
  msgid "%s Mobile device detection %s"
4570
  msgstr ""
4571
 
4572
  #. translators: %s HTML tags
4573
+ #: settings.php:5024
4574
  msgid "64 code blocks"
4575
  msgstr ""
4576
 
4577
  #. translators: %s HTML tags
4578
+ #: settings.php:5025
4579
  msgid "%s GEO targeting %s"
4580
  msgstr ""
4581
 
4582
  #. translators: %s HTML tags
4583
+ #: settings.php:5026
4584
  msgid "%s Scheduling %s"
4585
  msgstr ""
4586
 
4727
  msgstr ""
4728
 
4729
  #: strings.php:51
4730
+ msgid "Do not count"
4731
+ msgstr ""
4732
+
4733
+ #: strings.php:52
4734
+ msgid "Count only"
4735
+ msgstr ""
4736
+
4737
+ #: strings.php:54
4738
  msgctxt "insert for"
4739
  msgid "all users"
4740
  msgstr ""
4741
 
4742
+ #: strings.php:55
4743
  msgctxt "insert for"
4744
  msgid "logged in users"
4745
  msgstr ""
4746
 
4747
+ #: strings.php:56
4748
  msgctxt "insert for"
4749
  msgid "not logged in users"
4750
  msgstr ""
4751
 
4752
+ #: strings.php:57
4753
  msgctxt "insert for"
4754
  msgid "administrators"
4755
  msgstr ""
4756
 
4757
+ #: strings.php:59
4758
  msgid "Black list"
4759
  msgstr ""
4760
 
4761
+ #: strings.php:60
4762
  msgid "White list"
4763
  msgstr ""
4764
 
4765
+ #: strings.php:62
4766
  msgctxt "alignment"
4767
  msgid "Default"
4768
  msgstr ""
4769
 
4770
+ #: strings.php:63
4771
  msgctxt "alignment"
4772
  msgid "Left"
4773
  msgstr ""
4774
 
4775
+ #: strings.php:64
4776
  msgctxt "alignment"
4777
  msgid "Right"
4778
  msgstr ""
4779
 
4780
+ #: strings.php:65
4781
  msgctxt "alignment"
4782
  msgid "Center"
4783
  msgstr ""
4784
 
4785
+ #: strings.php:66
4786
  msgctxt "alignment"
4787
  msgid "Float left"
4788
  msgstr ""
4789
 
4790
+ #: strings.php:67
4791
  msgctxt "alignment"
4792
  msgid "Float right"
4793
  msgstr ""
4794
 
4795
+ #: strings.php:68
4796
  msgctxt "alignment"
4797
  msgid "No wrapping"
4798
  msgstr ""
4799
 
4800
+ #: strings.php:69
4801
  msgid "Custom CSS"
4802
  msgstr ""
4803
 
4804
+ #: strings.php:70
4805
  msgid "Sticky left"
4806
  msgstr ""
4807
 
4808
+ #: strings.php:71
4809
  msgid "Sticky right"
4810
  msgstr ""
4811
 
4812
+ #: strings.php:72
4813
  msgid "Sticky top"
4814
  msgstr ""
4815
 
4816
+ #: strings.php:73
4817
  msgid "Sticky bottom"
4818
  msgstr ""
4819
 
4820
+ #: strings.php:74
4821
  msgctxt "alignment"
4822
  msgid "Sticky"
4823
  msgstr ""
4824
 
4825
+ #: strings.php:76
4826
  msgctxt "using"
4827
  msgid "auto counter"
4828
  msgstr ""
4829
 
4830
+ #: strings.php:77
4831
  msgctxt "using"
4832
  msgid "PHP function calls counter"
4833
  msgstr ""
4834
 
4835
+ #: strings.php:78
4836
  msgctxt "using"
4837
  msgid "content processing counter"
4838
  msgstr ""
4839
 
4840
+ #: strings.php:79
4841
  msgctxt "using"
4842
  msgid "excerpt processing counter"
4843
  msgstr ""
4844
 
4845
+ #: strings.php:80
4846
  msgctxt "using"
4847
  msgid "before post processing counter"
4848
  msgstr ""
4849
 
4850
+ #: strings.php:81
4851
  msgctxt "using"
4852
  msgid "after post processing counter"
4853
  msgstr ""
4854
 
4855
+ #: strings.php:82
4856
  msgctxt "using"
4857
  msgid "widget drawing counter"
4858
  msgstr ""
4859
 
4860
+ #: strings.php:83
4861
  msgctxt "using"
4862
  msgid "subpages counter"
4863
  msgstr ""
4864
 
4865
+ #: strings.php:84
4866
  msgctxt "using"
4867
  msgid "posts counter"
4868
  msgstr ""
4869
 
4870
+ #: strings.php:85
4871
  msgctxt "using"
4872
  msgid "paragraphs counter"
4873
  msgstr ""
4874
 
4875
+ #: strings.php:86
4876
  msgctxt "using"
4877
  msgid "comments counter"
4878
  msgstr ""
4879
 
4880
+ #: strings.php:87
4881
  msgctxt "using"
4882
  msgid "images counter"
4883
  msgstr ""
4884
 
4885
+ #: strings.php:90
4886
  msgctxt "posts"
4887
  msgid "Individually disabled"
4888
  msgstr ""
4889
 
4890
+ #: strings.php:91
4891
  msgctxt "posts"
4892
  msgid "Individually enabled"
4893
  msgstr ""
4894
 
4895
+ #: strings.php:93
4896
  msgctxt "static pages"
4897
  msgid "Individually disabled"
4898
  msgstr ""
4899
 
4900
+ #: strings.php:94
4901
  msgctxt "static pages"
4902
  msgid "Individually enabled"
4903
  msgstr ""
4904
 
4905
+ #: strings.php:96
4906
  msgid "Server-side"
4907
  msgstr ""
4908
 
4909
+ #: strings.php:97
4910
  msgctxt "Insertion"
4911
  msgid "Client-side"
4912
  msgstr ""
4913
 
4914
+ #: strings.php:98
4915
  msgctxt "Dynamic blocks"
4916
  msgid "Client-side show"
4917
  msgstr ""
4918
 
4919
+ #: strings.php:99
4920
  msgctxt "Dynamic blocks"
4921
  msgid "Client-side insert"
4922
  msgstr ""
4923
 
4924
+ #: strings.php:100
4925
  msgctxt "Insertion"
4926
  msgid "Server-side using W3 Total Cache"
4927
  msgstr ""
4928
 
4929
+ #: strings.php:101
4930
  msgctxt "Insertion"
4931
  msgid "Client-side when DOM ready"
4932
  msgstr ""
4933
 
4934
+ #: strings.php:106
4935
  msgid "Replace element"
4936
  msgstr ""
4937
 
4938
+ #: strings.php:108
4939
  msgid "desktop devices"
4940
  msgstr ""
4941
 
4942
+ #: strings.php:109
4943
  msgid "mobile devices"
4944
  msgstr ""
4945
 
4946
+ #: strings.php:110
4947
  msgid "tablet devices"
4948
  msgstr ""
4949
 
4950
+ #: strings.php:111
4951
  msgid "phone devices"
4952
  msgstr ""
4953
 
4954
+ #: strings.php:112
4955
  msgid "desktop and tablet devices"
4956
  msgstr ""
4957
 
4958
+ #: strings.php:113
4959
  msgid "desktop and phone devices"
4960
  msgstr ""
4961
 
4962
+ #: strings.php:115
4963
  msgid "Stick to the left"
4964
  msgstr ""
4965
 
4966
+ #: strings.php:116
4967
  msgid "Stick to the content left"
4968
  msgstr ""
4969
 
4970
+ #: strings.php:117
4971
  msgid "Stick to the content right"
4972
  msgstr ""
4973
 
4974
+ #: strings.php:118
4975
  msgid "Stick to the right"
4976
  msgstr ""
4977
 
4978
+ #: strings.php:120
4979
  msgid "Stick to the top"
4980
  msgstr ""
4981
 
4982
+ #: strings.php:121
4983
  msgid "Scroll with the content"
4984
  msgstr ""
4985
 
4986
+ #: strings.php:122
4987
  msgid "Stick to the bottom"
4988
  msgstr ""
4989
 
4990
+ #: strings.php:124
4991
  msgid "Fade"
4992
  msgstr ""
4993
 
4994
+ #: strings.php:125
4995
  msgid "Slide"
4996
  msgstr ""
4997
 
4998
+ #: strings.php:126
4999
  msgid "Slide and Fade"
5000
  msgstr ""
5001
 
5002
+ #: strings.php:127
5003
  msgid "Flip"
5004
  msgstr ""
5005
 
5006
+ #: strings.php:128
5007
  msgid "Zoom In"
5008
  msgstr ""
5009
 
5010
+ #: strings.php:129
5011
  msgid "Zoom Out"
5012
  msgstr ""
5013
 
5014
+ #: strings.php:130
5015
  msgid "Turn"
5016
  msgstr ""
5017
 
5018
+ #: strings.php:132
5019
  msgid "Page loaded"
5020
  msgstr ""
5021
 
5022
+ #: strings.php:133
5023
  msgid "Page scrolled (%)"
5024
  msgstr ""
5025
 
5026
+ #: strings.php:134
5027
  msgid "Page scrolled (px)"
5028
  msgstr ""
5029
 
5030
+ #: strings.php:135
5031
  msgid "Element visible"
5032
  msgstr ""
5033
 
5034
+ #: strings.php:137
5035
  msgid "Insert immediately"
5036
  msgstr ""
5037
 
5038
+ #: strings.php:138
5039
  msgid "Delay insertion"
5040
  msgstr ""
5041
 
5042
+ #: strings.php:139
5043
  msgid "Insert between dates"
5044
  msgstr ""
5045
 
5046
+ #: strings.php:140
5047
  msgid "Insert outside dates"
5048
  msgstr ""
5049
 
5050
+ #: strings.php:141
5051
  msgid "Insert only"
5052
  msgstr ""
5053
 
5054
+ #: strings.php:142
5055
  msgid "Insert for posts published between dates"
5056
  msgstr ""
5057
 
5058
+ #: strings.php:143
5059
  msgid "Insert for posts published outside dates"
5060
  msgstr ""
5061
 
5062
+ #: strings.php:145
5063
  msgctxt "functions"
5064
  msgid "Standard"
5065
  msgstr ""
5066
 
5067
+ #: strings.php:146
5068
  msgctxt "detection"
5069
  msgid "Standard"
5070
  msgstr ""
5071
 
5072
+ #: strings.php:147
5073
  msgctxt "functions"
5074
  msgid "Multibyte"
5075
  msgstr ""
5076
 
5077
+ #: strings.php:149
5078
  msgctxt "action"
5079
  msgid "None"
5080
  msgstr ""
5081
 
5082
+ #: strings.php:150
5083
  msgctxt "button"
5084
  msgid "None"
5085
  msgstr ""
5086
 
5087
+ #: strings.php:151
5088
  msgid "Popup Message"
5089
  msgstr ""
5090
 
5091
+ #: strings.php:152
5092
  msgid "Redirection"
5093
  msgstr ""
5094
 
5095
+ #: strings.php:154
5096
  msgid "Do nothnig"
5097
  msgstr ""
5098
 
5099
+ #: strings.php:156
5100
  msgctxt "Action when ad blocking detected"
5101
  msgid "Show"
5102
  msgstr ""
5103
 
5104
+ #: strings.php:157
5105
  msgctxt "Action when ad blocking detected"
5106
  msgid "Hide"
5107
  msgstr ""
5108
 
5109
+ #: strings.php:159
5110
  msgctxt "tracking"
5111
  msgid "Internal"
5112
  msgstr ""
5113
 
5114
+ #: strings.php:160
5115
  msgctxt "detection"
5116
  msgid "Advanced"
5117
  msgstr ""
5118
 
5119
+ #: strings.php:163
5120
  msgid "Top right"
5121
  msgstr ""
5122
 
5123
+ #: strings.php:164
5124
  msgid "Top left"
5125
  msgstr ""
5126
 
5127
+ #: strings.php:165
5128
  msgid "Bottom right"
5129
  msgstr ""
5130
 
5131
+ #: strings.php:166
5132
  msgid "Bottom left"
5133
  msgstr ""
5134
 
5135
+ #: strings.php:168
5136
  msgctxt "AdSense Ad Type"
5137
  msgid "Standard"
5138
  msgstr ""
5139
 
5140
+ #: strings.php:169
5141
  msgctxt "AdSense Ad Type"
5142
  msgid "Link"
5143
  msgstr ""
5144
 
5145
+ #: strings.php:170
5146
  msgctxt "AdSense Ad Type"
5147
  msgid "In-article"
5148
  msgstr ""
5149
 
5150
+ #: strings.php:171
5151
  msgctxt "AdSense Ad Type"
5152
  msgid "In-feed"
5153
  msgstr ""
5154
 
5155
+ #: strings.php:172
5156
  msgctxt "AdSense Ad Type"
5157
  msgid "Matched content"
5158
  msgstr ""
5159
 
5160
+ #: strings.php:173
5161
  msgctxt "AdSense Ad Type"
5162
  msgid "Auto Ads"
5163
  msgstr ""
5164
 
5165
+ #: strings.php:175
5166
  msgctxt "AMP ad"
5167
  msgid "Disabled"
5168
  msgstr ""
5169
 
5170
+ #: strings.php:176
5171
  msgid "Above the fold"
5172
  msgstr ""
5173
 
5174
+ #: strings.php:177
5175
  msgid "Below the fold"
5176
  msgstr ""
5177
 
5178
+ #: strings.php:179
5179
  msgctxt "size"
5180
  msgid "Fixed"
5181
  msgstr ""
5182
 
5183
+ #: strings.php:180
5184
  msgctxt "size"
5185
  msgid "Responsive"
5186
  msgstr ""
5187
 
5188
+ #: strings.php:181
5189
  msgctxt "size"
5190
  msgid "Fixed by viewport"
5191
  msgstr ""
5192
 
5193
+ #: strings.php:185
5194
  msgid "Impressions and clicks"
5195
  msgstr ""
5196
 
5197
+ #: strings.php:186
5198
  msgid "Advanced WordPress Ad Management Plugin"
5199
  msgstr ""
5200
 
5201
+ #: strings.php:192
5202
  msgctxt "Button"
5203
  msgid "Hide"
5204
  msgstr ""
5205
 
5206
+ #: strings.php:193
5207
  msgctxt "Button"
5208
  msgid "Show"
5209
  msgstr ""
5210
 
5211
+ #: strings.php:194
5212
  msgid "Insertion expired"
5213
  msgstr ""
5214
 
5215
+ #: strings.php:195
5216
  msgid "Duration"
5217
  msgstr ""
5218
 
5219
+ #: strings.php:196
5220
  msgid "Invalid end date - must be after start date"
5221
  msgstr ""
5222
 
5223
+ #: strings.php:197
5224
  msgid "Invalid start date - only data for 1 year back is available"
5225
  msgstr ""
5226
 
5227
+ #: strings.php:198
5228
  msgid "Invalid date range - only data for 1 year can be displayed"
5229
  msgstr ""
5230
 
5231
+ #: strings.php:206
5232
  msgid "Delete"
5233
  msgstr ""
5234
 
5235
+ #: strings.php:207
5236
  msgid "Switch"
5237
  msgstr ""
5238
 
5239
+ #: strings.php:209
5240
  msgid "Delete all statistics data?"
5241
  msgstr ""
5242
 
5243
  #. translators: %s: dates
5244
+ #: strings.php:211
5245
  msgid "Delete statistics data between %s and %s?"
5246
  msgstr ""
5247
 
5248
+ #: strings.php:212
5249
  msgid "Cancel block order rearrangement"
5250
  msgstr ""
5251
 
5252
+ #: strings.php:214
5253
  msgid "downloading..."
5254
  msgstr ""
5255
 
5256
+ #: strings.php:215
5257
  msgid "download error"
5258
  msgstr ""
5259
 
5260
+ #: strings.php:216
5261
  msgid "update error"
5262
  msgstr ""
5263
 
5264
+ #: strings.php:217
5265
  msgid "Updating..."
5266
  msgstr ""
5267
 
5268
+ #: strings.php:219
5269
  msgid "ERROR"
5270
  msgstr ""
5271
 
5272
+ #: strings.php:220
5273
  msgid "Error reloading settings"
5274
  msgstr ""
5275
 
5276
+ #: strings.php:222
5277
  msgctxt "Search field placeholder"
5278
  msgid "Search..."
5279
  msgstr ""
5280
 
5281
+ #: strings.php:223
5282
  msgctxt "Search field placeholder"
5283
  msgid "Filter..."
5284
  msgstr ""
5285
 
5286
+ #: strings.php:224
5287
  msgid "Use filter to limit names in the list"
5288
  msgstr ""
5289
 
5290
+ #: strings.php:225
5291
  msgctxt "Button"
5292
  msgid "Filter"
5293
  msgstr ""
5294
 
5295
+ #: strings.php:227
5296
  msgid "Position not available"
5297
  msgstr ""
5298
 
5299
+ #: strings.php:228
5300
  msgid ""
5301
  "Theme check | Selected position for automatic insertion might not be not "
5302
  "available on this page type"
5303
  msgstr ""
5304
 
5305
+ #: strings.php:229
5306
  msgid "Position available"
5307
  msgstr ""
5308
 
5309
+ #: strings.php:231
5310
  msgid "Select or upload banner image"
5311
  msgstr ""
5312
 
5313
+ #: strings.php:232
5314
  msgid "Use this image"
5315
  msgstr ""
5316
 
5317
+ #: strings.php:233
5318
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5319
  msgstr ""
5320
 
5321
+ #: strings.php:247
5322
  msgid "Add"
5323
  msgstr ""
5324
 
5325
+ #: strings.php:248
5326
  msgid "Parent"
5327
  msgstr ""
5328
 
5329
+ #: strings.php:249
5330
  msgid "Cancel element selection"
5331
  msgstr ""
5332
 
5333
+ #: strings.php:250
5334
  msgid "Select parent element"
5335
  msgstr ""
5336
 
5337
+ #: strings.php:251
5338
  msgid "CSS selector"
5339
  msgstr ""
5340
 
5341
+ #: strings.php:252
5342
  msgid "Use current selector"
5343
  msgstr ""
5344
 
5345
+ #: strings.php:253
5346
  msgid "ELEMENT"
5347
  msgstr ""
5348
 
5349
+ #: strings.php:254
5350
  msgid "PATH"
5351
  msgstr ""
5352
 
5353
+ #: strings.php:255
5354
  msgid "SELECTOR"
5355
  msgstr ""
5356
 
5357
+ #: strings.php:256
5358
  msgctxt "Block"
5359
  msgid "VISIBLE"
5360
  msgstr ""
5361
 
5362
+ #: strings.php:257
5363
  msgctxt "Block"
5364
  msgid "HIDDEN"
5365
  msgstr ""
readme.txt CHANGED
@@ -3,10 +3,10 @@
3
  Contributors: spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
- Requires at least: 4.0
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.5.0
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
@@ -118,6 +118,8 @@ It's all about the [settings](https://adinserter.pro/documentation).
118
  * Statistics reports for clients in PDF format or public web pages
119
  * External tracking via Google Analytics or Matomo (Piwik)
120
  * A/B testing - discover adverts and settings that perform best
 
 
121
  * Lazy loading
122
  * [Sticky ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with optional close button
123
  * Sticky sidebar ads (stick to the screen or to the content)
@@ -313,6 +315,14 @@ If you are not happy to reveal this information and you have opted in, simply di
313
 
314
  == Changelog ==
315
 
 
 
 
 
 
 
 
 
316
  = 2.5.0 =
317
  - Improved user interface
318
  - Simplified user interface for individual post/page exceptions
@@ -466,6 +476,14 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
466
 
467
  == Upgrade Notice ==
468
 
 
 
 
 
 
 
 
 
469
  = 2.5.0 =
470
  Improved user interface;
471
  Simplified user interface for individual post/page exceptions;
3
  Contributors: spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
+ Requires at least: 4.6
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.5.2
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
118
  * Statistics reports for clients in PDF format or public web pages
119
  * External tracking via Google Analytics or Matomo (Piwik)
120
  * A/B testing - discover adverts and settings that perform best
121
+ * Frequency capping - limit impressions or clicks
122
+ * Click fraud protection
123
  * Lazy loading
124
  * [Sticky ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with optional close button
125
  * Sticky sidebar ads (stick to the screen or to the content)
315
 
316
  == Changelog ==
317
 
318
+ = 2.5.2 =
319
+ - Added options to define paragraph counting inside container elements
320
+ - Added support to pin block list (Pro only)
321
+ - Few minor bug fixes, cosmetic changes and code improvements
322
+
323
+ = 2.5.1 =
324
+ - Few minor bug fixes (Pro only)
325
+
326
  = 2.5.0 =
327
  - Improved user interface
328
  - Simplified user interface for individual post/page exceptions
476
 
477
  == Upgrade Notice ==
478
 
479
+ = 2.5.2 =
480
+ Added options to define paragraph counting inside container elements;
481
+ Added support to pin block list (Pro only);
482
+ Few minor bug fixes, cosmetic changes and code improvements
483
+
484
+ = 2.5.1 =
485
+ Few minor bug fixes (Pro only)
486
+
487
  = 2.5.0 =
488
  Improved user interface;
489
  Simplified user interface for individual post/page exceptions;
settings.php CHANGED
@@ -1,5 +1,10 @@
1
  <?php
 
2
 
 
 
 
 
3
  require_once AD_INSERTER_PLUGIN_DIR.'constants.php';
4
 
5
  function generate_settings_form (){
@@ -153,7 +158,17 @@ function generate_settings_form (){
153
  if (!isset ($_GET ['settings'])): // start of code only for normal settings
154
 
155
  $saved_options = get_option (AI_OPTION_NAME);
156
- if (strpos (serialize ($saved_options), '_on_which_') !== false) {
 
 
 
 
 
 
 
 
 
 
157
  echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings for individual exceptions have been updated. Please check all blocks that have exceptions and and then save settings.', 'ad-inserter') . '</p></div>';
158
  }
159
 
@@ -251,7 +266,7 @@ function generate_settings_form (){
251
  if ($insertion_disabled):
252
  ?>
253
  <div id="debugging-warning" class="ai-form warning-enabled rounded">
254
- <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('To disable debugging functions and to enable insertions go to tab &#9881; / tab Debugging', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
255
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
256
  <?php _e ('Debugging functions enabled - some code is not inserted', 'ad-inserter'); echo ': &nbsp; &nbsp;<span style="font-weight: bold;">', $insertion_statuses, '</span>'; ?>
257
  </div>
@@ -1082,7 +1097,7 @@ function generate_settings_form (){
1082
  <label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
1083
  </td>
1084
  <td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 6px; text-align: right;">
1085
- <span id="exceptions-button-<?php echo $block; ?>" class="checkbox-button dashicons dashicons-forms<?php echo $exception_button_on ? ' blue-active' : ''; ?>" title="<?php _e ('Toggle settings for default insertion and list of individual exceptions', 'ad-inserter'); ?>"></span>
1086
  </td>
1087
  </tr>
1088
  </table>
@@ -1090,26 +1105,26 @@ function generate_settings_form (){
1090
 
1091
  <div id="block-exceptions-<?php echo $block; ?>" class="responsive-table rounded" style="<?php echo $exceptions_shown ? '' : 'display: none;'; ?>">
1092
 
1093
-
1094
- <div style="float: left">
1095
- <span style="display: table-cell;">
1096
- <input type="hidden" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1097
- <input id="exceptions-enabled-<?php echo $block; ?>" style="margin-top: -2px;" type="checkbox" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_exceptions_enabled (); ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. They can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>" <?php if ($obj->get_exceptions_enabled () == AI_ENABLED) echo 'checked '; ?> />
1098
- <label for="exceptions-enabled-<?php echo $block; ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. When enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>"><?php _e ('Use exceptions for individual posts or pages to change insertion', 'ad-inserter'); ?></label>
1099
- &nbsp;
1100
- </span>
1101
- </div>
1102
- <div style="float: right">
1103
- <span style="display: table-cell; ">
1104
- <?php echo __('Default insertion', 'ad-inserter'); ?>
1105
- <select id="exceptions-function-<?php echo $block; ?>" style="margin: 0px 0 -1px 0;" name="<?php echo AI_OPTION_EXCEPTIONS_FUNCTION, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_exceptions_function (); ?>" title="<?php echo
1106
- '[[', AI_TEXT_ENABLED, ']] ', ' ', /* Translators: Enabled means...*/ __('means the insertion for this block is enabled by default and disabled for exceptions.', 'ad-inserter'),
1107
- '[BR] [[', AI_TEXT_DISABLED, ']] ', ' ', /* Translators: Disabled means...*/ __('means the insertion for this block is disabled by default and enabled for exceptions.', 'ad-inserter'),
1108
- '[BR][HR]', _e ('When individual post/page exceptions are enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>">
1109
- <option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ENABLED; ?></option>
1110
- <option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISABLED; ?></option>
1111
- </select>
1112
- </span>
1113
  <?php
1114
  if ($exceptions_error) {
1115
  ?>
@@ -1122,8 +1137,9 @@ function generate_settings_form (){
1122
  <?php
1123
  }
1124
  ?>
 
 
1125
  </div>
1126
- <div style="clear: both;"></div>
1127
 
1128
  <?php
1129
  if (!empty ($block_exceptions [$block])) {
@@ -1152,104 +1168,6 @@ function generate_settings_form (){
1152
  }
1153
  ?>
1154
 
1155
-
1156
- <!--
1157
-
1158
-
1159
- <hr />
1160
-
1161
-
1162
-
1163
- <div style="margin-bottom: 10px;">
1164
- <span style="display: table-cell; min-width: 250px;">
1165
- <?php _e ('Individual exceptions for posts', 'ad-inserter'); ?>
1166
- </span>
1167
- <span style="display: table-cell;">
1168
- <select id="enabled-on-which-posts-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_POSTS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_posts(); ?>" title="<?php _e ('Define function of exceptions for posts for this block. Individual post exceptions (if enabled here) can be configured in post editor.', 'ad-inserter'); ?>">
1169
- <option value="<?php echo AI_IGNORE_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_IGNORE_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_NO_INDIVIDUALL_EXCEPTIONS; ?></option>
1170
- <option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_DISABLED; ?></option>
1171
- <option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_posts()==AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POSTS_INDIVIDUALLY_ENABLED; ?></option>
1172
- </select>
1173
- <?php
1174
- if ($obj->get_ad_enabled_on_which_posts () == AI_DEFAULT_INSERTION_DISABLED && empty ($post_exceptions)) {
1175
- ?>
1176
- <span title='<?php _e ('No post with enabled insertion defined. Block will not be inserted into posts.', 'ad-inserter'); ?>' style='font-size: 20px; vertical-align: middle; padding: 0;'>&#x26A0;</span>
1177
- <?php
1178
- }
1179
- ?>
1180
- </span>
1181
- </div>
1182
-
1183
- <?php
1184
- if (!empty ($post_exceptions)) {
1185
- ?>
1186
- <table class="exceptions" cellspacing=0 cellpadding=0><tbody>
1187
- <tr>
1188
- <th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"><?php _e ('Title', 'ad-inserter'); ?></th><th>
1189
- <input id="clear-block-exceptions-<?php echo $block; ?>"
1190
- onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
1191
- title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
1192
- name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
1193
- value="&#x274C;"
1194
- type="submit"
1195
- style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
1196
- </tr>
1197
- <?php
1198
- foreach ($post_exceptions as $exception) {
1199
- echo $exception;
1200
- }
1201
- ?>
1202
- </tbody></table>
1203
- <hr>
1204
- <?php
1205
- }
1206
-
1207
- ?>
1208
- <div style="margin-top: 10px;">
1209
- <span style="display: table-cell; min-width: 250px;">
1210
- <?php _e ('Individual exceptions for static pages', 'ad-inserter'); ?>
1211
- </span>
1212
- <span style="display: table-cell;">
1213
- <select id="enabled-on-which-pages-<?php echo $block; ?>" name="<?php echo AI_OPTION_ENABLED_ON_WHICH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_enabled_on_which_pages(); ?>" title="<?php _e ('Define function of exceptions for static pages for this block. Individual static page exceptions (if enabled here) can be configured in page editor.', 'ad-inserter'); ?>">
1214
- <option value="<?php echo AI_IGNORE_EXCEPTIONS; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_IGNORE_EXCEPTIONS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_NO_INDIVIDUAL_EXCEPTIONS; ?></option>
1215
- <option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_DISABLED; ?></option>
1216
- <option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_ad_enabled_on_which_pages()==AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PAGES_INDIVIDUALLY_ENABLED; ?></option>
1217
- </select>
1218
- <?php
1219
- if ($obj->get_ad_enabled_on_which_pages() == AI_DEFAULT_INSERTION_DISABLED && empty ($page_exceptions)) {
1220
- ?>
1221
- <span title='<?php _e ('No static page with enabled insertion defined. Block will not be inserted into static pages.', 'ad-inserter'); ?>' style='font-size: 20px; vertical-align: middle; padding: 0;'>&#x26A0;</span>
1222
- <?php
1223
- }
1224
- ?>
1225
- </span>
1226
- </div>
1227
-
1228
- <?php
1229
- if (!empty ($page_exceptions)) {
1230
- ?>
1231
-
1232
- <table class="exceptions" cellspacing=0 cellpadding=0 style="margin-top: 8px;"><tbody>
1233
- <tr>
1234
- <th class="id">ID</th><th class="type"><?php _ex ('Type', 'post', 'ad-inserter'); ?></th><th class="page page-only"><?php _e ('Title', 'ad-inserter'); ?></th><th>
1235
- <input id="clear-block-exceptions-<?php echo $block; ?>"
1236
- onclick="if (confirm('<?php /* translators: %d: block number */ printf (__('Are you sure you want to clear all exceptions for block %d?', 'ad-inserter'), $block); ?>')) {document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.visibility = 'hidden'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').style.fontSize = '1px'; document.getElementById ('clear-block-exceptions-<?php echo $block; ?>').value = '<?php echo $block; ?>'; return true;} return false"
1237
- title="<?php _e ('Clear all exceptions for block', 'ad-inserter'); echo ' ', $block; ?>"
1238
- name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
1239
- value="&#x274C;"
1240
- type="submit"
1241
- style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
1242
- </tr>
1243
- <?php
1244
- foreach ($page_exceptions as $exception) {
1245
- echo $exception;
1246
- }
1247
- ?>
1248
- </tbody></table>
1249
- <?php
1250
- }
1251
- ?>
1252
- -->
1253
  </div>
1254
 
1255
  <div class="responsive-table rounded">
@@ -1493,8 +1411,70 @@ function generate_settings_form (){
1493
  value="<?php echo $obj->get_paragraph_text(); ?>"
1494
  maxlength="200" />
1495
  </span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1496
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1497
- &nbsp;&nbsp;
1498
  <?php _e ('Minimum number of paragraphs', 'ad-inserter'); ?>
1499
  <input
1500
  type="text"
@@ -1504,18 +1484,10 @@ function generate_settings_form (){
1504
  size="2"
1505
  maxlength="3" />
1506
  </span>
1507
- </div>
1508
-
1509
- <div class="max-input" style="margin: 8px 0 0 0;">
1510
- <span style="display: table-cell; width: 1px; white-space: nowrap;">
1511
- <input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1512
- <input id= "ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
1513
- <label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php /* translators: %s: list of HTML tags */ printf (__('Count also paragraphs inside %s elements - defined on general plugin settings page - tab &#9881; / tab General', 'ad-inserter'), get_no_paragraph_counting_inside ()); ?>"><?php _e ('Count inside special elements', 'ad-inserter'); ?></label>
1514
- </span>
1515
 
1516
  <span class="small-input-tags" style="display: table-cell;">
1517
  <input
1518
- style="width: 100%; visibility: hidden;"
1519
  />
1520
  </span>
1521
 
@@ -1532,6 +1504,7 @@ function generate_settings_form (){
1532
  maxlength="4" />
1533
  </span>
1534
  </div>
 
1535
  </div>
1536
 
1537
  <div id="paragraph-clearance-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
@@ -1987,7 +1960,7 @@ function generate_settings_form (){
1987
  <td style="width: 20%" title="<?php _e ('Maximum number of insertions of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
1988
  <?php _e ('Max', 'ad-inserter'); ?> <input type="text" name="<?php echo AI_OPTION_MAXIMUM_INSERTIONS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_maximum_insertions (); ?>" value="<?php echo $obj->get_maximum_insertions (); ?>" size="1" maxlength="3" /> <?php _e ('insertions', 'ad-inserter'); ?>
1989
  </td>
1990
- <td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab &#9881; / tab General)', 'ad-inserter'); ?>">
1991
  <input type="hidden" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1992
  <input id="max-page-blocks-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_max_page_blocks_enabled (); ?>" <?php if ($obj->get_max_page_blocks_enabled () == AI_ENABLED) echo 'checked '; ?> />
1993
  <label for="max-page-blocks-<?php echo $block; ?>"><?php _e ('Max blocks per page', 'ad-inserter'); ?></label>
@@ -3063,11 +3036,11 @@ function generate_settings_form (){
3063
  <?php
3064
  if ($subpage == 'main') {
3065
  page_checker_container ();
3066
- code_block_list_container ();
3067
  if (defined ('AI_ADSENSE_API')) {
3068
  adsense_list_container ();
3069
  }
3070
- ads_txt_container ();
3071
 
3072
  if (function_exists ('ai_settings_side')) {
3073
  ai_settings_side ();
@@ -3381,32 +3354,38 @@ function page_checker_container () {
3381
  <?php
3382
  }
3383
 
3384
- function code_block_list_container () {
 
3385
  ?>
3386
- <div id="ai-list-container" class="ai-form rounded" style="background: #fff; display: none;">
3387
  <div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
3388
  <span style="vertical-align: middle; float: left;">
3389
  <input id="ai-list-search" type="text" value="" size="35" maxlength="40" />
3390
  </span>
3391
- <span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
3392
- <input type="checkbox" value="0" id="ai-load-all" style="display: none;" />
3393
- <label class="checkbox-button" for="ai-load-all" title="<?php _e ('Toggle active/all blocks', 'ad-inserter'); ?>"><span class="checkbox-icon size-16 icon-enabled-all on"></span></label>
 
 
 
 
3394
  </span>
3395
- <span class="ai-toolbar-button small" style="vertical-align: middle; float: right;">
3396
- <input type="checkbox" value="0" id="ai-rearrange" style="display: none;" />
3397
- <label class="checkbox-button" for="ai-rearrange" title="<?php _e ('Rearrange block order', 'ad-inserter'); ?>"><span class="checkbox-icon size-16 icon-rearrange"></span></label>
3398
  </span>
3399
- <span id='list-rearrange-controls' class="ai-toolbar-button text" style='float: right; display: none;'>
3400
- <span id='list-save' class="ai-toolbar-button text" style="vertical-align: middle; display: none;">
3401
- <input type="checkbox" value="0" id="ai-save-changes" style="display: none;" />
3402
- <label class="checkbox-button" for="ai-save-changes" style="padding: 1px 5px 1px 4px; margin-top: 0px;" title="<?php _e ('Save new block order', 'ad-inserter'); ?>"><?php _e ('Save Changes', 'ad-inserter'); ?></label>
3403
  </span>
3404
  </span>
 
3405
  <div style="clear: both;"></div>
3406
  </div>
3407
 
3408
- <div id="ai-list-data">
3409
- <?php _e ('Loading...', 'ad-inserter'); ?>
3410
  </div>
3411
  </div>
3412
  <?php
@@ -3661,13 +3640,16 @@ function ads_txt ($action) {
3661
  break;
3662
  default:
3663
  echo '<div class="rounded">';
 
3664
  if ($wp_folder != '') {
3665
  echo '<div><strong><span style="color: red;">', __('IMPORTANT', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $ads_txt_url, '" target="_blank" class="simple-link">', $ads_txt_url, '</a></strong></div>';
3666
  echo '<hr>';
3667
  }
3668
- echo '<div><span style="float: left;">', __('ads.txt file:', 'ad-inserter'), ' ', $ads_txt_file,
3669
- '</span><span style="float: right;">', /* translators: %s: file path */ sprintf (__('WordPress is installed in %s', 'ad-inserter'), ABSPATH . '</strong>'), '</span></div>';
3670
- echo '<div style="clear: both;"></div>';
 
 
3671
  echo '</div>';
3672
 
3673
  if (!file_exists ($ads_txt_file)) {
@@ -3805,7 +3787,7 @@ function ads_txt ($action) {
3805
  }
3806
 
3807
 
3808
- function code_block_list () {
3809
  global $block_object, $wpdb, $ai_db_options_extract;
3810
 
3811
  if (isset ($_GET ["blocks-org"]) && isset ($_GET ["blocks-new"])) {
@@ -3921,12 +3903,12 @@ function code_block_list () {
3921
 
3922
  ob_start ();
3923
 
3924
- $search_text = trim ($_GET ["list"]);
3925
 
3926
- $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
3927
 
3928
- $start = trim ($_GET ["start"]);
3929
- $end = trim ($_GET ["end"]);
3930
 
3931
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
3932
 
@@ -3947,10 +3929,35 @@ function code_block_list () {
3947
 
3948
  if (!$show_all_blocks && !$block_used) continue;
3949
 
3950
- $block_text = $block . ' '. $obj->get_ad_name () . ' ' . $obj->get_automatic_insertion_text() . ' ' . $obj->get_alignment_type_text () . ' ' . implode (', ', $sidebars_with_widget [$block]);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3951
  if (!empty ($sidebars_with_widget [$block])) $block_text .= ' widget';
3952
  if ($manual_shortcode) $block_text .= ' shortcode';
3953
- if ($manual_php_function) $block_text .= ' php';
3954
 
3955
  foreach ($search_array as $search_item) {
3956
  if (stripos ($block_text, trim ($search_item)) === false) continue 2;
@@ -3965,19 +3972,6 @@ function code_block_list () {
3965
 
3966
  $visible_tab = $block >= $start && $block <= $end;
3967
 
3968
- $exceptions = $obj->get_exceptions_enabled ();
3969
-
3970
- $devices = $obj->get_detection_server_side () || $obj->get_detection_client_side ();
3971
-
3972
- $scheduling = $obj->get_scheduling() != AI_SCHEDULING_OFF;
3973
-
3974
- if (function_exists ('get_global_tracking')) {
3975
- $limits =
3976
- $obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
3977
- $obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ());
3978
-
3979
- }
3980
-
3981
  $insertion_parameter = '';
3982
  $insertion_title = '';
3983
  switch ($obj->get_automatic_insertion()) {
@@ -4018,14 +4012,14 @@ function code_block_list () {
4018
  <?php endif ?>
4019
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;" title="<?php _e ('Insertion disabled', 'ad-inserter'); ?>"><?php echo $disabled ? '&#10074;&#10074;' : ''; ?></td>
4020
  <td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
4021
- <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $obj->get_process_php () ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
4022
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
4023
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
4024
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;"><?php echo $scheduling ? '&#9200;' : ''; ?></td>
4025
  <?php
4026
  if (function_exists ('get_global_tracking')) {
4027
  ?>
4028
- <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $obj->get_tracking (true) ? 'checkbox-icon size-img16 icon-tracking on' : ''; ?>" style="margin-top: 1px;"></span></td>
4029
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #70f;"><?php echo $limits ? '&#11027;' : ''; ?></td>
4030
  <?php
4031
  }
@@ -4581,7 +4575,12 @@ function ai_check_page ($options) {
4581
  foreach (array_unique ($matches [1]) as $position) {
4582
  $positions [] = (int) $position;
4583
  }
4584
- }
 
 
 
 
 
4585
 
4586
  @unlink ($tmp_file);
4587
  }
@@ -4947,6 +4946,8 @@ function sidebar_pro () {
4947
  <li><?php /* translators: %s HTML tags */ printf (__('Internal or external %s tracking %s (via Google Analytics or Matomo)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
4948
  <li><?php /* translators: %s HTML tags */ printf (__('%s Public web reports %s for clients, export to PDF', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#reports" class="simple-link" target="_blank">', '</a>'); ?></li>
4949
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
 
 
4950
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
4951
  <li><?php /* translators: %s HTML tags */ printf (__('Support for ads on %s AMP pages %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/amp-pages" class="simple-link" target="_blank">', '</a>'); ?></li>
4952
  <li><?php /* translators: %s HTML tags */ printf (__('Support for contextual %s Amazon Native Shopping Ads %s (responsive)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/common-settings#amazon" class="simple-link" target="_blank">', '</a>'); ?></li>
1
  <?php
2
+ /*
3
 
4
+ - default insertion is hidden when excptions are disabled
5
+ - block list keywords for all columns
6
+
7
+ */
8
  require_once AD_INSERTER_PLUGIN_DIR.'constants.php';
9
 
10
  function generate_settings_form (){
158
  if (!isset ($_GET ['settings'])): // start of code only for normal settings
159
 
160
  $saved_options = get_option (AI_OPTION_NAME);
161
+ $warning = false;
162
+ if (!empty ($saved_options))
163
+ foreach ($saved_options as $block => $block_settings) {
164
+ if ($block >= $start && $block <= $end) {
165
+ if (isset ($saved_options [$block]) && strpos (serialize ($saved_options [$block]), '_on_which_') !== false) {
166
+ $warning = true;
167
+ break;
168
+ }
169
+ }
170
+ }
171
+ if ($warning) {
172
  echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings for individual exceptions have been updated. Please check all blocks that have exceptions and and then save settings.', 'ad-inserter') . '</p></div>';
173
  }
174
 
266
  if ($insertion_disabled):
267
  ?>
268
  <div id="debugging-warning" class="ai-form warning-enabled rounded">
269
+ <h2 class="blocked-warning-text" style="float: left; color: red; margin: 7px 0;" title="<?php _e ('To disable debugging functions and to enable insertions go to tab [*] / tab Debugging', 'ad-inserter'); ?>"><?php _e ('WARNING', 'ad-inserter'); ?></h2>
270
  <div style="float: right; text-align: right; width: 630px; margin: 8px 5px 0px 0;">
271
  <?php _e ('Debugging functions enabled - some code is not inserted', 'ad-inserter'); echo ': &nbsp; &nbsp;<span style="font-weight: bold;">', $insertion_statuses, '</span>'; ?>
272
  </div>
1097
  <label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
1098
  </td>
1099
  <td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 6px; text-align: right;">
1100
+ <span id="exceptions-button-<?php echo $block; ?>" class="checkbox-button dashicons dashicons-forms<?php echo $exception_button_on ? ' on' : ''; ?>" title="<?php _e ('Toggle settings for default insertion and list of individual exceptions', 'ad-inserter'); ?>"></span>
1101
  </td>
1102
  </tr>
1103
  </table>
1105
 
1106
  <div id="block-exceptions-<?php echo $block; ?>" class="responsive-table rounded" style="<?php echo $exceptions_shown ? '' : 'display: none;'; ?>">
1107
 
1108
+ <div style="min-height: 21px;">
1109
+ <div style="float: left">
1110
+ <span style="display: table-cell;">
1111
+ <input type="hidden" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1112
+ <input id="exceptions-enabled-<?php echo $block; ?>" style="margin-top: -2px;" type="checkbox" name="<?php echo AI_OPTION_EXCEPTIONS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_exceptions_enabled (); ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. They can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>" <?php if ($obj->get_exceptions_enabled () == AI_ENABLED) echo 'checked '; ?> />
1113
+ <label for="exceptions-enabled-<?php echo $block; ?>" title="<?php _e ('Enable individual post/page exceptions for insertion of this block. When enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>"><?php _e ('Use exceptions for individual posts or pages to change insertion', 'ad-inserter'); ?></label>
1114
+ &nbsp;
1115
+ </span>
1116
+ </div>
1117
+ <div id="default-insertion-<?php echo $block; ?>" style="float: right; display: <?php echo $obj->get_exceptions_enabled () == AI_ENABLED ? 'block' : 'none'; ?>;">
1118
+ <span style="display: table-cell;">
1119
+ <?php echo __('Default insertion', 'ad-inserter'); ?>
1120
+ <select id="exceptions-function-<?php echo $block; ?>" style="margin: 0px 0 -1px 0;" name="<?php echo AI_OPTION_EXCEPTIONS_FUNCTION, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_exceptions_function (); ?>" title="<?php echo
1121
+ '[[', AI_TEXT_ENABLED, ']] ', ' ', /* Translators: Enabled means...*/ __('means the insertion for this block is enabled by default and disabled for exceptions.', 'ad-inserter'),
1122
+ '[BR] [[', AI_TEXT_DISABLED, ']] ', ' ', /* Translators: Disabled means...*/ __('means the insertion for this block is disabled by default and enabled for exceptions.', 'ad-inserter'),
1123
+ '[BR][HR]', _e ('When individual post/page exceptions are enabled they can be configured on the individual post/page editor page (in the settings below the editor).', 'ad-inserter'); ?>">
1124
+ <option value="<?php echo AI_DEFAULT_INSERTION_ENABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_ENABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_ENABLED; ?></option>
1125
+ <option value="<?php echo AI_DEFAULT_INSERTION_DISABLED; ?>" <?php echo ($obj->get_exceptions_function () == AI_DEFAULT_INSERTION_DISABLED) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISABLED; ?></option>
1126
+ </select>
1127
+ </span>
1128
  <?php
1129
  if ($exceptions_error) {
1130
  ?>
1137
  <?php
1138
  }
1139
  ?>
1140
+ </div>
1141
+ <div style="clear: both;"></div>
1142
  </div>
 
1143
 
1144
  <?php
1145
  if (!empty ($block_exceptions [$block])) {
1168
  }
1169
  ?>
1170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1171
  </div>
1172
 
1173
  <div class="responsive-table rounded">
1411
  value="<?php echo $obj->get_paragraph_text(); ?>"
1412
  maxlength="200" />
1413
  </span>
1414
+ </div>
1415
+
1416
+ <hr style="margin: 0 -8px;" />
1417
+
1418
+ <div class="max-input" style="margin: 8px 0 0 0;">
1419
+ <?php
1420
+ $title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
1421
+ ?>
1422
+ <span style="display: table-cell; width: 1px; white-space: nowrap; padding-right: 8px;">
1423
+ <input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1424
+ <input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
1425
+ <label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.get_no_paragraph_counting_inside ().' </pre></strong>'); ?></label>
1426
+ </span>
1427
+ </div>
1428
+
1429
+ <div class="max-input" style="margin: 8px 0 8px 0;">
1430
+ <span style="display: table-cell; width: 1px; white-space: nowrap;">
1431
+ <select style="margin-bottom: 3px;" name="<?php echo AI_OPTION_COUNT_INSIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_count_inside (); ?>">
1432
+ <option value="<?php echo AI_DO_NOT_COUNT; ?>" <?php echo ($obj->get_count_inside () == AI_DO_NOT_COUNT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_COUNT; ?></option>
1433
+ <option value="<?php echo AI_COUNT_ONLY; ?>" <?php echo ($obj->get_count_inside () == AI_COUNT_ONLY) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_COUNT_ONLY; ?></option>
1434
+ </select>
1435
+ </span>
1436
+ <span style="display: table-cell; width: 1px; white-space: nowrap; padding: 0 4px">
1437
+ <?php /* translators: inside [HTML tags] elements that contain */ _e ('inside', 'ad-inserter'); ?>
1438
+ </span>
1439
+
1440
+ <span style="display: table-cell;">
1441
+ <input
1442
+ style="width: 100%;"
1443
+ title="<?php _e ("Comma separated HTML tag names of container elements", 'ad-inserter'); ?>"
1444
+ type="text" name="<?php echo AI_OPTION_COUNT_INSIDE_ELEMENTS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1445
+ default="<?php echo $default->get_count_inside_elements (); ?>"
1446
+ value="<?php echo $obj->get_count_inside_elements (); ?>"
1447
+ size="12"
1448
+ maxlength="50"/>
1449
+ </span>
1450
+
1451
+ <span style="display: table-cell; width: 1px; white-space: nowrap; padding: 0 4px">
1452
+ <?php /* translators: inside [HTML tags] elements that contain */ _e ('elements that', 'ad-inserter'); ?>
1453
+ </span>
1454
+
1455
+ <span style="display: table-cell; width: 1px; white-space: nowrap;">
1456
+ <select style="margin-bottom: 3px;" name="<?php echo AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_count_inside_elements_contain (); ?>">
1457
+ <option value="<?php echo AI_CONTAIN; ?>" <?php echo ($obj->get_count_inside_elements_contain () == AI_CONTAIN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CONTAIN; ?></option>
1458
+ <option value="<?php echo AI_DO_NOT_CONTAIN; ?>" <?php echo ($obj->get_count_inside_elements_contain () == AI_DO_NOT_CONTAIN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_CONTAIN; ?></option>
1459
+ </select>
1460
+ </span>
1461
+
1462
+ <span class="small-input-tags" style="display: table-cell;">
1463
+ <input
1464
+ style="width: 100%;"
1465
+ title="<?php _e ('Comma separated texts', 'ad-inserter'); ?>"
1466
+ type="text"
1467
+ name="<?php echo AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT, WP_FORM_FIELD_POSTFIX, $block; ?>"
1468
+ default="<?php echo $default->get_count_inside_elements_text (); ?>"
1469
+ value="<?php echo $obj->get_count_inside_elements_text (); ?>"
1470
+ maxlength="200" />
1471
+ </span>
1472
+ </div>
1473
+
1474
+ <hr style="margin: 0 -8px;" />
1475
+
1476
+ <div class="max-input" style="margin: 8px 0 0 0;">
1477
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
 
1478
  <?php _e ('Minimum number of paragraphs', 'ad-inserter'); ?>
1479
  <input
1480
  type="text"
1484
  size="2"
1485
  maxlength="3" />
1486
  </span>
 
 
 
 
 
 
 
 
1487
 
1488
  <span class="small-input-tags" style="display: table-cell;">
1489
  <input
1490
+ style="width: 90%; visibility: hidden;"
1491
  />
1492
  </span>
1493
 
1504
  maxlength="4" />
1505
  </span>
1506
  </div>
1507
+
1508
  </div>
1509
 
1510
  <div id="paragraph-clearance-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
1960
  <td style="width: 20%" title="<?php _e ('Maximum number of insertions of this block. Empty or 0 means no limit.', 'ad-inserter'); ?>">
1961
  <?php _e ('Max', 'ad-inserter'); ?> <input type="text" name="<?php echo AI_OPTION_MAXIMUM_INSERTIONS, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_maximum_insertions (); ?>" value="<?php echo $obj->get_maximum_insertions (); ?>" size="1" maxlength="3" /> <?php _e ('insertions', 'ad-inserter'); ?>
1962
  </td>
1963
+ <td title="<?php _e ('Count this block for Max blocks per page limit (defined on the tab [*] / tab General)', 'ad-inserter'); ?>">
1964
  <input type="hidden" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1965
  <input id="max-page-blocks-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_MAX_PAGE_BLOCKS_ENABLED, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_max_page_blocks_enabled (); ?>" <?php if ($obj->get_max_page_blocks_enabled () == AI_ENABLED) echo 'checked '; ?> />
1966
  <label for="max-page-blocks-<?php echo $block; ?>"><?php _e ('Max blocks per page', 'ad-inserter'); ?></label>
3036
  <?php
3037
  if ($subpage == 'main') {
3038
  page_checker_container ();
3039
+ ads_txt_container ();
3040
  if (defined ('AI_ADSENSE_API')) {
3041
  adsense_list_container ();
3042
  }
3043
+ code_block_list_container ($start, $end);
3044
 
3045
  if (function_exists ('ai_settings_side')) {
3046
  ai_settings_side ();
3354
  <?php
3355
  }
3356
 
3357
+ function code_block_list_container ($start, $end) {
3358
+ $blocks_sticky = function_exists ('ai_block_list_buttons') ? get_blocks_sticky () : false;
3359
  ?>
3360
+ <div id="ai-list-container" class="ai-form rounded" style="background: #fff; <?php echo $blocks_sticky ? '' : 'display: none;'; ?>">
3361
  <div id='ai-list-controls' class='ui-widget' style='margin: 0 auto 8px;'>
3362
  <span style="vertical-align: middle; float: left;">
3363
  <input id="ai-list-search" type="text" value="" size="35" maxlength="40" />
3364
  </span>
3365
+
3366
+ <?php
3367
+ if (function_exists ('ai_block_list_buttons')) ai_block_list_buttons ($blocks_sticky);
3368
+ ?>
3369
+
3370
+ <span style="float: right;">
3371
+ <span id="ai-load-all" class="checkbox-button dashicons dashicons-lightbulb light-blue" title="<?php _e ('Toggle active/all blocks', 'ad-inserter'); ?>"></span>
3372
  </span>
3373
+
3374
+ <span style="margin-right: 10px; float: right;">
3375
+ <span id="ai-rearrange" class="checkbox-button dashicons dashicons-sort" title="<?php _e ('Rearrange block order', 'ad-inserter'); ?>"></span>
3376
  </span>
3377
+
3378
+ <span id='list-rearrange-controls' style="margin-right: 10px; float: right; display: none;">
3379
+ <span id="list-save" style="display: none;">
3380
+ <span id="ai-save-changes" class="checkbox-button dashicons dashicons-yes-alt green" title="<?php _e ('Save new block order', 'ad-inserter'); ?>"></span>
3381
  </span>
3382
  </span>
3383
+
3384
  <div style="clear: both;"></div>
3385
  </div>
3386
 
3387
+ <div id="ai-list-data"<?php echo $blocks_sticky ? ' class="ai-sticky"' :''; ?>>
3388
+ <?php echo $blocks_sticky ? code_block_list ($start, $end, '', false) : __ ('Loading...', 'ad-inserter'); ?>
3389
  </div>
3390
  </div>
3391
  <?php
3640
  break;
3641
  default:
3642
  echo '<div class="rounded">';
3643
+
3644
  if ($wp_folder != '') {
3645
  echo '<div><strong><span style="color: red;">', __('IMPORTANT', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $ads_txt_url, '" target="_blank" class="simple-link">', $ads_txt_url, '</a></strong></div>';
3646
  echo '<hr>';
3647
  }
3648
+ echo '<table border-spacing="0" cell-spacing="0"><tbody>';
3649
+ echo '<tr><td style="padding-right: 20px; font-weight: bold;">WordPress</td><td>', ABSPATH, '</td></tr>';
3650
+ echo '<tr><td style="padding-right: 20px; font-weight: bold;">', __('ads.txt file', 'ad-inserter'), '</td><td>', $ads_txt_file, '</td></tr>';
3651
+ echo '</tbody></table>';
3652
+
3653
  echo '</div>';
3654
 
3655
  if (!file_exists ($ads_txt_file)) {
3787
  }
3788
 
3789
 
3790
+ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
3791
  global $block_object, $wpdb, $ai_db_options_extract;
3792
 
3793
  if (isset ($_GET ["blocks-org"]) && isset ($_GET ["blocks-new"])) {
3903
 
3904
  ob_start ();
3905
 
3906
+ // $search_text = trim ($_GET ["list"]);
3907
 
3908
+ // $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
3909
 
3910
+ // $start = trim ($_GET ["start"]);
3911
+ // $end = trim ($_GET ["end"]);
3912
 
3913
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
3914
 
3929
 
3930
  if (!$show_all_blocks && !$block_used) continue;
3931
 
3932
+ $process_php = $obj->get_process_php ();
3933
+
3934
+ $exceptions = $obj->get_exceptions_enabled ();
3935
+
3936
+ $devices = $obj->get_detection_server_side () || $obj->get_detection_client_side ();
3937
+
3938
+ $scheduling = $obj->get_scheduling() != AI_SCHEDULING_OFF;
3939
+
3940
+ $tracking = $obj->get_tracking (true);
3941
+
3942
+ if (function_exists ('get_global_tracking')) {
3943
+ $limits =
3944
+ $obj->get_visitor_max_impressions () || ($obj->get_visitor_limit_impressions_per_time_period () && $obj->get_visitor_limit_impressions_time_period ()) ||
3945
+ $obj->get_visitor_max_clicks () || ($obj->get_visitor_limit_clicks_per_time_period () && $obj->get_visitor_limit_clicks_time_period ());
3946
+
3947
+ }
3948
+
3949
+ $block_text = $block . ' '. $obj->get_ad_name () . ' ' . $obj->get_automatic_insertion_text() . ' ' . implode (', ', $sidebars_with_widget [$block]);
3950
+ if ($process_php) $block_text .= ' php';
3951
+ if ($exceptions) $block_text .= ' exceptions';
3952
+ if ($devices) $block_text .= ' device';
3953
+ if ($scheduling) $block_text .= ' scheduling';
3954
+ if (function_exists ('get_global_tracking')) {
3955
+ if ($limits) $block_text .= ' limits';
3956
+ }
3957
+ if ($tracking) $block_text .= ' tracking';
3958
  if (!empty ($sidebars_with_widget [$block])) $block_text .= ' widget';
3959
  if ($manual_shortcode) $block_text .= ' shortcode';
3960
+ if ($manual_php_function) $block_text .= ' function';
3961
 
3962
  foreach ($search_array as $search_item) {
3963
  if (stripos ($block_text, trim ($search_item)) === false) continue 2;
3972
 
3973
  $visible_tab = $block >= $start && $block <= $end;
3974
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3975
  $insertion_parameter = '';
3976
  $insertion_title = '';
3977
  switch ($obj->get_automatic_insertion()) {
4012
  <?php endif ?>
4013
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;" title="<?php _e ('Insertion disabled', 'ad-inserter'); ?>"><?php echo $disabled ? '&#10074;&#10074;' : ''; ?></td>
4014
  <td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
4015
+ <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
4016
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
4017
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
4018
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;"><?php echo $scheduling ? '&#9200;' : ''; ?></td>
4019
  <?php
4020
  if (function_exists ('get_global_tracking')) {
4021
  ?>
4022
+ <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $tracking ? 'checkbox-icon size-img16 icon-tracking on' : ''; ?>" style="margin-top: 1px;"></span></td>
4023
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #70f;"><?php echo $limits ? '&#11027;' : ''; ?></td>
4024
  <?php
4025
  }
4575
  foreach (array_unique ($matches [1]) as $position) {
4576
  $positions [] = (int) $position;
4577
  }
4578
+ } else {
4579
+ @unlink ($tmp_file);
4580
+ $error_string = $tmp_file->get_error_message();
4581
+ echo $error_string;
4582
+ return;
4583
+ }
4584
 
4585
  @unlink ($tmp_file);
4586
  }
4946
  <li><?php /* translators: %s HTML tags */ printf (__('Internal or external %s tracking %s (via Google Analytics or Matomo)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
4947
  <li><?php /* translators: %s HTML tags */ printf (__('%s Public web reports %s for clients, export to PDF', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#reports" class="simple-link" target="_blank">', '</a>'); ?></li>
4948
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
4949
+ <li><?php /* translators: %s HTML tags */ printf (__('Frequency capping - %s limit impressions or clicks %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting" class="simple-link" target="_blank">', '</a>'); ?></li>
4950
+ <li><?php /* translators: %s HTML tags */ printf (__('Click fraud %s protection %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-limiting#click-fraud-protection" class="simple-link" target="_blank">', '</a>'); ?></li>
4951
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
4952
  <li><?php /* translators: %s HTML tags */ printf (__('Support for ads on %s AMP pages %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/amp-pages" class="simple-link" target="_blank">', '</a>'); ?></li>
4953
  <li><?php /* translators: %s HTML tags */ printf (__('Support for contextual %s Amazon Native Shopping Ads %s (responsive)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/common-settings#amazon" class="simple-link" target="_blank">', '</a>'); ?></li>
strings.php CHANGED
@@ -37,16 +37,19 @@ define ('AI_TEXT_AFTER_IMAGE', __('After image', 'ad-inserter'));
37
  define('AI_TEXT_DO_NOT_INSERT', __('do not insert', 'ad-inserter'));
38
  define('AI_TEXT_TRY_TO_SHIFT_POSITION', __('try to shift position', 'ad-inserter'));
39
 
40
- define('AI_TEXT_ABOVE', __('above', 'ad-inserter'));
41
- define('AI_TEXT_BELOW', __('below', 'ad-inserter'));
42
- define('AI_TEXT_ABOVE_AND_THEN_BELOW', __('above and then below', 'ad-inserter'));
43
- define('AI_TEXT_BELOW_AND_THEN_ABOVE', __('below and then above', 'ad-inserter'));
44
 
45
- define('AI_TEXT_DIRECTION_FROM_TOP', __('from top', 'ad-inserter'));
46
- define('AI_TEXT_DIRECTION_FROM_BOTTOM', __('from bottom', 'ad-inserter'));
47
 
48
- define('AI_TEXT_CONTAIN', _x('contain', 'paragraphs', 'ad-inserter'));
49
- define('AI_TEXT_DO_NOT_CONTAIN', _x('do not contain', 'paragraphs', 'ad-inserter'));
 
 
 
50
 
51
  define('AI_TEXT_DISPLAY_ALL_USERS', _x('all users', 'insert for', 'ad-inserter'));
52
  define('AI_TEXT_DISPLAY_LOGGED_IN_USERS', _x('logged in users', 'insert for', 'ad-inserter'));
37
  define('AI_TEXT_DO_NOT_INSERT', __('do not insert', 'ad-inserter'));
38
  define('AI_TEXT_TRY_TO_SHIFT_POSITION', __('try to shift position', 'ad-inserter'));
39
 
40
+ define ('AI_TEXT_ABOVE', __('above', 'ad-inserter'));
41
+ define ('AI_TEXT_BELOW', __('below', 'ad-inserter'));
42
+ define ('AI_TEXT_ABOVE_AND_THEN_BELOW', __('above and then below', 'ad-inserter'));
43
+ define ('AI_TEXT_BELOW_AND_THEN_ABOVE', __('below and then above', 'ad-inserter'));
44
 
45
+ define ('AI_TEXT_DIRECTION_FROM_TOP', __('from top', 'ad-inserter'));
46
+ define ('AI_TEXT_DIRECTION_FROM_BOTTOM',__('from bottom', 'ad-inserter'));
47
 
48
+ define ('AI_TEXT_CONTAIN', _x('contain', 'paragraphs', 'ad-inserter'));
49
+ define ('AI_TEXT_DO_NOT_CONTAIN', _x('do not contain', 'paragraphs', 'ad-inserter'));
50
+
51
+ define ('AI_TEXT_DO_NOT_COUNT', __('Do not count', 'ad-inserter'));
52
+ define ('AI_TEXT_COUNT_ONLY', __('Count only', 'ad-inserter'));
53
 
54
  define('AI_TEXT_DISPLAY_ALL_USERS', _x('all users', 'insert for', 'ad-inserter'));
55
  define('AI_TEXT_DISPLAY_LOGGED_IN_USERS', _x('logged in users', 'insert for', 'ad-inserter'));