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

Version Description

  • Added support for various shortcodes for post categories
  • Added support for various shortcodes for post tags
  • Added support for user action on click (Pro only)
  • Added support for manual loading (Pro only)
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

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

Code changes from version 2.6.6 to 2.6.7

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.6.6
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,13 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.6.6 - 2020-03-15
19
  - Fix for exceptions list not showing all exceptions
20
  - Improved ad blocking detection
@@ -3809,6 +3816,16 @@ function ai_write_debug_info ($write_processing_log = false) {
3809
  break;
3810
  }
3811
  echo "\n";
 
 
 
 
 
 
 
 
 
 
3812
  echo 'PARAGRAPH COUNTING: ';
3813
  switch (get_paragraph_counting_functions()) {
3814
  case AI_STANDARD_PARAGRAPH_COUNTING_FUNCTIONS:
@@ -4356,7 +4373,6 @@ function ai_check_plugin_options ($plugin_options = array ()) {
4356
  if (!isset ($plugin_options ['LAZY_LOADING_OFFSET'])) $plugin_options ['LAZY_LOADING_OFFSET'] = DEFAULT_LAZY_LOADING_OFFSET;
4357
  $plugin_options ['LAZY_LOADING_OFFSET'] = ai_check_limits ($plugin_options ['LAZY_LOADING_OFFSET'], 0, 9999, DEFAULT_LAZY_LOADING_OFFSET);
4358
 
4359
-
4360
  if (!isset ($plugin_options ['MAX_PAGE_BLOCKS'])) $plugin_options ['MAX_PAGE_BLOCKS'] = DEFAULT_MAX_PAGE_BLOCKS;
4361
  $plugin_options ['MAX_PAGE_BLOCKS'] = ai_check_limits ($plugin_options ['MAX_PAGE_BLOCKS'], 0, 9999, DEFAULT_MAX_PAGE_BLOCKS);
4362
 
@@ -9346,13 +9362,21 @@ function replace_ai_tags ($content, $general_tag = '') {
9346
  $title = $general_tag;
9347
  $short_title = $general_tag;
9348
  $category = $general_tag;
 
 
 
 
9349
  $short_category = $general_tag;
9350
  $tag = $general_tag;
 
 
 
 
9351
  $smart_tag = $general_tag;
9352
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
9353
- $categories = get_the_category();
9354
- if (!empty ($categories)) {
9355
- $first_category = reset ($categories);
9356
  $category = str_replace ("&", "and", $first_category->name);
9357
  if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
9358
  } else {
@@ -9370,6 +9394,17 @@ function replace_ai_tags ($content, $general_tag = '') {
9370
  $short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
9371
  $tag = $short_title;
9372
  $smart_tag = $short_title;
 
 
 
 
 
 
 
 
 
 
 
9373
  } elseif (is_tag ()) {
9374
  $title = single_tag_title('', false);
9375
  $title = str_replace (array ("&", "#", '"', "'"), array ("and", "", '', ''), $title);
@@ -9383,6 +9418,17 @@ function replace_ai_tags ($content, $general_tag = '') {
9383
  }
9384
  $tag = $short_title;
9385
  $smart_tag = $short_title;
 
 
 
 
 
 
 
 
 
 
 
9386
  } elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_SEARCH) {
9387
  $title = get_search_query();
9388
  $title = str_replace ("&", "and", $title);
@@ -9402,10 +9448,19 @@ function replace_ai_tags ($content, $general_tag = '') {
9402
 
9403
  $short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
9404
 
9405
- $categories = get_the_category();
9406
- if (!empty ($categories)) {
9407
- $first_category = reset ($categories);
9408
- $category = str_replace (array ("&", '"', "'"), array ("and", '', ''), $first_category->name);
 
 
 
 
 
 
 
 
 
9409
  if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
9410
  } else {
9411
  $category = $short_title;
@@ -9417,14 +9472,21 @@ function replace_ai_tags ($content, $general_tag = '') {
9417
  $short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
9418
  }
9419
 
9420
- $tags = get_the_tags();
9421
- if (!empty ($tags)) {
 
 
 
 
 
 
 
9422
 
9423
- $first_tag = reset ($tags);
9424
- $tag = str_replace (array ("&", "#"), array ("and", ""), isset ($first_tag->name) ? $first_tag->name : '');
9425
 
9426
  $tag_array = array ();
9427
- foreach ($tags as $tag_data) {
9428
  if (isset ($tag_data->name))
9429
  $tag_array [] = explode (" ", $tag_data->name);
9430
  }
@@ -9456,8 +9518,8 @@ function replace_ai_tags ($content, $general_tag = '') {
9456
  }
9457
 
9458
  if ($selected_tag == '') {
9459
- $first_tag = reset ($tags);
9460
- $smart_tag = implode (" ", array_slice (explode (" ", isset ($first_tag->name) ? $first_tag->name : ''), 0, 3));
9461
  } else $smart_tag = implode (" ", $selected_tag);
9462
 
9463
  $smart_tag = str_replace (array ("&", "#"), array ("and", ""), $smart_tag);
@@ -9496,35 +9558,75 @@ function replace_ai_tags ($content, $general_tag = '') {
9496
 
9497
  $url = remove_debug_parameters_from_url ((isset ($_SERVER ['HTTPS']) && $_SERVER ['HTTPS'] === 'on' ? "https" : "http") . '://'. $_SERVER ['HTTP_HOST'] . $_SERVER ['REQUEST_URI']);
9498
 
9499
- $ai_wp_data [AI_TAGS]['TITLE'] = $title;
9500
- $ai_wp_data [AI_TAGS]['SHORT_TITLE'] = $short_title;
9501
- $ai_wp_data [AI_TAGS]['CATEGORY'] = $category;
9502
- $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
9503
- $ai_wp_data [AI_TAGS]['TAG'] = $tag;
9504
- $ai_wp_data [AI_TAGS]['SMART_TAG'] = $smart_tag;
9505
- $ai_wp_data [AI_TAGS]['SEARCH_QUERY'] = $search_query;
9506
- $ai_wp_data [AI_TAGS]['AUTHOR'] = $author;
9507
- $ai_wp_data [AI_TAGS]['AUTHOR_NAME'] = $author_name;
9508
- $ai_wp_data [AI_TAGS]['URL'] = $url;
9509
- }
9510
-
9511
- $ad_data = preg_replace ("/{title}/i", $ai_wp_data [AI_TAGS]['TITLE'], $content);
9512
- $ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
9513
- $ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
9514
- $ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
9515
- $ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
9516
- $ad_data = preg_replace ("/{smart-tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
9517
- $ad_data = preg_replace ("/{search-query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
9518
- $ad_data = preg_replace ("/{author}/i", $ai_wp_data [AI_TAGS]['AUTHOR'], $ad_data);
9519
- $ad_data = preg_replace ("/{author-name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
9520
-
9521
- $ad_data = preg_replace ("/{short_title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
9522
- $ad_data = preg_replace ("/{short_category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
9523
- $ad_data = preg_replace ("/{smart_tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
9524
- $ad_data = preg_replace ("/{search_query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
9525
- $ad_data = preg_replace ("/{author_name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
9526
-
9527
- $ad_data = preg_replace ("/{url}/i", $ai_wp_data [AI_TAGS]['URL'], $ad_data);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9528
 
9529
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
9530
 
@@ -10047,3 +10149,4 @@ if (!class_exists ('ai_widget')) {
10047
  }
10048
  }
10049
 
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.6.7
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.6.7 - 2020-04-07
19
+ - Added support for various shortcodes for post categories
20
+ - Added support for various shortcodes for post tags
21
+ - Added support for user action on click (Pro only)
22
+ - Added support for manual loading (Pro only)
23
+ - Few minor bug fixes, cosmetic changes and code improvements
24
+
25
  Ad Inserter 2.6.6 - 2020-03-15
26
  - Fix for exceptions list not showing all exceptions
27
  - Improved ad blocking detection
3816
  break;
3817
  }
3818
  echo "\n";
3819
+ echo 'STICKY WIDGET MODE: ';
3820
+ switch (get_sticky_widget_mode ()) {
3821
+ case AI_STICKY_WIDGET_MODE_CSS:
3822
+ echo AI_TEXT_CSS;
3823
+ break;
3824
+ case AI_STICKY_WIDGET_MODE_JS:
3825
+ echo AI_TEXT_JS;
3826
+ break;
3827
+ }
3828
+ echo "\n";
3829
  echo 'PARAGRAPH COUNTING: ';
3830
  switch (get_paragraph_counting_functions()) {
3831
  case AI_STANDARD_PARAGRAPH_COUNTING_FUNCTIONS:
4373
  if (!isset ($plugin_options ['LAZY_LOADING_OFFSET'])) $plugin_options ['LAZY_LOADING_OFFSET'] = DEFAULT_LAZY_LOADING_OFFSET;
4374
  $plugin_options ['LAZY_LOADING_OFFSET'] = ai_check_limits ($plugin_options ['LAZY_LOADING_OFFSET'], 0, 9999, DEFAULT_LAZY_LOADING_OFFSET);
4375
 
 
4376
  if (!isset ($plugin_options ['MAX_PAGE_BLOCKS'])) $plugin_options ['MAX_PAGE_BLOCKS'] = DEFAULT_MAX_PAGE_BLOCKS;
4377
  $plugin_options ['MAX_PAGE_BLOCKS'] = ai_check_limits ($plugin_options ['MAX_PAGE_BLOCKS'], 0, 9999, DEFAULT_MAX_PAGE_BLOCKS);
4378
 
9362
  $title = $general_tag;
9363
  $short_title = $general_tag;
9364
  $category = $general_tag;
9365
+ $categories = $general_tag;
9366
+ $categories_array = array ();
9367
+ $category_slugs_array = array ();
9368
+ $categories_spaces = $general_tag;
9369
  $short_category = $general_tag;
9370
  $tag = $general_tag;
9371
+ $tags = $general_tag;
9372
+ $tags_array = array ();
9373
+ $tag_slugs_array = array ();
9374
+ $tags_spaces = $general_tag;
9375
  $smart_tag = $general_tag;
9376
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_CATEGORY) {
9377
+ $wp_categories = get_the_category();
9378
+ if (!empty ($wp_categories)) {
9379
+ $first_category = reset ($wp_categories);
9380
  $category = str_replace ("&", "and", $first_category->name);
9381
  if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
9382
  } else {
9394
  $short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
9395
  $tag = $short_title;
9396
  $smart_tag = $short_title;
9397
+
9398
+ $wp_categories = get_the_category();
9399
+ if (!empty ($wp_categories)) {
9400
+ foreach ($wp_categories as $single_category) {
9401
+ $categories_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($single_category->name) ? $single_category->name : '');
9402
+ $category_slugs_array [] = $single_category->slug;
9403
+ }
9404
+
9405
+ $categories = implode (',', $categories_array);
9406
+ $categories_spaces = implode (' ', $categories_array);
9407
+ }
9408
  } elseif (is_tag ()) {
9409
  $title = single_tag_title('', false);
9410
  $title = str_replace (array ("&", "#", '"', "'"), array ("and", "", '', ''), $title);
9418
  }
9419
  $tag = $short_title;
9420
  $smart_tag = $short_title;
9421
+
9422
+ $wp_tags = get_the_tags ();
9423
+ if (!empty ($wp_tags)) {
9424
+ foreach ($wp_tags as $single_tag) {
9425
+ $tags_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($single_tag->name) ? $single_tag->name : '');
9426
+ $tag_slugs_array [] = $single_tag->slug;
9427
+ }
9428
+
9429
+ $tags = implode (',', $tags_array);
9430
+ $tags_spaces = implode (' ', $tags_array);
9431
+ }
9432
  } elseif ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_SEARCH) {
9433
  $title = get_search_query();
9434
  $title = str_replace ("&", "and", $title);
9448
 
9449
  $short_title = implode (" ", array_slice (explode (" ", $title), 0, 3));
9450
 
9451
+ $wp_categories = get_the_category();
9452
+ if (!empty ($wp_categories)) {
9453
+ foreach ($wp_categories as $single_category) {
9454
+ $categories_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($single_category->name) ? $single_category->name : '');
9455
+ $category_slugs_array [] = $single_category->slug;
9456
+ }
9457
+
9458
+ $categories = implode (',', $categories_array);
9459
+ $categories_spaces = implode (' ', $categories_array);
9460
+
9461
+ $first_category = $categories_array [0];
9462
+ $category = $first_category;
9463
+
9464
  if ($category == _x('Uncategorized', 'category name', 'ad-inserter')) $category = $general_tag;
9465
  } else {
9466
  $category = $short_title;
9472
  $short_category = trim (substr ($short_category, 0, strpos ($short_category, "and")));
9473
  }
9474
 
9475
+ $wp_tags = get_the_tags();
9476
+ if (!empty ($wp_tags)) {
9477
+ foreach ($wp_tags as $single_tag) {
9478
+ $tags_array [] = str_replace (array ("&", "#"), array ("and", ""), isset ($single_tag->name) ? $single_tag->name : '');
9479
+ $tag_slugs_array [] = $single_tag->slug;
9480
+ }
9481
+
9482
+ $tags = implode (',', $tags_array);
9483
+ $tags_spaces = implode (' ', $tags_array);
9484
 
9485
+ $first_tag = $tags_array [0];
9486
+ $tag = $first_tag;
9487
 
9488
  $tag_array = array ();
9489
+ foreach ($wp_tags as $tag_data) {
9490
  if (isset ($tag_data->name))
9491
  $tag_array [] = explode (" ", $tag_data->name);
9492
  }
9518
  }
9519
 
9520
  if ($selected_tag == '') {
9521
+ $first_tag = $tags_array [0];
9522
+ $smart_tag = implode (" ", array_slice (explode (" ", $first_tag), 0, 3));
9523
  } else $smart_tag = implode (" ", $selected_tag);
9524
 
9525
  $smart_tag = str_replace (array ("&", "#"), array ("and", ""), $smart_tag);
9558
 
9559
  $url = remove_debug_parameters_from_url ((isset ($_SERVER ['HTTPS']) && $_SERVER ['HTTPS'] === 'on' ? "https" : "http") . '://'. $_SERVER ['HTTP_HOST'] . $_SERVER ['REQUEST_URI']);
9560
 
9561
+ $ai_wp_data [AI_TAGS]['TITLE'] = $title;
9562
+ $ai_wp_data [AI_TAGS]['SHORT_TITLE'] = $short_title;
9563
+ $ai_wp_data [AI_TAGS]['CATEGORY'] = $category;
9564
+ $ai_wp_data [AI_TAGS]['CATEGORIES'] = $categories;
9565
+ $ai_wp_data [AI_TAGS]['CATEGORIES_ARRAY'] = $categories_array;
9566
+ $ai_wp_data [AI_TAGS]['CATEGORY_SLUGS_ARRAY'] = $category_slugs_array;
9567
+ $ai_wp_data [AI_TAGS]['CATEGORIES_SPACES'] = $categories_spaces;
9568
+ $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'] = $short_category;
9569
+ $ai_wp_data [AI_TAGS]['TAG'] = $tag;
9570
+ $ai_wp_data [AI_TAGS]['TAGS'] = $tags;
9571
+ $ai_wp_data [AI_TAGS]['TAGS_ARRAY'] = $tags_array;
9572
+ $ai_wp_data [AI_TAGS]['TAG_SLUGS_ARRAY'] = $tag_slugs_array;
9573
+ $ai_wp_data [AI_TAGS]['TAGS_SPACES'] = $tags_spaces;
9574
+ $ai_wp_data [AI_TAGS]['SMART_TAG'] = $smart_tag;
9575
+ $ai_wp_data [AI_TAGS]['SEARCH_QUERY'] = $search_query;
9576
+ $ai_wp_data [AI_TAGS]['AUTHOR'] = $author;
9577
+ $ai_wp_data [AI_TAGS]['AUTHOR_NAME'] = $author_name;
9578
+ $ai_wp_data [AI_TAGS]['URL'] = $url;
9579
+ }
9580
+
9581
+ $ad_data = preg_replace ("/{title}/i", $ai_wp_data [AI_TAGS]['TITLE'], $content);
9582
+ $ad_data = preg_replace ("/{short-title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
9583
+ $ad_data = preg_replace ("/{category}/i", $ai_wp_data [AI_TAGS]['CATEGORY'], $ad_data);
9584
+ $ad_data = preg_replace ("/{categories}/i", $ai_wp_data [AI_TAGS]['CATEGORIES'], $ad_data);
9585
+ $ad_data = preg_replace ("/{categories-spaces}/i", $ai_wp_data [AI_TAGS]['CATEGORIES_SPACES'], $ad_data);
9586
+ $ad_data = preg_replace ("/{short-category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
9587
+ $ad_data = preg_replace ("/{tag}/i", $ai_wp_data [AI_TAGS]['TAG'], $ad_data);
9588
+ $ad_data = preg_replace ("/{tags}/i", $ai_wp_data [AI_TAGS]['TAGS'], $ad_data);
9589
+ $ad_data = preg_replace ("/{tags-spaces}/i", $ai_wp_data [AI_TAGS]['TAGS_SPACES'], $ad_data);
9590
+ $ad_data = preg_replace ("/{smart-tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
9591
+ $ad_data = preg_replace ("/{search-query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
9592
+ $ad_data = preg_replace ("/{author}/i", $ai_wp_data [AI_TAGS]['AUTHOR'], $ad_data);
9593
+ $ad_data = preg_replace ("/{author-name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
9594
+
9595
+ $ad_data = preg_replace ("/{short_title}/i", $ai_wp_data [AI_TAGS]['SHORT_TITLE'], $ad_data);
9596
+ $ad_data = preg_replace ("/{short_category}/i", $ai_wp_data [AI_TAGS]['SHORT_CATEGORY'], $ad_data);
9597
+ $ad_data = preg_replace ("/{smart_tag}/i", $ai_wp_data [AI_TAGS]['SMART_TAG'], $ad_data);
9598
+ $ad_data = preg_replace ("/{search_query}/i", $ai_wp_data [AI_TAGS]['SEARCH_QUERY'], $ad_data);
9599
+ $ad_data = preg_replace ("/{author_name}/i", $ai_wp_data [AI_TAGS]['AUTHOR_NAME'], $ad_data);
9600
+
9601
+ $ad_data = preg_replace ("/{url}/i", $ai_wp_data [AI_TAGS]['URL'], $ad_data);
9602
+
9603
+ if (preg_match_all ("/{tag-([\d+])}/i", $ad_data, $tag_matches)) {
9604
+ foreach ($tag_matches [1] as $tag_index) {
9605
+ $tag_to_replace = isset ($ai_wp_data [AI_TAGS]['TAGS_ARRAY'][$tag_index - 1]) ? $ai_wp_data [AI_TAGS]['TAGS_ARRAY'][$tag_index - 1] : '';
9606
+ $ad_data = preg_replace ("/{tag-$tag_index}/i", $tag_to_replace, $ad_data);
9607
+ }
9608
+ }
9609
+
9610
+ if (preg_match_all ("/{tag-slug-([\d+])}/i", $ad_data, $tag_matches)) {
9611
+ foreach ($tag_matches [1] as $tag_index) {
9612
+ $tag_to_replace = isset ($ai_wp_data [AI_TAGS]['TAG_SLUGS_ARRAY'][$tag_index - 1]) ? $ai_wp_data [AI_TAGS]['TAG_SLUGS_ARRAY'][$tag_index - 1] : '';
9613
+ $ad_data = preg_replace ("/{tag-slug-$tag_index}/i", $tag_to_replace, $ad_data);
9614
+ }
9615
+ }
9616
+
9617
+ if (preg_match_all ("/{category-([\d+])}/i", $ad_data, $category_matches)) {
9618
+ foreach ($category_matches [1] as $category_index) {
9619
+ $category_to_replace = isset ($ai_wp_data [AI_TAGS]['CATEGORIES_ARRAY'][$category_index - 1]) ? $ai_wp_data [AI_TAGS]['CATEGORIES_ARRAY'][$category_index - 1] : '';
9620
+ $ad_data = preg_replace ("/{category-$category_index}/i", $category_to_replace, $ad_data);
9621
+ }
9622
+ }
9623
+
9624
+ if (preg_match_all ("/{category-slug-([\d+])}/i", $ad_data, $category_matches)) {
9625
+ foreach ($category_matches [1] as $category_index) {
9626
+ $category_to_replace = isset ($ai_wp_data [AI_TAGS]['CATEGORY_SLUGS_ARRAY'][$category_index - 1]) ? $ai_wp_data [AI_TAGS]['CATEGORY_SLUGS_ARRAY'][$category_index - 1] : '';
9627
+ $ad_data = preg_replace ("/{category-slug-$category_index}/i", $category_to_replace, $ad_data);
9628
+ }
9629
+ }
9630
 
9631
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
9632
 
10149
  }
10150
  }
10151
 
10152
+
class.php CHANGED
@@ -576,6 +576,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
576
  $this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
577
  $this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
578
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
 
579
  $this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
580
  $this->wp_options [AI_OPTION_LABEL_IN_IFRAME] = AI_DISABLED;
581
  $this->wp_options [AI_OPTION_IFRAME_WIDTH] = DEFAULT_IFRAME_WIDTH;
@@ -721,6 +722,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
721
  return $lazy_loading;
722
  }
723
 
 
 
 
 
 
 
724
  public function get_iframe (){
725
  $option = isset ($this->wp_options [AI_OPTION_IFRAME]) ? $this->wp_options [AI_OPTION_IFRAME] : AI_DISABLED;
726
  if ($option == '') $option = AI_DISABLED;
@@ -3233,7 +3240,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3233
 
3234
  // LAZY LOADING
3235
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3236
- // Lazy loading code for all cases except W3TC with ROTATE separator
3237
  if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3238
 
3239
  if ($this->w3tc_code != '') {
@@ -3253,6 +3259,27 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3253
  }
3254
  }
3255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3256
  // LISTS, COOKIE
3257
  if ($not_iframe_or_inside) {
3258
 
@@ -3381,7 +3408,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3381
 
3382
  switch ($dynamic_blocks) {
3383
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
3384
- $processed_code = "\n<div class='ai-dynamic ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}>{$processed_code}</div>\n";
 
 
 
 
3385
 
3386
  if ($scheduling_type !== null) {
3387
  $processed_code .= "<div class='ai-fallback'>{$fallback_code}</div>\n";
@@ -3395,6 +3426,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3395
  $list_class = ' ' . $block_id ;
3396
  } else $list_class = '';
3397
 
 
 
 
 
3398
  $processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}{$code_data}{$fallback_code_data}></div>\n";
3399
 
3400
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
@@ -3864,7 +3899,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3864
 
3865
  if ($this->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
3866
 
3867
- if ($this->get_lazy_loading ()) $this->needs_class = true;
3868
  // if ($this->client_side_list_detection && !$ai_wp_data [AI_WP_AMP_PAGE]) $this->needs_class = true;
3869
 
3870
  $block_class_name = get_block_class_name ($this->needs_class);
576
  $this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
577
  $this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
578
  $this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
579
+ $this->wp_options [AI_OPTION_MANUAL_LOADING] = AI_MANUAL_LOADING_DISABLED;
580
  $this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
581
  $this->wp_options [AI_OPTION_LABEL_IN_IFRAME] = AI_DISABLED;
582
  $this->wp_options [AI_OPTION_IFRAME_WIDTH] = DEFAULT_IFRAME_WIDTH;
722
  return $lazy_loading;
723
  }
724
 
725
+ public function get_manual_loading (){
726
+ $manual_loading = isset ($this->wp_options [AI_OPTION_MANUAL_LOADING]) ? $this->wp_options [AI_OPTION_MANUAL_LOADING] : AI_MANUAL_LOADING_DISABLED;
727
+ if ($manual_loading == '') $manual_loading = AI_MANUAL_LOADING_DISABLED;
728
+ return $manual_loading;
729
+ }
730
+
731
  public function get_iframe (){
732
  $option = isset ($this->wp_options [AI_OPTION_IFRAME]) ? $this->wp_options [AI_OPTION_IFRAME] : AI_DISABLED;
733
  if ($option == '') $option = AI_DISABLED;
3240
 
3241
  // LAZY LOADING
3242
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
 
3243
  if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3244
 
3245
  if ($this->w3tc_code != '') {
3259
  }
3260
  }
3261
 
3262
+ // MANUAL LOADING
3263
+ if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3264
+ if ($this->get_manual_loading () == AI_MANUAL_LOADING_ALWAYS && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3265
+
3266
+ if ($this->w3tc_code != '') {
3267
+ if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3268
+ $this->w3tc_debug []= 'PROCESS MANUAL LOADING';
3269
+ }
3270
+ }
3271
+
3272
+ $manual_code = $this->base64_encode_w3tc ($processed_code);
3273
+ $wrapper_class = base64_encode (get_block_class_name (true));
3274
+ $processed_code = '<div class="ai-manual ai-manual-' . $this->number . '" data-code="'.$manual_code.'" data-class="'.$wrapper_class.'"></div>'."\n";
3275
+
3276
+ // Recreate W3TC code
3277
+ if ($this->w3tc_code != '') {
3278
+ $processed_code = $this->regenerate_w3tc_code ($processed_code);
3279
+ }
3280
+ }
3281
+ }
3282
+
3283
  // LISTS, COOKIE
3284
  if ($not_iframe_or_inside) {
3285
 
3408
 
3409
  switch ($dynamic_blocks) {
3410
  case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
3411
+ if ($url_parameter_attributes != '' && $this->get_manual_loading () == AI_MANUAL_LOADING_AUTO) {
3412
+ $list_class = ' ai-list-manual';
3413
+ } else $list_class = '';
3414
+
3415
+ $processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}>{$processed_code}</div>\n";
3416
 
3417
  if ($scheduling_type !== null) {
3418
  $processed_code .= "<div class='ai-fallback'>{$fallback_code}</div>\n";
3426
  $list_class = ' ' . $block_id ;
3427
  } else $list_class = '';
3428
 
3429
+ if ($url_parameter_attributes != '' && $this->get_manual_loading () == AI_MANUAL_LOADING_AUTO) {
3430
+ $list_class .= ' ai-list-manual';
3431
+ }
3432
+
3433
  $processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}{$code_data}{$fallback_code_data}></div>\n";
3434
 
3435
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
3899
 
3900
  if ($this->get_disable_caching ()) $ai_wp_data [AI_DISABLE_CACHING] = true;
3901
 
3902
+ if ($this->get_lazy_loading () || $this->get_manual_loading () != AI_MANUAL_LOADING_DISABLED) $this->needs_class = true;
3903
  // if ($this->client_side_list_detection && !$ai_wp_data [AI_WP_AMP_PAGE]) $this->needs_class = true;
3904
 
3905
  $block_class_name = get_block_class_name ($this->needs_class);
constants.php CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
- define ('AD_INSERTER_VERSION', '2.6.6');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -70,6 +70,7 @@ define ('AI_OPTION_PROCESS_PHP', 'process_php');
70
  define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
71
  define ('AI_OPTION_SHOW_LABEL', 'show_label');
72
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
 
73
  define ('AI_OPTION_IFRAME', 'iframe');
74
  define ('AI_OPTION_IFRAME_WIDTH', 'iframe_width');
75
  define ('AI_OPTION_IFRAME_HEIGHT', 'iframe_height');
@@ -690,6 +691,13 @@ define ('AI_GEO_DB_MAXMIND', 1);
690
  define ('AI_TEXT_WEBNET77', 'Webnet77');
691
  define ('AI_TEXT_MAXMIND', 'MaxMind');
692
 
 
 
 
 
 
 
 
693
  define ('AI_CLOSE_NONE', 0);
694
  define ('AI_CLOSE_TOP_RIGHT', 1);
695
  define ('AI_CLOSE_TOP_LEFT', 2);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.6.7');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
70
  define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
71
  define ('AI_OPTION_SHOW_LABEL', 'show_label');
72
  define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
73
+ define ('AI_OPTION_MANUAL_LOADING', 'manual_loading');
74
  define ('AI_OPTION_IFRAME', 'iframe');
75
  define ('AI_OPTION_IFRAME_WIDTH', 'iframe_width');
76
  define ('AI_OPTION_IFRAME_HEIGHT', 'iframe_height');
691
  define ('AI_TEXT_WEBNET77', 'Webnet77');
692
  define ('AI_TEXT_MAXMIND', 'MaxMind');
693
 
694
+ define ('AI_MANUAL_LOADING_DISABLED',0);
695
+ define ('AI_MANUAL_LOADING_AUTO', 1);
696
+ define ('AI_MANUAL_LOADING_ALWAYS', 2);
697
+
698
+ define ('AI_TEXT_ENG_AUTO', 'Auto');
699
+ define ('AI_TEXT_ENG_ALWAYS', 'Always');
700
+
701
  define ('AI_CLOSE_NONE', 0);
702
  define ('AI_CLOSE_TOP_RIGHT', 1);
703
  define ('AI_CLOSE_TOP_LEFT', 2);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.6.6"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.6.7"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/js/ai-adb.js CHANGED
@@ -214,6 +214,7 @@ var ai_adb_detected = function (n) {
214
 
215
  var ai_disable_processing = function (element) {
216
  jQuery(element).find ('.ai-lazy').removeClass ('ai-lazy'); // Disable lazy loading
 
217
  jQuery(element).find ('.ai-rotate').removeClass ('ai-unprocessed').removeAttr ('data-info'); // Disable rotations
218
  jQuery(element).find ('.ai-list-data').removeClass ('ai-list-data'); // Disable lists
219
  jQuery(element).find ('.ai-ip-data').removeClass ('ai-ip-data'); // Disable IP lists
214
 
215
  var ai_disable_processing = function (element) {
216
  jQuery(element).find ('.ai-lazy').removeClass ('ai-lazy'); // Disable lazy loading
217
+ jQuery(element).find ('.ai-manual').removeClass ('ai-manual'); // Disable manual loading
218
  jQuery(element).find ('.ai-rotate').removeClass ('ai-unprocessed').removeAttr ('data-info'); // Disable rotations
219
  jQuery(element).find ('.ai-list-data').removeClass ('ai-list-data'); // Disable lists
220
  jQuery(element).find ('.ai-ip-data').removeClass ('ai-ip-data'); // Disable IP lists
includes/js/ai-adb.min.js CHANGED
@@ -5,14 +5,14 @@ function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLAS
5
  (a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var d=a(this).data("css");"undefined"==typeof d&&(d="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(c).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
6
  f=!1;else if(f){if(0!=b.length){var c=Math.round(a(this).text().length/(b.length+1));a(this).text(Array(c+1).join(b+" ").trim())}else a(this).text("");""!=d&&(c=a(this).attr("style"),"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";")),""!=d&&(d=" "+d),a(this).attr("style",c+d))}})})})(jQuery)}ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),b=jQuery("#ai-adb-events");if(0!=b.count){var d=b.text();b.text((""!=d?d+", ":d+", EVENTS: ")+a)}return c};
7
  ai_adb_detection_type=function(a){return""};
8
- var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=function(a){ai_adb_active||(ai_adb_active=!0,function(a){a(window).ready(function(){do{var b=
9
- !1;a(".ai-adb-hide").each(function(){a(this).css({display:"none",visibility:"hidden"});a(this).removeClass("ai-adb-hide");var b=a(this).closest("div[data-ai]");if("undefined"!=typeof b.attr("data-ai")){var c=JSON.parse(b64d(b.attr("data-ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",b.attr("data-ai",b64e(JSON.stringify(c))))}ai_disable_processing(a(this))});a(".ai-adb-show").each(function(){a(this).css({display:"block",visibility:"visible"});a(this).removeClass("ai-adb-show");if("undefined"!=
10
- typeof a(this).data("code")){var c=b64d(a(this).data("code"));a(this).append(c);b=!0;"function"==typeof ai_process_elements&&ai_process_elements()}c=a(this).attr("data-ai-tracking");if("undefined"!=typeof c){var d=a(this).closest("div[data-ai]");if("undefined"!=typeof d.attr("data-ai")){if(a(this).hasClass("ai-no-tracking")){var e=JSON.parse(b64d(d.attr("data-ai")));"undefined"!==typeof e&&e.constructor===Array&&(e[1]="",c=b64e(JSON.stringify(e)))}d.attr("data-ai",c)}}})}while(b);setTimeout(ai_adb_process_content,
11
- 10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==
12
- c){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible||(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor",
13
- "pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+
14
- 1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(ai_adb=!1,jQuery(".ai-adb-hide").each(function(){if(0==jQuery(this).outerHeight()&&0==jQuery(this).closest(".ai-adb-show").length){var a=jQuery(this).closest("div[data-ai]");if("undefined"!=
15
- typeof a.attr("data-ai")){var b=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof b&&b.constructor===Array&&(b[1]="",a.attr("data-ai",b64e(JSON.stringify(b))),a.addClass("ai-viewport-0").css("display","none"))}}}),jQuery(".ai-adb-show").each(function(){ai_disable_processing(jQuery(this))}),window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
16
  jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,b=0,d=ai_adb_selectors.split(",");a.each(d,function(e){d[e]=d[e].trim();0!=a(d[e]).length&&a(d[e]).each(function(d){var e=
17
  a(this).outerHeight();d=a(this).find(".ai-attributes");d.length&&d.each(function(){e>=a(this).outerHeight()&&(e-=a(this).outerHeight())});c++;if(0===e&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),b++,!ai_debugging_active))return!1})});0!=c&&0==b&&a(document).ready(function(){ai_adb_undetected(4)})}})});
18
  function ai_adb_get_script(a,c){var b=document.createElement("script");b.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var d=document.getElementsByTagName("head")[0],e=!1;b.onerror=function(){c&&c();b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){e||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(e=!0,c&&c(),b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)}
5
  (a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var c=a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var d=a(this).data("css");"undefined"==typeof d&&(d="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(c).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
6
  f=!1;else if(f){if(0!=b.length){var c=Math.round(a(this).text().length/(b.length+1));a(this).text(Array(c+1).join(b+" ").trim())}else a(this).text("");""!=d&&(c=a(this).attr("style"),"undefined"==typeof c?c="":(c=c.trim(),""!=c&&";"!=c[c.length-1]&&(c+=";")),""!=d&&(d=" "+d),a(this).attr("style",c+d))}})})})(jQuery)}ai_adb_detection_type_log=function(a){var c=ai_adb_detection_type(a),b=jQuery("#ai-adb-events");if(0!=b.count){var d=b.text();b.text((""!=d?d+", ":d+", EVENTS: ")+a)}return c};
7
  ai_adb_detection_type=function(a){return""};
8
+ var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-manual").removeClass("ai-manual");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=
9
+ function(a){ai_adb_active||(ai_adb_active=!0,function(a){a(window).ready(function(){do{var b=!1;a(".ai-adb-hide").each(function(){a(this).css({display:"none",visibility:"hidden"});a(this).removeClass("ai-adb-hide");var b=a(this).closest("div[data-ai]");if("undefined"!=typeof b.attr("data-ai")){var c=JSON.parse(b64d(b.attr("data-ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",b.attr("data-ai",b64e(JSON.stringify(c))))}ai_disable_processing(a(this))});a(".ai-adb-show").each(function(){a(this).css({display:"block",
10
+ visibility:"visible"});a(this).removeClass("ai-adb-show");if("undefined"!=typeof a(this).data("code")){var c=b64d(a(this).data("code"));a(this).append(c);b=!0;"function"==typeof ai_process_elements&&ai_process_elements()}c=a(this).attr("data-ai-tracking");if("undefined"!=typeof c){var d=a(this).closest("div[data-ai]");if("undefined"!=typeof d.attr("data-ai")){if(a(this).hasClass("ai-no-tracking")){var e=JSON.parse(b64d(d.attr("data-ai")));"undefined"!==typeof e&&e.constructor===Array&&(e[1]="",c=
11
+ b64e(JSON.stringify(e)))}d.attr("data-ai",c)}}})}while(b);setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);
12
+ if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==c){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible||(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),
13
+ ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor","pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),
14
+ "undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(ai_adb=!1,jQuery(".ai-adb-hide").each(function(){if(0==jQuery(this).outerHeight()&&0==jQuery(this).closest(".ai-adb-show").length){var a=
15
+ jQuery(this).closest("div[data-ai]");if("undefined"!=typeof a.attr("data-ai")){var b=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof b&&b.constructor===Array&&(b[1]="",a.attr("data-ai",b64e(JSON.stringify(b))),a.addClass("ai-viewport-0").css("display","none"))}}}),jQuery(".ai-adb-show").each(function(){ai_disable_processing(jQuery(this))}),window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
16
  jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var c=0,b=0,d=ai_adb_selectors.split(",");a.each(d,function(e){d[e]=d[e].trim();0!=a(d[e]).length&&a(d[e]).each(function(d){var e=
17
  a(this).outerHeight();d=a(this).find(".ai-attributes");d.length&&d.each(function(){e>=a(this).outerHeight()&&(e-=a(this).outerHeight())});c++;if(0===e&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),b++,!ai_debugging_active))return!1})});0!=c&&0==b&&a(document).ready(function(){ai_adb_undetected(4)})}})});
18
  function ai_adb_get_script(a,c){var b=document.createElement("script");b.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var d=document.getElementsByTagName("head")[0],e=!1;b.onerror=function(){c&&c();b.onerror=null;d.removeChild(b)};b.onload=b.onreadystatechange=function(){e||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(e=!0,c&&c(),b.onload=b.onreadystatechange=null,d.removeChild(b))};d.appendChild(b)}
includes/js/ai-cookie.js CHANGED
@@ -193,9 +193,15 @@ ai_check_block = function (block) {
193
 
194
  if (ai_cookie.hasOwnProperty (block)) {
195
  for (var cookie_block_property in ai_cookie [block]) {
 
196
  if (cookie_block_property == 'x') {
197
 
198
- var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
 
 
 
 
 
199
  var cookie_code_hash = '';
200
  if (ai_cookie [block].hasOwnProperty ('h')) {
201
  cookie_code_hash = ai_cookie [block]['h'];
@@ -232,7 +238,12 @@ ai_check_block = function (block) {
232
  } else
233
  if (cookie_block_property == 'i') {
234
 
235
- var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
 
 
 
 
 
236
  var cookie_code_hash = '';
237
  if (ai_cookie [block].hasOwnProperty ('h')) {
238
  cookie_code_hash = ai_cookie [block]['h'];
@@ -289,7 +300,12 @@ ai_check_block = function (block) {
289
  }
290
  if (cookie_block_property == 'c') {
291
 
292
- var code_hash = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0].dataset.aiHash;
 
 
 
 
 
293
  var cookie_code_hash = '';
294
  if (ai_cookie [block].hasOwnProperty ('h')) {
295
  cookie_code_hash = ai_cookie [block]['h'];
193
 
194
  if (ai_cookie.hasOwnProperty (block)) {
195
  for (var cookie_block_property in ai_cookie [block]) {
196
+
197
  if (cookie_block_property == 'x') {
198
 
199
+ var code_hash = '';
200
+ var block_object = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0]
201
+ if ("aiHash" in block_object.dataset) {
202
+ code_hash = block_object.dataset.aiHash;
203
+ }
204
+
205
  var cookie_code_hash = '';
206
  if (ai_cookie [block].hasOwnProperty ('h')) {
207
  cookie_code_hash = ai_cookie [block]['h'];
238
  } else
239
  if (cookie_block_property == 'i') {
240
 
241
+ var code_hash = '';
242
+ var block_object = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0]
243
+ if ("aiHash" in block_object.dataset) {
244
+ code_hash = block_object.dataset.aiHash;
245
+ }
246
+
247
  var cookie_code_hash = '';
248
  if (ai_cookie [block].hasOwnProperty ('h')) {
249
  cookie_code_hash = ai_cookie [block]['h'];
300
  }
301
  if (cookie_block_property == 'c') {
302
 
303
+ var code_hash = '';
304
+ var block_object = document.querySelectorAll ('span[data-ai-block="'+block+'"]') [0]
305
+ if ("aiHash" in block_object.dataset) {
306
+ code_hash = block_object.dataset.aiHash;
307
+ }
308
+
309
  var cookie_code_hash = '';
310
  if (ai_cookie [block].hasOwnProperty ('h')) {
311
  cookie_code_hash = ai_cookie [block]['h'];
includes/js/ai-cookie.min.js CHANGED
@@ -1,13 +1,13 @@
1
  var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};
2
- (function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var f=window.Cookies,c=window.Cookies=a();c.noConflict=function(){window.Cookies=f;return c}}})(function(){function a(){for(var a=0,b={};a<arguments.length;a++){var e=arguments[a],d;for(d in e)b[d]=e[d]}return b}function b(f){function c(){}function e(b,d,e){if("undefined"!==typeof document){e=a({path:"/"},c.defaults,e);"number"===typeof e.expires&&(e.expires=new Date(1*
3
  new Date+864E5*e.expires));e.expires=e.expires?e.expires.toUTCString():"";try{var g=JSON.stringify(d);/^[\{\[]/.test(g)&&(d=g)}catch(n){}d=f.write?f.write(d,b):encodeURIComponent(String(d)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);g="";for(var k in e)e[k]&&(g+="; "+k,!0!==e[k]&&(g+="="+e[k].split(";")[0]));return document.cookie=b+"="+d+g}}
4
  function d(a,b){if("undefined"!==typeof document){for(var c={},d=document.cookie?document.cookie.split("; "):[],e=0;e<d.length;e++){var g=d[e].split("="),h=g.slice(1).join("=");b||'"'!==h.charAt(0)||(h=h.slice(1,-1));try{var l=g[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);h=(f.read||f)(h,l)||h.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{h=JSON.parse(h)}catch(m){}c[l]=h;if(a===l)break}catch(m){}}return a?c[a]:c}}c.set=e;c.get=function(a){return d(a,!1)};c.getJSON=function(a){return d(a,
5
  !0)};c.remove=function(b,c){e(b,"",a(c,{expires:-1}))};c.defaults={};c.withConverter=b;return c}return b(function(){})});AiCookies=Cookies.noConflict();
6
- ai_check_block=function(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var f in b[a]){if("x"==f){var c=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0].dataset.aiHash,e="";b[a].hasOwnProperty("h")&&(e=b[a].h);var d=new Date;d=b[a][f]-Math.round(d.getTime()/1E3);if(0<d&&e==c)return ai_debug_cookie_status=
7
- a="closed for "+d+" s = "+Math.round(1E4*d/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==f){if(0!=b[a][f])return ai_debug_cookie_status=a="delayed for "+b[a][f]+" pageviews",!1}else if("i"==f){c=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0].dataset.aiHash;e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==c)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>b[a][f]&&e==
8
- c){d=new Date;d=-b[a][f]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"i","");b[a].hasOwnProperty("c")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==f&&0==b[a][f]&&(d=new Date,c=Math.round(d.getTime()/1E3),d=b[a].it-c,0<d))return ai_debug_cookie_status=a="max imp. per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;if("c"==f){c=document.querySelectorAll('span[data-ai-block="'+
9
- a+'"]')[0].dataset.aiHash;e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==c)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>b[a][f]&&e==c){d=new Date;d=-b[a][f]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"c","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==f&&0==b[a][f]&&(d=new Date,c=Math.round(d.getTime()/1E3),d=b[a].ct-
10
- c,0<d))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}ai_debug_cookie_status="OK";return!0};
11
  ai_check_and_insert_block=function(a,b){var f=document.getElementsByClassName(b);if(f.length){f=f[0];var c=f.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a))ai_insert_code(f),c&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""));else{var e=f.closest("div[data-ai]");if("undefined"!=typeof e.getAttribute("data-ai")){var d=JSON.parse(b64d(e.getAttribute("data-ai")));"undefined"!==typeof d&&d.constructor===Array&&
12
  (d[1]="",e.setAttribute("data-ai",b64e(JSON.stringify(d))))}e=c.querySelectorAll(".ai-debug-block");c&&e.length&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""))}f.classList.remove(b)}f=document.querySelectorAll("."+b+"-dbg");f=$jscomp.makeIterator(f);for(c=f.next();!c.done;c=f.next())c=c.value,c.querySelector(".ai-status").textContent=ai_debug_cookie_status,c.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),
13
  c.classList.remove(b+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var f="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(f=c[a][b]);return f}
1
  var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};
2
+ (function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var f=window.Cookies,c=window.Cookies=a();c.noConflict=function(){window.Cookies=f;return c}}})(function(){function a(){for(var a=0,c={};a<arguments.length;a++){var b=arguments[a],d;for(d in b)c[d]=b[d]}return c}function b(f){function c(){}function e(b,d,e){if("undefined"!==typeof document){e=a({path:"/"},c.defaults,e);"number"===typeof e.expires&&(e.expires=new Date(1*
3
  new Date+864E5*e.expires));e.expires=e.expires?e.expires.toUTCString():"";try{var g=JSON.stringify(d);/^[\{\[]/.test(g)&&(d=g)}catch(n){}d=f.write?f.write(d,b):encodeURIComponent(String(d)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);g="";for(var k in e)e[k]&&(g+="; "+k,!0!==e[k]&&(g+="="+e[k].split(";")[0]));return document.cookie=b+"="+d+g}}
4
  function d(a,b){if("undefined"!==typeof document){for(var c={},d=document.cookie?document.cookie.split("; "):[],e=0;e<d.length;e++){var g=d[e].split("="),h=g.slice(1).join("=");b||'"'!==h.charAt(0)||(h=h.slice(1,-1));try{var l=g[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);h=(f.read||f)(h,l)||h.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{h=JSON.parse(h)}catch(m){}c[l]=h;if(a===l)break}catch(m){}}return a?c[a]:c}}c.set=e;c.get=function(a){return d(a,!1)};c.getJSON=function(a){return d(a,
5
  !0)};c.remove=function(b,c){e(b,"",a(c,{expires:-1}))};c.defaults={};c.withConverter=b;return c}return b(function(){})});AiCookies=Cookies.noConflict();
6
+ ai_check_block=function(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var f in b[a]){if("x"==f){var c="",e=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in e.dataset&&(c=e.dataset.aiHash);e="";b[a].hasOwnProperty("h")&&(e=b[a].h);var d=new Date;d=b[a][f]-Math.round(d.getTime()/
7
+ 1E3);if(0<d&&e==c)return ai_debug_cookie_status=a="closed for "+d+" s = "+Math.round(1E4*d/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==f){if(0!=b[a][f])return ai_debug_cookie_status=a="delayed for "+b[a][f]+" pageviews",!1}else if("i"==f){c="";e=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in e.dataset&&(c=e.dataset.aiHash);e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==
8
+ c)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>b[a][f]&&e==c){d=new Date;d=-b[a][f]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"i","");b[a].hasOwnProperty("c")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==f&&0==b[a][f]&&(d=new Date,c=Math.round(d.getTime()/1E3),d=b[a].it-c,0<d))return ai_debug_cookie_status=a="max imp. per time reached ("+Math.round(1E4*
9
+ d/24/3600)/1E4+" days = "+d+" s)",!1;if("c"==f){c="";e=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in e.dataset&&(c=e.dataset.aiHash);e="";b[a].hasOwnProperty("h")&&(e=b[a].h);if(0==b[a][f]&&e==c)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>b[a][f]&&e==c){d=new Date;d=-b[a][f]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"c","");b[a].hasOwnProperty("i")||
10
+ b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==f&&0==b[a][f]&&(d=new Date,c=Math.round(d.getTime()/1E3),d=b[a].ct-c,0<d))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}ai_debug_cookie_status="OK";return!0};
11
  ai_check_and_insert_block=function(a,b){var f=document.getElementsByClassName(b);if(f.length){f=f[0];var c=f.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a))ai_insert_code(f),c&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""));else{var e=f.closest("div[data-ai]");if("undefined"!=typeof e.getAttribute("data-ai")){var d=JSON.parse(b64d(e.getAttribute("data-ai")));"undefined"!==typeof d&&d.constructor===Array&&
12
  (d[1]="",e.setAttribute("data-ai",b64e(JSON.stringify(d))))}e=c.querySelectorAll(".ai-debug-block");c&&e.length&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""))}f.classList.remove(b)}f=document.querySelectorAll("."+b+"-dbg");f=$jscomp.makeIterator(f);for(c=f.next();!c.done;c=f.next())c=c.value,c.querySelector(".ai-status").textContent=ai_debug_cookie_status,c.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),
13
  c.classList.remove(b+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var f="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(f=c[a][b]);return f}
includes/js/ai-lists.js CHANGED
@@ -184,6 +184,7 @@ jQuery (function ($) {
184
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
185
  }
186
 
 
187
  if (enable_block) {
188
  var parameter_list = $(this).attr ("parameter-list");
189
  if (typeof parameter_list != "undefined") {
@@ -221,6 +222,12 @@ jQuery (function ($) {
221
  if (!found) enable_block = false;
222
  break;
223
  }
 
 
 
 
 
 
224
 
225
  if (ai_debug) console.log ("AI LISTS list found", found);
226
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
@@ -287,6 +294,12 @@ jQuery (function ($) {
287
  }
288
  }
289
 
 
 
 
 
 
 
290
  $(this).css ({"visibility": "", "position": "", "width": "", "height": "", "z-index": ""});
291
 
292
  if (!enable_block) {
@@ -333,7 +346,7 @@ jQuery (function ($) {
333
  if (block_wrapping_div.hasClass ('ai-remove-position')) {
334
  block_wrapping_div.css ({"position": ""});
335
  }
336
-
337
  if (typeof $(this).data ('code') != 'undefined') {
338
  var block_code = b64d ($(this).data ('code'));
339
  $(this).append (block_code);
184
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
185
  }
186
 
187
+ var url_parameters_manual_loading = false;
188
  if (enable_block) {
189
  var parameter_list = $(this).attr ("parameter-list");
190
  if (typeof parameter_list != "undefined") {
222
  if (!found) enable_block = false;
223
  break;
224
  }
225
+
226
+ if (!enable_block && $(this).hasClass ('ai-list-manual')) {
227
+ // Manual load AUTO
228
+ url_parameters_manual_loading = true;
229
+ $(this).addClass ('ai-list-data');
230
+ } else $(this).removeClass ('ai-list-manual');
231
 
232
  if (ai_debug) console.log ("AI LISTS list found", found);
233
  if (ai_debug) console.log ("AI LISTS list pass", enable_block);
294
  }
295
  }
296
 
297
+ // Cookie list not passed and has manual loading set to Auto
298
+ if (url_parameters_manual_loading) {
299
+ if (ai_debug) console.log ("AI LISTS MANUAL LOADING, NO ACTION");
300
+ return; // Continue each
301
+ }
302
+
303
  $(this).css ({"visibility": "", "position": "", "width": "", "height": "", "z-index": ""});
304
 
305
  if (!enable_block) {
346
  if (block_wrapping_div.hasClass ('ai-remove-position')) {
347
  block_wrapping_div.css ({"position": ""});
348
  }
349
+
350
  if (typeof $(this).data ('code') != 'undefined') {
351
  var block_code = b64d ($(this).data ('code'));
352
  $(this).append (block_code);
includes/js/ai-lists.min.js CHANGED
@@ -1,10 +1,11 @@
1
- jQuery(function(a){function h(a){a=a.match(b);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function p(a){try{var d=Date.parse(a);isNaN(d)&&(d=null)}catch(m){d=null}return d}Array.prototype.includes||(Array.prototype.includes=function(a){return!!~this.indexOf(a)});var b=/:\/\/(.[^/:]+)/i;ai_process_lists=function(b){b=null==b?a("div.ai-list-data"):b.filter(".ai-list-data");if(b.length){b.removeClass("ai-list-data");var d=document.cookie.split(";");d.forEach(function(a,
2
- c){d[c]=a.trim()});var m=getAllUrlParams(window.location.search);if(null!=m.referrer)var l=m.referrer;else l=document.referrer,""!=l&&(l=h(l));if("undefined"!==typeof MobileDetect)var n=new MobileDetect(window.navigator.userAgent);b.each(function(){var b=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,e=a(this).attr("referer-list");if("undefined"!=typeof e){e=b64d(e).split(",");var g=a(this).attr("referer-list-type"),f=!1;a.each(e,function(a,b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==
3
- b.charAt(b.length-1)){if(b=b.substr(1,b.length-2),-1!=l.indexOf(b))return f=!0,!1}else{if(b=b.substr(1),l.substr(-b.length)==b)return f=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==l.indexOf(b))return f=!0,!1}else if("#"==b){if(""==l)return f=!0,!1}else if(b==l)return f=!0,!1});switch(g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}}e=a(this).attr("client-list");if("undefined"!=typeof e&&"undefined"!==typeof n)switch(e=b64d(e).split(","),g=a(this).attr("client-list-type"),
4
- f=!1,a.each(e,function(a,b){if(""==b)return!0;if(n.is(b))return f=!0,!1}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}if(c&&(e=a(this).attr("parameter-list"),"undefined"!=typeof e))switch(e=b64d(e).split(","),g=a(this).attr("parameter-list-type"),f=!1,a.each(e,function(a,b){if(-1!=b.indexOf("=")){if(-1!=d.indexOf(b))return f=!0,!1}else d.forEach(function(a){a=a.split("=");if(b==a[0])return f=!0,!1})}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}var k=a(this).prevAll(".ai-debug-bar.ai-debug-lists");
5
- e=""==l?"#":l;k.find(".ai-debug-name.ai-list-info").text(e).attr("title",window.navigator.userAgent);k.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);e=!1;if(c){var h=a(this).attr("scheduling-start");k=a(this).attr("scheduling-end");var q=a(this).attr("scheduling-days");if("undefined"!=typeof h&&"undefined"!=typeof k&&"undefined"!=typeof q){e=!0;var m=parseInt(a(this).attr("scheduling-fallback"));g=parseInt(a(this).attr("gmt"));var r=p(b64d(h))+g;k=p(b64d(k))+g;h=b64d(q).split(",");
6
- q=a(this).attr("scheduling-type");var t=(new Date).getTime()+g,u=new Date(t);g=u.getDay();0==g?g=6:g--;r=t>=r&&t<k&&h.includes(g.toString());switch(q){case "B":r=!r}r||(c=!1);q=u.toISOString().split(".")[0].replace("T"," ");k=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");k.find(".ai-debug-name.ai-scheduling-info").text(q+" "+g);k.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==m||(k.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),
7
- k.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+m))}}a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),a(this).append(c),ai_process_element(this))):e&&!r&&0!=m?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=
8
- typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=b.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&b.attr("data-ai",c))):(a(this).hide(),b.removeAttr("data-ai").removeClass("ai-track"),b.find(".ai-debug-block").length?(b.css({visibility:""}).removeClass("ai-close"),b.hasClass("ai-remove-position")&&b.css({position:""})):b.hide());a(this).attr("data-code",
9
- "");a(this).attr("data-fallback-code","");b.removeClass("ai-list-block")})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data",a))},5)}
10
- function getAllUrlParams(a){var h=a?a.split("?")[1]:window.location.search.slice(1);a={};if(h){h=h.split("#")[0];h=h.split("&");for(var p=0;p<h.length;p++){var b=h[p].split("="),n=void 0,d=b[0].replace(/\[\d*\]/,function(a){n=a.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];d=d.toLowerCase();b=b.toLowerCase();a[d]?("string"===typeof a[d]&&(a[d]=[a[d]]),"undefined"===typeof n?a[d].push(b):a[d][n]=b):a[d]=b}}return a};
 
1
+ jQuery(function(a){function f(a){a=a.match(b);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function q(a){try{var d=Date.parse(a);isNaN(d)&&(d=null)}catch(n){d=null}return d}Array.prototype.includes||(Array.prototype.includes=function(a){return!!~this.indexOf(a)});var b=/:\/\/(.[^/:]+)/i;ai_process_lists=function(b){b=null==b?a("div.ai-list-data"):b.filter(".ai-list-data");if(b.length){b.removeClass("ai-list-data");var d=document.cookie.split(";");d.forEach(function(a,
2
+ c){d[c]=a.trim()});var n=getAllUrlParams(window.location.search);if(null!=n.referrer)var l=n.referrer;else l=document.referrer,""!=l&&(l=f(l));if("undefined"!==typeof MobileDetect)var p=new MobileDetect(window.navigator.userAgent);b.each(function(){var b=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,h=a(this).attr("referer-list");if("undefined"!=typeof h){h=b64d(h).split(",");var g=a(this).attr("referer-list-type"),e=!1;a.each(h,function(a,b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==
3
+ b.charAt(b.length-1)){if(b=b.substr(1,b.length-2),-1!=l.indexOf(b))return e=!0,!1}else{if(b=b.substr(1),l.substr(-b.length)==b)return e=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==l.indexOf(b))return e=!0,!1}else if("#"==b){if(""==l)return e=!0,!1}else if(b==l)return e=!0,!1});switch(g){case "B":e&&(c=!1);break;case "W":e||(c=!1)}}h=a(this).attr("client-list");if("undefined"!=typeof h&&"undefined"!==typeof p)switch(h=b64d(h).split(","),g=a(this).attr("client-list-type"),
4
+ e=!1,a.each(h,function(a,b){if(""==b)return!0;if(p.is(b))return e=!0,!1}),g){case "B":e&&(c=!1);break;case "W":e||(c=!1)}h=!1;if(c&&(g=a(this).attr("parameter-list"),"undefined"!=typeof g)){g=b64d(g).split(",");var m=a(this).attr("parameter-list-type");e=!1;a.each(g,function(a,b){if(-1!=b.indexOf("=")){if(-1!=d.indexOf(b))return e=!0,!1}else d.forEach(function(a){a=a.split("=");if(b==a[0])return e=!0,!1})});switch(m){case "B":e&&(c=!1);break;case "W":e||(c=!1)}!c&&a(this).hasClass("ai-list-manual")?
5
+ (h=!0,a(this).addClass("ai-list-data")):a(this).removeClass("ai-list-manual")}var k=a(this).prevAll(".ai-debug-bar.ai-debug-lists");g=""==l?"#":l;k.find(".ai-debug-name.ai-list-info").text(g).attr("title",window.navigator.userAgent);k.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);g=!1;if(c){var f=a(this).attr("scheduling-start");k=a(this).attr("scheduling-end");var r=a(this).attr("scheduling-days");if("undefined"!=typeof f&&"undefined"!=typeof k&&"undefined"!=typeof r){g=
6
+ !0;var n=parseInt(a(this).attr("scheduling-fallback"));m=parseInt(a(this).attr("gmt"));var t=q(b64d(f))+m;k=q(b64d(k))+m;f=b64d(r).split(",");r=a(this).attr("scheduling-type");var u=(new Date).getTime()+m,v=new Date(u);m=v.getDay();0==m?m=6:m--;t=u>=t&&u<k&&f.includes(m.toString());switch(r){case "B":t=!t}t||(c=!1);r=v.toISOString().split(".")[0].replace("T"," ");k=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");k.find(".ai-debug-name.ai-scheduling-info").text(r+" "+m);k.find(".ai-debug-name.ai-scheduling-status").text(c?
7
+ ai_front.visible:ai_front.hidden);c||0==n||(k.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),k.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+n))}}h||(a(this).css({visibility:"",position:"",width:"",height:"","z-index":""}),c?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),a(this).append(c),ai_process_element(this))):g&&!t&&0!=n?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&
8
+ b.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=b.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&b.attr("data-ai",c))):(a(this).hide(),b.removeAttr("data-ai").removeClass("ai-track"),b.find(".ai-debug-block").length?(b.css({visibility:""}).removeClass("ai-close"),
9
+ b.hasClass("ai-remove-position")&&b.css({position:""})):b.hide()),a(this).attr("data-code",""),a(this).attr("data-fallback-code",""),b.removeClass("ai-list-block"))})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});
10
+ function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data",a))},5)}
11
+ function getAllUrlParams(a){var f=a?a.split("?")[1]:window.location.search.slice(1);a={};if(f){f=f.split("#")[0];f=f.split("&");for(var q=0;q<f.length;q++){var b=f[q].split("="),p=void 0,d=b[0].replace(/\[\d*\]/,function(a){p=a.slice(1,-1);return""});b="undefined"===typeof b[1]?"":b[1];d=d.toLowerCase();b=b.toLowerCase();a[d]?("string"===typeof a[d]&&(a[d]=[a[d]]),"undefined"===typeof p?a[d].push(b):a[d][p]=b):a[d]=b}}return a};
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.6.6";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.6.7";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
languages/ad-inserter-pl_PL.mo ADDED
Binary file
languages/ad-inserter-pl_PL.po ADDED
@@ -0,0 +1,6604 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: Ad Inserter Pro\n"
4
+ "POT-Creation-Date: 2020-04-07 18:01+0200\n"
5
+ "PO-Revision-Date: 2020-04-07 18:06+0200\n"
6
+ "Last-Translator: Julian Korgol <julian.korgol@gmail.com>\n"
7
+ "Language-Team: Julian Korgol <julian.korgol@gmail.com>\n"
8
+ "Language: pl_PL\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 "
13
+ "|| n%100>14) ? 1 : 2);\n"
14
+ "X-Generator: Poedit 2.3\n"
15
+ "X-Poedit-Basepath: ..\n"
16
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
17
+ "X-Poedit-WPHeader: ad-inserter.php\n"
18
+ "X-Poedit-SourceCharset: UTF-8\n"
19
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
20
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
21
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
22
+ "X-Poedit-SearchPath-0: .\n"
23
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
24
+
25
+ #: ad-inserter.php:390
26
+ msgctxt "Menu item"
27
+ msgid "Debugging DEMO"
28
+ msgstr "Debugowanie DEMO"
29
+
30
+ #: ad-inserter.php:406
31
+ msgctxt "Menu item"
32
+ msgid "Label Blocks"
33
+ msgstr "Bloki etykiet"
34
+
35
+ #: ad-inserter.php:413
36
+ msgctxt "Menu item"
37
+ msgid "Show Positions"
38
+ msgstr "Pokaż pozycje"
39
+
40
+ #: ad-inserter.php:498
41
+ msgctxt "Menu item"
42
+ msgid "Show HTML Tags"
43
+ msgstr "Pokaż znaczniki HTML"
44
+
45
+ #: ad-inserter.php:505
46
+ msgctxt "Menu item"
47
+ msgid "Disable Insertion"
48
+ msgstr "Wyłącz wstawianie"
49
+
50
+ #: ad-inserter.php:514
51
+ msgctxt "Menu item"
52
+ msgid "Ad Blocking Status"
53
+ msgstr "Stan blokowania reklam"
54
+
55
+ #: ad-inserter.php:521
56
+ msgctxt "Menu item"
57
+ msgid "Simulate Ad Blocking"
58
+ msgstr "Symuluj blokowanie reklam"
59
+
60
+ #: ad-inserter.php:532
61
+ msgctxt "Menu item"
62
+ msgid "Log Processing"
63
+ msgstr "Przetwarzanie dzienników"
64
+
65
+ #: ad-inserter.php:539
66
+ msgctxt "Menu item"
67
+ msgid "Show Log"
68
+ msgstr "Pokaż logi"
69
+
70
+ #. translators: Debugging position name Before HTML element
71
+ #: ad-inserter.php:1163
72
+ msgid "Before"
73
+ msgstr "Przed"
74
+
75
+ #. translators: Debugging position name After HTML element
76
+ #: ad-inserter.php:1168
77
+ msgid "After"
78
+ msgstr "Po"
79
+
80
+ #. translators: Debugging position name Prepend content of HTML element (before the content of the HTML element)
81
+ #: ad-inserter.php:1173 strings.php:103
82
+ msgid "Prepend content"
83
+ msgstr "Przygotowywanie zawartości"
84
+
85
+ #. translators: Debugging position name Append content of HTML element (after the content of the HTML element)
86
+ #: ad-inserter.php:1178 strings.php:104
87
+ msgid "Append content"
88
+ msgstr "Dołącz zawartość"
89
+
90
+ #. translators: Debugging position name Replace content of HTML element
91
+ #: ad-inserter.php:1183 strings.php:105
92
+ msgid "Replace content"
93
+ msgstr "Zamień zawartość"
94
+
95
+ #: ad-inserter.php:1188 strings.php:155
96
+ msgid "Replace"
97
+ msgstr "Zastąp"
98
+
99
+ #. translators: Debugging message when output buffering is enabled
100
+ #: ad-inserter.php:1235
101
+ msgid "OUTPUT BUFFERING"
102
+ msgstr "BUFOROWANIE DANYCH WYJŚCIOWYCH"
103
+
104
+ #. translators: Debugging position
105
+ #: ad-inserter.php:1239
106
+ msgid "Above Header"
107
+ msgstr "Powyżej Nagłówka"
108
+
109
+ #: ad-inserter.php:1534
110
+ msgctxt "Menu item"
111
+ msgid "Log In"
112
+ msgstr "Zaloguj się"
113
+
114
+ #. translators: %s: Ad Inserter
115
+ #: ad-inserter.php:1869 ad-inserter.php:2964
116
+ #, php-format
117
+ msgid "%s Settings"
118
+ msgstr "%s Ustawienia"
119
+
120
+ #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
121
+ #: ad-inserter.php:2355
122
+ msgid "AD BLOCKING DETECTED, PAGE VIEWS"
123
+ msgstr "WYKRYTO BLOKOWANIE REKLAM, WYŚWIETLENIA STRONY"
124
+
125
+ #: ad-inserter.php:2355
126
+ msgid "NO ACTION"
127
+ msgstr "BRAK DZIAŁANIA"
128
+
129
+ #: ad-inserter.php:2356
130
+ msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
131
+ msgstr "WYKRYTO BLOKOWANIE REKLAM, WYKRYTO PLIK COOKIE - BRAK DZIAŁANIA"
132
+
133
+ #: ad-inserter.php:2357
134
+ msgid "AD BLOCKING DETECTED - ACTION"
135
+ msgstr "WYKRYTO BLOKOWANIE REKLAM - DZIAŁANIE"
136
+
137
+ #: ad-inserter.php:2358
138
+ msgid "AD BLOCKING NOT DETECTED"
139
+ msgstr "NIE WYKRYTO BLOKOWANIA REKLAM"
140
+
141
+ #: ad-inserter.php:2359
142
+ msgid "AD BLOCKING DETECTION COOKIES DELETED"
143
+ msgstr "BLOKOWANIE REKLAM WYKRYŁO USUNIĘCIE CIASTECZEK"
144
+
145
+ #: ad-inserter.php:2360
146
+ msgid "AD BLOCKING DETECTED - NO ACTION"
147
+ msgstr "WYKRYTO BLOKOWANIE REKLAM - BRAK DZIAŁAŃ"
148
+
149
+ #: ad-inserter.php:2659
150
+ #, php-format
151
+ msgid "Hey, you are now using %1$s %2$s block."
152
+ msgid_plural "Hey, you are now using %1$s %2$s blocks."
153
+ msgstr[0] "Hej, teraz używasz bloku %1$s %2$s."
154
+ msgstr[1] "Hej, teraz używasz %1$s %2$s bloków."
155
+ msgstr[2] "Hej, teraz używasz %1$s %2$s bloków."
156
+
157
+ #: ad-inserter.php:2662
158
+ msgid "Please help me to solve a problem first"
159
+ msgstr "Proszę, pomóż mi najpierw rozwiązać problem"
160
+
161
+ #: ad-inserter.php:2666
162
+ msgid "Maybe later"
163
+ msgstr "Może później"
164
+
165
+ #: ad-inserter.php:2671
166
+ #, php-format
167
+ msgid "Hey, you are using %s and I hope you're happy with it."
168
+ msgstr "Hej, używasz %s i mam nadzieję, że jesteś z niego zadowolony."
169
+
170
+ #: ad-inserter.php:2674
171
+ msgid "OK, but please help me with the settings first"
172
+ msgstr "OK, ale proszę mi pomóc najpierw z ustawieniami"
173
+
174
+ #: ad-inserter.php:2687
175
+ msgid ""
176
+ "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
177
+ "like saying 'Thank you'. Somebody will be happy."
178
+ msgstr ""
179
+ "Proszę poświęć chwilę na ocenę tej wtyczki. Kiedy ocenisz ją na pięć "
180
+ "gwiazdek, to jest to jak powiedzenie \"Dziękuję\". Ktoś będzie szczęśliwy."
181
+
182
+ #: ad-inserter.php:2689
183
+ msgid ""
184
+ "Positive reviews are a great incentive to fix bugs and to add new features "
185
+ "for better monetization of your website."
186
+ msgstr ""
187
+ "Pozytywne opinie są świetną zachętą do naprawiania błędów i dodawania nowych "
188
+ "funkcji w celu lepszego zarabiania na swojej stronie."
189
+
190
+ #: ad-inserter.php:2695
191
+ msgid "Sure"
192
+ msgstr "Jasne"
193
+
194
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
195
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
196
+ #: ad-inserter.php:2712 ad-inserter.php:2747
197
+ #, php-format
198
+ msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
199
+ msgstr "Ostrzeżenie: %1$s %3$s wyłączone %4$s %2$s na stronach AMP."
200
+
201
+ #. translators: 1: Ad Inserter, 2, 3: HTML tags
202
+ #: ad-inserter.php:2719
203
+ #, php-format
204
+ msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
205
+ msgstr ""
206
+ "Ostrzeżenie: %1$s wymaga PHP 5.6 lub nowszego. %2$s Proszę zaktualizować! "
207
+ "%3$s"
208
+
209
+ #: ad-inserter.php:2729
210
+ msgctxt "Menu item"
211
+ msgid "Settings"
212
+ msgstr "Ustawienia"
213
+
214
+ #: ad-inserter.php:2761
215
+ msgid ""
216
+ "Load settings page in safe mode to avoid collisions with other plugins or "
217
+ "theme"
218
+ msgstr ""
219
+ "Załaduj stronę ustawień w trybie awaryjnym, aby uniknąć kolizji z innymi "
220
+ "wtyczkami lub motywem"
221
+
222
+ #: ad-inserter.php:2761
223
+ msgid "Safe mode"
224
+ msgstr "Tryb awaryjny"
225
+
226
+ #. translators: %s: Ad Inserter
227
+ #: ad-inserter.php:2856
228
+ #, php-format
229
+ msgctxt "Meta box name"
230
+ msgid "%s Individual Exceptions"
231
+ msgstr "%s Indywidualne Wyjątki"
232
+
233
+ #: ad-inserter.php:2885 ad-inserter.php:10073 class.php:2123
234
+ #: includes/preview.php:2003 includes/preview.php:2046
235
+ #: includes/preview.php:2083 settings.php:4257 strings.php:3
236
+ msgid "Block"
237
+ msgstr "Blok"
238
+
239
+ #: ad-inserter.php:2886 settings.php:4258 settings.php:4343
240
+ msgid "Name"
241
+ msgstr "Imię"
242
+
243
+ #: ad-inserter.php:2889 settings.php:1178
244
+ msgid "Default insertion"
245
+ msgstr "Domyślne wstawianie"
246
+
247
+ #: ad-inserter.php:2892
248
+ msgctxt "Page"
249
+ msgid "For this"
250
+ msgstr "W tym celu"
251
+
252
+ #: ad-inserter.php:2893
253
+ msgctxt "Post"
254
+ msgid "For this"
255
+ msgstr "W tym celu"
256
+
257
+ #: ad-inserter.php:2905
258
+ msgctxt "Enabled/disabled on all"
259
+ msgid "pages"
260
+ msgstr "stron"
261
+
262
+ #: ad-inserter.php:2908
263
+ msgctxt "Enabled/disabled on all"
264
+ msgid "posts"
265
+ msgstr "wpisy"
266
+
267
+ #: ad-inserter.php:2925 ad-inserter.php:2937 strings.php:161
268
+ msgid "Enabled"
269
+ msgstr "Włączone"
270
+
271
+ #. translators: Menu items
272
+ #: ad-inserter.php:2925 ad-inserter.php:2937 includes/functions.php:2574
273
+ #: strings.php:16
274
+ msgid "Disabled"
275
+ msgstr "Wyłączone"
276
+
277
+ #: ad-inserter.php:2927
278
+ msgid "No individual exceptions"
279
+ msgstr "Brak indywidualnych wyjątków"
280
+
281
+ #. translators: Not enabled for pages or posts
282
+ #: ad-inserter.php:2929
283
+ msgid "Not enabled for"
284
+ msgstr "Nie włączone dla"
285
+
286
+ #. translators: No individual exceptions enabled for pages or posts
287
+ #: ad-inserter.php:2957
288
+ msgid "No block has individual exceptions enabled"
289
+ msgstr "Żaden blok nie ma włączonych indywidualnych wyjątków"
290
+
291
+ #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
292
+ #. ;
293
+ #: ad-inserter.php:2962
294
+ #, php-format
295
+ msgid ""
296
+ "Default insertion can be configured for each block on %1$s page - button "
297
+ "next to %2$s checkbox."
298
+ msgstr ""
299
+ "Domyślne wstawianie można skonfigurować dla każdego bloku na stronie %1$s — "
300
+ "przycisk obok %2$s pola wyboru."
301
+
302
+ #: ad-inserter.php:2965 settings.php:1156
303
+ msgid "Tag / Archive pages"
304
+ msgstr "Tag / Strony archiwum"
305
+
306
+ #: ad-inserter.php:2967
307
+ msgid ""
308
+ "When individual exceptions for a block are enabled, a checkbox will be "
309
+ "listed here to change default insertion for this post or page."
310
+ msgstr ""
311
+ "Gdy poszczególne wyjątki dla bloku są włączone, pole wyboru zostanie "
312
+ "wyświetlone tutaj, aby zmienić domyślne wstawianie dla tego posta lub strony."
313
+
314
+ #: ad-inserter.php:2968
315
+ msgid ""
316
+ "This way you can individually enable or disable blocks on specific posts or "
317
+ "pages."
318
+ msgstr ""
319
+ "W ten sposób można indywidualnie włączyć lub wyłączyć bloki na określonych "
320
+ "postach lub stronach."
321
+
322
+ #: ad-inserter.php:2970
323
+ #, php-format
324
+ msgid "For more information check page %s"
325
+ msgstr "Aby uzyskać więcej informacji, sprawdź stronę %s"
326
+
327
+ #. translators: Ad Inserter Exceptions documentation page
328
+ #: ad-inserter.php:2972
329
+ msgid "Individual Exceptions"
330
+ msgstr "Indywidualne Wyjątki"
331
+
332
+ #: ad-inserter.php:3019
333
+ msgid "STATIC PAGE"
334
+ msgstr "STRONA STATYCZNA"
335
+
336
+ #: ad-inserter.php:3022
337
+ msgid "POST"
338
+ msgstr "POST"
339
+
340
+ #: ad-inserter.php:3025
341
+ msgid "HOMEPAGE"
342
+ msgstr "Strona główna"
343
+
344
+ #: ad-inserter.php:3028
345
+ msgid "CATEGORY PAGE"
346
+ msgstr "KATEGORIA STRONY"
347
+
348
+ #: ad-inserter.php:3031
349
+ msgid "SEARCH PAGE"
350
+ msgstr "STRONA WYSZUKIWANIA"
351
+
352
+ #: ad-inserter.php:3034
353
+ msgid "ARCHIVE PAGE"
354
+ msgstr "STRONA ARCHIWUM"
355
+
356
+ #: ad-inserter.php:3037
357
+ msgid "ERROR 404 PAGE"
358
+ msgstr "BŁĄD 404 STRONA"
359
+
360
+ #: ad-inserter.php:3040
361
+ msgid "AJAX CALL"
362
+ msgstr "POŁĄCZENIE AJAX"
363
+
364
+ #: ad-inserter.php:3043
365
+ msgid "UNKNOWN PAGE TYPE"
366
+ msgstr "NIEZNANY TYP STRONY"
367
+
368
+ #: ad-inserter.php:3060
369
+ msgid "Click to delete ad blocking detection cokies"
370
+ msgstr "Kliknij, aby usunąć wykrywania blokowania reklam ciasteczka"
371
+
372
+ #: ad-inserter.php:3061
373
+ msgid "AD BLOCKING STATUS UNKNOWN"
374
+ msgstr "NIEZNANY STAN BLOKOWANIA REKLAM"
375
+
376
+ #. translators: %s: AdSense Auto Ads
377
+ #: ad-inserter.php:3090
378
+ #, php-format
379
+ msgid ""
380
+ "Code for %s detected - Code will automatically insert AdSense ads at optimal "
381
+ "positions"
382
+ msgstr ""
383
+ "Kod dla %s wykryty - Kod automatycznie wstawi reklamy AdSense w optymalnych "
384
+ "pozycjach"
385
+
386
+ #: ad-inserter.php:3225
387
+ msgid "Code for insertion"
388
+ msgstr "Kod do wstawienia"
389
+
390
+ #: ad-inserter.php:3225
391
+ msgid "character"
392
+ msgid_plural "characters"
393
+ msgstr[0] "znak"
394
+ msgstr[1] "znaki"
395
+ msgstr[2] "znaków"
396
+
397
+ #: ad-inserter.php:3241
398
+ msgid "Header code"
399
+ msgstr "Kod nagłówka"
400
+
401
+ #: ad-inserter.php:3241
402
+ msgctxt "Header code"
403
+ msgid "DISABLED"
404
+ msgstr "WYŁĄCZONE"
405
+
406
+ #: ad-inserter.php:3241 ad-inserter.php:3474
407
+ msgid "character inserted"
408
+ msgid_plural "characters inserted"
409
+ msgstr[0] "wstawiony znak"
410
+ msgstr[1] "wstawione znaki"
411
+ msgstr[2] "wstawionych znaków"
412
+
413
+ #: ad-inserter.php:3474
414
+ msgid "Footer code"
415
+ msgstr "Kod stopki"
416
+
417
+ #: ad-inserter.php:3474
418
+ msgctxt "Footer code"
419
+ msgid "DISABLED"
420
+ msgstr "WYŁĄCZONE"
421
+
422
+ #: ad-inserter.php:3480
423
+ msgid "JAVASCRIPT NOT WORKING"
424
+ msgstr "JAVASCRIPT NIE DZIAŁA"
425
+
426
+ #: ad-inserter.php:3480
427
+ msgid "NO JAVASCRIPT ERRORS"
428
+ msgstr "BRAK BŁĘDÓW JAVASCRIPT"
429
+
430
+ #: ad-inserter.php:3480
431
+ msgid "JAVASCRIPT ERRORS"
432
+ msgstr "BŁĘDY JAVASCRIPT"
433
+
434
+ #. translators: block name (block with default settings)
435
+ #: ad-inserter.php:5915
436
+ msgctxt "Block name"
437
+ msgid "Default"
438
+ msgstr "Domyślny"
439
+
440
+ #. translators: %s: Ad Inserter
441
+ #: ad-inserter.php:6581
442
+ #, php-format
443
+ msgid "Error importing %s settings."
444
+ msgstr "Wystąpił błąd podczas importowania %s ustawień."
445
+
446
+ #: ad-inserter.php:6582
447
+ msgid "Error importing settings for block"
448
+ msgid_plural "Error importing settings for blocks:"
449
+ msgstr[0] "Błąd podczas importowania ustawień bloku"
450
+ msgstr[1] "Błąd podczas importowania ustawień bloków:"
451
+ msgstr[2] "Błąd podczas importowania ustawień bloków:"
452
+
453
+ #: ad-inserter.php:6635
454
+ msgid "Settings saved."
455
+ msgstr "Ustawienia zapisane."
456
+
457
+ #. translators: %s: Ad Inserter
458
+ #: ad-inserter.php:6637
459
+ #, php-format
460
+ msgid "Invalid data received - %s settings not saved."
461
+ msgstr "Odebrano nieprawidłowe dane — %s ustawienia nie zostały zapisane."
462
+
463
+ #: ad-inserter.php:6736
464
+ msgid "Settings cleared."
465
+ msgstr "Ustawienia wyczyszczone."
466
+
467
+ #: ad-inserter.php:7112 ad-inserter.php:7114 ad-inserter.php:7137
468
+ #: settings.php:2174
469
+ msgid "word"
470
+ msgid_plural "words"
471
+ msgstr[0] "słowo"
472
+ msgstr[1] "słowa"
473
+ msgstr[2] "słów"
474
+
475
+ #: ad-inserter.php:7151 ad-inserter.php:7272
476
+ msgid "HTML TAGS REMOVED"
477
+ msgstr "USUNIĘTO ZNACZNIKI HTML"
478
+
479
+ #: ad-inserter.php:7348
480
+ msgid "BEFORE COMMENTS"
481
+ msgstr "PRZED KOMENTARZAMI"
482
+
483
+ #: ad-inserter.php:7468
484
+ msgid "AFTER COMMENTS"
485
+ msgstr "PO KOMENTARZACH"
486
+
487
+ #: ad-inserter.php:7543
488
+ msgid "BETWEEN COMMENTS"
489
+ msgstr "MIĘDZY KOMENTARZAMI"
490
+
491
+ #: ad-inserter.php:9381 ad-inserter.php:9464
492
+ msgctxt "category name"
493
+ msgid "Uncategorized"
494
+ msgstr "Bez kategorii"
495
+
496
+ #: ad-inserter.php:9691
497
+ msgid "requires WordPress 4.6 or newer"
498
+ msgstr "wymaga WordPress 4.6 lub nowszego"
499
+
500
+ #: ad-inserter.php:9691
501
+ msgid "Please update!"
502
+ msgstr "Proszę zaktualizować!"
503
+
504
+ #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin name with HTML tags will be added)
505
+ #: ad-inserter.php:9946
506
+ msgid "Thank you for installing"
507
+ msgstr "Dziękujemy za instalację"
508
+
509
+ #. translators: Opt-in message: %s: HTML tags
510
+ #: ad-inserter.php:9948
511
+ #, php-format
512
+ msgid ""
513
+ "We would like to %s track its usage %s on your site. This is completely "
514
+ "optional and can be disabled at any time."
515
+ msgstr ""
516
+ "Chcielibyśmy %s śledzić jego wykorzystanie %s w Twojej witrynie. Jest to "
517
+ "całkowicie opcjonalne i można je wyłączyć w dowolnym momencie."
518
+
519
+ #: ad-inserter.php:9950
520
+ msgid ""
521
+ "We don't record any sensitive data, only information regarding the WordPress "
522
+ "environment and plugin usage, which will help us to make improvements to the "
523
+ "plugin."
524
+ msgstr ""
525
+ "Nie rejestrujemy żadnych poufnych danych, tylko informacje dotyczące "
526
+ "środowiska WordPress i użycia wtyczek, które pomogą nam wprowadzić "
527
+ "ulepszenia do wtyczki."
528
+
529
+ #. translators: Deactivation message: %s: HTML tags
530
+ #: ad-inserter.php:9987
531
+ #, php-format
532
+ msgid ""
533
+ "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
534
+ "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
535
+ "us know %s and we'll try to help you."
536
+ msgstr ""
537
+ "Szukasz %s dokumentacji , %s %s Ustawienia wspólne, %s %s Szybki start %s "
538
+ "lub pomoc dla %s reklam AdSense? %s Wtyczka nie działa z motywem? %s Daj nam "
539
+ "znać %s, a my postaramy się Ci pomóc."
540
+
541
+ #. translators: %s: Ad Inserter
542
+ #: ad-inserter.php:10031
543
+ #, php-format
544
+ msgid "%s block."
545
+ msgstr "%s blok."
546
+
547
+ #. translators: widget title
548
+ #: ad-inserter.php:10047 ad-inserter.php:10082
549
+ msgid "Processing log"
550
+ msgstr "Logi przetwarzania"
551
+
552
+ #. translators: widget title
553
+ #: ad-inserter.php:10049 ad-inserter.php:10083
554
+ msgid "Dummy widget"
555
+ msgstr "Widżet manekina"
556
+
557
+ #. translators: widget title
558
+ #: ad-inserter.php:10051 ad-inserter.php:10081
559
+ msgid "Debugging tools"
560
+ msgstr "Narzędzia debugowania"
561
+
562
+ #. translators: block status (widget title)
563
+ #: ad-inserter.php:10058
564
+ msgctxt "block"
565
+ msgid "PAUSED"
566
+ msgstr "PAUZA"
567
+
568
+ #: ad-inserter.php:10059
569
+ msgid "WIDGET DISABLED"
570
+ msgstr "WIDŻET WYŁĄCZONY"
571
+
572
+ #: ad-inserter.php:10060
573
+ msgid "Unknown block"
574
+ msgstr "Nieznany blok"
575
+
576
+ #: ad-inserter.php:10068 includes/functions.php:3499 settings.php:1208
577
+ msgid "Title"
578
+ msgstr "Tytuł"
579
+
580
+ #: ad-inserter.php:10090
581
+ msgctxt "Widget"
582
+ msgid "Sticky"
583
+ msgstr "Przyklejony"
584
+
585
+ #: ad-inserter.php:10139
586
+ msgid ""
587
+ "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
588
+ "Inserter you need to first deactivate Ad Inserter Pro."
589
+ msgstr ""
590
+ "Nie można używać wstawiania reklam, gdy ad inserter Pro jest aktywny! Aby "
591
+ "aktywować Ad Inserter, musisz najpierw dezaktywować Ad Inserter Pro."
592
+
593
+ #: ad-inserter.php:10140
594
+ msgid ""
595
+ "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
596
+ "will clear all settings that are available only in the Pro version "
597
+ "(additional block and plugin settings)!"
598
+ msgstr ""
599
+ "<strong>OSTRZEŻENIE:</strong>Należy pamiętać, że zapisywanie ustawień w Ad "
600
+ "Inserter wyczyści wszystkie ustawienia, które są dostępne tylko w wersji Pro "
601
+ "(dodatkowe ustawienia bloku i wtyczki)!"
602
+
603
+ #. translators: %s: Ad Inserter
604
+ #: class.php:538 class.php:547 class.php:550
605
+ #, php-format
606
+ msgid "PHP error in %s block"
607
+ msgstr "Błąd PHP w %s bloku"
608
+
609
+ #: class.php:2073
610
+ msgid "Counters"
611
+ msgstr "Liczniki"
612
+
613
+ #: class.php:2077
614
+ msgid "Content"
615
+ msgstr "Zawartość członkostwa"
616
+
617
+ #: class.php:2082
618
+ msgid "Excerpt"
619
+ msgstr "Zajawka"
620
+
621
+ #: class.php:2087 strings.php:17
622
+ msgid "Before post"
623
+ msgstr "Przed postem"
624
+
625
+ #: class.php:2092 strings.php:18
626
+ msgid "After post"
627
+ msgstr "Po poście"
628
+
629
+ #: class.php:2097 strings.php:25
630
+ msgid "Between posts"
631
+ msgstr "Między postami"
632
+
633
+ #: class.php:2102 settings.php:1917 settings.php:4275
634
+ msgid "Widget"
635
+ msgstr "Widget"
636
+
637
+ #: class.php:2107 settings.php:4273
638
+ msgid "PHP function call"
639
+ msgstr "Wywołanie funkcji PHP"
640
+
641
+ #: class.php:2117
642
+ #, php-format
643
+ msgid "Custom hook %s call"
644
+ msgstr "Niestandardowe wywołanie haka %s"
645
+
646
+ #: class.php:2153
647
+ msgid "AJAX REQUEST"
648
+ msgstr "WNIOSEK AJAX"
649
+
650
+ #: class.php:2156
651
+ msgid "Ajax request for block in iframe"
652
+ msgstr "Ajax żądanie bloku w iframe"
653
+
654
+ #: class.php:2190
655
+ msgid "Ajax request url, click to open it in a new tab"
656
+ msgstr "Ajax adres URL żądania, kliknij, aby otworzyć go w nowej karcie"
657
+
658
+ #: class.php:2193
659
+ msgid "IN THE LOOP"
660
+ msgstr "W PĘTLI"
661
+
662
+ #: class.php:2193
663
+ msgid "YES"
664
+ msgstr "TAK"
665
+
666
+ #: class.php:2193
667
+ msgid "NO"
668
+ msgstr "NIE"
669
+
670
+ #: class.php:2229
671
+ msgid "BLOCK"
672
+ msgstr "BLOK"
673
+
674
+ #: class.php:2229
675
+ msgctxt "block or widget"
676
+ msgid "INSERTED BUT NOT VISIBLE"
677
+ msgstr "WSTAWIONY, ALE NIEWIDOCZNY"
678
+
679
+ #: class.php:2397
680
+ msgctxt "viewports"
681
+ msgid "ALL"
682
+ msgstr "WSZYSTKIE"
683
+
684
+ #: class.php:2430 class.php:2472 class.php:3745 strings.php:261
685
+ msgctxt "Block"
686
+ msgid "HIDDEN"
687
+ msgstr "UKRYTE"
688
+
689
+ #: class.php:2479 class.php:3748 strings.php:260
690
+ msgctxt "Block"
691
+ msgid "VISIBLE"
692
+ msgstr "WIDOCZNE"
693
+
694
+ #: class.php:2984 class.php:3054
695
+ msgid "ACTIVE GROUPS"
696
+ msgstr "AKTYWNE GRUPY"
697
+
698
+ #: class.php:3444
699
+ #, php-format
700
+ msgid "start='%s' end='%s' days='%s' type='%s'"
701
+ msgstr "start='%s' koniec='%s' dni='%s' typ='%s'"
702
+
703
+ #. translators: %s: list parameters and type
704
+ #: class.php:3452
705
+ #, php-format
706
+ msgid "parameters='%s' type='%s'"
707
+ msgstr "parametry='%s' typ='%s'"
708
+
709
+ #. translators: %s: list parameters and type
710
+ #: class.php:3454
711
+ #, php-format
712
+ msgid "referers='%s' type='%s'"
713
+ msgstr "referenci='%s' typ='%s'"
714
+
715
+ #. translators: %s: list parameters and type
716
+ #: class.php:3456
717
+ #, php-format
718
+ msgid "clients='%s' type='%s'"
719
+ msgstr "klienci='%s' typ='%s'"
720
+
721
+ #. translators: %s: list parameters and type
722
+ #: class.php:3628
723
+ #, php-format
724
+ msgid "countries='%s' type='%s'"
725
+ msgstr "kraje='%s' typ='%s'"
726
+
727
+ #. translators: %s: list parameters and type
728
+ #: class.php:3630
729
+ #, php-format
730
+ msgid "ip addresses='%s' type='%s'"
731
+ msgstr "adresy IP='%s' typ='%s'"
732
+
733
+ #: class.php:3745 class.php:3748
734
+ #, php-format
735
+ msgid "viewport='%s' type='%s'"
736
+ msgstr "viewport='%s' typ='%s'"
737
+
738
+ #: class.php:4102 strings.php:254
739
+ msgid "BEFORE"
740
+ msgstr "PRZED"
741
+
742
+ #: class.php:4110 strings.php:256
743
+ msgid "PREPEND CONTENT"
744
+ msgstr "PRZYGOTUJ TREŚĆ"
745
+
746
+ #: class.php:4114 strings.php:257
747
+ msgid "APPEND CONTENT"
748
+ msgstr "DOŁĄCZ TREŚĆ"
749
+
750
+ #: class.php:4118 strings.php:258
751
+ msgid "REPLACE CONTENT"
752
+ msgstr "ZAMIEŃ TREŚĆ"
753
+
754
+ #: class.php:4122 strings.php:259
755
+ msgid "REPLACE ELEMENT"
756
+ msgstr "ZAMIEŃ ELEMENT"
757
+
758
+ #: class.php:4133 strings.php:255
759
+ msgid "AFTER"
760
+ msgstr "PO"
761
+
762
+ #: class.php:4218 includes/preview.php:2046 includes/preview.php:2083
763
+ msgid "Code"
764
+ msgstr "Kod"
765
+
766
+ #: class.php:4221
767
+ msgid "for block"
768
+ msgstr "dla bloku"
769
+
770
+ #: class.php:7886
771
+ msgid ""
772
+ "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
773
+ "extension for PHP."
774
+ msgstr ""
775
+ "BŁĄD: nie znaleziono klasy DOMDocument. Twój webhost musi zainstalować "
776
+ "rozszerzenie DOM rozszerzenie dla PHP."
777
+
778
+ #: includes/dst/dst.php:351
779
+ msgid "Every minute"
780
+ msgstr "Co minutę"
781
+
782
+ #: includes/dst/dst.php:356
783
+ msgid "Once Weekly"
784
+ msgstr "Raz w tygodniu"
785
+
786
+ #: includes/dst/dst.php:360
787
+ msgid "Once Monthly"
788
+ msgstr "Raz na miesiąc"
789
+
790
+ #: includes/dst/dst.php:364
791
+ msgid "Twice Monthly"
792
+ msgstr "Dwa razy w miesiącu"
793
+
794
+ #: includes/dst/dst.php:558
795
+ msgid "No plugin data."
796
+ msgstr "Brak danych wtyczki."
797
+
798
+ #: includes/dst/dst.php:930
799
+ msgctxt "Button"
800
+ msgid "Allow"
801
+ msgstr "Zezwól"
802
+
803
+ #: includes/dst/dst.php:932
804
+ msgctxt "Button"
805
+ msgid "Do not allow"
806
+ msgstr "Nie pozwalaj"
807
+
808
+ #: includes/dst/dst.php:1160
809
+ msgid ""
810
+ "Thank you for installing our plugin. We'd like your permission to track its "
811
+ "usage on your site and subscribe you to our newsletter. This is completely "
812
+ "optional."
813
+ msgstr ""
814
+ "Dziękujemy za zainstalowanie naszej wtyczki. Chcielibyśmy uzyskać Twoją "
815
+ "zgodę na śledzenie wykorzystania naszej wtyczki w Twojej witrynie i "
816
+ "chcielibyśmy Cię zaprosić do zasubskrybowanie się do naszego newslettera. "
817
+ "Jest to całkowicie opcjonalne."
818
+
819
+ #: includes/dst/dst.php:1161
820
+ msgid ""
821
+ "We won't record any sensitive data, only information regarding the WordPress "
822
+ "environment and plugin settings, which will help us to make improvements to "
823
+ "the plugin."
824
+ msgstr ""
825
+ "Nie będziemy rejestrować żadnych poufnych danych, tylko informacje dotyczące "
826
+ "środowiska WordPress i ustawień wtyczek, które pomogą nam wprowadzić "
827
+ "ulepszenia do naszej wtyczki."
828
+
829
+ #: includes/dst/dst.php:1164
830
+ msgid ""
831
+ "Thank you for installing our theme. We'd like your permission to track its "
832
+ "usage on your site and subscribe you to our newsletter. This is completely "
833
+ "optional."
834
+ msgstr ""
835
+ "Dziękujemy za zainstalowanie naszego motywu. Chcielibyśmy uzyskać Twoją "
836
+ "zgodę na śledzenie wykorzystania motywu w Twojej witrynie i chcielibyśmy Cię "
837
+ "zaprosić do zasubskrybowania naszego newslettera. Jest to całkowicie "
838
+ "opcjonalne."
839
+
840
+ #: includes/dst/dst.php:1165
841
+ msgid ""
842
+ "We won't record any sensitive data, only information regarding the WordPress "
843
+ "environment and theme settings, which will help us to make improvements to "
844
+ "the theme."
845
+ msgstr ""
846
+ "Nie rejestrujemy żadnych poufnych danych, tylko informacje dotyczące "
847
+ "środowiska WordPress i ustawień motywu, które pomogą nam wprowadzić "
848
+ "ulepszenia do naszego motywu."
849
+
850
+ #: includes/dst/dst.php:1173
851
+ msgid ""
852
+ "Thank you for installing our plugin. We would like to track its usage on "
853
+ "your site. This is completely optional."
854
+ msgstr ""
855
+ "Dziękujemy za zainstalowanie naszej wtyczki. Chcielibyśmy śledzić jego "
856
+ "wykorzystanie na Twojej stronie. Jest to całkowicie opcjonalne."
857
+
858
+ #: includes/dst/dst.php:1174
859
+ msgid ""
860
+ "We don't record any sensitive data, only information regarding the WordPress "
861
+ "environment and plugin settings, which will help us to make improvements to "
862
+ "the plugin."
863
+ msgstr ""
864
+ "Nie rejestrujemy żadnych poufnych danych, tylko informacje dotyczące "
865
+ "środowiska WordPress i ustawień wtyczek, które pomogą nam wprowadzić "
866
+ "ulepszenia do naszej wtyczki."
867
+
868
+ #: includes/dst/dst.php:1177
869
+ msgid ""
870
+ "Thank you for installing our theme. We would like to track its usage on your "
871
+ "site. This is completely optional."
872
+ msgstr ""
873
+ "Dziękujemy za zainstalowanie naszego motywu. Chcielibyśmy śledzić jego "
874
+ "wykorzystanie na Twojej stronie. Jest to całkowicie opcjonalne."
875
+
876
+ #: includes/dst/dst.php:1178
877
+ msgid ""
878
+ "We don't record any sensitive data, only information regarding the WordPress "
879
+ "environment and theme settings, which will help us to make improvements to "
880
+ "the theme."
881
+ msgstr ""
882
+ "Nie rejestrujemy żadnych poufnych danych, tylko informacje dotyczące "
883
+ "środowiska WordPress i ustawień motywu, które pomogą nam wprowadzić "
884
+ "ulepszenia do naszego motywu."
885
+
886
+ #: includes/dst/dst.php:1188
887
+ msgid ""
888
+ "Thank you for opting in to tracking. Would you like to receive occasional "
889
+ "news about this plugin, including details of new features and special offers?"
890
+ msgstr ""
891
+ "Dziękujemy za zgodzenie się na śledzenie. Chcesz otrzymywać okazjonalne "
892
+ "wiadomości na temat tej wtyczki, w tym szczegóły nowych funkcji i ofert "
893
+ "specjalnych?"
894
+
895
+ #: includes/dst/dst.php:1190
896
+ msgid ""
897
+ "Thank you for opting in to tracking. Would you like to receive occasional "
898
+ "news about this theme, including details of new features and special offers?"
899
+ msgstr ""
900
+ "Dziękujemy za zgodzenie się na śledzenie. Chcesz otrzymywać od czasu do "
901
+ "czasu wiadomości na temat naszego motywu, w tym szczegóły dotyczące nowych "
902
+ "funkcji i ofert specjalnych?"
903
+
904
+ #: includes/dst/dst.php:1212
905
+ msgid "Sorry to see you go"
906
+ msgstr "Przykro mi, że idziesz"
907
+
908
+ #: includes/dst/dst.php:1213
909
+ msgid ""
910
+ "Before you deactivate the plugin, would you quickly give us your reason for "
911
+ "doing so?"
912
+ msgstr ""
913
+ "Zanim wyłączysz wtyczkę, czy szybko podasz nam powód, dlaczego chcesz "
914
+ "wyłączyć wtyczkę?"
915
+
916
+ #: includes/dst/dst.php:1215
917
+ msgid "Set up is too difficult"
918
+ msgstr "Konfiguracja jest zbyt trudna"
919
+
920
+ #: includes/dst/dst.php:1216
921
+ msgid "Lack of documentation"
922
+ msgstr "Braki w dokumentacji"
923
+
924
+ #: includes/dst/dst.php:1217
925
+ msgid "Not the features I wanted"
926
+ msgstr "Nie te funkcje, które chciałem"
927
+
928
+ #: includes/dst/dst.php:1218
929
+ msgid "Doesn't work"
930
+ msgstr "Nie działa"
931
+
932
+ #: includes/dst/dst.php:1219
933
+ msgid "Found a better plugin"
934
+ msgstr "Znalazłem lepszy plugin"
935
+
936
+ #: includes/dst/dst.php:1220
937
+ msgid "Installed by mistake"
938
+ msgstr "Zainstalowany przez pomyłkę"
939
+
940
+ #: includes/dst/dst.php:1221
941
+ msgid "Just testing"
942
+ msgstr "Tylko testowanie"
943
+
944
+ #: includes/dst/dst.php:1222
945
+ msgid "Only required temporarily"
946
+ msgstr "Wymagane tylko tymczasowo"
947
+
948
+ #: includes/dst/dst.php:1223
949
+ msgid "Don't show this form again"
950
+ msgstr "Nie pokazuj więcej tego formularza"
951
+
952
+ #: includes/dst/dst.php:1225
953
+ msgid "Details (optional)"
954
+ msgstr "Szczegóły (opcjonalnie)"
955
+
956
+ #: includes/dst/dst.php:1226
957
+ msgid "This information will greatly help us to improve the plugin."
958
+ msgstr "Informacje te znacznie pomogą nam ulepszyć wtyczkę."
959
+
960
+ #: includes/dst/dst.php:1227
961
+ msgid "Goodbye!"
962
+ msgstr "Do widzenia!"
963
+
964
+ #: includes/dst/dst.php:1270
965
+ msgid "Submitting form"
966
+ msgstr "Prześlij formularz"
967
+
968
+ #: includes/dst/dst.php:1409
969
+ msgctxt "Button"
970
+ msgid "Cancel"
971
+ msgstr "Anuluj"
972
+
973
+ #: includes/dst/dst.php:1409
974
+ msgctxt "Button"
975
+ msgid "Just Deactivate"
976
+ msgstr "Tylko Dezaktywuj"
977
+
978
+ #: includes/dst/dst.php:1409
979
+ msgctxt "Button"
980
+ msgid "Submit and Deactivate"
981
+ msgstr "Prześlij i Dezaktywuj"
982
+
983
+ #: includes/editor.php:7 includes/placeholders.php:352
984
+ #: includes/preview.php:1989 strings.php:267
985
+ msgid "Use"
986
+ msgstr "Użyj"
987
+
988
+ #: includes/editor.php:8 includes/preview.php:1990
989
+ msgid "Reset"
990
+ msgstr "Resetuj"
991
+
992
+ #: includes/editor.php:9 includes/placeholders.php:354
993
+ #: includes/preview.php:1992 settings.php:3616 strings.php:213 strings.php:266
994
+ msgid "Cancel"
995
+ msgstr "Anuluj"
996
+
997
+ #: includes/editor.php:74
998
+ msgid "Visual Code Editor"
999
+ msgstr "Wizualny Edytor Kodu"
1000
+
1001
+ #: includes/editor.php:262 includes/preview-adb.php:289
1002
+ #: includes/preview.php:1979
1003
+ msgid ""
1004
+ "This page was not loaded properly. Please check browser, plugins and ad "
1005
+ "blockers."
1006
+ msgstr ""
1007
+ "Ta strona nie została poprawnie załadowana. Sprawdź przeglądarkę, wtyczki i "
1008
+ "blokery reklam."
1009
+
1010
+ #: includes/editor.php:264 settings.php:291
1011
+ msgid "Error loading page"
1012
+ msgstr "Błąd ładowania strony"
1013
+
1014
+ #: includes/editor.php:264 includes/preview-adb.php:291
1015
+ #: includes/preview.php:1981
1016
+ msgid "PAGE BLOCKED"
1017
+ msgstr "STRONA ZABLOKOWANA"
1018
+
1019
+ #: includes/functions.php:302
1020
+ #, php-format
1021
+ msgid "%d of %d names shown"
1022
+ msgstr "%d z %d nazwy pokazane"
1023
+
1024
+ #. translators: %s: name filter
1025
+ #: includes/functions.php:321
1026
+ msgid "No name matches filter"
1027
+ msgstr "Brak filtru pasującego do nazwy"
1028
+
1029
+ #. translators: %s: Ad Inserter Pro
1030
+ #: includes/functions.php:398
1031
+ #, php-format
1032
+ msgid ""
1033
+ "Import %s settings when saving - if checked, the encoded settings below will "
1034
+ "be imported for all blocks and settings"
1035
+ msgstr ""
1036
+ "Importuj %s ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
1037
+ "ustawienia poniżej zostaną zaimportowane dla wszystkich bloków i ustawień"
1038
+
1039
+ #: includes/functions.php:398
1040
+ msgid "Import Settings for"
1041
+ msgstr "Importuj Ustawienia z"
1042
+
1043
+ #: includes/functions.php:402
1044
+ msgid "Saved settings for"
1045
+ msgstr "Zapisane ustawienia dla"
1046
+
1047
+ #: includes/functions.php:422
1048
+ msgid "License Key"
1049
+ msgstr "Klucz licencyjny"
1050
+
1051
+ #: includes/functions.php:425
1052
+ msgid "License Key for"
1053
+ msgstr "Klucz licencyjny dla"
1054
+
1055
+ #: includes/functions.php:427
1056
+ msgid "Open license page"
1057
+ msgstr "Otwórz stronę licencji"
1058
+
1059
+ #: includes/functions.php:434
1060
+ msgid "Hide license key"
1061
+ msgstr "Ukryj klucz licencyjny"
1062
+
1063
+ #: includes/functions.php:434
1064
+ msgid "Hide key"
1065
+ msgstr "Ukryj klucz"
1066
+
1067
+ #: includes/functions.php:449
1068
+ msgid "Main content element"
1069
+ msgstr "Główny element zawartości"
1070
+
1071
+ #: includes/functions.php:452
1072
+ msgid ""
1073
+ "Main content element (#id or .class) for 'Stick to the content' position. "
1074
+ "Leave empty unless position is not properly calculated."
1075
+ msgstr ""
1076
+ "Główny element zawartości (#id lub .class) dla pozycji \"Przyklej do "
1077
+ "zawartości\". Pozostaw pusty, chyba że pozycja nie jest poprawnie obliczona."
1078
+
1079
+ #: includes/functions.php:453 settings.php:1359 settings.php:2831
1080
+ msgid "Open HTML element selector"
1081
+ msgstr "Otwieranie selektora elementów HTML"
1082
+
1083
+ #: includes/functions.php:458
1084
+ msgid "Lazy loading offset"
1085
+ msgstr "Powolne ładowanie, proszę czekać"
1086
+
1087
+ #: includes/functions.php:461
1088
+ msgid "Offset of the block from the visible viewport when it should be loaded"
1089
+ msgstr "Przesunięcie bloku od widocznej rzutni, gdy powinien zostać załadowany"
1090
+
1091
+ #: includes/functions.php:472
1092
+ msgid "Export / Import Block Settings"
1093
+ msgstr "Export / Import Ustawień Bloku"
1094
+
1095
+ #: includes/functions.php:487
1096
+ msgid "Track impressions and clicks for this block"
1097
+ msgstr "Śledź wyświetlenia i kliknięcia tego bloku"
1098
+
1099
+ #: includes/functions.php:487
1100
+ msgid " - global tracking disabled"
1101
+ msgstr " - śledzenie globalne wyłączone"
1102
+
1103
+ #: includes/functions.php:494
1104
+ msgid "Generate PDF report"
1105
+ msgstr "Generuj raport PDF"
1106
+
1107
+ #: includes/functions.php:499
1108
+ msgid "Open public report"
1109
+ msgstr "Otwórz raport publiczny"
1110
+
1111
+ #: includes/functions.php:513
1112
+ msgid "Toggle Ad Blocking Statistics"
1113
+ msgstr "Statystyki blokowania reklam"
1114
+
1115
+ #: includes/functions.php:521 includes/functions.php:3242
1116
+ msgid "Toggle Statistics"
1117
+ msgstr "Przełącz statystyki"
1118
+
1119
+ #: includes/functions.php:530
1120
+ msgid "Pin list"
1121
+ msgstr "Lista pinów"
1122
+
1123
+ #. translators: %s: Ad Inserter Pro
1124
+ #: includes/functions.php:545
1125
+ #, php-format
1126
+ msgid "%s license key is not set. Continue?"
1127
+ msgstr "%s klucz licencyjny nie jest ustawiony. Kontynuować?"
1128
+
1129
+ #. translators: %s: Ad Inserter Pro
1130
+ #: includes/functions.php:549
1131
+ #, php-format
1132
+ msgid "Invalid %s license key. Continue?"
1133
+ msgstr "Nieprawidłowy %s klucz licencyjny. Kontynuować?"
1134
+
1135
+ #. translators: %s: Ad Inserter Pro
1136
+ #: includes/functions.php:553
1137
+ #, php-format
1138
+ msgid "%s license overused. Continue?"
1139
+ msgstr "%s licencja nadużywana. Kontynuować?"
1140
+
1141
+ #. translators: %s: Ad Inserter Pro
1142
+ #: includes/functions.php:557
1143
+ #, php-format
1144
+ msgid "Invalid %s version. Continue?"
1145
+ msgstr "Nieprawidłowa %s wersja. Kontynuować?"
1146
+
1147
+ #: includes/functions.php:561 settings.php:1113 settings.php:2275
1148
+ msgid "Save Settings"
1149
+ msgstr "Zapisz ustawienia"
1150
+
1151
+ #: includes/functions.php:621 includes/preview.php:2132
1152
+ msgid "Horizontal position"
1153
+ msgstr "Pozycja pozioma"
1154
+
1155
+ #: includes/functions.php:644
1156
+ msgid ""
1157
+ "Horizontal margin from the content or screen edge, empty means default value "
1158
+ "from CSS"
1159
+ msgstr ""
1160
+ "Poziomy margines od zawartości lub krawędzi ekranu, pusty oznacza wartość "
1161
+ "domyślną z CSS"
1162
+
1163
+ #: includes/functions.php:652 includes/preview.php:2187
1164
+ msgid "Vertical position"
1165
+ msgstr "Pozycja pionowa"
1166
+
1167
+ #: includes/functions.php:667
1168
+ msgid ""
1169
+ "Vertical margin from the top or bottom screen edge, empty means default "
1170
+ "value from CSS"
1171
+ msgstr ""
1172
+ "Pionowy margines od górnej lub dolnej krawędzi ekranu, pusty oznacza wartość "
1173
+ "domyślną z CSS"
1174
+
1175
+ #: includes/functions.php:692 includes/preview.php:2238
1176
+ msgid "Animation"
1177
+ msgstr "Animacja"
1178
+
1179
+ #: includes/functions.php:710
1180
+ msgid "Trigger"
1181
+ msgstr "Wyzwalacz"
1182
+
1183
+ #: includes/functions.php:719
1184
+ msgid ""
1185
+ "Trigger value: page scroll in %, page scroll in px or element with selector "
1186
+ "(#id or .class) becomes visible"
1187
+ msgstr ""
1188
+ "Wartość wyzwalacza: przewijanie strony w %, przewijanie strony w px lub "
1189
+ "element z selektorem (#id lub .class) staje się widoczne"
1190
+
1191
+ #: includes/functions.php:723
1192
+ msgid "Offset"
1193
+ msgstr "Przesunięcie (Offset)"
1194
+
1195
+ #: includes/functions.php:723
1196
+ msgid "Offset of trigger element"
1197
+ msgstr "Przesunięcie elementu wyzwalającego"
1198
+
1199
+ #: includes/functions.php:727
1200
+ msgid "Delay"
1201
+ msgstr "Opóźnienie"
1202
+
1203
+ #: includes/functions.php:727
1204
+ msgid "Delay animation after trigger condition"
1205
+ msgstr "Opóźnienie animacji po warunku wyzwalacza"
1206
+
1207
+ #: includes/functions.php:731
1208
+ msgid "Trigger once"
1209
+ msgstr "Wyzwalanie raz"
1210
+
1211
+ #: includes/functions.php:733
1212
+ msgid "Trigger animation only once"
1213
+ msgstr "Wyzwalanie animacji tylko raz"
1214
+
1215
+ #: includes/functions.php:775 includes/functions.php:2713
1216
+ #: includes/functions.php:2729
1217
+ msgid "Tracking is globally disabled"
1218
+ msgstr "Śledzenie jest globalnie wyłączone"
1219
+
1220
+ #: includes/functions.php:779 includes/functions.php:2717
1221
+ #: includes/functions.php:2733
1222
+ msgid "Tracking for this block is disabled"
1223
+ msgstr "Śledzenie tego bloku jest wyłączone"
1224
+
1225
+ #: includes/functions.php:786
1226
+ msgid "Double click to toggle controls in public reports"
1227
+ msgstr "Kliknij dwukrotnie, aby przełączać formanty w raportach publicznych"
1228
+
1229
+ #: includes/functions.php:792 settings.php:3551 settings.php:3587
1230
+ #: settings.php:3629 strings.php:223
1231
+ msgid "Loading..."
1232
+ msgstr "Ładowanie..."
1233
+
1234
+ #: includes/functions.php:813
1235
+ msgid ""
1236
+ "Clear statistics data for the selected range - clear both dates to delete "
1237
+ "all data for this block"
1238
+ msgstr ""
1239
+ "Wyczyść dane statystyczne dla wybranego zakresu - wyczyść obie daty, aby "
1240
+ "usunąć wszystkie dane dla tego bloku"
1241
+
1242
+ #: includes/functions.php:817
1243
+ msgid "Auto refresh data for the selected range every 60 seconds"
1244
+ msgstr "Automatyczne odświeżanie danych dla wybranego zakresu co 60 sekund"
1245
+
1246
+ #: includes/functions.php:820 includes/functions.php:5736
1247
+ msgid "Load data for last month"
1248
+ msgstr "Załaduj dane za ostatni miesiąc"
1249
+
1250
+ #: includes/functions.php:820 includes/functions.php:5736
1251
+ msgid "Last Month"
1252
+ msgstr "Ostatni miesiąc"
1253
+
1254
+ #: includes/functions.php:823 includes/functions.php:5739
1255
+ msgid "Load data for this month"
1256
+ msgstr "Załaduj dane za ten miesiąc"
1257
+
1258
+ #: includes/functions.php:823 includes/functions.php:5739
1259
+ msgid "This Month"
1260
+ msgstr "Ten miesiąc"
1261
+
1262
+ #: includes/functions.php:826 includes/functions.php:5742
1263
+ msgid "Load data for this year"
1264
+ msgstr "Załaduj dane za ten rok"
1265
+
1266
+ #: includes/functions.php:826 includes/functions.php:5742
1267
+ msgid "This Year"
1268
+ msgstr "W tym roku"
1269
+
1270
+ #: includes/functions.php:829 includes/functions.php:5745
1271
+ msgid "Load data for the last 15 days"
1272
+ msgstr "Załaduj dane z ostatnich 15 dni"
1273
+
1274
+ #: includes/functions.php:832 includes/functions.php:5748
1275
+ msgid "Load data for the last 30 days"
1276
+ msgstr "Załaduj dane z ostatnich 30 dni"
1277
+
1278
+ #: includes/functions.php:835 includes/functions.php:5751
1279
+ msgid "Load data for the last 90 days"
1280
+ msgstr "Załaduj dane z ostatnich 90 dni"
1281
+
1282
+ #: includes/functions.php:838 includes/functions.php:5754
1283
+ msgid "Load data for the last 180 days"
1284
+ msgstr "Załaduj dane z ostatnich 180 dni"
1285
+
1286
+ #: includes/functions.php:841 includes/functions.php:5757
1287
+ msgid "Load data for the last 365 days"
1288
+ msgstr "Załaduj dane z ostatnich 365 dni"
1289
+
1290
+ #: includes/functions.php:851 includes/functions.php:5767
1291
+ msgid "Load data for the selected range"
1292
+ msgstr "Załaduj dane z wybranego okresu"
1293
+
1294
+ #: includes/functions.php:867
1295
+ msgid ""
1296
+ "Import settings when saving - if checked, the encoded settings below will be "
1297
+ "imported for this block"
1298
+ msgstr ""
1299
+ "Importuj ustawienia kiedy są zapisywane - jeśli zaznaczono, zakodowane "
1300
+ "ustawienia poniżej zostaną zaimportowane dla tego bloku"
1301
+
1302
+ #: includes/functions.php:867
1303
+ msgid "Import settings for block"
1304
+ msgstr "Zaimportuj ustawienia dla bloku"
1305
+
1306
+ #: includes/functions.php:871
1307
+ msgid ""
1308
+ "Import block name when saving - if checked and 'Import settings for block' "
1309
+ "is also checked, the name from encoded settings below will be imported for "
1310
+ "this block"
1311
+ msgstr ""
1312
+ "Importuj nazwę bloku podczas zapisywania - jeśli zaznaczono i jeśli "
1313
+ "zaznaczono również \"Zaimportuj ustawienia dla bloku\", nazwa z zakodowanych "
1314
+ "ustawień poniżej zostanie zaimportowana dla tego bloku"
1315
+
1316
+ #: includes/functions.php:871
1317
+ msgid "Import block name"
1318
+ msgstr "Importuj nazwę bloku"
1319
+
1320
+ #: includes/functions.php:875
1321
+ msgid "Saved settings for block"
1322
+ msgstr "Zapisane ustawienia dla bloku"
1323
+
1324
+ #: includes/functions.php:888
1325
+ msgid "Export / Import Ad Inserter Pro Settings"
1326
+ msgstr "Export / Import Ustawień Ad Inserter Pro"
1327
+
1328
+ #: includes/functions.php:898
1329
+ msgid "Are you sure you want to clear all statistics data for all blocks?"
1330
+ msgstr ""
1331
+ "Jesteś pewien, że na pewno chcesz wyczyścić wszystkie dane statystyczne dla "
1332
+ "wszystkich bloków?"
1333
+
1334
+ #: includes/functions.php:900
1335
+ msgid "Clear All Statistics Data"
1336
+ msgstr "Wyczyść wszystkie dane statystyczne"
1337
+
1338
+ #: includes/functions.php:930
1339
+ msgid "Toggle country/city editor"
1340
+ msgstr "Przełączanie edytora kraju/miasta"
1341
+
1342
+ #: includes/functions.php:936
1343
+ msgid "IP Addresses"
1344
+ msgstr "Adresy IP"
1345
+
1346
+ #: includes/functions.php:939
1347
+ msgid "Toggle IP address editor"
1348
+ msgstr "Przełączanie edytora adresów IP"
1349
+
1350
+ #: includes/functions.php:942
1351
+ msgid ""
1352
+ "Comma separated IP addresses, you can also use partial IP addresses with * "
1353
+ "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1354
+ msgstr ""
1355
+ "Adresy IP oddzielone przecinkami, można również używać częściowych adresów "
1356
+ "IP za pomocą * (ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1357
+
1358
+ #: includes/functions.php:947 includes/functions.php:983 settings.php:1672
1359
+ #: settings.php:1703 settings.php:1734 settings.php:1765 settings.php:1796
1360
+ #: settings.php:1827 settings.php:1857 settings.php:1887
1361
+ msgid "Click to select black or white list"
1362
+ msgstr "Kliknij, aby zaznaczyć czarną lub białą listę"
1363
+
1364
+ #: includes/functions.php:951
1365
+ msgid "Blacklist IP addresses"
1366
+ msgstr "Czarna lista adresów IP"
1367
+
1368
+ #: includes/functions.php:955
1369
+ msgid "Whitelist IP addresses"
1370
+ msgstr "Białą lista adresów IP"
1371
+
1372
+ #: includes/functions.php:966
1373
+ msgid "Countries"
1374
+ msgstr "Kraje"
1375
+
1376
+ #: includes/functions.php:967
1377
+ msgid "Cities"
1378
+ msgstr "Miasta"
1379
+
1380
+ #: includes/functions.php:971 includes/functions.php:3207
1381
+ msgid "Toggle country editor"
1382
+ msgstr "Przełączanie edytora kraju"
1383
+
1384
+ #: includes/functions.php:974
1385
+ msgid "Toggle city editor"
1386
+ msgstr "Przełączanie edytora miasta"
1387
+
1388
+ #: includes/functions.php:978 includes/functions.php:3210
1389
+ msgid "Comma separated country ISO Alpha-2 codes"
1390
+ msgstr "Kraj oddzielony przecinkiem ISO Alpha-2 codes"
1391
+
1392
+ #: includes/functions.php:987
1393
+ msgid "Blacklist countries"
1394
+ msgstr "Kraje czarnej listy"
1395
+
1396
+ #: includes/functions.php:991
1397
+ msgid "Whitelist countries"
1398
+ msgstr "Kraje białej listy"
1399
+
1400
+ #: includes/functions.php:1447 includes/functions.php:1757
1401
+ msgid "Enter license key"
1402
+ msgstr "Wprowadź klucz licencyjny"
1403
+
1404
+ #. translators: %s: Ad Inserter Pro
1405
+ #: includes/functions.php:1453
1406
+ #, php-format
1407
+ msgid ""
1408
+ "%s license key is not set. Plugin functionality is limited and updates are "
1409
+ "disabled."
1410
+ msgstr ""
1411
+ "%s klucz licencyjny jest nie ustawiony. Funkcjonalność wtyczki jest "
1412
+ "ograniczona, a aktualizacje są wyłączone."
1413
+
1414
+ #. translators: %s: Ad Inserter Pro
1415
+ #: includes/functions.php:1467
1416
+ #, php-format
1417
+ msgid "Warning: %s plugin update server is not accessible"
1418
+ msgstr "Ostrzeżenie: serwer aktualizacji %s wtyczki jest niedostępny"
1419
+
1420
+ #. translators: updates are not available
1421
+ #: includes/functions.php:1469
1422
+ msgid "updates"
1423
+ msgstr "aktualizacje"
1424
+
1425
+ #. translators: updates are not available
1426
+ #: includes/functions.php:1471
1427
+ msgid "are not available"
1428
+ msgstr "nie są dostępne"
1429
+
1430
+ #: includes/functions.php:1476 includes/functions.php:1766
1431
+ msgid "Check license key"
1432
+ msgstr "Sprawdź klucz licencyjny"
1433
+
1434
+ #. translators: %s: Ad Inserter Pro
1435
+ #: includes/functions.php:1482
1436
+ #, php-format
1437
+ msgid "Invalid %s license key."
1438
+ msgstr "Nieprawidłowy %s klucz licencyjny."
1439
+
1440
+ #. translators: %s: Ad Inserter Pro
1441
+ #: includes/functions.php:1491
1442
+ #, php-format
1443
+ msgid "%s license expired. Plugin updates are disabled."
1444
+ msgstr "Licencja %s wygasła. Aktualizacje wtyczki są wyłączone."
1445
+
1446
+ #: includes/functions.php:1492
1447
+ msgid "Renew license"
1448
+ msgstr "Odnów licencję"
1449
+
1450
+ #. translators: %s: Ad Inserter Pro
1451
+ #: includes/functions.php:1500
1452
+ #, php-format
1453
+ msgid "%s license overused. Plugin updates are disabled."
1454
+ msgstr "%s licencja nadużywana. Aktualizacje wtyczek są wyłączone."
1455
+
1456
+ #: includes/functions.php:1501
1457
+ msgid "Manage licenses"
1458
+ msgstr "Zarządzanie licencjami"
1459
+
1460
+ #: includes/functions.php:1501
1461
+ msgid "Upgrade license"
1462
+ msgstr "Ulepsz licencję"
1463
+
1464
+ #. translators: %s: Ad Inserter Pro
1465
+ #: includes/functions.php:1509
1466
+ #, php-format
1467
+ msgid "Invalid %s version."
1468
+ msgstr "Nieprawidłowa %s wersja."
1469
+
1470
+ #: includes/functions.php:1510
1471
+ msgid "Check license"
1472
+ msgstr "Sprawdź licencję"
1473
+
1474
+ #: includes/functions.php:1522
1475
+ msgid "License"
1476
+ msgstr "Licencja"
1477
+
1478
+ #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1479
+ #: includes/functions.php:1759
1480
+ #, php-format
1481
+ msgid ""
1482
+ "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1483
+ "limited and updates are disabled."
1484
+ msgstr ""
1485
+ "%1$s Ostrzeżenie: %2$s %3$s klucz licencyjny nie jest ustawiony. "
1486
+ "Funkcjonalność wtyczki jest ograniczona, a aktualizacje są wyłączone."
1487
+
1488
+ #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1489
+ #: includes/functions.php:1768
1490
+ #, php-format
1491
+ msgid "%1$s Warning: %2$s Invalid %3$s license key."
1492
+ msgstr "%1$s Ostrzeżenie: %2$s Nieprawidłowy %3$s klucz licencyjny."
1493
+
1494
+ #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1495
+ #: includes/functions.php:1784
1496
+ #, php-format
1497
+ msgid ""
1498
+ "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1499
+ "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1500
+ msgstr ""
1501
+ "Hej, %1$s licencja wygasła - aktualizacje wtyczek są teraz wyłączone. Odnów "
1502
+ "licencję, aby włączyć aktualizacje. Sprawdź %2$s czego ci brakuje. %3$s"
1503
+
1504
+ #. translators: 1, 3: HTML tags, 2: percentage
1505
+ #: includes/functions.php:1791
1506
+ #, php-format
1507
+ msgid ""
1508
+ "During the license period and 30 days after the license has expired we offer "
1509
+ "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1510
+ msgstr ""
1511
+ "W okresie licencji i 30 dni po wygaśnięciu licencji oferujemy %1$s %2$s "
1512
+ "zniżki na wszystkie odnowienia licencji i ulepszenia licencji. %3$s"
1513
+
1514
+ #: includes/functions.php:1801
1515
+ msgid "No, thank you."
1516
+ msgstr "Nie, dziękuje."
1517
+
1518
+ #: includes/functions.php:1804
1519
+ msgid "Not now, maybe later."
1520
+ msgstr "Nie teraz, może później."
1521
+
1522
+ #: includes/functions.php:1818
1523
+ msgid "Renew the licence"
1524
+ msgstr "Odnowienie licencji"
1525
+
1526
+ #: includes/functions.php:1820
1527
+ msgid "Update license status"
1528
+ msgstr "Aktualizowanie stanu licencji"
1529
+
1530
+ #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1531
+ #: includes/functions.php:1833
1532
+ #, php-format
1533
+ msgid ""
1534
+ "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1535
+ "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1536
+ msgstr ""
1537
+ "%1$s Ostrzeżenie: %2$s %3$s licencja nadużywana. Aktualizacje wtyczki są "
1538
+ "wyłączone. %4$s Zarządzanie licencjami %5$s &mdash; %6$s Ulepsz licencję %7$s"
1539
+
1540
+ #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
1541
+ #: includes/functions.php:1845
1542
+ #, php-format
1543
+ msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
1544
+ msgstr ""
1545
+ "%1$s Ostrzeżenie: %2$s Nieprawidłowa wersja %3$s. %4$s Sprawdź licencję %5$s"
1546
+
1547
+ #: includes/functions.php:1885
1548
+ #, php-format
1549
+ msgid "Warning: %s MaxMind IP geolocation database not found."
1550
+ msgstr "Ostrzeżenie: %s MaxMind IP geolokalizacja, nie znaleziono bazy danych."
1551
+
1552
+ #: includes/functions.php:1890
1553
+ #, php-format
1554
+ msgid ""
1555
+ "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
1556
+ "account %s and create license key."
1557
+ msgstr ""
1558
+ "Ostrzeżenie: nie ustawiono klucza licencyjnego %s MaxMind. Proszę %s "
1559
+ "zarejestruj konto dla GeoLite2 %s i utwórz klucz licencyjny."
1560
+
1561
+ #: includes/functions.php:2506
1562
+ msgid "Geolocation"
1563
+ msgstr "Geolokalizacja"
1564
+
1565
+ #: includes/functions.php:2510 settings.php:4262
1566
+ msgid "Exceptions"
1567
+ msgstr "Wyjątki"
1568
+
1569
+ #: includes/functions.php:2515
1570
+ msgid "Multisite"
1571
+ msgstr "Multisite"
1572
+
1573
+ #: includes/functions.php:2520 settings.php:4268
1574
+ msgid "Tracking"
1575
+ msgstr "Śledzenie"
1576
+
1577
+ #. translators: %d: days, hours, minutes
1578
+ #: includes/functions.php:2551
1579
+ #, php-format
1580
+ msgid "Scheduled in %d days %d hours %d minutes"
1581
+ msgstr "Zaplanowane w %d dni %d godziny %d minut"
1582
+
1583
+ #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is HTML code for long dash separator
1584
+ #: includes/functions.php:2560
1585
+ #, php-format
1586
+ msgid "Active %s expires in %d days %d hours %d minutes"
1587
+ msgstr "Aktywne %s wygasa w %d dni %d godzin %d minut"
1588
+
1589
+ #: includes/functions.php:2564
1590
+ msgid "Expired"
1591
+ msgstr "Wygasłe"
1592
+
1593
+ #: includes/functions.php:2572
1594
+ msgid "fallback"
1595
+ msgstr "rezerwowej"
1596
+
1597
+ #: includes/functions.php:2573
1598
+ msgid "Block to be used when scheduling expires"
1599
+ msgstr "Blok do wykorzystania po upływie terminu ważności harmonogramu"
1600
+
1601
+ #: includes/functions.php:2588
1602
+ msgid "Start date"
1603
+ msgstr "Początkowa data"
1604
+
1605
+ #: includes/functions.php:2588
1606
+ msgid "Enter date in format yyyy-mm-dd"
1607
+ msgstr "Wprowadź datę w formacie yyyy-mm-dd"
1608
+
1609
+ #: includes/functions.php:2589
1610
+ msgid "Start time"
1611
+ msgstr "Czas rozpoczęcia"
1612
+
1613
+ #: includes/functions.php:2589
1614
+ msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
1615
+ msgstr "Wprowadź czas w formacie hh:mm:ss, pusty oznacza 00:00:00"
1616
+
1617
+ #: includes/functions.php:2590 settings.php:1441 settings.php:1456
1618
+ #: settings.php:1546 settings.php:2172
1619
+ msgid "and"
1620
+ msgstr "i"
1621
+
1622
+ #: includes/functions.php:2591
1623
+ msgid "End date"
1624
+ msgstr "Data zakończenia"
1625
+
1626
+ #: includes/functions.php:2592
1627
+ msgid "End time"
1628
+ msgstr "Czas zakończenia"
1629
+
1630
+ #: includes/functions.php:2595
1631
+ msgid "Select wanted days in week"
1632
+ msgstr "Wybierz wybrane dni w tygodniu"
1633
+
1634
+ #: includes/functions.php:2610
1635
+ msgid "Load in iframe"
1636
+ msgstr "Ładowanie w iframe"
1637
+
1638
+ #: includes/functions.php:2614 includes/placeholders.php:389
1639
+ msgid "Width"
1640
+ msgstr "Szerokość"
1641
+
1642
+ #: includes/functions.php:2615
1643
+ msgid "iframe width, empty means full width (100%)"
1644
+ msgstr "szerokość iframe, pusta oznacza pełną szerokość (100%)"
1645
+
1646
+ #: includes/functions.php:2621 includes/placeholders.php:384
1647
+ msgid "Height"
1648
+ msgstr "Wysokość"
1649
+
1650
+ #: includes/functions.php:2622
1651
+ msgid "iframe height, empty means adjust it to iframe content height"
1652
+ msgstr ""
1653
+ "wysokość iframe, puste oznacza dostosowanie go do wysokości zawartości iframe"
1654
+
1655
+ #: includes/functions.php:2629
1656
+ msgid "Ad label in iframe"
1657
+ msgstr "Etykieta reklamy w iframe"
1658
+
1659
+ #: includes/functions.php:2634
1660
+ msgid "Preview iframe code"
1661
+ msgstr "Podgląd kodu iframe"
1662
+
1663
+ #: includes/functions.php:2634 includes/preview.php:2001 settings.php:1108
1664
+ #: settings.php:2893
1665
+ msgid "Preview"
1666
+ msgstr "Podgląd"
1667
+
1668
+ #: includes/functions.php:2648 settings.php:4269
1669
+ msgid "Limits"
1670
+ msgstr "Limity"
1671
+
1672
+ #: includes/functions.php:2653 includes/functions.php:4712
1673
+ #: includes/functions.php:4775 settings.php:2322
1674
+ msgid "Ad Blocking"
1675
+ msgstr "Blokowanie Reklam"
1676
+
1677
+ #. translators: 1, 2 and 3, 4: HTML tags
1678
+ #: includes/functions.php:2662
1679
+ #, php-format
1680
+ msgid ""
1681
+ "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1682
+ "for tracking!"
1683
+ msgstr ""
1684
+ "%1$s OSTRZEŻENIE: %2$s %3$s Brak zawijania %4$s styl nie ma kodu zawijania "
1685
+ "potrzebnego do śledzenia!"
1686
+
1687
+ #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above header
1688
+ #: includes/functions.php:2671
1689
+ #, php-format
1690
+ msgid ""
1691
+ "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1692
+ "enabled and automatic insertion %6$s!"
1693
+ msgstr ""
1694
+ "%1$s OSTRZEŻENIE: %2$s pozycja pionowa %3$s wymaga %4$s Buforowanie "
1695
+ "wyjściowe %5$s włączone i automatyczne wstawianie %6$s!"
1696
+
1697
+ #: includes/functions.php:2737
1698
+ msgid "Click fraud protection is globally disabled"
1699
+ msgstr "Ochrona przed oszustwami kliknięć jest globalnie wyłączona"
1700
+
1701
+ #: includes/functions.php:2741
1702
+ msgid "Max clicks per time period are not defined"
1703
+ msgstr "Maksymalna liczba kliknięć na okres nie jest zdefiniowana"
1704
+
1705
+ #: includes/functions.php:2755
1706
+ msgid "General limits"
1707
+ msgstr "Ogólne limity"
1708
+
1709
+ #: includes/functions.php:2761 includes/functions.php:2773
1710
+ #: includes/functions.php:2858
1711
+ msgid "Current value"
1712
+ msgstr "Wartość bieżąca"
1713
+
1714
+ #: includes/functions.php:2780 includes/functions.php:2790
1715
+ #: includes/functions.php:2809 includes/functions.php:2819
1716
+ #: includes/functions.php:2865 includes/functions.php:2874
1717
+ #: includes/functions.php:2892 includes/functions.php:2901 settings.php:2093
1718
+ msgid "Max"
1719
+ msgstr "Max"
1720
+
1721
+ #: includes/functions.php:2781
1722
+ msgid ""
1723
+ "Maximum number of impressions for this block. Empty means no general "
1724
+ "impression limit."
1725
+ msgstr ""
1726
+ "Maksymalna liczba wyświetleń dla tego bloku. Puste oznacza brak ogólnego "
1727
+ "limitu wyświetleń."
1728
+
1729
+ #: includes/functions.php:2783 includes/functions.php:2793
1730
+ #: includes/functions.php:2868 includes/functions.php:2877
1731
+ msgid "impression"
1732
+ msgid_plural "impressions"
1733
+ msgstr[0] "impresja"
1734
+ msgstr[1] "impresje"
1735
+ msgstr[2] "impresji"
1736
+
1737
+ #: includes/functions.php:2791
1738
+ msgid ""
1739
+ "Maximum number of impressions per time period. Empty means no time limit."
1740
+ msgstr ""
1741
+ "Maksymalna liczba wyświetleń w okresie. Puste oznacza brak limitu czasu."
1742
+
1743
+ #: includes/functions.php:2797 includes/functions.php:2826
1744
+ #: includes/functions.php:2881 includes/functions.php:2908
1745
+ msgid "per"
1746
+ msgstr "na"
1747
+
1748
+ #: includes/functions.php:2798 includes/functions.php:2827
1749
+ msgid "Time period in days. Empty means no time limit."
1750
+ msgstr "Okres w dniach. Puste oznacza brak limitu czasu."
1751
+
1752
+ #: includes/functions.php:2800 includes/functions.php:2829
1753
+ #: includes/functions.php:2884 includes/functions.php:2911
1754
+ #: includes/functions.php:3017 includes/functions.php:3368 strings.php:204
1755
+ #: strings.php:205 strings.php:206 strings.php:207 strings.php:208
1756
+ #: strings.php:209
1757
+ msgid "day"
1758
+ msgid_plural "days"
1759
+ msgstr[0] "dzień"
1760
+ msgstr[1] "dni"
1761
+ msgstr[2] "dni"
1762
+
1763
+ #: includes/functions.php:2810
1764
+ msgid ""
1765
+ "Maximum number of clicks on this block. Empty means no general click limit."
1766
+ msgstr ""
1767
+ "Maksymalna liczba kliknięć tego bloku. Pusty oznacza brak ogólnego limitu "
1768
+ "kliknięć."
1769
+
1770
+ #: includes/functions.php:2812 includes/functions.php:2822
1771
+ #: includes/functions.php:2895 includes/functions.php:2904
1772
+ #: includes/functions.php:4923
1773
+ msgid "click"
1774
+ msgid_plural "clicks"
1775
+ msgstr[0] "kliknięcie"
1776
+ msgstr[1] "kliknięcia"
1777
+ msgstr[2] "kliknięć"
1778
+
1779
+ #: includes/functions.php:2820
1780
+ msgid "Maximum number of clicks per time period. Empty means no time limit."
1781
+ msgstr ""
1782
+ "Maksymalna liczba kliknięć w danym okresie. Puste oznacza brak limitu "
1783
+ "czasowego."
1784
+
1785
+ #: includes/functions.php:2845
1786
+ msgid "Individual visitor limits"
1787
+ msgstr "Indywidualne limity odwiedzających"
1788
+
1789
+ #: includes/functions.php:2849 includes/functions.php:2851
1790
+ msgid ""
1791
+ "When specified number of clicks on this block for a visitor will be reached "
1792
+ "in the specified time period, all blocks that have click fraud protection "
1793
+ "enabled will be hidden for this visitor for the time period defined in "
1794
+ "general plugin settings."
1795
+ msgstr ""
1796
+ "Gdy określona liczba kliknięć tego bloku dla odwiedzającego zostanie "
1797
+ "osiągnięta w określonym przedziale czasu, wszystkie bloki, w których "
1798
+ "włączono ochronę przed oszustwami kliknięciami, zostaną ukryte dla tego "
1799
+ "odwiedzającego w okresie zdefiniowanym w ogólnych ustawieniach wtyczek."
1800
+
1801
+ #: includes/functions.php:2851
1802
+ msgid "Trigger click fraud protection"
1803
+ msgstr "Ochrona przed oszustwami za pomocą kliknięcia wyzwalającego"
1804
+
1805
+ #: includes/functions.php:2866
1806
+ msgid ""
1807
+ "Maximum number of impressions of this block for each visitor. Empty means no "
1808
+ "impression limit."
1809
+ msgstr ""
1810
+ "Maksymalna liczba wyświetleń tego bloku dla każdego odwiedzającego. Pusty "
1811
+ "oznacza brak limitu wyświetleń."
1812
+
1813
+ #: includes/functions.php:2875
1814
+ msgid ""
1815
+ "Maximum number of impressions per time period for each visitor. Empty means "
1816
+ "no impression limit per time period for visitors."
1817
+ msgstr ""
1818
+ "Maksymalna liczba wyświetleń w określonym czasie dla każdego odwiedzającego. "
1819
+ "Pusty oznacza brak limitu wyświetleń na czas dla odwiedzających."
1820
+
1821
+ #: includes/functions.php:2882 includes/functions.php:2909
1822
+ msgid ""
1823
+ "Time period in days. Use decimal value (with decimal point) for shorter "
1824
+ "periods. Empty means no time limit."
1825
+ msgstr ""
1826
+ "Okres w dniach. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
1827
+ "krótszych okresów. Puste oznacza brak limitu czasu."
1828
+
1829
+ #: includes/functions.php:2893
1830
+ msgid ""
1831
+ "Maximum number of clicks on this block for each visitor. Empty means no "
1832
+ "click limit."
1833
+ msgstr ""
1834
+ "Maksymalna liczba kliknięć tego bloku dla każdego odwiedzającego. Pusty "
1835
+ "oznacza brak limitu kliknięć."
1836
+
1837
+ #: includes/functions.php:2902
1838
+ msgid ""
1839
+ "Maximum number of clicks per time period for each visitor. Empty means no "
1840
+ "click limit per time period for visitors."
1841
+ msgstr ""
1842
+ "Maksymalna liczba kliknięć w każdym okresie dla każdego odwiedzającego. "
1843
+ "Pusty oznacza brak limitu kliknięć na czas dla odwiedzających."
1844
+
1845
+ #: includes/functions.php:2927
1846
+ msgid "Ad blocking detection is disabled"
1847
+ msgstr "Wykrywanie blokowania reklam jest wyłączone"
1848
+
1849
+ #: includes/functions.php:2928
1850
+ msgid "When ad blocking is detected"
1851
+ msgstr "Kiedy blokowanie reklam zostało wykryte"
1852
+
1853
+ #: includes/functions.php:2937
1854
+ msgid "replacement"
1855
+ msgstr "wymiana"
1856
+
1857
+ #: includes/functions.php:2938
1858
+ msgid "Block to be shown when ad blocking is detected"
1859
+ msgstr "Blok, który ma być wyświetlany po wykryciu blokowania reklam"
1860
+
1861
+ #: includes/functions.php:2939
1862
+ msgctxt "replacement"
1863
+ msgid "None"
1864
+ msgstr "Brak"
1865
+
1866
+ #: includes/functions.php:2956 includes/functions.php:5980
1867
+ msgid "Close button"
1868
+ msgstr "Przycisk ZAMKNIJ"
1869
+
1870
+ #: includes/functions.php:3008
1871
+ msgid "Auto close after"
1872
+ msgstr "Automatyczne zamykanie po"
1873
+
1874
+ #: includes/functions.php:3009
1875
+ msgid ""
1876
+ "Time in seconds in which the ad will automatically close. Leave empty to "
1877
+ "disable auto closing."
1878
+ msgstr ""
1879
+ "Czas w sekundach, w którym reklama zostanie automatycznie zamknięta. "
1880
+ "Pozostaw puste, aby wyłączyć automatyczne zamykanie."
1881
+
1882
+ #: includes/functions.php:3014
1883
+ msgid "Don't show for"
1884
+ msgstr "Nie pokazuj dla"
1885
+
1886
+ #: includes/functions.php:3015
1887
+ msgid ""
1888
+ "Time in days in which closed ad will not be shown again. Use decimal value "
1889
+ "(with decimal point) for shorter time period or leave empty to show it again "
1890
+ "on page reload."
1891
+ msgstr ""
1892
+ "Czas w dniach, w których zamknięta reklama nie będzie wyświetlana ponownie. "
1893
+ "Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) przez krótszy okres "
1894
+ "czasu lub pozostaw pustą, aby wyświetlić ją ponownie na stronie i ponownie "
1895
+ "załadować."
1896
+
1897
+ #: includes/functions.php:3035
1898
+ msgid "Delay showing for"
1899
+ msgstr "Opóźnienie wyświetlania dla"
1900
+
1901
+ #: includes/functions.php:3036
1902
+ msgid ""
1903
+ "Number of pageviews before the code is inserted (and ad displayed). Leave "
1904
+ "empty to insert the code for the first pageview."
1905
+ msgstr ""
1906
+ "Liczba odsłon przed wstawieniem kodu (i wyświetlenia reklamy). Pozostaw "
1907
+ "pusty, aby wstawić kod dla pierwszej odsłony strony."
1908
+
1909
+ #: includes/functions.php:3038 includes/functions.php:3045
1910
+ msgid "pageview"
1911
+ msgid_plural "pageviews"
1912
+ msgstr[0] "wyświetlenie strony"
1913
+ msgstr[1] "wyświetlenia strony"
1914
+ msgstr[2] "wyświetleń strony"
1915
+
1916
+ #: includes/functions.php:3042
1917
+ msgid "Show every"
1918
+ msgid_plural "Show every"
1919
+ msgstr[0] "Pokaż co"
1920
+ msgstr[1] "Pokaż co"
1921
+ msgstr[2] "Pokaż co"
1922
+
1923
+ #: includes/functions.php:3043
1924
+ msgid ""
1925
+ "Number of pageviews to insert the code again. Leave empty to insert the code "
1926
+ "for every pageview."
1927
+ msgstr ""
1928
+ "Liczba wyświetleń stron do ponownego wstawienia kodu. Pozostaw puste "
1929
+ "miejsce, aby wstawić kod dla każdego widoku strony."
1930
+
1931
+ #: includes/functions.php:3062
1932
+ msgid "Lazy loading"
1933
+ msgstr "Ładuję, proszę czekać"
1934
+
1935
+ #: includes/functions.php:3065
1936
+ msgid "Manual loading"
1937
+ msgstr "Ładowanie ręczne"
1938
+
1939
+ #: includes/functions.php:3131
1940
+ #, php-format
1941
+ msgid "This product includes GeoLite2 data created by %s"
1942
+ msgstr "Ten produkt zawiera dane GeoLite2 utworzone przez %s"
1943
+
1944
+ #: includes/functions.php:3133
1945
+ #, php-format
1946
+ msgid "Create and manage %s MaxMind license key %s"
1947
+ msgstr "Tworzenie i zarządzanie %s MaxMind, klucz licencyjny %s"
1948
+
1949
+ #: includes/functions.php:3144
1950
+ msgid "IP geolocation database"
1951
+ msgstr "Baza danych geolokalizacji IP"
1952
+
1953
+ #: includes/functions.php:3147
1954
+ msgid "Select IP geolocation database."
1955
+ msgstr "Wybierz bazę danych geolokalizacji IP."
1956
+
1957
+ #: includes/functions.php:3158
1958
+ msgid "Automatic database updates"
1959
+ msgstr "Automatyczne aktualizacje bazy danych"
1960
+
1961
+ #: includes/functions.php:3161
1962
+ msgid ""
1963
+ "Automatically download and update free GeoLite2 IP geolocation database by "
1964
+ "MaxMind"
1965
+ msgstr ""
1966
+ "Automatycznie pobieraj i aktualizuj bezpłatne bazy geolokalizacji GEOLite2 "
1967
+ "IP przez MaxMind"
1968
+
1969
+ #: includes/functions.php:3169
1970
+ msgid "MaxMind license key"
1971
+ msgstr "Klucz licencyjny MaxMind"
1972
+
1973
+ #: includes/functions.php:3172
1974
+ msgid "Enter license key obtained from MaxMind"
1975
+ msgstr "Wprowadź klucz licencyjny uzyskany z MaxMind"
1976
+
1977
+ #: includes/functions.php:3178
1978
+ msgid "Database"
1979
+ msgstr "Baza danych"
1980
+
1981
+ #: includes/functions.php:3181
1982
+ msgid ""
1983
+ "Aabsolute path starting with '/' or relative path to the MaxMind database "
1984
+ "file"
1985
+ msgstr ""
1986
+ "Bezwzględna ścieżka rozpoczynająca się od '/' lub względna ścieżka do pliku "
1987
+ "bazy danych MaxMind"
1988
+
1989
+ #. translators: %d: group number
1990
+ #: includes/functions.php:3199
1991
+ #, php-format
1992
+ msgid "Group %d"
1993
+ msgstr "Grupa %d"
1994
+
1995
+ #: includes/functions.php:3205
1996
+ msgid "countries"
1997
+ msgstr "kraje"
1998
+
1999
+ #: includes/functions.php:3250
2000
+ msgid ""
2001
+ "Enable impression and click tracking. You also need to enable tracking for "
2002
+ "each block you want to track."
2003
+ msgstr ""
2004
+ "Włącz śledzenie wyświetleń i kliknięć. Należy również włączyć śledzenie dla "
2005
+ "każdego bloku, który chcesz śledzić."
2006
+
2007
+ #: includes/functions.php:3257
2008
+ msgid "Generate report"
2009
+ msgstr "Generuj raport"
2010
+
2011
+ #: includes/functions.php:3265
2012
+ msgid "Impression and Click Tracking"
2013
+ msgstr "Śledzenie wyświetleń i kliknięć"
2014
+
2015
+ #: includes/functions.php:3266 settings.php:2781
2016
+ msgctxt "ad blocking detection"
2017
+ msgid "NOT ENABLED"
2018
+ msgstr "NIE WŁĄCZONO"
2019
+
2020
+ #: includes/functions.php:3282
2021
+ msgid "Internal"
2022
+ msgstr "Wewnętrzna"
2023
+
2024
+ #: includes/functions.php:3286
2025
+ msgid "Track impressions and clicks with internal tracking and statistics"
2026
+ msgstr ""
2027
+ "Śledzenie wyświetleń i kliknięć za pomocą wewnętrznego śledzenia i statystyk"
2028
+
2029
+ #: includes/functions.php:3291
2030
+ msgid "External"
2031
+ msgstr "Zewnętrzny"
2032
+
2033
+ #: includes/functions.php:3295
2034
+ msgid ""
2035
+ "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
2036
+ "code installed)"
2037
+ msgstr ""
2038
+ "Śledzenie wyświetleń i kliknięć za pomocą Google Analytics lub Matomo "
2039
+ "(wymaga zainstalowanego kodu śledzenia)"
2040
+
2041
+ #: includes/functions.php:3300
2042
+ msgid "Track Pageviews"
2043
+ msgstr "Śledź wyświetlenia stron"
2044
+
2045
+ #: includes/functions.php:3306
2046
+ msgid "Track Pageviews by Device (as configured for viewports)"
2047
+ msgstr "Śledzenie odsłon według urządzenia (zgodnie z konfiguracją dla rzutni)"
2048
+
2049
+ #: includes/functions.php:3316
2050
+ msgid "Track for Logged in Users"
2051
+ msgstr "Śledź dla Zalogowanych Użytkowników"
2052
+
2053
+ #: includes/functions.php:3322
2054
+ msgid "Track impressions and clicks from logged in users"
2055
+ msgstr "Śledzenie wyświetleń i kliknięć od zalogowanych użytkowników"
2056
+
2057
+ #: includes/functions.php:3332
2058
+ msgid "Click Detection"
2059
+ msgstr "Wykrywanie kliknięć"
2060
+
2061
+ #: includes/functions.php:3338
2062
+ msgid ""
2063
+ "Standard method detects clicks only on banners with links, Advanced method "
2064
+ "can detect clicks on any kind of ads, but it is slightly less accurate"
2065
+ msgstr ""
2066
+ "Standardowa metoda wykrywa kliknięcia tylko na banerach z linkami, Metoda "
2067
+ "zaawansowana może wykrywać kliknięcia na wszelkiego rodzaju reklamy, ale "
2068
+ "jest nieco mniej dokładna"
2069
+
2070
+ #: includes/functions.php:3357
2071
+ msgid "Click fraud protection"
2072
+ msgstr "Ochrona przed oszustwami kliknięć"
2073
+
2074
+ #: includes/functions.php:3361
2075
+ msgid "Globally enable click fraud protection for selected blocks."
2076
+ msgstr ""
2077
+ "Globalnie włącz ochronę przed oszustwami kliknięć dla wybranych bloków."
2078
+
2079
+ #: includes/functions.php:3367
2080
+ msgid "Protection time"
2081
+ msgstr "Czas ochrony"
2082
+
2083
+ #: includes/functions.php:3368
2084
+ msgid ""
2085
+ "Time period in days in which blocks with enabled click fraud protection will "
2086
+ "be hidden. Use decimal value (with decimal point) for shorter periods."
2087
+ msgstr ""
2088
+ "Okres w dniach, w którym bloki z włączoną ochroną przed oszustwami kliknięć "
2089
+ "zostaną ukryte. Użyj wartości dziesiętnej (z przecinkiem dziesiętnym) dla "
2090
+ "krótszych okresów."
2091
+
2092
+ #: includes/functions.php:3387
2093
+ msgid "Report header image"
2094
+ msgstr "Raport nagłówka obrazu"
2095
+
2096
+ #: includes/functions.php:3390
2097
+ msgid ""
2098
+ "Image or logo to be displayed in the header of the statistins report. "
2099
+ "Aabsolute path starting with '/' or relative path to the image file. Clear "
2100
+ "to reset to default image."
2101
+ msgstr ""
2102
+ "Obraz lub logo do wyświetlenia w nagłówku raportu statystycznego. Ścieżka "
2103
+ "bezwzględna rozpoczynająca się od „/” lub ścieżka względna do pliku obrazu. "
2104
+ "Wyczyść, aby zresetować do domyślnego obrazu."
2105
+
2106
+ #: includes/functions.php:3391 strings.php:235
2107
+ msgid "Select or upload header image"
2108
+ msgstr "Wybierz lub prześlij obraz nagłówka"
2109
+
2110
+ #: includes/functions.php:3396
2111
+ msgid "Report header title"
2112
+ msgstr "Raport tytułu nagłówka"
2113
+
2114
+ #: includes/functions.php:3399
2115
+ msgid ""
2116
+ "Title to be displayed in the header of the statistics report. Text or HTML "
2117
+ "code, clear to reset to default text."
2118
+ msgstr ""
2119
+ "Tytuł, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
2120
+ "kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
2121
+
2122
+ #: includes/functions.php:3404
2123
+ msgid "Report header description"
2124
+ msgstr "Raport opisu nagłówka"
2125
+
2126
+ #: includes/functions.php:3407
2127
+ msgid ""
2128
+ "Description to be displayed in the header of the statistics report. Text or "
2129
+ "HTML code, clear to reset to default text."
2130
+ msgstr ""
2131
+ "Opis, który ma być wyświetlany w nagłówku raportu statystycznego. Tekst lub "
2132
+ "kod HTML, wyczyść, aby zresetować do tekstu domyślnego."
2133
+
2134
+ #: includes/functions.php:3412
2135
+ msgid "Report footer"
2136
+ msgstr "Raport stopki"
2137
+
2138
+ #: includes/functions.php:3415
2139
+ msgid ""
2140
+ "Text to be displayed in the footer of the statistics report. Clear to reset "
2141
+ "to default text."
2142
+ msgstr ""
2143
+ "Tekst, który ma być wyświetlany w stopce raportu statystycznego. Wyczyść, "
2144
+ "aby przywrócić domyślny tekst."
2145
+
2146
+ #: includes/functions.php:3420
2147
+ msgid "Public report key"
2148
+ msgstr "Klucz raportu publicznego"
2149
+
2150
+ #: includes/functions.php:3423
2151
+ msgid "String to generate unique report IDs. Clear to reset to default value."
2152
+ msgstr ""
2153
+ "Ciąg do generowania unikatowych identyfikatorów raportu. Wyczyść, aby "
2154
+ "przywrócić wartość domyślną."
2155
+
2156
+ #: includes/functions.php:3438
2157
+ msgid "Event category"
2158
+ msgstr "Kategoria wydarzenia"
2159
+
2160
+ #: includes/functions.php:3441
2161
+ msgid ""
2162
+ "Category name used for external tracking events. You can use tags to get the "
2163
+ "event, the number or the name of the block that caused the event."
2164
+ msgstr ""
2165
+ "Nazwa kategorii używana dla zdarzeń śledzenia zewnętrznego. Możesz użyć "
2166
+ "tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
2167
+ "zdarzenie."
2168
+
2169
+ #: includes/functions.php:3446
2170
+ msgid "Event action"
2171
+ msgstr "Akcja zdarzenia"
2172
+
2173
+ #: includes/functions.php:3449
2174
+ msgid ""
2175
+ "Action name used for external tracking events. You can use tags to get the "
2176
+ "event, the number or the name of the block that caused the event."
2177
+ msgstr ""
2178
+ "Nazwa akcji używana dla zdarzeń śledzenia zewnętrznego. Możesz użyć tagów, "
2179
+ "aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował zdarzenie."
2180
+
2181
+ #: includes/functions.php:3454
2182
+ msgid "Event label"
2183
+ msgstr "Etykieta zdarzenia"
2184
+
2185
+ #: includes/functions.php:3457
2186
+ msgid ""
2187
+ "Label name used for external tracking events. You can use tags to get the "
2188
+ "event, the number or the name of the block that caused the event."
2189
+ msgstr ""
2190
+ "Nazwa etykiety używanej do śledzenia zdarzeń zewnętrznych. Możesz użyć "
2191
+ "tagów, aby uzyskać zdarzenie, numer lub nazwę bloku, który spowodował "
2192
+ "zdarzenie."
2193
+
2194
+ #: includes/functions.php:3486
2195
+ msgid "Are you sure you want to clear all exceptions for block"
2196
+ msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla bloku"
2197
+
2198
+ #: includes/functions.php:3487
2199
+ msgid "Clear all exceptions for block"
2200
+ msgstr "Wyczyść wszystkie wyjątki dla bloku"
2201
+
2202
+ #: includes/functions.php:3494
2203
+ msgid "Are you sure you want to clear all exceptions?"
2204
+ msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki?"
2205
+
2206
+ #: includes/functions.php:3494
2207
+ msgid "Clear all exceptions for all blocks"
2208
+ msgstr "Wyczyść wszystkie wyjątki dla wszystkich bloków"
2209
+
2210
+ #: includes/functions.php:3499 settings.php:3860 settings.php:4345
2211
+ msgid "Type"
2212
+ msgstr "Typ"
2213
+
2214
+ #: includes/functions.php:3517
2215
+ msgid "View"
2216
+ msgstr "Zobacz"
2217
+
2218
+ #: includes/functions.php:3518 includes/functions.php:3525
2219
+ #: includes/functions.php:3529 includes/placeholders.php:353
2220
+ #: includes/preview.php:2307 settings.php:1345 settings.php:3620
2221
+ msgid "Edit"
2222
+ msgstr "Edytuj"
2223
+
2224
+ #: includes/functions.php:3548
2225
+ msgid "Are you sure you want to clear all exceptions for"
2226
+ msgstr "Czy na pewno chcesz wyczyścić wszystkie wyjątki dla"
2227
+
2228
+ #: includes/functions.php:3549
2229
+ msgid "Clear all exceptions for"
2230
+ msgstr "Wyczyść wszystkie wyjątki dla"
2231
+
2232
+ #: includes/functions.php:3562
2233
+ msgid "No exceptions"
2234
+ msgstr "Brak wyjątków"
2235
+
2236
+ #. translators: %s: Ad Inserter Pro
2237
+ #: includes/functions.php:3573
2238
+ #, php-format
2239
+ msgid "%s options for network blogs"
2240
+ msgstr "Opcje %s dla blogów sieciowych"
2241
+
2242
+ #. translators: %s: Ad Inserter Pro
2243
+ #: includes/functions.php:3578
2244
+ #, php-format
2245
+ msgid "Enable %s widgets for sub-sites"
2246
+ msgstr "Włączenie %s widgetów dla podstron"
2247
+
2248
+ #: includes/functions.php:3578
2249
+ msgid "Widgets"
2250
+ msgstr "Widgety"
2251
+
2252
+ #: includes/functions.php:3583
2253
+ msgid "Enable PHP code processing for sub-sites"
2254
+ msgstr "Włączenie przetwarzania kodu PHP dla podstron"
2255
+
2256
+ #: includes/functions.php:3583
2257
+ msgid "PHP Processing"
2258
+ msgstr "Przetwarzanie PHP"
2259
+
2260
+ #. translators: %s: Ad Inserter Pro
2261
+ #: includes/functions.php:3588
2262
+ #, php-format
2263
+ msgid "Enable %s block exceptions in post/page editor for sub-sites"
2264
+ msgstr "Włączenie %s blokowania wyjątków w edytorze poczty/stron dla podstron"
2265
+
2266
+ #: includes/functions.php:3588
2267
+ msgid "Post/Page exceptions"
2268
+ msgstr "Wyjątki postów/stron"
2269
+
2270
+ #. translators: %s: Ad Inserter Pro
2271
+ #: includes/functions.php:3593
2272
+ #, php-format
2273
+ msgid "Enable %s settings page for sub-sites"
2274
+ msgstr "Włącz stronę %s ustawień dla podstron"
2275
+
2276
+ #: includes/functions.php:3593
2277
+ msgid "Settings page"
2278
+ msgstr "Strona Ustawienia"
2279
+
2280
+ #. translators: %s: Ad Inserter Pro
2281
+ #: includes/functions.php:3598
2282
+ #, php-format
2283
+ msgid "Enable %s settings of main site to be used for all blogs"
2284
+ msgstr ""
2285
+ "Włączenie ustawień %s głównej strony, które mają być używane dla wszystkich "
2286
+ "blogów"
2287
+
2288
+ #: includes/functions.php:3598
2289
+ msgid "Main site settings used for all blogs"
2290
+ msgstr "Ustawienia strony głównej używane dla wszystkich blogów"
2291
+
2292
+ #. translators: %s: Ad Inserter Pro
2293
+ #: includes/functions.php:3603
2294
+ #, php-format
2295
+ msgid "Show link to %s settings page for each site on the Sites page"
2296
+ msgstr ""
2297
+ "Pokaż łącze do %s strony ustawień dla każdej witryny na stronie Witryny"
2298
+
2299
+ #. translators: %s: Ad Inserter Pro
2300
+ #: includes/functions.php:3603
2301
+ #, php-format
2302
+ msgid "Show link to %s on the Sites page"
2303
+ msgstr "Pokaż łącze do %s na stronie Witryny"
2304
+
2305
+ #: includes/functions.php:3614 settings.php:2780
2306
+ msgid "Ad Blocking Detection"
2307
+ msgstr "Wykrywanie blokowania reklam"
2308
+
2309
+ #: includes/functions.php:3620
2310
+ msgid ""
2311
+ "Standard method is reliable but should be used only if Advanced method does "
2312
+ "not work. Advanced method recreates files used for detection with random "
2313
+ "names, however, it may not work if the scripts in the upload folder are not "
2314
+ "publicly accessible"
2315
+ msgstr ""
2316
+ "Standardowa metoda jest niezawodna, ale powinna być używana tylko wtedy, gdy "
2317
+ "metoda zaawansowana nie działa. Zaawansowana metoda odtwarza pliki używane "
2318
+ "do wykrywania przy użyciu losowych nazw, jednak może nie działać, jeśli "
2319
+ "skrypty w folderze przekazywania nie są publicznie dostępne"
2320
+
2321
+ #: includes/functions.php:4343 includes/functions.php:4465
2322
+ #: includes/functions.php:4485
2323
+ msgid "AD BLOCKING"
2324
+ msgstr "BLOKOWANIE REKLAM"
2325
+
2326
+ #: includes/functions.php:4344 includes/functions.php:4390
2327
+ #: includes/functions.php:4459 includes/functions.php:4486
2328
+ msgid "BLOCK INSERTED BUT NOT VISIBLE"
2329
+ msgstr "BLOK WSTAWIONY, ALE NIEWIDOCZNY"
2330
+
2331
+ #: includes/functions.php:4347 includes/functions.php:4458
2332
+ #: includes/functions.php:4492
2333
+ msgid "NO AD BLOCKING"
2334
+ msgstr "BRAK BLOKOWANIA REKLAM"
2335
+
2336
+ #: includes/functions.php:4389 includes/functions.php:4396
2337
+ msgid "AD BLOCKING REPLACEMENT"
2338
+ msgstr "WYMIANA BLOKOWANIA REKLAM"
2339
+
2340
+ #: includes/functions.php:4565 includes/functions.php:4774
2341
+ msgid "Pageviews"
2342
+ msgstr "Ilość odsłon"
2343
+
2344
+ #: includes/functions.php:4711
2345
+ msgctxt "Version"
2346
+ msgid "Unknown"
2347
+ msgstr "Nieznany"
2348
+
2349
+ #: includes/functions.php:4711
2350
+ msgctxt "Times"
2351
+ msgid "DISPLAYED"
2352
+ msgstr "Wyświetlany"
2353
+
2354
+ #: includes/functions.php:4711
2355
+ msgid "No version"
2356
+ msgstr "Brak wersji"
2357
+
2358
+ #: includes/functions.php:4712
2359
+ msgctxt "Times"
2360
+ msgid "BLOCKED"
2361
+ msgstr "Zablokowany"
2362
+
2363
+ #: includes/functions.php:4774
2364
+ msgid "Impressions"
2365
+ msgstr "Wyświetlenia"
2366
+
2367
+ #: includes/functions.php:4775 includes/functions.php:4776
2368
+ #: includes/functions.php:4831
2369
+ msgid "Clicks"
2370
+ msgstr "Kliknięcia"
2371
+
2372
+ #: includes/functions.php:4776
2373
+ msgid "events"
2374
+ msgstr "wydarzenia"
2375
+
2376
+ #: includes/functions.php:4777
2377
+ msgid "Ad Blocking Share"
2378
+ msgstr "Udział w blokowaniu reklam"
2379
+
2380
+ #. translators: CTR as Click Through Rate
2381
+ #: includes/functions.php:4777 includes/functions.php:4837
2382
+ msgid "CTR"
2383
+ msgstr "CTR"
2384
+
2385
+ #: includes/functions.php:4919
2386
+ msgid "pageviews"
2387
+ msgid_plural "pageviews"
2388
+ msgstr[0] "odsłona"
2389
+ msgstr[1] "odsłony"
2390
+ msgstr[2] "odsłon"
2391
+
2392
+ #: includes/functions.php:4919
2393
+ msgid "impressions"
2394
+ msgid_plural "impressions"
2395
+ msgstr[0] "impresje"
2396
+ msgstr[1] "impresje"
2397
+ msgstr[2] "impresji"
2398
+
2399
+ #: includes/functions.php:4923
2400
+ msgid "event"
2401
+ msgid_plural "events"
2402
+ msgstr[0] "wydarzenie"
2403
+ msgstr[1] "wydarzenia"
2404
+ msgstr[2] "wydarzeń"
2405
+
2406
+ #: includes/functions.php:5018
2407
+ msgctxt "Pageviews / Impressions"
2408
+ msgid "Average"
2409
+ msgstr "Średni"
2410
+
2411
+ #: includes/functions.php:5039
2412
+ msgctxt "Ad Blocking / Clicks"
2413
+ msgid "Average"
2414
+ msgstr "Średni"
2415
+
2416
+ #: includes/functions.php:5063
2417
+ msgctxt "Ad Blocking Share / CTR"
2418
+ msgid "Average"
2419
+ msgstr "Średni"
2420
+
2421
+ #: includes/functions.php:5193
2422
+ #, php-format
2423
+ msgid "File %s missing."
2424
+ msgstr "Brak pliku %s."
2425
+
2426
+ #: includes/functions.php:5246 includes/functions.php:5338
2427
+ #: includes/functions.php:5681 strings.php:189
2428
+ #, php-format
2429
+ msgid "%s Report"
2430
+ msgstr "Raport: %s"
2431
+
2432
+ #: includes/functions.php:5587
2433
+ msgid "for last month"
2434
+ msgstr "za ostatni miesiąc"
2435
+
2436
+ #: includes/functions.php:5592
2437
+ msgid "for this month"
2438
+ msgstr "za ten miesiąc"
2439
+
2440
+ #: includes/functions.php:5597
2441
+ msgid "for this year"
2442
+ msgstr "za ten rok"
2443
+
2444
+ #: includes/functions.php:5602
2445
+ msgid "for the last 15 days"
2446
+ msgstr "przez ostatnie 15 dni"
2447
+
2448
+ #: includes/functions.php:5607
2449
+ msgid "for the last 30 days"
2450
+ msgstr "przez ostatnie 30 dni"
2451
+
2452
+ #: includes/functions.php:5612
2453
+ msgid "for the last 90 days"
2454
+ msgstr "przez ostatnie 90 dni"
2455
+
2456
+ #: includes/functions.php:5617
2457
+ msgid "for the last 180 days"
2458
+ msgstr "przez ostatnie 180 dni"
2459
+
2460
+ #: includes/functions.php:5622
2461
+ msgid "for the last 365 days"
2462
+ msgstr "przez ostatnie 365 dni"
2463
+
2464
+ #: includes/php-check.php:8
2465
+ msgid "The latest PHP version: "
2466
+ msgstr "Najnowsza wersja PHP: "
2467
+
2468
+ #: includes/placeholders.php:20
2469
+ msgid "Custom"
2470
+ msgstr "Własny"
2471
+
2472
+ #: includes/placeholders.php:103
2473
+ msgid "Placeholder Editor"
2474
+ msgstr "Edytor symboli zastępczych"
2475
+
2476
+ #: includes/placeholders.php:352
2477
+ msgid "Select placeholder"
2478
+ msgstr "Wybierz symbol zastępczy"
2479
+
2480
+ #: includes/placeholders.php:353
2481
+ msgid "Edit placeholder size, colors and text"
2482
+ msgstr "Edytowanie rozmiaru, kolorów i tekstu symbolu zastępczego"
2483
+
2484
+ #: includes/placeholders.php:354
2485
+ msgid "Close placeholder editor"
2486
+ msgstr "Zamknij edytor symboli zastępczych"
2487
+
2488
+ #: includes/placeholders.php:358
2489
+ msgid "Placeholder"
2490
+ msgstr "Placeholder"
2491
+
2492
+ #: includes/placeholders.php:363 settings.php:954 settings.php:4346
2493
+ msgid "Size"
2494
+ msgstr "Rozmiar"
2495
+
2496
+ #: includes/placeholders.php:379
2497
+ msgid "Background color"
2498
+ msgstr "Kolor tła"
2499
+
2500
+ #: includes/placeholders.php:398
2501
+ msgid "Text"
2502
+ msgstr "Tekst"
2503
+
2504
+ #: includes/placeholders.php:403
2505
+ msgid "Text color"
2506
+ msgstr "Kolor tekstu"
2507
+
2508
+ #: includes/placeholders.php:412
2509
+ msgid ""
2510
+ "Here you can create a universal placeholder image that can be used in place "
2511
+ "of ads when they are not available yet.\n"
2512
+ "Placeholder images created here will behave as any other image. You can also "
2513
+ "save them to local computer or server."
2514
+ msgstr ""
2515
+ "Tutaj możesz stworzyć uniwersalny obrazek z miejscem, który może być "
2516
+ "wykorzystany w miejsce reklam, gdy nie są one jeszcze dostępne.\n"
2517
+ "Utworzone tutaj obrazy z miejscem będą zachowywały się jak każdy inny obraz. "
2518
+ "Można je również zapisać na lokalnym komputerze lub serwerze."
2519
+
2520
+ #: includes/placeholders.php:417
2521
+ msgid ""
2522
+ "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
2523
+ "300x600 or define custom size.\n"
2524
+ "Default placeholders are gray with size as placeholder text but you can use "
2525
+ "any color or text you want. Click on <strong>Edit</strong> button to edit "
2526
+ "placeholder size, color or text.\n"
2527
+ "You can also create blank solid color rectangles by clearing placeholder "
2528
+ "text."
2529
+ msgstr ""
2530
+ "Wybierz pomiędzy typowymi rozmiarami reklam 300x250, 336x280, 728x90, "
2531
+ "468x60, 250x250, 300x600 lub zdefiniuj rozmiar niestandardowy.\n"
2532
+ "Domyślne symbole zastępcze to szare z rozmiarem jako tekst zastępczy, ale "
2533
+ "można użyć dowolnego koloru lub tekstu. Kliknij przycisk <strong>Edytuj,</"
2534
+ "strong> aby edytować rozmiar, kolor lub tekst.\n"
2535
+ "Można również utworzyć puste prostokąty w kolorze jednolitym, czyszcząc "
2536
+ "tekst zastępczy."
2537
+
2538
+ #: includes/placeholders.php:421
2539
+ msgid ""
2540
+ "<strong>Please note</strong>: if you have active rotation editor the code "
2541
+ "window shows only the code for the currently selected option.\n"
2542
+ "Therefore, code generator will in such case import or generate code for the "
2543
+ "currently selected option."
2544
+ msgstr ""
2545
+ "<strong>Uwaga:</strong>jeśli masz aktywny edytor rotacji, okno kodu pokazuje "
2546
+ "tylko kod aktualnie wybranej opcji.\n"
2547
+ "W związku z tym generator kodu będzie w takim przypadku importował lub "
2548
+ "generował kod dla aktualnie wybranej opcji."
2549
+
2550
+ #: includes/placeholders.php:424
2551
+ msgid ""
2552
+ "Code generator for banners and AdSense generates the code only when you "
2553
+ "click on the button Generate code.\n"
2554
+ "It is a tool that can help you to create code for AdSense or banners with "
2555
+ "links. So if you are using rotation editor and switch between options, you "
2556
+ "need to (optionally) import and generate code for each rotation option."
2557
+ msgstr ""
2558
+ "Generator kodu dla banerów i AdSense generuje kod tylko po kliknięciu na "
2559
+ "przycisk Generowanie kodu.\n"
2560
+ "Jest to narzędzie, które może pomóc w tworzeniu kodu dla AdSense lub banerów "
2561
+ "z linkami. Jeśli więc używasz edytora rotacji i przełączasz się między "
2562
+ "opcjami, musisz (opcjonalnie) importować i generować kod dla każdej opcji "
2563
+ "obrotu."
2564
+
2565
+ #: includes/placeholders.php:427
2566
+ msgid ""
2567
+ "Ad Inserter has a simple code generator for banners and placeholders.\n"
2568
+ "You can select banner image (or placeholder), optionally define link (web "
2569
+ "page address that will open when the banner will be clicked) and select "
2570
+ "whether to open link in a new tab."
2571
+ msgstr ""
2572
+ "Ad Inserter posiada prosty generator kodu dla banerów i symboli "
2573
+ "zastępczych.\n"
2574
+ "Można wybrać obraz banera (lub symbol zastępczy), opcjonalnie zdefiniować "
2575
+ "łącze (adres strony internetowej, który otworzy się po kliknięciu banera) i "
2576
+ "wybrać, czy otworzyć łącze w nowej karcie."
2577
+
2578
+ #: includes/preview-adb.php:7
2579
+ msgid "Add dummy paragraph"
2580
+ msgstr "Dodawanie akapitu fikcyjnego"
2581
+
2582
+ #: includes/preview-adb.php:8
2583
+ msgid "Remove dummy paragraph"
2584
+ msgstr "Usuwanie akapitu fikcyjnego"
2585
+
2586
+ #: includes/preview-adb.php:9 includes/preview.php:1989
2587
+ msgid "Use current settings"
2588
+ msgstr "Użyj bieżących ustawień"
2589
+
2590
+ #: includes/preview-adb.php:9
2591
+ msgctxt "Button"
2592
+ msgid "Use"
2593
+ msgstr "Użyj"
2594
+
2595
+ #: includes/preview-adb.php:10
2596
+ msgid "Reset to the saved settings"
2597
+ msgstr "Resetuj do zapisanych ustawień"
2598
+
2599
+ #: includes/preview-adb.php:10
2600
+ msgctxt "Button"
2601
+ msgid "Reset"
2602
+ msgstr "Resetuj"
2603
+
2604
+ #: includes/preview-adb.php:11
2605
+ msgid "Reset to the default settings"
2606
+ msgstr "Resetuj do domyślnych ustawień"
2607
+
2608
+ #: includes/preview-adb.php:11
2609
+ msgctxt "Button"
2610
+ msgid "Default"
2611
+ msgstr "Domyślny"
2612
+
2613
+ #: includes/preview-adb.php:12 includes/preview.php:1992
2614
+ msgid "Close preview window"
2615
+ msgstr "Zamknij okno podglądu"
2616
+
2617
+ #: includes/preview-adb.php:12
2618
+ msgctxt "Button "
2619
+ msgid "Cancel"
2620
+ msgstr "Anuluj"
2621
+
2622
+ #: includes/preview-adb.php:60
2623
+ msgid "Ad Blocking Detected Message Preview"
2624
+ msgstr "Wykrywacz blokowania reklam, podgląd wiadomości"
2625
+
2626
+ #: includes/preview-adb.php:348 settings.php:2906
2627
+ msgid "Message CSS"
2628
+ msgstr "Wiadomość CSS"
2629
+
2630
+ #: includes/preview-adb.php:353 settings.php:2914
2631
+ msgid "Overlay CSS"
2632
+ msgstr "Nakładki CSS"
2633
+
2634
+ #: includes/preview.php:229
2635
+ msgid "Sticky Code Preview"
2636
+ msgstr "Podgląd przyklejonego kodu"
2637
+
2638
+ #: includes/preview.php:229
2639
+ msgid "Code Preview"
2640
+ msgstr "Podgląd kodu"
2641
+
2642
+ #: includes/preview.php:1987
2643
+ msgid "Highlight inserted code"
2644
+ msgstr "Podświetl wstawiony kod"
2645
+
2646
+ #: includes/preview.php:1987
2647
+ msgid "Highlight"
2648
+ msgstr "Podświetlenie"
2649
+
2650
+ #: includes/preview.php:1990
2651
+ msgid "Reset to block settings"
2652
+ msgstr "Resetowanie w celu zablokowania ustawień"
2653
+
2654
+ #: includes/preview.php:2005
2655
+ msgid "AdSense ad unit"
2656
+ msgstr "Jednostka reklamowa AdSense"
2657
+
2658
+ #: includes/preview.php:2072
2659
+ msgid "wrapping div"
2660
+ msgstr "wrapping div"
2661
+
2662
+ #: includes/preview.php:2077 includes/preview.php:2084
2663
+ msgid "background"
2664
+ msgstr "tło"
2665
+
2666
+ #: includes/preview.php:2111 includes/preview.php:2262 settings.php:1306
2667
+ msgid "Alignment"
2668
+ msgstr "Wyrównanie"
2669
+
2670
+ #: includes/preview.php:2179
2671
+ msgid "Horizontal margin"
2672
+ msgstr "Margines poziomy"
2673
+
2674
+ #: includes/preview.php:2228
2675
+ msgid "Vertical margin"
2676
+ msgstr "Margines pionowy"
2677
+
2678
+ #: includes/preview.php:2250
2679
+ msgid "Animate"
2680
+ msgstr "Animacja"
2681
+
2682
+ #: includes/preview.php:2316
2683
+ msgid ""
2684
+ "This is a preview of the code between dummy paragraphs. Here you can test "
2685
+ "various block alignments, visually edit margin and padding values of the "
2686
+ "wrapping div\n"
2687
+ "or write CSS code directly and watch live preview. Highlight button "
2688
+ "highlights background, wrapping div margin and code area, while Reset button "
2689
+ "restores all the values to those of the current block."
2690
+ msgstr ""
2691
+ "Jest to podgląd kodu między atrapami akapitów. Tutaj możesz przetestować "
2692
+ "różne wyrównania bloków, wizualnie edytować wartości margin i padding dla "
2693
+ "wrapping div\n"
2694
+ "lub napisać kod CSS bezpośrednio i oglądać podgląd na żywo. Przycisk "
2695
+ "Podświetla tło, wrapping div margin i obszaru kodu, a przycisk Reset "
2696
+ "przywraca wszystkie wartości do wartości bieżącego bloku."
2697
+
2698
+ #: includes/preview.php:2319
2699
+ msgid ""
2700
+ "This is a preview of the saved block between dummy paragraphs. It shows the "
2701
+ "code with the alignment and style as it is set for this block. Highlight "
2702
+ "button highlights background, wrapping div margin and code area."
2703
+ msgstr ""
2704
+ "Jest to podgląd zapisanego bloku między atrapami akapitów. Pokazuje kod z "
2705
+ "wyrównaniem i stylem ustawionym dla tego bloku. Przycisk Podświetlenia "
2706
+ "podkreśla tło, wrapping div margin i obszaru kodu."
2707
+
2708
+ #: includes/preview.php:2321
2709
+ msgid ""
2710
+ "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2711
+ "code was loaded from your AdSense account. The ad block is displayed on a "
2712
+ "dummy page so it may be blank (no ads). Click on the Highlight button to "
2713
+ "highlight ad block."
2714
+ msgstr ""
2715
+ "Jest to podgląd bloku reklam AdSense między fikcyjnymi akapitami. Kod "
2716
+ "reklamy AdSense został załadowany z Twojego konta AdSense. Blokowanie reklam "
2717
+ "jest wyświetlane na fikcyjnej stronie, więc może być pusty (bez reklam). "
2718
+ "Kliknij przycisk Wyróżnij, aby wyróżnić blok reklam."
2719
+
2720
+ #: includes/preview.php:2327
2721
+ msgid ""
2722
+ "You can resize the window (and refresh the page to reload ads) to check "
2723
+ "display with different screen widths.\n"
2724
+ "Once you are satisfied with alignment click on the Use button and the "
2725
+ "settings will be copied to the active block."
2726
+ msgstr ""
2727
+ "Możesz zmienić rozmiar okna (i odświeżyć stronę, aby ponownie załadować "
2728
+ "reklamy), aby sprawdzić wyświetlanie z różnymi szerokościami ekranu.\n"
2729
+ "Gdy jesteś zadowolony z wyrównania kliknij przycisk Użyj, a ustawienia "
2730
+ "zostaną skopiowane do aktywnego bloku."
2731
+
2732
+ #: includes/preview.php:2329
2733
+ msgid ""
2734
+ "Please note that the code, block name, alignment and style are taken from "
2735
+ "the current block settings (may not be saved).\n"
2736
+ "<strong>No wrapping</strong> style inserts the code as it is so margin and "
2737
+ "padding can't be set. However, you can use own HTML code for the block."
2738
+ msgstr ""
2739
+ "Należy pamiętać, że kod, nazwa bloku, wyrównanie i styl są pobierane z "
2740
+ "bieżących ustawień bloku (mogą nie zostać zapisane).\n"
2741
+ "<strong>Żaden wrapping</strong> nie wstawia kodu, ponieważ nie można ustawić "
2742
+ "marginesu i wyściółki. Można jednak użyć własnego kodu HTML dla tego bloku."
2743
+
2744
+ #: includes/preview.php:2334 includes/preview.php:2348
2745
+ #: includes/preview.php:2358 includes/preview.php:2368
2746
+ #: includes/preview.php:2378
2747
+ msgid ""
2748
+ "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2749
+ "code with it's settings is called a block.\n"
2750
+ "Free Ad Inserter supports 16 blocks, Ad Inserter Pro supports up to 96 "
2751
+ "blocks (depending on the license type).\n"
2752
+ "The settings page is divided into tabs - 16 blocks and general plugin "
2753
+ "settings. Black number means inactive block (code is not inserted "
2754
+ "anywhere),\n"
2755
+ "red number means block is using automatic insertion, blue number means block "
2756
+ "is using manual insertion while violet number means block is using automatic "
2757
+ "and manual insertion."
2758
+ msgstr ""
2759
+ "Ad Inserter można skonfigurować tak, aby wstawiał dowolny kod w dowolnym "
2760
+ "miejscu na stronie. Każdy kod z jego ustawieniami jest nazywany blokiem.\n"
2761
+ "Darmowy Ad Inserter obsługuje 16 bloków, Ad Inserter Pro obsługuje do 96 "
2762
+ "bloków (w zależności od typu licencji).\n"
2763
+ "Strona ustawień jest podzielona na zakładki - 16 bloków i ogólne ustawienia "
2764
+ "wtyczek. Czarny numer oznacza nieaktywny blok (kod nie jest nigdzie "
2765
+ "wstawiany),\n"
2766
+ "czerwony numer oznacza, że blok używa automatycznego wstawiania, niebieski "
2767
+ "numer oznacza, że blok używa ręcznego wstawiania, podczas gdy liczba "
2768
+ "fioletowa oznacza, że blok używa automatycznego i ręcznego wstawiania."
2769
+
2770
+ #: includes/preview.php:2339 includes/preview.php:2353
2771
+ #: includes/preview.php:2363 includes/preview.php:2373
2772
+ #: includes/preview.php:2383
2773
+ msgid ""
2774
+ "Few very important things you need to know in order to insert code and "
2775
+ "display some ad:\n"
2776
+ "Enable and use at least one insertion option (Automatic insertion, Widget, "
2777
+ "Shortcode, PHP function call).\n"
2778
+ "Enable insertion on at least one WordPress page type (Posts, Static pages, "
2779
+ "Homepage, Category pages, Search pages, Archive pages).\n"
2780
+ "Single pages (posts and static pages) have also additional setting for "
2781
+ "individual exceptions. Use default blank value unless you are using "
2782
+ "individual post/page exceptions."
2783
+ msgstr ""
2784
+ "Kilka bardzo ważnych rzeczy, które musisz wiedzieć, aby wstawić kod i "
2785
+ "wyświetlić reklamę:\n"
2786
+ "Włącz i użyj co najmniej jednej opcji wstawiania (automatyczne wstawianie, "
2787
+ "widżet, krótki kod, wywołanie funkcji PHP).\n"
2788
+ "Włącz wstawianie na co najmniej jednym typie strony WordPress (posty, strony "
2789
+ "statyczne, strona główna, strony kategorii, strony wyszukiwania, strony "
2790
+ "archiwum).\n"
2791
+ "Pojedyncze strony (posty i strony statyczne) mają również dodatkowe "
2792
+ "ustawienia dla poszczególnych wyjątków. Użyj domyślnej pustej wartości, "
2793
+ "chyba że używasz pojedynczych wyjątków post/page."
2794
+
2795
+ #: includes/preview.php:2345
2796
+ msgid ""
2797
+ "This is a preview of the code for sticky ads. Here you can test various "
2798
+ "horizontal and vertical alignments, close button locations, visually edit "
2799
+ "margin values\n"
2800
+ "or write CSS code directly and watch live preview. Highlight button "
2801
+ "highlights background, margin and code area, while Reset button restores all "
2802
+ "the values to those of the current block."
2803
+ msgstr ""
2804
+ "Jest to podgląd kodu dla reklam przyklejonych. Tutaj można przetestować "
2805
+ "różne wyrównania poziome i pionowe, rożne lokalizacje przycisków zamykania, "
2806
+ "wizualnie edytować wartości marginesów\n"
2807
+ "lub napisać kod CSS bezpośrednio i oglądać podgląd na żywo. Przycisk "
2808
+ "Podświetli tło, margines i obszar kodu, a przycisk Reset przywraca wszystkie "
2809
+ "wartości do wartości bieżącego bloku."
2810
+
2811
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:54
2812
+ msgid "View details"
2813
+ msgstr "Pokaż szczegóły"
2814
+
2815
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:77
2816
+ #, php-format
2817
+ msgid "More information about %s"
2818
+ msgstr "Więcej informacji o %s"
2819
+
2820
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:128
2821
+ msgid "Check for updates"
2822
+ msgstr "Sprawdź aktualizacje"
2823
+
2824
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:213
2825
+ #, php-format
2826
+ msgctxt "the plugin title"
2827
+ msgid "The %s plugin is up to date."
2828
+ msgstr "Wtyczka %s jest aktualna."
2829
+
2830
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:215
2831
+ #, php-format
2832
+ msgctxt "the plugin title"
2833
+ msgid "A new version of the %s plugin is available."
2834
+ msgstr "Nowa wersja wtyczki %s jest dostępna."
2835
+
2836
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:217
2837
+ #, php-format
2838
+ msgctxt "the plugin title"
2839
+ msgid "Could not determine if updates are available for %s."
2840
+ msgstr "Nie można ustalić, czy aktualizacje są dostępne dla %s."
2841
+
2842
+ #: includes/update-checker/Puc/v4p6/Plugin/Ui.php:223
2843
+ #, php-format
2844
+ msgid "Unknown update checker status \"%s\""
2845
+ msgstr "Nieznany stan sprawdzania aktualizacji \" %s\""
2846
+
2847
+ #: includes/update-checker/Puc/v4p6/Vcs/PluginUpdateChecker.php:98
2848
+ msgid "There is no changelog available."
2849
+ msgstr "Dziennik zmian jest niedostępny."
2850
+
2851
+ #: settings.php:160 settings.php:163
2852
+ #, php-format
2853
+ msgid ""
2854
+ "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2855
+ msgstr ""
2856
+ "Ostrzeżenie: tylko wyjątki dla %d postów wyczyszczone, %d posty nadal mają "
2857
+ "wyjątki"
2858
+
2859
+ #: settings.php:202 settings.php:1195
2860
+ msgid ""
2861
+ "Settings for individual exceptions have been updated. Please check all "
2862
+ "blocks that have exceptions and and then save settings."
2863
+ msgstr ""
2864
+ "Zaktualizowano ustawienia poszczególnych wyjątków. Sprawdź wszystkie bloki, "
2865
+ "które mają wyjątki, a następnie zapisz ustawienia."
2866
+
2867
+ #: settings.php:244
2868
+ msgid "Online documentation"
2869
+ msgstr "Dokumentacja online"
2870
+
2871
+ #: settings.php:248 settings.php:789 settings.php:2289
2872
+ msgid "Show AdSense ad units"
2873
+ msgstr "Wyświetlanie jednostek reklamowych AdSense"
2874
+
2875
+ #: settings.php:257
2876
+ msgid "Edit ads.txt file"
2877
+ msgstr "Edytowanie pliku ads.txt"
2878
+
2879
+ #: settings.php:260 settings.php:1138
2880
+ msgid "Check theme for available positions for automatic insertion"
2881
+ msgstr "Sprawdź motyw pod kątem dostępnych pozycji automatycznego wstawiania"
2882
+
2883
+ #: settings.php:262
2884
+ msgid "List all blocks"
2885
+ msgstr "Lista wszystkich bloków"
2886
+
2887
+ #: settings.php:269
2888
+ msgid "Loaded plugin JavaScript file version"
2889
+ msgstr "Załadowana wersja wtyczki JavaScript"
2890
+
2891
+ #. translators: %s: HTML tags
2892
+ #: settings.php:271
2893
+ #, php-format
2894
+ msgid ""
2895
+ "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2896
+ "due to inappropriate caching."
2897
+ msgstr ""
2898
+ "Nieprawidłowy lub %s brakujący parametr wersji %s pliku JavaScript, "
2899
+ "prawdopodobnie z powodu niewłaściwego buforowania."
2900
+
2901
+ #: settings.php:272
2902
+ msgid ""
2903
+ "Missing version parameter of the JavaScript file, probably due to "
2904
+ "inappropriate caching."
2905
+ msgstr ""
2906
+ "Brak parametru wersji pliku JavaScript, prawdopodobnie z powodu "
2907
+ "niewłaściwego buforowania."
2908
+
2909
+ #: settings.php:273
2910
+ msgid ""
2911
+ "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2912
+ "caching."
2913
+ msgstr ""
2914
+ "Niezgodny (stary) załadowany plik JavaScript, prawdopodobnie z powodu "
2915
+ "niewłaściwego buforowania."
2916
+
2917
+ #: settings.php:274 settings.php:285
2918
+ msgid ""
2919
+ "Please delete browser's cache and all other caches used and then reload this "
2920
+ "page."
2921
+ msgstr ""
2922
+ "Usuń pamięć podręczną przeglądarki i wszystkie inne używane pamięci "
2923
+ "podręczne, a następnie ponownie załaduj tę stronę."
2924
+
2925
+ #: settings.php:280
2926
+ msgid "Loaded plugin CSS file version"
2927
+ msgstr "Załadowana wersja pliku CSS wtyczki"
2928
+
2929
+ #. translators: %s: HTML tags
2930
+ #: settings.php:282
2931
+ #, php-format
2932
+ msgid ""
2933
+ "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2934
+ "inappropriate caching."
2935
+ msgstr ""
2936
+ "Nieprawidłowy lub %s brakujący parametr wersji %s pliku CSS, prawdopodobnie "
2937
+ "z powodu niewłaściwego buforowania."
2938
+
2939
+ #: settings.php:283
2940
+ msgid ""
2941
+ "Missing version parameter of the CSS file, probably due to inappropriate "
2942
+ "caching."
2943
+ msgstr ""
2944
+ "Brak parametru wersji pliku CSS, prawdopodobnie z powodu niewłaściwego "
2945
+ "buforowania."
2946
+
2947
+ #: settings.php:284
2948
+ msgid ""
2949
+ "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2950
+ msgstr ""
2951
+ "Niezgodny (stary) załadowany plik CSS, prawdopodobnie z powodu niewłaściwego "
2952
+ "buforowania."
2953
+
2954
+ #: settings.php:291 settings.php:317
2955
+ msgid "WARNING"
2956
+ msgstr "Uwaga"
2957
+
2958
+ #. translators: %s: HTML tags
2959
+ #: settings.php:293
2960
+ #, php-format
2961
+ msgid "Page may %s not be loaded properly. %s"
2962
+ msgstr "Strona może %s nie być poprawnie załadowana. %s"
2963
+
2964
+ #: settings.php:294
2965
+ msgid ""
2966
+ "Check ad blocking software that may block CSS, JavaScript or image files."
2967
+ msgstr ""
2968
+ "Sprawdź oprogramowanie blokujące reklamy, które może blokować pliki CSS, "
2969
+ "JavaScript lub graficzne."
2970
+
2971
+ #: settings.php:303
2972
+ msgid "SAFE MODE"
2973
+ msgstr "TRYB AWARYJNY"
2974
+
2975
+ #. translators: %s: HTML tags
2976
+ #: settings.php:305
2977
+ #, php-format
2978
+ msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
2979
+ msgstr ""
2980
+ "Strona jest ładowana w %s trybie awaryjnym. %s Nie wszystkie skrypty są "
2981
+ "ładowane."
2982
+
2983
+ #: settings.php:317
2984
+ msgid ""
2985
+ "To disable debugging functions and to enable insertions go to tab [*] / tab "
2986
+ "Debugging"
2987
+ msgstr ""
2988
+ "Aby wyłączyć funkcje debugowania i włączyć wstawienia, przejdź do zakładki "
2989
+ "[*] / karta Debugowanie"
2990
+
2991
+ #: settings.php:319
2992
+ msgid "Debugging functions enabled - some code is not inserted"
2993
+ msgstr "Włączone funkcje debugowania — nie wstawiono całego kodu"
2994
+
2995
+ #: settings.php:336
2996
+ msgid "Group name"
2997
+ msgstr "Nazwa grupy"
2998
+
2999
+ #: settings.php:337
3000
+ msgid "Option name"
3001
+ msgstr "Nazwa opcji"
3002
+
3003
+ #: settings.php:343
3004
+ msgid "Share"
3005
+ msgstr "Udostępnij"
3006
+
3007
+ #: settings.php:346
3008
+ msgid ""
3009
+ "Option share in percents - 0 means option is disabled, if share for one "
3010
+ "option is not defined it will be calculated automatically. Leave all share "
3011
+ "fields empty for equal option shares."
3012
+ msgstr ""
3013
+ "Udział opcji w procentach - 0 oznacza, że opcja jest wyłączona, jeśli udział "
3014
+ "dla jednej opcji nie jest zdefiniowany, zostanie obliczony automatycznie. "
3015
+ "Pozostaw wszystkie pola udziału puste dla równych udziałów opcji."
3016
+
3017
+ #: settings.php:349
3018
+ msgid "Time"
3019
+ msgstr "Czas"
3020
+
3021
+ #: settings.php:352
3022
+ msgid ""
3023
+ "Option time in seconds - 0 means option is disabled and will be skipped. "
3024
+ "Leave all time fields empty for no timed rotation."
3025
+ msgstr ""
3026
+ "Czas opcji w sekundach - 0 oznacza, że opcja jest wyłączona i zostanie "
3027
+ "pominięta. Pozostaw wszystkie pola czasowe puste dla bez obrotu czasowego."
3028
+
3029
+ #: settings.php:504
3030
+ msgid "General Settings"
3031
+ msgstr "Ustawienia główne"
3032
+
3033
+ #: settings.php:737 settings.php:2633 settings.php:2700 settings.php:2886
3034
+ msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3035
+ msgstr ""
3036
+ "Przełączanie wyróżniania składni / Prosty edytor dla urządzeń przenośnych"
3037
+
3038
+ #: settings.php:744
3039
+ msgid "Toggle tools"
3040
+ msgstr "Narzędzia przełączania"
3041
+
3042
+ #: settings.php:752
3043
+ msgid "Process PHP code in block"
3044
+ msgstr "Przetwarzanie kodu PHP w bloku"
3045
+
3046
+ #: settings.php:759
3047
+ msgid "Disable insertion of this block"
3048
+ msgstr "Wyłącz wstawianie tego bloku"
3049
+
3050
+ #: settings.php:771
3051
+ msgid "Toggle code generator"
3052
+ msgstr "Przełączanie generatora kodów"
3053
+
3054
+ #: settings.php:775
3055
+ msgid "Toggle rotation editor"
3056
+ msgstr "Przełączanie edytora obrotu"
3057
+
3058
+ #: settings.php:779
3059
+ msgid "Open visual HTML editor"
3060
+ msgstr "Otwórz wizualny edytor HTML"
3061
+
3062
+ #: settings.php:798
3063
+ msgid "Clear block"
3064
+ msgstr "Wyczyść blok"
3065
+
3066
+ #: settings.php:803 settings.php:4217
3067
+ msgid "Copy block"
3068
+ msgstr "Kopiuj blok"
3069
+
3070
+ #: settings.php:807
3071
+ msgid "Paste name"
3072
+ msgstr "Wklej nazwę"
3073
+
3074
+ #: settings.php:811
3075
+ msgid "Paste code"
3076
+ msgstr "Wklej kod"
3077
+
3078
+ #: settings.php:815
3079
+ msgid "Paste settings"
3080
+ msgstr "Wklej ustawienia"
3081
+
3082
+ #: settings.php:819
3083
+ msgid "Paste block (name, code and settings)"
3084
+ msgstr "Wklej blok (nazwa, kod i ustawienia)"
3085
+
3086
+ #: settings.php:838
3087
+ msgid "Rotation groups"
3088
+ msgstr "Grupy rotacyjne"
3089
+
3090
+ #: settings.php:842
3091
+ msgid "Remove option"
3092
+ msgstr "Usuń opcję"
3093
+
3094
+ #: settings.php:846
3095
+ msgid "Add option"
3096
+ msgstr "Dodaj opcję"
3097
+
3098
+ #: settings.php:861
3099
+ msgid "Import code"
3100
+ msgstr "Kod importu"
3101
+
3102
+ #: settings.php:865
3103
+ msgid "Generate code"
3104
+ msgstr "Generowanie kodu"
3105
+
3106
+ #: settings.php:870
3107
+ msgid "Banner"
3108
+ msgstr "Baner"
3109
+
3110
+ #: settings.php:881
3111
+ msgid "Image"
3112
+ msgstr "Obraz"
3113
+
3114
+ #: settings.php:889
3115
+ msgid "Link"
3116
+ msgstr "Link"
3117
+
3118
+ #: settings.php:900
3119
+ msgid "Open link in a new tab"
3120
+ msgstr "Otwórz w nowym oknie"
3121
+
3122
+ #: settings.php:901
3123
+ msgid "Select Image"
3124
+ msgstr "Wybierz obraz"
3125
+
3126
+ #: settings.php:902
3127
+ msgid "Select Placeholder"
3128
+ msgstr "Wybierz symbol zastępczy"
3129
+
3130
+ #: settings.php:914
3131
+ msgid "Comment"
3132
+ msgstr "Komentarz"
3133
+
3134
+ #: settings.php:923
3135
+ msgctxt "AdSense"
3136
+ msgid "Publisher ID"
3137
+ msgstr "Identyfikator wydawcy"
3138
+
3139
+ #: settings.php:932
3140
+ msgctxt "AdSense"
3141
+ msgid "Ad Slot ID"
3142
+ msgstr "Identyfikator boksu reklamowego"
3143
+
3144
+ #: settings.php:941
3145
+ msgid "Ad Type"
3146
+ msgstr "Rodzaj ogłoszenia"
3147
+
3148
+ #: settings.php:966
3149
+ msgid "AMP Ad"
3150
+ msgstr "Reklama AMP"
3151
+
3152
+ #: settings.php:984
3153
+ msgid "Show ad units from your AdSense account"
3154
+ msgstr "Wyświetlanie jednostek reklamowych z konta AdSense"
3155
+
3156
+ #: settings.php:984
3157
+ msgid "AdSense ad units"
3158
+ msgstr "Jednostki reklamowe AdSense"
3159
+
3160
+ #: settings.php:1001
3161
+ msgctxt "AdSense"
3162
+ msgid "Layout"
3163
+ msgstr "Układ"
3164
+
3165
+ #: settings.php:1010
3166
+ msgctxt "AdSense"
3167
+ msgid "Layout Key"
3168
+ msgstr "Klucz układu"
3169
+
3170
+ #: settings.php:1020
3171
+ msgid "Full width"
3172
+ msgstr "Pełna szerokość"
3173
+
3174
+ #: settings.php:1022
3175
+ msgctxt "Full width"
3176
+ msgid "Enabled"
3177
+ msgstr "Włączone"
3178
+
3179
+ #: settings.php:1023
3180
+ msgctxt "Full width"
3181
+ msgid "Disabled"
3182
+ msgstr "Wyłączone"
3183
+
3184
+ #: settings.php:1104
3185
+ msgid ""
3186
+ "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3187
+ "Cookie or Referer (domain)"
3188
+ msgstr ""
3189
+ "Kategoria biała/czarna lista, tag, taksonomia, identyfikator postu, adres "
3190
+ "URL, parametr URL, plik cookie lub polecacz (domena)"
3191
+
3192
+ #: settings.php:1104
3193
+ msgid "Lists"
3194
+ msgstr "Listy"
3195
+
3196
+ #: settings.php:1105
3197
+ msgid "Widget, Shortcode and PHP function call"
3198
+ msgstr "Widżet, shortcode i wywołanie funkcji PHP"
3199
+
3200
+ #: settings.php:1105
3201
+ msgid "Manual"
3202
+ msgstr "Ręcznie"
3203
+
3204
+ #: settings.php:1106
3205
+ msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3206
+ msgstr ""
3207
+ "Wykrywanie urządzeń klienckich/serwerowych (Pulpit, Tablet, Telefon,...)"
3208
+
3209
+ #: settings.php:1106
3210
+ msgid "Devices"
3211
+ msgstr "Urządzenia"
3212
+
3213
+ #: settings.php:1107
3214
+ msgid ""
3215
+ "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3216
+ "feeds), Filter, Scheduling, General tag"
3217
+ msgstr ""
3218
+ "Sprawdź stan użytkownika, Limit wstawień (strona błąd 404, żądania Ajax, "
3219
+ "kanały RSS), filtr, planowanie, tag ogólny"
3220
+
3221
+ #: settings.php:1107
3222
+ msgid "Misc"
3223
+ msgstr "Różne"
3224
+
3225
+ #: settings.php:1108
3226
+ msgid "Preview code and alignment"
3227
+ msgstr "Podgląd kodu i wyrównanie"
3228
+
3229
+ #: settings.php:1111 settings.php:2273
3230
+ msgid ""
3231
+ "Rotation editor active - rotation code not generated! Make sure no rotation "
3232
+ "editor is active before saving settings."
3233
+ msgstr ""
3234
+ "Aktywny edytor rotacji - kod rotacji nie został wygenerowany! Przed "
3235
+ "zapisaniem ustawień upewnij się, że żaden edytor rotacji nie jest aktywny."
3236
+
3237
+ #: settings.php:1124 settings.php:1125
3238
+ msgid "Enable insertion on posts"
3239
+ msgstr "Włącz wstawianie w wpisach"
3240
+
3241
+ #: settings.php:1125 settings.php:3432
3242
+ msgid "Posts"
3243
+ msgstr "Wpisy"
3244
+
3245
+ #: settings.php:1129 settings.php:1130
3246
+ msgid ""
3247
+ "Enable insertion on homepage: latest posts (including on sub-pages), static "
3248
+ "page or theme homepage (available positions may depend on hooks used by the "
3249
+ "theme)"
3250
+ msgstr ""
3251
+ "Włącz wstawianie na stronie głównej: najnowsze posty (w tym na podstronach), "
3252
+ "statyczna strona lub strona główna motywu (dostępne pozycje mogą zależeć od "
3253
+ "haków używanych przez motyw)"
3254
+
3255
+ #: settings.php:1130 settings.php:3434
3256
+ msgid "Homepage"
3257
+ msgstr "Strona główna"
3258
+
3259
+ #: settings.php:1134 settings.php:1135
3260
+ msgid "Enable insertion on category blog pages (including sub-pages)"
3261
+ msgstr "Włączanie wstawiania na stronach kategorii blogów (w tym podstronach)"
3262
+
3263
+ #: settings.php:1135 settings.php:3435
3264
+ msgid "Category pages"
3265
+ msgstr "Strony kategorii"
3266
+
3267
+ #: settings.php:1145 settings.php:1146
3268
+ msgid "Enable insertion on static pages"
3269
+ msgstr "Włączanie wstawiania na stronach statycznych"
3270
+
3271
+ #: settings.php:1146 settings.php:3433
3272
+ msgid "Static pages"
3273
+ msgstr "Strony statyczne"
3274
+
3275
+ #: settings.php:1150 settings.php:1151
3276
+ msgid "Enable insertion on search blog pages"
3277
+ msgstr "Włączanie wstawiania na stronie wyszukania blogu"
3278
+
3279
+ #: settings.php:1151 settings.php:3437
3280
+ msgid "Search pages"
3281
+ msgstr "Strony wyszukiwania"
3282
+
3283
+ #: settings.php:1155 settings.php:1156
3284
+ msgid "Enable insertion on tag or archive blog pages"
3285
+ msgstr "Włączanie wstawiania poprzez tag lub archiwum na blogu"
3286
+
3287
+ #: settings.php:1159
3288
+ msgid "Toggle settings for default insertion and list of individual exceptions"
3289
+ msgstr ""
3290
+ "Przełączanie ustawień domyślnego wstawiania i listy poszczególnych wyjątków"
3291
+
3292
+ #: settings.php:1171
3293
+ msgid ""
3294
+ "Enable individual post/page exceptions for insertion of this block. They can "
3295
+ "be configured on the individual post/page editor page (in the settings below "
3296
+ "the editor)."
3297
+ msgstr ""
3298
+ "Włącz pojedyncze wyjątki dla postów/stron do wstawienia tego bloku. Można je "
3299
+ "skonfigurować na poszczególnych stronach edytora postów/stron (w "
3300
+ "ustawieniach poniżej edytora)."
3301
+
3302
+ #: settings.php:1172
3303
+ msgid ""
3304
+ "Enable individual post/page exceptions for insertion of this block. When "
3305
+ "enabled they can be configured on the individual post/page editor page (in "
3306
+ "the settings below the editor)."
3307
+ msgstr ""
3308
+ "Włącz poszczególne wyjątki postów/stron do wstawiania tego bloku. Po "
3309
+ "włączeniu można je skonfigurować dla poszczególnych postów/stron edytora "
3310
+ "strony (w ustawieniach poniżej edytora)."
3311
+
3312
+ #: settings.php:1172
3313
+ msgid "Use exceptions for individual posts or pages to change insertion"
3314
+ msgstr "Użyj wyjątków dla poszczególnych postów lub stron do zmiany wstawienia"
3315
+
3316
+ #: settings.php:1180
3317
+ msgid ""
3318
+ "means the insertion for this block is enabled by default and disabled for "
3319
+ "exceptions."
3320
+ msgstr ""
3321
+ "oznacza, że wstawienie dla tego bloku jest domyślnie włączone i wyłączone "
3322
+ "dla wyjątków."
3323
+
3324
+ #: settings.php:1181
3325
+ msgid ""
3326
+ "means the insertion for this block is disabled by default and enabled for "
3327
+ "exceptions."
3328
+ msgstr ""
3329
+ "oznacza, że wstawienie dla tego bloku jest domyślnie wyłączone i włączone "
3330
+ "dla wyjątków."
3331
+
3332
+ #: settings.php:1182
3333
+ msgid ""
3334
+ "When individual post/page exceptions are enabled they can be configured on "
3335
+ "the individual post/page editor page (in the settings below the editor)."
3336
+ msgstr ""
3337
+ "Po włączeniu poszczególnych wyjątków postów/stron można je skonfigurować na "
3338
+ "poszczególnych stronach edytora postów/stron (w ustawieniach poniżej "
3339
+ "edytora)."
3340
+
3341
+ #: settings.php:1190
3342
+ msgid ""
3343
+ "No exception for post or static page defined. Block will not be inserted."
3344
+ msgstr ""
3345
+ "Nie zdefiniowano wyjątku dla postu lub strony statycznej. Blok nie zostanie "
3346
+ "wstawiony."
3347
+
3348
+ #: settings.php:1208
3349
+ msgctxt "post"
3350
+ msgid "Type"
3351
+ msgstr "Typ"
3352
+
3353
+ #. translators: %d: block number
3354
+ #: settings.php:1210
3355
+ #, php-format
3356
+ msgid "Are you sure you want to clear listed exceptions for block %d?"
3357
+ msgstr "Czy na pewno chcesz wyczyścić wymienione wyjątki dla bloku %d?"
3358
+
3359
+ #: settings.php:1211
3360
+ msgid "Clear listed exceptions for block"
3361
+ msgstr "Wyczyść wymienione wyjątki dla bloku"
3362
+
3363
+ #: settings.php:1237 settings.php:1385 settings.php:2047
3364
+ msgid "Insertion"
3365
+ msgstr "Wstawienie"
3366
+
3367
+ #: settings.php:1275
3368
+ msgid ""
3369
+ "Paragraph number or comma separated paragraph numbers: 1 to N means "
3370
+ "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3371
+ "means random paragraph, value between 0 and 1 means relative position on the "
3372
+ "page (0.2 means paragraph at 20% of page paragraphs, 0.5 means paragraph "
3373
+ "halfway down the page, 0.9 means paragraph at 90% of page paragraphs, etc.), "
3374
+ "negative number means counting from the opposite direction"
3375
+ msgstr ""
3376
+ "Liczba akapitu lub przecinek oddzielone numerami akapitów: 1 do N oznacza "
3377
+ "numer akapitu, %N oznacza każdy N akapit, pusty oznacza wszystkie akapity, 0 "
3378
+ "oznacza losowy akapit, wartość między 0 a 1 oznacza względną pozycję na "
3379
+ "stronie (0.2 oznacza akapit na 20 % strony, 0,5 oznacza akapit w połowie "
3380
+ "strony, 0,9 oznacza akapit na 90% strony itp.), liczba ujemna oznacza "
3381
+ "liczenie z przeciwnego kierunku"
3382
+
3383
+ #: settings.php:1276
3384
+ msgid ""
3385
+ "Image number or comma separated image numbers: 1 to N means image number, %N "
3386
+ "means every N images, empty means all images, 0 means random image, value "
3387
+ "between 0 and 1 means relative position on the page (0.2 means paragraph at "
3388
+ "20% of page images, 0.5 means middle image, 0.9 means paragraph at 90% of "
3389
+ "page images, etc.), negative number means counting from the opposite "
3390
+ "direction"
3391
+ msgstr ""
3392
+ "Numer obrazu lub przecinka oddzielone numerami obrazków: 1 do N oznacza "
3393
+ "numer obrazu, %N oznacza każdy N obraz, pusty oznacza wszystkie obrazy, 0 "
3394
+ "oznacza losowy obraz, wartość od 0 do 1 oznacza względną pozycję na stronie "
3395
+ "(0.2 oznacza akapit na 20% obrazów strony, 0,5 oznacza obraz środkowy , 0,9 "
3396
+ "oznacza akapit na 90% obrazów stron itp.), liczba ujemna oznacza liczenie z "
3397
+ "przeciwnego kierunku"
3398
+
3399
+ #: settings.php:1289
3400
+ msgid ""
3401
+ "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3402
+ "numbers, %N means every N excerpts, empty means all excerpts"
3403
+ msgstr ""
3404
+ "Ustawienie lustra filtra wstawiania | Liczba fragmentów lub rozdzielonych "
3405
+ "przecinkami, %N oznacza każdy N fragmenty, puste oznacza wszystkie fragmenty"
3406
+
3407
+ #: settings.php:1290
3408
+ msgid ""
3409
+ "Insertion Filter Mirror Setting | Post number or comma separated post "
3410
+ "numbers, %N means every N posts, empty means all posts"
3411
+ msgstr ""
3412
+ "Ustawienie lustra filtra wstawiania | Numer postu lub oddzielony przecinkiem "
3413
+ "numery postu, %N oznacza każde N postów, puste oznacza wszystkie posty"
3414
+
3415
+ #: settings.php:1291
3416
+ msgid ""
3417
+ "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3418
+ "numbers, %N means every N comments, empty means all comments"
3419
+ msgstr ""
3420
+ "Ustawienie lustra filtra wstawiania | Liczba komentarzy lub liczba "
3421
+ "komentarzy oddzielonych przecinkami, %N oznacza każde N komentarzy, puste "
3422
+ "oznacza wszystkie komentarze"
3423
+
3424
+ #: settings.php:1298
3425
+ msgid "Toggle paragraph counting settings"
3426
+ msgstr "Przełączanie ustawień inwentaryzacji akapitów"
3427
+
3428
+ #: settings.php:1299
3429
+ msgid "Toggle paragraph clearance settings"
3430
+ msgstr "Przełączanie ustawień odstępu akapitu"
3431
+
3432
+ #: settings.php:1302
3433
+ msgid "Toggle insertion filter settings"
3434
+ msgstr "Przełączanie ustawień filtru wstawiania"
3435
+
3436
+ #: settings.php:1320
3437
+ msgid "Toggle insertion and alignment icons"
3438
+ msgstr "Przełączanie ikon wstawiania i wyrównywania"
3439
+
3440
+ #: settings.php:1334
3441
+ msgid "Custom CSS code for the wrapping div"
3442
+ msgstr "Niestandardowy kod CSS dla wrapping div"
3443
+
3444
+ #: settings.php:1337 settings.php:1338 settings.php:1339 settings.php:1340
3445
+ #: settings.php:1341 settings.php:1342
3446
+ msgid "CSS code for the wrapping div, click to edit"
3447
+ msgstr "Kod CSS dla wrapping div, kliknij, aby edytować"
3448
+
3449
+ #: settings.php:1355
3450
+ msgid "HTML element"
3451
+ msgstr "Element HTML"
3452
+
3453
+ #: settings.php:1368
3454
+ msgid "HTML element selector or comma separated list of selectors"
3455
+ msgstr "Selektor elementów HTML lub oddzielona przecinkami lista selektorów"
3456
+
3457
+ #: settings.php:1374 settings.php:2791
3458
+ msgid "Action"
3459
+ msgstr "Akcja"
3460
+
3461
+ #: settings.php:1386
3462
+ msgid ""
3463
+ "Client-side insertion uses JavaScript to insert block when the page loads. "
3464
+ "Server-side insertion inserts block when the page is generated but needs "
3465
+ "Output buffering enabled."
3466
+ msgstr ""
3467
+ "Wstawianie po stronie klienta używa języka JavaScript do wstawiania bloku "
3468
+ "podczas ładowania strony. Wstawianie po stronie serwera wstawia blok, gdy "
3469
+ "strona jest generowana, ale wymaga włączonego buforowania danych wyjściowych."
3470
+
3471
+ #: settings.php:1395
3472
+ msgid "Code position"
3473
+ msgstr "Pozycja kodu"
3474
+
3475
+ #: settings.php:1396
3476
+ msgid ""
3477
+ "Page position where the code for client-side insertion will be inserted."
3478
+ msgstr ""
3479
+ "Pozycja strony, w której zostanie wstawiony kod do wstawiania po stronie "
3480
+ "klienta."
3481
+
3482
+ #: settings.php:1411
3483
+ msgid "Count"
3484
+ msgstr "Liczyć"
3485
+
3486
+ #: settings.php:1417
3487
+ msgid "paragraphs with tags"
3488
+ msgstr "akapity z tagami"
3489
+
3490
+ #: settings.php:1423
3491
+ msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3492
+ msgstr ""
3493
+ "Rozdzielone przecinkami nazwy tagów HTML, zwykle używane są tylko tagi \"p\""
3494
+
3495
+ #: settings.php:1432
3496
+ msgid "that have between"
3497
+ msgstr "które mają między"
3498
+
3499
+ #: settings.php:1438
3500
+ msgid "Minimum number of paragraph words, leave empty for no limit"
3501
+ msgstr "Minimalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
3502
+
3503
+ #: settings.php:1447
3504
+ msgid "Maximum number of paragraph words, leave empty for no limit"
3505
+ msgstr "Maksymalna liczba wyrazów akapitu, pozostaw puste dla bez limitu"
3506
+
3507
+ #: settings.php:1450
3508
+ msgid "words"
3509
+ msgstr "słowa"
3510
+
3511
+ #: settings.php:1465 settings.php:1524 settings.php:1594 settings.php:1620
3512
+ msgid "Comma separated texts"
3513
+ msgstr "Teksty rozdzielone przecinkami"
3514
+
3515
+ #: settings.php:1478
3516
+ msgid ""
3517
+ "Count also paragraphs inside these elements - defined on general plugin "
3518
+ "settings page - tab [*] / tab General"
3519
+ msgstr ""
3520
+ "Zliczaj również akapity wewnątrz tych elementów - zdefiniowane na stronie "
3521
+ "ogólnych ustawień pluginu - zakładka [*] / zakładka Ogólne"
3522
+
3523
+ #: settings.php:1484
3524
+ #, php-format
3525
+ msgid "Count inside %s elements"
3526
+ msgstr "Zliczanie wewnątrz %s elementów"
3527
+
3528
+ #. translators: inside [HTML tags] elements that contain
3529
+ #: settings.php:1496
3530
+ msgid "inside"
3531
+ msgstr "wewnątrz"
3532
+
3533
+ #: settings.php:1502
3534
+ msgid "Comma separated HTML tag names of container elements"
3535
+ msgstr "Rozdzielone przecinkami nazwy znaczników HTML z elementów kontenera"
3536
+
3537
+ #. translators: inside [HTML tags] elements that contain
3538
+ #: settings.php:1511
3539
+ msgid "elements that"
3540
+ msgstr "elementy, które"
3541
+
3542
+ #: settings.php:1537 settings.php:2170
3543
+ msgid "Post/Static page must have between"
3544
+ msgstr "Post/Strona statyczna musi mieć między"
3545
+
3546
+ #: settings.php:1543
3547
+ msgid "Minimum number of paragraphs, leave empty for no limit"
3548
+ msgstr "Minimalna liczba akapitów, pozostaw puste dla bez limitu"
3549
+
3550
+ #: settings.php:1552
3551
+ msgid "Maximum number of paragraphs, leave empty for no limit"
3552
+ msgstr "Maksymalna liczba akapitów, pozostaw puste dla bez limitu"
3553
+
3554
+ #: settings.php:1555
3555
+ msgid "paragraph"
3556
+ msgid_plural "paragraphs"
3557
+ msgstr[0] "paragraf"
3558
+ msgstr[1] "paragrafy"
3559
+ msgstr[2] "paragrafów"
3560
+
3561
+ #: settings.php:1563
3562
+ msgid "Minimum number of words in paragraphs above"
3563
+ msgstr "Minimalna liczba słów w akapitach powyżej"
3564
+
3565
+ #: settings.php:1569
3566
+ msgid ""
3567
+ "Used only with automatic insertion After paragraph and empty paragraph "
3568
+ "numbers"
3569
+ msgstr ""
3570
+ "Używany tylko z automatycznym wstawianiem po akapicie i pustymi numerami "
3571
+ "akapitów"
3572
+
3573
+ #: settings.php:1579 settings.php:1605
3574
+ msgid "In"
3575
+ msgstr "W"
3576
+
3577
+ #: settings.php:1585
3578
+ msgid "Number of paragraphs above to check, leave empty to disable checking"
3579
+ msgstr ""
3580
+ "Liczba akapitów powyżej do sprawdzenia, pozostaw puste, aby wyłączyć "
3581
+ "sprawdzanie"
3582
+
3583
+ #: settings.php:1588
3584
+ msgid "paragraphs above avoid"
3585
+ msgstr "powyższe paragrafy pozwalają uniknąć"
3586
+
3587
+ #: settings.php:1611
3588
+ msgid "Number of paragraphs below to check, leave empty to disable checking"
3589
+ msgstr ""
3590
+ "Liczba akapitów poniżej do sprawdzenia, pozostaw puste, aby wyłączyć "
3591
+ "sprawdzanie"
3592
+
3593
+ #: settings.php:1614
3594
+ msgid "paragraphs below avoid"
3595
+ msgstr "poniższe paragrafy pozwalają uniknąć"
3596
+
3597
+ #: settings.php:1630
3598
+ msgid "If text is found"
3599
+ msgstr "Jeśli tekst zostanie znaleziony"
3600
+
3601
+ #: settings.php:1637
3602
+ msgid "check up to"
3603
+ msgstr "sprawdzić do"
3604
+
3605
+ #: settings.php:1645
3606
+ msgctxt "check up to"
3607
+ msgid "paragraphs"
3608
+ msgstr "ustępów"
3609
+
3610
+ #: settings.php:1661
3611
+ msgid "Categories"
3612
+ msgstr "Kategorie"
3613
+
3614
+ #: settings.php:1664
3615
+ msgid "Toggle category editor"
3616
+ msgstr "Przełączanie edytora kategorii"
3617
+
3618
+ #: settings.php:1667
3619
+ msgid "Comma separated category slugs"
3620
+ msgstr "Ślimaki kategorii rozdzielone przecinkami"
3621
+
3622
+ #: settings.php:1676
3623
+ msgid "Blacklist categories"
3624
+ msgstr "Kategorie czarnej listy"
3625
+
3626
+ #: settings.php:1680
3627
+ msgid "Whitelist categories"
3628
+ msgstr "Kategorie białej listy"
3629
+
3630
+ #: settings.php:1692
3631
+ msgid "Tags"
3632
+ msgstr "Tagi"
3633
+
3634
+ #: settings.php:1695
3635
+ msgid "Toggle tag editor"
3636
+ msgstr "Przełączanie edytora znaczników"
3637
+
3638
+ #: settings.php:1698
3639
+ msgid "Comma separated tag slugs"
3640
+ msgstr "Przecinek odseparowany znacznikiem ślimakowym"
3641
+
3642
+ #: settings.php:1707
3643
+ msgid "Blacklist tags"
3644
+ msgstr "Tagi czarnej listy"
3645
+
3646
+ #: settings.php:1711
3647
+ msgid "Whitelist tags"
3648
+ msgstr "Znaczniki białej listy"
3649
+
3650
+ #: settings.php:1723
3651
+ msgid "Taxonomies"
3652
+ msgstr "Taksonomie"
3653
+
3654
+ #: settings.php:1726
3655
+ msgid "Toggle taxonomy editor"
3656
+ msgstr "Przełączanie edytora taksonomii"
3657
+
3658
+ #: settings.php:1729
3659
+ msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3660
+ msgstr ""
3661
+ "Ślimaki rozdzielone przecinkami: taksonomia, termin lub taksonomia: termin"
3662
+
3663
+ #: settings.php:1738
3664
+ msgid "Blacklist taxonomies"
3665
+ msgstr "Taksonomie czarnej listy"
3666
+
3667
+ #: settings.php:1742
3668
+ msgid "Whitelist taxonomies"
3669
+ msgstr "Taksonomia białej listy"
3670
+
3671
+ #: settings.php:1754
3672
+ msgid "Post IDs"
3673
+ msgstr "ID wpisu"
3674
+
3675
+ #: settings.php:1757
3676
+ msgid "Toggle post/page ID editor"
3677
+ msgstr "Przełączanie edytora postów/identyfikatorów stron"
3678
+
3679
+ #: settings.php:1760
3680
+ msgid "Comma separated post/page IDs"
3681
+ msgstr "Identyfikatory postów/identyfikatorów stron, oddzielone przecinkami"
3682
+
3683
+ #: settings.php:1769
3684
+ msgid "Blacklist IDs"
3685
+ msgstr "Identyfikatory czarnej listy"
3686
+
3687
+ #: settings.php:1773
3688
+ msgid "Whitelist IDs"
3689
+ msgstr "Identyfikatory białej listy"
3690
+
3691
+ #: settings.php:1785
3692
+ msgid "Urls"
3693
+ msgstr "Adresy url"
3694
+
3695
+ #: settings.php:1788
3696
+ msgid "Toggle url editor"
3697
+ msgstr "Przełączanie edytora adresów URL"
3698
+
3699
+ #: settings.php:1791
3700
+ msgid ""
3701
+ "Comma separated urls (page addresses) starting with / after domain name (e."
3702
+ "g. /permalink-url, use only when you need to taget a specific url not "
3703
+ "accessible by other means). You can also use partial urls with * (/url-"
3704
+ "start*. *url-pattern*, *url-end)"
3705
+ msgstr ""
3706
+ "Rozdzielone przecinkami adresy URL (adresy stron) zaczynające się od / po "
3707
+ "nazwie domeny (np. /permalink-url, używaj tylko wtedy, gdy musisz oznaczyć "
3708
+ "określony adres URL niedostępny w inny sposób). Możesz również użyć "
3709
+ "częściowych adresów URL z * (/url-start*. *url-pattern*, *url-end)"
3710
+
3711
+ #: settings.php:1800
3712
+ msgid "Blacklist urls"
3713
+ msgstr "Adresy URL czarnej listy"
3714
+
3715
+ #: settings.php:1804
3716
+ msgid "Whitelist urls"
3717
+ msgstr "Adresy URL białej listy"
3718
+
3719
+ #: settings.php:1815
3720
+ msgid "Url parameters"
3721
+ msgstr "Parametry adresu URL"
3722
+
3723
+ #: settings.php:1819
3724
+ msgid "Toggle url parameter and cookie editor"
3725
+ msgstr "Przełączanie parametrów adresu URL i edytora plików cookie"
3726
+
3727
+ #: settings.php:1822
3728
+ msgid ""
3729
+ "Comma separated url query parameters or cookies with optional values (use "
3730
+ "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3731
+ msgstr ""
3732
+ "Parametry zapytań URL oddzielone przecinkami lub ciasteczek z opcjonalnymi "
3733
+ "wartościami (użyj 'prameter', 'prameter=value', 'cookie' lub 'cookie=value')"
3734
+
3735
+ #: settings.php:1831
3736
+ msgid "Blacklist url parameters"
3737
+ msgstr "Parametry adresu URL czarnej listy"
3738
+
3739
+ #: settings.php:1835
3740
+ msgid "Whitelist url parameters"
3741
+ msgstr "Parametry adresu URL białej listy"
3742
+
3743
+ #: settings.php:1846
3744
+ msgid "Referrers"
3745
+ msgstr "Odsyłający"
3746
+
3747
+ #: settings.php:1849
3748
+ msgid "Toggle referer editor"
3749
+ msgstr "Przełączanie edytora refererów"
3750
+
3751
+ #: settings.php:1852
3752
+ msgid ""
3753
+ "Comma separated domains, use # for no referrer, you can also use partial "
3754
+ "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3755
+ msgstr ""
3756
+ "Domeny oddzielone przecinkami, użyj # dla braku polecacza, można również "
3757
+ "użyć domen częściowych z * (domain-start*. *domain-pattern*, *domain-end)"
3758
+
3759
+ #: settings.php:1861
3760
+ msgid "Blacklist referers"
3761
+ msgstr "Referenci z czarnej listy"
3762
+
3763
+ #: settings.php:1865
3764
+ msgid "Whitelist referers"
3765
+ msgstr "Referenci z białej listy"
3766
+
3767
+ #: settings.php:1876
3768
+ msgid "Clients"
3769
+ msgstr "Klienci"
3770
+
3771
+ #: settings.php:1879
3772
+ msgid "Toggle client editor"
3773
+ msgstr "Przełączanie edytora klienta"
3774
+
3775
+ #: settings.php:1882
3776
+ msgid "Comma separated names (operating systems, browsers, devices)"
3777
+ msgstr ""
3778
+ "Nazwy rozdzielone przecinkami (systemy operacyjne, przeglądarki, urządzenia)"
3779
+
3780
+ #: settings.php:1891
3781
+ msgid "Blacklist clients"
3782
+ msgstr "Klienci czarnej listy"
3783
+
3784
+ #: settings.php:1895
3785
+ msgid "Whitelist clients"
3786
+ msgstr "Klienci z białej listy"
3787
+
3788
+ #: settings.php:1916
3789
+ msgid "Enable widget for this block"
3790
+ msgstr "Włącz widżet dla tego bloku"
3791
+
3792
+ #: settings.php:1928
3793
+ msgid "Enable shortcode for manual insertion of this block in posts and pages"
3794
+ msgstr ""
3795
+ "Włącz krótki kod do ręcznego wstawiania tego bloku w postach i stronach"
3796
+
3797
+ #: settings.php:1929 settings.php:4274
3798
+ msgid "Shortcode"
3799
+ msgstr "Shortcode"
3800
+
3801
+ #: settings.php:1944
3802
+ msgid ""
3803
+ "Enable PHP function call to insert this block at any position in theme file. "
3804
+ "If function is disabled for block it will return empty string."
3805
+ msgstr ""
3806
+ "Włącz wywołanie funkcji PHP, aby wstawić ten blok w dowolnym miejscu w pliku "
3807
+ "motywu. Jeśli funkcja jest wyłączona dla bloku zwróci pusty ciąg."
3808
+
3809
+ #: settings.php:1945
3810
+ msgid "PHP function"
3811
+ msgstr "PHP, funkcja"
3812
+
3813
+ #: settings.php:1960
3814
+ msgid "Client-side device detection"
3815
+ msgstr "Wykrywanie urządzeń po stronie klienta"
3816
+
3817
+ #: settings.php:1961
3818
+ msgid "Server-side device detection"
3819
+ msgstr "Wykrywanie urządzeń po stronie serwera"
3820
+
3821
+ #: settings.php:1968
3822
+ msgid "Use client-side detection to"
3823
+ msgstr "Użyj wykrywania po stronie klienta, aby"
3824
+
3825
+ #: settings.php:1970
3826
+ msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3827
+ msgstr ""
3828
+ "Pokaż/ukryj lub wstaw, gdy strona jest załadowana na pożądanych portach "
3829
+ "odwiedzin"
3830
+
3831
+ #: settings.php:1975
3832
+ msgid "only on"
3833
+ msgstr "tylko w"
3834
+
3835
+ #: settings.php:2003
3836
+ #, php-format
3837
+ msgid "Device min width %s px"
3838
+ msgstr "Szerokość min urządzenia %s px"
3839
+
3840
+ #: settings.php:2029
3841
+ msgid "Use server-side detection to insert block only for"
3842
+ msgstr "Użyj wykrywania po stronie serwera, aby wstawić blok tylko dla"
3843
+
3844
+ #: settings.php:2048
3845
+ msgid "Filter"
3846
+ msgstr "Filtr"
3847
+
3848
+ #: settings.php:2049
3849
+ msgid "Word Count"
3850
+ msgstr "Licznik Słów"
3851
+
3852
+ #: settings.php:2050 settings.php:4264
3853
+ msgid "Scheduling"
3854
+ msgstr "Planowanie"
3855
+
3856
+ #: settings.php:2051
3857
+ msgid "Display"
3858
+ msgstr "Wyświetl"
3859
+
3860
+ #: settings.php:2053 settings.php:2315
3861
+ msgid "General"
3862
+ msgstr "Ogólne"
3863
+
3864
+ #: settings.php:2065
3865
+ msgid "Old settings for AMP pages detected"
3866
+ msgstr "Stare ustawienia dla wykrytych stron AMP"
3867
+
3868
+ #: settings.php:2065
3869
+ msgid ""
3870
+ "To insert different codes on normal and AMP pages separate them with "
3871
+ "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3872
+ "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3873
+ msgstr ""
3874
+ "Aby wstawić różne kody na stronach normalnych i AMP, należy je oddzielić "
3875
+ "separatorem [ADINSERTER AMP]. Tutaj można włączyć wstawianie na stronach AMP "
3876
+ "tylko wtedy, gdy trzeba wstawić TEN SAM KOD również na stronach AMP (bez "
3877
+ "separatora AMP)."
3878
+
3879
+ #: settings.php:2065
3880
+ msgid "AMP pages"
3881
+ msgstr "Strony AMP"
3882
+
3883
+ #: settings.php:2070
3884
+ msgid "Enable insertion for Ajax requests"
3885
+ msgstr "Włączanie wstawiania żądań Ajax"
3886
+
3887
+ #: settings.php:2070
3888
+ msgid "Ajax requests"
3889
+ msgstr "Prośby Ajax"
3890
+
3891
+ #: settings.php:2075
3892
+ msgid "Enable insertion in RSS feeds"
3893
+ msgstr "Włączanie wstawiania w źródłach RSS"
3894
+
3895
+ #: settings.php:2075
3896
+ msgid "RSS Feed"
3897
+ msgstr "Kanał RSS"
3898
+
3899
+ #: settings.php:2080
3900
+ msgid "Enable insertion on page for Error 404: Page not found"
3901
+ msgstr "Włącz wstawianie na stronie błędu 404: Nie znaleziono strony"
3902
+
3903
+ #: settings.php:2080
3904
+ msgid "Error 404 page"
3905
+ msgstr "Strona błędu 404"
3906
+
3907
+ #: settings.php:2092
3908
+ msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3909
+ msgstr ""
3910
+ "Maksymalna liczba wstawień tego bloku. Puste lub 0 oznacza brak limitu."
3911
+
3912
+ #: settings.php:2093
3913
+ msgid "insertions"
3914
+ msgstr "wstawienia"
3915
+
3916
+ #: settings.php:2095
3917
+ msgid ""
3918
+ "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3919
+ "General)"
3920
+ msgstr ""
3921
+ "Policz ten blok dla max bloków na granicy strony (zdefiniowane na karcie "
3922
+ "[*] / zakładka Ogólne)"
3923
+
3924
+ #: settings.php:2098 settings.php:2495
3925
+ msgid "Max blocks per page"
3926
+ msgstr "Maksymalna liczba bloków na stronie"
3927
+
3928
+ #: settings.php:2110
3929
+ msgid "Insert for"
3930
+ msgstr "Wstawić do"
3931
+
3932
+ #: settings.php:2118
3933
+ msgid ""
3934
+ "Insert block only when WP function in_the_loop () returns true (WP loop is "
3935
+ "currently active). Might speed up insertion on content pages when "
3936
+ "the_content filter is called multiple times."
3937
+ msgstr ""
3938
+ "Wstaw blok tylko wtedy, gdy funkcja WP in_the_loop () zwraca wartość true "
3939
+ "(prawda) (pętla WP jest aktualnie aktywna). Może przyspieszyć wstawianie na "
3940
+ "stronach zawartości, gdy filtr the_content jest wywoływany wiele razy."
3941
+
3942
+ #: settings.php:2121
3943
+ msgid "Insert only in the loop"
3944
+ msgstr "Wstaw tylko w pętli"
3945
+
3946
+ #: settings.php:2127
3947
+ msgid ""
3948
+ "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3949
+ msgstr ""
3950
+ "Wyłącz buforowanie dla wtyczek WP Super Cache, W3 Total Cache i WP Rocket"
3951
+
3952
+ #: settings.php:2127
3953
+ msgid "Disable caching"
3954
+ msgstr "Wyłącz buforowanie"
3955
+
3956
+ #: settings.php:2139
3957
+ msgid "Filter insertions"
3958
+ msgstr "Wstawienia filtra"
3959
+
3960
+ #: settings.php:2142
3961
+ msgid ""
3962
+ "Filter multiple insertions by specifying wanted insertions for this block - "
3963
+ "single number, comma separated numbers or %N for every N insertions - empty "
3964
+ "means all insertions / no filter. Set Counter for filter to Auto if you are "
3965
+ "using only one insertion type."
3966
+ msgstr ""
3967
+ "Filtruj wiele wstawień, określając pożądane wstawienia dla tego bloku - "
3968
+ "pojedyncza liczba, liczby oddzielone przecinkami lub %N dla każdego N "
3969
+ "wstawień - puste oznacza wszystkie wstawienia / brak filtra. Ustaw licznik "
3970
+ "dla filtru na Auto, jeśli używasz tylko jednego typu wstawiania."
3971
+
3972
+ #: settings.php:2145
3973
+ msgid "using"
3974
+ msgstr "za pomocą"
3975
+
3976
+ #: settings.php:2164
3977
+ msgid "Checked means specified calls are unwanted"
3978
+ msgstr "Sprawdzone środki określonych połączeń są niepożądane"
3979
+
3980
+ #: settings.php:2164
3981
+ msgid "Invert filter"
3982
+ msgstr "Odwróć filtr"
3983
+
3984
+ #: settings.php:2171
3985
+ msgid "Minimum number of post/static page words, leave empty for no limit"
3986
+ msgstr ""
3987
+ "Minimalna liczba postów/słów strony statycznej, pozostaw puste dla bez limitu"
3988
+
3989
+ #: settings.php:2173
3990
+ msgid "Maximum number of post/static page words, leave empty for no limit"
3991
+ msgstr ""
3992
+ "Maksymalna liczba postów/słów strony statycznej, pozostaw puste dla bez "
3993
+ "limitu"
3994
+
3995
+ #: settings.php:2186
3996
+ msgid "for"
3997
+ msgstr "dla"
3998
+
3999
+ #: settings.php:2186
4000
+ msgid "days after publishing"
4001
+ msgstr "dni po publikacji"
4002
+
4003
+ #: settings.php:2188
4004
+ msgid "Not available"
4005
+ msgstr "Niedostępne"
4006
+
4007
+ #: settings.php:2201 settings.php:2487
4008
+ msgid "Ad label"
4009
+ msgstr "Etykieta reklamy"
4010
+
4011
+ #: settings.php:2221
4012
+ msgid "General tag"
4013
+ msgstr "Tag ogólny"
4014
+
4015
+ #: settings.php:2225
4016
+ msgid "Used for [adinserter data=''] shortcodes when no data is found"
4017
+ msgstr ""
4018
+ "Używane dla [adinserter data=''] shortcodes, gdy nie znaleziono żadnych "
4019
+ "danych"
4020
+
4021
+ #. translators: %s: HTML tags
4022
+ #: settings.php:2234
4023
+ #, php-format
4024
+ msgid ""
4025
+ "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4026
+ "client-side device detection!"
4027
+ msgstr ""
4028
+ "%s OSTRZEŻENIE: %s %s No Wrapping %s styl nie ma kodu zawijania (wrapping) "
4029
+ "potrzebnego do wykrywania urządzeń po stronie klienta!"
4030
+
4031
+ #. translators: %s: HTML tags for text and link
4032
+ #: settings.php:2248
4033
+ #, php-format
4034
+ msgid ""
4035
+ "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4036
+ "side %s insertion. Use %s Server-side %s insertion."
4037
+ msgstr ""
4038
+ "%s OSTRZEŻENIE: %s Fltr ustawień ub maksymalna liczba wstawień nie może "
4039
+ "działać z wstawianiem %s po stronie klienta %s. Użyj wstawiania %s Po "
4040
+ "stronie serwera %s."
4041
+
4042
+ #: settings.php:2264
4043
+ msgid "Settings"
4044
+ msgstr "Ustawienia"
4045
+
4046
+ #: settings.php:2267
4047
+ msgid "Settings timestamp"
4048
+ msgstr "Ustawienia znacznika czasu"
4049
+
4050
+ #: settings.php:2280
4051
+ msgid "Are you sure you want to reset all settings?"
4052
+ msgstr "Czy na pewno chcesz zresetować wszystkie ustawienia?"
4053
+
4054
+ #: settings.php:2280
4055
+ msgid "Reset All Settings"
4056
+ msgstr "Resetuj wszystkie ustawienia"
4057
+
4058
+ #: settings.php:2316
4059
+ msgid "Viewports"
4060
+ msgstr "Porty odsłon"
4061
+
4062
+ #: settings.php:2317
4063
+ msgid "Hooks"
4064
+ msgstr "Haki"
4065
+
4066
+ #: settings.php:2318
4067
+ msgid "Header"
4068
+ msgstr "Nagłówek"
4069
+
4070
+ #: settings.php:2319 strings.php:30
4071
+ msgid "Footer"
4072
+ msgstr "Stopka"
4073
+
4074
+ #: settings.php:2324
4075
+ msgid "Debugging"
4076
+ msgstr "Debugowanie"
4077
+
4078
+ #: settings.php:2334
4079
+ msgid "Plugin priority"
4080
+ msgstr "Priorytet wtyczki"
4081
+
4082
+ #: settings.php:2342
4083
+ msgid "Output buffering"
4084
+ msgstr "Buforowanie danych wyjściowych"
4085
+
4086
+ #: settings.php:2345
4087
+ msgid "Needed for position Above header but may not work with all themes"
4088
+ msgstr ""
4089
+ "Potrzebne do pozycji powyżej nagłówka, ale może nie działać ze wszystkimi "
4090
+ "motywami"
4091
+
4092
+ #: settings.php:2353
4093
+ msgid "Syntax highlighting theme"
4094
+ msgstr "Składnia podkreślająca motyw"
4095
+
4096
+ #: settings.php:2360
4097
+ msgctxt "no syntax highlighting themes"
4098
+ msgid "None"
4099
+ msgstr "Brak"
4100
+
4101
+ #: settings.php:2361
4102
+ msgid "No Syntax Highlighting"
4103
+ msgstr "Brak podświetlenia składniowego"
4104
+
4105
+ #: settings.php:2363
4106
+ msgctxt "syntax highlighting themes"
4107
+ msgid "Light"
4108
+ msgstr "Jasny"
4109
+
4110
+ #: settings.php:2378
4111
+ msgctxt "syntax highlighting themes"
4112
+ msgid "Dark"
4113
+ msgstr "Ciemny"
4114
+
4115
+ #: settings.php:2404
4116
+ msgid "Min. user role for ind. exceptions editing"
4117
+ msgstr "Min. rola użytkownika dla edycji ind. wyjątków"
4118
+
4119
+ #: settings.php:2414
4120
+ msgid "Disable caching for logged in administrators"
4121
+ msgstr "Wyłącz caching dla zalogowanych administratorów"
4122
+
4123
+ #: settings.php:2417
4124
+ msgid ""
4125
+ "Enabled means that logged in administrators will see non-cached (live) pages "
4126
+ "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4127
+ msgstr ""
4128
+ "Włączenie oznacza, że zalogowani administratorzy będą widzieć nie cachowane "
4129
+ "(non-cached) (na żywo) strony (dotyczy WP Super Cache, W3 Total Cache i "
4130
+ "wtyczek WP Rocket)."
4131
+
4132
+ #: settings.php:2425
4133
+ msgid "Wait for jQuery"
4134
+ msgstr "Poczekaj na jQuery"
4135
+
4136
+ #: settings.php:2428
4137
+ msgid ""
4138
+ "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4139
+ "it will run the scripts that may need it"
4140
+ msgstr ""
4141
+ "Po włączeniu, Ad Inserter będzie czekać na biblioteki jQuery do załadowania, "
4142
+ "zanim uruchomi skrypty, które mogą jej potrzebować"
4143
+
4144
+ #: settings.php:2436
4145
+ msgid "Sticky widget mode"
4146
+ msgstr "Tryb lepkiego widżetu"
4147
+
4148
+ #: settings.php:2439
4149
+ msgid ""
4150
+ "CSS mode is the best approach but may not work with all themes. JavaScript "
4151
+ "mode works with most themes but may reload ads on page load."
4152
+ msgstr ""
4153
+ "Tryb CSS jest najlepszym rozwiązaniem, ale może nie działać ze wszystkimi "
4154
+ "motywami. Tryb JavaScript działa z większością motywów, ale może ponownie "
4155
+ "załadować reklamy przy wczytywaniu strony."
4156
+
4157
+ #: settings.php:2447
4158
+ msgid "Sticky widget top margin"
4159
+ msgstr "Margines górny lepkiego widżetu"
4160
+
4161
+ #: settings.php:2455
4162
+ msgid "Dynamic blocks"
4163
+ msgstr "Bloki dynamiczne"
4164
+
4165
+ #: settings.php:2468
4166
+ msgid "Functions for paragraph counting"
4167
+ msgstr "Funkcje liczenia akapitów"
4168
+
4169
+ #: settings.php:2471
4170
+ msgid ""
4171
+ "Standard PHP functions are faster and work in most cases, use Multibyte "
4172
+ "functions if paragraphs are not counted properly on non-english pages."
4173
+ msgstr ""
4174
+ "Standardowe funkcje PHP są szybsze i działają w większości przypadków, użyj "
4175
+ "funkcji Multibyte, jeśli akapity nie są poprawnie liczone na stronach "
4176
+ "nieanglojęzycznych."
4177
+
4178
+ #: settings.php:2479
4179
+ msgid "No paragraph counting inside"
4180
+ msgstr "Nie ma w środku żadnego akapitu"
4181
+
4182
+ #: settings.php:2490
4183
+ msgid "Label text or HTML code"
4184
+ msgstr "Etykieta tekstu lub kodu HTML"
4185
+
4186
+ #: settings.php:2498
4187
+ msgid ""
4188
+ "Maximum number of inserted blocks per page. You need to enable Max page "
4189
+ "insertions (button Misc / tab Insertion) to count block for this limit."
4190
+ msgstr ""
4191
+ "Maksymalna liczba wstawionych bloków na stronie. Aby zliczyć blok dla tego "
4192
+ "limitu, należy włączyć maksymalne wstawienia stron (przycisk Różne / "
4193
+ "zakładka Wstawianie)."
4194
+
4195
+ #: settings.php:2512
4196
+ msgid "Plugin usage tracking"
4197
+ msgstr "Dane użytkowania wtyczek"
4198
+
4199
+ #. translators: %s: Ad Inserter
4200
+ #: settings.php:2515
4201
+ #, php-format
4202
+ msgid ""
4203
+ "Enable tracking of %s usage and help us to make improvements to the plugin. "
4204
+ "Only information regarding the WordPress environment and %s usage is "
4205
+ "recorded (once per month and on events like plugin activation/deactivation)."
4206
+ msgstr ""
4207
+ "Włącz śledzenie użycia dla %s i pomóż nam wprowadzić ulepszenia do wtyczki. "
4208
+ "Rejestrowane są tylko informacje dotyczące środowiska WordPress i "
4209
+ "korzystania z %s (raz w miesiącu oraz na wydarzeniach, takich jak aktywacja/"
4210
+ "dezaktywacja wtyczki)."
4211
+
4212
+ #: settings.php:2533
4213
+ msgid "CSS class name for the wrapping div"
4214
+ msgstr "Nazwa klasy CSS dla wrapping div"
4215
+
4216
+ #: settings.php:2533
4217
+ msgid "Block class name"
4218
+ msgstr "Nazwa klasy bloku"
4219
+
4220
+ #: settings.php:2539
4221
+ msgid "Include block number class"
4222
+ msgstr "Dołącz klasę numeru bloku"
4223
+
4224
+ #: settings.php:2539
4225
+ msgid "Block number class"
4226
+ msgstr "Klasa numeru bloku"
4227
+
4228
+ #: settings.php:2544
4229
+ msgid "Include block name class"
4230
+ msgstr "Dołącz klasę nazwy bloku"
4231
+
4232
+ #: settings.php:2544
4233
+ msgid "Block name class"
4234
+ msgstr "Klasa nazwy bloku"
4235
+
4236
+ #: settings.php:2549
4237
+ msgid ""
4238
+ "Instead of alignment classes generate inline alignment styles for blocks"
4239
+ msgstr ""
4240
+ "Zamiast klas wyrównania generuj style wyrównania wbudowanego dla bloków"
4241
+
4242
+ #: settings.php:2549
4243
+ msgid "Inline styles"
4244
+ msgstr "Style wbudowane"
4245
+
4246
+ #: settings.php:2555
4247
+ msgid "Preview of the block wrapping code"
4248
+ msgstr "Podgląd kodu zawijania(wrapping) bloków"
4249
+
4250
+ #: settings.php:2556
4251
+ msgid "Wrapping div"
4252
+ msgstr "Wrapping div"
4253
+
4254
+ #: settings.php:2557 settings.php:2997
4255
+ msgid "BLOCK CODE"
4256
+ msgstr "KOD BLOKU"
4257
+
4258
+ #: settings.php:2565
4259
+ msgid "Viewport Settings used for client-side device detection"
4260
+ msgstr ""
4261
+ "Ustawienia okna podglądu używanego do wykrywania urządzeń po stronie klienta"
4262
+
4263
+ #: settings.php:2573
4264
+ #, php-format
4265
+ msgid "Viewport %d name"
4266
+ msgstr "%d nazwa okna podglądu"
4267
+
4268
+ #: settings.php:2576
4269
+ msgid "min width"
4270
+ msgstr "minimalna szerokość"
4271
+
4272
+ #: settings.php:2587
4273
+ msgid "Custom Hooks"
4274
+ msgstr "Niestandardowe haki"
4275
+
4276
+ #: settings.php:2599 settings.php:2602
4277
+ msgid "Enable hook"
4278
+ msgstr "Włącz hak"
4279
+
4280
+ #. translators: %d: hook number
4281
+ #: settings.php:2602
4282
+ #, php-format
4283
+ msgid "Hook %d name"
4284
+ msgstr "Nazwa %d zaczepu"
4285
+
4286
+ #: settings.php:2605
4287
+ msgid "Hook name for automatic insertion selection"
4288
+ msgstr "Nazwa haka do automatycznego wyboru wstawiania"
4289
+
4290
+ #: settings.php:2608
4291
+ msgid "action"
4292
+ msgstr "akcja"
4293
+
4294
+ #: settings.php:2611
4295
+ msgid "Action name as used in the do_action () function"
4296
+ msgstr "Nazwa akcji używana w funkcji do_action ()"
4297
+
4298
+ #: settings.php:2614
4299
+ msgid "priority"
4300
+ msgstr "priorytet"
4301
+
4302
+ #: settings.php:2617
4303
+ msgid "Priority for the hook (default is 10)"
4304
+ msgstr "Priorytet haka (wartość domyślna to 10)"
4305
+
4306
+ #: settings.php:2638
4307
+ msgid "Enable insertion of this code into HTML page header"
4308
+ msgstr "Włącz wstawianie tego kodu do nagłówka strony HTML"
4309
+
4310
+ #: settings.php:2642 settings.php:2709 settings.php:2891
4311
+ msgid "Process PHP code"
4312
+ msgstr "Przetwarzanie kodu PHP"
4313
+
4314
+ #: settings.php:2646
4315
+ msgid "HTML Page Header Code"
4316
+ msgstr "Kod nagłówka strony HTML"
4317
+
4318
+ #: settings.php:2654
4319
+ #, php-format
4320
+ msgid "Code in the %s section of the HTML page"
4321
+ msgstr "Kod w sekcji %s na stronie HTML"
4322
+
4323
+ #: settings.php:2655
4324
+ msgctxt "code in the header"
4325
+ msgid "NOT ENABLED"
4326
+ msgstr "NIE WŁĄCZONE"
4327
+
4328
+ #: settings.php:2672 settings.php:2740
4329
+ msgid "Use server-side detection to insert code only for"
4330
+ msgstr "Wykrywanie po stronie serwera służy do wstawiania kodu tylko"
4331
+
4332
+ #: settings.php:2687
4333
+ msgid ""
4334
+ "Enable insertion of this code into HTML page header on page for Error 404: "
4335
+ "Page not found"
4336
+ msgstr ""
4337
+ "Włącz wstawianie tego kodu do nagłówka strony HTML na stronie błędu 404: Nie "
4338
+ "znaleziono strony"
4339
+
4340
+ #: settings.php:2687 settings.php:2755
4341
+ msgid "Insert on Error 404 page"
4342
+ msgstr "Wstaw na stronie błędu 404"
4343
+
4344
+ #: settings.php:2705
4345
+ msgid "Enable insertion of this code into HTML page footer"
4346
+ msgstr "Włącz wstawianie tego kodu do stopki stron HTML"
4347
+
4348
+ #: settings.php:2713
4349
+ msgid "HTML Page Footer Code"
4350
+ msgstr "Kod stopki strony HTML"
4351
+
4352
+ #. translators: %s: HTML tags
4353
+ #: settings.php:2721
4354
+ #, php-format
4355
+ msgid "Code before the %s tag of the the HTML page"
4356
+ msgstr "Kod przed %s tagiem strony HTML"
4357
+
4358
+ #: settings.php:2722
4359
+ msgctxt "code in the footer"
4360
+ msgid "NOT ENABLED"
4361
+ msgstr "NIE WŁĄCZONE"
4362
+
4363
+ #: settings.php:2755
4364
+ msgid ""
4365
+ "Enable insertion of this code into HTML page footer on page for Error 404: "
4366
+ "Page not found"
4367
+ msgstr ""
4368
+ "Włącz wstawianie tego kodu do stopki strony HTML na stronie błędu 404: Nie "
4369
+ "znaleziono strony"
4370
+
4371
+ #: settings.php:2771
4372
+ msgid "Code for ad blocking detection inserted. Click for details."
4373
+ msgstr ""
4374
+ "Wprowadzono kod do wykrywania blokady reklam. Kliknij, aby uzyskać szczegóły."
4375
+
4376
+ #: settings.php:2776
4377
+ msgid "Enable detection of ad blocking"
4378
+ msgstr "Włączanie wykrywania blokowania reklam"
4379
+
4380
+ #: settings.php:2794
4381
+ msgid "Global action when ad blocking is detected"
4382
+ msgstr "Globalne działanie po wykryciu blokowania reklam"
4383
+
4384
+ #: settings.php:2800
4385
+ msgid "No action for"
4386
+ msgstr "Brak działań dla"
4387
+
4388
+ #: settings.php:2801
4389
+ msgid "Exceptions for global action when ad blocking is detected."
4390
+ msgstr "Wyjątki dla globalnego działania po wykryciu blokowania reklam."
4391
+
4392
+ #: settings.php:2811
4393
+ msgid "Delay Action"
4394
+ msgstr "Opóźnij akcję"
4395
+
4396
+ #: settings.php:2814
4397
+ msgid ""
4398
+ "Number of page views to delay action when ad blocking is detected. Leave "
4399
+ "empty for no delay (action fires on first page view). Sets cookie."
4400
+ msgstr ""
4401
+ "Liczba wyświetleń strony, aby opóźnić działanie po wykryciu blokowania "
4402
+ "reklam. Pozostaw puste bez opóźnień (akcja jest uruchamiana w widoku "
4403
+ "pierwszej strony). Ustawia plik cookie."
4404
+
4405
+ #: settings.php:2814
4406
+ msgctxt "Delay Action for x "
4407
+ msgid "page views"
4408
+ msgstr "wyświetlenia strony"
4409
+
4410
+ #: settings.php:2819
4411
+ msgid "No Action Period"
4412
+ msgstr "Brak okresu działania"
4413
+
4414
+ #: settings.php:2822
4415
+ msgid ""
4416
+ "Number of days to supress action when ad blocking is detected. Leave empty "
4417
+ "for no no-action period (action fires always after defined page view delay). "
4418
+ "Sets cookie."
4419
+ msgstr ""
4420
+ "Po wykryciu blokady reklam liczba dni na wstrzymanie działania. Pozostaw "
4421
+ "pusty na okres bez działania (akcja jest uruchamiana zawsze po zdefiniowanym "
4422
+ "opóźnieniu widoku strony). Ustawia plik cookie."
4423
+
4424
+ #: settings.php:2822
4425
+ msgctxt "no action period"
4426
+ msgid "days"
4427
+ msgstr "dni"
4428
+
4429
+ #: settings.php:2827
4430
+ msgid "Custom Selectors"
4431
+ msgstr "Selektory niestandardowe"
4432
+
4433
+ #: settings.php:2830
4434
+ msgid ""
4435
+ "Comma seprarated list of selectors (.class, #id) used for additional ad "
4436
+ "blocking detection. Invisible element or element with zero height means ad "
4437
+ "blocking is present."
4438
+ msgstr ""
4439
+ "Przecinek przesunął listę selektorów (.class, #id) używanych do dodatkowego "
4440
+ "wykrywania blokowania reklam. Niewidoczny element lub element o zerowej "
4441
+ "wysokości oznacza, że blokowanie reklam jest obecne."
4442
+
4443
+ #: settings.php:2842
4444
+ msgid "Redirection Page"
4445
+ msgstr "Strona przekierowania"
4446
+
4447
+ #: settings.php:2854
4448
+ msgid "Custom Url"
4449
+ msgstr "Niestandardowy adres URL"
4450
+
4451
+ #: settings.php:2859
4452
+ msgid ""
4453
+ "Static page for redirection when ad blocking is detected. For other pages "
4454
+ "select Custom url and set it below."
4455
+ msgstr ""
4456
+ "Statyczna strona do przekierowania po wykryciu blokowania reklam. W "
4457
+ "przypadku innych stron wybierz niestandardowy adres URL i ustaw go poniżej."
4458
+
4459
+ #: settings.php:2868
4460
+ msgid "Custom Redirection Url"
4461
+ msgstr "Niestandardowy adres URL przekierowania"
4462
+
4463
+ #: settings.php:2880
4464
+ msgid "Message HTML code"
4465
+ msgstr "Kod HTML wiadomości"
4466
+
4467
+ #: settings.php:2893
4468
+ msgid "Preview message when ad blocking is detected"
4469
+ msgstr "Podgląd wiadomości pokazywanej kiedy blokowanie reklam zostało wykryte"
4470
+
4471
+ #: settings.php:2922
4472
+ msgid "Prevent visitors from closing the warning message"
4473
+ msgstr "Uniemożliwianie odwiedzającym zamykania komunikatu ostrzegawczego"
4474
+
4475
+ #: settings.php:2922
4476
+ msgid "Undismissible Message"
4477
+ msgstr "Niedopuszczalny komunikat"
4478
+
4479
+ #: settings.php:2928
4480
+ msgid "Not undismissible for"
4481
+ msgstr "Nie jest niedopuszczalne dla"
4482
+
4483
+ #: settings.php:2929
4484
+ msgid "Users which can close the warning message."
4485
+ msgstr "Użytkownicy, którzy mogą zamknąć komunikat ostrzegawczy."
4486
+
4487
+ #: settings.php:2943
4488
+ msgid ""
4489
+ "Force showing admin toolbar for administrators when viewing site. Enable "
4490
+ "this option when you are logged in as admin and you don't see admin toolbar."
4491
+ msgstr ""
4492
+ "Wymuszenie pokazywania paska narzędzi administracyjnych dla administratorów "
4493
+ "podczas przeglądania strony. Włącz tę opcję, gdy jesteś zalogowany jako "
4494
+ "admin i nie widzisz paska narzędzi administratora."
4495
+
4496
+ #: settings.php:2951
4497
+ msgid "Disable header code (Header tab)"
4498
+ msgstr "Wyłącz kod nagłówka (karta Nagłówka)"
4499
+
4500
+ #: settings.php:2955
4501
+ msgid "Disable footer code (Footer tab)"
4502
+ msgstr "Wyłącz kod stopki (karta Stopka)"
4503
+
4504
+ #. translators: %s: Ad Inserter
4505
+ #: settings.php:2959
4506
+ #, php-format
4507
+ msgid "Disable %s JavaScript code"
4508
+ msgstr "Wyłączanie kodu JavaScript %s"
4509
+
4510
+ #. translators: %s: Ad Inserter
4511
+ #: settings.php:2963
4512
+ #, php-format
4513
+ msgid "Disable %s CSS code"
4514
+ msgstr "Wyłączanie kodu CSS %s"
4515
+
4516
+ #: settings.php:2967
4517
+ msgid ""
4518
+ "Disable PHP code processing (in all blocks including header and footer code)"
4519
+ msgstr ""
4520
+ "Wyłącz przetwarzanie kodu PHP (we wszystkich blokach, w tym kod nagłówka i "
4521
+ "stopki)"
4522
+
4523
+ #: settings.php:2971
4524
+ msgid "Disable insertion of all blocks"
4525
+ msgstr "Wyłącz wstawianie dla wszystkich bloków"
4526
+
4527
+ #: settings.php:2975
4528
+ msgid "Disable insertions"
4529
+ msgstr "Wyłączanie wstawiania"
4530
+
4531
+ #. translators: %s: Ad Inserter
4532
+ #: settings.php:2987
4533
+ #, php-format
4534
+ msgid "%s CSS CODE"
4535
+ msgstr "%s CSS KOD"
4536
+
4537
+ #: settings.php:2990
4538
+ msgid "HEADER CODE"
4539
+ msgstr "KOD NAGŁÓWKA"
4540
+
4541
+ #. translators: %s: PHP tags
4542
+ #: settings.php:2996
4543
+ msgid "BLOCK PHP CODE"
4544
+ msgstr "KOD PHP BLOKU"
4545
+
4546
+ #. translators: %s: Ad Inserter
4547
+ #: settings.php:3002
4548
+ #, php-format
4549
+ msgid "%s JS CODE"
4550
+ msgstr "%s KOD JS"
4551
+
4552
+ #: settings.php:3005
4553
+ msgid "FOOTER CODE"
4554
+ msgstr "KOD STOPKI"
4555
+
4556
+ #: settings.php:3014
4557
+ msgid "Force showing admin toolbar when viewing site"
4558
+ msgstr ""
4559
+ "Wymuś wyświetlania paska narzędzi administratora podczas przeglądania witryny"
4560
+
4561
+ #: settings.php:3021
4562
+ msgid "Enable debugging functions in admin toolbar"
4563
+ msgstr "Włączanie funkcji debugowania na pasku narzędzi administratora"
4564
+
4565
+ #: settings.php:3023
4566
+ msgid "Debugging functions in admin toolbar"
4567
+ msgstr "Funkcje debugowania na pasku narzędzi administratora"
4568
+
4569
+ #: settings.php:3030
4570
+ msgid "Enable debugging functions in admin toolbar on mobile screens"
4571
+ msgstr ""
4572
+ "Włączanie funkcji debugowania na pasku narzędzi administratora na ekranach "
4573
+ "urządzeń przenośnych"
4574
+
4575
+ #: settings.php:3032
4576
+ msgid "Debugging functions on mobile screens"
4577
+ msgstr "Funkcje debugowania na ekranach mobilnych"
4578
+
4579
+ #: settings.php:3039
4580
+ msgid ""
4581
+ "Enable Debugger widget and code insertion debugging (blocks, positions, "
4582
+ "tags, processing) by url parameters for non-logged in users. Enable this "
4583
+ "option to allow other users to see Debugger widget, labeled blocks and "
4584
+ "positions in order to help you to diagnose problems. For logged in "
4585
+ "administrators debugging is always enabled."
4586
+ msgstr ""
4587
+ "Włączenie debuggera widżetów i debugowania wprowadzania kodu (bloków, "
4588
+ "pozycji, tagów, przetwarzania) za pomocą parametrów url dla niezalogowanych "
4589
+ "użytkowników. Włącz tę opcję, aby umożliwić innym użytkownikom zobaczenie "
4590
+ "widżetu Debuggera, oznaczonych bloków i pozycji, aby pomóc w diagnozowaniu "
4591
+ "problemów. Dla zalogowanych administratorów debuggowanie jest zawsze "
4592
+ "włączone."
4593
+
4594
+ #: settings.php:3041
4595
+ msgid "Remote debugging"
4596
+ msgstr "Zdalne debugowanie"
4597
+
4598
+ #: settings.php:3048
4599
+ msgid ""
4600
+ "Disable translation to see original texts for the settings and messages in "
4601
+ "English"
4602
+ msgstr ""
4603
+ "Wyłącz tłumaczenie, aby wyświetlić oryginalne teksty ustawień i wiadomości w "
4604
+ "języku angielskim"
4605
+
4606
+ #: settings.php:3050
4607
+ msgid "Disable translation"
4608
+ msgstr "Wyłącz tłumaczenie"
4609
+
4610
+ #: settings.php:3420
4611
+ msgid "Available positions for current theme"
4612
+ msgstr "Dostępne pozycje dla bieżącego motywu"
4613
+
4614
+ #: settings.php:3421
4615
+ msgid "Error checking pages"
4616
+ msgstr "Sprawdzanie błędów stron"
4617
+
4618
+ #: settings.php:3424
4619
+ msgid "Toggle theme checker for available positions for automatic insertion"
4620
+ msgstr ""
4621
+ "Przełącznik motywu dla sprawdzania dostępnych pozycji do automatycznego "
4622
+ "wstawiania"
4623
+
4624
+ #: settings.php:3424
4625
+ msgctxt "Button"
4626
+ msgid "Check"
4627
+ msgstr "Sprawdź"
4628
+
4629
+ #: settings.php:3431
4630
+ msgid "Position"
4631
+ msgstr "Pozycja"
4632
+
4633
+ #: settings.php:3436
4634
+ msgid "Archive pages"
4635
+ msgstr "Strony archiwalne"
4636
+
4637
+ #: settings.php:3495
4638
+ msgid ""
4639
+ "Position not available because output buffering (tab [*]) is not enabled"
4640
+ msgstr ""
4641
+ "Pozycja niedostępna, ponieważ buforowanie danych wyjściowych (karta [*]) nie "
4642
+ "jest włączona"
4643
+
4644
+ #: settings.php:3498 strings.php:231
4645
+ msgid "Position not checked yet"
4646
+ msgstr "Pozycja nie jest jeszcze sprawdzona"
4647
+
4648
+ #: settings.php:3534
4649
+ msgid "Toggle active/all blocks"
4650
+ msgstr "Przełączanie aktywnych/wszystkich bloków"
4651
+
4652
+ #: settings.php:3538 strings.php:218
4653
+ msgid "Rearrange block order"
4654
+ msgstr "Zmienianie kolejności bloków"
4655
+
4656
+ #: settings.php:3543
4657
+ msgid "Save new block order"
4658
+ msgstr "Zapisz nową kolejność bloków"
4659
+
4660
+ #: settings.php:3569
4661
+ msgid "Toggle active/all ad units"
4662
+ msgstr "Przełączanie aktywnych/wszystkich jednostek reklamowych"
4663
+
4664
+ #: settings.php:3573
4665
+ msgid "Reload AdSense ad units"
4666
+ msgstr "Ponowne ładowanie jednostek reklamowych AdSense"
4667
+
4668
+ #: settings.php:3577
4669
+ msgid "Clear authorization to access AdSense account"
4670
+ msgstr "Wyczyść autoryzację dostępu do konta AdSense"
4671
+
4672
+ #: settings.php:3581 settings.php:4431 settings.php:4498 strings.php:226
4673
+ msgid "Google AdSense Homepage"
4674
+ msgstr "Strona główna Google AdSense"
4675
+
4676
+ #: settings.php:3597
4677
+ msgid "Switch to physical ads.txt file"
4678
+ msgstr "Przełączanie do fizycznego pliku ads.txt"
4679
+
4680
+ #: settings.php:3598
4681
+ msgid "Switch to virtual ads.txt file"
4682
+ msgstr "Przełączanie do pliku virtual ads.txt"
4683
+
4684
+ #. translators: %s: ads.txt
4685
+ #: settings.php:3608
4686
+ #, php-format
4687
+ msgid "Open %s"
4688
+ msgstr "Otwórz %s"
4689
+
4690
+ #: settings.php:3616
4691
+ msgid "Reload ads.txt file"
4692
+ msgstr "Przeładuj plik ads.txt"
4693
+
4694
+ #: settings.php:3620 settings.php:4558
4695
+ msgid "Save"
4696
+ msgstr "Zapisz"
4697
+
4698
+ #. translators: %s: Ad Inserter
4699
+ #: settings.php:3795
4700
+ #, php-format
4701
+ msgid "ads.txt file: %s virtual ads.txt file"
4702
+ msgstr "plik ads.txt: plik %s virtual ads.txt"
4703
+
4704
+ #: settings.php:3800 settings.php:3820 strings.php:210
4705
+ msgid "Warning"
4706
+ msgstr "Ostrzeżenie"
4707
+
4708
+ #. translators: %s: Ad Inserter
4709
+ #: settings.php:3800
4710
+ #, php-format
4711
+ msgid "%s virtual file ads.txt not found"
4712
+ msgstr "Nie znaleziono pliku %s wirtualnego ads.txt"
4713
+
4714
+ #: settings.php:3808
4715
+ msgid "IMPORTANT"
4716
+ msgstr "WAŻNE"
4717
+
4718
+ #: settings.php:3808
4719
+ msgid "ads.txt file must be placed on the root domain"
4720
+ msgstr "plik ads.txt musi być umieszczony w domenie głównej"
4721
+
4722
+ #: settings.php:3813
4723
+ msgid "ads.txt file"
4724
+ msgstr "plik ads.txt"
4725
+
4726
+ #: settings.php:3813
4727
+ msgid "NOT WRITABLE"
4728
+ msgstr "NIE DO SKRYTEJ"
4729
+
4730
+ #: settings.php:3820
4731
+ #, php-format
4732
+ msgid "file %s not found"
4733
+ msgstr "plik %s nie został znaleziony"
4734
+
4735
+ #: settings.php:3830
4736
+ msgid "Account IDs found in blocks but not present in the ads.txt file"
4737
+ msgstr ""
4738
+ "Identyfikatory kont znalezione w blokach, ale nie obecne w pliku ads.txt"
4739
+
4740
+ #. translators: %s: Ad Inserter
4741
+ #: settings.php:3836
4742
+ #, php-format
4743
+ msgid "%s virtual ads.txt file"
4744
+ msgstr "Plik %s virtual ads.txt"
4745
+
4746
+ #: settings.php:3858
4747
+ msgid "Advertising system"
4748
+ msgstr "System reklamowy"
4749
+
4750
+ #: settings.php:3859
4751
+ msgid "Account ID"
4752
+ msgstr "ID konta"
4753
+
4754
+ #: settings.php:3861
4755
+ msgid "Certification authority ID"
4756
+ msgstr "Identyfikator urzędu certyfikacji"
4757
+
4758
+ #: settings.php:3876
4759
+ msgid "Account ID found in block and present in ads.txt"
4760
+ msgstr "Identyfikator konta znaleziony w bloku i obecny w pliku ads.txt"
4761
+
4762
+ #: settings.php:3880
4763
+ msgid "Account ID found in block but not present in ads.txt"
4764
+ msgstr "Identyfikator konta znaleziony w bloku, ale nie obecny w pliku ads.txt"
4765
+
4766
+ #: settings.php:4214
4767
+ msgid "Preview block"
4768
+ msgstr "Podejrzyj blok"
4769
+
4770
+ #: settings.php:4221
4771
+ msgid "Pause block"
4772
+ msgstr "Zatrzymaj blok"
4773
+
4774
+ #: settings.php:4260
4775
+ msgid "Automatic insertion"
4776
+ msgstr "Automatyczne wstawianie"
4777
+
4778
+ #. translators: %s HTML tags
4779
+ #: settings.php:4261 settings.php:5229
4780
+ msgid "PHP code processing"
4781
+ msgstr "Przetwarzanie kodu PHP"
4782
+
4783
+ #: settings.php:4263
4784
+ msgid "Device detection"
4785
+ msgstr "Wykrywanie urządzenia"
4786
+
4787
+ #: settings.php:4286
4788
+ msgid "No active block"
4789
+ msgstr "Brak aktywnego bloku"
4790
+
4791
+ #: settings.php:4287
4792
+ msgid "No block matches search keywords"
4793
+ msgstr "Brak blokowania pasuje do słów kluczowych wyszukiwania"
4794
+
4795
+ #: settings.php:4342
4796
+ msgid "Ad unit"
4797
+ msgstr "Jednostka reklamowa"
4798
+
4799
+ #: settings.php:4344
4800
+ msgid "Slot ID"
4801
+ msgstr "ID slotu"
4802
+
4803
+ #: settings.php:4370
4804
+ msgid "Copy AdSense code"
4805
+ msgstr "Kopiowanie kodu AdSense"
4806
+
4807
+ #: settings.php:4373
4808
+ msgid "Preview AdSense ad"
4809
+ msgstr "Podgląd reklamy AdSense"
4810
+
4811
+ #: settings.php:4376
4812
+ msgid "Get AdSense code"
4813
+ msgstr "Zdobądź kod AdSense"
4814
+
4815
+ #. translators: %s: HTML tags
4816
+ #: settings.php:4408
4817
+ #, php-format
4818
+ msgid ""
4819
+ "Please %s clear authorization %s with the button %s above and once again "
4820
+ "authorize access to your AdSense account."
4821
+ msgstr ""
4822
+ "Proszę %s wyczyść autoryzacje %s za pomocą przycisku %s powyżej i ponownie "
4823
+ "autoryzuj dostęp do swojego konta AdSense."
4824
+
4825
+ #: settings.php:4427
4826
+ msgid "AdSense Integration"
4827
+ msgstr "Integracja z AdSense"
4828
+
4829
+ #: settings.php:4429
4830
+ msgid "AdSense Integration - Step 2"
4831
+ msgstr "Integracja z AdSense — krok 2"
4832
+
4833
+ #. translators: %s: HTML tags
4834
+ #: settings.php:4435
4835
+ #, php-format
4836
+ msgid ""
4837
+ "Authorize %s to access your AdSense account. Click on the %s Get "
4838
+ "Authorization Code %s button to open a new window where you can allow "
4839
+ "access. When you get the code copy it to the field below and click on the "
4840
+ "button %s Authorize. %s"
4841
+ msgstr ""
4842
+ "Upoważnij %s do dostępu do Twojego konta AdSense. Kliknij na przycisk %s "
4843
+ "Pobierz Kod Autoryzacyjny %s, aby otworzyć nowe okno, w którym możesz "
4844
+ "zezwolić na dostęp. Po otrzymaniu kodu skopiuj go do pola poniżej i kliknij "
4845
+ "na przycisk %s Autoryzuj. %s"
4846
+
4847
+ #. translators: %s: HTML tags
4848
+ #: settings.php:4442
4849
+ #, php-format
4850
+ msgid ""
4851
+ "If you get error, can't access ad units or would like to use own Google API "
4852
+ "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4853
+ "Secret."
4854
+ msgstr ""
4855
+ "Jeśli pojawi się błąd, nie możesz uzyskać dostępu do jednostek reklamowych "
4856
+ "lub chcesz użyć własnych identyfikatorów interfejsu API Google, kliknij "
4857
+ "przycisk %s Użyj własnych identyfikatorów interfejsu API %s, aby wprowadzić "
4858
+ "identyfikator klienta i tajny klucz klienta."
4859
+
4860
+ #. translators: %s: HTML tags
4861
+ #: settings.php:4444
4862
+ #, php-format
4863
+ msgid ""
4864
+ "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4865
+ "Authorization Code %s button to open a new window where you can allow "
4866
+ "access. When you get the code copy it to the field below and click on the "
4867
+ "button %s Authorize. %s"
4868
+ msgstr ""
4869
+ "Teraz możesz autoryzować %s, aby uzyskać dostęp do swojego konta AdSense. "
4870
+ "Kliknij przycisk %s Pobierz Kod Autoryzacji %s, aby otworzyć nowe okno, w "
4871
+ "którym można zezwolić na dostęp. Po otrzymaniu kodu skopiuj go do poniższego "
4872
+ "pola i kliknij przycisk %s Autoryzuj. %s"
4873
+
4874
+ #. translators: %s: HTML tags
4875
+ #: settings.php:4451
4876
+ #, php-format
4877
+ msgid ""
4878
+ "If you get error %s invalid client %s click on the button %s Clear and "
4879
+ "return to Step 1 %s to re-enter Client ID and Client Secret."
4880
+ msgstr ""
4881
+ "Jeśli zostanie wyświetlony błąd %s nieprawidłowy klient %s, kliknij przycisk "
4882
+ "%s Wyczyść i wróć do kroku 1 %s, aby ponownie wprowadzić identyfikator "
4883
+ "klienta i tajny klucz klienta."
4884
+
4885
+ #: settings.php:4462
4886
+ msgid "Get Authorization Code"
4887
+ msgstr "Pobierz Kod Autoryzacyjny"
4888
+
4889
+ #: settings.php:4465
4890
+ msgid "Enter Authorization Code"
4891
+ msgstr "Wprowadź kod autoryzacji"
4892
+
4893
+ #: settings.php:4475
4894
+ msgid "Use own API IDs"
4895
+ msgstr "Używanie własnych identyfikatorów API"
4896
+
4897
+ #: settings.php:4477
4898
+ msgid "Clear and return to Step 1"
4899
+ msgstr "Czyszczenie i powrót do kroku 1"
4900
+
4901
+ #: settings.php:4481
4902
+ msgid "Authorize"
4903
+ msgstr "Autoryzuj"
4904
+
4905
+ #: settings.php:4497
4906
+ msgid "AdSense Integration - Step 1"
4907
+ msgstr "Integracja z AdSense — krok 1"
4908
+
4909
+ #. translators: %s: Ad Inserter
4910
+ #: settings.php:4501
4911
+ #, php-format
4912
+ msgid ""
4913
+ "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4914
+ "To do this you need to authorize %s to access your AdSense account. The "
4915
+ "first step is to create a Google API project in order to get Client ID and "
4916
+ "Client Secret."
4917
+ msgstr ""
4918
+ "Tutaj można %s wyświetlić skonfigurowane jednostki reklamowe AdSense i "
4919
+ "uzyskać kod do reklam AdSense. Aby to zrobić, musisz autoryzować %s, aby "
4920
+ "uzyskać dostęp do swojego konta AdSense. Pierwszym krokiem jest utworzenie "
4921
+ "projektu interfejsu API Google w celu uzyskania identyfikatora klienta i "
4922
+ "klucza tajnego(sekretu) klienta."
4923
+
4924
+ #. translators: %s: HTML tags
4925
+ #: settings.php:4510
4926
+ #, php-format
4927
+ msgid "Go to %s Google APIs and Services console %s"
4928
+ msgstr "Przejdź do %s Google APIs i konsoli usług %s"
4929
+
4930
+ #. translators: %1: Ad Inserter, 2, 3: HTML tags
4931
+ #: settings.php:4511
4932
+ #, php-format
4933
+ msgid ""
4934
+ "Create %1$s project - if the project and IDs are already created click on "
4935
+ "the %2$s Credentials %3$s in the sidebar and go to step 16"
4936
+ msgstr ""
4937
+ "Utwórz %1$s projekt — jeśli projekt i identyfikatory są już utworzone, "
4938
+ "kliknij przycisk %2$s Poświadczenia %3$s na pasku bocznym i przejdź do kroku "
4939
+ "16"
4940
+
4941
+ #. translators: %s: HTML tags
4942
+ #: settings.php:4512
4943
+ #, php-format
4944
+ msgid ""
4945
+ "Click on project selection and then click on the %s NEW PROJECT %s button to "
4946
+ "create a new project"
4947
+ msgstr ""
4948
+ "Kliknij na wybór projektu, a następnie kliknij przycisk %s NOWY PROJEKT %s, "
4949
+ "aby utworzyć nowy projekt"
4950
+
4951
+ #. translators: 1: Ad Inserter, 2, 3: HTML tags
4952
+ #: settings.php:4513
4953
+ #, php-format
4954
+ msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4955
+ msgstr "Wprowadź %1$s dla nazwy projektu i kliknij przycisk %2$s Utwórz %3$s"
4956
+
4957
+ #. translators: %s: HTML tags
4958
+ #: settings.php:4514
4959
+ #, php-format
4960
+ msgid ""
4961
+ "Click on project selection, wait for the project to be created and then and "
4962
+ "select %s as the current project"
4963
+ msgstr ""
4964
+ "Kliknij na wybór projektu, poczekaj na utworzenie projektu, a następnie "
4965
+ "wybierz %s jako bieżący projekt"
4966
+
4967
+ #. translators: %s: HTML tags
4968
+ #: settings.php:4515
4969
+ #, php-format
4970
+ msgid "Click on %s ENABLE APIS AND SERVICES %s"
4971
+ msgstr "Kliknij na %s WŁĄCZ APIS I USŁUGI %s"
4972
+
4973
+ #. translators: %s: HTML tags
4974
+ #: settings.php:4516
4975
+ #, php-format
4976
+ msgid "Search for adsense and enable %s"
4977
+ msgstr "Wyszukaj adsense i włącz %s"
4978
+
4979
+ #. translators: %s: HTML tags
4980
+ #: settings.php:4517
4981
+ #, php-format
4982
+ msgid "Click on %s CREATE CREDENTIALS %s"
4983
+ msgstr "Kliknij na %s UTWÓRZ KWALIFIKACJE %s"
4984
+
4985
+ #. translators: %s: HTML tags
4986
+ #: settings.php:4518
4987
+ #, php-format
4988
+ msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4989
+ msgstr ""
4990
+ "Dla %s Skąd będzie wywoływanie interfejsu API? %s wybierz %s inny interfejs "
4991
+ "użytkownika %s"
4992
+
4993
+ #. translators: %s: HTML tags
4994
+ #: settings.php:4519
4995
+ #, php-format
4996
+ msgid "For %s What data will you be accessing? %s select %s User data %s"
4997
+ msgstr "Dla %s Jakie dane będą dostępne? %s wybierz %s Dane użytkownika %s"
4998
+
4999
+ #. translators: %s: HTML tags
5000
+ #: settings.php:4520
5001
+ #, php-format
5002
+ msgid "Click on %s What credentials do I need? %s"
5003
+ msgstr "Kliknij na %s Jakie poświadczenia są potrzebne? %s"
5004
+
5005
+ #. translators: %s: HTML tags
5006
+ #: settings.php:4521
5007
+ #, php-format
5008
+ msgid ""
5009
+ "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5010
+ "Ad Inserter client %s"
5011
+ msgstr ""
5012
+ "Tworzenie identyfikatora klienta OAuth 2.0: dla %s OAuth 2.0 nazwa klienta "
5013
+ "%s wprowadź nazwę %s Klienta Ad Inserter %s"
5014
+
5015
+ #. translators: %s: HTML tags
5016
+ #: settings.php:4522
5017
+ #, php-format
5018
+ msgid ""
5019
+ "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5020
+ "enter %s"
5021
+ msgstr ""
5022
+ "Konfigurowanie ekranu zgody OAuth 2.0: Dla %s Nazwa produktu wyświetlana "
5023
+ "użytkownikom %s wprowadź %s"
5024
+
5025
+ #. translators: %s: HTML tags
5026
+ #: settings.php:4523
5027
+ #, php-format
5028
+ msgid "Click on %s Continue %s"
5029
+ msgstr "Kliknij przycisk %s Kontynuuj %s"
5030
+
5031
+ #. translators: %s: HTML tags
5032
+ #: settings.php:4524
5033
+ #, php-format
5034
+ msgid "Click on %s Done %s"
5035
+ msgstr "Kliknij na %s Gotowe %s"
5036
+
5037
+ #. translators: %s: HTML tags
5038
+ #: settings.php:4525
5039
+ #, php-format
5040
+ msgid ""
5041
+ "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5042
+ "secret %s"
5043
+ msgstr ""
5044
+ "Kliknij na %s Klient Ad Inserter %s, aby uzyskać %s Identyfikator klienta %s "
5045
+ "i %s tajny klucz(sekret) Klienta %s"
5046
+
5047
+ #: settings.php:4526
5048
+ msgid "Copy them to the appropriate fields below"
5049
+ msgstr "Skopiuj je do odpowiednich pól poniżej"
5050
+
5051
+ #: settings.php:4532
5052
+ msgid "Client ID"
5053
+ msgstr "ID klienta"
5054
+
5055
+ #: settings.php:4535
5056
+ msgid "Enter Client ID"
5057
+ msgstr "Wprowadź identyfikator klienta"
5058
+
5059
+ #: settings.php:4540
5060
+ msgid "Client secret"
5061
+ msgstr "Sekretny klucz klienta"
5062
+
5063
+ #: settings.php:4543
5064
+ msgid "Enter Client secret"
5065
+ msgstr "Wprowadź klucz tajny klienta"
5066
+
5067
+ #: settings.php:4553
5068
+ msgid "Use default API IDs"
5069
+ msgstr "Używanie domyślnych identyfikatorów interfejsu API"
5070
+
5071
+ #: settings.php:4717
5072
+ msgid "All posts"
5073
+ msgstr "Wszystkie posty"
5074
+
5075
+ #: settings.php:4718
5076
+ msgid "All static pages"
5077
+ msgstr "Wszystkie strony statyczne"
5078
+
5079
+ #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
5080
+ msgid "Blank ad blocks? Looking for AdSense alternative?"
5081
+ msgstr "Puste bloki reklam? Szukasz alternatywy AdSense?"
5082
+
5083
+ #: settings.php:4878 settings.php:4891 settings.php:4905 settings.php:4921
5084
+ #: settings.php:5120 settings.php:5122 settings.php:5138 settings.php:5143
5085
+ #: settings.php:5151 settings.php:5152 settings.php:5155 settings.php:5161
5086
+ #: settings.php:5171 settings.php:5175
5087
+ msgid "Looking for AdSense alternative?"
5088
+ msgstr "Szukasz alternatywy AdSense?"
5089
+
5090
+ #: settings.php:4933
5091
+ msgid "Try Infolinks Ads with Adsense or Media.net ads"
5092
+ msgstr "Wypróbuj reklamy Infolinks z reklamami adsense lub Media.net"
5093
+
5094
+ #: settings.php:4938 settings.php:5117 settings.php:5130 settings.php:5158
5095
+ #: settings.php:5184
5096
+ msgid "Use Infolinks ads with Adsense to earn more"
5097
+ msgstr "Użyj reklam Infolinks z Adsense, aby zarobić więcej"
5098
+
5099
+ #: settings.php:4959 settings.php:5009
5100
+ msgid "Support plugin development"
5101
+ msgstr "Wspieranie rozwoju wtyczek"
5102
+
5103
+ #: settings.php:4964 settings.php:5010
5104
+ msgid ""
5105
+ "If you like Ad Inserter and have a moment, please help me spread the word by "
5106
+ "reviewing the plugin on WordPres"
5107
+ msgstr ""
5108
+ "Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
5109
+ "wtyczkę, przeglądając wtyczkę na WordPress"
5110
+
5111
+ #: settings.php:4964
5112
+ msgctxt "Review Ad Inserter"
5113
+ msgid "Review"
5114
+ msgstr "Opinia"
5115
+
5116
+ #: settings.php:4969
5117
+ msgid ""
5118
+ "If you like Ad Inserter and have a moment, please help me spread the word by "
5119
+ "rating the plugin on WordPres"
5120
+ msgstr ""
5121
+ "Jeśli lubisz Ad Inserter i masz chwilę, proszę pomóż mi rozpowszechniać "
5122
+ "informacje, oceniając wtyczkę na WordPress"
5123
+
5124
+ #: settings.php:4969
5125
+ msgctxt "Rate Ad Inserter"
5126
+ msgid "Rate"
5127
+ msgstr "Ocena"
5128
+
5129
+ #: settings.php:4974
5130
+ msgid ""
5131
+ "Support free Ad Inserter development. If you are making money with Ad "
5132
+ "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5133
+ "you!"
5134
+ msgstr ""
5135
+ "Wesprzyj bezpłatny rozwój Ad Inserter. Jeśli zarabiasz pieniądze z Ad "
5136
+ "Inserter rozważyć przekazanie jakiejś małej kwoty. Liczy się nawet 1 dolar. "
5137
+ "Dziękuję!"
5138
+
5139
+ #: settings.php:4974
5140
+ msgid "Donate"
5141
+ msgstr "Wpłacam"
5142
+
5143
+ #: settings.php:4981 settings.php:5025
5144
+ msgid "Average rating of the plugin - Thank you!"
5145
+ msgstr "Średnia ocena wtyczki - Dziękujemy!"
5146
+
5147
+ #. translators: %s: Ad Inserter, HTML tags
5148
+ #: settings.php:4992
5149
+ #, php-format
5150
+ msgid ""
5151
+ "You've been using %s for a while now, and I hope you're happy with it. "
5152
+ "Positive %s reviews %s are a great way to show your appreciation for my "
5153
+ "work. Besides being an incredible boost to my morale, they are also a great "
5154
+ "incentive to fix bugs and to add new features for better monetization of "
5155
+ "your website. When you rate it with 5 stars it's like saying 'Thank you'."
5156
+ msgstr ""
5157
+ "Używasz %s już od jakiegoś czasu i mam nadzieję, że jesteś z tego "
5158
+ "zadowolony. Pozytywne recenzje %s %s to świetny sposób, aby pokazać swoje "
5159
+ "uznanie dla mojej pracy. Oprócz tego, że są niesamowitym boosterem dla "
5160
+ "mojego morału, są również świetną zachętą do naprawiania błędów i dodawania "
5161
+ "nowych funkcji dla lepszej monetyzacji Twojej strony. Kiedy oceniasz ją z 5 "
5162
+ "gwiazdkami, to jest to jak powiedzenie \"Dziękuję\"."
5163
+
5164
+ #: settings.php:5010
5165
+ msgid "Review"
5166
+ msgstr "Opinia"
5167
+
5168
+ #: settings.php:5014
5169
+ msgid "Ad Inserter on Twitter"
5170
+ msgstr "Ad Inserter na Twitterze"
5171
+
5172
+ #: settings.php:5015
5173
+ msgid "Ad Inserter on Facebook"
5174
+ msgstr "Ad Inserter na Facebooku"
5175
+
5176
+ #: settings.php:5018
5177
+ msgid "Follow Ad Inserter"
5178
+ msgstr "Zaobserwuj Ad Inserter"
5179
+
5180
+ #. translators: %s: HTML tags
5181
+ #: settings.php:5045
5182
+ #, php-format
5183
+ msgid ""
5184
+ "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5185
+ "and %s Common Settings %s pages"
5186
+ msgstr ""
5187
+ "Potrzebujesz pomocy z %s ustawieniami? %s Sprawdź %s Szybki start, %s %s "
5188
+ "Edycja kodu %s i %s Typowe ustawienia %s stron"
5189
+
5190
+ #. translators: %s: HTML tags
5191
+ #: settings.php:5057
5192
+ #, php-format
5193
+ msgid ""
5194
+ "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5195
+ "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
5196
+ "code %s"
5197
+ msgstr ""
5198
+ "%s Nowy w %s AdSense? %s %s %s Połącz witrynę %s - %s Reklamy w kanale, %s "
5199
+ "%s Reklamy automatyczne, %s %s AMP ads %s &mdash; Jak %s zintegrować %s "
5200
+ "Infolinki %s kodu reklamy %s"
5201
+
5202
+ #. translators: %s: HTML tags
5203
+ #: settings.php:5078
5204
+ #, php-format
5205
+ msgid ""
5206
+ "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5207
+ "purchase you refer to us"
5208
+ msgstr ""
5209
+ "Zostań %s partnerem %s Ad Inserter Pro i zarabiaj prowizję za każdy zakup, "
5210
+ "który polecisz do nas"
5211
+
5212
+ #. translators: %s: HTML tags
5213
+ #: settings.php:5085
5214
+ #, php-format
5215
+ msgid ""
5216
+ "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5217
+ "diagnose and fix the problem."
5218
+ msgstr ""
5219
+ "Reklamy się nie wyświetlają? Sprawdź %s przewodnik rozwiązywania problemów "
5220
+ "%s, aby dowiedzieć się, jak zdiagnozować i rozwiązać problem."
5221
+
5222
+ #. translators: %s: HTML tags
5223
+ #: settings.php:5089
5224
+ #, php-format
5225
+ msgid ""
5226
+ "If you need any kind of help or support, please do not hesitate to open a "
5227
+ "thread on the %s support forum. %s"
5228
+ msgstr ""
5229
+ "Jeśli potrzebujesz jakiejkolwiek pomocy lub wsparcia, nie wahaj się otworzyć "
5230
+ "wątku na %s forum pomocy technicznej. %s"
5231
+
5232
+ #: settings.php:5115 settings.php:5179 settings.php:5183
5233
+ msgid "Code preview with visual CSS editor"
5234
+ msgstr "Podgląd kodu z wizualnym edytorem CSS"
5235
+
5236
+ #: settings.php:5119 settings.php:5169
5237
+ msgid "A/B testing - Track ad impressions and clicks"
5238
+ msgstr "Testowanie a/b - śledzenie wyświetleń i kliknięć reklam"
5239
+
5240
+ #: settings.php:5134
5241
+ msgid "Insert ads on AMP pages"
5242
+ msgstr "Wstawianie reklam na stronach AMP"
5243
+
5244
+ #: settings.php:5142
5245
+ msgid "Ad blocking detection and content protection"
5246
+ msgstr "Wykrywanie blokowania reklam i ochrona treści"
5247
+
5248
+ #: settings.php:5192
5249
+ msgid "Looking for Pro Ad Management plugin?"
5250
+ msgstr "Szukasz wtyczki Pro Ad Management?"
5251
+
5252
+ #: settings.php:5193
5253
+ msgid "To Optimally Monetize your WordPress website?"
5254
+ msgstr "Aby zoptymalizować zarabianie na swojej stronie WordPress?"
5255
+
5256
+ #: settings.php:5194
5257
+ #, php-format
5258
+ msgid "Different license types starting from %s"
5259
+ msgstr "Różne typy licencji zaczynające się od %s"
5260
+
5261
+ #. translators: %s HTML tags
5262
+ #: settings.php:5197
5263
+ #, php-format
5264
+ msgid "%s AdSense Integration %s"
5265
+ msgstr "%s Integracja AdSense %s"
5266
+
5267
+ #. translators: %s HTML tags
5268
+ #: settings.php:5198
5269
+ #, php-format
5270
+ msgid "Syntax highlighting %s editor %s"
5271
+ msgstr "Wyróżnianie %s edytora %s składni"
5272
+
5273
+ #. translators: %s HTML tags
5274
+ #: settings.php:5199
5275
+ #, php-format
5276
+ msgid "%s Code preview %s with visual CSS editor"
5277
+ msgstr "%s Podgląd kodu %s z wizualnym edytorem CSS"
5278
+
5279
+ #. translators: %s HTML tags
5280
+ #: settings.php:5200
5281
+ msgid "Simple user interface - all settings on a single page"
5282
+ msgstr "Prosty interfejs użytkownika - wszystkie ustawienia na jednej stronie"
5283
+
5284
+ #. translators: %s HTML tags
5285
+ #: settings.php:5201
5286
+ #, php-format
5287
+ msgid ""
5288
+ "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5289
+ "image / excerpt"
5290
+ msgstr ""
5291
+ "%s Automatyczne wstawianie %s przed lub po poście / zawartość / %s akapicie "
5292
+ "%s / obrazie / fragmencie"
5293
+
5294
+ #. translators: %s HTML tags
5295
+ #: settings.php:5202
5296
+ #, php-format
5297
+ msgid "%s Automatic insertion %s between posts on blog pages"
5298
+ msgstr "%s Automatyczne wstawianie %s między wpisami na stronach blogu"
5299
+
5300
+ #. translators: %s HTML tags
5301
+ #: settings.php:5203
5302
+ #, php-format
5303
+ msgid "%s Automatic insertion %s before, between and after comments"
5304
+ msgstr "%s Automatyczne wstawianie %s przed, między i po komentarzach"
5305
+
5306
+ #. translators: %s HTML tags
5307
+ #: settings.php:5204
5308
+ #, php-format
5309
+ msgid "%s Automatic insertion %s after %s or before %s tag"
5310
+ msgstr "%s Automatyczne wstawianie %s po %s lub przed tagiem %s"
5311
+
5312
+ #. translators: %s HTML tags
5313
+ #: settings.php:5205
5314
+ #, php-format
5315
+ msgid "Automatic insertion at %s custom hook positions %s"
5316
+ msgstr "Automatyczne wstawianie w %s niestandardowych pozycjach haka %s"
5317
+
5318
+ #. translators: %s HTML tags
5319
+ #: settings.php:5206
5320
+ #, php-format
5321
+ msgid ""
5322
+ "Insertion %s before or after any HTML element on the page %s (using CSS "
5323
+ "selectors)"
5324
+ msgstr ""
5325
+ "Wstawianie %s przed lub po jakimkolwiek elemencie HTML na stronie %s (przy "
5326
+ "użyciu selektorów CSS)"
5327
+
5328
+ #. translators: %s HTML tags
5329
+ #: settings.php:5207
5330
+ #, php-format
5331
+ msgid "%s Insertion exceptions %s for individual posts and pages"
5332
+ msgstr "%s Wyjątki wstawiania %s dla poszczególnych wpisów i stron"
5333
+
5334
+ #. translators: %s HTML tags
5335
+ #: settings.php:5208
5336
+ #, php-format
5337
+ msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5338
+ msgstr "%s Ręczne wstawianie: %s widżety, shortcodes, wywoływanie funkcji PHP"
5339
+
5340
+ #. translators: %s HTML tags
5341
+ #: settings.php:5209
5342
+ #, php-format
5343
+ msgid ""
5344
+ "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5345
+ "scrolls)"
5346
+ msgstr ""
5347
+ "%s Przyklejone reklamy %s z opcjonalnym przyciskiem zamknięcia (reklamy "
5348
+ "pozostają stałe, gdy strona się przewija)"
5349
+
5350
+ #. translators: %s HTML tags
5351
+ #: settings.php:5210
5352
+ #, php-format
5353
+ msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5354
+ msgstr ""
5355
+ "%s Przyklejone reklamy paska bocznego %s (przyklejenie do ekranu lub do "
5356
+ "treści)"
5357
+
5358
+ #. translators: %s HTML tags
5359
+ #: settings.php:5211
5360
+ #, php-format
5361
+ msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5362
+ msgstr ""
5363
+ "%s Przyklejone animacje reklam %s (zanikanie, slajd, obrót, przerzucanie, "
5364
+ "powiększanie)"
5365
+
5366
+ #. translators: %s HTML tags
5367
+ #: settings.php:5212
5368
+ #, php-format
5369
+ msgid ""
5370
+ "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5371
+ "visible)"
5372
+ msgstr ""
5373
+ "%s Wyzwalacz reklamy przyklejonej %s (przewijanie strony w %% lub px, "
5374
+ "element HTML staje się widoczny)"
5375
+
5376
+ #. translators: %s HTML tags
5377
+ #: settings.php:5213
5378
+ #, php-format
5379
+ msgid ""
5380
+ "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5381
+ msgstr ""
5382
+ "%s Przyklejone (stałe) widżety %s (pasek boczny nie przesuwa się, gdy strona "
5383
+ "jest przewijana)"
5384
+
5385
+ #. translators: %s HTML tags
5386
+ #: settings.php:5214
5387
+ #, php-format
5388
+ msgid "Block %s alignment and style %s customizations"
5389
+ msgstr "Dostosowanie %s wyrównania i stylu %s bloku"
5390
+
5391
+ #. translators: %s HTML tags
5392
+ #: settings.php:5215
5393
+ #, php-format
5394
+ msgid ""
5395
+ "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5396
+ "TOS)"
5397
+ msgstr ""
5398
+ "%s Clearance %s opcje pozwalające uniknąć wstawiania w pobliżu obrazów lub "
5399
+ "nagłówków (AdSense TOS)"
5400
+
5401
+ #. translators: %s HTML tags
5402
+ #: settings.php:5216
5403
+ #, php-format
5404
+ msgid ""
5405
+ "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5406
+ "feeds"
5407
+ msgstr ""
5408
+ "Opcje %s wyłączania wstawiania %s w połączeniach Ajax, stronie błędu 404 lub "
5409
+ "w źródłach danych RSS"
5410
+
5411
+ #. translators: %s HTML tags
5412
+ #: settings.php:5217
5413
+ #, php-format
5414
+ msgid "%s Ad rotation %s (works also with caching)"
5415
+ msgstr "%s Obrót reklamy(Ad rotation) %s (działa również z buforowania)"
5416
+
5417
+ #. translators: %s HTML tags
5418
+ #: settings.php:5218
5419
+ #, php-format
5420
+ msgid "Create, edit and check %s ads.txt %s file"
5421
+ msgstr "Tworzenie, edytowanie i sprawdzanie pliku %s ads.txt %s"
5422
+
5423
+ #. translators: %s HTML tags
5424
+ #: settings.php:5219
5425
+ #, php-format
5426
+ msgid ""
5427
+ "Ad impression and click %s tracking %s (works also with Javascript ads like "
5428
+ "AdSense)"
5429
+ msgstr ""
5430
+ "Wyświetlenia reklamy i kliknięcia %s śledzenie %s (działa również z "
5431
+ "reklamami JavaScript, takimi jak AdSense)"
5432
+
5433
+ #. translators: %s HTML tags
5434
+ #: settings.php:5220
5435
+ #, php-format
5436
+ msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5437
+ msgstr ""
5438
+ "Wewnętrzne lub zewnętrzne %s śledzenie %s (za pośrednictwem Google Analytics "
5439
+ "lub Matomo)"
5440
+
5441
+ #. translators: %s HTML tags
5442
+ #: settings.php:5221
5443
+ #, php-format
5444
+ msgid "%s Public web reports %s for clients, export to PDF"
5445
+ msgstr ""
5446
+ "%s Publiczne raporty sieci Web %s dla klientów, eksportowanie do pliku PDF"
5447
+
5448
+ #. translators: %s HTML tags
5449
+ #: settings.php:5222
5450
+ #, php-format
5451
+ msgid "Support for %s A/B testing %s"
5452
+ msgstr "Wsparcie dla %s testowanie A/B %s"
5453
+
5454
+ #. translators: %s HTML tags
5455
+ #: settings.php:5223
5456
+ #, php-format
5457
+ msgid "Frequency capping - %s limit impressions or clicks %s"
5458
+ msgstr ""
5459
+ "Ograniczenie częstotliwości - %s ogranicz wyświetlenia lub kliknięcia %s"
5460
+
5461
+ #. translators: %s HTML tags
5462
+ #: settings.php:5224
5463
+ #, php-format
5464
+ msgid "Click fraud %s protection %s"
5465
+ msgstr "%s Ochrona %s dotycząca oszustw kliknięć"
5466
+
5467
+ #. translators: %s HTML tags
5468
+ #: settings.php:5225
5469
+ #, php-format
5470
+ msgid "Support for %s lazy loading %s"
5471
+ msgstr "Wsparcie dla %s leniwego ładowania %s"
5472
+
5473
+ #. translators: %s HTML tags
5474
+ #: settings.php:5226
5475
+ #, php-format
5476
+ msgid "Support for ads on %s AMP pages %s"
5477
+ msgstr "Wsparcie dla reklam na stronach %s AMP %s"
5478
+
5479
+ #. translators: %s HTML tags
5480
+ #: settings.php:5227
5481
+ #, php-format
5482
+ msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5483
+ msgstr "Wsparcie dla reklam %s Amazon Native Shopping Ads %s (responsywne)"
5484
+
5485
+ #. translators: %s HTML tags
5486
+ #: settings.php:5228
5487
+ msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5488
+ msgstr ""
5489
+ "Niestandardowa nazwa klasy CSS dla wrapping div, aby uniknąć blokowania "
5490
+ "reklam"
5491
+
5492
+ #. translators: %s HTML tags
5493
+ #: settings.php:5230
5494
+ #, php-format
5495
+ msgid "%s Banner %s code generator"
5496
+ msgstr "Generator kodu %s Banner-u %s"
5497
+
5498
+ #. translators: %s HTML tags
5499
+ #: settings.php:5231
5500
+ #, php-format
5501
+ msgid "Support for %s header and footer %s code"
5502
+ msgstr "Wsparcie kodu dla %s nagłówka i stopki %s"
5503
+
5504
+ #. translators: %s HTML tags
5505
+ #: settings.php:5232
5506
+ msgid "Support for Google Analytics, Matomo or any other web analytics code"
5507
+ msgstr ""
5508
+ "Wsparcie dla Google Analytics, Matomo lub dowolnego innego kodu analizy "
5509
+ "internetowej"
5510
+
5511
+ #. translators: %s HTML tags
5512
+ #: settings.php:5233
5513
+ #, php-format
5514
+ msgid "Desktop, tablet and phone server-side %s device detection %s"
5515
+ msgstr ""
5516
+ "Komputer, tablet i telefon po stronie serwera %s wykrywanie urządzeń %s"
5517
+
5518
+ #. translators: %s HTML tags
5519
+ #: settings.php:5234
5520
+ #, php-format
5521
+ msgid "Client-side %s mobile device detection %s (works with caching)"
5522
+ msgstr ""
5523
+ "Po stronie Klienta %s wykrywanie urządzeń przenośnych %s (działa z "
5524
+ "buforowaniem(caching))"
5525
+
5526
+ #. translators: %s HTML tags
5527
+ #: settings.php:5235
5528
+ #, php-format
5529
+ msgid ""
5530
+ "%s Ad blocking detection %s - popup message, ad replacement, content "
5531
+ "protection"
5532
+ msgstr ""
5533
+ "%s Wykrywanie blokowania reklam %s - wiadomość popup, reklama zastępcza, "
5534
+ "ochrona treści"
5535
+
5536
+ #. translators: %s HTML tags
5537
+ #: settings.php:5236
5538
+ #, php-format
5539
+ msgid "%s Ad blocking statistics %s"
5540
+ msgstr "%s Statystyki blokowania reklam %s"
5541
+
5542
+ #. translators: %s HTML tags
5543
+ #: settings.php:5237
5544
+ #, php-format
5545
+ msgid ""
5546
+ "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5547
+ "referrers, operating systems, browsers"
5548
+ msgstr ""
5549
+ "%s Black/White-list %s kategorie, tagi, taksonomie, użytkownicy, "
5550
+ "identyfikatory wpisów, adresy URL, Referenci, systemy operacyjne, "
5551
+ "przeglądarki"
5552
+
5553
+ #. translators: %s HTML tags
5554
+ #: settings.php:5238
5555
+ #, php-format
5556
+ msgid ""
5557
+ "%s Black/White-list %s IP addresses or countries (works also with caching)"
5558
+ msgstr ""
5559
+ "%s Czarna/Biała lista %s adresów IP lub krajów (działa również z "
5560
+ "buforowaniem(caching))"
5561
+
5562
+ #. translators: %s HTML tags
5563
+ #: settings.php:5239
5564
+ #, php-format
5565
+ msgid "%s Multisite options %s to limit settings on the sites"
5566
+ msgstr "%s Opcje Multisite %s w celu ograniczenia ustawień na stronach"
5567
+
5568
+ #. translators: %s HTML tags
5569
+ #: settings.php:5240
5570
+ #, php-format
5571
+ msgid "%s Import/Export %s block or plugin settings"
5572
+ msgstr "%s Import/Export %s ustawień bloku lub ustawień wtyczki"
5573
+
5574
+ #. translators: %s HTML tags
5575
+ #: settings.php:5241
5576
+ #, php-format
5577
+ msgid "%s Insertion scheduling %s with fallback option"
5578
+ msgstr "%s Planowanie wstawiania %s z opcją awaryjną"
5579
+
5580
+ #. translators: %s HTML tags
5581
+ #: settings.php:5242
5582
+ #, php-format
5583
+ msgid "Country-level %s GEO targeting %s (works also with caching)"
5584
+ msgstr ""
5585
+ "Poziom krajowy %s ukierunkowanie GEO %s (działa również z "
5586
+ "buforowaniem(caching))"
5587
+
5588
+ #. translators: %s HTML tags
5589
+ #: settings.php:5243
5590
+ #, php-format
5591
+ msgid "Simple troubleshooting with many %s debugging functions %s"
5592
+ msgstr "Proste rozwiązywanie problemów z wieloma %s funkcjami debugowania %s"
5593
+
5594
+ #. translators: %s HTML tags
5595
+ #: settings.php:5244
5596
+ #, php-format
5597
+ msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5598
+ msgstr ""
5599
+ "%s Wizualizacja %s wstawionych bloków lub reklam ułatwiające umiejscowienie"
5600
+
5601
+ #. translators: %s HTML tags
5602
+ #: settings.php:5245
5603
+ #, php-format
5604
+ msgid "%s Visualization %s of available positions for automatic ad insertion"
5605
+ msgstr ""
5606
+ "%s Wizualizacja %s dostępnych pozycji do automatycznego wstawiania reklam"
5607
+
5608
+ #. translators: %s HTML tags
5609
+ #: settings.php:5246
5610
+ #, php-format
5611
+ msgid ""
5612
+ "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5613
+ msgstr ""
5614
+ "%s Wizualizacja %s tagów HTML ułatwia umieszczenie reklam między akapitami"
5615
+
5616
+ #. translators: %s HTML tags
5617
+ #: settings.php:5247
5618
+ #, php-format
5619
+ msgid "%s Clipboard support %s to easily copy blocks or settings"
5620
+ msgstr "%s Obsługa schowka %s do łatwego kopiowania bloków lub ustawień"
5621
+
5622
+ #. translators: %s HTML tags
5623
+ #: settings.php:5248
5624
+ msgid "No ads on the settings page"
5625
+ msgstr "Brak reklam na stronie ustawień"
5626
+
5627
+ #. translators: %s HTML tags
5628
+ #: settings.php:5249
5629
+ msgid "Premium support"
5630
+ msgstr "Wsparcie premium"
5631
+
5632
+ #. translators: %s HTML tags
5633
+ #: settings.php:5252
5634
+ #, php-format
5635
+ msgid ""
5636
+ "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5637
+ "website with many advertising features to automatically insert adverts on "
5638
+ "posts and pages. With Ad Inserter Pro you also get <strong>one year of free "
5639
+ "updates and support via email</strong>. If you find Ad Inserter useful and "
5640
+ "need ad statistics for impressions and clicks, A/B testing, sticky ads, "
5641
+ "slider ads, pop-up ads, geotargeting or geolocation to serve country-"
5642
+ "specific ads, to protect content or to serve different ads for users using "
5643
+ "ad blockers, multisite options to limit settings for ads, to block some IP "
5644
+ "addresses, to schedule ads, then you can simply upgrade to %s Ad Inserter "
5645
+ "Pro %s (existing settings will be preserved)."
5646
+ msgstr ""
5647
+ "Ad Inserter Pro to kompletna wtyczka do zarządzania reklamami wszystko-w-"
5648
+ "jednym(all-in-one) dla witryny WordPress z wieloma funkcjami reklamowymi, "
5649
+ "aby automatycznie wstawiać reklamy na postach i stronach. Z Ad Inserter Pro "
5650
+ "otrzymujesz również <strong>rok bezpłatnych aktualizacji i wsparcia za "
5651
+ "pośrednictwem poczty elektronicznej.</strong> Jeśli uważasz, że Ad Inserter "
5652
+ "jest przydatny i potrzebujesz statystyk reklam dla wyświetleń i kliknięć, "
5653
+ "testów A /B, reklam samoprzylepnych, reklam slider, reklam wyskakujących, "
5654
+ "geotargetów lub geolokalizacji do wyświetlania reklam specyficznych dla "
5655
+ "kraju, ochrony treści lub wyświetlania różnych reklam dla użytkowników "
5656
+ "korzystających z blokerów reklam, opcji multisite w celu ograniczenia "
5657
+ "ustawień reklam, zablokowania niektórych adresów IP, zaplanowania reklam, a "
5658
+ "następnie możesz po prostu ulepszyć do %s Ad Inserter Pro %s (istniejące "
5659
+ "ustawienia zostaną zachowane)."
5660
+
5661
+ #. translators: %s HTML tags
5662
+ #: settings.php:5265
5663
+ #, php-format
5664
+ msgid "Looking for %s Pro Ad Management plugin? %s"
5665
+ msgstr "Szukasz wtyczki %s Pro Ad Management? %s"
5666
+
5667
+ #. translators: %s HTML tags
5668
+ #: settings.php:5270
5669
+ msgid "Ads between posts"
5670
+ msgstr "Reklamy między postami"
5671
+
5672
+ #. translators: %s HTML tags
5673
+ #: settings.php:5271
5674
+ msgid "Ads between comments"
5675
+ msgstr "Reklamy między komentarzami"
5676
+
5677
+ #. translators: %s HTML tags
5678
+ #: settings.php:5272
5679
+ msgid "Support via email"
5680
+ msgstr "Wsparcie za pośrednictwem poczty elektronicznej"
5681
+
5682
+ #. translators: %s HTML tags
5683
+ #: settings.php:5278
5684
+ #, php-format
5685
+ msgid "%s Sticky positions %s"
5686
+ msgstr "%s Pozycje przyklejone %s"
5687
+
5688
+ #. translators: %s HTML tags
5689
+ #: settings.php:5279
5690
+ #, php-format
5691
+ msgid "%s Limit insertions %s"
5692
+ msgstr "%s Limit wstawień %s"
5693
+
5694
+ #. translators: %s HTML tags
5695
+ #: settings.php:5280
5696
+ #, php-format
5697
+ msgid "%s Clearance %s options"
5698
+ msgstr "Opcje %s odprawy %s"
5699
+
5700
+ #. translators: %s HTML tags
5701
+ #: settings.php:5286
5702
+ msgid "Ad rotation"
5703
+ msgstr "Rotacja reklam"
5704
+
5705
+ #. translators: %s HTML tags
5706
+ #: settings.php:5287
5707
+ #, php-format
5708
+ msgid "%s A/B testing %s"
5709
+ msgstr "%s Testowanie A/B %s"
5710
+
5711
+ #. translators: %s HTML tags
5712
+ #: settings.php:5288
5713
+ #, php-format
5714
+ msgid "%s Ad tracking %s"
5715
+ msgstr "%s Śledzenie reklam %s"
5716
+
5717
+ #. translators: %s HTML tags
5718
+ #: settings.php:5294
5719
+ #, php-format
5720
+ msgid "Support for %s AMP pages %s"
5721
+ msgstr "Wsparcie stron %s AMP %s"
5722
+
5723
+ #. translators: %s HTML tags
5724
+ #: settings.php:5295
5725
+ #, php-format
5726
+ msgid "%s Ad blocking detection %s"
5727
+ msgstr "%s Wykrywanie blokowania reklam %s"
5728
+
5729
+ #. translators: %s HTML tags
5730
+ #: settings.php:5296
5731
+ #, php-format
5732
+ msgid "%s Mobile device detection %s"
5733
+ msgstr "%s Wykrywanie urządzeń przenośnych %s"
5734
+
5735
+ #. translators: %s HTML tags
5736
+ #: settings.php:5303
5737
+ msgid "64 code blocks"
5738
+ msgstr "64 bloki kodowe"
5739
+
5740
+ #. translators: %s HTML tags
5741
+ #: settings.php:5304
5742
+ #, php-format
5743
+ msgid "%s GEO targeting %s"
5744
+ msgstr "%s Kierowanie geograficzne %s"
5745
+
5746
+ #. translators: %s HTML tags
5747
+ #: settings.php:5305
5748
+ #, php-format
5749
+ msgid "%s Scheduling %s"
5750
+ msgstr "%s Planowanie %s"
5751
+
5752
+ #: strings.php:4
5753
+ msgid "Advertisements"
5754
+ msgstr "Ogłoszenia"
5755
+
5756
+ #: strings.php:5
5757
+ msgid ""
5758
+ "<p><strong>Blocked because of Ad Blocker</strong></p>\n"
5759
+ "<p>It seems that you are using some ad blocking software which is preventing "
5760
+ "the page from fully loading. Please whitelist this website or disable ad "
5761
+ "blocking software.</p>"
5762
+ msgstr ""
5763
+ "<p><strong>Zablokowane z powodu blokowania reklam</strong></p>\n"
5764
+ "<p>Wygląda na to, że używasz jakiegoś oprogramowania blokującego reklamy, "
5765
+ "które uniemożliwia pełne załadowanie strony. Prosimy o dodanie tej strony do "
5766
+ "białej listy lub wyłączenie oprogramowania blokującego reklamy.</p>"
5767
+
5768
+ #: strings.php:7
5769
+ msgctxt "Viewport name"
5770
+ msgid "Desktop"
5771
+ msgstr "Monitor"
5772
+
5773
+ #: strings.php:8
5774
+ msgctxt "Viewport name"
5775
+ msgid "Tablet"
5776
+ msgstr "Tablet"
5777
+
5778
+ #: strings.php:9
5779
+ msgctxt "Viewport name"
5780
+ msgid "Phone"
5781
+ msgstr "Telefon"
5782
+
5783
+ #: strings.php:11
5784
+ msgctxt "ad-inserter"
5785
+ msgid "Group"
5786
+ msgstr "Grupa"
5787
+
5788
+ #: strings.php:13
5789
+ msgid "Insert"
5790
+ msgstr "Wstaw"
5791
+
5792
+ #: strings.php:19
5793
+ msgid "Before content"
5794
+ msgstr "Przed zawartością"
5795
+
5796
+ #: strings.php:20
5797
+ msgid "After content"
5798
+ msgstr "Po zawartości"
5799
+
5800
+ #: strings.php:21
5801
+ msgid "Before paragraph"
5802
+ msgstr "Przed akapitem"
5803
+
5804
+ #: strings.php:22
5805
+ msgid "After paragraph"
5806
+ msgstr "Po akapicie"
5807
+
5808
+ #: strings.php:23
5809
+ msgid "Before excerpt"
5810
+ msgstr "Przed fragmentem"
5811
+
5812
+ #: strings.php:24
5813
+ msgid "After excerpt"
5814
+ msgstr "Po fragmencie"
5815
+
5816
+ #: strings.php:26
5817
+ msgid "Before comments"
5818
+ msgstr "Przed komentarzami"
5819
+
5820
+ #: strings.php:27
5821
+ msgid "Between comments"
5822
+ msgstr "Między komentarzami"
5823
+
5824
+ #: strings.php:28
5825
+ msgid "After comments"
5826
+ msgstr "Po komentarzach"
5827
+
5828
+ #: strings.php:29
5829
+ msgid "Above header"
5830
+ msgstr "Powyżej nagłówka"
5831
+
5832
+ #: strings.php:31
5833
+ msgid "Before HTML element"
5834
+ msgstr "Przed elementem HTML"
5835
+
5836
+ #: strings.php:32
5837
+ msgid "After HTML element"
5838
+ msgstr "Po elemencie HTML"
5839
+
5840
+ #: strings.php:33
5841
+ msgid "Inside HTML element"
5842
+ msgstr "Wewnątrz elementu HTML"
5843
+
5844
+ #: strings.php:34
5845
+ msgid "Before image"
5846
+ msgstr "Zdjęcie przed"
5847
+
5848
+ #: strings.php:35
5849
+ msgid "After image"
5850
+ msgstr "Po obrazie"
5851
+
5852
+ #: strings.php:37
5853
+ msgid "do not insert"
5854
+ msgstr "nie wstawiaj"
5855
+
5856
+ #: strings.php:38
5857
+ msgid "try to shift position"
5858
+ msgstr "spróbuj zmienić pozycję"
5859
+
5860
+ #: strings.php:40
5861
+ msgid "above"
5862
+ msgstr "powyżej"
5863
+
5864
+ #: strings.php:41
5865
+ msgid "below"
5866
+ msgstr "poniżej"
5867
+
5868
+ #: strings.php:42
5869
+ msgid "above and then below"
5870
+ msgstr "powyżej, a następnie poniżej"
5871
+
5872
+ #: strings.php:43
5873
+ msgid "below and then above"
5874
+ msgstr "poniżej, a następnie powyżej"
5875
+
5876
+ #: strings.php:45
5877
+ msgid "from top"
5878
+ msgstr "od góry"
5879
+
5880
+ #: strings.php:46
5881
+ msgid "from bottom"
5882
+ msgstr "od dołu"
5883
+
5884
+ #: strings.php:48
5885
+ msgctxt "paragraphs"
5886
+ msgid "contain"
5887
+ msgstr "zawiera"
5888
+
5889
+ #: strings.php:49
5890
+ msgctxt "paragraphs"
5891
+ msgid "do not contain"
5892
+ msgstr "nie zawierają"
5893
+
5894
+ #: strings.php:51
5895
+ msgid "Do not count"
5896
+ msgstr "Nie licz"
5897
+
5898
+ #: strings.php:52
5899
+ msgid "Count only"
5900
+ msgstr "Tylko liczy"
5901
+
5902
+ #: strings.php:54
5903
+ msgctxt "insert for"
5904
+ msgid "all users"
5905
+ msgstr "wszyscy użytkownicy"
5906
+
5907
+ #: strings.php:55
5908
+ msgctxt "insert for"
5909
+ msgid "logged in users"
5910
+ msgstr "zalogowanych użytkowników"
5911
+
5912
+ #: strings.php:56
5913
+ msgctxt "insert for"
5914
+ msgid "not logged in users"
5915
+ msgstr "nie zalogowanych użytkowników"
5916
+
5917
+ #: strings.php:57
5918
+ msgctxt "insert for"
5919
+ msgid "administrators"
5920
+ msgstr "administratorów"
5921
+
5922
+ #: strings.php:59
5923
+ msgid "Black list"
5924
+ msgstr "Czarna lista"
5925
+
5926
+ #: strings.php:60
5927
+ msgid "White list"
5928
+ msgstr "Biała lista"
5929
+
5930
+ #: strings.php:62
5931
+ msgctxt "alignment"
5932
+ msgid "Default"
5933
+ msgstr "Domyślny"
5934
+
5935
+ #: strings.php:63
5936
+ msgctxt "alignment"
5937
+ msgid "Left"
5938
+ msgstr "Lewa"
5939
+
5940
+ #: strings.php:64
5941
+ msgctxt "alignment"
5942
+ msgid "Right"
5943
+ msgstr "Prawo"
5944
+
5945
+ #: strings.php:65
5946
+ msgctxt "alignment"
5947
+ msgid "Center"
5948
+ msgstr "Środek"
5949
+
5950
+ #: strings.php:66
5951
+ msgctxt "alignment"
5952
+ msgid "Float left"
5953
+ msgstr "Unoszą się w lewo"
5954
+
5955
+ #: strings.php:67
5956
+ msgctxt "alignment"
5957
+ msgid "Float right"
5958
+ msgstr "Unoszą się w prawo"
5959
+
5960
+ #: strings.php:68
5961
+ msgctxt "alignment"
5962
+ msgid "No wrapping"
5963
+ msgstr "No wrapping"
5964
+
5965
+ #: strings.php:69
5966
+ msgid "Custom CSS"
5967
+ msgstr "Własny CSS"
5968
+
5969
+ #: strings.php:70
5970
+ msgid "Sticky left"
5971
+ msgstr "Lepki do lewej"
5972
+
5973
+ #: strings.php:71
5974
+ msgid "Sticky right"
5975
+ msgstr "Lepki do prawej"
5976
+
5977
+ #: strings.php:72
5978
+ msgid "Sticky top"
5979
+ msgstr "Lepki do góry"
5980
+
5981
+ #: strings.php:73
5982
+ msgid "Sticky bottom"
5983
+ msgstr "Lepki do dołu"
5984
+
5985
+ #: strings.php:74
5986
+ msgctxt "alignment"
5987
+ msgid "Sticky"
5988
+ msgstr "Przyklejony"
5989
+
5990
+ #: strings.php:76
5991
+ msgctxt "using"
5992
+ msgid "auto counter"
5993
+ msgstr "licznik automatyczny"
5994
+
5995
+ #: strings.php:77
5996
+ msgctxt "using"
5997
+ msgid "PHP function calls counter"
5998
+ msgstr "Licznik wywołań funkcji PHP"
5999
+
6000
+ #: strings.php:78
6001
+ msgctxt "using"
6002
+ msgid "content processing counter"
6003
+ msgstr "licznik przetwarzania treści"
6004
+
6005
+ #: strings.php:79
6006
+ msgctxt "using"
6007
+ msgid "excerpt processing counter"
6008
+ msgstr "licznik przetwarzania fragmentów"
6009
+
6010
+ #: strings.php:80
6011
+ msgctxt "using"
6012
+ msgid "before post processing counter"
6013
+ msgstr "przed licznikiem po przetworzeniu"
6014
+
6015
+ #: strings.php:81
6016
+ msgctxt "using"
6017
+ msgid "after post processing counter"
6018
+ msgstr "po liczniku przetwarzania końcowego"
6019
+
6020
+ #: strings.php:82
6021
+ msgctxt "using"
6022
+ msgid "widget drawing counter"
6023
+ msgstr "licznik rysunku widżetu"
6024
+
6025
+ #: strings.php:83
6026
+ msgctxt "using"
6027
+ msgid "subpages counter"
6028
+ msgstr "licznik podstrony"
6029
+
6030
+ #: strings.php:84
6031
+ msgctxt "using"
6032
+ msgid "posts counter"
6033
+ msgstr "licznik słupków"
6034
+
6035
+ #: strings.php:85
6036
+ msgctxt "using"
6037
+ msgid "paragraphs counter"
6038
+ msgstr "licznik akapitów"
6039
+
6040
+ #: strings.php:86
6041
+ msgctxt "using"
6042
+ msgid "comments counter"
6043
+ msgstr "licznik komentarzy"
6044
+
6045
+ #: strings.php:87
6046
+ msgctxt "using"
6047
+ msgid "images counter"
6048
+ msgstr "licznik obrazów"
6049
+
6050
+ #: strings.php:90
6051
+ msgctxt "posts"
6052
+ msgid "Individually disabled"
6053
+ msgstr "Indywidualnie wyłączone"
6054
+
6055
+ #: strings.php:91
6056
+ msgctxt "posts"
6057
+ msgid "Individually enabled"
6058
+ msgstr "Indywidualnie włączona"
6059
+
6060
+ #: strings.php:93
6061
+ msgctxt "static pages"
6062
+ msgid "Individually disabled"
6063
+ msgstr "Indywidualnie wyłączone"
6064
+
6065
+ #: strings.php:94
6066
+ msgctxt "static pages"
6067
+ msgid "Individually enabled"
6068
+ msgstr "Indywidualnie włączone"
6069
+
6070
+ #: strings.php:96
6071
+ msgid "Server-side"
6072
+ msgstr "Po stronie serwera"
6073
+
6074
+ #: strings.php:97
6075
+ msgctxt "Insertion"
6076
+ msgid "Client-side"
6077
+ msgstr "Po stronie Klienta"
6078
+
6079
+ #: strings.php:98
6080
+ msgctxt "Dynamic blocks"
6081
+ msgid "Client-side show"
6082
+ msgstr "Pokaz po stronie Klienta"
6083
+
6084
+ #: strings.php:99
6085
+ msgctxt "Dynamic blocks"
6086
+ msgid "Client-side insert"
6087
+ msgstr "Wkładka po stronie klienta"
6088
+
6089
+ #: strings.php:100
6090
+ msgctxt "Insertion"
6091
+ msgid "Server-side using W3 Total Cache"
6092
+ msgstr "Po stronie serwera przy użyciu W3 Total Cache"
6093
+
6094
+ #: strings.php:106
6095
+ msgid "Replace element"
6096
+ msgstr "Zamień element"
6097
+
6098
+ #: strings.php:108
6099
+ msgid "desktop devices"
6100
+ msgstr "urządzenia desktop-owe"
6101
+
6102
+ #: strings.php:109
6103
+ msgid "mobile devices"
6104
+ msgstr "urządzenia mobilne"
6105
+
6106
+ #: strings.php:110
6107
+ msgid "tablet devices"
6108
+ msgstr "tablety"
6109
+
6110
+ #: strings.php:111
6111
+ msgid "phone devices"
6112
+ msgstr "urządzenia telefoniczne"
6113
+
6114
+ #: strings.php:112
6115
+ msgid "desktop and tablet devices"
6116
+ msgstr "urządzenia stacjonarne i tablety"
6117
+
6118
+ #: strings.php:113
6119
+ msgid "desktop and phone devices"
6120
+ msgstr "urządzenia stacjonarne i telefoniczne"
6121
+
6122
+ #: strings.php:115
6123
+ msgid "Stick to the left"
6124
+ msgstr "Trzymaj się lewej strony"
6125
+
6126
+ #: strings.php:116
6127
+ msgid "Stick to the content left"
6128
+ msgstr "Trzymaj się lewej zawartości"
6129
+
6130
+ #: strings.php:117
6131
+ msgid "Stick to the content right"
6132
+ msgstr "Trzymaj się prawej zawartości"
6133
+
6134
+ #: strings.php:118
6135
+ msgid "Stick to the right"
6136
+ msgstr "Trzymaj się prawej strony"
6137
+
6138
+ #: strings.php:120
6139
+ msgid "Stick to the top"
6140
+ msgstr "Trzymaj się góry"
6141
+
6142
+ #: strings.php:121
6143
+ msgid "Scroll with the content"
6144
+ msgstr "Przewiń z zawartością"
6145
+
6146
+ #: strings.php:122
6147
+ msgid "Stick to the bottom"
6148
+ msgstr "Przyklej się do dna"
6149
+
6150
+ #: strings.php:124
6151
+ msgid "Fade"
6152
+ msgstr "Zanikanie"
6153
+
6154
+ #: strings.php:125
6155
+ msgid "Slide"
6156
+ msgstr "Slajd"
6157
+
6158
+ #: strings.php:126
6159
+ msgid "Slide and Fade"
6160
+ msgstr "Slajd i zanikanie"
6161
+
6162
+ #: strings.php:127
6163
+ msgid "Flip"
6164
+ msgstr "Odwróć"
6165
+
6166
+ #: strings.php:128
6167
+ msgid "Zoom In"
6168
+ msgstr "Powiększ"
6169
+
6170
+ #: strings.php:129
6171
+ msgid "Zoom Out"
6172
+ msgstr "Pomniejsz"
6173
+
6174
+ #: strings.php:130
6175
+ msgid "Turn"
6176
+ msgstr "Włącz"
6177
+
6178
+ #: strings.php:132
6179
+ msgid "Page loaded"
6180
+ msgstr "Załadowana strona"
6181
+
6182
+ #: strings.php:133
6183
+ msgid "Page scrolled (%)"
6184
+ msgstr "Przewijana strona (%)"
6185
+
6186
+ #: strings.php:134
6187
+ msgid "Page scrolled (px)"
6188
+ msgstr "Przewijana strona (px)"
6189
+
6190
+ #: strings.php:135
6191
+ msgid "Element visible"
6192
+ msgstr "Widoczny element"
6193
+
6194
+ #: strings.php:137
6195
+ msgid "Insert immediately"
6196
+ msgstr "Wstaw natychmiast"
6197
+
6198
+ #: strings.php:138
6199
+ msgid "Delay insertion"
6200
+ msgstr "Opóźnienie wstawiania"
6201
+
6202
+ #: strings.php:139
6203
+ msgid "Insert between dates"
6204
+ msgstr "Wstawianie między datami"
6205
+
6206
+ #: strings.php:140
6207
+ msgid "Insert outside dates"
6208
+ msgstr "Wstawianie dat zewnętrznych"
6209
+
6210
+ #: strings.php:141
6211
+ msgid "Insert only"
6212
+ msgstr "Tylko wstawianie"
6213
+
6214
+ #: strings.php:142
6215
+ msgid "Insert for posts published between dates"
6216
+ msgstr "Wstawianie dla wpisów opublikowanych między datami"
6217
+
6218
+ #: strings.php:143
6219
+ msgid "Insert for posts published outside dates"
6220
+ msgstr "Wstawianie wpisów opublikowanych poza datami"
6221
+
6222
+ #: strings.php:145
6223
+ msgctxt "functions"
6224
+ msgid "Standard"
6225
+ msgstr "Standardowy"
6226
+
6227
+ #: strings.php:146
6228
+ msgctxt "detection"
6229
+ msgid "Standard"
6230
+ msgstr "Standardowy"
6231
+
6232
+ #: strings.php:147
6233
+ msgctxt "functions"
6234
+ msgid "Multibyte"
6235
+ msgstr "Wielobajtowych"
6236
+
6237
+ #: strings.php:149
6238
+ msgctxt "action"
6239
+ msgid "None"
6240
+ msgstr "Brak"
6241
+
6242
+ #: strings.php:150
6243
+ msgctxt "button"
6244
+ msgid "None"
6245
+ msgstr "Brak"
6246
+
6247
+ #: strings.php:151
6248
+ msgid "Popup Message"
6249
+ msgstr "Wyskakujące okienko"
6250
+
6251
+ #: strings.php:152
6252
+ msgid "Redirection"
6253
+ msgstr "Przekierowanie"
6254
+
6255
+ #: strings.php:154
6256
+ msgid "Do nothing"
6257
+ msgstr "Nic nie rób"
6258
+
6259
+ #: strings.php:156
6260
+ msgctxt "Action when ad blocking detected"
6261
+ msgid "Show"
6262
+ msgstr "Pokaż"
6263
+
6264
+ #: strings.php:157
6265
+ msgctxt "Action when ad blocking detected"
6266
+ msgid "Hide"
6267
+ msgstr "Ukryj"
6268
+
6269
+ #: strings.php:159
6270
+ msgctxt "tracking"
6271
+ msgid "Internal"
6272
+ msgstr "Wewnętrzna"
6273
+
6274
+ #: strings.php:160
6275
+ msgctxt "detection"
6276
+ msgid "Advanced"
6277
+ msgstr "Zaawansowane"
6278
+
6279
+ #: strings.php:163
6280
+ msgctxt "Manual loading"
6281
+ msgid "Auto"
6282
+ msgstr "Auto"
6283
+
6284
+ #: strings.php:164
6285
+ msgctxt "Manual loading"
6286
+ msgid "Always"
6287
+ msgstr "Zawsze"
6288
+
6289
+ #: strings.php:166
6290
+ msgid "Top right"
6291
+ msgstr "Prawy górny"
6292
+
6293
+ #: strings.php:167
6294
+ msgid "Top left"
6295
+ msgstr "Góra lewa"
6296
+
6297
+ #: strings.php:168
6298
+ msgid "Bottom right"
6299
+ msgstr "Prawy dolny"
6300
+
6301
+ #: strings.php:169
6302
+ msgid "Bottom left"
6303
+ msgstr "Na dole po lewej"
6304
+
6305
+ #: strings.php:171
6306
+ msgctxt "AdSense Ad Type"
6307
+ msgid "Standard"
6308
+ msgstr "Standardowy"
6309
+
6310
+ #: strings.php:172
6311
+ msgctxt "AdSense Ad Type"
6312
+ msgid "Link"
6313
+ msgstr "Link"
6314
+
6315
+ #: strings.php:173
6316
+ msgctxt "AdSense Ad Type"
6317
+ msgid "In-article"
6318
+ msgstr "W artykule"
6319
+
6320
+ #: strings.php:174
6321
+ msgctxt "AdSense Ad Type"
6322
+ msgid "In-feed"
6323
+ msgstr "In-feed"
6324
+
6325
+ #: strings.php:175
6326
+ msgctxt "AdSense Ad Type"
6327
+ msgid "Matched content"
6328
+ msgstr "Dopasowana zawartość"
6329
+
6330
+ #: strings.php:176
6331
+ msgctxt "AdSense Ad Type"
6332
+ msgid "Auto Ads"
6333
+ msgstr "Reklamy automatyczne"
6334
+
6335
+ #: strings.php:177
6336
+ msgctxt "AdSense Ad Type"
6337
+ msgid "AMP Only"
6338
+ msgstr "Tylko AMP"
6339
+
6340
+ #: strings.php:179
6341
+ msgctxt "AMP ad"
6342
+ msgid "Disabled"
6343
+ msgstr "Wyłączone"
6344
+
6345
+ #: strings.php:180
6346
+ msgid "Above the fold"
6347
+ msgstr "Powyżej zakładki"
6348
+
6349
+ #: strings.php:181
6350
+ msgid "Below the fold"
6351
+ msgstr "Ponieżej zakładki"
6352
+
6353
+ #: strings.php:182
6354
+ msgctxt "AMP ad"
6355
+ msgid "Sticky"
6356
+ msgstr "Przyklejony"
6357
+
6358
+ #: strings.php:184
6359
+ msgctxt "size"
6360
+ msgid "Fixed"
6361
+ msgstr "Stały"
6362
+
6363
+ #: strings.php:185
6364
+ msgctxt "size"
6365
+ msgid "Responsive"
6366
+ msgstr "Elastyczny (dopasowanie do ekranów)"
6367
+
6368
+ #: strings.php:186
6369
+ msgctxt "size"
6370
+ msgid "Fixed by viewport"
6371
+ msgstr "Naprawiona przez porty odwiedzin"
6372
+
6373
+ #: strings.php:190
6374
+ msgid "Impressions and clicks"
6375
+ msgstr "Wyświetlenia i kliknięcia"
6376
+
6377
+ #: strings.php:191
6378
+ msgid "Advanced WordPress Ad Management Plugin"
6379
+ msgstr "Zaawansowana wtyczka do zarządzania reklamami WordPress"
6380
+
6381
+ #: strings.php:197
6382
+ msgctxt "Button"
6383
+ msgid "Hide"
6384
+ msgstr "Ukryj"
6385
+
6386
+ #: strings.php:198
6387
+ msgctxt "Button"
6388
+ msgid "Show"
6389
+ msgstr "Pokaż"
6390
+
6391
+ #: strings.php:199
6392
+ msgid "Insertion expired"
6393
+ msgstr "Wstawienie wygasło"
6394
+
6395
+ #: strings.php:200
6396
+ msgid "Duration"
6397
+ msgstr "Czas trwania"
6398
+
6399
+ #: strings.php:201
6400
+ msgid "Invalid end date - must be after start date"
6401
+ msgstr "Nieprawidłowa data zakończenia - musi być po dacie rozpoczęcia"
6402
+
6403
+ #: strings.php:202
6404
+ msgid "Invalid start date - only data for 1 year back is available"
6405
+ msgstr ""
6406
+ "Nieprawidłowa data rozpoczęcia — dostępne są tylko dane za 1 rok wstecz"
6407
+
6408
+ #: strings.php:203
6409
+ msgid "Invalid date range - only data for 1 year can be displayed"
6410
+ msgstr "Nieprawidłowy zakres dat — można wyświetlić tylko dane na 1 rok"
6411
+
6412
+ #: strings.php:211
6413
+ msgid "Delete"
6414
+ msgstr "Usuń"
6415
+
6416
+ #: strings.php:212
6417
+ msgid "Switch"
6418
+ msgstr "Przełącz"
6419
+
6420
+ #: strings.php:214
6421
+ msgid "Delete all statistics data?"
6422
+ msgstr "Czy usunąć wszystkie dane statystyczne?"
6423
+
6424
+ #. translators: %s: dates
6425
+ #: strings.php:216
6426
+ #, php-format
6427
+ msgid "Delete statistics data between %s and %s?"
6428
+ msgstr "Czy usunąć dane statystyczne między %s a %s?"
6429
+
6430
+ #: strings.php:217
6431
+ msgid "Cancel block order rearrangement"
6432
+ msgstr "Anulowanie ponownego rozmieszczenia zamówień bloku"
6433
+
6434
+ #: strings.php:219
6435
+ msgid "downloading..."
6436
+ msgstr "pobieranie..."
6437
+
6438
+ #: strings.php:220
6439
+ msgid "download error"
6440
+ msgstr "błąd pobierania"
6441
+
6442
+ #: strings.php:221
6443
+ msgid "update error"
6444
+ msgstr "błąd aktualizacji"
6445
+
6446
+ #: strings.php:222
6447
+ msgid "Updating..."
6448
+ msgstr "Trwa aktualizowanie..."
6449
+
6450
+ #: strings.php:224
6451
+ msgid "ERROR"
6452
+ msgstr "BŁĄD"
6453
+
6454
+ #: strings.php:225
6455
+ msgid "Error reloading settings"
6456
+ msgstr "Błąd podczas przeładowywania ustawień"
6457
+
6458
+ #: strings.php:227
6459
+ msgctxt "Search field placeholder"
6460
+ msgid "Search..."
6461
+ msgstr "Szukaj..."
6462
+
6463
+ #: strings.php:228
6464
+ msgctxt "Search field placeholder"
6465
+ msgid "Filter..."
6466
+ msgstr "Filtr..."
6467
+
6468
+ #: strings.php:229
6469
+ msgid "Use filter to limit names in the list"
6470
+ msgstr "Ograniczanie nazw na liście za pomocą filtru"
6471
+
6472
+ #: strings.php:230
6473
+ msgctxt "Button"
6474
+ msgid "Filter"
6475
+ msgstr "Filtr"
6476
+
6477
+ #: strings.php:232
6478
+ msgid "Position not available"
6479
+ msgstr "Pozycja niedostępna"
6480
+
6481
+ #: strings.php:233
6482
+ msgid ""
6483
+ "Theme check | Selected position for automatic insertion might not be not "
6484
+ "available on this page type"
6485
+ msgstr ""
6486
+ "Sprawdzanie motywu | Wybrana pozycja automatycznego wstawiania może być "
6487
+ "niedostępna dla tego typu strony"
6488
+
6489
+ #: strings.php:234
6490
+ msgid "Position available"
6491
+ msgstr "Dostępna pozycja"
6492
+
6493
+ #: strings.php:236
6494
+ msgid "Select or upload banner image"
6495
+ msgstr "Wybierz lub prześlij zdjęcie banneru"
6496
+
6497
+ #: strings.php:237
6498
+ msgid "Use this image"
6499
+ msgstr "Użyj tego obrazka"
6500
+
6501
+ #: strings.php:238
6502
+ msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6503
+ msgstr ""
6504
+ "Przełączenie na fizyczny plik ads.txt spowoduje usunięcie pliku virtual ads."
6505
+ "txt."
6506
+
6507
+ #: strings.php:240
6508
+ msgctxt "Monday"
6509
+ msgid "MO"
6510
+ msgstr "PON"
6511
+
6512
+ #: strings.php:241
6513
+ msgctxt "Tuesday"
6514
+ msgid "TU"
6515
+ msgstr "WTO"
6516
+
6517
+ #: strings.php:242
6518
+ msgctxt "Wednesday"
6519
+ msgid "WE"
6520
+ msgstr "ŚR"
6521
+
6522
+ #: strings.php:243
6523
+ msgctxt "Thursday"
6524
+ msgid "TH"
6525
+ msgstr "CZW"
6526
+
6527
+ #: strings.php:244
6528
+ msgctxt "Friday"
6529
+ msgid "FR"
6530
+ msgstr "PIĄ"
6531
+
6532
+ #: strings.php:245
6533
+ msgctxt "Saturday"
6534
+ msgid "SA"
6535
+ msgstr "SOB"
6536
+
6537
+ #: strings.php:246
6538
+ msgctxt "Sunday"
6539
+ msgid "SU"
6540
+ msgstr "NIE"
6541
+
6542
+ #: strings.php:262
6543
+ msgctxt "Scheduling"
6544
+ msgid "FALLBACK"
6545
+ msgstr "AWARIA"
6546
+
6547
+ #: strings.php:263
6548
+ msgid "Automatically placed by AdSense Auto ads code"
6549
+ msgstr "Automatycznie umieszczany przez AdSense Auto ads code"
6550
+
6551
+ #: strings.php:268
6552
+ msgid "Add"
6553
+ msgstr "Dodaj"
6554
+
6555
+ #: strings.php:269
6556
+ msgctxt "Element"
6557
+ msgid "Parent"
6558
+ msgstr "Nadrzędna"
6559
+
6560
+ #: strings.php:270
6561
+ msgid "Cancel element selection"
6562
+ msgstr "Anulowanie wyboru elementu"
6563
+
6564
+ #: strings.php:271
6565
+ msgid "Select parent element"
6566
+ msgstr "Zaznaczanie elementu nadrzędnego"
6567
+
6568
+ #: strings.php:272
6569
+ msgid "CSS selector"
6570
+ msgstr "Selektor arkusza CSS"
6571
+
6572
+ #: strings.php:273
6573
+ msgid "Use current selector"
6574
+ msgstr "Korzystanie z bieżącego selektora"
6575
+
6576
+ #: strings.php:274
6577
+ msgid "ELEMENT"
6578
+ msgstr "ELEMENT"
6579
+
6580
+ #: strings.php:275
6581
+ msgid "PATH"
6582
+ msgstr "Ścieżka"
6583
+
6584
+ #: strings.php:276
6585
+ msgid "SELECTOR"
6586
+ msgstr "Selektor"
6587
+
6588
+ #. Plugin Name of the plugin/theme
6589
+ #. Author of the plugin/theme
6590
+ msgid "Ad Inserter Pro"
6591
+ msgstr "Ad Inserter Pro"
6592
+
6593
+ #. Plugin URI of the plugin/theme
6594
+ #. Author URI of the plugin/theme
6595
+ msgid "https://adinserter.pro/"
6596
+ msgstr "https://adinserter.pro/"
6597
+
6598
+ #. Description of the plugin/theme
6599
+ msgid ""
6600
+ "Ad management with many advanced advertising features to insert ads at "
6601
+ "optimal positions"
6602
+ msgstr ""
6603
+ "Zarządzanie reklamami z wieloma zaawansowanymi funkcjami reklamowymi do "
6604
+ "wstawiania reklam na optymalnych pozycjach"
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-03-02 16:04:31+00:00\n"
8
- "PO-Revision-Date: 2020-03-02 17:07+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,134 +16,134 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:377
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:393
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:400
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:485
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:492
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:501
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:508
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:519
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:526
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
- #: ad-inserter.php:1150
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1155
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
- #: ad-inserter.php:1160 strings.php:103
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
- #: ad-inserter.php:1165 strings.php:104
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
- #: ad-inserter.php:1170 strings.php:105
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1175 strings.php:155
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1222
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1226
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1521
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1856 ad-inserter.php:2943
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2362
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2362
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2363
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2364
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2365
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2366
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2367
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
- #: ad-inserter.php:2638
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
- #: ad-inserter.php:2641
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2645
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2650
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
- #: ad-inserter.php:2653
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
- #: ad-inserter.php:2666
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
@@ -176,7 +176,7 @@ msgstr ""
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
- #: ad-inserter.php:2668
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2674
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
- #: ad-inserter.php:2691 ad-inserter.php:2726
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
- #: ad-inserter.php:2698
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:2708
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:2740
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,78 +213,78 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:2740
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:2835
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:2864 ad-inserter.php:9942 class.php:2116
227
- #: includes/preview.php:2002 includes/preview.php:2045
228
- #: includes/preview.php:2082 settings.php:4252 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:2865 settings.php:4253 settings.php:4338
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
- #: ad-inserter.php:2868 settings.php:1173
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
- #: ad-inserter.php:2871
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
- #: ad-inserter.php:2872
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
- #: ad-inserter.php:2884
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
- #: ad-inserter.php:2887
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
- #: ad-inserter.php:2904 ad-inserter.php:2916 strings.php:161
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
- #: ad-inserter.php:2904 ad-inserter.php:2916
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
- #: includes/functions.php:2562 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
- #: ad-inserter.php:2906
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
- #: ad-inserter.php:2908
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
- #: ad-inserter.php:2936
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
- #: ad-inserter.php:2941
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
@@ -292,11 +292,11 @@ msgstr ""
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
- #: ad-inserter.php:2944 settings.php:1151
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
- #: ad-inserter.php:2946
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
@@ -304,7 +304,7 @@ msgstr ""
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
- #: ad-inserter.php:2947
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
@@ -312,61 +312,61 @@ msgstr ""
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
- #: ad-inserter.php:2949
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
- #: ad-inserter.php:2951
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
- #: ad-inserter.php:2998
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
- #: ad-inserter.php:3001
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
- #: ad-inserter.php:3004
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
- #: ad-inserter.php:3007
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
- #: ad-inserter.php:3010
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
- #: ad-inserter.php:3013
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
- #: ad-inserter.php:3016
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
- #: ad-inserter.php:3019
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
- #: ad-inserter.php:3022
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
- #: ad-inserter.php:3039
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
- #: ad-inserter.php:3040
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
- #: ad-inserter.php:3069
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
@@ -374,11 +374,11 @@ msgstr ""
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
- #: ad-inserter.php:3204
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
- #: ad-inserter.php:3204
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
- #: ad-inserter.php:3220
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
- #: ad-inserter.php:3220
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
- #: ad-inserter.php:3220 ad-inserter.php:3453
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
@@ -403,39 +403,39 @@ msgstr[1] "znaka vstavljena"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
- #: ad-inserter.php:3453
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
- #: ad-inserter.php:3453
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
- #: ad-inserter.php:3459
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
- #: ad-inserter.php:3459
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
- #: ad-inserter.php:3459
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
- #: ad-inserter.php:5880
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
- #: ad-inserter.php:6546
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
- #: ad-inserter.php:6547
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -443,22 +443,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
- #: ad-inserter.php:6600
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
- #: ad-inserter.php:6602
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
- #: ad-inserter.php:6696
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
- #: ad-inserter.php:7067 ad-inserter.php:7069 ad-inserter.php:7092
461
- #: settings.php:2169
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
@@ -466,43 +466,43 @@ msgstr[1] "besedi"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
- #: ad-inserter.php:7106 ad-inserter.php:7227
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
- #: ad-inserter.php:7303
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
- #: ad-inserter.php:7423
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
- #: ad-inserter.php:7498
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
- #: ad-inserter.php:9328 ad-inserter.php:9380
486
  msgctxt "category name"
487
  msgid "Uncategorized"
488
  msgstr "Nekategorizirano"
489
 
490
- #: ad-inserter.php:9560
491
  msgid "requires WordPress 4.6 or newer"
492
  msgstr "potrebuje WordPress 4.6 ali novejši"
493
 
494
- #: ad-inserter.php:9560
495
  msgid "Please update!"
496
  msgstr "Prosimo, posodobite!"
497
 
498
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
499
  #. name with HTML tags will be added)
500
- #: ad-inserter.php:9815
501
  msgid "Thank you for installing"
502
  msgstr "Hvala za namestitev vtičnika"
503
 
504
  #. translators: Opt-in message: %s: HTML tags
505
- #: ad-inserter.php:9817
506
  msgid ""
507
  "We would like to %s track its usage %s on your site. This is completely "
508
  "optional and can be disabled at any time."
@@ -510,7 +510,7 @@ msgstr ""
510
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
511
  "izbirno in se lahko izključi kadarkoli."
512
 
513
- #: ad-inserter.php:9819
514
  msgid ""
515
  "We don't record any sensitive data, only information regarding the WordPress "
516
  "environment and plugin usage, which will help us to make improvements to the "
@@ -520,7 +520,7 @@ msgstr ""
520
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
521
 
522
  #. translators: Deactivation message: %s: HTML tags
523
- #: ad-inserter.php:9856
524
  msgid ""
525
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
526
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -531,51 +531,51 @@ msgstr ""
531
  "nam %s in poskušali vam bomo pomagati."
532
 
533
  #. translators: %s: Ad Inserter
534
- #: ad-inserter.php:9900
535
  msgid "%s block."
536
  msgstr "%s blok."
537
 
538
  #. translators: widget title
539
- #: ad-inserter.php:9916 ad-inserter.php:9951
540
  msgid "Processing log"
541
  msgstr "Dnevnik procesiranja"
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:9918 ad-inserter.php:9952
545
  msgid "Dummy widget"
546
  msgstr "Prazen gradnik"
547
 
548
  #. translators: widget title
549
- #: ad-inserter.php:9920 ad-inserter.php:9950
550
  msgid "Debugging tools"
551
  msgstr "Orodja za razhroščevanje"
552
 
553
  #. translators: block status (widget title)
554
- #: ad-inserter.php:9927
555
  msgctxt "block"
556
  msgid "PAUSED"
557
  msgstr "USTAVLJEN"
558
 
559
- #: ad-inserter.php:9928
560
  msgid "WIDGET DISABLED"
561
  msgstr "GRADNIK ONEMOGOČEN"
562
 
563
- #: ad-inserter.php:9929
564
  msgid "Unknown block"
565
  msgstr "Neznan blok"
566
 
567
- #: ad-inserter.php:9937 includes/functions-check-now.php:3261
568
- #: includes/functions.old.php:3186 includes/functions.php:3479
569
- #: settings.php:1203
570
  msgid "Title"
571
  msgstr "Naslov"
572
 
573
- #: ad-inserter.php:9959
574
  msgctxt "Widget"
575
  msgid "Sticky"
576
  msgstr "Lepljiv"
577
 
578
- #: ad-inserter.php:10008
579
  msgid ""
580
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
581
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -584,7 +584,7 @@ msgstr ""
584
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
585
  "Inserter Pro."
586
 
587
- #: ad-inserter.php:10009
588
  msgid ""
589
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
590
  "will clear all settings that are available only in the Pro version "
@@ -599,161 +599,161 @@ msgstr ""
599
  msgid "PHP error in %s block"
600
  msgstr "PHP napaka v bloku %s"
601
 
602
- #: class.php:2066
603
  msgid "Counters"
604
  msgstr "Števci"
605
 
606
- #: class.php:2070
607
  msgid "Content"
608
  msgstr "Vsebina"
609
 
610
- #: class.php:2075
611
  msgid "Excerpt"
612
  msgstr "Izvleček"
613
 
614
- #: class.php:2080 strings.php:17
615
  msgid "Before post"
616
  msgstr "Pred prispevkom"
617
 
618
- #: class.php:2085 strings.php:18
619
  msgid "After post"
620
  msgstr "Za prispevkom"
621
 
622
- #: class.php:2090 strings.php:25
623
  msgid "Between posts"
624
  msgstr "Med prispevki"
625
 
626
- #: class.php:2095 settings.php:1912 settings.php:4270
627
  msgid "Widget"
628
  msgstr "Gradnik"
629
 
630
- #: class.php:2100 settings.php:4268
631
  msgid "PHP function call"
632
  msgstr "Klic PHP funkcije"
633
 
634
  #. Translators: %s: custom hook name
635
- #: class.php:2110
636
  msgid "Custom hook %s call"
637
  msgstr "Klic ročice po meri %s"
638
 
639
- #: class.php:2146
640
  msgid "AJAX REQUEST"
641
  msgstr "AJAX ZAHTEVEK"
642
 
643
- #: class.php:2149
644
  msgid "Ajax request for block in iframe"
645
  msgstr "Ajax zahtevek za blok v iframe-u"
646
 
647
- #: class.php:2183
648
  msgid "Ajax request url, click to open it in a new tab"
649
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
650
 
651
- #: class.php:2186
652
  msgid "IN THE LOOP"
653
  msgstr "V ZANKI"
654
 
655
- #: class.php:2186
656
  msgid "YES"
657
  msgstr "DA"
658
 
659
- #: class.php:2186
660
  msgid "NO"
661
  msgstr "NE"
662
 
663
- #: class.php:2222
664
  msgid "BLOCK"
665
  msgstr "BLOK"
666
 
667
- #: class.php:2222
668
  msgctxt "block or widget"
669
  msgid "INSERTED BUT NOT VISIBLE"
670
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
671
 
672
- #: class.php:2390
673
  msgctxt "viewports"
674
  msgid "ALL"
675
  msgstr "VSI"
676
 
677
- #: class.php:2423 class.php:2465 class.php:3710 strings.php:267
678
  msgctxt "Block"
679
  msgid "HIDDEN"
680
  msgstr "SKRIT"
681
 
682
- #: class.php:2472 class.php:3713 strings.php:266
683
  msgctxt "Block"
684
  msgid "VISIBLE"
685
  msgstr "VIDEN"
686
 
687
- #: class.php:2977 class.php:3047
688
  msgid "ACTIVE GROUPS"
689
  msgstr "AKTIVNE SKUPINE"
690
 
691
- #: class.php:3409
692
  msgid "start='%s' end='%s' days='%s' type='%s'"
693
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
- #: class.php:3417
697
  msgid "parameters='%s' type='%s'"
698
  msgstr "parametri='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
- #: class.php:3419
702
  msgid "referers='%s' type='%s'"
703
  msgstr "napotitelji='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
- #: class.php:3421
707
  msgid "clients='%s' type='%s'"
708
  msgstr "odjemalci='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
- #: class.php:3593
712
  msgid "countries='%s' type='%s'"
713
  msgstr "države='%s' tip='%s'"
714
 
715
  #. translators: %s: list parameters and type
716
- #: class.php:3595
717
  msgid "ip addresses='%s' type='%s'"
718
  msgstr "ip naslovi='%s' tip='%s'"
719
 
720
- #: class.php:3710 class.php:3713
721
  msgid "viewport='%s' type='%s'"
722
  msgstr "pogled='%s' tip='%s'"
723
 
724
- #: class.php:4067 strings.php:249
725
  msgid "BEFORE"
726
  msgstr "PRED"
727
 
728
- #: class.php:4075 strings.php:251
729
  msgid "PREPEND CONTENT"
730
  msgstr "DODAJ PRED VSEBINO"
731
 
732
- #: class.php:4079 strings.php:252
733
  msgid "APPEND CONTENT"
734
  msgstr "DODAJ ZA VSEBINO"
735
 
736
- #: class.php:4083 strings.php:253
737
  msgid "REPLACE CONTENT"
738
  msgstr "NADOMESTI VSEBINO"
739
 
740
- #: class.php:4087 strings.php:254
741
  msgid "REPLACE ELEMENT"
742
  msgstr "NADOMESTI ELEMENT"
743
 
744
- #: class.php:4098 strings.php:250
745
  msgid "AFTER"
746
  msgstr "ZA"
747
 
748
- #: class.php:4183 includes/preview.php:2045 includes/preview.php:2082
749
  msgid "Code"
750
  msgstr "Koda"
751
 
752
- #: class.php:4186
753
  msgid "for block"
754
  msgstr "za blok"
755
 
756
- #: class.php:7883
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
@@ -762,16 +762,16 @@ msgstr ""
762
  "namestiti DOM razširitev za PHP."
763
 
764
  #: includes/editor.php:7 includes/placeholders.php:352
765
- #: includes/preview.php:1988 strings.php:256
766
  msgid "Use"
767
  msgstr "Uporabi"
768
 
769
- #: includes/editor.php:8 includes/preview.php:1989
770
  msgid "Reset"
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
- #: includes/preview.php:1991 settings.php:3611 strings.php:210 strings.php:255
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
@@ -780,7 +780,7 @@ msgid "Visual Code Editor"
780
  msgstr "Vizualni Urejevalnik Kode"
781
 
782
  #: includes/editor.php:262 includes/preview-adb.php:289
783
- #: includes/preview.php:1978
784
  msgid ""
785
  "This page was not loaded properly. Please check browser, plugins and ad "
786
  "blockers."
@@ -788,29 +788,29 @@ msgstr ""
788
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
789
  "blokiranje oglasov."
790
 
791
- #: includes/editor.php:264 settings.php:286
792
  msgid "Error loading page"
793
  msgstr "Napaka pri nalaganju strani"
794
 
795
  #: includes/editor.php:264 includes/preview-adb.php:291
796
- #: includes/preview.php:1980
797
  msgid "PAGE BLOCKED"
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
- #: includes/functions.php:301
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
- #: includes/functions.php:320
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
- #: includes/functions.php:397
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
@@ -819,47 +819,47 @@ msgstr ""
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
- #: includes/functions.php:397
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
- #: includes/functions.php:401
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
- #: includes/functions.php:421
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
- #: includes/functions.php:424
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
- #: includes/functions.php:426
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
- #: includes/functions.php:433
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
- #: includes/functions.php:433
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
- #: includes/functions.php:448
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
- #: includes/functions.php:451
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
@@ -868,90 +868,90 @@ msgstr ""
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
- #: includes/functions.php:452 settings.php:1354 settings.php:2826
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
- #: includes/functions.php:457
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
- #: includes/functions.php:460
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
- #: includes/functions.php:471
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
- #: includes/functions.php:486
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
- #: includes/functions.php:486
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
- #: includes/functions.php:493
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
- #: includes/functions.php:498
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
- #: includes/functions.php:512
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
- #: includes/functions.php:520 includes/functions.php:3222
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
- #: includes/functions-check-now.php:528 includes/functions.php:529
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
- #: includes/functions.php:544
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
- #: includes/functions.php:548
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
- #: includes/functions.php:552
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
- #: includes/functions.php:560 settings.php:1108 settings.php:2270
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
- #: includes/functions.php:620 includes/preview.php:2131
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
- #: includes/functions.php:643
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
@@ -960,12 +960,12 @@ msgstr ""
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
- #: includes/functions.php:651 includes/preview.php:2186
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
- #: includes/functions.php:666
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
@@ -974,17 +974,17 @@ msgstr ""
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
- #: includes/functions.php:691 includes/preview.php:2237
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
- #: includes/functions.php:709
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
- #: includes/functions.php:718
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
@@ -993,64 +993,64 @@ msgstr ""
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
- #: includes/functions.php:722
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
- #: includes/functions.php:722
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
- #: includes/functions.php:726
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
- #: includes/functions.php:726
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
- #: includes/functions.php:730
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
- #: includes/functions.php:732
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
- #: includes/functions.php:774 includes/functions.php:2701
1029
- #: includes/functions.php:2717
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
- #: includes/functions.php:778 includes/functions.php:2705
1037
- #: includes/functions.php:2721
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
- #: includes/functions.php:785
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
- #: includes/functions.php:791 settings.php:3546 settings.php:3582
1048
- #: settings.php:3624 strings.php:220
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
- #: includes/functions.php:812
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
@@ -1059,84 +1059,84 @@ msgstr ""
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
- #: includes/functions.php:816
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
- #: includes/functions.php:819 includes/functions.php:5692
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
- #: includes/functions.php:819 includes/functions.php:5692
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
- #: includes/functions.php:822 includes/functions.php:5695
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
- #: includes/functions.php:822 includes/functions.php:5695
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
- #: includes/functions.php:825 includes/functions.php:5698
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
- #: includes/functions.php:825 includes/functions.php:5698
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
- #: includes/functions.php:828 includes/functions.php:5701
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
- #: includes/functions.php:831 includes/functions.php:5704
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
- #: includes/functions.php:834 includes/functions.php:5707
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
- #: includes/functions.php:837 includes/functions.php:5710
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
- #: includes/functions.php:840 includes/functions.php:5713
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
- #: includes/functions.php:850 includes/functions.php:5723
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
- #: includes/functions.php:866
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
@@ -1145,12 +1145,12 @@ msgstr ""
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
- #: includes/functions.php:866
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
- #: includes/functions.php:870
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
@@ -1161,49 +1161,49 @@ msgstr ""
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
- #: includes/functions.php:870
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
- #: includes/functions.php:874
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
- #: includes/functions.php:887
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
- #: includes/functions.php:897
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
- #: includes/functions.php:899
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
- #: includes/functions.php:929
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
- #: includes/functions.php:935
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
- #: includes/functions.php:938
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
- #: includes/functions.php:941
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1212,61 +1212,61 @@ msgstr ""
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
- #: includes/functions.php:950
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
- #: includes/functions.php:954
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
- #: includes/functions.php:965
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
- #: includes/functions.php:966
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
- #: includes/functions.php:970 includes/functions.php:3187
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
- #: includes/functions.php:973
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
- #: includes/functions.php:977 includes/functions.php:3190
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
- #: includes/functions.php:986
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
- #: includes/functions.php:990
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
- #: includes/functions.php:1437 includes/functions.php:1747
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
- #: includes/functions.php:1443
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
@@ -1275,63 +1275,63 @@ msgstr ""
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
- #: includes/functions-check-now.php:1402 includes/functions.php:1457
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
- #: includes/functions-check-now.php:1404 includes/functions.php:1459
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
- #: includes/functions-check-now.php:1406 includes/functions.php:1461
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
- #: includes/functions.php:1466 includes/functions.php:1756
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
- #: includes/functions.php:1472
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
- #: includes/functions.php:1481
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
- #: includes/functions.php:1482
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
- #: includes/functions.php:1490
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
- #: includes/functions.php:1491
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
- #: includes/functions.php:1491
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
- #: includes/functions.php:1749
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
@@ -1341,13 +1341,13 @@ msgstr ""
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
- #: includes/functions.php:1758
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
- #: includes/functions.php:1774
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1358,7 +1358,7 @@ msgstr ""
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
- #: includes/functions.php:1781
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1367,28 +1367,28 @@ msgstr ""
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
- #: includes/functions.php:1791
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
- #: includes/functions.php:1794
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
- #: includes/functions.php:1808
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
- #: includes/functions.php:1810
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
- #: includes/functions.php:1821
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1399,122 +1399,122 @@ msgstr ""
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
- #: includes/functions.php:1873
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
- #: includes/functions.php:2494
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
- #: includes/functions.php:2498 settings.php:4257
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
- #: includes/functions.php:2503
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
- #: includes/functions.php:2508 settings.php:4263
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
- #: includes/functions.php:2539
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
- #: includes/functions.php:2548
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
- #: includes/functions.php:2552
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
- #: includes/functions.php:2578 settings.php:1436 settings.php:1451
1446
- #: settings.php:1541 settings.php:2167
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
- #: includes/functions.php:2560
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
- #: includes/functions.php:2561
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
- #: includes/functions.php:2598
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
- #: includes/functions.php:2602 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
- #: includes/functions.php:2603
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
- #: includes/functions.php:2609 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
- #: includes/functions.php:2610
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
- #: includes/functions.php:2617
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
- #: includes/functions.php:2622
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
- #: includes/functions.php:2622 includes/preview.php:2000 settings.php:1103
1498
- #: settings.php:2888
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
- #: includes/functions.php:2636 settings.php:4264
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
- #: includes/functions.php:2641 includes/functions.php:4668
1511
- #: includes/functions.php:4731 settings.php:2317
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
- #: includes/functions.php:2650
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
@@ -1525,7 +1525,7 @@ msgstr ""
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
- #: includes/functions.php:2659
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
@@ -1534,18 +1534,18 @@ msgstr ""
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
- #: includes/functions.php:2725
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
- #: includes/functions.php:2729
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
- #: includes/functions.php:2743
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
@@ -1553,8 +1553,8 @@ msgstr "Splošne omejitve"
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
- #: includes/functions.php:2749 includes/functions.php:2761
1557
- #: includes/functions.php:2846
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
@@ -1574,15 +1574,15 @@ msgstr "Trenutna vrednost"
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
- #: includes/functions.php:2768 includes/functions.php:2778
1578
- #: includes/functions.php:2797 includes/functions.php:2807
1579
- #: includes/functions.php:2853 includes/functions.php:2862
1580
- #: includes/functions.php:2880 includes/functions.php:2889 settings.php:2088
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
- #: includes/functions.php:2769
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
@@ -1598,8 +1598,8 @@ msgstr ""
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
- #: includes/functions.php:2771 includes/functions.php:2781
1602
- #: includes/functions.php:2856 includes/functions.php:2865
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
@@ -1608,7 +1608,7 @@ msgstr[2] "prikazi"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
- #: includes/functions.php:2779
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
@@ -1623,14 +1623,14 @@ msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
- #: includes/functions.php:2785 includes/functions.php:2814
1627
- #: includes/functions.php:2869 includes/functions.php:2896
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
- #: includes/functions.php:2786 includes/functions.php:2815
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
@@ -1645,11 +1645,11 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
- #: includes/functions.php:2788 includes/functions.php:2817
1649
- #: includes/functions.php:2872 includes/functions.php:2899
1650
- #: includes/functions.php:3005 includes/functions.php:3348 strings.php:201
1651
- #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1652
- #: strings.php:206
1653
  msgid "day"
1654
  msgid_plural "days"
1655
  msgstr[0] "dan"
@@ -1658,7 +1658,7 @@ msgstr[2] "dni"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
- #: includes/functions.php:2798
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
@@ -1674,9 +1674,9 @@ msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
- #: includes/functions.php:2800 includes/functions.php:2810
1678
- #: includes/functions.php:2883 includes/functions.php:2892
1679
- #: includes/functions.php:4879
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
@@ -1685,20 +1685,20 @@ msgstr[2] "kliki"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
- #: includes/functions.php:2808
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
- #: includes/functions.php:2833
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
- #: includes/functions.php:2837 includes/functions.php:2839
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
@@ -1711,12 +1711,12 @@ msgstr ""
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
- #: includes/functions.php:2839
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
- #: includes/functions.php:2854
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
@@ -1725,7 +1725,7 @@ msgstr ""
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
- #: includes/functions.php:2863
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
@@ -1735,7 +1735,7 @@ msgstr ""
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
- #: includes/functions.php:2870 includes/functions.php:2897
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
@@ -1744,7 +1744,7 @@ msgstr ""
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
- #: includes/functions.php:2881
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
@@ -1753,7 +1753,7 @@ msgstr ""
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
- #: includes/functions.php:2890
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
@@ -1762,39 +1762,39 @@ msgstr ""
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
- #: includes/functions.php:2916
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
- #: includes/functions.php:2925
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
- #: includes/functions.php:2926
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
- #: includes/functions.php:2927
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
- #: includes/functions.php:2944 includes/functions.php:5936
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
- #: includes/functions.php:2996
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
- #: includes/functions.php:2997
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
@@ -1804,12 +1804,12 @@ msgstr ""
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
- #: includes/functions.php:3002
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
- #: includes/functions.php:3003
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1821,12 +1821,12 @@ msgstr ""
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
- #: includes/functions.php:3023
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
- #: includes/functions.php:3024
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
@@ -1838,7 +1838,7 @@ msgstr ""
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
- #: includes/functions.php:3026 includes/functions.php:3033
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
@@ -1848,7 +1848,7 @@ msgstr[3] "ogledov strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
- #: includes/functions.php:3030
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
@@ -1857,7 +1857,7 @@ msgstr[2] "Prikaži vsake"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
- #: includes/functions.php:3031
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
@@ -1866,33 +1866,33 @@ msgstr ""
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
- #: includes/functions.php:3050
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
- #: includes/functions.php:3111
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
- #: includes/functions.php:3124
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
- #: includes/functions.php:3127
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
- #: includes/functions.php:3138
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
- #: includes/functions.php:3141
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
@@ -1901,12 +1901,12 @@ msgstr ""
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
- #: includes/functions.php:3158
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
- #: includes/functions.php:3161
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
@@ -1916,17 +1916,17 @@ msgstr ""
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
- #: includes/functions.php:3179
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
- #: includes/functions.php:3185
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
- #: includes/functions.php:3230
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
@@ -1935,38 +1935,38 @@ msgstr ""
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
- #: includes/functions.php:3237
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
- #: includes/functions.php:3245
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
- #: includes/functions.php:3246 settings.php:2776
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
- #: includes/functions.php:3262
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
- #: includes/functions.php:3266
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
- #: includes/functions.php:3271
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
- #: includes/functions.php:3275
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
@@ -1975,32 +1975,32 @@ msgstr ""
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
- #: includes/functions.php:3280
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
- #: includes/functions.php:3286
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
- #: includes/functions.php:3296
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
- #: includes/functions.php:3302
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
- #: includes/functions.php:3312
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
- #: includes/functions.php:3318
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -2009,22 +2009,22 @@ msgstr ""
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
- #: includes/functions.php:3337
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
- #: includes/functions.php:3341
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
- #: includes/functions.php:3347
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
- #: includes/functions.php:3348
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -2034,12 +2034,12 @@ msgstr ""
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
- #: includes/functions.php:3367
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
- #: includes/functions.php:3370
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -2050,17 +2050,17 @@ msgstr ""
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
- #: includes/functions.php:3371 strings.php:232
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
- #: includes/functions.php:3376
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
- #: includes/functions.php:3379
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
@@ -2069,12 +2069,12 @@ msgstr ""
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
- #: includes/functions.php:3384
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
- #: includes/functions.php:3387
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
@@ -2083,12 +2083,12 @@ msgstr ""
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
- #: includes/functions.php:3392
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
- #: includes/functions.php:3395
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
@@ -2097,139 +2097,139 @@ msgstr ""
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
- #: includes/functions.php:3400
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
- #: includes/functions.php:3403
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
- #: includes/functions.php:3466
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
- #: includes/functions.php:3467
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
- #: includes/functions.php:3474
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
- #: includes/functions.php:3474
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
- #: includes/functions.php:3479 settings.php:3855 settings.php:4340
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
- #: includes/functions.php:3497
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
- #: includes/functions.php:3498 includes/functions.php:3505
2145
- #: includes/functions.php:3509 includes/placeholders.php:353
2146
- #: includes/preview.php:2306 settings.php:1340 settings.php:3615
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
- #: includes/functions.php:3528
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
- #: includes/functions.php:3529
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
- #: includes/functions.php:3542
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
- #: includes/functions.php:3553
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
- #: includes/functions.php:3558
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
- #: includes/functions.php:3558
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
- #: includes/functions.php:3563
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
- #: includes/functions.php:3563
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
- #: includes/functions.php:3568
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
- #: includes/functions.php:3568
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
- #: includes/functions.php:3573
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
- #: includes/functions.php:3573
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
- #: includes/functions.php:3578
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
- #: includes/functions.php:3578
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
- #: includes/functions.php:3594 settings.php:2775
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
- #: includes/functions.php:3600
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
@@ -2244,8 +2244,8 @@ msgstr ""
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
- #: includes/functions.php:4299 includes/functions.php:4421
2248
- #: includes/functions.php:4441
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
@@ -2253,86 +2253,86 @@ msgstr "BLOKIRANJE OGLASOV"
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
- #: includes/functions.php:4300 includes/functions.php:4346
2257
- #: includes/functions.php:4415 includes/functions.php:4442
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
- #: includes/functions.php:4303 includes/functions.php:4414
2265
- #: includes/functions.php:4448
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
- #: includes/functions.php:4345 includes/functions.php:4352
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
- #: includes/functions.php:4521 includes/functions.php:4730
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
- #: includes/functions.php:4667
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
- #: includes/functions.php:4667
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
- #: includes/functions.php:4667
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
- #: includes/functions.php:4668
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
- #: includes/functions.php:4730
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
- #: includes/functions.php:4731 includes/functions.php:4732
2313
- #: includes/functions.php:4787
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
- #: includes/functions.php:4732
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
- #: includes/functions.php:4733
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
- #: includes/functions.php:4733 includes/functions.php:4793
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
- #: includes/functions.php:4875
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
@@ -2341,7 +2341,7 @@ msgstr[2] "oglede strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
- #: includes/functions.php:4875
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
@@ -2350,7 +2350,7 @@ msgstr[2] "prikazi"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
- #: includes/functions.php:4879
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
@@ -2359,19 +2359,19 @@ msgstr[2] "dogodki"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
- #: includes/functions.php:4974
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
- #: includes/functions.php:4995
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
- #: includes/functions.php:5019
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
@@ -2380,82 +2380,82 @@ msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
- #: includes/functions.php:5202 includes/functions.php:5294
2384
- #: includes/functions.php:5637 strings.php:186
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
- #: includes/functions.php:5543
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
- #: includes/functions.php:5548
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
- #: includes/functions.php:5553
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
- #: includes/functions.php:5558
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
- #: includes/functions.php:5563
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
- #: includes/functions.php:5568
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
- #: includes/functions.php:5573
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
- #: includes/functions.php:5578
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
- #: includes/functions.php:556
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
- #: includes/functions.php:946 includes/functions.php:982 settings.php:1667
2434
- #: settings.php:1698 settings.php:1729 settings.php:1760 settings.php:1791
2435
- #: settings.php:1822 settings.php:1852 settings.php:1882
2436
  msgid "Click to select black or white list"
2437
  msgstr "Klikni za za izbor črnega ali belega seznama"
2438
 
2439
  #. translators: %s: Ad Inserter Pro
2440
- #: includes/functions.php:1499
2441
  msgid "Invalid %s version."
2442
  msgstr "Neveljavna izdaja %s."
2443
 
2444
- #: includes/functions.php:1500
2445
  msgid "Check license"
2446
  msgstr "Preverite licenco"
2447
 
2448
- #: includes/functions.php:1512
2449
  msgid "License"
2450
  msgstr "Licenca"
2451
 
2452
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2453
- #: includes/functions.php:1833
2454
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2455
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2456
 
2457
  #. Translators: %s: HTML tags
2458
- #: includes/functions.php:1878
2459
  msgid ""
2460
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2461
  "account %s and create license key."
@@ -2463,52 +2463,60 @@ msgstr ""
2463
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2464
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2465
 
2466
- #: includes/functions.php:2576
2467
  msgid "Start date"
2468
  msgstr "Začetni datum"
2469
 
2470
- #: includes/functions.php:2576
2471
  msgid "Enter date in format yyyy-mm-dd"
2472
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2473
 
2474
- #: includes/functions.php:2577
2475
  msgid "Start time"
2476
  msgstr "Začetni čas"
2477
 
2478
- #: includes/functions.php:2577
2479
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2480
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2481
 
2482
- #: includes/functions.php:2579
2483
  msgid "End date"
2484
  msgstr "Končni datum"
2485
 
2486
- #: includes/functions.php:2580
2487
  msgid "End time"
2488
  msgstr "Končni čas"
2489
 
2490
- #: includes/functions.php:2583
2491
  msgid "Select wanted days in week"
2492
  msgstr "Izberite želene dneve v tednu"
2493
 
 
 
 
 
 
 
 
 
2494
  #. Translators: %s HTML tags
2495
- #: includes/functions.php:3113
2496
  msgid "Create and manage %s MaxMind license key %s"
2497
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2498
 
2499
- #: includes/functions.php:3149
2500
  msgid "MaxMind license key"
2501
  msgstr "MaxMind licenčni ključ"
2502
 
2503
- #: includes/functions.php:3152
2504
  msgid "Enter license key obtained from MaxMind"
2505
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2506
 
2507
- #: includes/functions.php:3418
2508
  msgid "Event category"
2509
  msgstr "Kategorija dogodka"
2510
 
2511
- #: includes/functions.php:3421
2512
  msgid ""
2513
  "Category name used for external tracking events. You can use tags to get the "
2514
  "event, the number or the name of the block that caused the event."
@@ -2516,11 +2524,11 @@ msgstr ""
2516
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2517
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2518
 
2519
- #: includes/functions.php:3426
2520
  msgid "Event action"
2521
  msgstr "Akcija dogodka"
2522
 
2523
- #: includes/functions.php:3429
2524
  msgid ""
2525
  "Action name used for external tracking events. You can use tags to get the "
2526
  "event, the number or the name of the block that caused the event."
@@ -2528,11 +2536,11 @@ msgstr ""
2528
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2529
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2530
 
2531
- #: includes/functions.php:3434
2532
  msgid "Event label"
2533
  msgstr "Oznaka dogodka"
2534
 
2535
- #: includes/functions.php:3437
2536
  msgid ""
2537
  "Label name used for external tracking events. You can use tags to get the "
2538
  "event, the number or the name of the block that caused the event."
@@ -2541,21 +2549,25 @@ msgstr ""
2541
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2542
 
2543
  #. translators: %s: Ad Inserter Pro
2544
- #: includes/functions.php:3583
2545
  msgid "Show link to %s settings page for each site on the Sites page"
2546
  msgstr ""
2547
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2548
  "Spletišča"
2549
 
2550
  #. translators: %s: Ad Inserter Pro
2551
- #: includes/functions.php:3583
2552
  msgid "Show link to %s on the Sites page"
2553
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2554
 
2555
- #: includes/functions.php:5149
2556
  msgid "File %s missing."
2557
  msgstr "Datoteka %s ni najdena."
2558
 
 
 
 
 
2559
  #: includes/placeholders.php:20
2560
  msgid "Custom"
2561
  msgstr "Po meri"
@@ -2580,7 +2592,7 @@ msgstr "Zapri urejevalnik polnila"
2580
  msgid "Placeholder"
2581
  msgstr "Polnilo"
2582
 
2583
- #: includes/placeholders.php:363 settings.php:949 settings.php:4341
2584
  msgid "Size"
2585
  msgstr "Velikost"
2586
 
@@ -2673,7 +2685,7 @@ msgstr "Dodaj testni odstavek"
2673
  msgid "Remove dummy paragraph"
2674
  msgstr "Odstrani testni odstavek"
2675
 
2676
- #: includes/preview-adb.php:9 includes/preview.php:1988
2677
  msgid "Use current settings"
2678
  msgstr "Uporabi trenutne nastavitve"
2679
 
@@ -2700,7 +2712,7 @@ msgctxt "Button"
2700
  msgid "Default"
2701
  msgstr "Privzeto"
2702
 
2703
- #: includes/preview-adb.php:12 includes/preview.php:1991
2704
  msgid "Close preview window"
2705
  msgstr "Zapri okno predogleda"
2706
 
@@ -2713,63 +2725,63 @@ msgstr "Prekliči"
2713
  msgid "Ad Blocking Detected Message Preview"
2714
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2715
 
2716
- #: includes/preview-adb.php:348 settings.php:2901
2717
  msgid "Message CSS"
2718
  msgstr "CSS sporočila"
2719
 
2720
- #: includes/preview-adb.php:353 settings.php:2909
2721
  msgid "Overlay CSS"
2722
  msgstr "CSS prevleke"
2723
 
2724
- #: includes/preview.php:228
2725
  msgid "Sticky Code Preview"
2726
  msgstr "Predogled Lepljive Kode"
2727
 
2728
- #: includes/preview.php:228
2729
  msgid "Code Preview"
2730
  msgstr "Predogled Kode"
2731
 
2732
- #: includes/preview.php:1986
2733
  msgid "Highlight inserted code"
2734
  msgstr "Označi vstavljeno kodo"
2735
 
2736
- #: includes/preview.php:1986
2737
  msgid "Highlight"
2738
  msgstr "Označi"
2739
 
2740
- #: includes/preview.php:1989
2741
  msgid "Reset to block settings"
2742
  msgstr "Ponastavi na nastavitve bloka"
2743
 
2744
- #: includes/preview.php:2004
2745
  msgid "AdSense ad unit"
2746
  msgstr "Oglasna enota AdSense"
2747
 
2748
- #: includes/preview.php:2071
2749
  msgid "wrapping div"
2750
  msgstr "div za ovijanje"
2751
 
2752
- #: includes/preview.php:2076 includes/preview.php:2083
2753
  msgid "background"
2754
  msgstr "ozadje"
2755
 
2756
- #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1301
2757
  msgid "Alignment"
2758
  msgstr "Poravnava"
2759
 
2760
- #: includes/preview.php:2178
2761
  msgid "Horizontal margin"
2762
  msgstr "Vodoravni odmik"
2763
 
2764
- #: includes/preview.php:2227
2765
  msgid "Vertical margin"
2766
  msgstr "Navpični odmik"
2767
 
2768
- #: includes/preview.php:2249
2769
  msgid "Animate"
2770
  msgstr "Animiraj"
2771
 
2772
- #: includes/preview.php:2315
2773
  msgid ""
2774
  "This is a preview of the code between dummy paragraphs. Here you can test "
2775
  "various block alignments, visually edit margin and padding values of the "
@@ -2784,7 +2796,7 @@ msgstr ""
2784
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2785
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2786
 
2787
- #: includes/preview.php:2318
2788
  msgid ""
2789
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2790
  "code with the alignment and style as it is set for this block. Highlight "
@@ -2794,7 +2806,7 @@ msgstr ""
2794
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2795
  "margin območje div-a za ovijanje in območje kode."
2796
 
2797
- #: includes/preview.php:2320
2798
  msgid ""
2799
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2800
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2806,7 +2818,7 @@ msgstr ""
2806
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2807
  "Označi za označitev bloka."
2808
 
2809
- #: includes/preview.php:2326
2810
  msgid ""
2811
  "You can resize the window (and refresh the page to reload ads) to check "
2812
  "display with different screen widths.\n"
@@ -2818,7 +2830,7 @@ msgstr ""
2818
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2819
  "prenesle v aktivni blok."
2820
 
2821
- #: includes/preview.php:2328
2822
  msgid ""
2823
  "Please note that the code, block name, alignment and style are taken from "
2824
  "the current block settings (may not be saved).\n"
@@ -2831,9 +2843,9 @@ msgstr ""
2831
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2832
  "kodo za blok."
2833
 
2834
- #: includes/preview.php:2333 includes/preview.php:2347
2835
- #: includes/preview.php:2357 includes/preview.php:2367
2836
- #: includes/preview.php:2377
2837
  msgid ""
2838
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2839
  "code with it's settings is called a block.\n"
@@ -2857,9 +2869,9 @@ msgstr ""
2857
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2858
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2859
 
2860
- #: includes/preview.php:2338 includes/preview.php:2352
2861
- #: includes/preview.php:2362 includes/preview.php:2372
2862
- #: includes/preview.php:2382
2863
  msgid ""
2864
  "Few very important things you need to know in order to insert code and "
2865
  "display some ad:\n"
@@ -2882,7 +2894,7 @@ msgstr ""
2882
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2883
  "uporabljate posamezne izjeme za prispevke/strani."
2884
 
2885
- #: includes/preview.php:2344
2886
  msgid ""
2887
  "This is a preview of the code for sticky ads. Here you can test various "
2888
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2898,14 +2910,14 @@ msgstr ""
2898
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2899
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2900
 
2901
- #: settings.php:155 settings.php:158
2902
  msgid ""
2903
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2904
  msgstr ""
2905
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2906
  "vedno izjeme"
2907
 
2908
- #: settings.php:197 settings.php:1190
2909
  msgid ""
2910
  "Settings for individual exceptions have been updated. Please check all "
2911
  "blocks that have exceptions and and then save settings."
@@ -2913,32 +2925,32 @@ msgstr ""
2913
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
2914
  "bloke, ki imajo izjeme in potem shranite nastavitve."
2915
 
2916
- #: settings.php:239
2917
  msgid "Online documentation"
2918
  msgstr "Spletna Dokumentacija"
2919
 
2920
- #: settings.php:243 settings.php:784 settings.php:2284
2921
  msgid "Show AdSense ad units"
2922
  msgstr "Pokaži oglasne enote AdSense"
2923
 
2924
- #: settings.php:252
2925
  msgid "Edit ads.txt file"
2926
  msgstr "Uredi datoteko ads.txt"
2927
 
2928
- #: settings.php:255 settings.php:1133
2929
  msgid "Check theme for available positions for automatic insertion"
2930
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2931
 
2932
- #: settings.php:257
2933
  msgid "List all blocks"
2934
  msgstr "Izpiši seznam vseh blokov"
2935
 
2936
- #: settings.php:264
2937
  msgid "Loaded plugin JavaScript file version"
2938
  msgstr "Naložena različica JavaScript datoteke vtičnika"
2939
 
2940
  #. translators: %s: HTML tags
2941
- #: settings.php:266
2942
  msgid ""
2943
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2944
  "due to inappropriate caching."
@@ -2946,7 +2958,7 @@ msgstr ""
2946
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
2947
  "zaradi nepravilnega predpomnjenja."
2948
 
2949
- #: settings.php:267
2950
  msgid ""
2951
  "Missing version parameter of the JavaScript file, probably due to "
2952
  "inappropriate caching."
@@ -2954,7 +2966,7 @@ msgstr ""
2954
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2955
  "predpomnjenja."
2956
 
2957
- #: settings.php:268
2958
  msgid ""
2959
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2960
  "caching."
@@ -2962,7 +2974,7 @@ msgstr ""
2962
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
2963
  "zaradi nepravilnega predpomnjenja."
2964
 
2965
- #: settings.php:269 settings.php:280
2966
  msgid ""
2967
  "Please delete browser's cache and all other caches used and then reload this "
2968
  "page."
@@ -2970,12 +2982,12 @@ msgstr ""
2970
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
2971
  "potem na novo naložite to stran."
2972
 
2973
- #: settings.php:275
2974
  msgid "Loaded plugin CSS file version"
2975
  msgstr "Naložena različica CSS datoteke vtičnika"
2976
 
2977
  #. translators: %s: HTML tags
2978
- #: settings.php:277
2979
  msgid ""
2980
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2981
  "inappropriate caching."
@@ -2983,7 +2995,7 @@ msgstr ""
2983
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
2984
  "nepravilnega predpomnjenja."
2985
 
2986
- #: settings.php:278
2987
  msgid ""
2988
  "Missing version parameter of the CSS file, probably due to inappropriate "
2989
  "caching."
@@ -2991,39 +3003,39 @@ msgstr ""
2991
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2992
  "predpomnjenja."
2993
 
2994
- #: settings.php:279
2995
  msgid ""
2996
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2997
  msgstr ""
2998
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
2999
  "nepravilnega predpomnjenja."
3000
 
3001
- #: settings.php:286 settings.php:312
3002
  msgid "WARNING"
3003
  msgstr "OPOZORILO"
3004
 
3005
  #. translators: %s: HTML tags
3006
- #: settings.php:288
3007
  msgid "Page may %s not be loaded properly. %s"
3008
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
3009
 
3010
- #: settings.php:289
3011
  msgid ""
3012
  "Check ad blocking software that may block CSS, JavaScript or image files."
3013
  msgstr ""
3014
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
3015
  "JavaScript ali slikovne datoteke."
3016
 
3017
- #: settings.php:298
3018
  msgid "SAFE MODE"
3019
  msgstr "VARNI NAČIN"
3020
 
3021
  #. translators: %s: HTML tags
3022
- #: settings.php:300
3023
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
3024
  msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
3025
 
3026
- #: settings.php:312
3027
  msgid ""
3028
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
3029
  "Debugging"
@@ -3031,23 +3043,23 @@ msgstr ""
3031
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
3032
  "na zavihek [*] / zavihek Razhroščevanje"
3033
 
3034
- #: settings.php:314
3035
  msgid "Debugging functions enabled - some code is not inserted"
3036
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
3037
 
3038
- #: settings.php:331
3039
  msgid "Group name"
3040
  msgstr "Ime skupine"
3041
 
3042
- #: settings.php:332
3043
  msgid "Option name"
3044
  msgstr "Ime različice"
3045
 
3046
- #: settings.php:338
3047
  msgid "Share"
3048
  msgstr "Delež"
3049
 
3050
- #: settings.php:341
3051
  msgid ""
3052
  "Option share in percents - 0 means option is disabled, if share for one "
3053
  "option is not defined it will be calculated automatically. Leave all share "
@@ -3057,11 +3069,11 @@ msgstr ""
3057
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3058
  "prazne za enakomerno porazdelitev deležev različic."
3059
 
3060
- #: settings.php:344
3061
  msgid "Time"
3062
  msgstr "Čas"
3063
 
3064
- #: settings.php:347
3065
  msgid ""
3066
  "Option time in seconds - 0 means option is disabled and will be skipped. "
3067
  "Leave all time fields empty for no timed rotation."
@@ -3069,162 +3081,162 @@ msgstr ""
3069
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
3070
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
3071
 
3072
- #: settings.php:499
3073
  msgid "General Settings"
3074
  msgstr "Splošne Nastavitve"
3075
 
3076
- #: settings.php:732 settings.php:2628 settings.php:2695 settings.php:2881
3077
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3078
  msgstr ""
3079
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3080
 
3081
- #: settings.php:739
3082
  msgid "Toggle tools"
3083
  msgstr "Preklopi orodja"
3084
 
3085
- #: settings.php:747
3086
  msgid "Process PHP code in block"
3087
  msgstr "Procesiraj PHP kodo v bloku"
3088
 
3089
- #: settings.php:754
3090
  msgid "Disable insertion of this block"
3091
  msgstr "Onemogoči vstavljanje tega bloka"
3092
 
3093
- #: settings.php:766
3094
  msgid "Toggle code generator"
3095
  msgstr "Preklopi generator kode"
3096
 
3097
- #: settings.php:770
3098
  msgid "Toggle rotation editor"
3099
  msgstr "Preklopi urejevalnik rotacije"
3100
 
3101
- #: settings.php:774
3102
  msgid "Open visual HTML editor"
3103
  msgstr "Odpri vizualni HTML urejevalnik"
3104
 
3105
- #: settings.php:793
3106
  msgid "Clear block"
3107
  msgstr "Počisti blok"
3108
 
3109
- #: settings.php:798 settings.php:4212
3110
  msgid "Copy block"
3111
  msgstr "Kopiraj blok"
3112
 
3113
- #: settings.php:802
3114
  msgid "Paste name"
3115
  msgstr "Prilepi ime"
3116
 
3117
- #: settings.php:806
3118
  msgid "Paste code"
3119
  msgstr "Prilepi kodo"
3120
 
3121
- #: settings.php:810
3122
  msgid "Paste settings"
3123
  msgstr "Prilepi nastavitve"
3124
 
3125
- #: settings.php:814
3126
  msgid "Paste block (name, code and settings)"
3127
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3128
 
3129
- #: settings.php:833
3130
  msgid "Rotation groups"
3131
  msgstr "Skupine za rotacijo"
3132
 
3133
- #: settings.php:837
3134
  msgid "Remove option"
3135
  msgstr "Odstrani različico"
3136
 
3137
- #: settings.php:841
3138
  msgid "Add option"
3139
  msgstr "Dodaj različico"
3140
 
3141
- #: settings.php:856
3142
  msgid "Import code"
3143
  msgstr "Uvozi kodo"
3144
 
3145
- #: settings.php:860
3146
  msgid "Generate code"
3147
  msgstr "Generiraj kodo"
3148
 
3149
- #: settings.php:865
3150
  msgid "Banner"
3151
  msgstr "Pasica"
3152
 
3153
- #: settings.php:876
3154
  msgid "Image"
3155
  msgstr "Slika"
3156
 
3157
- #: settings.php:884
3158
  msgid "Link"
3159
  msgstr "Povezava"
3160
 
3161
- #: settings.php:895
3162
  msgid "Open link in a new tab"
3163
  msgstr "Odpri povezavo v novem zavihku"
3164
 
3165
- #: settings.php:896
3166
  msgid "Select Image"
3167
  msgstr "Izberi Sliko"
3168
 
3169
- #: settings.php:897
3170
  msgid "Select Placeholder"
3171
  msgstr "Izberi Polnilo"
3172
 
3173
- #: settings.php:909
3174
  msgid "Comment"
3175
  msgstr "Komentar"
3176
 
3177
- #: settings.php:918
3178
  msgctxt "AdSense"
3179
  msgid "Publisher ID"
3180
  msgstr "ID založnika"
3181
 
3182
- #: settings.php:927
3183
  msgctxt "AdSense"
3184
  msgid "Ad Slot ID"
3185
  msgstr "ID mesta"
3186
 
3187
- #: settings.php:936
3188
  msgid "Ad Type"
3189
  msgstr "Vrsta"
3190
 
3191
- #: settings.php:961
3192
  msgid "AMP Ad"
3193
  msgstr "AMP Oglas"
3194
 
3195
- #: settings.php:979
3196
  msgid "Show ad units from your AdSense account"
3197
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3198
 
3199
- #: settings.php:979
3200
  msgid "AdSense ad units"
3201
  msgstr "Oglasne enote AdSense"
3202
 
3203
- #: settings.php:996
3204
  msgctxt "AdSense"
3205
  msgid "Layout"
3206
  msgstr "Postavitev"
3207
 
3208
- #: settings.php:1005
3209
  msgctxt "AdSense"
3210
  msgid "Layout Key"
3211
  msgstr "Ključ postavitve"
3212
 
3213
- #: settings.php:1015
3214
  msgid "Full width"
3215
  msgstr "Celotna širina"
3216
 
3217
- #: settings.php:1017
3218
  msgctxt "Full width"
3219
  msgid "Enabled"
3220
  msgstr "Omogočena"
3221
 
3222
- #: settings.php:1018
3223
  msgctxt "Full width"
3224
  msgid "Disabled"
3225
  msgstr "Onemogočena"
3226
 
3227
- #: settings.php:1099
3228
  msgid ""
3229
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3230
  "Cookie or Referer (domain)"
@@ -3232,28 +3244,28 @@ msgstr ""
3232
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3233
  "parametrov, Piškotkov ali napotiteljev (domen)"
3234
 
3235
- #: settings.php:1099
3236
  msgid "Lists"
3237
  msgstr "Seznami"
3238
 
3239
- #: settings.php:1100
3240
  msgid "Widget, Shortcode and PHP function call"
3241
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3242
 
3243
- #: settings.php:1100
3244
  msgid "Manual"
3245
  msgstr "Ročno"
3246
 
3247
- #: settings.php:1101
3248
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3249
  msgstr ""
3250
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3251
 
3252
- #: settings.php:1101
3253
  msgid "Devices"
3254
  msgstr "Naprave"
3255
 
3256
- #: settings.php:1102
3257
  msgid ""
3258
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3259
  "feeds), Filter, Scheduling, General tag"
@@ -3261,15 +3273,15 @@ msgstr ""
3261
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3262
  "RSS), Filter, Urnik, Splošna oznaka"
3263
 
3264
- #: settings.php:1102
3265
  msgid "Misc"
3266
  msgstr "Razno"
3267
 
3268
- #: settings.php:1103
3269
  msgid "Preview code and alignment"
3270
  msgstr "Predogled kode in poravnave"
3271
 
3272
- #: settings.php:1106 settings.php:2268
3273
  msgid ""
3274
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3275
  "editor is active before saving settings."
@@ -3277,15 +3289,15 @@ msgstr ""
3277
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3278
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3279
 
3280
- #: settings.php:1119 settings.php:1120
3281
  msgid "Enable insertion on posts"
3282
  msgstr "Omogoči vstavljanje na prispevkih"
3283
 
3284
- #: settings.php:1120 settings.php:3427
3285
  msgid "Posts"
3286
  msgstr "Prispevki"
3287
 
3288
- #: settings.php:1124 settings.php:1125
3289
  msgid ""
3290
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3291
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3295,43 +3307,43 @@ msgstr ""
3295
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3296
  "lahko odvisni od ročic, ki jih tema uporablja)"
3297
 
3298
- #: settings.php:1125 settings.php:3429
3299
  msgid "Homepage"
3300
  msgstr "Domača stran"
3301
 
3302
- #: settings.php:1129 settings.php:1130
3303
  msgid "Enable insertion on category blog pages (including sub-pages)"
3304
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3305
 
3306
- #: settings.php:1130 settings.php:3430
3307
  msgid "Category pages"
3308
  msgstr "Strani kategorij"
3309
 
3310
- #: settings.php:1140 settings.php:1141
3311
  msgid "Enable insertion on static pages"
3312
  msgstr "Omogoči vstavljanje na statičnih straneh"
3313
 
3314
- #: settings.php:1141 settings.php:3428
3315
  msgid "Static pages"
3316
  msgstr "Statične strani"
3317
 
3318
- #: settings.php:1145 settings.php:1146
3319
  msgid "Enable insertion on search blog pages"
3320
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3321
 
3322
- #: settings.php:1146 settings.php:3432
3323
  msgid "Search pages"
3324
  msgstr "Iskalne strani"
3325
 
3326
- #: settings.php:1150 settings.php:1151
3327
  msgid "Enable insertion on tag or archive blog pages"
3328
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3329
 
3330
- #: settings.php:1154
3331
  msgid "Toggle settings for default insertion and list of individual exceptions"
3332
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3333
 
3334
- #: settings.php:1166
3335
  msgid ""
3336
  "Enable individual post/page exceptions for insertion of this block. They can "
3337
  "be configured on the individual post/page editor page (in the settings below "
@@ -3341,7 +3353,7 @@ msgstr ""
3341
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3342
  "nastavitvah pod urejevalnikom)."
3343
 
3344
- #: settings.php:1167
3345
  msgid ""
3346
  "Enable individual post/page exceptions for insertion of this block. When "
3347
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3351,13 +3363,13 @@ msgstr ""
3351
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3352
  "strani (v nastavitvah pod urejevalnikom)."
3353
 
3354
- #: settings.php:1167
3355
  msgid "Use exceptions for individual posts or pages to change insertion"
3356
  msgstr ""
3357
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3358
 
3359
  #. Translators: Enabled means...
3360
- #: settings.php:1175
3361
  msgid ""
3362
  "means the insertion for this block is enabled by default and disabled for "
3363
  "exceptions."
@@ -3366,7 +3378,7 @@ msgstr ""
3366
  "izjeme."
3367
 
3368
  #. Translators: Disabled means...
3369
- #: settings.php:1176
3370
  msgid ""
3371
  "means the insertion for this block is disabled by default and enabled for "
3372
  "exceptions."
@@ -3374,7 +3386,7 @@ msgstr ""
3374
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3375
  "izjeme."
3376
 
3377
- #: settings.php:1177
3378
  msgid ""
3379
  "When individual post/page exceptions are enabled they can be configured on "
3380
  "the individual post/page editor page (in the settings below the editor)."
@@ -3383,31 +3395,31 @@ msgstr ""
3383
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3384
  "urejevalnikom)."
3385
 
3386
- #: settings.php:1185
3387
  msgid ""
3388
  "No exception for post or static page defined. Block will not be inserted."
3389
  msgstr ""
3390
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3391
 
3392
- #: settings.php:1203
3393
  msgctxt "post"
3394
  msgid "Type"
3395
  msgstr "Vrsta"
3396
 
3397
  #. translators: %d: block number
3398
- #: settings.php:1205
3399
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3400
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3401
 
3402
- #: settings.php:1206
3403
  msgid "Clear listed exceptions for block"
3404
  msgstr "Pobriši izpisane izjeme za blok"
3405
 
3406
- #: settings.php:1232 settings.php:1380 settings.php:2042
3407
  msgid "Insertion"
3408
  msgstr "Vstavljanje"
3409
 
3410
- #: settings.php:1270
3411
  msgid ""
3412
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3413
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3423,7 +3435,7 @@ msgstr ""
3423
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3424
  "število pomeni štetje z nasprotne smeri"
3425
 
3426
- #: settings.php:1271
3427
  msgid ""
3428
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3429
  "means every N images, empty means all images, 0 means random image, value "
@@ -3438,7 +3450,7 @@ msgstr ""
3438
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3439
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3440
 
3441
- #: settings.php:1284
3442
  msgid ""
3443
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3444
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3447,7 +3459,7 @@ msgstr ""
3447
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3448
  "izvlečki"
3449
 
3450
- #: settings.php:1285
3451
  msgid ""
3452
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3453
  "numbers, %N means every N posts, empty means all posts"
@@ -3456,7 +3468,7 @@ msgstr ""
3456
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3457
  "prispevki"
3458
 
3459
- #: settings.php:1286
3460
  msgid ""
3461
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3462
  "numbers, %N means every N comments, empty means all comments"
@@ -3465,44 +3477,44 @@ msgstr ""
3465
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3466
  "vsi komentarji"
3467
 
3468
- #: settings.php:1293
3469
  msgid "Toggle paragraph counting settings"
3470
  msgstr "Preklopi nastavitve za štetje odstavkov"
3471
 
3472
- #: settings.php:1294
3473
  msgid "Toggle paragraph clearance settings"
3474
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3475
 
3476
- #: settings.php:1297
3477
  msgid "Toggle insertion filter settings"
3478
  msgstr "Preklopi nastavitve filtra vstavljanja"
3479
 
3480
- #: settings.php:1315
3481
  msgid "Toggle insertion and alignment icons"
3482
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3483
 
3484
- #: settings.php:1329
3485
  msgid "Custom CSS code for the wrapping div"
3486
  msgstr "CSS koda po meri za div za ovijanje"
3487
 
3488
- #: settings.php:1332 settings.php:1333 settings.php:1334 settings.php:1335
3489
- #: settings.php:1336 settings.php:1337
3490
  msgid "CSS code for the wrapping div, click to edit"
3491
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3492
 
3493
- #: settings.php:1350
3494
  msgid "HTML element"
3495
  msgstr "HTML element"
3496
 
3497
- #: settings.php:1363
3498
  msgid "HTML element selector or comma separated list of selectors"
3499
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3500
 
3501
- #: settings.php:1369 settings.php:2786
3502
  msgid "Action"
3503
  msgstr "Akcija"
3504
 
3505
- #: settings.php:1381
3506
  msgid ""
3507
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3508
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3512,50 +3524,50 @@ msgstr ""
3512
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3513
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3514
 
3515
- #: settings.php:1390
3516
  msgid "Code position"
3517
  msgstr "Položaj kode"
3518
 
3519
- #: settings.php:1391
3520
  msgid ""
3521
  "Page position where the code for client-side insertion will be inserted."
3522
  msgstr ""
3523
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3524
 
3525
- #: settings.php:1406
3526
  msgid "Count"
3527
  msgstr "Štej"
3528
 
3529
- #: settings.php:1412
3530
  msgid "paragraphs with tags"
3531
  msgstr "odstavke z značkami"
3532
 
3533
- #: settings.php:1418
3534
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3535
  msgstr ""
3536
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3537
 
3538
- #: settings.php:1427
3539
  msgid "that have between"
3540
  msgstr "ki imajo med"
3541
 
3542
- #: settings.php:1433
3543
  msgid "Minimum number of paragraph words, leave empty for no limit"
3544
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3545
 
3546
- #: settings.php:1442
3547
  msgid "Maximum number of paragraph words, leave empty for no limit"
3548
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3549
 
3550
- #: settings.php:1445
3551
  msgid "words"
3552
  msgstr "besed"
3553
 
3554
- #: settings.php:1460 settings.php:1519 settings.php:1589 settings.php:1615
3555
  msgid "Comma separated texts"
3556
  msgstr "Z vejico ločena besedila"
3557
 
3558
- #: settings.php:1473
3559
  msgid ""
3560
  "Count also paragraphs inside these elements - defined on general plugin "
3561
  "settings page - tab [*] / tab General"
@@ -3564,38 +3576,38 @@ msgstr ""
3564
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3565
 
3566
  #. Translators: %s: HTML tags
3567
- #: settings.php:1479
3568
  msgid "Count inside %s elements"
3569
  msgstr "Štej znotraj elementov %s"
3570
 
3571
  #. translators: inside [HTML tags] elements that contain
3572
- #: settings.php:1491
3573
  msgid "inside"
3574
  msgstr "znotraj"
3575
 
3576
- #: settings.php:1497
3577
  msgid "Comma separated HTML tag names of container elements"
3578
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3579
 
3580
  #. translators: inside [HTML tags] elements that contain
3581
- #: settings.php:1506
3582
  msgid "elements that"
3583
  msgstr "elementov, ki"
3584
 
3585
- #: settings.php:1532 settings.php:2165
3586
  msgid "Post/Static page must have between"
3587
  msgstr "Prispevek/Statična stran mora imeti med"
3588
 
3589
- #: settings.php:1538
3590
  msgid "Minimum number of paragraphs, leave empty for no limit"
3591
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3592
 
3593
- #: settings.php:1547
3594
  msgid "Maximum number of paragraphs, leave empty for no limit"
3595
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3596
 
3597
  #. Translators: Post/Static page must have between X and Y paragraphs
3598
- #: settings.php:1550
3599
  msgid "paragraph"
3600
  msgid_plural "paragraphs"
3601
  msgstr[0] "odstavek"
@@ -3603,11 +3615,11 @@ msgstr[1] "odstavka"
3603
  msgstr[2] "odstavke"
3604
  msgstr[3] "odstavkov"
3605
 
3606
- #: settings.php:1558
3607
  msgid "Minimum number of words in paragraphs above"
3608
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3609
 
3610
- #: settings.php:1564
3611
  msgid ""
3612
  "Used only with automatic insertion After paragraph and empty paragraph "
3613
  "numbers"
@@ -3615,128 +3627,128 @@ msgstr ""
3615
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3616
  "številkami odstavkov"
3617
 
3618
- #: settings.php:1574 settings.php:1600
3619
  msgid "In"
3620
  msgstr "V"
3621
 
3622
- #: settings.php:1580
3623
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3624
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3625
 
3626
- #: settings.php:1583
3627
  msgid "paragraphs above avoid"
3628
  msgstr "odstavkih zgoraj se izogni"
3629
 
3630
- #: settings.php:1606
3631
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3632
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3633
 
3634
- #: settings.php:1609
3635
  msgid "paragraphs below avoid"
3636
  msgstr "odstavkih spodaj se izogni"
3637
 
3638
- #: settings.php:1625
3639
  msgid "If text is found"
3640
  msgstr "Če je besedilo najdeno"
3641
 
3642
- #: settings.php:1632
3643
  msgid "check up to"
3644
  msgstr "preveri do"
3645
 
3646
- #: settings.php:1640
3647
  msgctxt "check up to"
3648
  msgid "paragraphs"
3649
  msgstr "odstavkov"
3650
 
3651
- #: settings.php:1656
3652
  msgid "Categories"
3653
  msgstr "Kategorije"
3654
 
3655
- #: settings.php:1659
3656
  msgid "Toggle category editor"
3657
  msgstr "Preklopi urejevalnik kategorij"
3658
 
3659
- #: settings.php:1662
3660
  msgid "Comma separated category slugs"
3661
  msgstr "Z vejico ločeni ključi kategorij"
3662
 
3663
- #: settings.php:1671
3664
  msgid "Blacklist categories"
3665
  msgstr "Črni seznam kategorij"
3666
 
3667
- #: settings.php:1675
3668
  msgid "Whitelist categories"
3669
  msgstr "Beli seznam kategorij"
3670
 
3671
- #: settings.php:1687
3672
  msgid "Tags"
3673
  msgstr "Oznake"
3674
 
3675
- #: settings.php:1690
3676
  msgid "Toggle tag editor"
3677
  msgstr "Preklopi urejevalnik oznak"
3678
 
3679
- #: settings.php:1693
3680
  msgid "Comma separated tag slugs"
3681
  msgstr "Z vejico ločeni ključi oznak"
3682
 
3683
- #: settings.php:1702
3684
  msgid "Blacklist tags"
3685
  msgstr "Črni seznam oznak"
3686
 
3687
- #: settings.php:1706
3688
  msgid "Whitelist tags"
3689
  msgstr "Beli seznam oznak"
3690
 
3691
- #: settings.php:1718
3692
  msgid "Taxonomies"
3693
  msgstr "Taksonomije"
3694
 
3695
- #: settings.php:1721
3696
  msgid "Toggle taxonomy editor"
3697
  msgstr "Preklopi urejevalnik taksonomij"
3698
 
3699
- #: settings.php:1724
3700
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3701
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3702
 
3703
- #: settings.php:1733
3704
  msgid "Blacklist taxonomies"
3705
  msgstr "Črni seznam taksonomij"
3706
 
3707
- #: settings.php:1737
3708
  msgid "Whitelist taxonomies"
3709
  msgstr "Beli seznam taksonomij"
3710
 
3711
- #: settings.php:1749
3712
  msgid "Post IDs"
3713
  msgstr "ID-ji prispevkov"
3714
 
3715
- #: settings.php:1752
3716
  msgid "Toggle post/page ID editor"
3717
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3718
 
3719
- #: settings.php:1755
3720
  msgid "Comma separated post/page IDs"
3721
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3722
 
3723
- #: settings.php:1764
3724
  msgid "Blacklist IDs"
3725
  msgstr "Črni seznam ID-jev"
3726
 
3727
- #: settings.php:1768
3728
  msgid "Whitelist IDs"
3729
  msgstr "Beli seznam ID-jev"
3730
 
3731
- #: settings.php:1780
3732
  msgid "Urls"
3733
  msgstr "Url-ji"
3734
 
3735
- #: settings.php:1783
3736
  msgid "Toggle url editor"
3737
  msgstr "Preklopi urejevalnik url-jev"
3738
 
3739
- #: settings.php:1786
3740
  msgid ""
3741
  "Comma separated urls (page addresses) starting with / after domain name (e."
3742
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3748,23 +3760,23 @@ msgstr ""
3748
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3749
  "začetek*. *url-vzorec*, *url-konec)"
3750
 
3751
- #: settings.php:1795
3752
  msgid "Blacklist urls"
3753
  msgstr "Črni seznam url-jev"
3754
 
3755
- #: settings.php:1799
3756
  msgid "Whitelist urls"
3757
  msgstr "Beli seznam url-jev"
3758
 
3759
- #: settings.php:1810
3760
  msgid "Url parameters"
3761
  msgstr "Url parametri"
3762
 
3763
- #: settings.php:1814
3764
  msgid "Toggle url parameter and cookie editor"
3765
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3766
 
3767
- #: settings.php:1817
3768
  msgid ""
3769
  "Comma separated url query parameters or cookies with optional values (use "
3770
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3773,23 +3785,23 @@ msgstr ""
3773
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3774
  "'piškotek=vrednost')"
3775
 
3776
- #: settings.php:1826
3777
  msgid "Blacklist url parameters"
3778
  msgstr "Črni seznam url parametrov"
3779
 
3780
- #: settings.php:1830
3781
  msgid "Whitelist url parameters"
3782
  msgstr "Beli seznam url parametrov"
3783
 
3784
- #: settings.php:1841
3785
  msgid "Referrers"
3786
  msgstr "Napotitelji"
3787
 
3788
- #: settings.php:1844
3789
  msgid "Toggle referer editor"
3790
  msgstr "Preklopi urejevalnik napotiteljev"
3791
 
3792
- #: settings.php:1847
3793
  msgid ""
3794
  "Comma separated domains, use # for no referrer, you can also use partial "
3795
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3797,48 +3809,48 @@ msgstr ""
3797
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3798
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3799
 
3800
- #: settings.php:1856
3801
  msgid "Blacklist referers"
3802
  msgstr "Črni seznam napotiteljev"
3803
 
3804
- #: settings.php:1860
3805
  msgid "Whitelist referers"
3806
  msgstr "Beli seznam napotiteljev"
3807
 
3808
- #: settings.php:1871
3809
  msgid "Clients"
3810
  msgstr "Odjemalci"
3811
 
3812
- #: settings.php:1874
3813
  msgid "Toggle client editor"
3814
  msgstr "Preklopi urejevalnik odjemalcev"
3815
 
3816
- #: settings.php:1877
3817
  msgid "Comma separated names (operating systems, browsers, devices)"
3818
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3819
 
3820
- #: settings.php:1886
3821
  msgid "Blacklist clients"
3822
  msgstr "Črni seznam odjemalcev"
3823
 
3824
- #: settings.php:1890
3825
  msgid "Whitelist clients"
3826
  msgstr "Beli seznam odjemalcev"
3827
 
3828
- #: settings.php:1911
3829
  msgid "Enable widget for this block"
3830
  msgstr "Omogočite gradnik za ta blok"
3831
 
3832
- #: settings.php:1923
3833
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3834
  msgstr ""
3835
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3836
 
3837
- #: settings.php:1924 settings.php:4269
3838
  msgid "Shortcode"
3839
  msgstr "Kratka koda"
3840
 
3841
- #: settings.php:1939
3842
  msgid ""
3843
  "Enable PHP function call to insert this block at any position in theme file. "
3844
  "If function is disabled for block it will return empty string."
@@ -3847,66 +3859,66 @@ msgstr ""
3847
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3848
  "prazen niz."
3849
 
3850
- #: settings.php:1940
3851
  msgid "PHP function"
3852
  msgstr "PHP funkcija"
3853
 
3854
- #: settings.php:1955
3855
  msgid "Client-side device detection"
3856
  msgstr "Zaznavanje naprave na strani odjemalca"
3857
 
3858
- #: settings.php:1956
3859
  msgid "Server-side device detection"
3860
  msgstr "Zaznavanje naprave na strani strežnika"
3861
 
3862
- #: settings.php:1963
3863
  msgid "Use client-side detection to"
3864
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3865
 
3866
- #: settings.php:1965
3867
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3868
  msgstr ""
3869
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3870
 
3871
  #. Translators: only on (the following devices): viewport names (devices)
3872
  #. listed
3873
- #: settings.php:1970
3874
  msgid "only on"
3875
  msgstr "samo na"
3876
 
3877
- #: settings.php:1998
3878
  msgid "Device min width %s px"
3879
  msgstr "Najmanjša širina naprave %s px"
3880
 
3881
- #: settings.php:2024
3882
  msgid "Use server-side detection to insert block only for"
3883
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3884
 
3885
- #: settings.php:2043
3886
  msgid "Filter"
3887
  msgstr "Filter"
3888
 
3889
- #: settings.php:2044
3890
  msgid "Word Count"
3891
  msgstr "Število Besed"
3892
 
3893
- #: settings.php:2045 settings.php:4259
3894
  msgid "Scheduling"
3895
  msgstr "Urnik"
3896
 
3897
- #: settings.php:2046
3898
  msgid "Display"
3899
  msgstr "Prikaz"
3900
 
3901
- #: settings.php:2048 settings.php:2310
3902
  msgid "General"
3903
  msgstr "Splošno"
3904
 
3905
- #: settings.php:2060
3906
  msgid "Old settings for AMP pages detected"
3907
  msgstr "Zaznane stare nastavitve za AMP strani"
3908
 
3909
- #: settings.php:2060
3910
  msgid ""
3911
  "To insert different codes on normal and AMP pages separate them with "
3912
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3917,44 +3929,44 @@ msgstr ""
3917
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3918
  "separatorja)."
3919
 
3920
- #: settings.php:2060
3921
  msgid "AMP pages"
3922
  msgstr "AMP strani"
3923
 
3924
- #: settings.php:2065
3925
  msgid "Enable insertion for Ajax requests"
3926
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3927
 
3928
- #: settings.php:2065
3929
  msgid "Ajax requests"
3930
  msgstr "Ajax zahteve"
3931
 
3932
- #: settings.php:2070
3933
  msgid "Enable insertion in RSS feeds"
3934
  msgstr "Omogoči vstavljanje v RSS virih"
3935
 
3936
- #: settings.php:2070
3937
  msgid "RSS Feed"
3938
  msgstr "RSS Vir"
3939
 
3940
- #: settings.php:2075
3941
  msgid "Enable insertion on page for Error 404: Page not found"
3942
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3943
 
3944
- #: settings.php:2075
3945
  msgid "Error 404 page"
3946
  msgstr "Stran napake 404"
3947
 
3948
- #: settings.php:2087
3949
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3950
  msgstr ""
3951
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3952
 
3953
- #: settings.php:2088
3954
  msgid "insertions"
3955
  msgstr "vstavljanj"
3956
 
3957
- #: settings.php:2090
3958
  msgid ""
3959
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3960
  "General)"
@@ -3962,15 +3974,15 @@ msgstr ""
3962
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3963
  "zavihek Splošno)"
3964
 
3965
- #: settings.php:2093 settings.php:2490
3966
  msgid "Max blocks per page"
3967
  msgstr "Največ blokov na stran"
3968
 
3969
- #: settings.php:2105
3970
  msgid "Insert for"
3971
  msgstr "Vstavi za"
3972
 
3973
- #: settings.php:2113
3974
  msgid ""
3975
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3976
  "currently active). Might speed up insertion on content pages when "
@@ -3980,26 +3992,26 @@ msgstr ""
3980
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3981
  "filter the_content večkrat klican."
3982
 
3983
- #: settings.php:2116
3984
  msgid "Insert only in the loop"
3985
  msgstr "Vstavi samo v zanki"
3986
 
3987
- #: settings.php:2122
3988
  msgid ""
3989
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3990
  msgstr ""
3991
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3992
  "Rocket"
3993
 
3994
- #: settings.php:2122
3995
  msgid "Disable caching"
3996
  msgstr "Onemogoči predpomnjenje"
3997
 
3998
- #: settings.php:2134
3999
  msgid "Filter insertions"
4000
  msgstr "Filtriraj vstavljanja"
4001
 
4002
- #: settings.php:2137
4003
  msgid ""
4004
  "Filter multiple insertions by specifying wanted insertions for this block - "
4005
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4011,56 +4023,56 @@ msgstr ""
4011
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4012
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4013
 
4014
- #: settings.php:2140
4015
  msgid "using"
4016
  msgstr "z uporabo"
4017
 
4018
- #: settings.php:2159
4019
  msgid "Checked means specified calls are unwanted"
4020
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4021
 
4022
- #: settings.php:2159
4023
  msgid "Invert filter"
4024
  msgstr "Obrni filter"
4025
 
4026
- #: settings.php:2166
4027
  msgid "Minimum number of post/static page words, leave empty for no limit"
4028
  msgstr ""
4029
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4030
  "omejitev"
4031
 
4032
- #: settings.php:2168
4033
  msgid "Maximum number of post/static page words, leave empty for no limit"
4034
  msgstr ""
4035
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4036
  "omejitev"
4037
 
4038
- #: settings.php:2181
4039
  msgid "for"
4040
  msgstr "za"
4041
 
4042
- #: settings.php:2181
4043
  msgid "days after publishing"
4044
  msgstr "dni po objavi"
4045
 
4046
- #: settings.php:2183
4047
  msgid "Not available"
4048
  msgstr "Ni na razpolago"
4049
 
4050
- #: settings.php:2196 settings.php:2482
4051
  msgid "Ad label"
4052
  msgstr "Oznaka oglasa"
4053
 
4054
- #: settings.php:2216
4055
  msgid "General tag"
4056
  msgstr "Splošna oznaka"
4057
 
4058
- #: settings.php:2220
4059
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4060
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4061
 
4062
  #. translators: %s: HTML tags
4063
- #: settings.php:2229
4064
  msgid ""
4065
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4066
  "client-side device detection!"
@@ -4069,7 +4081,7 @@ msgstr ""
4069
  "potrebna za zaznavanje naprave na strani odjemalca!"
4070
 
4071
  #. translators: %s: HTML tags for text and link
4072
- #: settings.php:2243
4073
  msgid ""
4074
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4075
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4078,86 +4090,86 @@ msgstr ""
4078
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4079
  "strežnika%s."
4080
 
4081
- #: settings.php:2259
4082
  msgid "Settings"
4083
  msgstr "Nastavitve"
4084
 
4085
- #: settings.php:2262
4086
  msgid "Settings timestamp"
4087
  msgstr "Časovni žig nastavitev"
4088
 
4089
- #: settings.php:2275
4090
  msgid "Are you sure you want to reset all settings?"
4091
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4092
 
4093
- #: settings.php:2275
4094
  msgid "Reset All Settings"
4095
  msgstr "Ponastavi Vse Nastavitve"
4096
 
4097
- #: settings.php:2311
4098
  msgid "Viewports"
4099
  msgstr "Pogledi"
4100
 
4101
- #: settings.php:2312
4102
  msgid "Hooks"
4103
  msgstr "Ročice"
4104
 
4105
- #: settings.php:2313
4106
  msgid "Header"
4107
  msgstr "Glava"
4108
 
4109
- #: settings.php:2314 strings.php:30
4110
  msgid "Footer"
4111
  msgstr "Noga"
4112
 
4113
- #: settings.php:2319
4114
  msgid "Debugging"
4115
  msgstr "Razhroščevanje"
4116
 
4117
- #: settings.php:2329
4118
  msgid "Plugin priority"
4119
  msgstr "Prednost vtičnika"
4120
 
4121
- #: settings.php:2337
4122
  msgid "Output buffering"
4123
  msgstr "Predpomnjenje izhoda"
4124
 
4125
- #: settings.php:2340
4126
  msgid "Needed for position Above header but may not work with all themes"
4127
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4128
 
4129
- #: settings.php:2348
4130
  msgid "Syntax highlighting theme"
4131
  msgstr "Tema za poudarjanje sintakse"
4132
 
4133
- #: settings.php:2355
4134
  msgctxt "no syntax highlighting themes"
4135
  msgid "None"
4136
  msgstr "Brez"
4137
 
4138
- #: settings.php:2356
4139
  msgid "No Syntax Highlighting"
4140
  msgstr "Brez Poudarjanja Sintakse"
4141
 
4142
- #: settings.php:2358
4143
  msgctxt "syntax highlighting themes"
4144
  msgid "Light"
4145
  msgstr "Svetle"
4146
 
4147
- #: settings.php:2373
4148
  msgctxt "syntax highlighting themes"
4149
  msgid "Dark"
4150
  msgstr "Temne"
4151
 
4152
- #: settings.php:2399
4153
  msgid "Min. user role for ind. exceptions editing"
4154
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4155
 
4156
- #: settings.php:2409
4157
  msgid "Disable caching for logged in administrators"
4158
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4159
 
4160
- #: settings.php:2412
4161
  msgid ""
4162
  "Enabled means that logged in administrators will see non-cached (live) pages "
4163
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4165,11 +4177,11 @@ msgstr ""
4165
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4166
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4167
 
4168
- #: settings.php:2420
4169
  msgid "Wait for jQuery"
4170
  msgstr "Čakaj na jQuery"
4171
 
4172
- #: settings.php:2423
4173
  msgid ""
4174
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4175
  "it will run the scripts that may need it"
@@ -4177,11 +4189,11 @@ msgstr ""
4177
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4178
  "bo pognal svoje skripte, ki jo potrebujejo"
4179
 
4180
- #: settings.php:2431
4181
  msgid "Sticky widget mode"
4182
  msgstr "Način za lepljive gradnike"
4183
 
4184
- #: settings.php:2434
4185
  msgid ""
4186
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4187
  "mode works with most themes but may reload ads on page load."
@@ -4190,19 +4202,19 @@ msgstr ""
4190
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4191
  "nalaganju strani."
4192
 
4193
- #: settings.php:2442
4194
  msgid "Sticky widget top margin"
4195
  msgstr "Zgornji rob za lepljiv gradnik"
4196
 
4197
- #: settings.php:2450
4198
  msgid "Dynamic blocks"
4199
  msgstr "Dinamični bloki"
4200
 
4201
- #: settings.php:2463
4202
  msgid "Functions for paragraph counting"
4203
  msgstr "Funkcije za štetje odstavkov"
4204
 
4205
- #: settings.php:2466
4206
  msgid ""
4207
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4208
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4211,15 +4223,15 @@ msgstr ""
4211
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4212
  "šteti."
4213
 
4214
- #: settings.php:2474
4215
  msgid "No paragraph counting inside"
4216
  msgstr "Ni štetja odstavkov znotraj"
4217
 
4218
- #: settings.php:2485
4219
  msgid "Label text or HTML code"
4220
  msgstr "Besedilo oznake ali HTML koda"
4221
 
4222
- #: settings.php:2493
4223
  msgid ""
4224
  "Maximum number of inserted blocks per page. You need to enable Max page "
4225
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4228,12 +4240,12 @@ msgstr ""
4228
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4229
  "omejitev."
4230
 
4231
- #: settings.php:2507
4232
  msgid "Plugin usage tracking"
4233
  msgstr "Sledenje uporabe vtičnika"
4234
 
4235
  #. translators: %s: Ad Inserter
4236
- #: settings.php:2510
4237
  msgid ""
4238
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4239
  "Only information regarding the WordPress environment and %s usage is "
@@ -4243,125 +4255,125 @@ msgstr ""
4243
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4244
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4245
 
4246
- #: settings.php:2528
4247
  msgid "CSS class name for the wrapping div"
4248
  msgstr "Ime CSS razreda za div za ovijanje"
4249
 
4250
- #: settings.php:2528
4251
  msgid "Block class name"
4252
  msgstr "Ime razreda za blok"
4253
 
4254
- #: settings.php:2534
4255
  msgid "Include block number class"
4256
  msgstr "Vključi razred številke bloka"
4257
 
4258
- #: settings.php:2534
4259
  msgid "Block number class"
4260
  msgstr "Razred številke bloka"
4261
 
4262
- #: settings.php:2539
4263
  msgid "Include block name class"
4264
  msgstr "Vključi razred imena bloka"
4265
 
4266
- #: settings.php:2539
4267
  msgid "Block name class"
4268
  msgstr "Razred imena bloka"
4269
 
4270
- #: settings.php:2544
4271
  msgid ""
4272
  "Instead of alignment classes generate inline alignment styles for blocks"
4273
  msgstr ""
4274
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4275
 
4276
- #: settings.php:2544
4277
  msgid "Inline styles"
4278
  msgstr "Medvrstični slogi"
4279
 
4280
- #: settings.php:2550
4281
  msgid "Preview of the block wrapping code"
4282
  msgstr "Predogled kode za ovijanje blokov"
4283
 
4284
- #: settings.php:2551
4285
  msgid "Wrapping div"
4286
  msgstr "div za ovijanje"
4287
 
4288
- #: settings.php:2552 settings.php:2992
4289
  msgid "BLOCK CODE"
4290
  msgstr "KODA BLOKA"
4291
 
4292
- #: settings.php:2560
4293
  msgid "Viewport Settings used for client-side device detection"
4294
  msgstr ""
4295
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4296
 
4297
  #. Translators: %d: viewport number
4298
- #: settings.php:2568
4299
  msgid "Viewport %d name"
4300
  msgstr "Ime pogleda %d"
4301
 
4302
- #: settings.php:2571
4303
  msgid "min width"
4304
  msgstr "najmanjša širina"
4305
 
4306
- #: settings.php:2582
4307
  msgid "Custom Hooks"
4308
  msgstr "Ročice Po Meri"
4309
 
4310
- #: settings.php:2594 settings.php:2597
4311
  msgid "Enable hook"
4312
  msgstr "Omogoči ročico"
4313
 
4314
  #. translators: %d: hook number
4315
- #: settings.php:2597
4316
  msgid "Hook %d name"
4317
  msgstr "Ime ročice %d"
4318
 
4319
- #: settings.php:2600
4320
  msgid "Hook name for automatic insertion selection"
4321
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4322
 
4323
- #: settings.php:2603
4324
  msgid "action"
4325
  msgstr "akcija"
4326
 
4327
- #: settings.php:2606
4328
  msgid "Action name as used in the do_action () function"
4329
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4330
 
4331
- #: settings.php:2609
4332
  msgid "priority"
4333
  msgstr "prednost"
4334
 
4335
- #: settings.php:2612
4336
  msgid "Priority for the hook (default is 10)"
4337
  msgstr "Prednost za ročico (privzeta je 10)"
4338
 
4339
- #: settings.php:2633
4340
  msgid "Enable insertion of this code into HTML page header"
4341
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4342
 
4343
- #: settings.php:2637 settings.php:2704 settings.php:2886
4344
  msgid "Process PHP code"
4345
  msgstr "Procesiraj PHP kodo"
4346
 
4347
- #: settings.php:2641
4348
  msgid "HTML Page Header Code"
4349
  msgstr "Koda v Glavi HTML Strani"
4350
 
4351
- #: settings.php:2649
4352
  msgid "Code in the %s section of the HTML page"
4353
  msgstr "Koda v %s delu HTML strani"
4354
 
4355
- #: settings.php:2650
4356
  msgctxt "code in the header"
4357
  msgid "NOT ENABLED"
4358
  msgstr "NI OMOGOČENA"
4359
 
4360
- #: settings.php:2667 settings.php:2735
4361
  msgid "Use server-side detection to insert code only for"
4362
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4363
 
4364
- #: settings.php:2682
4365
  msgid ""
4366
  "Enable insertion of this code into HTML page header on page for Error 404: "
4367
  "Page not found"
@@ -4369,29 +4381,29 @@ msgstr ""
4369
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4370
  "obstaja"
4371
 
4372
- #: settings.php:2682 settings.php:2750
4373
  msgid "Insert on Error 404 page"
4374
  msgstr "Vstavi na strani Napake 404"
4375
 
4376
- #: settings.php:2700
4377
  msgid "Enable insertion of this code into HTML page footer"
4378
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4379
 
4380
- #: settings.php:2708
4381
  msgid "HTML Page Footer Code"
4382
  msgstr "Koda v Nogi HTML Strani"
4383
 
4384
  #. translators: %s: HTML tags
4385
- #: settings.php:2716
4386
  msgid "Code before the %s tag of the the HTML page"
4387
  msgstr "Koda pred %s značko HTML strani"
4388
 
4389
- #: settings.php:2717
4390
  msgctxt "code in the footer"
4391
  msgid "NOT ENABLED"
4392
  msgstr "NI OMOGOČENA"
4393
 
4394
- #: settings.php:2750
4395
  msgid ""
4396
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4397
  "Page not found"
@@ -4399,32 +4411,32 @@ msgstr ""
4399
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4400
  "Stran ne obstaja"
4401
 
4402
- #: settings.php:2766
4403
  msgid "Code for ad blocking detection inserted. Click for details."
4404
  msgstr ""
4405
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4406
 
4407
- #: settings.php:2771
4408
  msgid "Enable detection of ad blocking"
4409
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4410
 
4411
- #: settings.php:2789
4412
  msgid "Global action when ad blocking is detected"
4413
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4414
 
4415
- #: settings.php:2795
4416
  msgid "No action for"
4417
  msgstr "Ni akcije za"
4418
 
4419
- #: settings.php:2796
4420
  msgid "Exceptions for global action when ad blocking is detected."
4421
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4422
 
4423
- #: settings.php:2806
4424
  msgid "Delay Action"
4425
  msgstr "Zakasni Akcijo"
4426
 
4427
- #: settings.php:2809
4428
  msgid ""
4429
  "Number of page views to delay action when ad blocking is detected. Leave "
4430
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4433,16 +4445,16 @@ msgstr ""
4433
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4434
  "strani). Nastavi piškotek."
4435
 
4436
- #: settings.php:2809
4437
  msgctxt "Delay Action for x "
4438
  msgid "page views"
4439
  msgstr "ogledov strani"
4440
 
4441
- #: settings.php:2814
4442
  msgid "No Action Period"
4443
  msgstr "Obdobje Brez Akcije"
4444
 
4445
- #: settings.php:2817
4446
  msgid ""
4447
  "Number of days to supress action when ad blocking is detected. Leave empty "
4448
  "for no no-action period (action fires always after defined page view delay). "
@@ -4452,16 +4464,16 @@ msgstr ""
4452
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4453
  "strani). Nastavi piškotek."
4454
 
4455
- #: settings.php:2817
4456
  msgctxt "no action period"
4457
  msgid "days"
4458
  msgstr "dni"
4459
 
4460
- #: settings.php:2822
4461
  msgid "Custom Selectors"
4462
  msgstr "Selektorji Po Meri"
4463
 
4464
- #: settings.php:2825
4465
  msgid ""
4466
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4467
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4471,15 +4483,15 @@ msgstr ""
4471
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4472
  "pomeni prisotnost blokiranja oglasov."
4473
 
4474
- #: settings.php:2837
4475
  msgid "Redirection Page"
4476
  msgstr "Stran za Preusmeritev"
4477
 
4478
- #: settings.php:2849
4479
  msgid "Custom Url"
4480
  msgstr "Url Po Meri"
4481
 
4482
- #: settings.php:2854
4483
  msgid ""
4484
  "Static page for redirection when ad blocking is detected. For other pages "
4485
  "select Custom url and set it below."
@@ -4487,35 +4499,35 @@ msgstr ""
4487
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4488
  "strani izberite Url Po Meri in ga nastavite spodaj."
4489
 
4490
- #: settings.php:2863
4491
  msgid "Custom Redirection Url"
4492
  msgstr "Url za Preusmeritev Po Meri"
4493
 
4494
- #: settings.php:2875
4495
  msgid "Message HTML code"
4496
  msgstr "HTML koda sporočila"
4497
 
4498
- #: settings.php:2888
4499
  msgid "Preview message when ad blocking is detected"
4500
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4501
 
4502
- #: settings.php:2917
4503
  msgid "Prevent visitors from closing the warning message"
4504
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4505
 
4506
- #: settings.php:2917
4507
  msgid "Undismissible Message"
4508
  msgstr "Neodstranljivo Sporočilo"
4509
 
4510
- #: settings.php:2923
4511
  msgid "Not undismissible for"
4512
  msgstr "Ni neodstranljivo za"
4513
 
4514
- #: settings.php:2924
4515
  msgid "Users which can close the warning message."
4516
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4517
 
4518
- #: settings.php:2938
4519
  msgid ""
4520
  "Force showing admin toolbar for administrators when viewing site. Enable "
4521
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4524,84 +4536,84 @@ msgstr ""
4524
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4525
  "skrbnike."
4526
 
4527
- #: settings.php:2946
4528
  msgid "Disable header code (Header tab)"
4529
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4530
 
4531
- #: settings.php:2950
4532
  msgid "Disable footer code (Footer tab)"
4533
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4534
 
4535
  #. translators: %s: Ad Inserter
4536
- #: settings.php:2954
4537
  msgid "Disable %s JavaScript code"
4538
  msgstr "Onemogoči %s JavaScript kodo"
4539
 
4540
  #. translators: %s: Ad Inserter
4541
- #: settings.php:2958
4542
  msgid "Disable %s CSS code"
4543
  msgstr "Onemogoči %s CSS kodo"
4544
 
4545
- #: settings.php:2962
4546
  msgid ""
4547
  "Disable PHP code processing (in all blocks including header and footer code)"
4548
  msgstr ""
4549
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4550
 
4551
- #: settings.php:2966
4552
  msgid "Disable insertion of all blocks"
4553
  msgstr "Onemogoči vstavljanje vseh blokov"
4554
 
4555
- #: settings.php:2970
4556
  msgid "Disable insertions"
4557
  msgstr "Onemogoči vstavljanja"
4558
 
4559
  #. translators: %s: Ad Inserter
4560
- #: settings.php:2982
4561
  msgid "%s CSS CODE"
4562
  msgstr "%s CSS KODA"
4563
 
4564
- #: settings.php:2985
4565
  msgid "HEADER CODE"
4566
  msgstr "KODA GLAVE"
4567
 
4568
  #. translators: %s: PHP tags
4569
- #: settings.php:2991
4570
  msgid "BLOCK PHP CODE"
4571
  msgstr "PHP KODA BLOKA"
4572
 
4573
  #. translators: %s: Ad Inserter
4574
- #: settings.php:2997
4575
  msgid "%s JS CODE"
4576
  msgstr "%s JS KODA"
4577
 
4578
- #: settings.php:3000
4579
  msgid "FOOTER CODE"
4580
  msgstr "KODA NOGE"
4581
 
4582
- #: settings.php:3009
4583
  msgid "Force showing admin toolbar when viewing site"
4584
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4585
 
4586
- #: settings.php:3016
4587
  msgid "Enable debugging functions in admin toolbar"
4588
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4589
 
4590
- #: settings.php:3018
4591
  msgid "Debugging functions in admin toolbar"
4592
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4593
 
4594
- #: settings.php:3025
4595
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4596
  msgstr ""
4597
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4598
  "zaslonih"
4599
 
4600
- #: settings.php:3027
4601
  msgid "Debugging functions on mobile screens"
4602
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4603
 
4604
- #: settings.php:3034
4605
  msgid ""
4606
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4607
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4616,11 +4628,11 @@ msgstr ""
4616
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4617
  "vedno omogočeno."
4618
 
4619
- #: settings.php:3036
4620
  msgid "Remote debugging"
4621
  msgstr "Oddaljeno razhroščevanje"
4622
 
4623
- #: settings.php:3043
4624
  msgid ""
4625
  "Disable translation to see original texts for the settings and messages in "
4626
  "English"
@@ -4628,210 +4640,210 @@ msgstr ""
4628
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4629
  "angleščini"
4630
 
4631
- #: settings.php:3045
4632
  msgid "Disable translation"
4633
  msgstr "Onemogoči prevod"
4634
 
4635
- #: settings.php:3415
4636
  msgid "Available positions for current theme"
4637
  msgstr "Razpoložljivi položaji za trenutno temo"
4638
 
4639
- #: settings.php:3416
4640
  msgid "Error checking pages"
4641
  msgstr "Napaka pri preverjanju strani"
4642
 
4643
- #: settings.php:3419
4644
  msgid "Toggle theme checker for available positions for automatic insertion"
4645
  msgstr ""
4646
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4647
 
4648
- #: settings.php:3419
4649
  msgctxt "Button"
4650
  msgid "Check"
4651
  msgstr "Preveri"
4652
 
4653
- #: settings.php:3426
4654
  msgid "Position"
4655
  msgstr "Položaj"
4656
 
4657
- #: settings.php:3431
4658
  msgid "Archive pages"
4659
  msgstr "Strani arhiva"
4660
 
4661
- #: settings.php:3490
4662
  msgid ""
4663
  "Position not available because output buffering (tab [*]) is not enabled"
4664
  msgstr ""
4665
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4666
 
4667
- #: settings.php:3493 strings.php:228
4668
  msgid "Position not checked yet"
4669
  msgstr "Položaj še ni bil preverjen"
4670
 
4671
- #: settings.php:3529
4672
  msgid "Toggle active/all blocks"
4673
  msgstr "Preklopi aktive/vse bloke"
4674
 
4675
- #: settings.php:3533 strings.php:215
4676
  msgid "Rearrange block order"
4677
  msgstr "Preuredi vrstni red blokov"
4678
 
4679
- #: settings.php:3538
4680
  msgid "Save new block order"
4681
  msgstr "Shrani vrstni red blokov"
4682
 
4683
- #: settings.php:3564
4684
  msgid "Toggle active/all ad units"
4685
  msgstr "Preklopi aktivne/vse oglasne enote"
4686
 
4687
- #: settings.php:3568
4688
  msgid "Reload AdSense ad units"
4689
  msgstr "Ponovno naloži oglasne enote AdSense"
4690
 
4691
- #: settings.php:3572
4692
  msgid "Clear authorization to access AdSense account"
4693
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4694
 
4695
- #: settings.php:3576 settings.php:4426 settings.php:4493 strings.php:223
4696
  msgid "Google AdSense Homepage"
4697
  msgstr "Google AdSense Domača Stran"
4698
 
4699
- #: settings.php:3592
4700
  msgid "Switch to physical ads.txt file"
4701
  msgstr "Preklopi na fizično datoteko ads.txt"
4702
 
4703
- #: settings.php:3593
4704
  msgid "Switch to virtual ads.txt file"
4705
  msgstr "Preklopi na navidezno datoteko ads.txt"
4706
 
4707
  #. translators: %s: ads.txt
4708
- #: settings.php:3603
4709
  msgid "Open %s"
4710
  msgstr "Odpri %s"
4711
 
4712
- #: settings.php:3611
4713
  msgid "Reload ads.txt file"
4714
  msgstr "Ponovno naloži datoteko ads.txt"
4715
 
4716
- #: settings.php:3615 settings.php:4553
4717
  msgid "Save"
4718
  msgstr "Shrani"
4719
 
4720
  #. translators: %s: Ad Inserter
4721
- #: settings.php:3790
4722
  msgid "ads.txt file: %s virtual ads.txt file"
4723
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4724
 
4725
- #: settings.php:3795 settings.php:3815 strings.php:207
4726
  msgid "Warning"
4727
  msgstr "Opozorilo"
4728
 
4729
  #. translators: %s: Ad Inserter
4730
- #: settings.php:3795
4731
  msgid "%s virtual file ads.txt not found"
4732
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4733
 
4734
- #: settings.php:3803
4735
  msgid "IMPORTANT"
4736
  msgstr "POMEMBNO"
4737
 
4738
- #: settings.php:3803
4739
  msgid "ads.txt file must be placed on the root domain"
4740
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4741
 
4742
- #: settings.php:3808
4743
  msgid "ads.txt file"
4744
  msgstr "datoteka ads.txt"
4745
 
4746
- #: settings.php:3808
4747
  msgid "NOT WRITABLE"
4748
  msgstr "NI ZAPISLJIVO"
4749
 
4750
- #: settings.php:3815
4751
  msgid "file %s not found"
4752
  msgstr "datoteka %s ni najdena"
4753
 
4754
- #: settings.php:3825
4755
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4756
  msgstr ""
4757
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4758
 
4759
  #. translators: %s: Ad Inserter
4760
- #: settings.php:3831
4761
  msgid "%s virtual ads.txt file"
4762
  msgstr "%s navidezna datoteka ads.txt"
4763
 
4764
- #: settings.php:3853
4765
  msgid "Advertising system"
4766
  msgstr "Oglaševalski sistem"
4767
 
4768
- #: settings.php:3854
4769
  msgid "Account ID"
4770
  msgstr "ID Računa"
4771
 
4772
- #: settings.php:3856
4773
  msgid "Certification authority ID"
4774
  msgstr "ID organa za potrjevanje"
4775
 
4776
- #: settings.php:3871
4777
  msgid "Account ID found in block and present in ads.txt"
4778
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4779
 
4780
- #: settings.php:3875
4781
  msgid "Account ID found in block but not present in ads.txt"
4782
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4783
 
4784
- #: settings.php:4209
4785
  msgid "Preview block"
4786
  msgstr "Predogled bloka"
4787
 
4788
- #: settings.php:4216
4789
  msgid "Pause block"
4790
  msgstr "Ustavite blok"
4791
 
4792
- #: settings.php:4255
4793
  msgid "Automatic insertion"
4794
  msgstr "Samodejno vstavljanje"
4795
 
4796
  #. translators: %s HTML tags
4797
- #: settings.php:4256 settings.php:5224
4798
  msgid "PHP code processing"
4799
  msgstr "Procesiranje PHP kode"
4800
 
4801
- #: settings.php:4258
4802
  msgid "Device detection"
4803
  msgstr "Zaznavanje naprave"
4804
 
4805
- #: settings.php:4281
4806
  msgid "No active block"
4807
  msgstr "Noben aktiven blok"
4808
 
4809
- #: settings.php:4282
4810
  msgid "No block matches search keywords"
4811
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4812
 
4813
- #: settings.php:4337
4814
  msgid "Ad unit"
4815
  msgstr "Enota"
4816
 
4817
- #: settings.php:4339
4818
  msgid "Slot ID"
4819
  msgstr "ID mesta"
4820
 
4821
- #: settings.php:4365
4822
  msgid "Copy AdSense code"
4823
  msgstr "Kopiraj kodo AdSense"
4824
 
4825
- #: settings.php:4368
4826
  msgid "Preview AdSense ad"
4827
  msgstr "Predogled oglasa AdSense"
4828
 
4829
- #: settings.php:4371
4830
  msgid "Get AdSense code"
4831
  msgstr "Pridobi kodo AdSense"
4832
 
4833
  #. translators: %s: HTML tags
4834
- #: settings.php:4403
4835
  msgid ""
4836
  "Please %s clear authorization %s with the button %s above and once again "
4837
  "authorize access to your AdSense account."
@@ -4839,16 +4851,16 @@ msgstr ""
4839
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4840
  "avtorizirajte dostop do vašega računa AdSense."
4841
 
4842
- #: settings.php:4422
4843
  msgid "AdSense Integration"
4844
  msgstr "Integracija AdSense"
4845
 
4846
- #: settings.php:4424
4847
  msgid "AdSense Integration - Step 2"
4848
  msgstr "Integracija AdSense - Korak 2"
4849
 
4850
  #. translators: %s: HTML tags
4851
- #: settings.php:4430
4852
  msgid ""
4853
  "Authorize %s to access your AdSense account. Click on the %s Get "
4854
  "Authorization Code %s button to open a new window where you can allow "
@@ -4861,7 +4873,7 @@ msgstr ""
4861
  "Avtoriziraj. %s"
4862
 
4863
  #. translators: %s: HTML tags
4864
- #: settings.php:4437
4865
  msgid ""
4866
  "If you get error, can't access ad units or would like to use own Google API "
4867
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4872,7 +4884,7 @@ msgstr ""
4872
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4873
 
4874
  #. translators: %s: HTML tags
4875
- #: settings.php:4439
4876
  msgid ""
4877
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4878
  "Authorization Code %s button to open a new window where you can allow "
@@ -4885,7 +4897,7 @@ msgstr ""
4885
  "gumb %s Avtoriziraj. %s"
4886
 
4887
  #. translators: %s: HTML tags
4888
- #: settings.php:4446
4889
  msgid ""
4890
  "If you get error %s invalid client %s click on the button %s Clear and "
4891
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4893,32 +4905,32 @@ msgstr ""
4893
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4894
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4895
 
4896
- #: settings.php:4457
4897
  msgid "Get Authorization Code"
4898
  msgstr "Pridobi Avtoriazcijsko Kodo"
4899
 
4900
- #: settings.php:4460
4901
  msgid "Enter Authorization Code"
4902
  msgstr "Vnesi Avorizacijsko Kodo"
4903
 
4904
- #: settings.php:4470
4905
  msgid "Use own API IDs"
4906
  msgstr "Uporabi lastne API ID-je"
4907
 
4908
- #: settings.php:4472
4909
  msgid "Clear and return to Step 1"
4910
  msgstr "Odstrani in se vrni na Korak 1"
4911
 
4912
- #: settings.php:4476
4913
  msgid "Authorize"
4914
  msgstr "Avtoriziraj"
4915
 
4916
- #: settings.php:4492
4917
  msgid "AdSense Integration - Step 1"
4918
  msgstr "Integracija AdSense - Korak 1"
4919
 
4920
  #. translators: %s: Ad Inserter
4921
- #: settings.php:4496
4922
  msgid ""
4923
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4924
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4931,12 +4943,12 @@ msgstr ""
4931
  "Odjemalca in Skrivnost Odjemalca."
4932
 
4933
  #. translators: %s: HTML tags
4934
- #: settings.php:4505
4935
  msgid "Go to %s Google APIs and Services console %s"
4936
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4937
 
4938
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4939
- #: settings.php:4506
4940
  msgid ""
4941
  "Create %1$s project - if the project and IDs are already created click on "
4942
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4945,7 +4957,7 @@ msgstr ""
4945
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4946
 
4947
  #. translators: %s: HTML tags
4948
- #: settings.php:4507
4949
  msgid ""
4950
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4951
  "create a new project"
@@ -4954,12 +4966,12 @@ msgstr ""
4954
  "ustvaritev novega projekta"
4955
 
4956
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4957
- #: settings.php:4508
4958
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4959
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4960
 
4961
  #. translators: %s: HTML tags
4962
- #: settings.php:4509
4963
  msgid ""
4964
  "Click on project selection, wait for the project to be created and then and "
4965
  "select %s as the current project"
@@ -4968,39 +4980,39 @@ msgstr ""
4968
  "izberite %s kot trenutni projekt"
4969
 
4970
  #. translators: %s: HTML tags
4971
- #: settings.php:4510
4972
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4973
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4974
 
4975
  #. translators: %s: HTML tags
4976
- #: settings.php:4511
4977
  msgid "Search for adsense and enable %s"
4978
  msgstr "Poiščite adsense in omogočite %s"
4979
 
4980
  #. translators: %s: HTML tags
4981
- #: settings.php:4512
4982
  msgid "Click on %s CREATE CREDENTIALS %s"
4983
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4984
 
4985
  #. translators: %s: HTML tags
4986
- #: settings.php:4513
4987
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4988
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4989
 
4990
  #. translators: %s: HTML tags
4991
- #: settings.php:4514
4992
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4993
  msgstr ""
4994
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4995
  "podatki %s"
4996
 
4997
  #. translators: %s: HTML tags
4998
- #: settings.php:4515
4999
  msgid "Click on %s What credentials do I need? %s"
5000
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5001
 
5002
  #. translators: %s: HTML tags
5003
- #: settings.php:4516
5004
  msgid ""
5005
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5006
  "Ad Inserter client %s"
@@ -5009,7 +5021,7 @@ msgstr ""
5009
  "vnestite %s Ad Inserter odjemalec %s"
5010
 
5011
  #. translators: %s: HTML tags
5012
- #: settings.php:4517
5013
  msgid ""
5014
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5015
  "enter %s"
@@ -5018,17 +5030,17 @@ msgstr ""
5018
  "uporabnikom %s vnesite %s"
5019
 
5020
  #. translators: %s: HTML tags
5021
- #: settings.php:4518
5022
  msgid "Click on %s Continue %s"
5023
  msgstr "Kliknite na %s Nadaljuj %s"
5024
 
5025
  #. translators: %s: HTML tags
5026
- #: settings.php:4519
5027
  msgid "Click on %s Done %s"
5028
  msgstr "Kliknite na %s Končaj %s"
5029
 
5030
  #. translators: %s: HTML tags
5031
- #: settings.php:4520
5032
  msgid ""
5033
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5034
  "secret %s"
@@ -5036,63 +5048,63 @@ msgstr ""
5036
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5037
  "%s Skrivnost odjemalca %s"
5038
 
5039
- #: settings.php:4521
5040
  msgid "Copy them to the appropriate fields below"
5041
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5042
 
5043
- #: settings.php:4527
5044
  msgid "Client ID"
5045
  msgstr "ID odjemalca"
5046
 
5047
- #: settings.php:4530
5048
  msgid "Enter Client ID"
5049
  msgstr "Vnesite ID odjemalca"
5050
 
5051
- #: settings.php:4535
5052
  msgid "Client secret"
5053
  msgstr "Skrivnost odjemalca"
5054
 
5055
- #: settings.php:4538
5056
  msgid "Enter Client secret"
5057
  msgstr "Vnesite Skrivnost odjemalca"
5058
 
5059
- #: settings.php:4548
5060
  msgid "Use default API IDs"
5061
  msgstr "Uporabi privzete API ID-je"
5062
 
5063
- #: settings.php:4712
5064
  msgid "All posts"
5065
  msgstr "Vsi prispevki"
5066
 
5067
- #: settings.php:4713
5068
  msgid "All static pages"
5069
  msgstr "Vse statične strani"
5070
 
5071
- #: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
5072
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5073
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5074
 
5075
- #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
5076
- #: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
5077
- #: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
5078
- #: settings.php:5166 settings.php:5170
5079
  msgid "Looking for AdSense alternative?"
5080
  msgstr "Iščete alternativo za AdSense?"
5081
 
5082
- #: settings.php:4928
5083
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5084
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5085
 
5086
- #: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
5087
- #: settings.php:5179
5088
  msgid "Use Infolinks ads with Adsense to earn more"
5089
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5090
 
5091
- #: settings.php:4954 settings.php:5004
5092
  msgid "Support plugin development"
5093
  msgstr "Podprite razvoj vtičnika"
5094
 
5095
- #: settings.php:4959 settings.php:5005
5096
  msgid ""
5097
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5098
  "reviewing the plugin on WordPres"
@@ -5100,12 +5112,12 @@ msgstr ""
5100
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5101
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5102
 
5103
- #: settings.php:4959
5104
  msgctxt "Review Ad Inserter"
5105
  msgid "Review"
5106
  msgstr "Ocenite"
5107
 
5108
- #: settings.php:4964
5109
  msgid ""
5110
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5111
  "rating the plugin on WordPres"
@@ -5113,12 +5125,12 @@ msgstr ""
5113
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5114
  "razširiti novico z oceno vtičnika na WordPress-u"
5115
 
5116
- #: settings.php:4964
5117
  msgctxt "Rate Ad Inserter"
5118
  msgid "Rate"
5119
  msgstr "Ocenite"
5120
 
5121
- #: settings.php:4969
5122
  msgid ""
5123
  "Support free Ad Inserter development. If you are making money with Ad "
5124
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5127,16 +5139,16 @@ msgstr ""
5127
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5128
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5129
 
5130
- #: settings.php:4969
5131
  msgid "Donate"
5132
  msgstr "Donirajte"
5133
 
5134
- #: settings.php:4976 settings.php:5020
5135
  msgid "Average rating of the plugin - Thank you!"
5136
  msgstr "Povprečna ocena vtičnika - Hvala!"
5137
 
5138
  #. translators: %s: Ad Inserter, HTML tags
5139
- #: settings.php:4987
5140
  msgid ""
5141
  "You've been using %s for a while now, and I hope you're happy with it. "
5142
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5151,24 +5163,24 @@ msgstr ""
5151
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5152
  "bi rekli 'Hvala'."
5153
 
5154
- #: settings.php:5005
5155
  msgid "Review"
5156
  msgstr "Ocena"
5157
 
5158
- #: settings.php:5009
5159
  msgid "Ad Inserter on Twitter"
5160
  msgstr "Ad Inserter na Twitter-ju"
5161
 
5162
- #: settings.php:5010
5163
  msgid "Ad Inserter on Facebook"
5164
  msgstr "Ad Inserter na Facebook-u"
5165
 
5166
- #: settings.php:5013
5167
  msgid "Follow Ad Inserter"
5168
  msgstr "Sledi Ad Inserter-ju"
5169
 
5170
  #. translators: %s: HTML tags
5171
- #: settings.php:5040
5172
  msgid ""
5173
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5174
  "and %s Common Settings %s pages"
@@ -5177,7 +5189,7 @@ msgstr ""
5177
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5178
 
5179
  #. translators: %s: HTML tags
5180
- #: settings.php:5052
5181
  msgid ""
5182
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5183
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -5188,7 +5200,7 @@ msgstr ""
5188
  "%s Infolinks %s oglasno kodo %s"
5189
 
5190
  #. translators: %s: HTML tags
5191
- #: settings.php:5073
5192
  msgid ""
5193
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5194
  "purchase you refer to us"
@@ -5197,7 +5209,7 @@ msgstr ""
5197
  "nakup, ki nam ga posredujete"
5198
 
5199
  #. translators: %s: HTML tags
5200
- #: settings.php:5080
5201
  msgid ""
5202
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5203
  "diagnose and fix the problem."
@@ -5206,7 +5218,7 @@ msgstr ""
5206
  "navodili za diagnozo in rešitvami za težave."
5207
 
5208
  #. translators: %s: HTML tags
5209
- #: settings.php:5084
5210
  msgid ""
5211
  "If you need any kind of help or support, please do not hesitate to open a "
5212
  "thread on the %s support forum. %s"
@@ -5214,57 +5226,57 @@ msgstr ""
5214
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5215
  "nit na %s podpornem forumu. %s"
5216
 
5217
- #: settings.php:5110 settings.php:5174 settings.php:5178
5218
  msgid "Code preview with visual CSS editor"
5219
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5220
 
5221
- #: settings.php:5114 settings.php:5164
5222
  msgid "A/B testing - Track ad impressions and clicks"
5223
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5224
 
5225
- #: settings.php:5129
5226
  msgid "Insert ads on AMP pages"
5227
  msgstr "Vstavite oglase na AMP straneh"
5228
 
5229
- #: settings.php:5137
5230
  msgid "Ad blocking detection and content protection"
5231
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5232
 
5233
- #: settings.php:5187
5234
  msgid "Looking for Pro Ad Management plugin?"
5235
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5236
 
5237
- #: settings.php:5188
5238
  msgid "To Optimally Monetize your WordPress website?"
5239
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5240
 
5241
  #. Translators: %s: price of Ad Inserter Pro
5242
- #: settings.php:5189
5243
  msgid "Different license types starting from %s"
5244
  msgstr "Različni tipi licenc začenši od %s"
5245
 
5246
  #. translators: %s HTML tags
5247
- #: settings.php:5192
5248
  msgid "%s AdSense Integration %s"
5249
  msgstr "%s Integracija AdSense %s"
5250
 
5251
  #. translators: %s HTML tags
5252
- #: settings.php:5193
5253
  msgid "Syntax highlighting %s editor %s"
5254
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5255
 
5256
  #. translators: %s HTML tags
5257
- #: settings.php:5194
5258
  msgid "%s Code preview %s with visual CSS editor"
5259
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5260
 
5261
  #. translators: %s HTML tags
5262
- #: settings.php:5195
5263
  msgid "Simple user interface - all settings on a single page"
5264
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5265
 
5266
  #. translators: %s HTML tags
5267
- #: settings.php:5196
5268
  msgid ""
5269
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5270
  "image / excerpt"
@@ -5273,27 +5285,27 @@ msgstr ""
5273
  "%s / sliko / izvlečkom"
5274
 
5275
  #. translators: %s HTML tags
5276
- #: settings.php:5197
5277
  msgid "%s Automatic insertion %s between posts on blog pages"
5278
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5279
 
5280
  #. translators: %s HTML tags
5281
- #: settings.php:5198
5282
  msgid "%s Automatic insertion %s before, between and after comments"
5283
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5284
 
5285
  #. translators: %s HTML tags
5286
- #: settings.php:5199
5287
  msgid "%s Automatic insertion %s after %s or before %s tag"
5288
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5289
 
5290
  #. translators: %s HTML tags
5291
- #: settings.php:5200
5292
  msgid "Automatic insertion at %s custom hook positions %s"
5293
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5294
 
5295
  #. translators: %s HTML tags
5296
- #: settings.php:5201
5297
  msgid ""
5298
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5299
  "selectors)"
@@ -5302,17 +5314,17 @@ msgstr ""
5302
  "selektorjev)"
5303
 
5304
  #. translators: %s HTML tags
5305
- #: settings.php:5202
5306
  msgid "%s Insertion exceptions %s for individual posts and pages"
5307
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5308
 
5309
  #. translators: %s HTML tags
5310
- #: settings.php:5203
5311
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5312
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5313
 
5314
  #. translators: %s HTML tags
5315
- #: settings.php:5204
5316
  msgid ""
5317
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5318
  "scrolls)"
@@ -5321,19 +5333,19 @@ msgstr ""
5321
  "se stran pomika)"
5322
 
5323
  #. translators: %s HTML tags
5324
- #: settings.php:5205
5325
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5326
  msgstr ""
5327
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5328
 
5329
  #. translators: %s HTML tags
5330
- #: settings.php:5206
5331
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5332
  msgstr ""
5333
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5334
 
5335
  #. translators: %s HTML tags
5336
- #: settings.php:5207
5337
  msgid ""
5338
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5339
  "visible)"
@@ -5342,7 +5354,7 @@ msgstr ""
5342
  "postane viden)"
5343
 
5344
  #. translators: %s HTML tags
5345
- #: settings.php:5208
5346
  msgid ""
5347
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5348
  msgstr ""
@@ -5350,12 +5362,12 @@ msgstr ""
5350
  "strani)"
5351
 
5352
  #. translators: %s HTML tags
5353
- #: settings.php:5209
5354
  msgid "Block %s alignment and style %s customizations"
5355
  msgstr "%s Poravnave in slogi %s bloka po meri"
5356
 
5357
  #. translators: %s HTML tags
5358
- #: settings.php:5210
5359
  msgid ""
5360
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5361
  "TOS)"
@@ -5363,7 +5375,7 @@ msgstr ""
5363
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5364
 
5365
  #. translators: %s HTML tags
5366
- #: settings.php:5211
5367
  msgid ""
5368
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5369
  "feeds"
@@ -5372,17 +5384,17 @@ msgstr ""
5372
  "virih"
5373
 
5374
  #. translators: %s HTML tags
5375
- #: settings.php:5212
5376
  msgid "%s Ad rotation %s (works also with caching)"
5377
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5378
 
5379
  #. translators: %s HTML tags
5380
- #: settings.php:5213
5381
  msgid "Create, edit and check %s ads.txt %s file"
5382
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5383
 
5384
  #. translators: %s HTML tags
5385
- #: settings.php:5214
5386
  msgid ""
5387
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5388
  "AdSense)"
@@ -5391,81 +5403,81 @@ msgstr ""
5391
  "AdSense)"
5392
 
5393
  #. translators: %s HTML tags
5394
- #: settings.php:5215
5395
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5396
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5397
 
5398
  #. translators: %s HTML tags
5399
- #: settings.php:5216
5400
  msgid "%s Public web reports %s for clients, export to PDF"
5401
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5402
 
5403
  #. translators: %s HTML tags
5404
- #: settings.php:5217
5405
  msgid "Support for %s A/B testing %s"
5406
  msgstr "Podpora za %s A/B testiranje %s"
5407
 
5408
  #. translators: %s HTML tags
5409
- #: settings.php:5218
5410
  msgid "Frequency capping - %s limit impressions or clicks %s"
5411
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5412
 
5413
  #. translators: %s HTML tags
5414
- #: settings.php:5219
5415
  msgid "Click fraud %s protection %s"
5416
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5417
 
5418
  #. translators: %s HTML tags
5419
- #: settings.php:5220
5420
  msgid "Support for %s lazy loading %s"
5421
  msgstr "Podpora za %s leno nalaganje %s"
5422
 
5423
  #. translators: %s HTML tags
5424
- #: settings.php:5221
5425
  msgid "Support for ads on %s AMP pages %s"
5426
  msgstr "Podpora za oglase na %s AMP straneh %s"
5427
 
5428
  #. translators: %s HTML tags
5429
- #: settings.php:5222
5430
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5431
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5432
 
5433
  #. translators: %s HTML tags
5434
- #: settings.php:5223
5435
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5436
  msgstr ""
5437
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5438
 
5439
  #. translators: %s HTML tags
5440
- #: settings.php:5225
5441
  msgid "%s Banner %s code generator"
5442
  msgstr "Generator kode za %s pasice %s"
5443
 
5444
  #. translators: %s HTML tags
5445
- #: settings.php:5226
5446
  msgid "Support for %s header and footer %s code"
5447
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5448
 
5449
  #. translators: %s HTML tags
5450
- #: settings.php:5227
5451
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5452
  msgstr ""
5453
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5454
 
5455
  #. translators: %s HTML tags
5456
- #: settings.php:5228
5457
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5458
  msgstr ""
5459
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5460
  "strežnika"
5461
 
5462
  #. translators: %s HTML tags
5463
- #: settings.php:5229
5464
  msgid "Client-side %s mobile device detection %s (works with caching)"
5465
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5466
 
5467
  #. translators: %s HTML tags
5468
- #: settings.php:5230
5469
  msgid ""
5470
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5471
  "protection"
@@ -5474,12 +5486,12 @@ msgstr ""
5474
  "vsebine"
5475
 
5476
  #. translators: %s HTML tags
5477
- #: settings.php:5231
5478
  msgid "%s Ad blocking statistics %s"
5479
  msgstr "%s Statistika blokiranja oglasov %s"
5480
 
5481
  #. translators: %s HTML tags
5482
- #: settings.php:5232
5483
  msgid ""
5484
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5485
  "referrers, operating systems, browsers"
@@ -5488,75 +5500,75 @@ msgstr ""
5488
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5489
 
5490
  #. translators: %s HTML tags
5491
- #: settings.php:5233
5492
  msgid ""
5493
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5494
  msgstr ""
5495
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5496
 
5497
  #. translators: %s HTML tags
5498
- #: settings.php:5234
5499
  msgid "%s Multisite options %s to limit settings on the sites"
5500
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5501
 
5502
  #. translators: %s HTML tags
5503
- #: settings.php:5235
5504
  msgid "%s Import/Export %s block or plugin settings"
5505
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5506
 
5507
  #. translators: %s HTML tags
5508
- #: settings.php:5236
5509
  msgid "%s Insertion scheduling %s with fallback option"
5510
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5511
 
5512
  #. translators: %s HTML tags
5513
- #: settings.php:5237
5514
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5515
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5516
 
5517
  #. translators: %s HTML tags
5518
- #: settings.php:5238
5519
  msgid "Simple troubleshooting with many %s debugging functions %s"
5520
  msgstr ""
5521
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5522
 
5523
  #. translators: %s HTML tags
5524
- #: settings.php:5239
5525
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5526
  msgstr ""
5527
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5528
 
5529
  #. translators: %s HTML tags
5530
- #: settings.php:5240
5531
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5532
  msgstr ""
5533
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5534
 
5535
  #. translators: %s HTML tags
5536
- #: settings.php:5241
5537
  msgid ""
5538
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5539
  msgstr ""
5540
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5541
 
5542
  #. translators: %s HTML tags
5543
- #: settings.php:5242
5544
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5545
  msgstr ""
5546
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5547
 
5548
  #. translators: %s HTML tags
5549
- #: settings.php:5243
5550
  msgid "No ads on the settings page"
5551
  msgstr "Stran z nastavitvami brez oglasov"
5552
 
5553
  #. translators: %s HTML tags
5554
- #: settings.php:5244
5555
  msgid "Premium support"
5556
  msgstr "Vrhunska podpora"
5557
 
5558
  #. translators: %s HTML tags
5559
- #: settings.php:5247
5560
  msgid ""
5561
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5562
  "website with many advertising features to automatically insert adverts on "
@@ -5583,82 +5595,82 @@ msgstr ""
5583
  "bodo ohranile)."
5584
 
5585
  #. translators: %s HTML tags
5586
- #: settings.php:5260
5587
  msgid "Looking for %s Pro Ad Management plugin? %s"
5588
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5589
 
5590
  #. translators: %s HTML tags
5591
- #: settings.php:5265
5592
  msgid "Ads between posts"
5593
  msgstr "Oglasi med prispevki"
5594
 
5595
  #. translators: %s HTML tags
5596
- #: settings.php:5266
5597
  msgid "Ads between comments"
5598
  msgstr "Oglasi med komentarji"
5599
 
5600
  #. translators: %s HTML tags
5601
- #: settings.php:5267
5602
  msgid "Support via email"
5603
  msgstr "Podpora prek elektronske pošte"
5604
 
5605
  #. translators: %s HTML tags
5606
- #: settings.php:5273
5607
  msgid "%s Sticky positions %s"
5608
  msgstr "%s Lepljivi položaji %s"
5609
 
5610
  #. translators: %s HTML tags
5611
- #: settings.php:5274
5612
  msgid "%s Limit insertions %s"
5613
  msgstr "%s Omeji vstavljanja %s"
5614
 
5615
  #. translators: %s HTML tags
5616
- #: settings.php:5275
5617
  msgid "%s Clearance %s options"
5618
  msgstr "Možnosti %s izogibanja %s"
5619
 
5620
  #. translators: %s HTML tags
5621
- #: settings.php:5281
5622
  msgid "Ad rotation"
5623
  msgstr "Vrtenje oglasov"
5624
 
5625
  #. translators: %s HTML tags
5626
- #: settings.php:5282
5627
  msgid "%s A/B testing %s"
5628
  msgstr "%s A/B testiranje %s"
5629
 
5630
  #. translators: %s HTML tags
5631
- #: settings.php:5283
5632
  msgid "%s Ad tracking %s"
5633
  msgstr "%s Sledenje oglasom %s"
5634
 
5635
  #. translators: %s HTML tags
5636
- #: settings.php:5289
5637
  msgid "Support for %s AMP pages %s"
5638
  msgstr "Podpora za %s AMP strani %s"
5639
 
5640
  #. translators: %s HTML tags
5641
- #: settings.php:5290
5642
  msgid "%s Ad blocking detection %s"
5643
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5644
 
5645
  #. translators: %s HTML tags
5646
- #: settings.php:5291
5647
  msgid "%s Mobile device detection %s"
5648
  msgstr "%s Zaznavanje mobilne naprave %s"
5649
 
5650
  #. translators: %s HTML tags
5651
- #: settings.php:5298
5652
  msgid "64 code blocks"
5653
  msgstr "64 kodnih blokov"
5654
 
5655
  #. translators: %s HTML tags
5656
- #: settings.php:5299
5657
  msgid "%s GEO targeting %s"
5658
  msgstr "%s GEO ciljanje %s"
5659
 
5660
  #. translators: %s HTML tags
5661
- #: settings.php:5300
5662
  msgid "%s Scheduling %s"
5663
  msgstr "%s Urnik %s"
5664
 
@@ -6190,197 +6202,207 @@ msgid "Advanced"
6190
  msgstr "Napredno"
6191
 
6192
  #: strings.php:163
 
 
 
 
 
 
 
 
 
 
6193
  msgid "Top right"
6194
  msgstr "Zgoraj desno"
6195
 
6196
- #: strings.php:164
6197
  msgid "Top left"
6198
  msgstr "Zgoraj levo"
6199
 
6200
- #: strings.php:165
6201
  msgid "Bottom right"
6202
  msgstr "Spodaj desno"
6203
 
6204
- #: strings.php:166
6205
  msgid "Bottom left"
6206
  msgstr "Spodaj levo"
6207
 
6208
- #: strings.php:168
6209
  msgctxt "AdSense Ad Type"
6210
  msgid "Standard"
6211
  msgstr "Običajni"
6212
 
6213
- #: strings.php:169
6214
  msgctxt "AdSense Ad Type"
6215
  msgid "Link"
6216
  msgstr "Povezave"
6217
 
6218
- #: strings.php:170
6219
  msgctxt "AdSense Ad Type"
6220
  msgid "In-article"
6221
  msgstr "V članku"
6222
 
6223
- #: strings.php:171
6224
  msgctxt "AdSense Ad Type"
6225
  msgid "In-feed"
6226
  msgstr "V viru"
6227
 
6228
- #: strings.php:172
6229
  msgctxt "AdSense Ad Type"
6230
  msgid "Matched content"
6231
  msgstr "Prilagojena vsebina"
6232
 
6233
- #: strings.php:173
6234
  msgctxt "AdSense Ad Type"
6235
  msgid "Auto Ads"
6236
  msgstr "Samodejni"
6237
 
6238
- #: strings.php:174
6239
  msgctxt "AdSense Ad Type"
6240
  msgid "AMP Only"
6241
  msgstr "Samo AMP"
6242
 
6243
- #: strings.php:176
6244
  msgctxt "AMP ad"
6245
  msgid "Disabled"
6246
  msgstr "Onemogočen"
6247
 
6248
- #: strings.php:177
6249
  msgid "Above the fold"
6250
  msgstr "Nad pregibom"
6251
 
6252
- #: strings.php:178
6253
  msgid "Below the fold"
6254
  msgstr "Pod pregibom"
6255
 
6256
- #: strings.php:179
6257
  msgctxt "AMP ad"
6258
  msgid "Sticky"
6259
  msgstr "Lepljiv"
6260
 
6261
- #: strings.php:181
6262
  msgctxt "size"
6263
  msgid "Fixed"
6264
  msgstr "Fiksna"
6265
 
6266
- #: strings.php:182
6267
  msgctxt "size"
6268
  msgid "Responsive"
6269
  msgstr "Odzivna"
6270
 
6271
- #: strings.php:183
6272
  msgctxt "size"
6273
  msgid "Fixed by viewport"
6274
  msgstr "Fiksna glede na pogled"
6275
 
6276
- #: strings.php:187
6277
  msgid "Impressions and clicks"
6278
  msgstr "Prikazi in Kliki"
6279
 
6280
- #: strings.php:188
6281
  msgid "Advanced WordPress Ad Management Plugin"
6282
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6283
 
6284
- #: strings.php:194
6285
  msgctxt "Button"
6286
  msgid "Hide"
6287
  msgstr "Skrij"
6288
 
6289
- #: strings.php:195
6290
  msgctxt "Button"
6291
  msgid "Show"
6292
  msgstr "Pokaži"
6293
 
6294
- #: strings.php:196
6295
  msgid "Insertion expired"
6296
  msgstr "Vstavljanje poteklo"
6297
 
6298
- #: strings.php:197
6299
  msgid "Duration"
6300
  msgstr "Trajanje"
6301
 
6302
- #: strings.php:198
6303
  msgid "Invalid end date - must be after start date"
6304
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6305
 
6306
- #: strings.php:199
6307
  msgid "Invalid start date - only data for 1 year back is available"
6308
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6309
 
6310
- #: strings.php:200
6311
  msgid "Invalid date range - only data for 1 year can be displayed"
6312
  msgstr ""
6313
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6314
 
6315
- #: strings.php:208
6316
  msgid "Delete"
6317
  msgstr "Pobriši"
6318
 
6319
- #: strings.php:209
6320
  msgid "Switch"
6321
  msgstr "Preklopi"
6322
 
6323
- #: strings.php:211
6324
  msgid "Delete all statistics data?"
6325
  msgstr "Pobrišem vse podatke o statistiki?"
6326
 
6327
  #. translators: %s: dates
6328
- #: strings.php:213
6329
  msgid "Delete statistics data between %s and %s?"
6330
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6331
 
6332
- #: strings.php:214
6333
  msgid "Cancel block order rearrangement"
6334
  msgstr "Prekliči preureditev vrstnega reda blokov"
6335
 
6336
- #: strings.php:216
6337
  msgid "downloading..."
6338
  msgstr "prenašam..."
6339
 
6340
- #: strings.php:217
6341
  msgid "download error"
6342
  msgstr "napaka pri prenosu"
6343
 
6344
- #: strings.php:218
6345
  msgid "update error"
6346
  msgstr "napaka pri posodobitvi"
6347
 
6348
- #: strings.php:219
6349
  msgid "Updating..."
6350
  msgstr "Posodabljam..."
6351
 
6352
- #: strings.php:221
6353
  msgid "ERROR"
6354
  msgstr "NAPAKA"
6355
 
6356
- #: strings.php:222
6357
  msgid "Error reloading settings"
6358
  msgstr "Napaka pri nalaganju nastavitev"
6359
 
6360
- #: strings.php:224
6361
  msgctxt "Search field placeholder"
6362
  msgid "Search..."
6363
  msgstr "Išči..."
6364
 
6365
- #: strings.php:225
6366
  msgctxt "Search field placeholder"
6367
  msgid "Filter..."
6368
  msgstr "Filter..."
6369
 
6370
- #: strings.php:226
6371
  msgid "Use filter to limit names in the list"
6372
  msgstr "Uporabite filter za omejitev imen v seznamu"
6373
 
6374
- #: strings.php:227
6375
  msgctxt "Button"
6376
  msgid "Filter"
6377
  msgstr "Filter"
6378
 
6379
- #: strings.php:229
6380
  msgid "Position not available"
6381
  msgstr "Položaj ni na razpolago"
6382
 
6383
- #: strings.php:230
6384
  msgid ""
6385
  "Theme check | Selected position for automatic insertion might not be not "
6386
  "available on this page type"
@@ -6388,104 +6410,104 @@ msgstr ""
6388
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6389
  "razpolago na tem tipu strani"
6390
 
6391
- #: strings.php:231
6392
  msgid "Position available"
6393
  msgstr "Položaj na razpolago"
6394
 
6395
- #: strings.php:233
6396
  msgid "Select or upload banner image"
6397
  msgstr "Izberi ali naloži sliko pasice"
6398
 
6399
- #: strings.php:234
6400
  msgid "Use this image"
6401
  msgstr "Uporabi to sliko"
6402
 
6403
- #: strings.php:235
6404
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6405
  msgstr ""
6406
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6407
 
6408
- #: strings.php:237
6409
  msgctxt "Monday"
6410
  msgid "MO"
6411
  msgstr "PO"
6412
 
6413
- #: strings.php:238
6414
  msgctxt "Tuesday"
6415
  msgid "TU"
6416
  msgstr "TO"
6417
 
6418
- #: strings.php:239
6419
  msgctxt "Wednesday"
6420
  msgid "WE"
6421
  msgstr "SR"
6422
 
6423
- #: strings.php:240
6424
  msgctxt "Thursday"
6425
  msgid "TH"
6426
  msgstr "ČE"
6427
 
6428
- #: strings.php:241
6429
  msgctxt "Friday"
6430
  msgid "FR"
6431
  msgstr "PE"
6432
 
6433
- #: strings.php:242
6434
  msgctxt "Saturday"
6435
  msgid "SA"
6436
  msgstr "SO"
6437
 
6438
- #: strings.php:243
6439
  msgctxt "Sunday"
6440
  msgid "SU"
6441
  msgstr "NE"
6442
 
6443
- #: strings.php:257
 
 
 
 
 
 
 
 
 
6444
  msgid "Add"
6445
  msgstr "Dodaj"
6446
 
6447
- #: strings.php:258
6448
  msgctxt "Element"
6449
  msgid "Parent"
6450
  msgstr "Nadrejeni"
6451
 
6452
- #: strings.php:259
6453
  msgid "Cancel element selection"
6454
  msgstr "Prekliči izbor HTML elementa"
6455
 
6456
- #: strings.php:260
6457
  msgid "Select parent element"
6458
  msgstr "Izberi nadrejeni element"
6459
 
6460
- #: strings.php:261
6461
  msgid "CSS selector"
6462
  msgstr "CSS selektor"
6463
 
6464
- #: strings.php:262
6465
  msgid "Use current selector"
6466
  msgstr "Uporabi trenutni selektor"
6467
 
6468
- #: strings.php:263
6469
  msgid "ELEMENT"
6470
  msgstr "ELEMENT"
6471
 
6472
- #: strings.php:264
6473
  msgid "PATH"
6474
  msgstr "POT"
6475
 
6476
- #: strings.php:265
6477
  msgid "SELECTOR"
6478
  msgstr "SELEKTOR"
6479
 
6480
- #: strings.php:268
6481
- msgctxt "Scheduling"
6482
- msgid "FALLBACK"
6483
- msgstr "REZERVA"
6484
-
6485
- #: strings.php:269
6486
- msgid "Automatically placed by AdSense Auto ads code"
6487
- msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6488
-
6489
  #. Description of the plugin/theme
6490
  msgid ""
6491
  "Ad management with many advanced advertising features to insert ads at "
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2020-04-07 13:55:50+00:00\n"
8
+ "PO-Revision-Date: 2020-04-07 15:57+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:390
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:406
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:413
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:498
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:505
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:514
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:521
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:532
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:539
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
+ #: ad-inserter.php:1163
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1168
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
+ #: ad-inserter.php:1173 strings.php:103
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
+ #: ad-inserter.php:1178 strings.php:104
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
+ #: ad-inserter.php:1183 strings.php:105
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1188 strings.php:155
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1235
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1239
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1534
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1869 ad-inserter.php:2964
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2355
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2355
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2356
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2357
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2358
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2359
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2360
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
+ #: ad-inserter.php:2659
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
+ #: ad-inserter.php:2662
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2666
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:2671
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
+ #: ad-inserter.php:2674
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
+ #: ad-inserter.php:2687
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
+ #: ad-inserter.php:2689
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
+ #: ad-inserter.php:2695
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
+ #: ad-inserter.php:2712 ad-inserter.php:2747
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
+ #: ad-inserter.php:2719
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:2729
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:2761
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:2761
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:2856
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:2885 ad-inserter.php:10073 class.php:2123
227
+ #: includes/preview.php:2003 includes/preview.php:2046
228
+ #: includes/preview.php:2083 settings.php:4257 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:2886 settings.php:4258 settings.php:4343
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
+ #: ad-inserter.php:2889 settings.php:1178
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
+ #: ad-inserter.php:2892
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
+ #: ad-inserter.php:2893
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
+ #: ad-inserter.php:2905
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
+ #: ad-inserter.php:2908
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
+ #: ad-inserter.php:2925 ad-inserter.php:2937 strings.php:161
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
+ #: ad-inserter.php:2925 ad-inserter.php:2937
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
+ #: includes/functions.php:2574 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
+ #: ad-inserter.php:2927
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
+ #: ad-inserter.php:2929
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
+ #: ad-inserter.php:2957
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
+ #: ad-inserter.php:2962
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
+ #: ad-inserter.php:2965 settings.php:1156
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
+ #: ad-inserter.php:2967
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
+ #: ad-inserter.php:2968
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
+ #: ad-inserter.php:2970
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
+ #: ad-inserter.php:2972
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
+ #: ad-inserter.php:3019
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
+ #: ad-inserter.php:3022
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
+ #: ad-inserter.php:3025
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
+ #: ad-inserter.php:3028
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
+ #: ad-inserter.php:3031
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
+ #: ad-inserter.php:3034
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
+ #: ad-inserter.php:3037
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
+ #: ad-inserter.php:3040
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
+ #: ad-inserter.php:3043
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
+ #: ad-inserter.php:3060
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
+ #: ad-inserter.php:3061
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
+ #: ad-inserter.php:3090
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
+ #: ad-inserter.php:3225
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
+ #: ad-inserter.php:3225
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
+ #: ad-inserter.php:3241
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
+ #: ad-inserter.php:3241
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
+ #: ad-inserter.php:3241 ad-inserter.php:3474
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
+ #: ad-inserter.php:3474
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
+ #: ad-inserter.php:3474
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
+ #: ad-inserter.php:3480
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
+ #: ad-inserter.php:3480
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
+ #: ad-inserter.php:3480
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
+ #: ad-inserter.php:5915
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
+ #: ad-inserter.php:6581
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
+ #: ad-inserter.php:6582
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
+ #: ad-inserter.php:6635
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
+ #: ad-inserter.php:6637
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
+ #: ad-inserter.php:6736
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
+ #: ad-inserter.php:7112 ad-inserter.php:7114 ad-inserter.php:7137
461
+ #: settings.php:2174
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
+ #: ad-inserter.php:7151 ad-inserter.php:7272
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
+ #: ad-inserter.php:7348
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
+ #: ad-inserter.php:7468
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
+ #: ad-inserter.php:7543
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
+ #: ad-inserter.php:9381 ad-inserter.php:9464
486
  msgctxt "category name"
487
  msgid "Uncategorized"
488
  msgstr "Nekategorizirano"
489
 
490
+ #: ad-inserter.php:9691
491
  msgid "requires WordPress 4.6 or newer"
492
  msgstr "potrebuje WordPress 4.6 ali novejši"
493
 
494
+ #: ad-inserter.php:9691
495
  msgid "Please update!"
496
  msgstr "Prosimo, posodobite!"
497
 
498
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
499
  #. name with HTML tags will be added)
500
+ #: ad-inserter.php:9946
501
  msgid "Thank you for installing"
502
  msgstr "Hvala za namestitev vtičnika"
503
 
504
  #. translators: Opt-in message: %s: HTML tags
505
+ #: ad-inserter.php:9948
506
  msgid ""
507
  "We would like to %s track its usage %s on your site. This is completely "
508
  "optional and can be disabled at any time."
510
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
511
  "izbirno in se lahko izključi kadarkoli."
512
 
513
+ #: ad-inserter.php:9950
514
  msgid ""
515
  "We don't record any sensitive data, only information regarding the WordPress "
516
  "environment and plugin usage, which will help us to make improvements to the "
520
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
521
 
522
  #. translators: Deactivation message: %s: HTML tags
523
+ #: ad-inserter.php:9987
524
  msgid ""
525
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
526
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
531
  "nam %s in poskušali vam bomo pomagati."
532
 
533
  #. translators: %s: Ad Inserter
534
+ #: ad-inserter.php:10031
535
  msgid "%s block."
536
  msgstr "%s blok."
537
 
538
  #. translators: widget title
539
+ #: ad-inserter.php:10047 ad-inserter.php:10082
540
  msgid "Processing log"
541
  msgstr "Dnevnik procesiranja"
542
 
543
  #. translators: widget title
544
+ #: ad-inserter.php:10049 ad-inserter.php:10083
545
  msgid "Dummy widget"
546
  msgstr "Prazen gradnik"
547
 
548
  #. translators: widget title
549
+ #: ad-inserter.php:10051 ad-inserter.php:10081
550
  msgid "Debugging tools"
551
  msgstr "Orodja za razhroščevanje"
552
 
553
  #. translators: block status (widget title)
554
+ #: ad-inserter.php:10058
555
  msgctxt "block"
556
  msgid "PAUSED"
557
  msgstr "USTAVLJEN"
558
 
559
+ #: ad-inserter.php:10059
560
  msgid "WIDGET DISABLED"
561
  msgstr "GRADNIK ONEMOGOČEN"
562
 
563
+ #: ad-inserter.php:10060
564
  msgid "Unknown block"
565
  msgstr "Neznan blok"
566
 
567
+ #: ad-inserter.php:10068 includes/functions-check-now.php:3261
568
+ #: includes/functions.old.php:3186 includes/functions.php:3499
569
+ #: settings.php:1208
570
  msgid "Title"
571
  msgstr "Naslov"
572
 
573
+ #: ad-inserter.php:10090
574
  msgctxt "Widget"
575
  msgid "Sticky"
576
  msgstr "Lepljiv"
577
 
578
+ #: ad-inserter.php:10139
579
  msgid ""
580
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
581
  "Inserter you need to first deactivate Ad Inserter Pro."
584
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
585
  "Inserter Pro."
586
 
587
+ #: ad-inserter.php:10140
588
  msgid ""
589
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
590
  "will clear all settings that are available only in the Pro version "
599
  msgid "PHP error in %s block"
600
  msgstr "PHP napaka v bloku %s"
601
 
602
+ #: class.php:2073
603
  msgid "Counters"
604
  msgstr "Števci"
605
 
606
+ #: class.php:2077
607
  msgid "Content"
608
  msgstr "Vsebina"
609
 
610
+ #: class.php:2082
611
  msgid "Excerpt"
612
  msgstr "Izvleček"
613
 
614
+ #: class.php:2087 strings.php:17
615
  msgid "Before post"
616
  msgstr "Pred prispevkom"
617
 
618
+ #: class.php:2092 strings.php:18
619
  msgid "After post"
620
  msgstr "Za prispevkom"
621
 
622
+ #: class.php:2097 strings.php:25
623
  msgid "Between posts"
624
  msgstr "Med prispevki"
625
 
626
+ #: class.php:2102 settings.php:1917 settings.php:4275
627
  msgid "Widget"
628
  msgstr "Gradnik"
629
 
630
+ #: class.php:2107 settings.php:4273
631
  msgid "PHP function call"
632
  msgstr "Klic PHP funkcije"
633
 
634
  #. Translators: %s: custom hook name
635
+ #: class.php:2117
636
  msgid "Custom hook %s call"
637
  msgstr "Klic ročice po meri %s"
638
 
639
+ #: class.php:2153
640
  msgid "AJAX REQUEST"
641
  msgstr "AJAX ZAHTEVEK"
642
 
643
+ #: class.php:2156
644
  msgid "Ajax request for block in iframe"
645
  msgstr "Ajax zahtevek za blok v iframe-u"
646
 
647
+ #: class.php:2190
648
  msgid "Ajax request url, click to open it in a new tab"
649
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
650
 
651
+ #: class.php:2193
652
  msgid "IN THE LOOP"
653
  msgstr "V ZANKI"
654
 
655
+ #: class.php:2193
656
  msgid "YES"
657
  msgstr "DA"
658
 
659
+ #: class.php:2193
660
  msgid "NO"
661
  msgstr "NE"
662
 
663
+ #: class.php:2229
664
  msgid "BLOCK"
665
  msgstr "BLOK"
666
 
667
+ #: class.php:2229
668
  msgctxt "block or widget"
669
  msgid "INSERTED BUT NOT VISIBLE"
670
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
671
 
672
+ #: class.php:2397
673
  msgctxt "viewports"
674
  msgid "ALL"
675
  msgstr "VSI"
676
 
677
+ #: class.php:2430 class.php:2472 class.php:3745 strings.php:261
678
  msgctxt "Block"
679
  msgid "HIDDEN"
680
  msgstr "SKRIT"
681
 
682
+ #: class.php:2479 class.php:3748 strings.php:260
683
  msgctxt "Block"
684
  msgid "VISIBLE"
685
  msgstr "VIDEN"
686
 
687
+ #: class.php:2984 class.php:3054
688
  msgid "ACTIVE GROUPS"
689
  msgstr "AKTIVNE SKUPINE"
690
 
691
+ #: class.php:3444
692
  msgid "start='%s' end='%s' days='%s' type='%s'"
693
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
+ #: class.php:3452
697
  msgid "parameters='%s' type='%s'"
698
  msgstr "parametri='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
+ #: class.php:3454
702
  msgid "referers='%s' type='%s'"
703
  msgstr "napotitelji='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
+ #: class.php:3456
707
  msgid "clients='%s' type='%s'"
708
  msgstr "odjemalci='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
+ #: class.php:3628
712
  msgid "countries='%s' type='%s'"
713
  msgstr "države='%s' tip='%s'"
714
 
715
  #. translators: %s: list parameters and type
716
+ #: class.php:3630
717
  msgid "ip addresses='%s' type='%s'"
718
  msgstr "ip naslovi='%s' tip='%s'"
719
 
720
+ #: class.php:3745 class.php:3748
721
  msgid "viewport='%s' type='%s'"
722
  msgstr "pogled='%s' tip='%s'"
723
 
724
+ #: class.php:4102 strings.php:254
725
  msgid "BEFORE"
726
  msgstr "PRED"
727
 
728
+ #: class.php:4110 strings.php:256
729
  msgid "PREPEND CONTENT"
730
  msgstr "DODAJ PRED VSEBINO"
731
 
732
+ #: class.php:4114 strings.php:257
733
  msgid "APPEND CONTENT"
734
  msgstr "DODAJ ZA VSEBINO"
735
 
736
+ #: class.php:4118 strings.php:258
737
  msgid "REPLACE CONTENT"
738
  msgstr "NADOMESTI VSEBINO"
739
 
740
+ #: class.php:4122 strings.php:259
741
  msgid "REPLACE ELEMENT"
742
  msgstr "NADOMESTI ELEMENT"
743
 
744
+ #: class.php:4133 strings.php:255
745
  msgid "AFTER"
746
  msgstr "ZA"
747
 
748
+ #: class.php:4218 includes/preview.php:2046 includes/preview.php:2083
749
  msgid "Code"
750
  msgstr "Koda"
751
 
752
+ #: class.php:4221
753
  msgid "for block"
754
  msgstr "za blok"
755
 
756
+ #: class.php:7886
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
762
  "namestiti DOM razširitev za PHP."
763
 
764
  #: includes/editor.php:7 includes/placeholders.php:352
765
+ #: includes/preview.php:1989 strings.php:267
766
  msgid "Use"
767
  msgstr "Uporabi"
768
 
769
+ #: includes/editor.php:8 includes/preview.php:1990
770
  msgid "Reset"
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
+ #: includes/preview.php:1992 settings.php:3616 strings.php:213 strings.php:266
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
780
  msgstr "Vizualni Urejevalnik Kode"
781
 
782
  #: includes/editor.php:262 includes/preview-adb.php:289
783
+ #: includes/preview.php:1979
784
  msgid ""
785
  "This page was not loaded properly. Please check browser, plugins and ad "
786
  "blockers."
788
  "Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
789
  "blokiranje oglasov."
790
 
791
+ #: includes/editor.php:264 settings.php:291
792
  msgid "Error loading page"
793
  msgstr "Napaka pri nalaganju strani"
794
 
795
  #: includes/editor.php:264 includes/preview-adb.php:291
796
+ #: includes/preview.php:1981
797
  msgid "PAGE BLOCKED"
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
+ #: includes/functions.php:302
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
+ #: includes/functions.php:321
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
+ #: includes/functions.php:398
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
+ #: includes/functions.php:398
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
+ #: includes/functions.php:402
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
+ #: includes/functions.php:422
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
+ #: includes/functions.php:425
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
+ #: includes/functions.php:427
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
+ #: includes/functions.php:434
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
+ #: includes/functions.php:434
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
+ #: includes/functions.php:449
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
+ #: includes/functions.php:452
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
+ #: includes/functions.php:453 settings.php:1359 settings.php:2831
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
+ #: includes/functions.php:458
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
+ #: includes/functions.php:461
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
+ #: includes/functions.php:472
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
+ #: includes/functions.php:487
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
+ #: includes/functions.php:487
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
+ #: includes/functions.php:494
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
+ #: includes/functions.php:499
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
+ #: includes/functions.php:513
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
+ #: includes/functions.php:521 includes/functions.php:3242
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
+ #: includes/functions-check-now.php:528 includes/functions.php:530
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
+ #: includes/functions.php:545
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
+ #: includes/functions.php:549
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
+ #: includes/functions.php:553
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
+ #: includes/functions.php:561 settings.php:1113 settings.php:2275
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
+ #: includes/functions.php:621 includes/preview.php:2132
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
+ #: includes/functions.php:644
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
+ #: includes/functions.php:652 includes/preview.php:2187
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
+ #: includes/functions.php:667
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
+ #: includes/functions.php:692 includes/preview.php:2238
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
+ #: includes/functions.php:710
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
+ #: includes/functions.php:719
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
+ #: includes/functions.php:723
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
+ #: includes/functions.php:723
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
+ #: includes/functions.php:727
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
+ #: includes/functions.php:727
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
+ #: includes/functions.php:731
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
+ #: includes/functions.php:733
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
+ #: includes/functions.php:775 includes/functions.php:2713
1029
+ #: includes/functions.php:2729
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
+ #: includes/functions.php:779 includes/functions.php:2717
1037
+ #: includes/functions.php:2733
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
+ #: includes/functions.php:786
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
+ #: includes/functions.php:792 settings.php:3551 settings.php:3587
1048
+ #: settings.php:3629 strings.php:223
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
+ #: includes/functions.php:813
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
+ #: includes/functions.php:817
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
+ #: includes/functions.php:820 includes/functions.php:5736
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
+ #: includes/functions.php:820 includes/functions.php:5736
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
+ #: includes/functions.php:823 includes/functions.php:5739
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
+ #: includes/functions.php:823 includes/functions.php:5739
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
+ #: includes/functions.php:826 includes/functions.php:5742
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
+ #: includes/functions.php:826 includes/functions.php:5742
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
+ #: includes/functions.php:829 includes/functions.php:5745
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
+ #: includes/functions.php:832 includes/functions.php:5748
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
+ #: includes/functions.php:835 includes/functions.php:5751
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
+ #: includes/functions.php:838 includes/functions.php:5754
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
+ #: includes/functions.php:841 includes/functions.php:5757
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
+ #: includes/functions.php:851 includes/functions.php:5767
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
+ #: includes/functions.php:867
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
+ #: includes/functions.php:867
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
+ #: includes/functions.php:871
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
+ #: includes/functions.php:871
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
+ #: includes/functions.php:875
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
+ #: includes/functions.php:888
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
+ #: includes/functions.php:898
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
+ #: includes/functions.php:900
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
+ #: includes/functions.php:930
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
+ #: includes/functions.php:936
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
+ #: includes/functions.php:939
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
+ #: includes/functions.php:942
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
+ #: includes/functions.php:951
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
+ #: includes/functions.php:955
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
+ #: includes/functions.php:966
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
+ #: includes/functions.php:967
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
+ #: includes/functions.php:971 includes/functions.php:3207
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
+ #: includes/functions.php:974
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
+ #: includes/functions.php:978 includes/functions.php:3210
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
+ #: includes/functions.php:987
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
+ #: includes/functions.php:991
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
+ #: includes/functions.php:1447 includes/functions.php:1757
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
+ #: includes/functions.php:1453
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
+ #: includes/functions-check-now.php:1402 includes/functions.php:1467
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
+ #: includes/functions-check-now.php:1404 includes/functions.php:1469
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
+ #: includes/functions-check-now.php:1406 includes/functions.php:1471
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
+ #: includes/functions.php:1476 includes/functions.php:1766
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
+ #: includes/functions.php:1482
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
+ #: includes/functions.php:1491
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
+ #: includes/functions.php:1492
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
+ #: includes/functions.php:1500
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
+ #: includes/functions.php:1501
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
+ #: includes/functions.php:1501
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
+ #: includes/functions.php:1759
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
+ #: includes/functions.php:1768
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
+ #: includes/functions.php:1784
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
+ #: includes/functions.php:1791
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
+ #: includes/functions.php:1801
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
+ #: includes/functions.php:1804
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
+ #: includes/functions.php:1818
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
+ #: includes/functions.php:1820
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
+ #: includes/functions.php:1833
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
+ #: includes/functions.php:1885
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
+ #: includes/functions.php:2506
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
+ #: includes/functions.php:2510 settings.php:4262
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
+ #: includes/functions.php:2515
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
+ #: includes/functions.php:2520 settings.php:4268
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
+ #: includes/functions.php:2551
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
+ #: includes/functions.php:2560
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
+ #: includes/functions.php:2564
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
+ #: includes/functions.php:2590 settings.php:1441 settings.php:1456
1446
+ #: settings.php:1546 settings.php:2172
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
+ #: includes/functions.php:2572
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
+ #: includes/functions.php:2573
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
+ #: includes/functions.php:2610
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
+ #: includes/functions.php:2614 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
+ #: includes/functions.php:2615
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
+ #: includes/functions.php:2621 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
+ #: includes/functions.php:2622
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
+ #: includes/functions.php:2629
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
+ #: includes/functions.php:2634
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
+ #: includes/functions.php:2634 includes/preview.php:2001 settings.php:1108
1498
+ #: settings.php:2893
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
+ #: includes/functions.php:2648 settings.php:4269
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
+ #: includes/functions.php:2653 includes/functions.php:4712
1511
+ #: includes/functions.php:4775 settings.php:2322
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
+ #: includes/functions.php:2662
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
+ #: includes/functions.php:2671
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
+ #: includes/functions.php:2737
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
+ #: includes/functions.php:2741
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
+ #: includes/functions.php:2755
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
+ #: includes/functions.php:2761 includes/functions.php:2773
1557
+ #: includes/functions.php:2858
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
+ #: includes/functions.php:2780 includes/functions.php:2790
1578
+ #: includes/functions.php:2809 includes/functions.php:2819
1579
+ #: includes/functions.php:2865 includes/functions.php:2874
1580
+ #: includes/functions.php:2892 includes/functions.php:2901 settings.php:2093
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
+ #: includes/functions.php:2781
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
+ #: includes/functions.php:2783 includes/functions.php:2793
1602
+ #: includes/functions.php:2868 includes/functions.php:2877
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
+ #: includes/functions.php:2791
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
+ #: includes/functions.php:2797 includes/functions.php:2826
1627
+ #: includes/functions.php:2881 includes/functions.php:2908
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
+ #: includes/functions.php:2798 includes/functions.php:2827
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
+ #: includes/functions.php:2800 includes/functions.php:2829
1649
+ #: includes/functions.php:2884 includes/functions.php:2911
1650
+ #: includes/functions.php:3017 includes/functions.php:3368 strings.php:204
1651
+ #: strings.php:205 strings.php:206 strings.php:207 strings.php:208
1652
+ #: strings.php:209
1653
  msgid "day"
1654
  msgid_plural "days"
1655
  msgstr[0] "dan"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
+ #: includes/functions.php:2810
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
+ #: includes/functions.php:2812 includes/functions.php:2822
1678
+ #: includes/functions.php:2895 includes/functions.php:2904
1679
+ #: includes/functions.php:4923
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
+ #: includes/functions.php:2820
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
+ #: includes/functions.php:2845
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
+ #: includes/functions.php:2849 includes/functions.php:2851
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
+ #: includes/functions.php:2851
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
+ #: includes/functions.php:2866
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
+ #: includes/functions.php:2875
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
+ #: includes/functions.php:2882 includes/functions.php:2909
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
+ #: includes/functions.php:2893
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
+ #: includes/functions.php:2902
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
+ #: includes/functions.php:2928
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
+ #: includes/functions.php:2937
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
+ #: includes/functions.php:2938
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
+ #: includes/functions.php:2939
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
+ #: includes/functions.php:2956 includes/functions.php:5980
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
+ #: includes/functions.php:3008
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
+ #: includes/functions.php:3009
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
+ #: includes/functions.php:3014
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
+ #: includes/functions.php:3015
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
+ #: includes/functions.php:3035
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
+ #: includes/functions.php:3036
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
+ #: includes/functions.php:3038 includes/functions.php:3045
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
+ #: includes/functions.php:3042
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
+ #: includes/functions.php:3043
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
+ #: includes/functions.php:3062
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
+ #: includes/functions.php:3131
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
+ #: includes/functions.php:3144
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
+ #: includes/functions.php:3147
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
+ #: includes/functions.php:3158
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
+ #: includes/functions.php:3161
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
+ #: includes/functions.php:3178
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
+ #: includes/functions.php:3181
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
+ #: includes/functions.php:3199
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
+ #: includes/functions.php:3205
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
+ #: includes/functions.php:3250
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
+ #: includes/functions.php:3257
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
+ #: includes/functions.php:3265
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
+ #: includes/functions.php:3266 settings.php:2781
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
+ #: includes/functions.php:3282
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
+ #: includes/functions.php:3286
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
+ #: includes/functions.php:3291
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
+ #: includes/functions.php:3295
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
+ #: includes/functions.php:3300
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
+ #: includes/functions.php:3306
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
+ #: includes/functions.php:3316
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
+ #: includes/functions.php:3322
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
+ #: includes/functions.php:3332
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
+ #: includes/functions.php:3338
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
+ #: includes/functions.php:3357
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
+ #: includes/functions.php:3361
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
+ #: includes/functions.php:3367
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
+ #: includes/functions.php:3368
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
+ #: includes/functions.php:3387
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
+ #: includes/functions.php:3390
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
+ #: includes/functions.php:3391 strings.php:235
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
+ #: includes/functions.php:3396
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
+ #: includes/functions.php:3399
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
+ #: includes/functions.php:3404
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
+ #: includes/functions.php:3407
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
+ #: includes/functions.php:3412
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
+ #: includes/functions.php:3415
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
+ #: includes/functions.php:3420
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
+ #: includes/functions.php:3423
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
+ #: includes/functions.php:3486
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
+ #: includes/functions.php:3487
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
+ #: includes/functions.php:3494
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
+ #: includes/functions.php:3494
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
+ #: includes/functions.php:3499 settings.php:3860 settings.php:4345
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
+ #: includes/functions.php:3517
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
+ #: includes/functions.php:3518 includes/functions.php:3525
2145
+ #: includes/functions.php:3529 includes/placeholders.php:353
2146
+ #: includes/preview.php:2307 settings.php:1345 settings.php:3620
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
+ #: includes/functions.php:3548
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
+ #: includes/functions.php:3549
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
+ #: includes/functions.php:3562
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
+ #: includes/functions.php:3573
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
+ #: includes/functions.php:3578
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
+ #: includes/functions.php:3578
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
+ #: includes/functions.php:3583
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
+ #: includes/functions.php:3583
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
+ #: includes/functions.php:3588
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
+ #: includes/functions.php:3588
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
+ #: includes/functions.php:3593
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
+ #: includes/functions.php:3593
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
+ #: includes/functions.php:3598
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
+ #: includes/functions.php:3598
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
+ #: includes/functions.php:3614 settings.php:2780
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
+ #: includes/functions.php:3620
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
+ #: includes/functions.php:4343 includes/functions.php:4465
2248
+ #: includes/functions.php:4485
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
+ #: includes/functions.php:4344 includes/functions.php:4390
2257
+ #: includes/functions.php:4459 includes/functions.php:4486
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
+ #: includes/functions.php:4347 includes/functions.php:4458
2265
+ #: includes/functions.php:4492
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
+ #: includes/functions.php:4389 includes/functions.php:4396
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
+ #: includes/functions.php:4565 includes/functions.php:4774
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
+ #: includes/functions.php:4711
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
+ #: includes/functions.php:4711
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
+ #: includes/functions.php:4711
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
+ #: includes/functions.php:4712
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
+ #: includes/functions.php:4774
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
+ #: includes/functions.php:4775 includes/functions.php:4776
2313
+ #: includes/functions.php:4831
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
+ #: includes/functions.php:4776
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
+ #: includes/functions.php:4777
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
+ #: includes/functions.php:4777 includes/functions.php:4837
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
+ #: includes/functions.php:4919
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
+ #: includes/functions.php:4919
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
+ #: includes/functions.php:4923
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
+ #: includes/functions.php:5018
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
+ #: includes/functions.php:5039
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
+ #: includes/functions.php:5063
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
+ #: includes/functions.php:5246 includes/functions.php:5338
2384
+ #: includes/functions.php:5681 strings.php:189
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
+ #: includes/functions.php:5587
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
+ #: includes/functions.php:5592
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
+ #: includes/functions.php:5597
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
+ #: includes/functions.php:5602
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
+ #: includes/functions.php:5607
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
+ #: includes/functions.php:5612
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
+ #: includes/functions.php:5617
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
+ #: includes/functions.php:5622
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
+ #: includes/functions.php:557
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
+ #: includes/functions.php:947 includes/functions.php:983 settings.php:1672
2434
+ #: settings.php:1703 settings.php:1734 settings.php:1765 settings.php:1796
2435
+ #: settings.php:1827 settings.php:1857 settings.php:1887
2436
  msgid "Click to select black or white list"
2437
  msgstr "Klikni za za izbor črnega ali belega seznama"
2438
 
2439
  #. translators: %s: Ad Inserter Pro
2440
+ #: includes/functions.php:1509
2441
  msgid "Invalid %s version."
2442
  msgstr "Neveljavna izdaja %s."
2443
 
2444
+ #: includes/functions.php:1510
2445
  msgid "Check license"
2446
  msgstr "Preverite licenco"
2447
 
2448
+ #: includes/functions.php:1522
2449
  msgid "License"
2450
  msgstr "Licenca"
2451
 
2452
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2453
+ #: includes/functions.php:1845
2454
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2455
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2456
 
2457
  #. Translators: %s: HTML tags
2458
+ #: includes/functions.php:1890
2459
  msgid ""
2460
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2461
  "account %s and create license key."
2463
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2464
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2465
 
2466
+ #: includes/functions.php:2588
2467
  msgid "Start date"
2468
  msgstr "Začetni datum"
2469
 
2470
+ #: includes/functions.php:2588
2471
  msgid "Enter date in format yyyy-mm-dd"
2472
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2473
 
2474
+ #: includes/functions.php:2589
2475
  msgid "Start time"
2476
  msgstr "Začetni čas"
2477
 
2478
+ #: includes/functions.php:2589
2479
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2480
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2481
 
2482
+ #: includes/functions.php:2591
2483
  msgid "End date"
2484
  msgstr "Končni datum"
2485
 
2486
+ #: includes/functions.php:2592
2487
  msgid "End time"
2488
  msgstr "Končni čas"
2489
 
2490
+ #: includes/functions.php:2595
2491
  msgid "Select wanted days in week"
2492
  msgstr "Izberite želene dneve v tednu"
2493
 
2494
+ #: includes/functions.php:2927
2495
+ msgid "Ad blocking detection is disabled"
2496
+ msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2497
+
2498
+ #: includes/functions.php:3065
2499
+ msgid "Manual loading"
2500
+ msgstr "Ročno nalaganje"
2501
+
2502
  #. Translators: %s HTML tags
2503
+ #: includes/functions.php:3133
2504
  msgid "Create and manage %s MaxMind license key %s"
2505
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2506
 
2507
+ #: includes/functions.php:3169
2508
  msgid "MaxMind license key"
2509
  msgstr "MaxMind licenčni ključ"
2510
 
2511
+ #: includes/functions.php:3172
2512
  msgid "Enter license key obtained from MaxMind"
2513
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2514
 
2515
+ #: includes/functions.php:3438
2516
  msgid "Event category"
2517
  msgstr "Kategorija dogodka"
2518
 
2519
+ #: includes/functions.php:3441
2520
  msgid ""
2521
  "Category name used for external tracking events. You can use tags to get the "
2522
  "event, the number or the name of the block that caused the event."
2524
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2525
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2526
 
2527
+ #: includes/functions.php:3446
2528
  msgid "Event action"
2529
  msgstr "Akcija dogodka"
2530
 
2531
+ #: includes/functions.php:3449
2532
  msgid ""
2533
  "Action name used for external tracking events. You can use tags to get the "
2534
  "event, the number or the name of the block that caused the event."
2536
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2537
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2538
 
2539
+ #: includes/functions.php:3454
2540
  msgid "Event label"
2541
  msgstr "Oznaka dogodka"
2542
 
2543
+ #: includes/functions.php:3457
2544
  msgid ""
2545
  "Label name used for external tracking events. You can use tags to get the "
2546
  "event, the number or the name of the block that caused the event."
2549
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2550
 
2551
  #. translators: %s: Ad Inserter Pro
2552
+ #: includes/functions.php:3603
2553
  msgid "Show link to %s settings page for each site on the Sites page"
2554
  msgstr ""
2555
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2556
  "Spletišča"
2557
 
2558
  #. translators: %s: Ad Inserter Pro
2559
+ #: includes/functions.php:3603
2560
  msgid "Show link to %s on the Sites page"
2561
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2562
 
2563
+ #: includes/functions.php:5193
2564
  msgid "File %s missing."
2565
  msgstr "Datoteka %s ni najdena."
2566
 
2567
+ #: includes/php-check.php:8
2568
+ msgid "The latest PHP version: "
2569
+ msgstr "Zadnja različica PHP: "
2570
+
2571
  #: includes/placeholders.php:20
2572
  msgid "Custom"
2573
  msgstr "Po meri"
2592
  msgid "Placeholder"
2593
  msgstr "Polnilo"
2594
 
2595
+ #: includes/placeholders.php:363 settings.php:954 settings.php:4346
2596
  msgid "Size"
2597
  msgstr "Velikost"
2598
 
2685
  msgid "Remove dummy paragraph"
2686
  msgstr "Odstrani testni odstavek"
2687
 
2688
+ #: includes/preview-adb.php:9 includes/preview.php:1989
2689
  msgid "Use current settings"
2690
  msgstr "Uporabi trenutne nastavitve"
2691
 
2712
  msgid "Default"
2713
  msgstr "Privzeto"
2714
 
2715
+ #: includes/preview-adb.php:12 includes/preview.php:1992
2716
  msgid "Close preview window"
2717
  msgstr "Zapri okno predogleda"
2718
 
2725
  msgid "Ad Blocking Detected Message Preview"
2726
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2727
 
2728
+ #: includes/preview-adb.php:348 settings.php:2906
2729
  msgid "Message CSS"
2730
  msgstr "CSS sporočila"
2731
 
2732
+ #: includes/preview-adb.php:353 settings.php:2914
2733
  msgid "Overlay CSS"
2734
  msgstr "CSS prevleke"
2735
 
2736
+ #: includes/preview.php:229
2737
  msgid "Sticky Code Preview"
2738
  msgstr "Predogled Lepljive Kode"
2739
 
2740
+ #: includes/preview.php:229
2741
  msgid "Code Preview"
2742
  msgstr "Predogled Kode"
2743
 
2744
+ #: includes/preview.php:1987
2745
  msgid "Highlight inserted code"
2746
  msgstr "Označi vstavljeno kodo"
2747
 
2748
+ #: includes/preview.php:1987
2749
  msgid "Highlight"
2750
  msgstr "Označi"
2751
 
2752
+ #: includes/preview.php:1990
2753
  msgid "Reset to block settings"
2754
  msgstr "Ponastavi na nastavitve bloka"
2755
 
2756
+ #: includes/preview.php:2005
2757
  msgid "AdSense ad unit"
2758
  msgstr "Oglasna enota AdSense"
2759
 
2760
+ #: includes/preview.php:2072
2761
  msgid "wrapping div"
2762
  msgstr "div za ovijanje"
2763
 
2764
+ #: includes/preview.php:2077 includes/preview.php:2084
2765
  msgid "background"
2766
  msgstr "ozadje"
2767
 
2768
+ #: includes/preview.php:2111 includes/preview.php:2262 settings.php:1306
2769
  msgid "Alignment"
2770
  msgstr "Poravnava"
2771
 
2772
+ #: includes/preview.php:2179
2773
  msgid "Horizontal margin"
2774
  msgstr "Vodoravni odmik"
2775
 
2776
+ #: includes/preview.php:2228
2777
  msgid "Vertical margin"
2778
  msgstr "Navpični odmik"
2779
 
2780
+ #: includes/preview.php:2250
2781
  msgid "Animate"
2782
  msgstr "Animiraj"
2783
 
2784
+ #: includes/preview.php:2316
2785
  msgid ""
2786
  "This is a preview of the code between dummy paragraphs. Here you can test "
2787
  "various block alignments, visually edit margin and padding values of the "
2796
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2797
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2798
 
2799
+ #: includes/preview.php:2319
2800
  msgid ""
2801
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2802
  "code with the alignment and style as it is set for this block. Highlight "
2806
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2807
  "margin območje div-a za ovijanje in območje kode."
2808
 
2809
+ #: includes/preview.php:2321
2810
  msgid ""
2811
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2812
  "code was loaded from your AdSense account. The ad block is displayed on a "
2818
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2819
  "Označi za označitev bloka."
2820
 
2821
+ #: includes/preview.php:2327
2822
  msgid ""
2823
  "You can resize the window (and refresh the page to reload ads) to check "
2824
  "display with different screen widths.\n"
2830
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2831
  "prenesle v aktivni blok."
2832
 
2833
+ #: includes/preview.php:2329
2834
  msgid ""
2835
  "Please note that the code, block name, alignment and style are taken from "
2836
  "the current block settings (may not be saved).\n"
2843
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2844
  "kodo za blok."
2845
 
2846
+ #: includes/preview.php:2334 includes/preview.php:2348
2847
+ #: includes/preview.php:2358 includes/preview.php:2368
2848
+ #: includes/preview.php:2378
2849
  msgid ""
2850
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2851
  "code with it's settings is called a block.\n"
2869
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2870
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2871
 
2872
+ #: includes/preview.php:2339 includes/preview.php:2353
2873
+ #: includes/preview.php:2363 includes/preview.php:2373
2874
+ #: includes/preview.php:2383
2875
  msgid ""
2876
  "Few very important things you need to know in order to insert code and "
2877
  "display some ad:\n"
2894
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2895
  "uporabljate posamezne izjeme za prispevke/strani."
2896
 
2897
+ #: includes/preview.php:2345
2898
  msgid ""
2899
  "This is a preview of the code for sticky ads. Here you can test various "
2900
  "horizontal and vertical alignments, close button locations, visually edit "
2910
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2911
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2912
 
2913
+ #: settings.php:160 settings.php:163
2914
  msgid ""
2915
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2916
  msgstr ""
2917
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2918
  "vedno izjeme"
2919
 
2920
+ #: settings.php:202 settings.php:1195
2921
  msgid ""
2922
  "Settings for individual exceptions have been updated. Please check all "
2923
  "blocks that have exceptions and and then save settings."
2925
  "Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
2926
  "bloke, ki imajo izjeme in potem shranite nastavitve."
2927
 
2928
+ #: settings.php:244
2929
  msgid "Online documentation"
2930
  msgstr "Spletna Dokumentacija"
2931
 
2932
+ #: settings.php:248 settings.php:789 settings.php:2289
2933
  msgid "Show AdSense ad units"
2934
  msgstr "Pokaži oglasne enote AdSense"
2935
 
2936
+ #: settings.php:257
2937
  msgid "Edit ads.txt file"
2938
  msgstr "Uredi datoteko ads.txt"
2939
 
2940
+ #: settings.php:260 settings.php:1138
2941
  msgid "Check theme for available positions for automatic insertion"
2942
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2943
 
2944
+ #: settings.php:262
2945
  msgid "List all blocks"
2946
  msgstr "Izpiši seznam vseh blokov"
2947
 
2948
+ #: settings.php:269
2949
  msgid "Loaded plugin JavaScript file version"
2950
  msgstr "Naložena različica JavaScript datoteke vtičnika"
2951
 
2952
  #. translators: %s: HTML tags
2953
+ #: settings.php:271
2954
  msgid ""
2955
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2956
  "due to inappropriate caching."
2958
  "Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
2959
  "zaradi nepravilnega predpomnjenja."
2960
 
2961
+ #: settings.php:272
2962
  msgid ""
2963
  "Missing version parameter of the JavaScript file, probably due to "
2964
  "inappropriate caching."
2966
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
2967
  "predpomnjenja."
2968
 
2969
+ #: settings.php:273
2970
  msgid ""
2971
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2972
  "caching."
2974
  "Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
2975
  "zaradi nepravilnega predpomnjenja."
2976
 
2977
+ #: settings.php:274 settings.php:285
2978
  msgid ""
2979
  "Please delete browser's cache and all other caches used and then reload this "
2980
  "page."
2982
  "Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
2983
  "potem na novo naložite to stran."
2984
 
2985
+ #: settings.php:280
2986
  msgid "Loaded plugin CSS file version"
2987
  msgstr "Naložena različica CSS datoteke vtičnika"
2988
 
2989
  #. translators: %s: HTML tags
2990
+ #: settings.php:282
2991
  msgid ""
2992
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2993
  "inappropriate caching."
2995
  "Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
2996
  "nepravilnega predpomnjenja."
2997
 
2998
+ #: settings.php:283
2999
  msgid ""
3000
  "Missing version parameter of the CSS file, probably due to inappropriate "
3001
  "caching."
3003
  "Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
3004
  "predpomnjenja."
3005
 
3006
+ #: settings.php:284
3007
  msgid ""
3008
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
3009
  msgstr ""
3010
  "Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
3011
  "nepravilnega predpomnjenja."
3012
 
3013
+ #: settings.php:291 settings.php:317
3014
  msgid "WARNING"
3015
  msgstr "OPOZORILO"
3016
 
3017
  #. translators: %s: HTML tags
3018
+ #: settings.php:293
3019
  msgid "Page may %s not be loaded properly. %s"
3020
  msgstr "Stran mogoče %s ni naložena pravilno. %s"
3021
 
3022
+ #: settings.php:294
3023
  msgid ""
3024
  "Check ad blocking software that may block CSS, JavaScript or image files."
3025
  msgstr ""
3026
  "Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
3027
  "JavaScript ali slikovne datoteke."
3028
 
3029
+ #: settings.php:303
3030
  msgid "SAFE MODE"
3031
  msgstr "VARNI NAČIN"
3032
 
3033
  #. translators: %s: HTML tags
3034
+ #: settings.php:305
3035
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
3036
  msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
3037
 
3038
+ #: settings.php:317
3039
  msgid ""
3040
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
3041
  "Debugging"
3043
  "Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
3044
  "na zavihek [*] / zavihek Razhroščevanje"
3045
 
3046
+ #: settings.php:319
3047
  msgid "Debugging functions enabled - some code is not inserted"
3048
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
3049
 
3050
+ #: settings.php:336
3051
  msgid "Group name"
3052
  msgstr "Ime skupine"
3053
 
3054
+ #: settings.php:337
3055
  msgid "Option name"
3056
  msgstr "Ime različice"
3057
 
3058
+ #: settings.php:343
3059
  msgid "Share"
3060
  msgstr "Delež"
3061
 
3062
+ #: settings.php:346
3063
  msgid ""
3064
  "Option share in percents - 0 means option is disabled, if share for one "
3065
  "option is not defined it will be calculated automatically. Leave all share "
3069
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
3070
  "prazne za enakomerno porazdelitev deležev različic."
3071
 
3072
+ #: settings.php:349
3073
  msgid "Time"
3074
  msgstr "Čas"
3075
 
3076
+ #: settings.php:352
3077
  msgid ""
3078
  "Option time in seconds - 0 means option is disabled and will be skipped. "
3079
  "Leave all time fields empty for no timed rotation."
3081
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
3082
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
3083
 
3084
+ #: settings.php:504
3085
  msgid "General Settings"
3086
  msgstr "Splošne Nastavitve"
3087
 
3088
+ #: settings.php:737 settings.php:2633 settings.php:2700 settings.php:2886
3089
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3090
  msgstr ""
3091
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3092
 
3093
+ #: settings.php:744
3094
  msgid "Toggle tools"
3095
  msgstr "Preklopi orodja"
3096
 
3097
+ #: settings.php:752
3098
  msgid "Process PHP code in block"
3099
  msgstr "Procesiraj PHP kodo v bloku"
3100
 
3101
+ #: settings.php:759
3102
  msgid "Disable insertion of this block"
3103
  msgstr "Onemogoči vstavljanje tega bloka"
3104
 
3105
+ #: settings.php:771
3106
  msgid "Toggle code generator"
3107
  msgstr "Preklopi generator kode"
3108
 
3109
+ #: settings.php:775
3110
  msgid "Toggle rotation editor"
3111
  msgstr "Preklopi urejevalnik rotacije"
3112
 
3113
+ #: settings.php:779
3114
  msgid "Open visual HTML editor"
3115
  msgstr "Odpri vizualni HTML urejevalnik"
3116
 
3117
+ #: settings.php:798
3118
  msgid "Clear block"
3119
  msgstr "Počisti blok"
3120
 
3121
+ #: settings.php:803 settings.php:4217
3122
  msgid "Copy block"
3123
  msgstr "Kopiraj blok"
3124
 
3125
+ #: settings.php:807
3126
  msgid "Paste name"
3127
  msgstr "Prilepi ime"
3128
 
3129
+ #: settings.php:811
3130
  msgid "Paste code"
3131
  msgstr "Prilepi kodo"
3132
 
3133
+ #: settings.php:815
3134
  msgid "Paste settings"
3135
  msgstr "Prilepi nastavitve"
3136
 
3137
+ #: settings.php:819
3138
  msgid "Paste block (name, code and settings)"
3139
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3140
 
3141
+ #: settings.php:838
3142
  msgid "Rotation groups"
3143
  msgstr "Skupine za rotacijo"
3144
 
3145
+ #: settings.php:842
3146
  msgid "Remove option"
3147
  msgstr "Odstrani različico"
3148
 
3149
+ #: settings.php:846
3150
  msgid "Add option"
3151
  msgstr "Dodaj različico"
3152
 
3153
+ #: settings.php:861
3154
  msgid "Import code"
3155
  msgstr "Uvozi kodo"
3156
 
3157
+ #: settings.php:865
3158
  msgid "Generate code"
3159
  msgstr "Generiraj kodo"
3160
 
3161
+ #: settings.php:870
3162
  msgid "Banner"
3163
  msgstr "Pasica"
3164
 
3165
+ #: settings.php:881
3166
  msgid "Image"
3167
  msgstr "Slika"
3168
 
3169
+ #: settings.php:889
3170
  msgid "Link"
3171
  msgstr "Povezava"
3172
 
3173
+ #: settings.php:900
3174
  msgid "Open link in a new tab"
3175
  msgstr "Odpri povezavo v novem zavihku"
3176
 
3177
+ #: settings.php:901
3178
  msgid "Select Image"
3179
  msgstr "Izberi Sliko"
3180
 
3181
+ #: settings.php:902
3182
  msgid "Select Placeholder"
3183
  msgstr "Izberi Polnilo"
3184
 
3185
+ #: settings.php:914
3186
  msgid "Comment"
3187
  msgstr "Komentar"
3188
 
3189
+ #: settings.php:923
3190
  msgctxt "AdSense"
3191
  msgid "Publisher ID"
3192
  msgstr "ID založnika"
3193
 
3194
+ #: settings.php:932
3195
  msgctxt "AdSense"
3196
  msgid "Ad Slot ID"
3197
  msgstr "ID mesta"
3198
 
3199
+ #: settings.php:941
3200
  msgid "Ad Type"
3201
  msgstr "Vrsta"
3202
 
3203
+ #: settings.php:966
3204
  msgid "AMP Ad"
3205
  msgstr "AMP Oglas"
3206
 
3207
+ #: settings.php:984
3208
  msgid "Show ad units from your AdSense account"
3209
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3210
 
3211
+ #: settings.php:984
3212
  msgid "AdSense ad units"
3213
  msgstr "Oglasne enote AdSense"
3214
 
3215
+ #: settings.php:1001
3216
  msgctxt "AdSense"
3217
  msgid "Layout"
3218
  msgstr "Postavitev"
3219
 
3220
+ #: settings.php:1010
3221
  msgctxt "AdSense"
3222
  msgid "Layout Key"
3223
  msgstr "Ključ postavitve"
3224
 
3225
+ #: settings.php:1020
3226
  msgid "Full width"
3227
  msgstr "Celotna širina"
3228
 
3229
+ #: settings.php:1022
3230
  msgctxt "Full width"
3231
  msgid "Enabled"
3232
  msgstr "Omogočena"
3233
 
3234
+ #: settings.php:1023
3235
  msgctxt "Full width"
3236
  msgid "Disabled"
3237
  msgstr "Onemogočena"
3238
 
3239
+ #: settings.php:1104
3240
  msgid ""
3241
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3242
  "Cookie or Referer (domain)"
3244
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3245
  "parametrov, Piškotkov ali napotiteljev (domen)"
3246
 
3247
+ #: settings.php:1104
3248
  msgid "Lists"
3249
  msgstr "Seznami"
3250
 
3251
+ #: settings.php:1105
3252
  msgid "Widget, Shortcode and PHP function call"
3253
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3254
 
3255
+ #: settings.php:1105
3256
  msgid "Manual"
3257
  msgstr "Ročno"
3258
 
3259
+ #: settings.php:1106
3260
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3261
  msgstr ""
3262
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3263
 
3264
+ #: settings.php:1106
3265
  msgid "Devices"
3266
  msgstr "Naprave"
3267
 
3268
+ #: settings.php:1107
3269
  msgid ""
3270
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3271
  "feeds), Filter, Scheduling, General tag"
3273
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3274
  "RSS), Filter, Urnik, Splošna oznaka"
3275
 
3276
+ #: settings.php:1107
3277
  msgid "Misc"
3278
  msgstr "Razno"
3279
 
3280
+ #: settings.php:1108
3281
  msgid "Preview code and alignment"
3282
  msgstr "Predogled kode in poravnave"
3283
 
3284
+ #: settings.php:1111 settings.php:2273
3285
  msgid ""
3286
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3287
  "editor is active before saving settings."
3289
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3290
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3291
 
3292
+ #: settings.php:1124 settings.php:1125
3293
  msgid "Enable insertion on posts"
3294
  msgstr "Omogoči vstavljanje na prispevkih"
3295
 
3296
+ #: settings.php:1125 settings.php:3432
3297
  msgid "Posts"
3298
  msgstr "Prispevki"
3299
 
3300
+ #: settings.php:1129 settings.php:1130
3301
  msgid ""
3302
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3303
  "page or theme homepage (available positions may depend on hooks used by the "
3307
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3308
  "lahko odvisni od ročic, ki jih tema uporablja)"
3309
 
3310
+ #: settings.php:1130 settings.php:3434
3311
  msgid "Homepage"
3312
  msgstr "Domača stran"
3313
 
3314
+ #: settings.php:1134 settings.php:1135
3315
  msgid "Enable insertion on category blog pages (including sub-pages)"
3316
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3317
 
3318
+ #: settings.php:1135 settings.php:3435
3319
  msgid "Category pages"
3320
  msgstr "Strani kategorij"
3321
 
3322
+ #: settings.php:1145 settings.php:1146
3323
  msgid "Enable insertion on static pages"
3324
  msgstr "Omogoči vstavljanje na statičnih straneh"
3325
 
3326
+ #: settings.php:1146 settings.php:3433
3327
  msgid "Static pages"
3328
  msgstr "Statične strani"
3329
 
3330
+ #: settings.php:1150 settings.php:1151
3331
  msgid "Enable insertion on search blog pages"
3332
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3333
 
3334
+ #: settings.php:1151 settings.php:3437
3335
  msgid "Search pages"
3336
  msgstr "Iskalne strani"
3337
 
3338
+ #: settings.php:1155 settings.php:1156
3339
  msgid "Enable insertion on tag or archive blog pages"
3340
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3341
 
3342
+ #: settings.php:1159
3343
  msgid "Toggle settings for default insertion and list of individual exceptions"
3344
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3345
 
3346
+ #: settings.php:1171
3347
  msgid ""
3348
  "Enable individual post/page exceptions for insertion of this block. They can "
3349
  "be configured on the individual post/page editor page (in the settings below "
3353
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3354
  "nastavitvah pod urejevalnikom)."
3355
 
3356
+ #: settings.php:1172
3357
  msgid ""
3358
  "Enable individual post/page exceptions for insertion of this block. When "
3359
  "enabled they can be configured on the individual post/page editor page (in "
3363
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3364
  "strani (v nastavitvah pod urejevalnikom)."
3365
 
3366
+ #: settings.php:1172
3367
  msgid "Use exceptions for individual posts or pages to change insertion"
3368
  msgstr ""
3369
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3370
 
3371
  #. Translators: Enabled means...
3372
+ #: settings.php:1180
3373
  msgid ""
3374
  "means the insertion for this block is enabled by default and disabled for "
3375
  "exceptions."
3378
  "izjeme."
3379
 
3380
  #. Translators: Disabled means...
3381
+ #: settings.php:1181
3382
  msgid ""
3383
  "means the insertion for this block is disabled by default and enabled for "
3384
  "exceptions."
3386
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3387
  "izjeme."
3388
 
3389
+ #: settings.php:1182
3390
  msgid ""
3391
  "When individual post/page exceptions are enabled they can be configured on "
3392
  "the individual post/page editor page (in the settings below the editor)."
3395
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3396
  "urejevalnikom)."
3397
 
3398
+ #: settings.php:1190
3399
  msgid ""
3400
  "No exception for post or static page defined. Block will not be inserted."
3401
  msgstr ""
3402
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3403
 
3404
+ #: settings.php:1208
3405
  msgctxt "post"
3406
  msgid "Type"
3407
  msgstr "Vrsta"
3408
 
3409
  #. translators: %d: block number
3410
+ #: settings.php:1210
3411
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3412
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3413
 
3414
+ #: settings.php:1211
3415
  msgid "Clear listed exceptions for block"
3416
  msgstr "Pobriši izpisane izjeme za blok"
3417
 
3418
+ #: settings.php:1237 settings.php:1385 settings.php:2047
3419
  msgid "Insertion"
3420
  msgstr "Vstavljanje"
3421
 
3422
+ #: settings.php:1275
3423
  msgid ""
3424
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3425
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3435
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3436
  "število pomeni štetje z nasprotne smeri"
3437
 
3438
+ #: settings.php:1276
3439
  msgid ""
3440
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3441
  "means every N images, empty means all images, 0 means random image, value "
3450
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3451
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3452
 
3453
+ #: settings.php:1289
3454
  msgid ""
3455
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3456
  "numbers, %N means every N excerpts, empty means all excerpts"
3459
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3460
  "izvlečki"
3461
 
3462
+ #: settings.php:1290
3463
  msgid ""
3464
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3465
  "numbers, %N means every N posts, empty means all posts"
3468
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3469
  "prispevki"
3470
 
3471
+ #: settings.php:1291
3472
  msgid ""
3473
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3474
  "numbers, %N means every N comments, empty means all comments"
3477
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3478
  "vsi komentarji"
3479
 
3480
+ #: settings.php:1298
3481
  msgid "Toggle paragraph counting settings"
3482
  msgstr "Preklopi nastavitve za štetje odstavkov"
3483
 
3484
+ #: settings.php:1299
3485
  msgid "Toggle paragraph clearance settings"
3486
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3487
 
3488
+ #: settings.php:1302
3489
  msgid "Toggle insertion filter settings"
3490
  msgstr "Preklopi nastavitve filtra vstavljanja"
3491
 
3492
+ #: settings.php:1320
3493
  msgid "Toggle insertion and alignment icons"
3494
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3495
 
3496
+ #: settings.php:1334
3497
  msgid "Custom CSS code for the wrapping div"
3498
  msgstr "CSS koda po meri za div za ovijanje"
3499
 
3500
+ #: settings.php:1337 settings.php:1338 settings.php:1339 settings.php:1340
3501
+ #: settings.php:1341 settings.php:1342
3502
  msgid "CSS code for the wrapping div, click to edit"
3503
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3504
 
3505
+ #: settings.php:1355
3506
  msgid "HTML element"
3507
  msgstr "HTML element"
3508
 
3509
+ #: settings.php:1368
3510
  msgid "HTML element selector or comma separated list of selectors"
3511
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3512
 
3513
+ #: settings.php:1374 settings.php:2791
3514
  msgid "Action"
3515
  msgstr "Akcija"
3516
 
3517
+ #: settings.php:1386
3518
  msgid ""
3519
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3520
  "Server-side insertion inserts block when the page is generated but needs "
3524
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3525
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3526
 
3527
+ #: settings.php:1395
3528
  msgid "Code position"
3529
  msgstr "Položaj kode"
3530
 
3531
+ #: settings.php:1396
3532
  msgid ""
3533
  "Page position where the code for client-side insertion will be inserted."
3534
  msgstr ""
3535
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3536
 
3537
+ #: settings.php:1411
3538
  msgid "Count"
3539
  msgstr "Štej"
3540
 
3541
+ #: settings.php:1417
3542
  msgid "paragraphs with tags"
3543
  msgstr "odstavke z značkami"
3544
 
3545
+ #: settings.php:1423
3546
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3547
  msgstr ""
3548
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3549
 
3550
+ #: settings.php:1432
3551
  msgid "that have between"
3552
  msgstr "ki imajo med"
3553
 
3554
+ #: settings.php:1438
3555
  msgid "Minimum number of paragraph words, leave empty for no limit"
3556
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3557
 
3558
+ #: settings.php:1447
3559
  msgid "Maximum number of paragraph words, leave empty for no limit"
3560
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3561
 
3562
+ #: settings.php:1450
3563
  msgid "words"
3564
  msgstr "besed"
3565
 
3566
+ #: settings.php:1465 settings.php:1524 settings.php:1594 settings.php:1620
3567
  msgid "Comma separated texts"
3568
  msgstr "Z vejico ločena besedila"
3569
 
3570
+ #: settings.php:1478
3571
  msgid ""
3572
  "Count also paragraphs inside these elements - defined on general plugin "
3573
  "settings page - tab [*] / tab General"
3576
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3577
 
3578
  #. Translators: %s: HTML tags
3579
+ #: settings.php:1484
3580
  msgid "Count inside %s elements"
3581
  msgstr "Štej znotraj elementov %s"
3582
 
3583
  #. translators: inside [HTML tags] elements that contain
3584
+ #: settings.php:1496
3585
  msgid "inside"
3586
  msgstr "znotraj"
3587
 
3588
+ #: settings.php:1502
3589
  msgid "Comma separated HTML tag names of container elements"
3590
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3591
 
3592
  #. translators: inside [HTML tags] elements that contain
3593
+ #: settings.php:1511
3594
  msgid "elements that"
3595
  msgstr "elementov, ki"
3596
 
3597
+ #: settings.php:1537 settings.php:2170
3598
  msgid "Post/Static page must have between"
3599
  msgstr "Prispevek/Statična stran mora imeti med"
3600
 
3601
+ #: settings.php:1543
3602
  msgid "Minimum number of paragraphs, leave empty for no limit"
3603
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3604
 
3605
+ #: settings.php:1552
3606
  msgid "Maximum number of paragraphs, leave empty for no limit"
3607
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3608
 
3609
  #. Translators: Post/Static page must have between X and Y paragraphs
3610
+ #: settings.php:1555
3611
  msgid "paragraph"
3612
  msgid_plural "paragraphs"
3613
  msgstr[0] "odstavek"
3615
  msgstr[2] "odstavke"
3616
  msgstr[3] "odstavkov"
3617
 
3618
+ #: settings.php:1563
3619
  msgid "Minimum number of words in paragraphs above"
3620
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3621
 
3622
+ #: settings.php:1569
3623
  msgid ""
3624
  "Used only with automatic insertion After paragraph and empty paragraph "
3625
  "numbers"
3627
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3628
  "številkami odstavkov"
3629
 
3630
+ #: settings.php:1579 settings.php:1605
3631
  msgid "In"
3632
  msgstr "V"
3633
 
3634
+ #: settings.php:1585
3635
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3636
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3637
 
3638
+ #: settings.php:1588
3639
  msgid "paragraphs above avoid"
3640
  msgstr "odstavkih zgoraj se izogni"
3641
 
3642
+ #: settings.php:1611
3643
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3644
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3645
 
3646
+ #: settings.php:1614
3647
  msgid "paragraphs below avoid"
3648
  msgstr "odstavkih spodaj se izogni"
3649
 
3650
+ #: settings.php:1630
3651
  msgid "If text is found"
3652
  msgstr "Če je besedilo najdeno"
3653
 
3654
+ #: settings.php:1637
3655
  msgid "check up to"
3656
  msgstr "preveri do"
3657
 
3658
+ #: settings.php:1645
3659
  msgctxt "check up to"
3660
  msgid "paragraphs"
3661
  msgstr "odstavkov"
3662
 
3663
+ #: settings.php:1661
3664
  msgid "Categories"
3665
  msgstr "Kategorije"
3666
 
3667
+ #: settings.php:1664
3668
  msgid "Toggle category editor"
3669
  msgstr "Preklopi urejevalnik kategorij"
3670
 
3671
+ #: settings.php:1667
3672
  msgid "Comma separated category slugs"
3673
  msgstr "Z vejico ločeni ključi kategorij"
3674
 
3675
+ #: settings.php:1676
3676
  msgid "Blacklist categories"
3677
  msgstr "Črni seznam kategorij"
3678
 
3679
+ #: settings.php:1680
3680
  msgid "Whitelist categories"
3681
  msgstr "Beli seznam kategorij"
3682
 
3683
+ #: settings.php:1692
3684
  msgid "Tags"
3685
  msgstr "Oznake"
3686
 
3687
+ #: settings.php:1695
3688
  msgid "Toggle tag editor"
3689
  msgstr "Preklopi urejevalnik oznak"
3690
 
3691
+ #: settings.php:1698
3692
  msgid "Comma separated tag slugs"
3693
  msgstr "Z vejico ločeni ključi oznak"
3694
 
3695
+ #: settings.php:1707
3696
  msgid "Blacklist tags"
3697
  msgstr "Črni seznam oznak"
3698
 
3699
+ #: settings.php:1711
3700
  msgid "Whitelist tags"
3701
  msgstr "Beli seznam oznak"
3702
 
3703
+ #: settings.php:1723
3704
  msgid "Taxonomies"
3705
  msgstr "Taksonomije"
3706
 
3707
+ #: settings.php:1726
3708
  msgid "Toggle taxonomy editor"
3709
  msgstr "Preklopi urejevalnik taksonomij"
3710
 
3711
+ #: settings.php:1729
3712
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3713
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3714
 
3715
+ #: settings.php:1738
3716
  msgid "Blacklist taxonomies"
3717
  msgstr "Črni seznam taksonomij"
3718
 
3719
+ #: settings.php:1742
3720
  msgid "Whitelist taxonomies"
3721
  msgstr "Beli seznam taksonomij"
3722
 
3723
+ #: settings.php:1754
3724
  msgid "Post IDs"
3725
  msgstr "ID-ji prispevkov"
3726
 
3727
+ #: settings.php:1757
3728
  msgid "Toggle post/page ID editor"
3729
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3730
 
3731
+ #: settings.php:1760
3732
  msgid "Comma separated post/page IDs"
3733
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3734
 
3735
+ #: settings.php:1769
3736
  msgid "Blacklist IDs"
3737
  msgstr "Črni seznam ID-jev"
3738
 
3739
+ #: settings.php:1773
3740
  msgid "Whitelist IDs"
3741
  msgstr "Beli seznam ID-jev"
3742
 
3743
+ #: settings.php:1785
3744
  msgid "Urls"
3745
  msgstr "Url-ji"
3746
 
3747
+ #: settings.php:1788
3748
  msgid "Toggle url editor"
3749
  msgstr "Preklopi urejevalnik url-jev"
3750
 
3751
+ #: settings.php:1791
3752
  msgid ""
3753
  "Comma separated urls (page addresses) starting with / after domain name (e."
3754
  "g. /permalink-url, use only when you need to taget a specific url not "
3760
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3761
  "začetek*. *url-vzorec*, *url-konec)"
3762
 
3763
+ #: settings.php:1800
3764
  msgid "Blacklist urls"
3765
  msgstr "Črni seznam url-jev"
3766
 
3767
+ #: settings.php:1804
3768
  msgid "Whitelist urls"
3769
  msgstr "Beli seznam url-jev"
3770
 
3771
+ #: settings.php:1815
3772
  msgid "Url parameters"
3773
  msgstr "Url parametri"
3774
 
3775
+ #: settings.php:1819
3776
  msgid "Toggle url parameter and cookie editor"
3777
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3778
 
3779
+ #: settings.php:1822
3780
  msgid ""
3781
  "Comma separated url query parameters or cookies with optional values (use "
3782
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3785
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3786
  "'piškotek=vrednost')"
3787
 
3788
+ #: settings.php:1831
3789
  msgid "Blacklist url parameters"
3790
  msgstr "Črni seznam url parametrov"
3791
 
3792
+ #: settings.php:1835
3793
  msgid "Whitelist url parameters"
3794
  msgstr "Beli seznam url parametrov"
3795
 
3796
+ #: settings.php:1846
3797
  msgid "Referrers"
3798
  msgstr "Napotitelji"
3799
 
3800
+ #: settings.php:1849
3801
  msgid "Toggle referer editor"
3802
  msgstr "Preklopi urejevalnik napotiteljev"
3803
 
3804
+ #: settings.php:1852
3805
  msgid ""
3806
  "Comma separated domains, use # for no referrer, you can also use partial "
3807
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3809
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3810
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3811
 
3812
+ #: settings.php:1861
3813
  msgid "Blacklist referers"
3814
  msgstr "Črni seznam napotiteljev"
3815
 
3816
+ #: settings.php:1865
3817
  msgid "Whitelist referers"
3818
  msgstr "Beli seznam napotiteljev"
3819
 
3820
+ #: settings.php:1876
3821
  msgid "Clients"
3822
  msgstr "Odjemalci"
3823
 
3824
+ #: settings.php:1879
3825
  msgid "Toggle client editor"
3826
  msgstr "Preklopi urejevalnik odjemalcev"
3827
 
3828
+ #: settings.php:1882
3829
  msgid "Comma separated names (operating systems, browsers, devices)"
3830
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3831
 
3832
+ #: settings.php:1891
3833
  msgid "Blacklist clients"
3834
  msgstr "Črni seznam odjemalcev"
3835
 
3836
+ #: settings.php:1895
3837
  msgid "Whitelist clients"
3838
  msgstr "Beli seznam odjemalcev"
3839
 
3840
+ #: settings.php:1916
3841
  msgid "Enable widget for this block"
3842
  msgstr "Omogočite gradnik za ta blok"
3843
 
3844
+ #: settings.php:1928
3845
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3846
  msgstr ""
3847
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3848
 
3849
+ #: settings.php:1929 settings.php:4274
3850
  msgid "Shortcode"
3851
  msgstr "Kratka koda"
3852
 
3853
+ #: settings.php:1944
3854
  msgid ""
3855
  "Enable PHP function call to insert this block at any position in theme file. "
3856
  "If function is disabled for block it will return empty string."
3859
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3860
  "prazen niz."
3861
 
3862
+ #: settings.php:1945
3863
  msgid "PHP function"
3864
  msgstr "PHP funkcija"
3865
 
3866
+ #: settings.php:1960
3867
  msgid "Client-side device detection"
3868
  msgstr "Zaznavanje naprave na strani odjemalca"
3869
 
3870
+ #: settings.php:1961
3871
  msgid "Server-side device detection"
3872
  msgstr "Zaznavanje naprave na strani strežnika"
3873
 
3874
+ #: settings.php:1968
3875
  msgid "Use client-side detection to"
3876
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3877
 
3878
+ #: settings.php:1970
3879
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3880
  msgstr ""
3881
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3882
 
3883
  #. Translators: only on (the following devices): viewport names (devices)
3884
  #. listed
3885
+ #: settings.php:1975
3886
  msgid "only on"
3887
  msgstr "samo na"
3888
 
3889
+ #: settings.php:2003
3890
  msgid "Device min width %s px"
3891
  msgstr "Najmanjša širina naprave %s px"
3892
 
3893
+ #: settings.php:2029
3894
  msgid "Use server-side detection to insert block only for"
3895
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3896
 
3897
+ #: settings.php:2048
3898
  msgid "Filter"
3899
  msgstr "Filter"
3900
 
3901
+ #: settings.php:2049
3902
  msgid "Word Count"
3903
  msgstr "Število Besed"
3904
 
3905
+ #: settings.php:2050 settings.php:4264
3906
  msgid "Scheduling"
3907
  msgstr "Urnik"
3908
 
3909
+ #: settings.php:2051
3910
  msgid "Display"
3911
  msgstr "Prikaz"
3912
 
3913
+ #: settings.php:2053 settings.php:2315
3914
  msgid "General"
3915
  msgstr "Splošno"
3916
 
3917
+ #: settings.php:2065
3918
  msgid "Old settings for AMP pages detected"
3919
  msgstr "Zaznane stare nastavitve za AMP strani"
3920
 
3921
+ #: settings.php:2065
3922
  msgid ""
3923
  "To insert different codes on normal and AMP pages separate them with "
3924
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3929
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3930
  "separatorja)."
3931
 
3932
+ #: settings.php:2065
3933
  msgid "AMP pages"
3934
  msgstr "AMP strani"
3935
 
3936
+ #: settings.php:2070
3937
  msgid "Enable insertion for Ajax requests"
3938
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3939
 
3940
+ #: settings.php:2070
3941
  msgid "Ajax requests"
3942
  msgstr "Ajax zahteve"
3943
 
3944
+ #: settings.php:2075
3945
  msgid "Enable insertion in RSS feeds"
3946
  msgstr "Omogoči vstavljanje v RSS virih"
3947
 
3948
+ #: settings.php:2075
3949
  msgid "RSS Feed"
3950
  msgstr "RSS Vir"
3951
 
3952
+ #: settings.php:2080
3953
  msgid "Enable insertion on page for Error 404: Page not found"
3954
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3955
 
3956
+ #: settings.php:2080
3957
  msgid "Error 404 page"
3958
  msgstr "Stran napake 404"
3959
 
3960
+ #: settings.php:2092
3961
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3962
  msgstr ""
3963
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3964
 
3965
+ #: settings.php:2093
3966
  msgid "insertions"
3967
  msgstr "vstavljanj"
3968
 
3969
+ #: settings.php:2095
3970
  msgid ""
3971
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3972
  "General)"
3974
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3975
  "zavihek Splošno)"
3976
 
3977
+ #: settings.php:2098 settings.php:2495
3978
  msgid "Max blocks per page"
3979
  msgstr "Največ blokov na stran"
3980
 
3981
+ #: settings.php:2110
3982
  msgid "Insert for"
3983
  msgstr "Vstavi za"
3984
 
3985
+ #: settings.php:2118
3986
  msgid ""
3987
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3988
  "currently active). Might speed up insertion on content pages when "
3992
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3993
  "filter the_content večkrat klican."
3994
 
3995
+ #: settings.php:2121
3996
  msgid "Insert only in the loop"
3997
  msgstr "Vstavi samo v zanki"
3998
 
3999
+ #: settings.php:2127
4000
  msgid ""
4001
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4002
  msgstr ""
4003
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4004
  "Rocket"
4005
 
4006
+ #: settings.php:2127
4007
  msgid "Disable caching"
4008
  msgstr "Onemogoči predpomnjenje"
4009
 
4010
+ #: settings.php:2139
4011
  msgid "Filter insertions"
4012
  msgstr "Filtriraj vstavljanja"
4013
 
4014
+ #: settings.php:2142
4015
  msgid ""
4016
  "Filter multiple insertions by specifying wanted insertions for this block - "
4017
  "single number, comma separated numbers or %N for every N insertions - empty "
4023
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4024
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4025
 
4026
+ #: settings.php:2145
4027
  msgid "using"
4028
  msgstr "z uporabo"
4029
 
4030
+ #: settings.php:2164
4031
  msgid "Checked means specified calls are unwanted"
4032
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4033
 
4034
+ #: settings.php:2164
4035
  msgid "Invert filter"
4036
  msgstr "Obrni filter"
4037
 
4038
+ #: settings.php:2171
4039
  msgid "Minimum number of post/static page words, leave empty for no limit"
4040
  msgstr ""
4041
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4042
  "omejitev"
4043
 
4044
+ #: settings.php:2173
4045
  msgid "Maximum number of post/static page words, leave empty for no limit"
4046
  msgstr ""
4047
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4048
  "omejitev"
4049
 
4050
+ #: settings.php:2186
4051
  msgid "for"
4052
  msgstr "za"
4053
 
4054
+ #: settings.php:2186
4055
  msgid "days after publishing"
4056
  msgstr "dni po objavi"
4057
 
4058
+ #: settings.php:2188
4059
  msgid "Not available"
4060
  msgstr "Ni na razpolago"
4061
 
4062
+ #: settings.php:2201 settings.php:2487
4063
  msgid "Ad label"
4064
  msgstr "Oznaka oglasa"
4065
 
4066
+ #: settings.php:2221
4067
  msgid "General tag"
4068
  msgstr "Splošna oznaka"
4069
 
4070
+ #: settings.php:2225
4071
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4072
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4073
 
4074
  #. translators: %s: HTML tags
4075
+ #: settings.php:2234
4076
  msgid ""
4077
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4078
  "client-side device detection!"
4081
  "potrebna za zaznavanje naprave na strani odjemalca!"
4082
 
4083
  #. translators: %s: HTML tags for text and link
4084
+ #: settings.php:2248
4085
  msgid ""
4086
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4087
  "side %s insertion. Use %s Server-side %s insertion."
4090
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4091
  "strežnika%s."
4092
 
4093
+ #: settings.php:2264
4094
  msgid "Settings"
4095
  msgstr "Nastavitve"
4096
 
4097
+ #: settings.php:2267
4098
  msgid "Settings timestamp"
4099
  msgstr "Časovni žig nastavitev"
4100
 
4101
+ #: settings.php:2280
4102
  msgid "Are you sure you want to reset all settings?"
4103
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4104
 
4105
+ #: settings.php:2280
4106
  msgid "Reset All Settings"
4107
  msgstr "Ponastavi Vse Nastavitve"
4108
 
4109
+ #: settings.php:2316
4110
  msgid "Viewports"
4111
  msgstr "Pogledi"
4112
 
4113
+ #: settings.php:2317
4114
  msgid "Hooks"
4115
  msgstr "Ročice"
4116
 
4117
+ #: settings.php:2318
4118
  msgid "Header"
4119
  msgstr "Glava"
4120
 
4121
+ #: settings.php:2319 strings.php:30
4122
  msgid "Footer"
4123
  msgstr "Noga"
4124
 
4125
+ #: settings.php:2324
4126
  msgid "Debugging"
4127
  msgstr "Razhroščevanje"
4128
 
4129
+ #: settings.php:2334
4130
  msgid "Plugin priority"
4131
  msgstr "Prednost vtičnika"
4132
 
4133
+ #: settings.php:2342
4134
  msgid "Output buffering"
4135
  msgstr "Predpomnjenje izhoda"
4136
 
4137
+ #: settings.php:2345
4138
  msgid "Needed for position Above header but may not work with all themes"
4139
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4140
 
4141
+ #: settings.php:2353
4142
  msgid "Syntax highlighting theme"
4143
  msgstr "Tema za poudarjanje sintakse"
4144
 
4145
+ #: settings.php:2360
4146
  msgctxt "no syntax highlighting themes"
4147
  msgid "None"
4148
  msgstr "Brez"
4149
 
4150
+ #: settings.php:2361
4151
  msgid "No Syntax Highlighting"
4152
  msgstr "Brez Poudarjanja Sintakse"
4153
 
4154
+ #: settings.php:2363
4155
  msgctxt "syntax highlighting themes"
4156
  msgid "Light"
4157
  msgstr "Svetle"
4158
 
4159
+ #: settings.php:2378
4160
  msgctxt "syntax highlighting themes"
4161
  msgid "Dark"
4162
  msgstr "Temne"
4163
 
4164
+ #: settings.php:2404
4165
  msgid "Min. user role for ind. exceptions editing"
4166
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4167
 
4168
+ #: settings.php:2414
4169
  msgid "Disable caching for logged in administrators"
4170
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4171
 
4172
+ #: settings.php:2417
4173
  msgid ""
4174
  "Enabled means that logged in administrators will see non-cached (live) pages "
4175
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4177
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4178
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4179
 
4180
+ #: settings.php:2425
4181
  msgid "Wait for jQuery"
4182
  msgstr "Čakaj na jQuery"
4183
 
4184
+ #: settings.php:2428
4185
  msgid ""
4186
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4187
  "it will run the scripts that may need it"
4189
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4190
  "bo pognal svoje skripte, ki jo potrebujejo"
4191
 
4192
+ #: settings.php:2436
4193
  msgid "Sticky widget mode"
4194
  msgstr "Način za lepljive gradnike"
4195
 
4196
+ #: settings.php:2439
4197
  msgid ""
4198
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4199
  "mode works with most themes but may reload ads on page load."
4202
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4203
  "nalaganju strani."
4204
 
4205
+ #: settings.php:2447
4206
  msgid "Sticky widget top margin"
4207
  msgstr "Zgornji rob za lepljiv gradnik"
4208
 
4209
+ #: settings.php:2455
4210
  msgid "Dynamic blocks"
4211
  msgstr "Dinamični bloki"
4212
 
4213
+ #: settings.php:2468
4214
  msgid "Functions for paragraph counting"
4215
  msgstr "Funkcije za štetje odstavkov"
4216
 
4217
+ #: settings.php:2471
4218
  msgid ""
4219
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4220
  "functions if paragraphs are not counted properly on non-english pages."
4223
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4224
  "šteti."
4225
 
4226
+ #: settings.php:2479
4227
  msgid "No paragraph counting inside"
4228
  msgstr "Ni štetja odstavkov znotraj"
4229
 
4230
+ #: settings.php:2490
4231
  msgid "Label text or HTML code"
4232
  msgstr "Besedilo oznake ali HTML koda"
4233
 
4234
+ #: settings.php:2498
4235
  msgid ""
4236
  "Maximum number of inserted blocks per page. You need to enable Max page "
4237
  "insertions (button Misc / tab Insertion) to count block for this limit."
4240
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4241
  "omejitev."
4242
 
4243
+ #: settings.php:2512
4244
  msgid "Plugin usage tracking"
4245
  msgstr "Sledenje uporabe vtičnika"
4246
 
4247
  #. translators: %s: Ad Inserter
4248
+ #: settings.php:2515
4249
  msgid ""
4250
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4251
  "Only information regarding the WordPress environment and %s usage is "
4255
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4256
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4257
 
4258
+ #: settings.php:2533
4259
  msgid "CSS class name for the wrapping div"
4260
  msgstr "Ime CSS razreda za div za ovijanje"
4261
 
4262
+ #: settings.php:2533
4263
  msgid "Block class name"
4264
  msgstr "Ime razreda za blok"
4265
 
4266
+ #: settings.php:2539
4267
  msgid "Include block number class"
4268
  msgstr "Vključi razred številke bloka"
4269
 
4270
+ #: settings.php:2539
4271
  msgid "Block number class"
4272
  msgstr "Razred številke bloka"
4273
 
4274
+ #: settings.php:2544
4275
  msgid "Include block name class"
4276
  msgstr "Vključi razred imena bloka"
4277
 
4278
+ #: settings.php:2544
4279
  msgid "Block name class"
4280
  msgstr "Razred imena bloka"
4281
 
4282
+ #: settings.php:2549
4283
  msgid ""
4284
  "Instead of alignment classes generate inline alignment styles for blocks"
4285
  msgstr ""
4286
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4287
 
4288
+ #: settings.php:2549
4289
  msgid "Inline styles"
4290
  msgstr "Medvrstični slogi"
4291
 
4292
+ #: settings.php:2555
4293
  msgid "Preview of the block wrapping code"
4294
  msgstr "Predogled kode za ovijanje blokov"
4295
 
4296
+ #: settings.php:2556
4297
  msgid "Wrapping div"
4298
  msgstr "div za ovijanje"
4299
 
4300
+ #: settings.php:2557 settings.php:2997
4301
  msgid "BLOCK CODE"
4302
  msgstr "KODA BLOKA"
4303
 
4304
+ #: settings.php:2565
4305
  msgid "Viewport Settings used for client-side device detection"
4306
  msgstr ""
4307
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4308
 
4309
  #. Translators: %d: viewport number
4310
+ #: settings.php:2573
4311
  msgid "Viewport %d name"
4312
  msgstr "Ime pogleda %d"
4313
 
4314
+ #: settings.php:2576
4315
  msgid "min width"
4316
  msgstr "najmanjša širina"
4317
 
4318
+ #: settings.php:2587
4319
  msgid "Custom Hooks"
4320
  msgstr "Ročice Po Meri"
4321
 
4322
+ #: settings.php:2599 settings.php:2602
4323
  msgid "Enable hook"
4324
  msgstr "Omogoči ročico"
4325
 
4326
  #. translators: %d: hook number
4327
+ #: settings.php:2602
4328
  msgid "Hook %d name"
4329
  msgstr "Ime ročice %d"
4330
 
4331
+ #: settings.php:2605
4332
  msgid "Hook name for automatic insertion selection"
4333
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4334
 
4335
+ #: settings.php:2608
4336
  msgid "action"
4337
  msgstr "akcija"
4338
 
4339
+ #: settings.php:2611
4340
  msgid "Action name as used in the do_action () function"
4341
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4342
 
4343
+ #: settings.php:2614
4344
  msgid "priority"
4345
  msgstr "prednost"
4346
 
4347
+ #: settings.php:2617
4348
  msgid "Priority for the hook (default is 10)"
4349
  msgstr "Prednost za ročico (privzeta je 10)"
4350
 
4351
+ #: settings.php:2638
4352
  msgid "Enable insertion of this code into HTML page header"
4353
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4354
 
4355
+ #: settings.php:2642 settings.php:2709 settings.php:2891
4356
  msgid "Process PHP code"
4357
  msgstr "Procesiraj PHP kodo"
4358
 
4359
+ #: settings.php:2646
4360
  msgid "HTML Page Header Code"
4361
  msgstr "Koda v Glavi HTML Strani"
4362
 
4363
+ #: settings.php:2654
4364
  msgid "Code in the %s section of the HTML page"
4365
  msgstr "Koda v %s delu HTML strani"
4366
 
4367
+ #: settings.php:2655
4368
  msgctxt "code in the header"
4369
  msgid "NOT ENABLED"
4370
  msgstr "NI OMOGOČENA"
4371
 
4372
+ #: settings.php:2672 settings.php:2740
4373
  msgid "Use server-side detection to insert code only for"
4374
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4375
 
4376
+ #: settings.php:2687
4377
  msgid ""
4378
  "Enable insertion of this code into HTML page header on page for Error 404: "
4379
  "Page not found"
4381
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4382
  "obstaja"
4383
 
4384
+ #: settings.php:2687 settings.php:2755
4385
  msgid "Insert on Error 404 page"
4386
  msgstr "Vstavi na strani Napake 404"
4387
 
4388
+ #: settings.php:2705
4389
  msgid "Enable insertion of this code into HTML page footer"
4390
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4391
 
4392
+ #: settings.php:2713
4393
  msgid "HTML Page Footer Code"
4394
  msgstr "Koda v Nogi HTML Strani"
4395
 
4396
  #. translators: %s: HTML tags
4397
+ #: settings.php:2721
4398
  msgid "Code before the %s tag of the the HTML page"
4399
  msgstr "Koda pred %s značko HTML strani"
4400
 
4401
+ #: settings.php:2722
4402
  msgctxt "code in the footer"
4403
  msgid "NOT ENABLED"
4404
  msgstr "NI OMOGOČENA"
4405
 
4406
+ #: settings.php:2755
4407
  msgid ""
4408
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4409
  "Page not found"
4411
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4412
  "Stran ne obstaja"
4413
 
4414
+ #: settings.php:2771
4415
  msgid "Code for ad blocking detection inserted. Click for details."
4416
  msgstr ""
4417
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4418
 
4419
+ #: settings.php:2776
4420
  msgid "Enable detection of ad blocking"
4421
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4422
 
4423
+ #: settings.php:2794
4424
  msgid "Global action when ad blocking is detected"
4425
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4426
 
4427
+ #: settings.php:2800
4428
  msgid "No action for"
4429
  msgstr "Ni akcije za"
4430
 
4431
+ #: settings.php:2801
4432
  msgid "Exceptions for global action when ad blocking is detected."
4433
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4434
 
4435
+ #: settings.php:2811
4436
  msgid "Delay Action"
4437
  msgstr "Zakasni Akcijo"
4438
 
4439
+ #: settings.php:2814
4440
  msgid ""
4441
  "Number of page views to delay action when ad blocking is detected. Leave "
4442
  "empty for no delay (action fires on first page view). Sets cookie."
4445
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4446
  "strani). Nastavi piškotek."
4447
 
4448
+ #: settings.php:2814
4449
  msgctxt "Delay Action for x "
4450
  msgid "page views"
4451
  msgstr "ogledov strani"
4452
 
4453
+ #: settings.php:2819
4454
  msgid "No Action Period"
4455
  msgstr "Obdobje Brez Akcije"
4456
 
4457
+ #: settings.php:2822
4458
  msgid ""
4459
  "Number of days to supress action when ad blocking is detected. Leave empty "
4460
  "for no no-action period (action fires always after defined page view delay). "
4464
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4465
  "strani). Nastavi piškotek."
4466
 
4467
+ #: settings.php:2822
4468
  msgctxt "no action period"
4469
  msgid "days"
4470
  msgstr "dni"
4471
 
4472
+ #: settings.php:2827
4473
  msgid "Custom Selectors"
4474
  msgstr "Selektorji Po Meri"
4475
 
4476
+ #: settings.php:2830
4477
  msgid ""
4478
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4479
  "blocking detection. Invisible element or element with zero height means ad "
4483
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4484
  "pomeni prisotnost blokiranja oglasov."
4485
 
4486
+ #: settings.php:2842
4487
  msgid "Redirection Page"
4488
  msgstr "Stran za Preusmeritev"
4489
 
4490
+ #: settings.php:2854
4491
  msgid "Custom Url"
4492
  msgstr "Url Po Meri"
4493
 
4494
+ #: settings.php:2859
4495
  msgid ""
4496
  "Static page for redirection when ad blocking is detected. For other pages "
4497
  "select Custom url and set it below."
4499
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4500
  "strani izberite Url Po Meri in ga nastavite spodaj."
4501
 
4502
+ #: settings.php:2868
4503
  msgid "Custom Redirection Url"
4504
  msgstr "Url za Preusmeritev Po Meri"
4505
 
4506
+ #: settings.php:2880
4507
  msgid "Message HTML code"
4508
  msgstr "HTML koda sporočila"
4509
 
4510
+ #: settings.php:2893
4511
  msgid "Preview message when ad blocking is detected"
4512
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4513
 
4514
+ #: settings.php:2922
4515
  msgid "Prevent visitors from closing the warning message"
4516
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4517
 
4518
+ #: settings.php:2922
4519
  msgid "Undismissible Message"
4520
  msgstr "Neodstranljivo Sporočilo"
4521
 
4522
+ #: settings.php:2928
4523
  msgid "Not undismissible for"
4524
  msgstr "Ni neodstranljivo za"
4525
 
4526
+ #: settings.php:2929
4527
  msgid "Users which can close the warning message."
4528
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4529
 
4530
+ #: settings.php:2943
4531
  msgid ""
4532
  "Force showing admin toolbar for administrators when viewing site. Enable "
4533
  "this option when you are logged in as admin and you don't see admin toolbar."
4536
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4537
  "skrbnike."
4538
 
4539
+ #: settings.php:2951
4540
  msgid "Disable header code (Header tab)"
4541
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4542
 
4543
+ #: settings.php:2955
4544
  msgid "Disable footer code (Footer tab)"
4545
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4546
 
4547
  #. translators: %s: Ad Inserter
4548
+ #: settings.php:2959
4549
  msgid "Disable %s JavaScript code"
4550
  msgstr "Onemogoči %s JavaScript kodo"
4551
 
4552
  #. translators: %s: Ad Inserter
4553
+ #: settings.php:2963
4554
  msgid "Disable %s CSS code"
4555
  msgstr "Onemogoči %s CSS kodo"
4556
 
4557
+ #: settings.php:2967
4558
  msgid ""
4559
  "Disable PHP code processing (in all blocks including header and footer code)"
4560
  msgstr ""
4561
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4562
 
4563
+ #: settings.php:2971
4564
  msgid "Disable insertion of all blocks"
4565
  msgstr "Onemogoči vstavljanje vseh blokov"
4566
 
4567
+ #: settings.php:2975
4568
  msgid "Disable insertions"
4569
  msgstr "Onemogoči vstavljanja"
4570
 
4571
  #. translators: %s: Ad Inserter
4572
+ #: settings.php:2987
4573
  msgid "%s CSS CODE"
4574
  msgstr "%s CSS KODA"
4575
 
4576
+ #: settings.php:2990
4577
  msgid "HEADER CODE"
4578
  msgstr "KODA GLAVE"
4579
 
4580
  #. translators: %s: PHP tags
4581
+ #: settings.php:2996
4582
  msgid "BLOCK PHP CODE"
4583
  msgstr "PHP KODA BLOKA"
4584
 
4585
  #. translators: %s: Ad Inserter
4586
+ #: settings.php:3002
4587
  msgid "%s JS CODE"
4588
  msgstr "%s JS KODA"
4589
 
4590
+ #: settings.php:3005
4591
  msgid "FOOTER CODE"
4592
  msgstr "KODA NOGE"
4593
 
4594
+ #: settings.php:3014
4595
  msgid "Force showing admin toolbar when viewing site"
4596
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4597
 
4598
+ #: settings.php:3021
4599
  msgid "Enable debugging functions in admin toolbar"
4600
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4601
 
4602
+ #: settings.php:3023
4603
  msgid "Debugging functions in admin toolbar"
4604
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4605
 
4606
+ #: settings.php:3030
4607
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4608
  msgstr ""
4609
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4610
  "zaslonih"
4611
 
4612
+ #: settings.php:3032
4613
  msgid "Debugging functions on mobile screens"
4614
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4615
 
4616
+ #: settings.php:3039
4617
  msgid ""
4618
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4619
  "tags, processing) by url parameters for non-logged in users. Enable this "
4628
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4629
  "vedno omogočeno."
4630
 
4631
+ #: settings.php:3041
4632
  msgid "Remote debugging"
4633
  msgstr "Oddaljeno razhroščevanje"
4634
 
4635
+ #: settings.php:3048
4636
  msgid ""
4637
  "Disable translation to see original texts for the settings and messages in "
4638
  "English"
4640
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4641
  "angleščini"
4642
 
4643
+ #: settings.php:3050
4644
  msgid "Disable translation"
4645
  msgstr "Onemogoči prevod"
4646
 
4647
+ #: settings.php:3420
4648
  msgid "Available positions for current theme"
4649
  msgstr "Razpoložljivi položaji za trenutno temo"
4650
 
4651
+ #: settings.php:3421
4652
  msgid "Error checking pages"
4653
  msgstr "Napaka pri preverjanju strani"
4654
 
4655
+ #: settings.php:3424
4656
  msgid "Toggle theme checker for available positions for automatic insertion"
4657
  msgstr ""
4658
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4659
 
4660
+ #: settings.php:3424
4661
  msgctxt "Button"
4662
  msgid "Check"
4663
  msgstr "Preveri"
4664
 
4665
+ #: settings.php:3431
4666
  msgid "Position"
4667
  msgstr "Položaj"
4668
 
4669
+ #: settings.php:3436
4670
  msgid "Archive pages"
4671
  msgstr "Strani arhiva"
4672
 
4673
+ #: settings.php:3495
4674
  msgid ""
4675
  "Position not available because output buffering (tab [*]) is not enabled"
4676
  msgstr ""
4677
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4678
 
4679
+ #: settings.php:3498 strings.php:231
4680
  msgid "Position not checked yet"
4681
  msgstr "Položaj še ni bil preverjen"
4682
 
4683
+ #: settings.php:3534
4684
  msgid "Toggle active/all blocks"
4685
  msgstr "Preklopi aktive/vse bloke"
4686
 
4687
+ #: settings.php:3538 strings.php:218
4688
  msgid "Rearrange block order"
4689
  msgstr "Preuredi vrstni red blokov"
4690
 
4691
+ #: settings.php:3543
4692
  msgid "Save new block order"
4693
  msgstr "Shrani vrstni red blokov"
4694
 
4695
+ #: settings.php:3569
4696
  msgid "Toggle active/all ad units"
4697
  msgstr "Preklopi aktivne/vse oglasne enote"
4698
 
4699
+ #: settings.php:3573
4700
  msgid "Reload AdSense ad units"
4701
  msgstr "Ponovno naloži oglasne enote AdSense"
4702
 
4703
+ #: settings.php:3577
4704
  msgid "Clear authorization to access AdSense account"
4705
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4706
 
4707
+ #: settings.php:3581 settings.php:4431 settings.php:4498 strings.php:226
4708
  msgid "Google AdSense Homepage"
4709
  msgstr "Google AdSense Domača Stran"
4710
 
4711
+ #: settings.php:3597
4712
  msgid "Switch to physical ads.txt file"
4713
  msgstr "Preklopi na fizično datoteko ads.txt"
4714
 
4715
+ #: settings.php:3598
4716
  msgid "Switch to virtual ads.txt file"
4717
  msgstr "Preklopi na navidezno datoteko ads.txt"
4718
 
4719
  #. translators: %s: ads.txt
4720
+ #: settings.php:3608
4721
  msgid "Open %s"
4722
  msgstr "Odpri %s"
4723
 
4724
+ #: settings.php:3616
4725
  msgid "Reload ads.txt file"
4726
  msgstr "Ponovno naloži datoteko ads.txt"
4727
 
4728
+ #: settings.php:3620 settings.php:4558
4729
  msgid "Save"
4730
  msgstr "Shrani"
4731
 
4732
  #. translators: %s: Ad Inserter
4733
+ #: settings.php:3795
4734
  msgid "ads.txt file: %s virtual ads.txt file"
4735
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4736
 
4737
+ #: settings.php:3800 settings.php:3820 strings.php:210
4738
  msgid "Warning"
4739
  msgstr "Opozorilo"
4740
 
4741
  #. translators: %s: Ad Inserter
4742
+ #: settings.php:3800
4743
  msgid "%s virtual file ads.txt not found"
4744
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4745
 
4746
+ #: settings.php:3808
4747
  msgid "IMPORTANT"
4748
  msgstr "POMEMBNO"
4749
 
4750
+ #: settings.php:3808
4751
  msgid "ads.txt file must be placed on the root domain"
4752
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4753
 
4754
+ #: settings.php:3813
4755
  msgid "ads.txt file"
4756
  msgstr "datoteka ads.txt"
4757
 
4758
+ #: settings.php:3813
4759
  msgid "NOT WRITABLE"
4760
  msgstr "NI ZAPISLJIVO"
4761
 
4762
+ #: settings.php:3820
4763
  msgid "file %s not found"
4764
  msgstr "datoteka %s ni najdena"
4765
 
4766
+ #: settings.php:3830
4767
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4768
  msgstr ""
4769
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4770
 
4771
  #. translators: %s: Ad Inserter
4772
+ #: settings.php:3836
4773
  msgid "%s virtual ads.txt file"
4774
  msgstr "%s navidezna datoteka ads.txt"
4775
 
4776
+ #: settings.php:3858
4777
  msgid "Advertising system"
4778
  msgstr "Oglaševalski sistem"
4779
 
4780
+ #: settings.php:3859
4781
  msgid "Account ID"
4782
  msgstr "ID Računa"
4783
 
4784
+ #: settings.php:3861
4785
  msgid "Certification authority ID"
4786
  msgstr "ID organa za potrjevanje"
4787
 
4788
+ #: settings.php:3876
4789
  msgid "Account ID found in block and present in ads.txt"
4790
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4791
 
4792
+ #: settings.php:3880
4793
  msgid "Account ID found in block but not present in ads.txt"
4794
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4795
 
4796
+ #: settings.php:4214
4797
  msgid "Preview block"
4798
  msgstr "Predogled bloka"
4799
 
4800
+ #: settings.php:4221
4801
  msgid "Pause block"
4802
  msgstr "Ustavite blok"
4803
 
4804
+ #: settings.php:4260
4805
  msgid "Automatic insertion"
4806
  msgstr "Samodejno vstavljanje"
4807
 
4808
  #. translators: %s HTML tags
4809
+ #: settings.php:4261 settings.php:5229
4810
  msgid "PHP code processing"
4811
  msgstr "Procesiranje PHP kode"
4812
 
4813
+ #: settings.php:4263
4814
  msgid "Device detection"
4815
  msgstr "Zaznavanje naprave"
4816
 
4817
+ #: settings.php:4286
4818
  msgid "No active block"
4819
  msgstr "Noben aktiven blok"
4820
 
4821
+ #: settings.php:4287
4822
  msgid "No block matches search keywords"
4823
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4824
 
4825
+ #: settings.php:4342
4826
  msgid "Ad unit"
4827
  msgstr "Enota"
4828
 
4829
+ #: settings.php:4344
4830
  msgid "Slot ID"
4831
  msgstr "ID mesta"
4832
 
4833
+ #: settings.php:4370
4834
  msgid "Copy AdSense code"
4835
  msgstr "Kopiraj kodo AdSense"
4836
 
4837
+ #: settings.php:4373
4838
  msgid "Preview AdSense ad"
4839
  msgstr "Predogled oglasa AdSense"
4840
 
4841
+ #: settings.php:4376
4842
  msgid "Get AdSense code"
4843
  msgstr "Pridobi kodo AdSense"
4844
 
4845
  #. translators: %s: HTML tags
4846
+ #: settings.php:4408
4847
  msgid ""
4848
  "Please %s clear authorization %s with the button %s above and once again "
4849
  "authorize access to your AdSense account."
4851
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4852
  "avtorizirajte dostop do vašega računa AdSense."
4853
 
4854
+ #: settings.php:4427
4855
  msgid "AdSense Integration"
4856
  msgstr "Integracija AdSense"
4857
 
4858
+ #: settings.php:4429
4859
  msgid "AdSense Integration - Step 2"
4860
  msgstr "Integracija AdSense - Korak 2"
4861
 
4862
  #. translators: %s: HTML tags
4863
+ #: settings.php:4435
4864
  msgid ""
4865
  "Authorize %s to access your AdSense account. Click on the %s Get "
4866
  "Authorization Code %s button to open a new window where you can allow "
4873
  "Avtoriziraj. %s"
4874
 
4875
  #. translators: %s: HTML tags
4876
+ #: settings.php:4442
4877
  msgid ""
4878
  "If you get error, can't access ad units or would like to use own Google API "
4879
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4884
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4885
 
4886
  #. translators: %s: HTML tags
4887
+ #: settings.php:4444
4888
  msgid ""
4889
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4890
  "Authorization Code %s button to open a new window where you can allow "
4897
  "gumb %s Avtoriziraj. %s"
4898
 
4899
  #. translators: %s: HTML tags
4900
+ #: settings.php:4451
4901
  msgid ""
4902
  "If you get error %s invalid client %s click on the button %s Clear and "
4903
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4905
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4906
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4907
 
4908
+ #: settings.php:4462
4909
  msgid "Get Authorization Code"
4910
  msgstr "Pridobi Avtoriazcijsko Kodo"
4911
 
4912
+ #: settings.php:4465
4913
  msgid "Enter Authorization Code"
4914
  msgstr "Vnesi Avorizacijsko Kodo"
4915
 
4916
+ #: settings.php:4475
4917
  msgid "Use own API IDs"
4918
  msgstr "Uporabi lastne API ID-je"
4919
 
4920
+ #: settings.php:4477
4921
  msgid "Clear and return to Step 1"
4922
  msgstr "Odstrani in se vrni na Korak 1"
4923
 
4924
+ #: settings.php:4481
4925
  msgid "Authorize"
4926
  msgstr "Avtoriziraj"
4927
 
4928
+ #: settings.php:4497
4929
  msgid "AdSense Integration - Step 1"
4930
  msgstr "Integracija AdSense - Korak 1"
4931
 
4932
  #. translators: %s: Ad Inserter
4933
+ #: settings.php:4501
4934
  msgid ""
4935
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4936
  "To do this you need to authorize %s to access your AdSense account. The "
4943
  "Odjemalca in Skrivnost Odjemalca."
4944
 
4945
  #. translators: %s: HTML tags
4946
+ #: settings.php:4510
4947
  msgid "Go to %s Google APIs and Services console %s"
4948
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4949
 
4950
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4951
+ #: settings.php:4511
4952
  msgid ""
4953
  "Create %1$s project - if the project and IDs are already created click on "
4954
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4957
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4958
 
4959
  #. translators: %s: HTML tags
4960
+ #: settings.php:4512
4961
  msgid ""
4962
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4963
  "create a new project"
4966
  "ustvaritev novega projekta"
4967
 
4968
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4969
+ #: settings.php:4513
4970
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4971
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4972
 
4973
  #. translators: %s: HTML tags
4974
+ #: settings.php:4514
4975
  msgid ""
4976
  "Click on project selection, wait for the project to be created and then and "
4977
  "select %s as the current project"
4980
  "izberite %s kot trenutni projekt"
4981
 
4982
  #. translators: %s: HTML tags
4983
+ #: settings.php:4515
4984
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4985
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4986
 
4987
  #. translators: %s: HTML tags
4988
+ #: settings.php:4516
4989
  msgid "Search for adsense and enable %s"
4990
  msgstr "Poiščite adsense in omogočite %s"
4991
 
4992
  #. translators: %s: HTML tags
4993
+ #: settings.php:4517
4994
  msgid "Click on %s CREATE CREDENTIALS %s"
4995
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4996
 
4997
  #. translators: %s: HTML tags
4998
+ #: settings.php:4518
4999
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5000
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5001
 
5002
  #. translators: %s: HTML tags
5003
+ #: settings.php:4519
5004
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5005
  msgstr ""
5006
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5007
  "podatki %s"
5008
 
5009
  #. translators: %s: HTML tags
5010
+ #: settings.php:4520
5011
  msgid "Click on %s What credentials do I need? %s"
5012
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5013
 
5014
  #. translators: %s: HTML tags
5015
+ #: settings.php:4521
5016
  msgid ""
5017
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5018
  "Ad Inserter client %s"
5021
  "vnestite %s Ad Inserter odjemalec %s"
5022
 
5023
  #. translators: %s: HTML tags
5024
+ #: settings.php:4522
5025
  msgid ""
5026
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5027
  "enter %s"
5030
  "uporabnikom %s vnesite %s"
5031
 
5032
  #. translators: %s: HTML tags
5033
+ #: settings.php:4523
5034
  msgid "Click on %s Continue %s"
5035
  msgstr "Kliknite na %s Nadaljuj %s"
5036
 
5037
  #. translators: %s: HTML tags
5038
+ #: settings.php:4524
5039
  msgid "Click on %s Done %s"
5040
  msgstr "Kliknite na %s Končaj %s"
5041
 
5042
  #. translators: %s: HTML tags
5043
+ #: settings.php:4525
5044
  msgid ""
5045
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5046
  "secret %s"
5048
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5049
  "%s Skrivnost odjemalca %s"
5050
 
5051
+ #: settings.php:4526
5052
  msgid "Copy them to the appropriate fields below"
5053
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5054
 
5055
+ #: settings.php:4532
5056
  msgid "Client ID"
5057
  msgstr "ID odjemalca"
5058
 
5059
+ #: settings.php:4535
5060
  msgid "Enter Client ID"
5061
  msgstr "Vnesite ID odjemalca"
5062
 
5063
+ #: settings.php:4540
5064
  msgid "Client secret"
5065
  msgstr "Skrivnost odjemalca"
5066
 
5067
+ #: settings.php:4543
5068
  msgid "Enter Client secret"
5069
  msgstr "Vnesite Skrivnost odjemalca"
5070
 
5071
+ #: settings.php:4553
5072
  msgid "Use default API IDs"
5073
  msgstr "Uporabi privzete API ID-je"
5074
 
5075
+ #: settings.php:4717
5076
  msgid "All posts"
5077
  msgstr "Vsi prispevki"
5078
 
5079
+ #: settings.php:4718
5080
  msgid "All static pages"
5081
  msgstr "Vse statične strani"
5082
 
5083
+ #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
5084
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5085
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5086
 
5087
+ #: settings.php:4878 settings.php:4891 settings.php:4905 settings.php:4921
5088
+ #: settings.php:5120 settings.php:5122 settings.php:5138 settings.php:5143
5089
+ #: settings.php:5151 settings.php:5152 settings.php:5155 settings.php:5161
5090
+ #: settings.php:5171 settings.php:5175
5091
  msgid "Looking for AdSense alternative?"
5092
  msgstr "Iščete alternativo za AdSense?"
5093
 
5094
+ #: settings.php:4933
5095
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5096
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5097
 
5098
+ #: settings.php:4938 settings.php:5117 settings.php:5130 settings.php:5158
5099
+ #: settings.php:5184
5100
  msgid "Use Infolinks ads with Adsense to earn more"
5101
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5102
 
5103
+ #: settings.php:4959 settings.php:5009
5104
  msgid "Support plugin development"
5105
  msgstr "Podprite razvoj vtičnika"
5106
 
5107
+ #: settings.php:4964 settings.php:5010
5108
  msgid ""
5109
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5110
  "reviewing the plugin on WordPres"
5112
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5113
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5114
 
5115
+ #: settings.php:4964
5116
  msgctxt "Review Ad Inserter"
5117
  msgid "Review"
5118
  msgstr "Ocenite"
5119
 
5120
+ #: settings.php:4969
5121
  msgid ""
5122
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5123
  "rating the plugin on WordPres"
5125
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5126
  "razširiti novico z oceno vtičnika na WordPress-u"
5127
 
5128
+ #: settings.php:4969
5129
  msgctxt "Rate Ad Inserter"
5130
  msgid "Rate"
5131
  msgstr "Ocenite"
5132
 
5133
+ #: settings.php:4974
5134
  msgid ""
5135
  "Support free Ad Inserter development. If you are making money with Ad "
5136
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5139
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5140
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5141
 
5142
+ #: settings.php:4974
5143
  msgid "Donate"
5144
  msgstr "Donirajte"
5145
 
5146
+ #: settings.php:4981 settings.php:5025
5147
  msgid "Average rating of the plugin - Thank you!"
5148
  msgstr "Povprečna ocena vtičnika - Hvala!"
5149
 
5150
  #. translators: %s: Ad Inserter, HTML tags
5151
+ #: settings.php:4992
5152
  msgid ""
5153
  "You've been using %s for a while now, and I hope you're happy with it. "
5154
  "Positive %s reviews %s are a great way to show your appreciation for my "
5163
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5164
  "bi rekli 'Hvala'."
5165
 
5166
+ #: settings.php:5010
5167
  msgid "Review"
5168
  msgstr "Ocena"
5169
 
5170
+ #: settings.php:5014
5171
  msgid "Ad Inserter on Twitter"
5172
  msgstr "Ad Inserter na Twitter-ju"
5173
 
5174
+ #: settings.php:5015
5175
  msgid "Ad Inserter on Facebook"
5176
  msgstr "Ad Inserter na Facebook-u"
5177
 
5178
+ #: settings.php:5018
5179
  msgid "Follow Ad Inserter"
5180
  msgstr "Sledi Ad Inserter-ju"
5181
 
5182
  #. translators: %s: HTML tags
5183
+ #: settings.php:5045
5184
  msgid ""
5185
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5186
  "and %s Common Settings %s pages"
5189
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5190
 
5191
  #. translators: %s: HTML tags
5192
+ #: settings.php:5057
5193
  msgid ""
5194
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5195
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
5200
  "%s Infolinks %s oglasno kodo %s"
5201
 
5202
  #. translators: %s: HTML tags
5203
+ #: settings.php:5078
5204
  msgid ""
5205
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5206
  "purchase you refer to us"
5209
  "nakup, ki nam ga posredujete"
5210
 
5211
  #. translators: %s: HTML tags
5212
+ #: settings.php:5085
5213
  msgid ""
5214
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5215
  "diagnose and fix the problem."
5218
  "navodili za diagnozo in rešitvami za težave."
5219
 
5220
  #. translators: %s: HTML tags
5221
+ #: settings.php:5089
5222
  msgid ""
5223
  "If you need any kind of help or support, please do not hesitate to open a "
5224
  "thread on the %s support forum. %s"
5226
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5227
  "nit na %s podpornem forumu. %s"
5228
 
5229
+ #: settings.php:5115 settings.php:5179 settings.php:5183
5230
  msgid "Code preview with visual CSS editor"
5231
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5232
 
5233
+ #: settings.php:5119 settings.php:5169
5234
  msgid "A/B testing - Track ad impressions and clicks"
5235
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5236
 
5237
+ #: settings.php:5134
5238
  msgid "Insert ads on AMP pages"
5239
  msgstr "Vstavite oglase na AMP straneh"
5240
 
5241
+ #: settings.php:5142
5242
  msgid "Ad blocking detection and content protection"
5243
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5244
 
5245
+ #: settings.php:5192
5246
  msgid "Looking for Pro Ad Management plugin?"
5247
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5248
 
5249
+ #: settings.php:5193
5250
  msgid "To Optimally Monetize your WordPress website?"
5251
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5252
 
5253
  #. Translators: %s: price of Ad Inserter Pro
5254
+ #: settings.php:5194
5255
  msgid "Different license types starting from %s"
5256
  msgstr "Različni tipi licenc začenši od %s"
5257
 
5258
  #. translators: %s HTML tags
5259
+ #: settings.php:5197
5260
  msgid "%s AdSense Integration %s"
5261
  msgstr "%s Integracija AdSense %s"
5262
 
5263
  #. translators: %s HTML tags
5264
+ #: settings.php:5198
5265
  msgid "Syntax highlighting %s editor %s"
5266
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5267
 
5268
  #. translators: %s HTML tags
5269
+ #: settings.php:5199
5270
  msgid "%s Code preview %s with visual CSS editor"
5271
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5272
 
5273
  #. translators: %s HTML tags
5274
+ #: settings.php:5200
5275
  msgid "Simple user interface - all settings on a single page"
5276
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5277
 
5278
  #. translators: %s HTML tags
5279
+ #: settings.php:5201
5280
  msgid ""
5281
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5282
  "image / excerpt"
5285
  "%s / sliko / izvlečkom"
5286
 
5287
  #. translators: %s HTML tags
5288
+ #: settings.php:5202
5289
  msgid "%s Automatic insertion %s between posts on blog pages"
5290
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5291
 
5292
  #. translators: %s HTML tags
5293
+ #: settings.php:5203
5294
  msgid "%s Automatic insertion %s before, between and after comments"
5295
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5296
 
5297
  #. translators: %s HTML tags
5298
+ #: settings.php:5204
5299
  msgid "%s Automatic insertion %s after %s or before %s tag"
5300
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5301
 
5302
  #. translators: %s HTML tags
5303
+ #: settings.php:5205
5304
  msgid "Automatic insertion at %s custom hook positions %s"
5305
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5306
 
5307
  #. translators: %s HTML tags
5308
+ #: settings.php:5206
5309
  msgid ""
5310
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5311
  "selectors)"
5314
  "selektorjev)"
5315
 
5316
  #. translators: %s HTML tags
5317
+ #: settings.php:5207
5318
  msgid "%s Insertion exceptions %s for individual posts and pages"
5319
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5320
 
5321
  #. translators: %s HTML tags
5322
+ #: settings.php:5208
5323
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5324
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5325
 
5326
  #. translators: %s HTML tags
5327
+ #: settings.php:5209
5328
  msgid ""
5329
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5330
  "scrolls)"
5333
  "se stran pomika)"
5334
 
5335
  #. translators: %s HTML tags
5336
+ #: settings.php:5210
5337
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5338
  msgstr ""
5339
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5340
 
5341
  #. translators: %s HTML tags
5342
+ #: settings.php:5211
5343
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5344
  msgstr ""
5345
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5346
 
5347
  #. translators: %s HTML tags
5348
+ #: settings.php:5212
5349
  msgid ""
5350
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5351
  "visible)"
5354
  "postane viden)"
5355
 
5356
  #. translators: %s HTML tags
5357
+ #: settings.php:5213
5358
  msgid ""
5359
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5360
  msgstr ""
5362
  "strani)"
5363
 
5364
  #. translators: %s HTML tags
5365
+ #: settings.php:5214
5366
  msgid "Block %s alignment and style %s customizations"
5367
  msgstr "%s Poravnave in slogi %s bloka po meri"
5368
 
5369
  #. translators: %s HTML tags
5370
+ #: settings.php:5215
5371
  msgid ""
5372
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5373
  "TOS)"
5375
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5376
 
5377
  #. translators: %s HTML tags
5378
+ #: settings.php:5216
5379
  msgid ""
5380
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5381
  "feeds"
5384
  "virih"
5385
 
5386
  #. translators: %s HTML tags
5387
+ #: settings.php:5217
5388
  msgid "%s Ad rotation %s (works also with caching)"
5389
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5390
 
5391
  #. translators: %s HTML tags
5392
+ #: settings.php:5218
5393
  msgid "Create, edit and check %s ads.txt %s file"
5394
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5395
 
5396
  #. translators: %s HTML tags
5397
+ #: settings.php:5219
5398
  msgid ""
5399
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5400
  "AdSense)"
5403
  "AdSense)"
5404
 
5405
  #. translators: %s HTML tags
5406
+ #: settings.php:5220
5407
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5408
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5409
 
5410
  #. translators: %s HTML tags
5411
+ #: settings.php:5221
5412
  msgid "%s Public web reports %s for clients, export to PDF"
5413
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5414
 
5415
  #. translators: %s HTML tags
5416
+ #: settings.php:5222
5417
  msgid "Support for %s A/B testing %s"
5418
  msgstr "Podpora za %s A/B testiranje %s"
5419
 
5420
  #. translators: %s HTML tags
5421
+ #: settings.php:5223
5422
  msgid "Frequency capping - %s limit impressions or clicks %s"
5423
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5424
 
5425
  #. translators: %s HTML tags
5426
+ #: settings.php:5224
5427
  msgid "Click fraud %s protection %s"
5428
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5429
 
5430
  #. translators: %s HTML tags
5431
+ #: settings.php:5225
5432
  msgid "Support for %s lazy loading %s"
5433
  msgstr "Podpora za %s leno nalaganje %s"
5434
 
5435
  #. translators: %s HTML tags
5436
+ #: settings.php:5226
5437
  msgid "Support for ads on %s AMP pages %s"
5438
  msgstr "Podpora za oglase na %s AMP straneh %s"
5439
 
5440
  #. translators: %s HTML tags
5441
+ #: settings.php:5227
5442
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5443
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5444
 
5445
  #. translators: %s HTML tags
5446
+ #: settings.php:5228
5447
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5448
  msgstr ""
5449
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5450
 
5451
  #. translators: %s HTML tags
5452
+ #: settings.php:5230
5453
  msgid "%s Banner %s code generator"
5454
  msgstr "Generator kode za %s pasice %s"
5455
 
5456
  #. translators: %s HTML tags
5457
+ #: settings.php:5231
5458
  msgid "Support for %s header and footer %s code"
5459
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5460
 
5461
  #. translators: %s HTML tags
5462
+ #: settings.php:5232
5463
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5464
  msgstr ""
5465
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5466
 
5467
  #. translators: %s HTML tags
5468
+ #: settings.php:5233
5469
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5470
  msgstr ""
5471
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5472
  "strežnika"
5473
 
5474
  #. translators: %s HTML tags
5475
+ #: settings.php:5234
5476
  msgid "Client-side %s mobile device detection %s (works with caching)"
5477
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5478
 
5479
  #. translators: %s HTML tags
5480
+ #: settings.php:5235
5481
  msgid ""
5482
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5483
  "protection"
5486
  "vsebine"
5487
 
5488
  #. translators: %s HTML tags
5489
+ #: settings.php:5236
5490
  msgid "%s Ad blocking statistics %s"
5491
  msgstr "%s Statistika blokiranja oglasov %s"
5492
 
5493
  #. translators: %s HTML tags
5494
+ #: settings.php:5237
5495
  msgid ""
5496
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5497
  "referrers, operating systems, browsers"
5500
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5501
 
5502
  #. translators: %s HTML tags
5503
+ #: settings.php:5238
5504
  msgid ""
5505
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5506
  msgstr ""
5507
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5508
 
5509
  #. translators: %s HTML tags
5510
+ #: settings.php:5239
5511
  msgid "%s Multisite options %s to limit settings on the sites"
5512
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5513
 
5514
  #. translators: %s HTML tags
5515
+ #: settings.php:5240
5516
  msgid "%s Import/Export %s block or plugin settings"
5517
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5518
 
5519
  #. translators: %s HTML tags
5520
+ #: settings.php:5241
5521
  msgid "%s Insertion scheduling %s with fallback option"
5522
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5523
 
5524
  #. translators: %s HTML tags
5525
+ #: settings.php:5242
5526
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5527
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5528
 
5529
  #. translators: %s HTML tags
5530
+ #: settings.php:5243
5531
  msgid "Simple troubleshooting with many %s debugging functions %s"
5532
  msgstr ""
5533
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5534
 
5535
  #. translators: %s HTML tags
5536
+ #: settings.php:5244
5537
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5538
  msgstr ""
5539
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5540
 
5541
  #. translators: %s HTML tags
5542
+ #: settings.php:5245
5543
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5544
  msgstr ""
5545
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5546
 
5547
  #. translators: %s HTML tags
5548
+ #: settings.php:5246
5549
  msgid ""
5550
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5551
  msgstr ""
5552
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5553
 
5554
  #. translators: %s HTML tags
5555
+ #: settings.php:5247
5556
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5557
  msgstr ""
5558
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5559
 
5560
  #. translators: %s HTML tags
5561
+ #: settings.php:5248
5562
  msgid "No ads on the settings page"
5563
  msgstr "Stran z nastavitvami brez oglasov"
5564
 
5565
  #. translators: %s HTML tags
5566
+ #: settings.php:5249
5567
  msgid "Premium support"
5568
  msgstr "Vrhunska podpora"
5569
 
5570
  #. translators: %s HTML tags
5571
+ #: settings.php:5252
5572
  msgid ""
5573
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5574
  "website with many advertising features to automatically insert adverts on "
5595
  "bodo ohranile)."
5596
 
5597
  #. translators: %s HTML tags
5598
+ #: settings.php:5265
5599
  msgid "Looking for %s Pro Ad Management plugin? %s"
5600
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5601
 
5602
  #. translators: %s HTML tags
5603
+ #: settings.php:5270
5604
  msgid "Ads between posts"
5605
  msgstr "Oglasi med prispevki"
5606
 
5607
  #. translators: %s HTML tags
5608
+ #: settings.php:5271
5609
  msgid "Ads between comments"
5610
  msgstr "Oglasi med komentarji"
5611
 
5612
  #. translators: %s HTML tags
5613
+ #: settings.php:5272
5614
  msgid "Support via email"
5615
  msgstr "Podpora prek elektronske pošte"
5616
 
5617
  #. translators: %s HTML tags
5618
+ #: settings.php:5278
5619
  msgid "%s Sticky positions %s"
5620
  msgstr "%s Lepljivi položaji %s"
5621
 
5622
  #. translators: %s HTML tags
5623
+ #: settings.php:5279
5624
  msgid "%s Limit insertions %s"
5625
  msgstr "%s Omeji vstavljanja %s"
5626
 
5627
  #. translators: %s HTML tags
5628
+ #: settings.php:5280
5629
  msgid "%s Clearance %s options"
5630
  msgstr "Možnosti %s izogibanja %s"
5631
 
5632
  #. translators: %s HTML tags
5633
+ #: settings.php:5286
5634
  msgid "Ad rotation"
5635
  msgstr "Vrtenje oglasov"
5636
 
5637
  #. translators: %s HTML tags
5638
+ #: settings.php:5287
5639
  msgid "%s A/B testing %s"
5640
  msgstr "%s A/B testiranje %s"
5641
 
5642
  #. translators: %s HTML tags
5643
+ #: settings.php:5288
5644
  msgid "%s Ad tracking %s"
5645
  msgstr "%s Sledenje oglasom %s"
5646
 
5647
  #. translators: %s HTML tags
5648
+ #: settings.php:5294
5649
  msgid "Support for %s AMP pages %s"
5650
  msgstr "Podpora za %s AMP strani %s"
5651
 
5652
  #. translators: %s HTML tags
5653
+ #: settings.php:5295
5654
  msgid "%s Ad blocking detection %s"
5655
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5656
 
5657
  #. translators: %s HTML tags
5658
+ #: settings.php:5296
5659
  msgid "%s Mobile device detection %s"
5660
  msgstr "%s Zaznavanje mobilne naprave %s"
5661
 
5662
  #. translators: %s HTML tags
5663
+ #: settings.php:5303
5664
  msgid "64 code blocks"
5665
  msgstr "64 kodnih blokov"
5666
 
5667
  #. translators: %s HTML tags
5668
+ #: settings.php:5304
5669
  msgid "%s GEO targeting %s"
5670
  msgstr "%s GEO ciljanje %s"
5671
 
5672
  #. translators: %s HTML tags
5673
+ #: settings.php:5305
5674
  msgid "%s Scheduling %s"
5675
  msgstr "%s Urnik %s"
5676
 
6202
  msgstr "Napredno"
6203
 
6204
  #: strings.php:163
6205
+ msgctxt "Manual loading"
6206
+ msgid "Auto"
6207
+ msgstr "Samodejno"
6208
+
6209
+ #: strings.php:164
6210
+ msgctxt "Manual loading"
6211
+ msgid "Always"
6212
+ msgstr "Vedno"
6213
+
6214
+ #: strings.php:166
6215
  msgid "Top right"
6216
  msgstr "Zgoraj desno"
6217
 
6218
+ #: strings.php:167
6219
  msgid "Top left"
6220
  msgstr "Zgoraj levo"
6221
 
6222
+ #: strings.php:168
6223
  msgid "Bottom right"
6224
  msgstr "Spodaj desno"
6225
 
6226
+ #: strings.php:169
6227
  msgid "Bottom left"
6228
  msgstr "Spodaj levo"
6229
 
6230
+ #: strings.php:171
6231
  msgctxt "AdSense Ad Type"
6232
  msgid "Standard"
6233
  msgstr "Običajni"
6234
 
6235
+ #: strings.php:172
6236
  msgctxt "AdSense Ad Type"
6237
  msgid "Link"
6238
  msgstr "Povezave"
6239
 
6240
+ #: strings.php:173
6241
  msgctxt "AdSense Ad Type"
6242
  msgid "In-article"
6243
  msgstr "V članku"
6244
 
6245
+ #: strings.php:174
6246
  msgctxt "AdSense Ad Type"
6247
  msgid "In-feed"
6248
  msgstr "V viru"
6249
 
6250
+ #: strings.php:175
6251
  msgctxt "AdSense Ad Type"
6252
  msgid "Matched content"
6253
  msgstr "Prilagojena vsebina"
6254
 
6255
+ #: strings.php:176
6256
  msgctxt "AdSense Ad Type"
6257
  msgid "Auto Ads"
6258
  msgstr "Samodejni"
6259
 
6260
+ #: strings.php:177
6261
  msgctxt "AdSense Ad Type"
6262
  msgid "AMP Only"
6263
  msgstr "Samo AMP"
6264
 
6265
+ #: strings.php:179
6266
  msgctxt "AMP ad"
6267
  msgid "Disabled"
6268
  msgstr "Onemogočen"
6269
 
6270
+ #: strings.php:180
6271
  msgid "Above the fold"
6272
  msgstr "Nad pregibom"
6273
 
6274
+ #: strings.php:181
6275
  msgid "Below the fold"
6276
  msgstr "Pod pregibom"
6277
 
6278
+ #: strings.php:182
6279
  msgctxt "AMP ad"
6280
  msgid "Sticky"
6281
  msgstr "Lepljiv"
6282
 
6283
+ #: strings.php:184
6284
  msgctxt "size"
6285
  msgid "Fixed"
6286
  msgstr "Fiksna"
6287
 
6288
+ #: strings.php:185
6289
  msgctxt "size"
6290
  msgid "Responsive"
6291
  msgstr "Odzivna"
6292
 
6293
+ #: strings.php:186
6294
  msgctxt "size"
6295
  msgid "Fixed by viewport"
6296
  msgstr "Fiksna glede na pogled"
6297
 
6298
+ #: strings.php:190
6299
  msgid "Impressions and clicks"
6300
  msgstr "Prikazi in Kliki"
6301
 
6302
+ #: strings.php:191
6303
  msgid "Advanced WordPress Ad Management Plugin"
6304
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
6305
 
6306
+ #: strings.php:197
6307
  msgctxt "Button"
6308
  msgid "Hide"
6309
  msgstr "Skrij"
6310
 
6311
+ #: strings.php:198
6312
  msgctxt "Button"
6313
  msgid "Show"
6314
  msgstr "Pokaži"
6315
 
6316
+ #: strings.php:199
6317
  msgid "Insertion expired"
6318
  msgstr "Vstavljanje poteklo"
6319
 
6320
+ #: strings.php:200
6321
  msgid "Duration"
6322
  msgstr "Trajanje"
6323
 
6324
+ #: strings.php:201
6325
  msgid "Invalid end date - must be after start date"
6326
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
6327
 
6328
+ #: strings.php:202
6329
  msgid "Invalid start date - only data for 1 year back is available"
6330
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
6331
 
6332
+ #: strings.php:203
6333
  msgid "Invalid date range - only data for 1 year can be displayed"
6334
  msgstr ""
6335
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6336
 
6337
+ #: strings.php:211
6338
  msgid "Delete"
6339
  msgstr "Pobriši"
6340
 
6341
+ #: strings.php:212
6342
  msgid "Switch"
6343
  msgstr "Preklopi"
6344
 
6345
+ #: strings.php:214
6346
  msgid "Delete all statistics data?"
6347
  msgstr "Pobrišem vse podatke o statistiki?"
6348
 
6349
  #. translators: %s: dates
6350
+ #: strings.php:216
6351
  msgid "Delete statistics data between %s and %s?"
6352
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
6353
 
6354
+ #: strings.php:217
6355
  msgid "Cancel block order rearrangement"
6356
  msgstr "Prekliči preureditev vrstnega reda blokov"
6357
 
6358
+ #: strings.php:219
6359
  msgid "downloading..."
6360
  msgstr "prenašam..."
6361
 
6362
+ #: strings.php:220
6363
  msgid "download error"
6364
  msgstr "napaka pri prenosu"
6365
 
6366
+ #: strings.php:221
6367
  msgid "update error"
6368
  msgstr "napaka pri posodobitvi"
6369
 
6370
+ #: strings.php:222
6371
  msgid "Updating..."
6372
  msgstr "Posodabljam..."
6373
 
6374
+ #: strings.php:224
6375
  msgid "ERROR"
6376
  msgstr "NAPAKA"
6377
 
6378
+ #: strings.php:225
6379
  msgid "Error reloading settings"
6380
  msgstr "Napaka pri nalaganju nastavitev"
6381
 
6382
+ #: strings.php:227
6383
  msgctxt "Search field placeholder"
6384
  msgid "Search..."
6385
  msgstr "Išči..."
6386
 
6387
+ #: strings.php:228
6388
  msgctxt "Search field placeholder"
6389
  msgid "Filter..."
6390
  msgstr "Filter..."
6391
 
6392
+ #: strings.php:229
6393
  msgid "Use filter to limit names in the list"
6394
  msgstr "Uporabite filter za omejitev imen v seznamu"
6395
 
6396
+ #: strings.php:230
6397
  msgctxt "Button"
6398
  msgid "Filter"
6399
  msgstr "Filter"
6400
 
6401
+ #: strings.php:232
6402
  msgid "Position not available"
6403
  msgstr "Položaj ni na razpolago"
6404
 
6405
+ #: strings.php:233
6406
  msgid ""
6407
  "Theme check | Selected position for automatic insertion might not be not "
6408
  "available on this page type"
6410
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
6411
  "razpolago na tem tipu strani"
6412
 
6413
+ #: strings.php:234
6414
  msgid "Position available"
6415
  msgstr "Položaj na razpolago"
6416
 
6417
+ #: strings.php:236
6418
  msgid "Select or upload banner image"
6419
  msgstr "Izberi ali naloži sliko pasice"
6420
 
6421
+ #: strings.php:237
6422
  msgid "Use this image"
6423
  msgstr "Uporabi to sliko"
6424
 
6425
+ #: strings.php:238
6426
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
6427
  msgstr ""
6428
  "Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
6429
 
6430
+ #: strings.php:240
6431
  msgctxt "Monday"
6432
  msgid "MO"
6433
  msgstr "PO"
6434
 
6435
+ #: strings.php:241
6436
  msgctxt "Tuesday"
6437
  msgid "TU"
6438
  msgstr "TO"
6439
 
6440
+ #: strings.php:242
6441
  msgctxt "Wednesday"
6442
  msgid "WE"
6443
  msgstr "SR"
6444
 
6445
+ #: strings.php:243
6446
  msgctxt "Thursday"
6447
  msgid "TH"
6448
  msgstr "ČE"
6449
 
6450
+ #: strings.php:244
6451
  msgctxt "Friday"
6452
  msgid "FR"
6453
  msgstr "PE"
6454
 
6455
+ #: strings.php:245
6456
  msgctxt "Saturday"
6457
  msgid "SA"
6458
  msgstr "SO"
6459
 
6460
+ #: strings.php:246
6461
  msgctxt "Sunday"
6462
  msgid "SU"
6463
  msgstr "NE"
6464
 
6465
+ #: strings.php:262
6466
+ msgctxt "Scheduling"
6467
+ msgid "FALLBACK"
6468
+ msgstr "REZERVA"
6469
+
6470
+ #: strings.php:263
6471
+ msgid "Automatically placed by AdSense Auto ads code"
6472
+ msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
6473
+
6474
+ #: strings.php:268
6475
  msgid "Add"
6476
  msgstr "Dodaj"
6477
 
6478
+ #: strings.php:269
6479
  msgctxt "Element"
6480
  msgid "Parent"
6481
  msgstr "Nadrejeni"
6482
 
6483
+ #: strings.php:270
6484
  msgid "Cancel element selection"
6485
  msgstr "Prekliči izbor HTML elementa"
6486
 
6487
+ #: strings.php:271
6488
  msgid "Select parent element"
6489
  msgstr "Izberi nadrejeni element"
6490
 
6491
+ #: strings.php:272
6492
  msgid "CSS selector"
6493
  msgstr "CSS selektor"
6494
 
6495
+ #: strings.php:273
6496
  msgid "Use current selector"
6497
  msgstr "Uporabi trenutni selektor"
6498
 
6499
+ #: strings.php:274
6500
  msgid "ELEMENT"
6501
  msgstr "ELEMENT"
6502
 
6503
+ #: strings.php:275
6504
  msgid "PATH"
6505
  msgstr "POT"
6506
 
6507
+ #: strings.php:276
6508
  msgid "SELECTOR"
6509
  msgstr "SELEKTOR"
6510
 
 
 
 
 
 
 
 
 
 
6511
  #. Description of the plugin/theme
6512
  msgid ""
6513
  "Ad management with many advanced advertising features to insert ads at "
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.6.5\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-03-02 16:04:31+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,474 +12,474 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:377
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:393
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:400
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:485
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:492
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:501
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:508
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:519
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:526
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1150
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1155
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
- #: ad-inserter.php:1160 strings.php:103
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
- #: ad-inserter.php:1165 strings.php:104
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1170 strings.php:105
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1175 strings.php:155
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1222
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1226
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1521
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1856 ad-inserter.php:2943
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2362
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2362
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2363
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2364
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2365
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2366
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2367
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2638
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
- #: ad-inserter.php:2641
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2645
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2650
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2653
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2666
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
- #: ad-inserter.php:2668
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
- #: ad-inserter.php:2674
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
- #: ad-inserter.php:2691 ad-inserter.php:2726
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
- #: ad-inserter.php:2698
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:2708
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2740
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2740
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:2835
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:2864 ad-inserter.php:9942 class.php:2116
214
- #: includes/preview.php:2002 includes/preview.php:2045
215
- #: includes/preview.php:2082 settings.php:4252 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:2865 settings.php:4253 settings.php:4338
220
  msgid "Name"
221
  msgstr ""
222
 
223
- #: ad-inserter.php:2868 settings.php:1173
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
- #: ad-inserter.php:2871
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
- #: ad-inserter.php:2872
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
- #: ad-inserter.php:2884
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
- #: ad-inserter.php:2887
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
- #: ad-inserter.php:2904 ad-inserter.php:2916 strings.php:161
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:2904 ad-inserter.php:2916
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
- #: includes/functions.php:2562 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
- #: ad-inserter.php:2906
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
- #: ad-inserter.php:2908
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:2936
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
- #: ad-inserter.php:2941
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
- #: ad-inserter.php:2944 settings.php:1151
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
- #: ad-inserter.php:2946
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
- #: ad-inserter.php:2947
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
- #: ad-inserter.php:2949
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
- #: ad-inserter.php:2951
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
- #: ad-inserter.php:2998
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
- #: ad-inserter.php:3001
310
  msgid "POST"
311
  msgstr ""
312
 
313
- #: ad-inserter.php:3004
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
- #: ad-inserter.php:3007
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
- #: ad-inserter.php:3010
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
- #: ad-inserter.php:3013
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
- #: ad-inserter.php:3016
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
- #: ad-inserter.php:3019
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
- #: ad-inserter.php:3022
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
- #: ad-inserter.php:3039
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
- #: ad-inserter.php:3040
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
- #: ad-inserter.php:3069
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
- #: ad-inserter.php:3204
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
- #: ad-inserter.php:3204
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
- #: ad-inserter.php:3220
367
  msgid "Header code"
368
  msgstr ""
369
 
370
- #: ad-inserter.php:3220
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3220 ad-inserter.php:3453
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
- #: ad-inserter.php:3453
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
- #: ad-inserter.php:3453
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3459
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
- #: ad-inserter.php:3459
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
- #: ad-inserter.php:3459
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
- #: ad-inserter.php:5880
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
- #: ad-inserter.php:6546
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
- #: ad-inserter.php:6547
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
- #: ad-inserter.php:6600
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
- #: ad-inserter.php:6602
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
- #: ad-inserter.php:6696
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
- #: ad-inserter.php:7067 ad-inserter.php:7069 ad-inserter.php:7092
434
- #: settings.php:2169
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
- #: ad-inserter.php:7106 ad-inserter.php:7227
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
- #: ad-inserter.php:7303
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:7423
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:7498
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:9328 ad-inserter.php:9380
457
  msgctxt "category name"
458
  msgid "Uncategorized"
459
  msgstr ""
460
 
461
- #: ad-inserter.php:9560
462
  msgid "requires WordPress 4.6 or newer"
463
  msgstr ""
464
 
465
- #: ad-inserter.php:9560
466
  msgid "Please update!"
467
  msgstr ""
468
 
469
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
470
  #. name with HTML tags will be added)
471
- #: ad-inserter.php:9815
472
  msgid "Thank you for installing"
473
  msgstr ""
474
 
475
  #. translators: Opt-in message: %s: HTML tags
476
- #: ad-inserter.php:9817
477
  msgid ""
478
  "We would like to %s track its usage %s on your site. This is completely "
479
  "optional and can be disabled at any time."
480
  msgstr ""
481
 
482
- #: ad-inserter.php:9819
483
  msgid ""
484
  "We don't record any sensitive data, only information regarding the WordPress "
485
  "environment and plugin usage, which will help us to make improvements to the "
@@ -487,7 +487,7 @@ msgid ""
487
  msgstr ""
488
 
489
  #. translators: Deactivation message: %s: HTML tags
490
- #: ad-inserter.php:9856
491
  msgid ""
492
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
493
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -495,57 +495,57 @@ msgid ""
495
  msgstr ""
496
 
497
  #. translators: %s: Ad Inserter
498
- #: ad-inserter.php:9900
499
  msgid "%s block."
500
  msgstr ""
501
 
502
  #. translators: widget title
503
- #: ad-inserter.php:9916 ad-inserter.php:9951
504
  msgid "Processing log"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:9918 ad-inserter.php:9952
509
  msgid "Dummy widget"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
- #: ad-inserter.php:9920 ad-inserter.php:9950
514
  msgid "Debugging tools"
515
  msgstr ""
516
 
517
  #. translators: block status (widget title)
518
- #: ad-inserter.php:9927
519
  msgctxt "block"
520
  msgid "PAUSED"
521
  msgstr ""
522
 
523
- #: ad-inserter.php:9928
524
  msgid "WIDGET DISABLED"
525
  msgstr ""
526
 
527
- #: ad-inserter.php:9929
528
  msgid "Unknown block"
529
  msgstr ""
530
 
531
- #: ad-inserter.php:9937 includes/functions-check-now.php:3261
532
- #: includes/functions.old.php:3186 includes/functions.php:3479
533
- #: settings.php:1203
534
  msgid "Title"
535
  msgstr ""
536
 
537
- #: ad-inserter.php:9959
538
  msgctxt "Widget"
539
  msgid "Sticky"
540
  msgstr ""
541
 
542
- #: ad-inserter.php:10008
543
  msgid ""
544
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
545
  "Inserter you need to first deactivate Ad Inserter Pro."
546
  msgstr ""
547
 
548
- #: ad-inserter.php:10009
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 "
@@ -557,177 +557,177 @@ msgstr ""
557
  msgid "PHP error in %s block"
558
  msgstr ""
559
 
560
- #: class.php:2066
561
  msgid "Counters"
562
  msgstr ""
563
 
564
- #: class.php:2070
565
  msgid "Content"
566
  msgstr ""
567
 
568
- #: class.php:2075
569
  msgid "Excerpt"
570
  msgstr ""
571
 
572
- #: class.php:2080 strings.php:17
573
  msgid "Before post"
574
  msgstr ""
575
 
576
- #: class.php:2085 strings.php:18
577
  msgid "After post"
578
  msgstr ""
579
 
580
- #: class.php:2090 strings.php:25
581
  msgid "Between posts"
582
  msgstr ""
583
 
584
- #: class.php:2095 settings.php:1912 settings.php:4270
585
  msgid "Widget"
586
  msgstr ""
587
 
588
- #: class.php:2100 settings.php:4268
589
  msgid "PHP function call"
590
  msgstr ""
591
 
592
  #. Translators: %s: custom hook name
593
- #: class.php:2110
594
  msgid "Custom hook %s call"
595
  msgstr ""
596
 
597
- #: class.php:2146
598
  msgid "AJAX REQUEST"
599
  msgstr ""
600
 
601
- #: class.php:2149
602
  msgid "Ajax request for block in iframe"
603
  msgstr ""
604
 
605
- #: class.php:2183
606
  msgid "Ajax request url, click to open it in a new tab"
607
  msgstr ""
608
 
609
- #: class.php:2186
610
  msgid "IN THE LOOP"
611
  msgstr ""
612
 
613
- #: class.php:2186
614
  msgid "YES"
615
  msgstr ""
616
 
617
- #: class.php:2186
618
  msgid "NO"
619
  msgstr ""
620
 
621
- #: class.php:2222
622
  msgid "BLOCK"
623
  msgstr ""
624
 
625
- #: class.php:2222
626
  msgctxt "block or widget"
627
  msgid "INSERTED BUT NOT VISIBLE"
628
  msgstr ""
629
 
630
- #: class.php:2390
631
  msgctxt "viewports"
632
  msgid "ALL"
633
  msgstr ""
634
 
635
- #: class.php:2423 class.php:2465 class.php:3710 strings.php:267
636
  msgctxt "Block"
637
  msgid "HIDDEN"
638
  msgstr ""
639
 
640
- #: class.php:2472 class.php:3713 strings.php:266
641
  msgctxt "Block"
642
  msgid "VISIBLE"
643
  msgstr ""
644
 
645
- #: class.php:2977 class.php:3047
646
  msgid "ACTIVE GROUPS"
647
  msgstr ""
648
 
649
- #: class.php:3409
650
  msgid "start='%s' end='%s' days='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
- #: class.php:3417
655
  msgid "parameters='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
- #: class.php:3419
660
  msgid "referers='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
- #: class.php:3421
665
  msgid "clients='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
- #: class.php:3593
670
  msgid "countries='%s' type='%s'"
671
  msgstr ""
672
 
673
  #. translators: %s: list parameters and type
674
- #: class.php:3595
675
  msgid "ip addresses='%s' type='%s'"
676
  msgstr ""
677
 
678
- #: class.php:3710 class.php:3713
679
  msgid "viewport='%s' type='%s'"
680
  msgstr ""
681
 
682
- #: class.php:4067 strings.php:249
683
  msgid "BEFORE"
684
  msgstr ""
685
 
686
- #: class.php:4075 strings.php:251
687
  msgid "PREPEND CONTENT"
688
  msgstr ""
689
 
690
- #: class.php:4079 strings.php:252
691
  msgid "APPEND CONTENT"
692
  msgstr ""
693
 
694
- #: class.php:4083 strings.php:253
695
  msgid "REPLACE CONTENT"
696
  msgstr ""
697
 
698
- #: class.php:4087 strings.php:254
699
  msgid "REPLACE ELEMENT"
700
  msgstr ""
701
 
702
- #: class.php:4098 strings.php:250
703
  msgid "AFTER"
704
  msgstr ""
705
 
706
- #: class.php:4183 includes/preview.php:2045 includes/preview.php:2082
707
  msgid "Code"
708
  msgstr ""
709
 
710
- #: class.php:4186
711
  msgid "for block"
712
  msgstr ""
713
 
714
- #: class.php:7883
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
718
  msgstr ""
719
 
720
  #: includes/editor.php:7 includes/placeholders.php:352
721
- #: includes/preview.php:1988 strings.php:256
722
  msgid "Use"
723
  msgstr ""
724
 
725
- #: includes/editor.php:8 includes/preview.php:1989
726
  msgid "Reset"
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
- #: includes/preview.php:1991 settings.php:3611 strings.php:210 strings.php:255
731
  msgid "Cancel"
732
  msgstr ""
733
 
@@ -736,361 +736,361 @@ msgid "Visual Code Editor"
736
  msgstr ""
737
 
738
  #: includes/editor.php:262 includes/preview-adb.php:289
739
- #: includes/preview.php:1978
740
  msgid ""
741
  "This page was not loaded properly. Please check browser, plugins and ad "
742
  "blockers."
743
  msgstr ""
744
 
745
- #: includes/editor.php:264 settings.php:286
746
  msgid "Error loading page"
747
  msgstr ""
748
 
749
  #: includes/editor.php:264 includes/preview-adb.php:291
750
- #: includes/preview.php:1980
751
  msgid "PAGE BLOCKED"
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
- #: includes/functions.php:301
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
- #: includes/functions.php:320
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
- #: includes/functions.php:397
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
- #: includes/functions.php:397
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
- #: includes/functions.php:401
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
- #: includes/functions.php:421
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
- #: includes/functions.php:424
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
- #: includes/functions.php:426
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
- #: includes/functions.php:433
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
- #: includes/functions.php:433
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
- #: includes/functions.php:448
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
- #: includes/functions.php:451
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
- #: includes/functions.php:452 settings.php:1354 settings.php:2826
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
- #: includes/functions.php:457
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
- #: includes/functions.php:460
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
- #: includes/functions.php:471
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
- #: includes/functions.php:486
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
- #: includes/functions.php:486
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
- #: includes/functions.php:493
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
- #: includes/functions.php:498
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
- #: includes/functions.php:512
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
- #: includes/functions.php:520 includes/functions.php:3222
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
- #: includes/functions-check-now.php:528 includes/functions.php:529
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
- #: includes/functions.php:544
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
- #: includes/functions.php:548
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
- #: includes/functions.php:552
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
- #: includes/functions.php:560 settings.php:1108 settings.php:2270
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
- #: includes/functions.php:620 includes/preview.php:2131
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
- #: includes/functions.php:643
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
- #: includes/functions.php:651 includes/preview.php:2186
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
- #: includes/functions.php:666
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
- #: includes/functions.php:691 includes/preview.php:2237
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
- #: includes/functions.php:709
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
- #: includes/functions.php:718
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
- #: includes/functions.php:722
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
- #: includes/functions.php:722
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
- #: includes/functions.php:726
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
- #: includes/functions.php:726
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
- #: includes/functions.php:730
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
- #: includes/functions.php:732
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
- #: includes/functions.php:774 includes/functions.php:2701
973
- #: includes/functions.php:2717
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
- #: includes/functions.php:778 includes/functions.php:2705
981
- #: includes/functions.php:2721
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
- #: includes/functions.php:785
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
- #: includes/functions.php:791 settings.php:3546 settings.php:3582
992
- #: settings.php:3624 strings.php:220
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
- #: includes/functions.php:812
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
- #: includes/functions.php:816
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
- #: includes/functions.php:819 includes/functions.php:5692
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
- #: includes/functions.php:819 includes/functions.php:5692
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
- #: includes/functions.php:822 includes/functions.php:5695
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
- #: includes/functions.php:822 includes/functions.php:5695
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
- #: includes/functions.php:825 includes/functions.php:5698
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
- #: includes/functions.php:825 includes/functions.php:5698
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
- #: includes/functions.php:828 includes/functions.php:5701
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
- #: includes/functions.php:831 includes/functions.php:5704
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
- #: includes/functions.php:834 includes/functions.php:5707
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
- #: includes/functions.php:837 includes/functions.php:5710
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
- #: includes/functions.php:840 includes/functions.php:5713
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
- #: includes/functions.php:850 includes/functions.php:5723
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
- #: includes/functions.php:866
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
- #: includes/functions.php:866
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
- #: includes/functions.php:870
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
@@ -1098,170 +1098,170 @@ msgid ""
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
- #: includes/functions.php:870
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
- #: includes/functions.php:874
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
- #: includes/functions.php:887
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
- #: includes/functions.php:897
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
- #: includes/functions.php:899
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
- #: includes/functions.php:929
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
- #: includes/functions.php:935
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
- #: includes/functions.php:938
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
- #: includes/functions.php:941
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
- #: includes/functions.php:950
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
- #: includes/functions.php:954
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
- #: includes/functions.php:965
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
- #: includes/functions.php:966
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
- #: includes/functions.php:970 includes/functions.php:3187
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
- #: includes/functions.php:973
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
- #: includes/functions.php:977 includes/functions.php:3190
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
- #: includes/functions.php:986
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
- #: includes/functions.php:990
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
- #: includes/functions.php:1437 includes/functions.php:1747
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
- #: includes/functions.php:1443
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
- #: includes/functions-check-now.php:1402 includes/functions.php:1457
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
- #: includes/functions-check-now.php:1404 includes/functions.php:1459
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
- #: includes/functions-check-now.php:1406 includes/functions.php:1461
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
- #: includes/functions.php:1466 includes/functions.php:1756
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
- #: includes/functions.php:1472
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
- #: includes/functions.php:1481
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
- #: includes/functions.php:1482
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
- #: includes/functions.php:1490
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
- #: includes/functions.php:1491
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
- #: includes/functions.php:1491
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
- #: includes/functions.php:1749
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
@@ -1269,13 +1269,13 @@ msgstr ""
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
- #: includes/functions.php:1758
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
- #: includes/functions.php:1774
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1283,35 +1283,35 @@ msgstr ""
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
- #: includes/functions.php:1781
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
- #: includes/functions.php:1791
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
- #: includes/functions.php:1794
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
- #: includes/functions.php:1808
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
- #: includes/functions.php:1810
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
- #: includes/functions.php:1821
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1319,121 +1319,121 @@ msgstr ""
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
- #: includes/functions.php:1873
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
- #: includes/functions.php:2494
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
- #: includes/functions.php:2498 settings.php:4257
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
- #: includes/functions.php:2503
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
- #: includes/functions.php:2508 settings.php:4263
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
- #: includes/functions.php:2539
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
- #: includes/functions.php:2548
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
- #: includes/functions.php:2552
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
- #: includes/functions.php:2578 settings.php:1436 settings.php:1451
1366
- #: settings.php:1541 settings.php:2167
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
- #: includes/functions.php:2560
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
- #: includes/functions.php:2561
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
- #: includes/functions.php:2598
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
- #: includes/functions.php:2602 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
- #: includes/functions.php:2603
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
- #: includes/functions.php:2609 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
- #: includes/functions.php:2610
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
- #: includes/functions.php:2617
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
- #: includes/functions.php:2622
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
- #: includes/functions.php:2622 includes/preview.php:2000 settings.php:1103
1417
- #: settings.php:2888
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
- #: includes/functions.php:2636 settings.php:4264
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
- #: includes/functions.php:2641 includes/functions.php:4668
1430
- #: includes/functions.php:4731 settings.php:2317
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
- #: includes/functions.php:2650
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
@@ -1442,25 +1442,25 @@ msgstr ""
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
- #: includes/functions.php:2659
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
- #: includes/functions.php:2725
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
- #: includes/functions.php:2729
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
- #: includes/functions.php:2743
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
@@ -1468,8 +1468,8 @@ msgstr ""
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
- #: includes/functions.php:2749 includes/functions.php:2761
1472
- #: includes/functions.php:2846
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
@@ -1489,15 +1489,15 @@ msgstr ""
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
- #: includes/functions.php:2768 includes/functions.php:2778
1493
- #: includes/functions.php:2797 includes/functions.php:2807
1494
- #: includes/functions.php:2853 includes/functions.php:2862
1495
- #: includes/functions.php:2880 includes/functions.php:2889 settings.php:2088
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
- #: includes/functions.php:2769
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
@@ -1511,15 +1511,15 @@ msgstr ""
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
- #: includes/functions.php:2771 includes/functions.php:2781
1515
- #: includes/functions.php:2856 includes/functions.php:2865
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
- #: includes/functions.php:2779
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
@@ -1532,14 +1532,14 @@ msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
- #: includes/functions.php:2785 includes/functions.php:2814
1536
- #: includes/functions.php:2869 includes/functions.php:2896
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
- #: includes/functions.php:2786 includes/functions.php:2815
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
@@ -1554,18 +1554,18 @@ msgstr ""
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
- #: includes/functions.php:2788 includes/functions.php:2817
1558
- #: includes/functions.php:2872 includes/functions.php:2899
1559
- #: includes/functions.php:3005 includes/functions.php:3348 strings.php:201
1560
- #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1561
- #: strings.php:206
1562
  msgid "day"
1563
  msgid_plural "days"
1564
  msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
- #: includes/functions.php:2798
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
@@ -1579,27 +1579,27 @@ msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
- #: includes/functions.php:2800 includes/functions.php:2810
1583
- #: includes/functions.php:2883 includes/functions.php:2892
1584
- #: includes/functions.php:4879
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
- #: includes/functions.php:2808
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
- #: includes/functions.php:2833
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
- #: includes/functions.php:2837 includes/functions.php:2839
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
@@ -1608,19 +1608,19 @@ msgid ""
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
- #: includes/functions.php:2839
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
- #: includes/functions.php:2854
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
- #: includes/functions.php:2863
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
@@ -1628,60 +1628,60 @@ msgstr ""
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
- #: includes/functions.php:2870 includes/functions.php:2897
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
- #: includes/functions.php:2881
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
- #: includes/functions.php:2890
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
- #: includes/functions.php:2916
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
- #: includes/functions.php:2925
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
- #: includes/functions.php:2926
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
- #: includes/functions.php:2927
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
- #: includes/functions.php:2944 includes/functions.php:5936
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
- #: includes/functions.php:2996
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
- #: includes/functions.php:2997
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
@@ -1689,12 +1689,12 @@ msgstr ""
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
- #: includes/functions.php:3002
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
- #: includes/functions.php:3003
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1703,12 +1703,12 @@ msgstr ""
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
- #: includes/functions.php:3023
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
- #: includes/functions.php:3024
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
@@ -1718,7 +1718,7 @@ msgstr ""
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
- #: includes/functions.php:3026 includes/functions.php:3033
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
@@ -1726,59 +1726,59 @@ msgstr[1] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
- #: includes/functions.php:3030
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
- #: includes/functions.php:3031
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
- #: includes/functions.php:3050
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
- #: includes/functions.php:3111
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
- #: includes/functions.php:3124
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
- #: includes/functions.php:3127
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
- #: includes/functions.php:3138
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
- #: includes/functions.php:3141
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
- #: includes/functions.php:3158
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
- #: includes/functions.php:3161
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
@@ -1786,121 +1786,121 @@ msgstr ""
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
- #: includes/functions.php:3179
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
- #: includes/functions.php:3185
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
- #: includes/functions.php:3230
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
- #: includes/functions.php:3237
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
- #: includes/functions.php:3245
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
- #: includes/functions.php:3246 settings.php:2776
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
- #: includes/functions.php:3262
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
- #: includes/functions.php:3266
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
- #: includes/functions.php:3271
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
- #: includes/functions.php:3275
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
- #: includes/functions.php:3280
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
- #: includes/functions.php:3286
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
- #: includes/functions.php:3296
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
- #: includes/functions.php:3302
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
- #: includes/functions.php:3312
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
- #: includes/functions.php:3318
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
- #: includes/functions.php:3337
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
- #: includes/functions.php:3341
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
- #: includes/functions.php:3347
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
- #: includes/functions.php:3348
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
- #: includes/functions.php:3367
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
- #: includes/functions.php:3370
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1908,177 +1908,177 @@ msgid ""
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
- #: includes/functions.php:3371 strings.php:232
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
- #: includes/functions.php:3376
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
- #: includes/functions.php:3379
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
- #: includes/functions.php:3384
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
- #: includes/functions.php:3387
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
- #: includes/functions.php:3392
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
- #: includes/functions.php:3395
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
- #: includes/functions.php:3400
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
- #: includes/functions.php:3403
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
- #: includes/functions.php:3466
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
- #: includes/functions.php:3467
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
- #: includes/functions.php:3474
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
- #: includes/functions.php:3474
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
- #: includes/functions.php:3479 settings.php:3855 settings.php:4340
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
- #: includes/functions.php:3497
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
- #: includes/functions.php:3498 includes/functions.php:3505
1995
- #: includes/functions.php:3509 includes/placeholders.php:353
1996
- #: includes/preview.php:2306 settings.php:1340 settings.php:3615
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
- #: includes/functions.php:3528
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
- #: includes/functions.php:3529
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
- #: includes/functions.php:3542
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
- #: includes/functions.php:3553
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
- #: includes/functions.php:3558
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
- #: includes/functions.php:3558
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
- #: includes/functions.php:3563
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
- #: includes/functions.php:3563
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
- #: includes/functions.php:3568
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
- #: includes/functions.php:3568
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
- #: includes/functions.php:3573
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
- #: includes/functions.php:3573
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
- #: includes/functions.php:3578
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
- #: includes/functions.php:3578
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
- #: includes/functions.php:3594 settings.php:2775
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
- #: includes/functions.php:3600
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
@@ -2089,8 +2089,8 @@ msgstr ""
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
- #: includes/functions.php:4299 includes/functions.php:4421
2093
- #: includes/functions.php:4441
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
@@ -2098,119 +2098,119 @@ msgstr ""
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
- #: includes/functions.php:4300 includes/functions.php:4346
2102
- #: includes/functions.php:4415 includes/functions.php:4442
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
- #: includes/functions.php:4303 includes/functions.php:4414
2110
- #: includes/functions.php:4448
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
- #: includes/functions.php:4345 includes/functions.php:4352
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
- #: includes/functions.php:4521 includes/functions.php:4730
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
- #: includes/functions.php:4667
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
- #: includes/functions.php:4667
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
- #: includes/functions.php:4667
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
- #: includes/functions.php:4668
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
- #: includes/functions.php:4730
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
- #: includes/functions.php:4731 includes/functions.php:4732
2158
- #: includes/functions.php:4787
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
- #: includes/functions.php:4732
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
- #: includes/functions.php:4733
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
- #: includes/functions.php:4733 includes/functions.php:4793
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
- #: includes/functions.php:4875
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
- #: includes/functions.php:4875
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
- #: includes/functions.php:4879
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
- #: includes/functions.php:4974
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
- #: includes/functions.php:4995
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
- #: includes/functions.php:5019
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
@@ -2219,172 +2219,184 @@ msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
- #: includes/functions.php:5202 includes/functions.php:5294
2223
- #: includes/functions.php:5637 strings.php:186
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
- #: includes/functions.php:5543
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
- #: includes/functions.php:5548
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
- #: includes/functions.php:5553
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
- #: includes/functions.php:5558
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
- #: includes/functions.php:5563
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
- #: includes/functions.php:5568
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
- #: includes/functions.php:5573
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
- #: includes/functions.php:5578
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
- #: includes/functions.php:556
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
- #: includes/functions.php:946 includes/functions.php:982 settings.php:1667
2273
- #: settings.php:1698 settings.php:1729 settings.php:1760 settings.php:1791
2274
- #: settings.php:1822 settings.php:1852 settings.php:1882
2275
  msgid "Click to select black or white list"
2276
  msgstr ""
2277
 
2278
  #. translators: %s: Ad Inserter Pro
2279
- #: includes/functions.php:1499
2280
  msgid "Invalid %s version."
2281
  msgstr ""
2282
 
2283
- #: includes/functions.php:1500
2284
  msgid "Check license"
2285
  msgstr ""
2286
 
2287
- #: includes/functions.php:1512
2288
  msgid "License"
2289
  msgstr ""
2290
 
2291
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2292
- #: includes/functions.php:1833
2293
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2294
  msgstr ""
2295
 
2296
  #. Translators: %s: HTML tags
2297
- #: includes/functions.php:1878
2298
  msgid ""
2299
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2300
  "account %s and create license key."
2301
  msgstr ""
2302
 
2303
- #: includes/functions.php:2576
2304
  msgid "Start date"
2305
  msgstr ""
2306
 
2307
- #: includes/functions.php:2576
2308
  msgid "Enter date in format yyyy-mm-dd"
2309
  msgstr ""
2310
 
2311
- #: includes/functions.php:2577
2312
  msgid "Start time"
2313
  msgstr ""
2314
 
2315
- #: includes/functions.php:2577
2316
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2317
  msgstr ""
2318
 
2319
- #: includes/functions.php:2579
2320
  msgid "End date"
2321
  msgstr ""
2322
 
2323
- #: includes/functions.php:2580
2324
  msgid "End time"
2325
  msgstr ""
2326
 
2327
- #: includes/functions.php:2583
2328
  msgid "Select wanted days in week"
2329
  msgstr ""
2330
 
 
 
 
 
 
 
 
 
2331
  #. Translators: %s HTML tags
2332
- #: includes/functions.php:3113
2333
  msgid "Create and manage %s MaxMind license key %s"
2334
  msgstr ""
2335
 
2336
- #: includes/functions.php:3149
2337
  msgid "MaxMind license key"
2338
  msgstr ""
2339
 
2340
- #: includes/functions.php:3152
2341
  msgid "Enter license key obtained from MaxMind"
2342
  msgstr ""
2343
 
2344
- #: includes/functions.php:3418
2345
  msgid "Event category"
2346
  msgstr ""
2347
 
2348
- #: includes/functions.php:3421
2349
  msgid ""
2350
  "Category name used for external tracking events. You can use tags to get the "
2351
  "event, the number or the name of the block that caused the event."
2352
  msgstr ""
2353
 
2354
- #: includes/functions.php:3426
2355
  msgid "Event action"
2356
  msgstr ""
2357
 
2358
- #: includes/functions.php:3429
2359
  msgid ""
2360
  "Action name used for external tracking events. You can use tags to get the "
2361
  "event, the number or the name of the block that caused the event."
2362
  msgstr ""
2363
 
2364
- #: includes/functions.php:3434
2365
  msgid "Event label"
2366
  msgstr ""
2367
 
2368
- #: includes/functions.php:3437
2369
  msgid ""
2370
  "Label name used for external tracking events. You can use tags to get the "
2371
  "event, the number or the name of the block that caused the event."
2372
  msgstr ""
2373
 
2374
  #. translators: %s: Ad Inserter Pro
2375
- #: includes/functions.php:3583
2376
  msgid "Show link to %s settings page for each site on the Sites page"
2377
  msgstr ""
2378
 
2379
  #. translators: %s: Ad Inserter Pro
2380
- #: includes/functions.php:3583
2381
  msgid "Show link to %s on the Sites page"
2382
  msgstr ""
2383
 
2384
- #: includes/functions.php:5149
2385
  msgid "File %s missing."
2386
  msgstr ""
2387
 
 
 
 
 
2388
  #: includes/placeholders.php:20
2389
  msgid "Custom"
2390
  msgstr ""
@@ -2409,7 +2421,7 @@ msgstr ""
2409
  msgid "Placeholder"
2410
  msgstr ""
2411
 
2412
- #: includes/placeholders.php:363 settings.php:949 settings.php:4341
2413
  msgid "Size"
2414
  msgstr ""
2415
 
@@ -2477,7 +2489,7 @@ msgstr ""
2477
  msgid "Remove dummy paragraph"
2478
  msgstr ""
2479
 
2480
- #: includes/preview-adb.php:9 includes/preview.php:1988
2481
  msgid "Use current settings"
2482
  msgstr ""
2483
 
@@ -2504,7 +2516,7 @@ msgctxt "Button"
2504
  msgid "Default"
2505
  msgstr ""
2506
 
2507
- #: includes/preview-adb.php:12 includes/preview.php:1991
2508
  msgid "Close preview window"
2509
  msgstr ""
2510
 
@@ -2517,63 +2529,63 @@ msgstr ""
2517
  msgid "Ad Blocking Detected Message Preview"
2518
  msgstr ""
2519
 
2520
- #: includes/preview-adb.php:348 settings.php:2901
2521
  msgid "Message CSS"
2522
  msgstr ""
2523
 
2524
- #: includes/preview-adb.php:353 settings.php:2909
2525
  msgid "Overlay CSS"
2526
  msgstr ""
2527
 
2528
- #: includes/preview.php:228
2529
  msgid "Sticky Code Preview"
2530
  msgstr ""
2531
 
2532
- #: includes/preview.php:228
2533
  msgid "Code Preview"
2534
  msgstr ""
2535
 
2536
- #: includes/preview.php:1986
2537
  msgid "Highlight inserted code"
2538
  msgstr ""
2539
 
2540
- #: includes/preview.php:1986
2541
  msgid "Highlight"
2542
  msgstr ""
2543
 
2544
- #: includes/preview.php:1989
2545
  msgid "Reset to block settings"
2546
  msgstr ""
2547
 
2548
- #: includes/preview.php:2004
2549
  msgid "AdSense ad unit"
2550
  msgstr ""
2551
 
2552
- #: includes/preview.php:2071
2553
  msgid "wrapping div"
2554
  msgstr ""
2555
 
2556
- #: includes/preview.php:2076 includes/preview.php:2083
2557
  msgid "background"
2558
  msgstr ""
2559
 
2560
- #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1301
2561
  msgid "Alignment"
2562
  msgstr ""
2563
 
2564
- #: includes/preview.php:2178
2565
  msgid "Horizontal margin"
2566
  msgstr ""
2567
 
2568
- #: includes/preview.php:2227
2569
  msgid "Vertical margin"
2570
  msgstr ""
2571
 
2572
- #: includes/preview.php:2249
2573
  msgid "Animate"
2574
  msgstr ""
2575
 
2576
- #: includes/preview.php:2315
2577
  msgid ""
2578
  "This is a preview of the code between dummy paragraphs. Here you can test "
2579
  "various block alignments, visually edit margin and padding values of the "
@@ -2583,14 +2595,14 @@ msgid ""
2583
  "restores all the values to those of the current block."
2584
  msgstr ""
2585
 
2586
- #: includes/preview.php:2318
2587
  msgid ""
2588
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2589
  "code with the alignment and style as it is set for this block. Highlight "
2590
  "button highlights background, wrapping div margin and code area."
2591
  msgstr ""
2592
 
2593
- #: includes/preview.php:2320
2594
  msgid ""
2595
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2596
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2598,7 +2610,7 @@ msgid ""
2598
  "highlight ad block."
2599
  msgstr ""
2600
 
2601
- #: includes/preview.php:2326
2602
  msgid ""
2603
  "You can resize the window (and refresh the page to reload ads) to check "
2604
  "display with different screen widths.\n"
@@ -2606,7 +2618,7 @@ msgid ""
2606
  "settings will be copied to the active block."
2607
  msgstr ""
2608
 
2609
- #: includes/preview.php:2328
2610
  msgid ""
2611
  "Please note that the code, block name, alignment and style are taken from "
2612
  "the current block settings (may not be saved).\n"
@@ -2614,9 +2626,9 @@ msgid ""
2614
  "padding can't be set. However, you can use own HTML code for the block."
2615
  msgstr ""
2616
 
2617
- #: includes/preview.php:2333 includes/preview.php:2347
2618
- #: includes/preview.php:2357 includes/preview.php:2367
2619
- #: includes/preview.php:2377
2620
  msgid ""
2621
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2622
  "code with it's settings is called a block.\n"
@@ -2630,9 +2642,9 @@ msgid ""
2630
  "and manual insertion."
2631
  msgstr ""
2632
 
2633
- #: includes/preview.php:2338 includes/preview.php:2352
2634
- #: includes/preview.php:2362 includes/preview.php:2372
2635
- #: includes/preview.php:2382
2636
  msgid ""
2637
  "Few very important things you need to know in order to insert code and "
2638
  "display some ad:\n"
@@ -2645,7 +2657,7 @@ msgid ""
2645
  "individual post/page exceptions."
2646
  msgstr ""
2647
 
2648
- #: includes/preview.php:2344
2649
  msgid ""
2650
  "This is a preview of the code for sticky ads. Here you can test various "
2651
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2655,463 +2667,463 @@ msgid ""
2655
  "the values to those of the current block."
2656
  msgstr ""
2657
 
2658
- #: settings.php:155 settings.php:158
2659
  msgid ""
2660
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2661
  msgstr ""
2662
 
2663
- #: settings.php:197 settings.php:1190
2664
  msgid ""
2665
  "Settings for individual exceptions have been updated. Please check all "
2666
  "blocks that have exceptions and and then save settings."
2667
  msgstr ""
2668
 
2669
- #: settings.php:239
2670
  msgid "Online documentation"
2671
  msgstr ""
2672
 
2673
- #: settings.php:243 settings.php:784 settings.php:2284
2674
  msgid "Show AdSense ad units"
2675
  msgstr ""
2676
 
2677
- #: settings.php:252
2678
  msgid "Edit ads.txt file"
2679
  msgstr ""
2680
 
2681
- #: settings.php:255 settings.php:1133
2682
  msgid "Check theme for available positions for automatic insertion"
2683
  msgstr ""
2684
 
2685
- #: settings.php:257
2686
  msgid "List all blocks"
2687
  msgstr ""
2688
 
2689
- #: settings.php:264
2690
  msgid "Loaded plugin JavaScript file version"
2691
  msgstr ""
2692
 
2693
  #. translators: %s: HTML tags
2694
- #: settings.php:266
2695
  msgid ""
2696
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2697
  "due to inappropriate caching."
2698
  msgstr ""
2699
 
2700
- #: settings.php:267
2701
  msgid ""
2702
  "Missing version parameter of the JavaScript file, probably due to "
2703
  "inappropriate caching."
2704
  msgstr ""
2705
 
2706
- #: settings.php:268
2707
  msgid ""
2708
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2709
  "caching."
2710
  msgstr ""
2711
 
2712
- #: settings.php:269 settings.php:280
2713
  msgid ""
2714
  "Please delete browser's cache and all other caches used and then reload this "
2715
  "page."
2716
  msgstr ""
2717
 
2718
- #: settings.php:275
2719
  msgid "Loaded plugin CSS file version"
2720
  msgstr ""
2721
 
2722
  #. translators: %s: HTML tags
2723
- #: settings.php:277
2724
  msgid ""
2725
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2726
  "inappropriate caching."
2727
  msgstr ""
2728
 
2729
- #: settings.php:278
2730
  msgid ""
2731
  "Missing version parameter of the CSS file, probably due to inappropriate "
2732
  "caching."
2733
  msgstr ""
2734
 
2735
- #: settings.php:279
2736
  msgid ""
2737
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2738
  msgstr ""
2739
 
2740
- #: settings.php:286 settings.php:312
2741
  msgid "WARNING"
2742
  msgstr ""
2743
 
2744
  #. translators: %s: HTML tags
2745
- #: settings.php:288
2746
  msgid "Page may %s not be loaded properly. %s"
2747
  msgstr ""
2748
 
2749
- #: settings.php:289
2750
  msgid ""
2751
  "Check ad blocking software that may block CSS, JavaScript or image files."
2752
  msgstr ""
2753
 
2754
- #: settings.php:298
2755
  msgid "SAFE MODE"
2756
  msgstr ""
2757
 
2758
  #. translators: %s: HTML tags
2759
- #: settings.php:300
2760
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
2761
  msgstr ""
2762
 
2763
- #: settings.php:312
2764
  msgid ""
2765
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
2766
  "Debugging"
2767
  msgstr ""
2768
 
2769
- #: settings.php:314
2770
  msgid "Debugging functions enabled - some code is not inserted"
2771
  msgstr ""
2772
 
2773
- #: settings.php:331
2774
  msgid "Group name"
2775
  msgstr ""
2776
 
2777
- #: settings.php:332
2778
  msgid "Option name"
2779
  msgstr ""
2780
 
2781
- #: settings.php:338
2782
  msgid "Share"
2783
  msgstr ""
2784
 
2785
- #: settings.php:341
2786
  msgid ""
2787
  "Option share in percents - 0 means option is disabled, if share for one "
2788
  "option is not defined it will be calculated automatically. Leave all share "
2789
  "fields empty for equal option shares."
2790
  msgstr ""
2791
 
2792
- #: settings.php:344
2793
  msgid "Time"
2794
  msgstr ""
2795
 
2796
- #: settings.php:347
2797
  msgid ""
2798
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2799
  "Leave all time fields empty for no timed rotation."
2800
  msgstr ""
2801
 
2802
- #: settings.php:499
2803
  msgid "General Settings"
2804
  msgstr ""
2805
 
2806
- #: settings.php:732 settings.php:2628 settings.php:2695 settings.php:2881
2807
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2808
  msgstr ""
2809
 
2810
- #: settings.php:739
2811
  msgid "Toggle tools"
2812
  msgstr ""
2813
 
2814
- #: settings.php:747
2815
  msgid "Process PHP code in block"
2816
  msgstr ""
2817
 
2818
- #: settings.php:754
2819
  msgid "Disable insertion of this block"
2820
  msgstr ""
2821
 
2822
- #: settings.php:766
2823
  msgid "Toggle code generator"
2824
  msgstr ""
2825
 
2826
- #: settings.php:770
2827
  msgid "Toggle rotation editor"
2828
  msgstr ""
2829
 
2830
- #: settings.php:774
2831
  msgid "Open visual HTML editor"
2832
  msgstr ""
2833
 
2834
- #: settings.php:793
2835
  msgid "Clear block"
2836
  msgstr ""
2837
 
2838
- #: settings.php:798 settings.php:4212
2839
  msgid "Copy block"
2840
  msgstr ""
2841
 
2842
- #: settings.php:802
2843
  msgid "Paste name"
2844
  msgstr ""
2845
 
2846
- #: settings.php:806
2847
  msgid "Paste code"
2848
  msgstr ""
2849
 
2850
- #: settings.php:810
2851
  msgid "Paste settings"
2852
  msgstr ""
2853
 
2854
- #: settings.php:814
2855
  msgid "Paste block (name, code and settings)"
2856
  msgstr ""
2857
 
2858
- #: settings.php:833
2859
  msgid "Rotation groups"
2860
  msgstr ""
2861
 
2862
- #: settings.php:837
2863
  msgid "Remove option"
2864
  msgstr ""
2865
 
2866
- #: settings.php:841
2867
  msgid "Add option"
2868
  msgstr ""
2869
 
2870
- #: settings.php:856
2871
  msgid "Import code"
2872
  msgstr ""
2873
 
2874
- #: settings.php:860
2875
  msgid "Generate code"
2876
  msgstr ""
2877
 
2878
- #: settings.php:865
2879
  msgid "Banner"
2880
  msgstr ""
2881
 
2882
- #: settings.php:876
2883
  msgid "Image"
2884
  msgstr ""
2885
 
2886
- #: settings.php:884
2887
  msgid "Link"
2888
  msgstr ""
2889
 
2890
- #: settings.php:895
2891
  msgid "Open link in a new tab"
2892
  msgstr ""
2893
 
2894
- #: settings.php:896
2895
  msgid "Select Image"
2896
  msgstr ""
2897
 
2898
- #: settings.php:897
2899
  msgid "Select Placeholder"
2900
  msgstr ""
2901
 
2902
- #: settings.php:909
2903
  msgid "Comment"
2904
  msgstr ""
2905
 
2906
- #: settings.php:918
2907
  msgctxt "AdSense"
2908
  msgid "Publisher ID"
2909
  msgstr ""
2910
 
2911
- #: settings.php:927
2912
  msgctxt "AdSense"
2913
  msgid "Ad Slot ID"
2914
  msgstr ""
2915
 
2916
- #: settings.php:936
2917
  msgid "Ad Type"
2918
  msgstr ""
2919
 
2920
- #: settings.php:961
2921
  msgid "AMP Ad"
2922
  msgstr ""
2923
 
2924
- #: settings.php:979
2925
  msgid "Show ad units from your AdSense account"
2926
  msgstr ""
2927
 
2928
- #: settings.php:979
2929
  msgid "AdSense ad units"
2930
  msgstr ""
2931
 
2932
- #: settings.php:996
2933
  msgctxt "AdSense"
2934
  msgid "Layout"
2935
  msgstr ""
2936
 
2937
- #: settings.php:1005
2938
  msgctxt "AdSense"
2939
  msgid "Layout Key"
2940
  msgstr ""
2941
 
2942
- #: settings.php:1015
2943
  msgid "Full width"
2944
  msgstr ""
2945
 
2946
- #: settings.php:1017
2947
  msgctxt "Full width"
2948
  msgid "Enabled"
2949
  msgstr ""
2950
 
2951
- #: settings.php:1018
2952
  msgctxt "Full width"
2953
  msgid "Disabled"
2954
  msgstr ""
2955
 
2956
- #: settings.php:1099
2957
  msgid ""
2958
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2959
  "Cookie or Referer (domain)"
2960
  msgstr ""
2961
 
2962
- #: settings.php:1099
2963
  msgid "Lists"
2964
  msgstr ""
2965
 
2966
- #: settings.php:1100
2967
  msgid "Widget, Shortcode and PHP function call"
2968
  msgstr ""
2969
 
2970
- #: settings.php:1100
2971
  msgid "Manual"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1101
2975
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2976
  msgstr ""
2977
 
2978
- #: settings.php:1101
2979
  msgid "Devices"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1102
2983
  msgid ""
2984
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2985
  "feeds), Filter, Scheduling, General tag"
2986
  msgstr ""
2987
 
2988
- #: settings.php:1102
2989
  msgid "Misc"
2990
  msgstr ""
2991
 
2992
- #: settings.php:1103
2993
  msgid "Preview code and alignment"
2994
  msgstr ""
2995
 
2996
- #: settings.php:1106 settings.php:2268
2997
  msgid ""
2998
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2999
  "editor is active before saving settings."
3000
  msgstr ""
3001
 
3002
- #: settings.php:1119 settings.php:1120
3003
  msgid "Enable insertion on posts"
3004
  msgstr ""
3005
 
3006
- #: settings.php:1120 settings.php:3427
3007
  msgid "Posts"
3008
  msgstr ""
3009
 
3010
- #: settings.php:1124 settings.php:1125
3011
  msgid ""
3012
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3013
  "page or theme homepage (available positions may depend on hooks used by the "
3014
  "theme)"
3015
  msgstr ""
3016
 
3017
- #: settings.php:1125 settings.php:3429
3018
  msgid "Homepage"
3019
  msgstr ""
3020
 
3021
- #: settings.php:1129 settings.php:1130
3022
  msgid "Enable insertion on category blog pages (including sub-pages)"
3023
  msgstr ""
3024
 
3025
- #: settings.php:1130 settings.php:3430
3026
  msgid "Category pages"
3027
  msgstr ""
3028
 
3029
- #: settings.php:1140 settings.php:1141
3030
  msgid "Enable insertion on static pages"
3031
  msgstr ""
3032
 
3033
- #: settings.php:1141 settings.php:3428
3034
  msgid "Static pages"
3035
  msgstr ""
3036
 
3037
- #: settings.php:1145 settings.php:1146
3038
  msgid "Enable insertion on search blog pages"
3039
  msgstr ""
3040
 
3041
- #: settings.php:1146 settings.php:3432
3042
  msgid "Search pages"
3043
  msgstr ""
3044
 
3045
- #: settings.php:1150 settings.php:1151
3046
  msgid "Enable insertion on tag or archive blog pages"
3047
  msgstr ""
3048
 
3049
- #: settings.php:1154
3050
  msgid "Toggle settings for default insertion and list of individual exceptions"
3051
  msgstr ""
3052
 
3053
- #: settings.php:1166
3054
  msgid ""
3055
  "Enable individual post/page exceptions for insertion of this block. They can "
3056
  "be configured on the individual post/page editor page (in the settings below "
3057
  "the editor)."
3058
  msgstr ""
3059
 
3060
- #: settings.php:1167
3061
  msgid ""
3062
  "Enable individual post/page exceptions for insertion of this block. When "
3063
  "enabled they can be configured on the individual post/page editor page (in "
3064
  "the settings below the editor)."
3065
  msgstr ""
3066
 
3067
- #: settings.php:1167
3068
  msgid "Use exceptions for individual posts or pages to change insertion"
3069
  msgstr ""
3070
 
3071
  #. Translators: Enabled means...
3072
- #: settings.php:1175
3073
  msgid ""
3074
  "means the insertion for this block is enabled by default and disabled for "
3075
  "exceptions."
3076
  msgstr ""
3077
 
3078
  #. Translators: Disabled means...
3079
- #: settings.php:1176
3080
  msgid ""
3081
  "means the insertion for this block is disabled by default and enabled for "
3082
  "exceptions."
3083
  msgstr ""
3084
 
3085
- #: settings.php:1177
3086
  msgid ""
3087
  "When individual post/page exceptions are enabled they can be configured on "
3088
  "the individual post/page editor page (in the settings below the editor)."
3089
  msgstr ""
3090
 
3091
- #: settings.php:1185
3092
  msgid ""
3093
  "No exception for post or static page defined. Block will not be inserted."
3094
  msgstr ""
3095
 
3096
- #: settings.php:1203
3097
  msgctxt "post"
3098
  msgid "Type"
3099
  msgstr ""
3100
 
3101
  #. translators: %d: block number
3102
- #: settings.php:1205
3103
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3104
  msgstr ""
3105
 
3106
- #: settings.php:1206
3107
  msgid "Clear listed exceptions for block"
3108
  msgstr ""
3109
 
3110
- #: settings.php:1232 settings.php:1380 settings.php:2042
3111
  msgid "Insertion"
3112
  msgstr ""
3113
 
3114
- #: settings.php:1270
3115
  msgid ""
3116
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3117
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3121,7 +3133,7 @@ msgid ""
3121
  "negative number means counting from the opposite direction"
3122
  msgstr ""
3123
 
3124
- #: settings.php:1271
3125
  msgid ""
3126
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3127
  "means every N images, empty means all images, 0 means random image, value "
@@ -3131,285 +3143,285 @@ msgid ""
3131
  "direction"
3132
  msgstr ""
3133
 
3134
- #: settings.php:1284
3135
  msgid ""
3136
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3137
  "numbers, %N means every N excerpts, empty means all excerpts"
3138
  msgstr ""
3139
 
3140
- #: settings.php:1285
3141
  msgid ""
3142
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3143
  "numbers, %N means every N posts, empty means all posts"
3144
  msgstr ""
3145
 
3146
- #: settings.php:1286
3147
  msgid ""
3148
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3149
  "numbers, %N means every N comments, empty means all comments"
3150
  msgstr ""
3151
 
3152
- #: settings.php:1293
3153
  msgid "Toggle paragraph counting settings"
3154
  msgstr ""
3155
 
3156
- #: settings.php:1294
3157
  msgid "Toggle paragraph clearance settings"
3158
  msgstr ""
3159
 
3160
- #: settings.php:1297
3161
  msgid "Toggle insertion filter settings"
3162
  msgstr ""
3163
 
3164
- #: settings.php:1315
3165
  msgid "Toggle insertion and alignment icons"
3166
  msgstr ""
3167
 
3168
- #: settings.php:1329
3169
  msgid "Custom CSS code for the wrapping div"
3170
  msgstr ""
3171
 
3172
- #: settings.php:1332 settings.php:1333 settings.php:1334 settings.php:1335
3173
- #: settings.php:1336 settings.php:1337
3174
  msgid "CSS code for the wrapping div, click to edit"
3175
  msgstr ""
3176
 
3177
- #: settings.php:1350
3178
  msgid "HTML element"
3179
  msgstr ""
3180
 
3181
- #: settings.php:1363
3182
  msgid "HTML element selector or comma separated list of selectors"
3183
  msgstr ""
3184
 
3185
- #: settings.php:1369 settings.php:2786
3186
  msgid "Action"
3187
  msgstr ""
3188
 
3189
- #: settings.php:1381
3190
  msgid ""
3191
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3192
  "Server-side insertion inserts block when the page is generated but needs "
3193
  "Output buffering enabled."
3194
  msgstr ""
3195
 
3196
- #: settings.php:1390
3197
  msgid "Code position"
3198
  msgstr ""
3199
 
3200
- #: settings.php:1391
3201
  msgid ""
3202
  "Page position where the code for client-side insertion will be inserted."
3203
  msgstr ""
3204
 
3205
- #: settings.php:1406
3206
  msgid "Count"
3207
  msgstr ""
3208
 
3209
- #: settings.php:1412
3210
  msgid "paragraphs with tags"
3211
  msgstr ""
3212
 
3213
- #: settings.php:1418
3214
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3215
  msgstr ""
3216
 
3217
- #: settings.php:1427
3218
  msgid "that have between"
3219
  msgstr ""
3220
 
3221
- #: settings.php:1433
3222
  msgid "Minimum number of paragraph words, leave empty for no limit"
3223
  msgstr ""
3224
 
3225
- #: settings.php:1442
3226
  msgid "Maximum number of paragraph words, leave empty for no limit"
3227
  msgstr ""
3228
 
3229
- #: settings.php:1445
3230
  msgid "words"
3231
  msgstr ""
3232
 
3233
- #: settings.php:1460 settings.php:1519 settings.php:1589 settings.php:1615
3234
  msgid "Comma separated texts"
3235
  msgstr ""
3236
 
3237
- #: settings.php:1473
3238
  msgid ""
3239
  "Count also paragraphs inside these elements - defined on general plugin "
3240
  "settings page - tab [*] / tab General"
3241
  msgstr ""
3242
 
3243
  #. Translators: %s: HTML tags
3244
- #: settings.php:1479
3245
  msgid "Count inside %s elements"
3246
  msgstr ""
3247
 
3248
  #. translators: inside [HTML tags] elements that contain
3249
- #: settings.php:1491
3250
  msgid "inside"
3251
  msgstr ""
3252
 
3253
- #: settings.php:1497
3254
  msgid "Comma separated HTML tag names of container elements"
3255
  msgstr ""
3256
 
3257
  #. translators: inside [HTML tags] elements that contain
3258
- #: settings.php:1506
3259
  msgid "elements that"
3260
  msgstr ""
3261
 
3262
- #: settings.php:1532 settings.php:2165
3263
  msgid "Post/Static page must have between"
3264
  msgstr ""
3265
 
3266
- #: settings.php:1538
3267
  msgid "Minimum number of paragraphs, leave empty for no limit"
3268
  msgstr ""
3269
 
3270
- #: settings.php:1547
3271
  msgid "Maximum number of paragraphs, leave empty for no limit"
3272
  msgstr ""
3273
 
3274
  #. Translators: Post/Static page must have between X and Y paragraphs
3275
- #: settings.php:1550
3276
  msgid "paragraph"
3277
  msgid_plural "paragraphs"
3278
  msgstr[0] ""
3279
  msgstr[1] ""
3280
 
3281
- #: settings.php:1558
3282
  msgid "Minimum number of words in paragraphs above"
3283
  msgstr ""
3284
 
3285
- #: settings.php:1564
3286
  msgid ""
3287
  "Used only with automatic insertion After paragraph and empty paragraph "
3288
  "numbers"
3289
  msgstr ""
3290
 
3291
- #: settings.php:1574 settings.php:1600
3292
  msgid "In"
3293
  msgstr ""
3294
 
3295
- #: settings.php:1580
3296
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3297
  msgstr ""
3298
 
3299
- #: settings.php:1583
3300
  msgid "paragraphs above avoid"
3301
  msgstr ""
3302
 
3303
- #: settings.php:1606
3304
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3305
  msgstr ""
3306
 
3307
- #: settings.php:1609
3308
  msgid "paragraphs below avoid"
3309
  msgstr ""
3310
 
3311
- #: settings.php:1625
3312
  msgid "If text is found"
3313
  msgstr ""
3314
 
3315
- #: settings.php:1632
3316
  msgid "check up to"
3317
  msgstr ""
3318
 
3319
- #: settings.php:1640
3320
  msgctxt "check up to"
3321
  msgid "paragraphs"
3322
  msgstr ""
3323
 
3324
- #: settings.php:1656
3325
  msgid "Categories"
3326
  msgstr ""
3327
 
3328
- #: settings.php:1659
3329
  msgid "Toggle category editor"
3330
  msgstr ""
3331
 
3332
- #: settings.php:1662
3333
  msgid "Comma separated category slugs"
3334
  msgstr ""
3335
 
3336
- #: settings.php:1671
3337
  msgid "Blacklist categories"
3338
  msgstr ""
3339
 
3340
- #: settings.php:1675
3341
  msgid "Whitelist categories"
3342
  msgstr ""
3343
 
3344
- #: settings.php:1687
3345
  msgid "Tags"
3346
  msgstr ""
3347
 
3348
- #: settings.php:1690
3349
  msgid "Toggle tag editor"
3350
  msgstr ""
3351
 
3352
- #: settings.php:1693
3353
  msgid "Comma separated tag slugs"
3354
  msgstr ""
3355
 
3356
- #: settings.php:1702
3357
  msgid "Blacklist tags"
3358
  msgstr ""
3359
 
3360
- #: settings.php:1706
3361
  msgid "Whitelist tags"
3362
  msgstr ""
3363
 
3364
- #: settings.php:1718
3365
  msgid "Taxonomies"
3366
  msgstr ""
3367
 
3368
- #: settings.php:1721
3369
  msgid "Toggle taxonomy editor"
3370
  msgstr ""
3371
 
3372
- #: settings.php:1724
3373
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3374
  msgstr ""
3375
 
3376
- #: settings.php:1733
3377
  msgid "Blacklist taxonomies"
3378
  msgstr ""
3379
 
3380
- #: settings.php:1737
3381
  msgid "Whitelist taxonomies"
3382
  msgstr ""
3383
 
3384
- #: settings.php:1749
3385
  msgid "Post IDs"
3386
  msgstr ""
3387
 
3388
- #: settings.php:1752
3389
  msgid "Toggle post/page ID editor"
3390
  msgstr ""
3391
 
3392
- #: settings.php:1755
3393
  msgid "Comma separated post/page IDs"
3394
  msgstr ""
3395
 
3396
- #: settings.php:1764
3397
  msgid "Blacklist IDs"
3398
  msgstr ""
3399
 
3400
- #: settings.php:1768
3401
  msgid "Whitelist IDs"
3402
  msgstr ""
3403
 
3404
- #: settings.php:1780
3405
  msgid "Urls"
3406
  msgstr ""
3407
 
3408
- #: settings.php:1783
3409
  msgid "Toggle url editor"
3410
  msgstr ""
3411
 
3412
- #: settings.php:1786
3413
  msgid ""
3414
  "Comma separated urls (page addresses) starting with / after domain name (e."
3415
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3417,236 +3429,236 @@ msgid ""
3417
  "start*. *url-pattern*, *url-end)"
3418
  msgstr ""
3419
 
3420
- #: settings.php:1795
3421
  msgid "Blacklist urls"
3422
  msgstr ""
3423
 
3424
- #: settings.php:1799
3425
  msgid "Whitelist urls"
3426
  msgstr ""
3427
 
3428
- #: settings.php:1810
3429
  msgid "Url parameters"
3430
  msgstr ""
3431
 
3432
- #: settings.php:1814
3433
  msgid "Toggle url parameter and cookie editor"
3434
  msgstr ""
3435
 
3436
- #: settings.php:1817
3437
  msgid ""
3438
  "Comma separated url query parameters or cookies with optional values (use "
3439
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3440
  msgstr ""
3441
 
3442
- #: settings.php:1826
3443
  msgid "Blacklist url parameters"
3444
  msgstr ""
3445
 
3446
- #: settings.php:1830
3447
  msgid "Whitelist url parameters"
3448
  msgstr ""
3449
 
3450
- #: settings.php:1841
3451
  msgid "Referrers"
3452
  msgstr ""
3453
 
3454
- #: settings.php:1844
3455
  msgid "Toggle referer editor"
3456
  msgstr ""
3457
 
3458
- #: settings.php:1847
3459
  msgid ""
3460
  "Comma separated domains, use # for no referrer, you can also use partial "
3461
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3462
  msgstr ""
3463
 
3464
- #: settings.php:1856
3465
  msgid "Blacklist referers"
3466
  msgstr ""
3467
 
3468
- #: settings.php:1860
3469
  msgid "Whitelist referers"
3470
  msgstr ""
3471
 
3472
- #: settings.php:1871
3473
  msgid "Clients"
3474
  msgstr ""
3475
 
3476
- #: settings.php:1874
3477
  msgid "Toggle client editor"
3478
  msgstr ""
3479
 
3480
- #: settings.php:1877
3481
  msgid "Comma separated names (operating systems, browsers, devices)"
3482
  msgstr ""
3483
 
3484
- #: settings.php:1886
3485
  msgid "Blacklist clients"
3486
  msgstr ""
3487
 
3488
- #: settings.php:1890
3489
  msgid "Whitelist clients"
3490
  msgstr ""
3491
 
3492
- #: settings.php:1911
3493
  msgid "Enable widget for this block"
3494
  msgstr ""
3495
 
3496
- #: settings.php:1923
3497
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3498
  msgstr ""
3499
 
3500
- #: settings.php:1924 settings.php:4269
3501
  msgid "Shortcode"
3502
  msgstr ""
3503
 
3504
- #: settings.php:1939
3505
  msgid ""
3506
  "Enable PHP function call to insert this block at any position in theme file. "
3507
  "If function is disabled for block it will return empty string."
3508
  msgstr ""
3509
 
3510
- #: settings.php:1940
3511
  msgid "PHP function"
3512
  msgstr ""
3513
 
3514
- #: settings.php:1955
3515
  msgid "Client-side device detection"
3516
  msgstr ""
3517
 
3518
- #: settings.php:1956
3519
  msgid "Server-side device detection"
3520
  msgstr ""
3521
 
3522
- #: settings.php:1963
3523
  msgid "Use client-side detection to"
3524
  msgstr ""
3525
 
3526
- #: settings.php:1965
3527
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3528
  msgstr ""
3529
 
3530
  #. Translators: only on (the following devices): viewport names (devices)
3531
  #. listed
3532
- #: settings.php:1970
3533
  msgid "only on"
3534
  msgstr ""
3535
 
3536
- #: settings.php:1998
3537
  msgid "Device min width %s px"
3538
  msgstr ""
3539
 
3540
- #: settings.php:2024
3541
  msgid "Use server-side detection to insert block only for"
3542
  msgstr ""
3543
 
3544
- #: settings.php:2043
3545
  msgid "Filter"
3546
  msgstr ""
3547
 
3548
- #: settings.php:2044
3549
  msgid "Word Count"
3550
  msgstr ""
3551
 
3552
- #: settings.php:2045 settings.php:4259
3553
  msgid "Scheduling"
3554
  msgstr ""
3555
 
3556
- #: settings.php:2046
3557
  msgid "Display"
3558
  msgstr ""
3559
 
3560
- #: settings.php:2048 settings.php:2310
3561
  msgid "General"
3562
  msgstr ""
3563
 
3564
- #: settings.php:2060
3565
  msgid "Old settings for AMP pages detected"
3566
  msgstr ""
3567
 
3568
- #: settings.php:2060
3569
  msgid ""
3570
  "To insert different codes on normal and AMP pages separate them with "
3571
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3572
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3573
  msgstr ""
3574
 
3575
- #: settings.php:2060
3576
  msgid "AMP pages"
3577
  msgstr ""
3578
 
3579
- #: settings.php:2065
3580
  msgid "Enable insertion for Ajax requests"
3581
  msgstr ""
3582
 
3583
- #: settings.php:2065
3584
  msgid "Ajax requests"
3585
  msgstr ""
3586
 
3587
- #: settings.php:2070
3588
  msgid "Enable insertion in RSS feeds"
3589
  msgstr ""
3590
 
3591
- #: settings.php:2070
3592
  msgid "RSS Feed"
3593
  msgstr ""
3594
 
3595
- #: settings.php:2075
3596
  msgid "Enable insertion on page for Error 404: Page not found"
3597
  msgstr ""
3598
 
3599
- #: settings.php:2075
3600
  msgid "Error 404 page"
3601
  msgstr ""
3602
 
3603
- #: settings.php:2087
3604
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3605
  msgstr ""
3606
 
3607
- #: settings.php:2088
3608
  msgid "insertions"
3609
  msgstr ""
3610
 
3611
- #: settings.php:2090
3612
  msgid ""
3613
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3614
  "General)"
3615
  msgstr ""
3616
 
3617
- #: settings.php:2093 settings.php:2490
3618
  msgid "Max blocks per page"
3619
  msgstr ""
3620
 
3621
- #: settings.php:2105
3622
  msgid "Insert for"
3623
  msgstr ""
3624
 
3625
- #: settings.php:2113
3626
  msgid ""
3627
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3628
  "currently active). Might speed up insertion on content pages when "
3629
  "the_content filter is called multiple times."
3630
  msgstr ""
3631
 
3632
- #: settings.php:2116
3633
  msgid "Insert only in the loop"
3634
  msgstr ""
3635
 
3636
- #: settings.php:2122
3637
  msgid ""
3638
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3639
  msgstr ""
3640
 
3641
- #: settings.php:2122
3642
  msgid "Disable caching"
3643
  msgstr ""
3644
 
3645
- #: settings.php:2134
3646
  msgid "Filter insertions"
3647
  msgstr ""
3648
 
3649
- #: settings.php:2137
3650
  msgid ""
3651
  "Filter multiple insertions by specifying wanted insertions for this block - "
3652
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3654,548 +3666,548 @@ msgid ""
3654
  "using only one insertion type."
3655
  msgstr ""
3656
 
3657
- #: settings.php:2140
3658
  msgid "using"
3659
  msgstr ""
3660
 
3661
- #: settings.php:2159
3662
  msgid "Checked means specified calls are unwanted"
3663
  msgstr ""
3664
 
3665
- #: settings.php:2159
3666
  msgid "Invert filter"
3667
  msgstr ""
3668
 
3669
- #: settings.php:2166
3670
  msgid "Minimum number of post/static page words, leave empty for no limit"
3671
  msgstr ""
3672
 
3673
- #: settings.php:2168
3674
  msgid "Maximum number of post/static page words, leave empty for no limit"
3675
  msgstr ""
3676
 
3677
- #: settings.php:2181
3678
  msgid "for"
3679
  msgstr ""
3680
 
3681
- #: settings.php:2181
3682
  msgid "days after publishing"
3683
  msgstr ""
3684
 
3685
- #: settings.php:2183
3686
  msgid "Not available"
3687
  msgstr ""
3688
 
3689
- #: settings.php:2196 settings.php:2482
3690
  msgid "Ad label"
3691
  msgstr ""
3692
 
3693
- #: settings.php:2216
3694
  msgid "General tag"
3695
  msgstr ""
3696
 
3697
- #: settings.php:2220
3698
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3699
  msgstr ""
3700
 
3701
  #. translators: %s: HTML tags
3702
- #: settings.php:2229
3703
  msgid ""
3704
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3705
  "client-side device detection!"
3706
  msgstr ""
3707
 
3708
  #. translators: %s: HTML tags for text and link
3709
- #: settings.php:2243
3710
  msgid ""
3711
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3712
  "side %s insertion. Use %s Server-side %s insertion."
3713
  msgstr ""
3714
 
3715
- #: settings.php:2259
3716
  msgid "Settings"
3717
  msgstr ""
3718
 
3719
- #: settings.php:2262
3720
  msgid "Settings timestamp"
3721
  msgstr ""
3722
 
3723
- #: settings.php:2275
3724
  msgid "Are you sure you want to reset all settings?"
3725
  msgstr ""
3726
 
3727
- #: settings.php:2275
3728
  msgid "Reset All Settings"
3729
  msgstr ""
3730
 
3731
- #: settings.php:2311
3732
  msgid "Viewports"
3733
  msgstr ""
3734
 
3735
- #: settings.php:2312
3736
  msgid "Hooks"
3737
  msgstr ""
3738
 
3739
- #: settings.php:2313
3740
  msgid "Header"
3741
  msgstr ""
3742
 
3743
- #: settings.php:2314 strings.php:30
3744
  msgid "Footer"
3745
  msgstr ""
3746
 
3747
- #: settings.php:2319
3748
  msgid "Debugging"
3749
  msgstr ""
3750
 
3751
- #: settings.php:2329
3752
  msgid "Plugin priority"
3753
  msgstr ""
3754
 
3755
- #: settings.php:2337
3756
  msgid "Output buffering"
3757
  msgstr ""
3758
 
3759
- #: settings.php:2340
3760
  msgid "Needed for position Above header but may not work with all themes"
3761
  msgstr ""
3762
 
3763
- #: settings.php:2348
3764
  msgid "Syntax highlighting theme"
3765
  msgstr ""
3766
 
3767
- #: settings.php:2355
3768
  msgctxt "no syntax highlighting themes"
3769
  msgid "None"
3770
  msgstr ""
3771
 
3772
- #: settings.php:2356
3773
  msgid "No Syntax Highlighting"
3774
  msgstr ""
3775
 
3776
- #: settings.php:2358
3777
  msgctxt "syntax highlighting themes"
3778
  msgid "Light"
3779
  msgstr ""
3780
 
3781
- #: settings.php:2373
3782
  msgctxt "syntax highlighting themes"
3783
  msgid "Dark"
3784
  msgstr ""
3785
 
3786
- #: settings.php:2399
3787
  msgid "Min. user role for ind. exceptions editing"
3788
  msgstr ""
3789
 
3790
- #: settings.php:2409
3791
  msgid "Disable caching for logged in administrators"
3792
  msgstr ""
3793
 
3794
- #: settings.php:2412
3795
  msgid ""
3796
  "Enabled means that logged in administrators will see non-cached (live) pages "
3797
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3798
  msgstr ""
3799
 
3800
- #: settings.php:2420
3801
  msgid "Wait for jQuery"
3802
  msgstr ""
3803
 
3804
- #: settings.php:2423
3805
  msgid ""
3806
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3807
  "it will run the scripts that may need it"
3808
  msgstr ""
3809
 
3810
- #: settings.php:2431
3811
  msgid "Sticky widget mode"
3812
  msgstr ""
3813
 
3814
- #: settings.php:2434
3815
  msgid ""
3816
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3817
  "mode works with most themes but may reload ads on page load."
3818
  msgstr ""
3819
 
3820
- #: settings.php:2442
3821
  msgid "Sticky widget top margin"
3822
  msgstr ""
3823
 
3824
- #: settings.php:2450
3825
  msgid "Dynamic blocks"
3826
  msgstr ""
3827
 
3828
- #: settings.php:2463
3829
  msgid "Functions for paragraph counting"
3830
  msgstr ""
3831
 
3832
- #: settings.php:2466
3833
  msgid ""
3834
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3835
  "functions if paragraphs are not counted properly on non-english pages."
3836
  msgstr ""
3837
 
3838
- #: settings.php:2474
3839
  msgid "No paragraph counting inside"
3840
  msgstr ""
3841
 
3842
- #: settings.php:2485
3843
  msgid "Label text or HTML code"
3844
  msgstr ""
3845
 
3846
- #: settings.php:2493
3847
  msgid ""
3848
  "Maximum number of inserted blocks per page. You need to enable Max page "
3849
  "insertions (button Misc / tab Insertion) to count block for this limit."
3850
  msgstr ""
3851
 
3852
- #: settings.php:2507
3853
  msgid "Plugin usage tracking"
3854
  msgstr ""
3855
 
3856
  #. translators: %s: Ad Inserter
3857
- #: settings.php:2510
3858
  msgid ""
3859
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3860
  "Only information regarding the WordPress environment and %s usage is "
3861
  "recorded (once per month and on events like plugin activation/deactivation)."
3862
  msgstr ""
3863
 
3864
- #: settings.php:2528
3865
  msgid "CSS class name for the wrapping div"
3866
  msgstr ""
3867
 
3868
- #: settings.php:2528
3869
  msgid "Block class name"
3870
  msgstr ""
3871
 
3872
- #: settings.php:2534
3873
  msgid "Include block number class"
3874
  msgstr ""
3875
 
3876
- #: settings.php:2534
3877
  msgid "Block number class"
3878
  msgstr ""
3879
 
3880
- #: settings.php:2539
3881
  msgid "Include block name class"
3882
  msgstr ""
3883
 
3884
- #: settings.php:2539
3885
  msgid "Block name class"
3886
  msgstr ""
3887
 
3888
- #: settings.php:2544
3889
  msgid ""
3890
  "Instead of alignment classes generate inline alignment styles for blocks"
3891
  msgstr ""
3892
 
3893
- #: settings.php:2544
3894
  msgid "Inline styles"
3895
  msgstr ""
3896
 
3897
- #: settings.php:2550
3898
  msgid "Preview of the block wrapping code"
3899
  msgstr ""
3900
 
3901
- #: settings.php:2551
3902
  msgid "Wrapping div"
3903
  msgstr ""
3904
 
3905
- #: settings.php:2552 settings.php:2992
3906
  msgid "BLOCK CODE"
3907
  msgstr ""
3908
 
3909
- #: settings.php:2560
3910
  msgid "Viewport Settings used for client-side device detection"
3911
  msgstr ""
3912
 
3913
  #. Translators: %d: viewport number
3914
- #: settings.php:2568
3915
  msgid "Viewport %d name"
3916
  msgstr ""
3917
 
3918
- #: settings.php:2571
3919
  msgid "min width"
3920
  msgstr ""
3921
 
3922
- #: settings.php:2582
3923
  msgid "Custom Hooks"
3924
  msgstr ""
3925
 
3926
- #: settings.php:2594 settings.php:2597
3927
  msgid "Enable hook"
3928
  msgstr ""
3929
 
3930
  #. translators: %d: hook number
3931
- #: settings.php:2597
3932
  msgid "Hook %d name"
3933
  msgstr ""
3934
 
3935
- #: settings.php:2600
3936
  msgid "Hook name for automatic insertion selection"
3937
  msgstr ""
3938
 
3939
- #: settings.php:2603
3940
  msgid "action"
3941
  msgstr ""
3942
 
3943
- #: settings.php:2606
3944
  msgid "Action name as used in the do_action () function"
3945
  msgstr ""
3946
 
3947
- #: settings.php:2609
3948
  msgid "priority"
3949
  msgstr ""
3950
 
3951
- #: settings.php:2612
3952
  msgid "Priority for the hook (default is 10)"
3953
  msgstr ""
3954
 
3955
- #: settings.php:2633
3956
  msgid "Enable insertion of this code into HTML page header"
3957
  msgstr ""
3958
 
3959
- #: settings.php:2637 settings.php:2704 settings.php:2886
3960
  msgid "Process PHP code"
3961
  msgstr ""
3962
 
3963
- #: settings.php:2641
3964
  msgid "HTML Page Header Code"
3965
  msgstr ""
3966
 
3967
- #: settings.php:2649
3968
  msgid "Code in the %s section of the HTML page"
3969
  msgstr ""
3970
 
3971
- #: settings.php:2650
3972
  msgctxt "code in the header"
3973
  msgid "NOT ENABLED"
3974
  msgstr ""
3975
 
3976
- #: settings.php:2667 settings.php:2735
3977
  msgid "Use server-side detection to insert code only for"
3978
  msgstr ""
3979
 
3980
- #: settings.php:2682
3981
  msgid ""
3982
  "Enable insertion of this code into HTML page header on page for Error 404: "
3983
  "Page not found"
3984
  msgstr ""
3985
 
3986
- #: settings.php:2682 settings.php:2750
3987
  msgid "Insert on Error 404 page"
3988
  msgstr ""
3989
 
3990
- #: settings.php:2700
3991
  msgid "Enable insertion of this code into HTML page footer"
3992
  msgstr ""
3993
 
3994
- #: settings.php:2708
3995
  msgid "HTML Page Footer Code"
3996
  msgstr ""
3997
 
3998
  #. translators: %s: HTML tags
3999
- #: settings.php:2716
4000
  msgid "Code before the %s tag of the the HTML page"
4001
  msgstr ""
4002
 
4003
- #: settings.php:2717
4004
  msgctxt "code in the footer"
4005
  msgid "NOT ENABLED"
4006
  msgstr ""
4007
 
4008
- #: settings.php:2750
4009
  msgid ""
4010
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4011
  "Page not found"
4012
  msgstr ""
4013
 
4014
- #: settings.php:2766
4015
  msgid "Code for ad blocking detection inserted. Click for details."
4016
  msgstr ""
4017
 
4018
- #: settings.php:2771
4019
  msgid "Enable detection of ad blocking"
4020
  msgstr ""
4021
 
4022
- #: settings.php:2789
4023
  msgid "Global action when ad blocking is detected"
4024
  msgstr ""
4025
 
4026
- #: settings.php:2795
4027
  msgid "No action for"
4028
  msgstr ""
4029
 
4030
- #: settings.php:2796
4031
  msgid "Exceptions for global action when ad blocking is detected."
4032
  msgstr ""
4033
 
4034
- #: settings.php:2806
4035
  msgid "Delay Action"
4036
  msgstr ""
4037
 
4038
- #: settings.php:2809
4039
  msgid ""
4040
  "Number of page views to delay action when ad blocking is detected. Leave "
4041
  "empty for no delay (action fires on first page view). Sets cookie."
4042
  msgstr ""
4043
 
4044
- #: settings.php:2809
4045
  msgctxt "Delay Action for x "
4046
  msgid "page views"
4047
  msgstr ""
4048
 
4049
- #: settings.php:2814
4050
  msgid "No Action Period"
4051
  msgstr ""
4052
 
4053
- #: settings.php:2817
4054
  msgid ""
4055
  "Number of days to supress action when ad blocking is detected. Leave empty "
4056
  "for no no-action period (action fires always after defined page view delay). "
4057
  "Sets cookie."
4058
  msgstr ""
4059
 
4060
- #: settings.php:2817
4061
  msgctxt "no action period"
4062
  msgid "days"
4063
  msgstr ""
4064
 
4065
- #: settings.php:2822
4066
  msgid "Custom Selectors"
4067
  msgstr ""
4068
 
4069
- #: settings.php:2825
4070
  msgid ""
4071
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4072
  "blocking detection. Invisible element or element with zero height means ad "
4073
  "blocking is present."
4074
  msgstr ""
4075
 
4076
- #: settings.php:2837
4077
  msgid "Redirection Page"
4078
  msgstr ""
4079
 
4080
- #: settings.php:2849
4081
  msgid "Custom Url"
4082
  msgstr ""
4083
 
4084
- #: settings.php:2854
4085
  msgid ""
4086
  "Static page for redirection when ad blocking is detected. For other pages "
4087
  "select Custom url and set it below."
4088
  msgstr ""
4089
 
4090
- #: settings.php:2863
4091
  msgid "Custom Redirection Url"
4092
  msgstr ""
4093
 
4094
- #: settings.php:2875
4095
  msgid "Message HTML code"
4096
  msgstr ""
4097
 
4098
- #: settings.php:2888
4099
  msgid "Preview message when ad blocking is detected"
4100
  msgstr ""
4101
 
4102
- #: settings.php:2917
4103
  msgid "Prevent visitors from closing the warning message"
4104
  msgstr ""
4105
 
4106
- #: settings.php:2917
4107
  msgid "Undismissible Message"
4108
  msgstr ""
4109
 
4110
- #: settings.php:2923
4111
  msgid "Not undismissible for"
4112
  msgstr ""
4113
 
4114
- #: settings.php:2924
4115
  msgid "Users which can close the warning message."
4116
  msgstr ""
4117
 
4118
- #: settings.php:2938
4119
  msgid ""
4120
  "Force showing admin toolbar for administrators when viewing site. Enable "
4121
  "this option when you are logged in as admin and you don't see admin toolbar."
4122
  msgstr ""
4123
 
4124
- #: settings.php:2946
4125
  msgid "Disable header code (Header tab)"
4126
  msgstr ""
4127
 
4128
- #: settings.php:2950
4129
  msgid "Disable footer code (Footer tab)"
4130
  msgstr ""
4131
 
4132
  #. translators: %s: Ad Inserter
4133
- #: settings.php:2954
4134
  msgid "Disable %s JavaScript code"
4135
  msgstr ""
4136
 
4137
  #. translators: %s: Ad Inserter
4138
- #: settings.php:2958
4139
  msgid "Disable %s CSS code"
4140
  msgstr ""
4141
 
4142
- #: settings.php:2962
4143
  msgid ""
4144
  "Disable PHP code processing (in all blocks including header and footer code)"
4145
  msgstr ""
4146
 
4147
- #: settings.php:2966
4148
  msgid "Disable insertion of all blocks"
4149
  msgstr ""
4150
 
4151
- #: settings.php:2970
4152
  msgid "Disable insertions"
4153
  msgstr ""
4154
 
4155
  #. translators: %s: Ad Inserter
4156
- #: settings.php:2982
4157
  msgid "%s CSS CODE"
4158
  msgstr ""
4159
 
4160
- #: settings.php:2985
4161
  msgid "HEADER CODE"
4162
  msgstr ""
4163
 
4164
  #. translators: %s: PHP tags
4165
- #: settings.php:2991
4166
  msgid "BLOCK PHP CODE"
4167
  msgstr ""
4168
 
4169
  #. translators: %s: Ad Inserter
4170
- #: settings.php:2997
4171
  msgid "%s JS CODE"
4172
  msgstr ""
4173
 
4174
- #: settings.php:3000
4175
  msgid "FOOTER CODE"
4176
  msgstr ""
4177
 
4178
- #: settings.php:3009
4179
  msgid "Force showing admin toolbar when viewing site"
4180
  msgstr ""
4181
 
4182
- #: settings.php:3016
4183
  msgid "Enable debugging functions in admin toolbar"
4184
  msgstr ""
4185
 
4186
- #: settings.php:3018
4187
  msgid "Debugging functions in admin toolbar"
4188
  msgstr ""
4189
 
4190
- #: settings.php:3025
4191
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4192
  msgstr ""
4193
 
4194
- #: settings.php:3027
4195
  msgid "Debugging functions on mobile screens"
4196
  msgstr ""
4197
 
4198
- #: settings.php:3034
4199
  msgid ""
4200
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4201
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4204,232 +4216,232 @@ msgid ""
4204
  "administrators debugging is always enabled."
4205
  msgstr ""
4206
 
4207
- #: settings.php:3036
4208
  msgid "Remote debugging"
4209
  msgstr ""
4210
 
4211
- #: settings.php:3043
4212
  msgid ""
4213
  "Disable translation to see original texts for the settings and messages in "
4214
  "English"
4215
  msgstr ""
4216
 
4217
- #: settings.php:3045
4218
  msgid "Disable translation"
4219
  msgstr ""
4220
 
4221
- #: settings.php:3415
4222
  msgid "Available positions for current theme"
4223
  msgstr ""
4224
 
4225
- #: settings.php:3416
4226
  msgid "Error checking pages"
4227
  msgstr ""
4228
 
4229
- #: settings.php:3419
4230
  msgid "Toggle theme checker for available positions for automatic insertion"
4231
  msgstr ""
4232
 
4233
- #: settings.php:3419
4234
  msgctxt "Button"
4235
  msgid "Check"
4236
  msgstr ""
4237
 
4238
- #: settings.php:3426
4239
  msgid "Position"
4240
  msgstr ""
4241
 
4242
- #: settings.php:3431
4243
  msgid "Archive pages"
4244
  msgstr ""
4245
 
4246
- #: settings.php:3490
4247
  msgid ""
4248
  "Position not available because output buffering (tab [*]) is not enabled"
4249
  msgstr ""
4250
 
4251
- #: settings.php:3493 strings.php:228
4252
  msgid "Position not checked yet"
4253
  msgstr ""
4254
 
4255
- #: settings.php:3529
4256
  msgid "Toggle active/all blocks"
4257
  msgstr ""
4258
 
4259
- #: settings.php:3533 strings.php:215
4260
  msgid "Rearrange block order"
4261
  msgstr ""
4262
 
4263
- #: settings.php:3538
4264
  msgid "Save new block order"
4265
  msgstr ""
4266
 
4267
- #: settings.php:3564
4268
  msgid "Toggle active/all ad units"
4269
  msgstr ""
4270
 
4271
- #: settings.php:3568
4272
  msgid "Reload AdSense ad units"
4273
  msgstr ""
4274
 
4275
- #: settings.php:3572
4276
  msgid "Clear authorization to access AdSense account"
4277
  msgstr ""
4278
 
4279
- #: settings.php:3576 settings.php:4426 settings.php:4493 strings.php:223
4280
  msgid "Google AdSense Homepage"
4281
  msgstr ""
4282
 
4283
- #: settings.php:3592
4284
  msgid "Switch to physical ads.txt file"
4285
  msgstr ""
4286
 
4287
- #: settings.php:3593
4288
  msgid "Switch to virtual ads.txt file"
4289
  msgstr ""
4290
 
4291
  #. translators: %s: ads.txt
4292
- #: settings.php:3603
4293
  msgid "Open %s"
4294
  msgstr ""
4295
 
4296
- #: settings.php:3611
4297
  msgid "Reload ads.txt file"
4298
  msgstr ""
4299
 
4300
- #: settings.php:3615 settings.php:4553
4301
  msgid "Save"
4302
  msgstr ""
4303
 
4304
  #. translators: %s: Ad Inserter
4305
- #: settings.php:3790
4306
  msgid "ads.txt file: %s virtual ads.txt file"
4307
  msgstr ""
4308
 
4309
- #: settings.php:3795 settings.php:3815 strings.php:207
4310
  msgid "Warning"
4311
  msgstr ""
4312
 
4313
  #. translators: %s: Ad Inserter
4314
- #: settings.php:3795
4315
  msgid "%s virtual file ads.txt not found"
4316
  msgstr ""
4317
 
4318
- #: settings.php:3803
4319
  msgid "IMPORTANT"
4320
  msgstr ""
4321
 
4322
- #: settings.php:3803
4323
  msgid "ads.txt file must be placed on the root domain"
4324
  msgstr ""
4325
 
4326
- #: settings.php:3808
4327
  msgid "ads.txt file"
4328
  msgstr ""
4329
 
4330
- #: settings.php:3808
4331
  msgid "NOT WRITABLE"
4332
  msgstr ""
4333
 
4334
- #: settings.php:3815
4335
  msgid "file %s not found"
4336
  msgstr ""
4337
 
4338
- #: settings.php:3825
4339
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4340
  msgstr ""
4341
 
4342
  #. translators: %s: Ad Inserter
4343
- #: settings.php:3831
4344
  msgid "%s virtual ads.txt file"
4345
  msgstr ""
4346
 
4347
- #: settings.php:3853
4348
  msgid "Advertising system"
4349
  msgstr ""
4350
 
4351
- #: settings.php:3854
4352
  msgid "Account ID"
4353
  msgstr ""
4354
 
4355
- #: settings.php:3856
4356
  msgid "Certification authority ID"
4357
  msgstr ""
4358
 
4359
- #: settings.php:3871
4360
  msgid "Account ID found in block and present in ads.txt"
4361
  msgstr ""
4362
 
4363
- #: settings.php:3875
4364
  msgid "Account ID found in block but not present in ads.txt"
4365
  msgstr ""
4366
 
4367
- #: settings.php:4209
4368
  msgid "Preview block"
4369
  msgstr ""
4370
 
4371
- #: settings.php:4216
4372
  msgid "Pause block"
4373
  msgstr ""
4374
 
4375
- #: settings.php:4255
4376
  msgid "Automatic insertion"
4377
  msgstr ""
4378
 
4379
  #. translators: %s HTML tags
4380
- #: settings.php:4256 settings.php:5224
4381
  msgid "PHP code processing"
4382
  msgstr ""
4383
 
4384
- #: settings.php:4258
4385
  msgid "Device detection"
4386
  msgstr ""
4387
 
4388
- #: settings.php:4281
4389
  msgid "No active block"
4390
  msgstr ""
4391
 
4392
- #: settings.php:4282
4393
  msgid "No block matches search keywords"
4394
  msgstr ""
4395
 
4396
- #: settings.php:4337
4397
  msgid "Ad unit"
4398
  msgstr ""
4399
 
4400
- #: settings.php:4339
4401
  msgid "Slot ID"
4402
  msgstr ""
4403
 
4404
- #: settings.php:4365
4405
  msgid "Copy AdSense code"
4406
  msgstr ""
4407
 
4408
- #: settings.php:4368
4409
  msgid "Preview AdSense ad"
4410
  msgstr ""
4411
 
4412
- #: settings.php:4371
4413
  msgid "Get AdSense code"
4414
  msgstr ""
4415
 
4416
  #. translators: %s: HTML tags
4417
- #: settings.php:4403
4418
  msgid ""
4419
  "Please %s clear authorization %s with the button %s above and once again "
4420
  "authorize access to your AdSense account."
4421
  msgstr ""
4422
 
4423
- #: settings.php:4422
4424
  msgid "AdSense Integration"
4425
  msgstr ""
4426
 
4427
- #: settings.php:4424
4428
  msgid "AdSense Integration - Step 2"
4429
  msgstr ""
4430
 
4431
  #. translators: %s: HTML tags
4432
- #: settings.php:4430
4433
  msgid ""
4434
  "Authorize %s to access your AdSense account. Click on the %s Get "
4435
  "Authorization Code %s button to open a new window where you can allow "
@@ -4438,7 +4450,7 @@ msgid ""
4438
  msgstr ""
4439
 
4440
  #. translators: %s: HTML tags
4441
- #: settings.php:4437
4442
  msgid ""
4443
  "If you get error, can't access ad units or would like to use own Google API "
4444
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4446,7 +4458,7 @@ msgid ""
4446
  msgstr ""
4447
 
4448
  #. translators: %s: HTML tags
4449
- #: settings.php:4439
4450
  msgid ""
4451
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4452
  "Authorization Code %s button to open a new window where you can allow "
@@ -4455,38 +4467,38 @@ msgid ""
4455
  msgstr ""
4456
 
4457
  #. translators: %s: HTML tags
4458
- #: settings.php:4446
4459
  msgid ""
4460
  "If you get error %s invalid client %s click on the button %s Clear and "
4461
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4462
  msgstr ""
4463
 
4464
- #: settings.php:4457
4465
  msgid "Get Authorization Code"
4466
  msgstr ""
4467
 
4468
- #: settings.php:4460
4469
  msgid "Enter Authorization Code"
4470
  msgstr ""
4471
 
4472
- #: settings.php:4470
4473
  msgid "Use own API IDs"
4474
  msgstr ""
4475
 
4476
- #: settings.php:4472
4477
  msgid "Clear and return to Step 1"
4478
  msgstr ""
4479
 
4480
- #: settings.php:4476
4481
  msgid "Authorize"
4482
  msgstr ""
4483
 
4484
- #: settings.php:4492
4485
  msgid "AdSense Integration - Step 1"
4486
  msgstr ""
4487
 
4488
  #. translators: %s: Ad Inserter
4489
- #: settings.php:4496
4490
  msgid ""
4491
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4492
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4495,192 +4507,192 @@ msgid ""
4495
  msgstr ""
4496
 
4497
  #. translators: %s: HTML tags
4498
- #: settings.php:4505
4499
  msgid "Go to %s Google APIs and Services console %s"
4500
  msgstr ""
4501
 
4502
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4503
- #: settings.php:4506
4504
  msgid ""
4505
  "Create %1$s project - if the project and IDs are already created click on "
4506
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4507
  msgstr ""
4508
 
4509
  #. translators: %s: HTML tags
4510
- #: settings.php:4507
4511
  msgid ""
4512
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4513
  "create a new project"
4514
  msgstr ""
4515
 
4516
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4517
- #: settings.php:4508
4518
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4519
  msgstr ""
4520
 
4521
  #. translators: %s: HTML tags
4522
- #: settings.php:4509
4523
  msgid ""
4524
  "Click on project selection, wait for the project to be created and then and "
4525
  "select %s as the current project"
4526
  msgstr ""
4527
 
4528
  #. translators: %s: HTML tags
4529
- #: settings.php:4510
4530
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4531
  msgstr ""
4532
 
4533
  #. translators: %s: HTML tags
4534
- #: settings.php:4511
4535
  msgid "Search for adsense and enable %s"
4536
  msgstr ""
4537
 
4538
  #. translators: %s: HTML tags
4539
- #: settings.php:4512
4540
  msgid "Click on %s CREATE CREDENTIALS %s"
4541
  msgstr ""
4542
 
4543
  #. translators: %s: HTML tags
4544
- #: settings.php:4513
4545
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4546
  msgstr ""
4547
 
4548
  #. translators: %s: HTML tags
4549
- #: settings.php:4514
4550
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4551
  msgstr ""
4552
 
4553
  #. translators: %s: HTML tags
4554
- #: settings.php:4515
4555
  msgid "Click on %s What credentials do I need? %s"
4556
  msgstr ""
4557
 
4558
  #. translators: %s: HTML tags
4559
- #: settings.php:4516
4560
  msgid ""
4561
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4562
  "Ad Inserter client %s"
4563
  msgstr ""
4564
 
4565
  #. translators: %s: HTML tags
4566
- #: settings.php:4517
4567
  msgid ""
4568
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4569
  "enter %s"
4570
  msgstr ""
4571
 
4572
  #. translators: %s: HTML tags
4573
- #: settings.php:4518
4574
  msgid "Click on %s Continue %s"
4575
  msgstr ""
4576
 
4577
  #. translators: %s: HTML tags
4578
- #: settings.php:4519
4579
  msgid "Click on %s Done %s"
4580
  msgstr ""
4581
 
4582
  #. translators: %s: HTML tags
4583
- #: settings.php:4520
4584
  msgid ""
4585
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4586
  "secret %s"
4587
  msgstr ""
4588
 
4589
- #: settings.php:4521
4590
  msgid "Copy them to the appropriate fields below"
4591
  msgstr ""
4592
 
4593
- #: settings.php:4527
4594
  msgid "Client ID"
4595
  msgstr ""
4596
 
4597
- #: settings.php:4530
4598
  msgid "Enter Client ID"
4599
  msgstr ""
4600
 
4601
- #: settings.php:4535
4602
  msgid "Client secret"
4603
  msgstr ""
4604
 
4605
- #: settings.php:4538
4606
  msgid "Enter Client secret"
4607
  msgstr ""
4608
 
4609
- #: settings.php:4548
4610
  msgid "Use default API IDs"
4611
  msgstr ""
4612
 
4613
- #: settings.php:4712
4614
  msgid "All posts"
4615
  msgstr ""
4616
 
4617
- #: settings.php:4713
4618
  msgid "All static pages"
4619
  msgstr ""
4620
 
4621
- #: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
4622
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4623
  msgstr ""
4624
 
4625
- #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
4626
- #: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
4627
- #: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
4628
- #: settings.php:5166 settings.php:5170
4629
  msgid "Looking for AdSense alternative?"
4630
  msgstr ""
4631
 
4632
- #: settings.php:4928
4633
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4634
  msgstr ""
4635
 
4636
- #: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
4637
- #: settings.php:5179
4638
  msgid "Use Infolinks ads with Adsense to earn more"
4639
  msgstr ""
4640
 
4641
- #: settings.php:4954 settings.php:5004
4642
  msgid "Support plugin development"
4643
  msgstr ""
4644
 
4645
- #: settings.php:4959 settings.php:5005
4646
  msgid ""
4647
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4648
  "reviewing the plugin on WordPres"
4649
  msgstr ""
4650
 
4651
- #: settings.php:4959
4652
  msgctxt "Review Ad Inserter"
4653
  msgid "Review"
4654
  msgstr ""
4655
 
4656
- #: settings.php:4964
4657
  msgid ""
4658
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4659
  "rating the plugin on WordPres"
4660
  msgstr ""
4661
 
4662
- #: settings.php:4964
4663
  msgctxt "Rate Ad Inserter"
4664
  msgid "Rate"
4665
  msgstr ""
4666
 
4667
- #: settings.php:4969
4668
  msgid ""
4669
  "Support free Ad Inserter development. If you are making money with Ad "
4670
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4671
  "you!"
4672
  msgstr ""
4673
 
4674
- #: settings.php:4969
4675
  msgid "Donate"
4676
  msgstr ""
4677
 
4678
- #: settings.php:4976 settings.php:5020
4679
  msgid "Average rating of the plugin - Thank you!"
4680
  msgstr ""
4681
 
4682
  #. translators: %s: Ad Inserter, HTML tags
4683
- #: settings.php:4987
4684
  msgid ""
4685
  "You've been using %s for a while now, and I hope you're happy with it. "
4686
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4689,31 +4701,31 @@ msgid ""
4689
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4690
  msgstr ""
4691
 
4692
- #: settings.php:5005
4693
  msgid "Review"
4694
  msgstr ""
4695
 
4696
- #: settings.php:5009
4697
  msgid "Ad Inserter on Twitter"
4698
  msgstr ""
4699
 
4700
- #: settings.php:5010
4701
  msgid "Ad Inserter on Facebook"
4702
  msgstr ""
4703
 
4704
- #: settings.php:5013
4705
  msgid "Follow Ad Inserter"
4706
  msgstr ""
4707
 
4708
  #. translators: %s: HTML tags
4709
- #: settings.php:5040
4710
  msgid ""
4711
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4712
  "and %s Common Settings %s pages"
4713
  msgstr ""
4714
 
4715
  #. translators: %s: HTML tags
4716
- #: settings.php:5052
4717
  msgid ""
4718
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4719
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4721,338 +4733,338 @@ msgid ""
4721
  msgstr ""
4722
 
4723
  #. translators: %s: HTML tags
4724
- #: settings.php:5073
4725
  msgid ""
4726
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4727
  "purchase you refer to us"
4728
  msgstr ""
4729
 
4730
  #. translators: %s: HTML tags
4731
- #: settings.php:5080
4732
  msgid ""
4733
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4734
  "diagnose and fix the problem."
4735
  msgstr ""
4736
 
4737
  #. translators: %s: HTML tags
4738
- #: settings.php:5084
4739
  msgid ""
4740
  "If you need any kind of help or support, please do not hesitate to open a "
4741
  "thread on the %s support forum. %s"
4742
  msgstr ""
4743
 
4744
- #: settings.php:5110 settings.php:5174 settings.php:5178
4745
  msgid "Code preview with visual CSS editor"
4746
  msgstr ""
4747
 
4748
- #: settings.php:5114 settings.php:5164
4749
  msgid "A/B testing - Track ad impressions and clicks"
4750
  msgstr ""
4751
 
4752
- #: settings.php:5129
4753
  msgid "Insert ads on AMP pages"
4754
  msgstr ""
4755
 
4756
- #: settings.php:5137
4757
  msgid "Ad blocking detection and content protection"
4758
  msgstr ""
4759
 
4760
- #: settings.php:5187
4761
  msgid "Looking for Pro Ad Management plugin?"
4762
  msgstr ""
4763
 
4764
- #: settings.php:5188
4765
  msgid "To Optimally Monetize your WordPress website?"
4766
  msgstr ""
4767
 
4768
  #. Translators: %s: price of Ad Inserter Pro
4769
- #: settings.php:5189
4770
  msgid "Different license types starting from %s"
4771
  msgstr ""
4772
 
4773
  #. translators: %s HTML tags
4774
- #: settings.php:5192
4775
  msgid "%s AdSense Integration %s"
4776
  msgstr ""
4777
 
4778
  #. translators: %s HTML tags
4779
- #: settings.php:5193
4780
  msgid "Syntax highlighting %s editor %s"
4781
  msgstr ""
4782
 
4783
  #. translators: %s HTML tags
4784
- #: settings.php:5194
4785
  msgid "%s Code preview %s with visual CSS editor"
4786
  msgstr ""
4787
 
4788
  #. translators: %s HTML tags
4789
- #: settings.php:5195
4790
  msgid "Simple user interface - all settings on a single page"
4791
  msgstr ""
4792
 
4793
  #. translators: %s HTML tags
4794
- #: settings.php:5196
4795
  msgid ""
4796
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4797
  "image / excerpt"
4798
  msgstr ""
4799
 
4800
  #. translators: %s HTML tags
4801
- #: settings.php:5197
4802
  msgid "%s Automatic insertion %s between posts on blog pages"
4803
  msgstr ""
4804
 
4805
  #. translators: %s HTML tags
4806
- #: settings.php:5198
4807
  msgid "%s Automatic insertion %s before, between and after comments"
4808
  msgstr ""
4809
 
4810
  #. translators: %s HTML tags
4811
- #: settings.php:5199
4812
  msgid "%s Automatic insertion %s after %s or before %s tag"
4813
  msgstr ""
4814
 
4815
  #. translators: %s HTML tags
4816
- #: settings.php:5200
4817
  msgid "Automatic insertion at %s custom hook positions %s"
4818
  msgstr ""
4819
 
4820
  #. translators: %s HTML tags
4821
- #: settings.php:5201
4822
  msgid ""
4823
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4824
  "selectors)"
4825
  msgstr ""
4826
 
4827
  #. translators: %s HTML tags
4828
- #: settings.php:5202
4829
  msgid "%s Insertion exceptions %s for individual posts and pages"
4830
  msgstr ""
4831
 
4832
  #. translators: %s HTML tags
4833
- #: settings.php:5203
4834
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4835
  msgstr ""
4836
 
4837
  #. translators: %s HTML tags
4838
- #: settings.php:5204
4839
  msgid ""
4840
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4841
  "scrolls)"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
- #: settings.php:5205
4846
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
- #: settings.php:5206
4851
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4852
  msgstr ""
4853
 
4854
  #. translators: %s HTML tags
4855
- #: settings.php:5207
4856
  msgid ""
4857
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4858
  "visible)"
4859
  msgstr ""
4860
 
4861
  #. translators: %s HTML tags
4862
- #: settings.php:5208
4863
  msgid ""
4864
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4865
  msgstr ""
4866
 
4867
  #. translators: %s HTML tags
4868
- #: settings.php:5209
4869
  msgid "Block %s alignment and style %s customizations"
4870
  msgstr ""
4871
 
4872
  #. translators: %s HTML tags
4873
- #: settings.php:5210
4874
  msgid ""
4875
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4876
  "TOS)"
4877
  msgstr ""
4878
 
4879
  #. translators: %s HTML tags
4880
- #: settings.php:5211
4881
  msgid ""
4882
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4883
  "feeds"
4884
  msgstr ""
4885
 
4886
  #. translators: %s HTML tags
4887
- #: settings.php:5212
4888
  msgid "%s Ad rotation %s (works also with caching)"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
- #: settings.php:5213
4893
  msgid "Create, edit and check %s ads.txt %s file"
4894
  msgstr ""
4895
 
4896
  #. translators: %s HTML tags
4897
- #: settings.php:5214
4898
  msgid ""
4899
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4900
  "AdSense)"
4901
  msgstr ""
4902
 
4903
  #. translators: %s HTML tags
4904
- #: settings.php:5215
4905
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4906
  msgstr ""
4907
 
4908
  #. translators: %s HTML tags
4909
- #: settings.php:5216
4910
  msgid "%s Public web reports %s for clients, export to PDF"
4911
  msgstr ""
4912
 
4913
  #. translators: %s HTML tags
4914
- #: settings.php:5217
4915
  msgid "Support for %s A/B testing %s"
4916
  msgstr ""
4917
 
4918
  #. translators: %s HTML tags
4919
- #: settings.php:5218
4920
  msgid "Frequency capping - %s limit impressions or clicks %s"
4921
  msgstr ""
4922
 
4923
  #. translators: %s HTML tags
4924
- #: settings.php:5219
4925
  msgid "Click fraud %s protection %s"
4926
  msgstr ""
4927
 
4928
  #. translators: %s HTML tags
4929
- #: settings.php:5220
4930
  msgid "Support for %s lazy loading %s"
4931
  msgstr ""
4932
 
4933
  #. translators: %s HTML tags
4934
- #: settings.php:5221
4935
  msgid "Support for ads on %s AMP pages %s"
4936
  msgstr ""
4937
 
4938
  #. translators: %s HTML tags
4939
- #: settings.php:5222
4940
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4941
  msgstr ""
4942
 
4943
  #. translators: %s HTML tags
4944
- #: settings.php:5223
4945
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4946
  msgstr ""
4947
 
4948
  #. translators: %s HTML tags
4949
- #: settings.php:5225
4950
  msgid "%s Banner %s code generator"
4951
  msgstr ""
4952
 
4953
  #. translators: %s HTML tags
4954
- #: settings.php:5226
4955
  msgid "Support for %s header and footer %s code"
4956
  msgstr ""
4957
 
4958
  #. translators: %s HTML tags
4959
- #: settings.php:5227
4960
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4961
  msgstr ""
4962
 
4963
  #. translators: %s HTML tags
4964
- #: settings.php:5228
4965
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4966
  msgstr ""
4967
 
4968
  #. translators: %s HTML tags
4969
- #: settings.php:5229
4970
  msgid "Client-side %s mobile device detection %s (works with caching)"
4971
  msgstr ""
4972
 
4973
  #. translators: %s HTML tags
4974
- #: settings.php:5230
4975
  msgid ""
4976
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4977
  "protection"
4978
  msgstr ""
4979
 
4980
  #. translators: %s HTML tags
4981
- #: settings.php:5231
4982
  msgid "%s Ad blocking statistics %s"
4983
  msgstr ""
4984
 
4985
  #. translators: %s HTML tags
4986
- #: settings.php:5232
4987
  msgid ""
4988
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4989
  "referrers, operating systems, browsers"
4990
  msgstr ""
4991
 
4992
  #. translators: %s HTML tags
4993
- #: settings.php:5233
4994
  msgid ""
4995
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4996
  msgstr ""
4997
 
4998
  #. translators: %s HTML tags
4999
- #: settings.php:5234
5000
  msgid "%s Multisite options %s to limit settings on the sites"
5001
  msgstr ""
5002
 
5003
  #. translators: %s HTML tags
5004
- #: settings.php:5235
5005
  msgid "%s Import/Export %s block or plugin settings"
5006
  msgstr ""
5007
 
5008
  #. translators: %s HTML tags
5009
- #: settings.php:5236
5010
  msgid "%s Insertion scheduling %s with fallback option"
5011
  msgstr ""
5012
 
5013
  #. translators: %s HTML tags
5014
- #: settings.php:5237
5015
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5016
  msgstr ""
5017
 
5018
  #. translators: %s HTML tags
5019
- #: settings.php:5238
5020
  msgid "Simple troubleshooting with many %s debugging functions %s"
5021
  msgstr ""
5022
 
5023
  #. translators: %s HTML tags
5024
- #: settings.php:5239
5025
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5026
  msgstr ""
5027
 
5028
  #. translators: %s HTML tags
5029
- #: settings.php:5240
5030
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5031
  msgstr ""
5032
 
5033
  #. translators: %s HTML tags
5034
- #: settings.php:5241
5035
  msgid ""
5036
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5037
  msgstr ""
5038
 
5039
  #. translators: %s HTML tags
5040
- #: settings.php:5242
5041
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5042
  msgstr ""
5043
 
5044
  #. translators: %s HTML tags
5045
- #: settings.php:5243
5046
  msgid "No ads on the settings page"
5047
  msgstr ""
5048
 
5049
  #. translators: %s HTML tags
5050
- #: settings.php:5244
5051
  msgid "Premium support"
5052
  msgstr ""
5053
 
5054
  #. translators: %s HTML tags
5055
- #: settings.php:5247
5056
  msgid ""
5057
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5058
  "website with many advertising features to automatically insert adverts on "
@@ -5067,82 +5079,82 @@ msgid ""
5067
  msgstr ""
5068
 
5069
  #. translators: %s HTML tags
5070
- #: settings.php:5260
5071
  msgid "Looking for %s Pro Ad Management plugin? %s"
5072
  msgstr ""
5073
 
5074
  #. translators: %s HTML tags
5075
- #: settings.php:5265
5076
  msgid "Ads between posts"
5077
  msgstr ""
5078
 
5079
  #. translators: %s HTML tags
5080
- #: settings.php:5266
5081
  msgid "Ads between comments"
5082
  msgstr ""
5083
 
5084
  #. translators: %s HTML tags
5085
- #: settings.php:5267
5086
  msgid "Support via email"
5087
  msgstr ""
5088
 
5089
  #. translators: %s HTML tags
5090
- #: settings.php:5273
5091
  msgid "%s Sticky positions %s"
5092
  msgstr ""
5093
 
5094
  #. translators: %s HTML tags
5095
- #: settings.php:5274
5096
  msgid "%s Limit insertions %s"
5097
  msgstr ""
5098
 
5099
  #. translators: %s HTML tags
5100
- #: settings.php:5275
5101
  msgid "%s Clearance %s options"
5102
  msgstr ""
5103
 
5104
  #. translators: %s HTML tags
5105
- #: settings.php:5281
5106
  msgid "Ad rotation"
5107
  msgstr ""
5108
 
5109
  #. translators: %s HTML tags
5110
- #: settings.php:5282
5111
  msgid "%s A/B testing %s"
5112
  msgstr ""
5113
 
5114
  #. translators: %s HTML tags
5115
- #: settings.php:5283
5116
  msgid "%s Ad tracking %s"
5117
  msgstr ""
5118
 
5119
  #. translators: %s HTML tags
5120
- #: settings.php:5289
5121
  msgid "Support for %s AMP pages %s"
5122
  msgstr ""
5123
 
5124
  #. translators: %s HTML tags
5125
- #: settings.php:5290
5126
  msgid "%s Ad blocking detection %s"
5127
  msgstr ""
5128
 
5129
  #. translators: %s HTML tags
5130
- #: settings.php:5291
5131
  msgid "%s Mobile device detection %s"
5132
  msgstr ""
5133
 
5134
  #. translators: %s HTML tags
5135
- #: settings.php:5298
5136
  msgid "64 code blocks"
5137
  msgstr ""
5138
 
5139
  #. translators: %s HTML tags
5140
- #: settings.php:5299
5141
  msgid "%s GEO targeting %s"
5142
  msgstr ""
5143
 
5144
  #. translators: %s HTML tags
5145
- #: settings.php:5300
5146
  msgid "%s Scheduling %s"
5147
  msgstr ""
5148
 
@@ -5670,298 +5682,308 @@ msgid "Advanced"
5670
  msgstr ""
5671
 
5672
  #: strings.php:163
5673
- msgid "Top right"
 
5674
  msgstr ""
5675
 
5676
  #: strings.php:164
 
 
 
 
 
 
 
 
 
5677
  msgid "Top left"
5678
  msgstr ""
5679
 
5680
- #: strings.php:165
5681
  msgid "Bottom right"
5682
  msgstr ""
5683
 
5684
- #: strings.php:166
5685
  msgid "Bottom left"
5686
  msgstr ""
5687
 
5688
- #: strings.php:168
5689
  msgctxt "AdSense Ad Type"
5690
  msgid "Standard"
5691
  msgstr ""
5692
 
5693
- #: strings.php:169
5694
  msgctxt "AdSense Ad Type"
5695
  msgid "Link"
5696
  msgstr ""
5697
 
5698
- #: strings.php:170
5699
  msgctxt "AdSense Ad Type"
5700
  msgid "In-article"
5701
  msgstr ""
5702
 
5703
- #: strings.php:171
5704
  msgctxt "AdSense Ad Type"
5705
  msgid "In-feed"
5706
  msgstr ""
5707
 
5708
- #: strings.php:172
5709
  msgctxt "AdSense Ad Type"
5710
  msgid "Matched content"
5711
  msgstr ""
5712
 
5713
- #: strings.php:173
5714
  msgctxt "AdSense Ad Type"
5715
  msgid "Auto Ads"
5716
  msgstr ""
5717
 
5718
- #: strings.php:174
5719
  msgctxt "AdSense Ad Type"
5720
  msgid "AMP Only"
5721
  msgstr ""
5722
 
5723
- #: strings.php:176
5724
  msgctxt "AMP ad"
5725
  msgid "Disabled"
5726
  msgstr ""
5727
 
5728
- #: strings.php:177
5729
  msgid "Above the fold"
5730
  msgstr ""
5731
 
5732
- #: strings.php:178
5733
  msgid "Below the fold"
5734
  msgstr ""
5735
 
5736
- #: strings.php:179
5737
  msgctxt "AMP ad"
5738
  msgid "Sticky"
5739
  msgstr ""
5740
 
5741
- #: strings.php:181
5742
  msgctxt "size"
5743
  msgid "Fixed"
5744
  msgstr ""
5745
 
5746
- #: strings.php:182
5747
  msgctxt "size"
5748
  msgid "Responsive"
5749
  msgstr ""
5750
 
5751
- #: strings.php:183
5752
  msgctxt "size"
5753
  msgid "Fixed by viewport"
5754
  msgstr ""
5755
 
5756
- #: strings.php:187
5757
  msgid "Impressions and clicks"
5758
  msgstr ""
5759
 
5760
- #: strings.php:188
5761
  msgid "Advanced WordPress Ad Management Plugin"
5762
  msgstr ""
5763
 
5764
- #: strings.php:194
5765
  msgctxt "Button"
5766
  msgid "Hide"
5767
  msgstr ""
5768
 
5769
- #: strings.php:195
5770
  msgctxt "Button"
5771
  msgid "Show"
5772
  msgstr ""
5773
 
5774
- #: strings.php:196
5775
  msgid "Insertion expired"
5776
  msgstr ""
5777
 
5778
- #: strings.php:197
5779
  msgid "Duration"
5780
  msgstr ""
5781
 
5782
- #: strings.php:198
5783
  msgid "Invalid end date - must be after start date"
5784
  msgstr ""
5785
 
5786
- #: strings.php:199
5787
  msgid "Invalid start date - only data for 1 year back is available"
5788
  msgstr ""
5789
 
5790
- #: strings.php:200
5791
  msgid "Invalid date range - only data for 1 year can be displayed"
5792
  msgstr ""
5793
 
5794
- #: strings.php:208
5795
  msgid "Delete"
5796
  msgstr ""
5797
 
5798
- #: strings.php:209
5799
  msgid "Switch"
5800
  msgstr ""
5801
 
5802
- #: strings.php:211
5803
  msgid "Delete all statistics data?"
5804
  msgstr ""
5805
 
5806
  #. translators: %s: dates
5807
- #: strings.php:213
5808
  msgid "Delete statistics data between %s and %s?"
5809
  msgstr ""
5810
 
5811
- #: strings.php:214
5812
  msgid "Cancel block order rearrangement"
5813
  msgstr ""
5814
 
5815
- #: strings.php:216
5816
  msgid "downloading..."
5817
  msgstr ""
5818
 
5819
- #: strings.php:217
5820
  msgid "download error"
5821
  msgstr ""
5822
 
5823
- #: strings.php:218
5824
  msgid "update error"
5825
  msgstr ""
5826
 
5827
- #: strings.php:219
5828
  msgid "Updating..."
5829
  msgstr ""
5830
 
5831
- #: strings.php:221
5832
  msgid "ERROR"
5833
  msgstr ""
5834
 
5835
- #: strings.php:222
5836
  msgid "Error reloading settings"
5837
  msgstr ""
5838
 
5839
- #: strings.php:224
5840
  msgctxt "Search field placeholder"
5841
  msgid "Search..."
5842
  msgstr ""
5843
 
5844
- #: strings.php:225
5845
  msgctxt "Search field placeholder"
5846
  msgid "Filter..."
5847
  msgstr ""
5848
 
5849
- #: strings.php:226
5850
  msgid "Use filter to limit names in the list"
5851
  msgstr ""
5852
 
5853
- #: strings.php:227
5854
  msgctxt "Button"
5855
  msgid "Filter"
5856
  msgstr ""
5857
 
5858
- #: strings.php:229
5859
  msgid "Position not available"
5860
  msgstr ""
5861
 
5862
- #: strings.php:230
5863
  msgid ""
5864
  "Theme check | Selected position for automatic insertion might not be not "
5865
  "available on this page type"
5866
  msgstr ""
5867
 
5868
- #: strings.php:231
5869
  msgid "Position available"
5870
  msgstr ""
5871
 
5872
- #: strings.php:233
5873
  msgid "Select or upload banner image"
5874
  msgstr ""
5875
 
5876
- #: strings.php:234
5877
  msgid "Use this image"
5878
  msgstr ""
5879
 
5880
- #: strings.php:235
5881
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5882
  msgstr ""
5883
 
5884
- #: strings.php:237
5885
  msgctxt "Monday"
5886
  msgid "MO"
5887
  msgstr ""
5888
 
5889
- #: strings.php:238
5890
  msgctxt "Tuesday"
5891
  msgid "TU"
5892
  msgstr ""
5893
 
5894
- #: strings.php:239
5895
  msgctxt "Wednesday"
5896
  msgid "WE"
5897
  msgstr ""
5898
 
5899
- #: strings.php:240
5900
  msgctxt "Thursday"
5901
  msgid "TH"
5902
  msgstr ""
5903
 
5904
- #: strings.php:241
5905
  msgctxt "Friday"
5906
  msgid "FR"
5907
  msgstr ""
5908
 
5909
- #: strings.php:242
5910
  msgctxt "Saturday"
5911
  msgid "SA"
5912
  msgstr ""
5913
 
5914
- #: strings.php:243
5915
  msgctxt "Sunday"
5916
  msgid "SU"
5917
  msgstr ""
5918
 
5919
- #: strings.php:257
 
 
 
 
 
 
 
 
 
5920
  msgid "Add"
5921
  msgstr ""
5922
 
5923
- #: strings.php:258
5924
  msgctxt "Element"
5925
  msgid "Parent"
5926
  msgstr ""
5927
 
5928
- #: strings.php:259
5929
  msgid "Cancel element selection"
5930
  msgstr ""
5931
 
5932
- #: strings.php:260
5933
  msgid "Select parent element"
5934
  msgstr ""
5935
 
5936
- #: strings.php:261
5937
  msgid "CSS selector"
5938
  msgstr ""
5939
 
5940
- #: strings.php:262
5941
  msgid "Use current selector"
5942
  msgstr ""
5943
 
5944
- #: strings.php:263
5945
  msgid "ELEMENT"
5946
  msgstr ""
5947
 
5948
- #: strings.php:264
5949
  msgid "PATH"
5950
  msgstr ""
5951
 
5952
- #: strings.php:265
5953
  msgid "SELECTOR"
5954
  msgstr ""
5955
 
5956
- #: strings.php:268
5957
- msgctxt "Scheduling"
5958
- msgid "FALLBACK"
5959
- msgstr ""
5960
-
5961
- #: strings.php:269
5962
- msgid "Automatically placed by AdSense Auto ads code"
5963
- msgstr ""
5964
-
5965
  #. Description of the plugin/theme
5966
  msgid ""
5967
  "Ad management with many advanced advertising features to insert ads at "
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.6.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2020-04-07 13:55:50+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:390
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:406
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:413
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:498
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:505
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:514
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:521
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:532
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:539
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1163
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1168
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
+ #: ad-inserter.php:1173 strings.php:103
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
+ #: ad-inserter.php:1178 strings.php:104
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1183 strings.php:105
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1188 strings.php:155
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1235
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1239
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1534
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1869 ad-inserter.php:2964
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2355
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2355
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2356
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2357
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2358
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2359
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2360
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2659
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
+ #: ad-inserter.php:2662
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2666
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:2671
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2674
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:2687
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
+ #: ad-inserter.php:2689
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
+ #: ad-inserter.php:2695
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
+ #: ad-inserter.php:2712 ad-inserter.php:2747
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
+ #: ad-inserter.php:2719
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:2729
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:2761
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2761
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:2856
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:2885 ad-inserter.php:10073 class.php:2123
214
+ #: includes/preview.php:2003 includes/preview.php:2046
215
+ #: includes/preview.php:2083 settings.php:4257 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:2886 settings.php:4258 settings.php:4343
220
  msgid "Name"
221
  msgstr ""
222
 
223
+ #: ad-inserter.php:2889 settings.php:1178
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
+ #: ad-inserter.php:2892
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
+ #: ad-inserter.php:2893
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
+ #: ad-inserter.php:2905
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
+ #: ad-inserter.php:2908
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
+ #: ad-inserter.php:2925 ad-inserter.php:2937 strings.php:161
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:2925 ad-inserter.php:2937
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
+ #: includes/functions.php:2574 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
+ #: ad-inserter.php:2927
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
+ #: ad-inserter.php:2929
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:2957
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
+ #: ad-inserter.php:2962
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
+ #: ad-inserter.php:2965 settings.php:1156
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
+ #: ad-inserter.php:2967
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:2968
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:2970
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
+ #: ad-inserter.php:2972
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
+ #: ad-inserter.php:3019
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
+ #: ad-inserter.php:3022
310
  msgid "POST"
311
  msgstr ""
312
 
313
+ #: ad-inserter.php:3025
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
+ #: ad-inserter.php:3028
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
+ #: ad-inserter.php:3031
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
+ #: ad-inserter.php:3034
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
+ #: ad-inserter.php:3037
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
+ #: ad-inserter.php:3040
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:3043
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:3060
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
+ #: ad-inserter.php:3061
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
+ #: ad-inserter.php:3090
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:3225
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
+ #: ad-inserter.php:3225
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
+ #: ad-inserter.php:3241
367
  msgid "Header code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3241
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3241 ad-inserter.php:3474
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
+ #: ad-inserter.php:3474
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
+ #: ad-inserter.php:3474
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
+ #: ad-inserter.php:3480
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
+ #: ad-inserter.php:3480
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:3480
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
+ #: ad-inserter.php:5915
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
+ #: ad-inserter.php:6581
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
+ #: ad-inserter.php:6582
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
+ #: ad-inserter.php:6635
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
+ #: ad-inserter.php:6637
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:6736
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
+ #: ad-inserter.php:7112 ad-inserter.php:7114 ad-inserter.php:7137
434
+ #: settings.php:2174
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
+ #: ad-inserter.php:7151 ad-inserter.php:7272
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:7348
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:7468
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7543
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:9381 ad-inserter.php:9464
457
  msgctxt "category name"
458
  msgid "Uncategorized"
459
  msgstr ""
460
 
461
+ #: ad-inserter.php:9691
462
  msgid "requires WordPress 4.6 or newer"
463
  msgstr ""
464
 
465
+ #: ad-inserter.php:9691
466
  msgid "Please update!"
467
  msgstr ""
468
 
469
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
470
  #. name with HTML tags will be added)
471
+ #: ad-inserter.php:9946
472
  msgid "Thank you for installing"
473
  msgstr ""
474
 
475
  #. translators: Opt-in message: %s: HTML tags
476
+ #: ad-inserter.php:9948
477
  msgid ""
478
  "We would like to %s track its usage %s on your site. This is completely "
479
  "optional and can be disabled at any time."
480
  msgstr ""
481
 
482
+ #: ad-inserter.php:9950
483
  msgid ""
484
  "We don't record any sensitive data, only information regarding the WordPress "
485
  "environment and plugin usage, which will help us to make improvements to the "
487
  msgstr ""
488
 
489
  #. translators: Deactivation message: %s: HTML tags
490
+ #: ad-inserter.php:9987
491
  msgid ""
492
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
493
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
495
  msgstr ""
496
 
497
  #. translators: %s: Ad Inserter
498
+ #: ad-inserter.php:10031
499
  msgid "%s block."
500
  msgstr ""
501
 
502
  #. translators: widget title
503
+ #: ad-inserter.php:10047 ad-inserter.php:10082
504
  msgid "Processing log"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
+ #: ad-inserter.php:10049 ad-inserter.php:10083
509
  msgid "Dummy widget"
510
  msgstr ""
511
 
512
  #. translators: widget title
513
+ #: ad-inserter.php:10051 ad-inserter.php:10081
514
  msgid "Debugging tools"
515
  msgstr ""
516
 
517
  #. translators: block status (widget title)
518
+ #: ad-inserter.php:10058
519
  msgctxt "block"
520
  msgid "PAUSED"
521
  msgstr ""
522
 
523
+ #: ad-inserter.php:10059
524
  msgid "WIDGET DISABLED"
525
  msgstr ""
526
 
527
+ #: ad-inserter.php:10060
528
  msgid "Unknown block"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:10068 includes/functions-check-now.php:3261
532
+ #: includes/functions.old.php:3186 includes/functions.php:3499
533
+ #: settings.php:1208
534
  msgid "Title"
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:10090
538
  msgctxt "Widget"
539
  msgid "Sticky"
540
  msgstr ""
541
 
542
+ #: ad-inserter.php:10139
543
  msgid ""
544
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
545
  "Inserter you need to first deactivate Ad Inserter Pro."
546
  msgstr ""
547
 
548
+ #: ad-inserter.php:10140
549
  msgid ""
550
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
551
  "will clear all settings that are available only in the Pro version "
557
  msgid "PHP error in %s block"
558
  msgstr ""
559
 
560
+ #: class.php:2073
561
  msgid "Counters"
562
  msgstr ""
563
 
564
+ #: class.php:2077
565
  msgid "Content"
566
  msgstr ""
567
 
568
+ #: class.php:2082
569
  msgid "Excerpt"
570
  msgstr ""
571
 
572
+ #: class.php:2087 strings.php:17
573
  msgid "Before post"
574
  msgstr ""
575
 
576
+ #: class.php:2092 strings.php:18
577
  msgid "After post"
578
  msgstr ""
579
 
580
+ #: class.php:2097 strings.php:25
581
  msgid "Between posts"
582
  msgstr ""
583
 
584
+ #: class.php:2102 settings.php:1917 settings.php:4275
585
  msgid "Widget"
586
  msgstr ""
587
 
588
+ #: class.php:2107 settings.php:4273
589
  msgid "PHP function call"
590
  msgstr ""
591
 
592
  #. Translators: %s: custom hook name
593
+ #: class.php:2117
594
  msgid "Custom hook %s call"
595
  msgstr ""
596
 
597
+ #: class.php:2153
598
  msgid "AJAX REQUEST"
599
  msgstr ""
600
 
601
+ #: class.php:2156
602
  msgid "Ajax request for block in iframe"
603
  msgstr ""
604
 
605
+ #: class.php:2190
606
  msgid "Ajax request url, click to open it in a new tab"
607
  msgstr ""
608
 
609
+ #: class.php:2193
610
  msgid "IN THE LOOP"
611
  msgstr ""
612
 
613
+ #: class.php:2193
614
  msgid "YES"
615
  msgstr ""
616
 
617
+ #: class.php:2193
618
  msgid "NO"
619
  msgstr ""
620
 
621
+ #: class.php:2229
622
  msgid "BLOCK"
623
  msgstr ""
624
 
625
+ #: class.php:2229
626
  msgctxt "block or widget"
627
  msgid "INSERTED BUT NOT VISIBLE"
628
  msgstr ""
629
 
630
+ #: class.php:2397
631
  msgctxt "viewports"
632
  msgid "ALL"
633
  msgstr ""
634
 
635
+ #: class.php:2430 class.php:2472 class.php:3745 strings.php:261
636
  msgctxt "Block"
637
  msgid "HIDDEN"
638
  msgstr ""
639
 
640
+ #: class.php:2479 class.php:3748 strings.php:260
641
  msgctxt "Block"
642
  msgid "VISIBLE"
643
  msgstr ""
644
 
645
+ #: class.php:2984 class.php:3054
646
  msgid "ACTIVE GROUPS"
647
  msgstr ""
648
 
649
+ #: class.php:3444
650
  msgid "start='%s' end='%s' days='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
+ #: class.php:3452
655
  msgid "parameters='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
+ #: class.php:3454
660
  msgid "referers='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
+ #: class.php:3456
665
  msgid "clients='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
+ #: class.php:3628
670
  msgid "countries='%s' type='%s'"
671
  msgstr ""
672
 
673
  #. translators: %s: list parameters and type
674
+ #: class.php:3630
675
  msgid "ip addresses='%s' type='%s'"
676
  msgstr ""
677
 
678
+ #: class.php:3745 class.php:3748
679
  msgid "viewport='%s' type='%s'"
680
  msgstr ""
681
 
682
+ #: class.php:4102 strings.php:254
683
  msgid "BEFORE"
684
  msgstr ""
685
 
686
+ #: class.php:4110 strings.php:256
687
  msgid "PREPEND CONTENT"
688
  msgstr ""
689
 
690
+ #: class.php:4114 strings.php:257
691
  msgid "APPEND CONTENT"
692
  msgstr ""
693
 
694
+ #: class.php:4118 strings.php:258
695
  msgid "REPLACE CONTENT"
696
  msgstr ""
697
 
698
+ #: class.php:4122 strings.php:259
699
  msgid "REPLACE ELEMENT"
700
  msgstr ""
701
 
702
+ #: class.php:4133 strings.php:255
703
  msgid "AFTER"
704
  msgstr ""
705
 
706
+ #: class.php:4218 includes/preview.php:2046 includes/preview.php:2083
707
  msgid "Code"
708
  msgstr ""
709
 
710
+ #: class.php:4221
711
  msgid "for block"
712
  msgstr ""
713
 
714
+ #: class.php:7886
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
718
  msgstr ""
719
 
720
  #: includes/editor.php:7 includes/placeholders.php:352
721
+ #: includes/preview.php:1989 strings.php:267
722
  msgid "Use"
723
  msgstr ""
724
 
725
+ #: includes/editor.php:8 includes/preview.php:1990
726
  msgid "Reset"
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
+ #: includes/preview.php:1992 settings.php:3616 strings.php:213 strings.php:266
731
  msgid "Cancel"
732
  msgstr ""
733
 
736
  msgstr ""
737
 
738
  #: includes/editor.php:262 includes/preview-adb.php:289
739
+ #: includes/preview.php:1979
740
  msgid ""
741
  "This page was not loaded properly. Please check browser, plugins and ad "
742
  "blockers."
743
  msgstr ""
744
 
745
+ #: includes/editor.php:264 settings.php:291
746
  msgid "Error loading page"
747
  msgstr ""
748
 
749
  #: includes/editor.php:264 includes/preview-adb.php:291
750
+ #: includes/preview.php:1981
751
  msgid "PAGE BLOCKED"
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
+ #: includes/functions.php:302
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
+ #: includes/functions.php:321
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
+ #: includes/functions.php:398
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
+ #: includes/functions.php:398
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
+ #: includes/functions.php:402
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
+ #: includes/functions.php:422
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
+ #: includes/functions.php:425
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
+ #: includes/functions.php:427
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
+ #: includes/functions.php:434
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
+ #: includes/functions.php:434
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
+ #: includes/functions.php:449
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
+ #: includes/functions.php:452
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
+ #: includes/functions.php:453 settings.php:1359 settings.php:2831
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
+ #: includes/functions.php:458
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
+ #: includes/functions.php:461
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
+ #: includes/functions.php:472
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
+ #: includes/functions.php:487
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
+ #: includes/functions.php:487
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
+ #: includes/functions.php:494
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
+ #: includes/functions.php:499
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
+ #: includes/functions.php:513
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
+ #: includes/functions.php:521 includes/functions.php:3242
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
+ #: includes/functions-check-now.php:528 includes/functions.php:530
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
+ #: includes/functions.php:545
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
+ #: includes/functions.php:549
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
+ #: includes/functions.php:553
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
+ #: includes/functions.php:561 settings.php:1113 settings.php:2275
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
+ #: includes/functions.php:621 includes/preview.php:2132
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
+ #: includes/functions.php:644
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
+ #: includes/functions.php:652 includes/preview.php:2187
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
+ #: includes/functions.php:667
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
+ #: includes/functions.php:692 includes/preview.php:2238
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
+ #: includes/functions.php:710
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
+ #: includes/functions.php:719
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
+ #: includes/functions.php:723
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
+ #: includes/functions.php:723
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
+ #: includes/functions.php:727
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
+ #: includes/functions.php:727
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
+ #: includes/functions.php:731
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
+ #: includes/functions.php:733
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
+ #: includes/functions.php:775 includes/functions.php:2713
973
+ #: includes/functions.php:2729
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
+ #: includes/functions.php:779 includes/functions.php:2717
981
+ #: includes/functions.php:2733
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
+ #: includes/functions.php:786
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
+ #: includes/functions.php:792 settings.php:3551 settings.php:3587
992
+ #: settings.php:3629 strings.php:223
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
+ #: includes/functions.php:813
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
+ #: includes/functions.php:817
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
+ #: includes/functions.php:820 includes/functions.php:5736
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
+ #: includes/functions.php:820 includes/functions.php:5736
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
+ #: includes/functions.php:823 includes/functions.php:5739
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
+ #: includes/functions.php:823 includes/functions.php:5739
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
+ #: includes/functions.php:826 includes/functions.php:5742
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
+ #: includes/functions.php:826 includes/functions.php:5742
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
+ #: includes/functions.php:829 includes/functions.php:5745
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
+ #: includes/functions.php:832 includes/functions.php:5748
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
+ #: includes/functions.php:835 includes/functions.php:5751
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
+ #: includes/functions.php:838 includes/functions.php:5754
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
+ #: includes/functions.php:841 includes/functions.php:5757
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
+ #: includes/functions.php:851 includes/functions.php:5767
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
+ #: includes/functions.php:867
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
+ #: includes/functions.php:867
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
+ #: includes/functions.php:871
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
+ #: includes/functions.php:871
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
+ #: includes/functions.php:875
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
+ #: includes/functions.php:888
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
+ #: includes/functions.php:898
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
+ #: includes/functions.php:900
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
+ #: includes/functions.php:930
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
+ #: includes/functions.php:936
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
+ #: includes/functions.php:939
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
+ #: includes/functions.php:942
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
+ #: includes/functions.php:951
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
+ #: includes/functions.php:955
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
+ #: includes/functions.php:966
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
+ #: includes/functions.php:967
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
+ #: includes/functions.php:971 includes/functions.php:3207
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
+ #: includes/functions.php:974
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
+ #: includes/functions.php:978 includes/functions.php:3210
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
+ #: includes/functions.php:987
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
+ #: includes/functions.php:991
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
+ #: includes/functions.php:1447 includes/functions.php:1757
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
+ #: includes/functions.php:1453
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
+ #: includes/functions-check-now.php:1402 includes/functions.php:1467
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
+ #: includes/functions-check-now.php:1404 includes/functions.php:1469
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
+ #: includes/functions-check-now.php:1406 includes/functions.php:1471
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
+ #: includes/functions.php:1476 includes/functions.php:1766
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
+ #: includes/functions.php:1482
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
+ #: includes/functions.php:1491
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
+ #: includes/functions.php:1492
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
+ #: includes/functions.php:1500
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
+ #: includes/functions.php:1501
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
+ #: includes/functions.php:1501
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
+ #: includes/functions.php:1759
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
+ #: includes/functions.php:1768
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
+ #: includes/functions.php:1784
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
+ #: includes/functions.php:1791
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
+ #: includes/functions.php:1801
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
+ #: includes/functions.php:1804
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
+ #: includes/functions.php:1818
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
+ #: includes/functions.php:1820
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
+ #: includes/functions.php:1833
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
+ #: includes/functions.php:1885
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
+ #: includes/functions.php:2506
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
+ #: includes/functions.php:2510 settings.php:4262
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
+ #: includes/functions.php:2515
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
+ #: includes/functions.php:2520 settings.php:4268
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
+ #: includes/functions.php:2551
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
+ #: includes/functions.php:2560
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
+ #: includes/functions.php:2564
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
+ #: includes/functions.php:2590 settings.php:1441 settings.php:1456
1366
+ #: settings.php:1546 settings.php:2172
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
+ #: includes/functions.php:2572
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
+ #: includes/functions.php:2573
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
+ #: includes/functions.php:2610
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
+ #: includes/functions.php:2614 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
+ #: includes/functions.php:2615
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
+ #: includes/functions.php:2621 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
+ #: includes/functions.php:2622
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
+ #: includes/functions.php:2629
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
+ #: includes/functions.php:2634
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
+ #: includes/functions.php:2634 includes/preview.php:2001 settings.php:1108
1417
+ #: settings.php:2893
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
+ #: includes/functions.php:2648 settings.php:4269
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
+ #: includes/functions.php:2653 includes/functions.php:4712
1430
+ #: includes/functions.php:4775 settings.php:2322
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
+ #: includes/functions.php:2662
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
+ #: includes/functions.php:2671
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
+ #: includes/functions.php:2737
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
+ #: includes/functions.php:2741
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
+ #: includes/functions.php:2755
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
+ #: includes/functions.php:2761 includes/functions.php:2773
1472
+ #: includes/functions.php:2858
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
+ #: includes/functions.php:2780 includes/functions.php:2790
1493
+ #: includes/functions.php:2809 includes/functions.php:2819
1494
+ #: includes/functions.php:2865 includes/functions.php:2874
1495
+ #: includes/functions.php:2892 includes/functions.php:2901 settings.php:2093
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
+ #: includes/functions.php:2781
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
+ #: includes/functions.php:2783 includes/functions.php:2793
1515
+ #: includes/functions.php:2868 includes/functions.php:2877
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
+ #: includes/functions.php:2791
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
+ #: includes/functions.php:2797 includes/functions.php:2826
1536
+ #: includes/functions.php:2881 includes/functions.php:2908
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
+ #: includes/functions.php:2798 includes/functions.php:2827
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
+ #: includes/functions.php:2800 includes/functions.php:2829
1558
+ #: includes/functions.php:2884 includes/functions.php:2911
1559
+ #: includes/functions.php:3017 includes/functions.php:3368 strings.php:204
1560
+ #: strings.php:205 strings.php:206 strings.php:207 strings.php:208
1561
+ #: strings.php:209
1562
  msgid "day"
1563
  msgid_plural "days"
1564
  msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
+ #: includes/functions.php:2810
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
+ #: includes/functions.php:2812 includes/functions.php:2822
1583
+ #: includes/functions.php:2895 includes/functions.php:2904
1584
+ #: includes/functions.php:4923
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
+ #: includes/functions.php:2820
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
+ #: includes/functions.php:2845
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
+ #: includes/functions.php:2849 includes/functions.php:2851
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
+ #: includes/functions.php:2851
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
+ #: includes/functions.php:2866
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
+ #: includes/functions.php:2875
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
+ #: includes/functions.php:2882 includes/functions.php:2909
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
+ #: includes/functions.php:2893
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
+ #: includes/functions.php:2902
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
+ #: includes/functions.php:2928
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
+ #: includes/functions.php:2937
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
+ #: includes/functions.php:2938
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
+ #: includes/functions.php:2939
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
+ #: includes/functions.php:2956 includes/functions.php:5980
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
+ #: includes/functions.php:3008
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
+ #: includes/functions.php:3009
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
+ #: includes/functions.php:3014
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
+ #: includes/functions.php:3015
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
+ #: includes/functions.php:3035
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
+ #: includes/functions.php:3036
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
+ #: includes/functions.php:3038 includes/functions.php:3045
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
+ #: includes/functions.php:3042
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
+ #: includes/functions.php:3043
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
+ #: includes/functions.php:3062
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
+ #: includes/functions.php:3131
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
+ #: includes/functions.php:3144
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
+ #: includes/functions.php:3147
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
+ #: includes/functions.php:3158
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
+ #: includes/functions.php:3161
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
+ #: includes/functions.php:3178
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
+ #: includes/functions.php:3181
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
+ #: includes/functions.php:3199
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
+ #: includes/functions.php:3205
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
+ #: includes/functions.php:3250
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
+ #: includes/functions.php:3257
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
+ #: includes/functions.php:3265
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
+ #: includes/functions.php:3266 settings.php:2781
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
+ #: includes/functions.php:3282
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
+ #: includes/functions.php:3286
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
+ #: includes/functions.php:3291
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
+ #: includes/functions.php:3295
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
+ #: includes/functions.php:3300
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
+ #: includes/functions.php:3306
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
+ #: includes/functions.php:3316
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
+ #: includes/functions.php:3322
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
+ #: includes/functions.php:3332
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
+ #: includes/functions.php:3338
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
+ #: includes/functions.php:3357
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
+ #: includes/functions.php:3361
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
+ #: includes/functions.php:3367
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
+ #: includes/functions.php:3368
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
+ #: includes/functions.php:3387
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
+ #: includes/functions.php:3390
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
+ #: includes/functions.php:3391 strings.php:235
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
+ #: includes/functions.php:3396
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
+ #: includes/functions.php:3399
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
+ #: includes/functions.php:3404
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
+ #: includes/functions.php:3407
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
+ #: includes/functions.php:3412
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
+ #: includes/functions.php:3415
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
+ #: includes/functions.php:3420
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
+ #: includes/functions.php:3423
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
+ #: includes/functions.php:3486
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
+ #: includes/functions.php:3487
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
+ #: includes/functions.php:3494
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
+ #: includes/functions.php:3494
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
+ #: includes/functions.php:3499 settings.php:3860 settings.php:4345
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
+ #: includes/functions.php:3517
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
+ #: includes/functions.php:3518 includes/functions.php:3525
1995
+ #: includes/functions.php:3529 includes/placeholders.php:353
1996
+ #: includes/preview.php:2307 settings.php:1345 settings.php:3620
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
+ #: includes/functions.php:3548
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
+ #: includes/functions.php:3549
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
+ #: includes/functions.php:3562
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
+ #: includes/functions.php:3573
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
+ #: includes/functions.php:3578
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
+ #: includes/functions.php:3578
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
+ #: includes/functions.php:3583
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
+ #: includes/functions.php:3583
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
+ #: includes/functions.php:3588
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
+ #: includes/functions.php:3588
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
+ #: includes/functions.php:3593
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
+ #: includes/functions.php:3593
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
+ #: includes/functions.php:3598
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
+ #: includes/functions.php:3598
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
+ #: includes/functions.php:3614 settings.php:2780
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
+ #: includes/functions.php:3620
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
+ #: includes/functions.php:4343 includes/functions.php:4465
2093
+ #: includes/functions.php:4485
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
+ #: includes/functions.php:4344 includes/functions.php:4390
2102
+ #: includes/functions.php:4459 includes/functions.php:4486
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
+ #: includes/functions.php:4347 includes/functions.php:4458
2110
+ #: includes/functions.php:4492
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
+ #: includes/functions.php:4389 includes/functions.php:4396
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
+ #: includes/functions.php:4565 includes/functions.php:4774
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
+ #: includes/functions.php:4711
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
+ #: includes/functions.php:4711
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
+ #: includes/functions.php:4711
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
+ #: includes/functions.php:4712
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
+ #: includes/functions.php:4774
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
+ #: includes/functions.php:4775 includes/functions.php:4776
2158
+ #: includes/functions.php:4831
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
+ #: includes/functions.php:4776
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
+ #: includes/functions.php:4777
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
+ #: includes/functions.php:4777 includes/functions.php:4837
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
+ #: includes/functions.php:4919
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
+ #: includes/functions.php:4919
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
+ #: includes/functions.php:4923
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
+ #: includes/functions.php:5018
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
+ #: includes/functions.php:5039
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
+ #: includes/functions.php:5063
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
+ #: includes/functions.php:5246 includes/functions.php:5338
2223
+ #: includes/functions.php:5681 strings.php:189
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
+ #: includes/functions.php:5587
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
+ #: includes/functions.php:5592
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
+ #: includes/functions.php:5597
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
+ #: includes/functions.php:5602
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
+ #: includes/functions.php:5607
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
+ #: includes/functions.php:5612
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
+ #: includes/functions.php:5617
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
+ #: includes/functions.php:5622
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
+ #: includes/functions.php:557
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
+ #: includes/functions.php:947 includes/functions.php:983 settings.php:1672
2273
+ #: settings.php:1703 settings.php:1734 settings.php:1765 settings.php:1796
2274
+ #: settings.php:1827 settings.php:1857 settings.php:1887
2275
  msgid "Click to select black or white list"
2276
  msgstr ""
2277
 
2278
  #. translators: %s: Ad Inserter Pro
2279
+ #: includes/functions.php:1509
2280
  msgid "Invalid %s version."
2281
  msgstr ""
2282
 
2283
+ #: includes/functions.php:1510
2284
  msgid "Check license"
2285
  msgstr ""
2286
 
2287
+ #: includes/functions.php:1522
2288
  msgid "License"
2289
  msgstr ""
2290
 
2291
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2292
+ #: includes/functions.php:1845
2293
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2294
  msgstr ""
2295
 
2296
  #. Translators: %s: HTML tags
2297
+ #: includes/functions.php:1890
2298
  msgid ""
2299
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2300
  "account %s and create license key."
2301
  msgstr ""
2302
 
2303
+ #: includes/functions.php:2588
2304
  msgid "Start date"
2305
  msgstr ""
2306
 
2307
+ #: includes/functions.php:2588
2308
  msgid "Enter date in format yyyy-mm-dd"
2309
  msgstr ""
2310
 
2311
+ #: includes/functions.php:2589
2312
  msgid "Start time"
2313
  msgstr ""
2314
 
2315
+ #: includes/functions.php:2589
2316
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2317
  msgstr ""
2318
 
2319
+ #: includes/functions.php:2591
2320
  msgid "End date"
2321
  msgstr ""
2322
 
2323
+ #: includes/functions.php:2592
2324
  msgid "End time"
2325
  msgstr ""
2326
 
2327
+ #: includes/functions.php:2595
2328
  msgid "Select wanted days in week"
2329
  msgstr ""
2330
 
2331
+ #: includes/functions.php:2927
2332
+ msgid "Ad blocking detection is disabled"
2333
+ msgstr ""
2334
+
2335
+ #: includes/functions.php:3065
2336
+ msgid "Manual loading"
2337
+ msgstr ""
2338
+
2339
  #. Translators: %s HTML tags
2340
+ #: includes/functions.php:3133
2341
  msgid "Create and manage %s MaxMind license key %s"
2342
  msgstr ""
2343
 
2344
+ #: includes/functions.php:3169
2345
  msgid "MaxMind license key"
2346
  msgstr ""
2347
 
2348
+ #: includes/functions.php:3172
2349
  msgid "Enter license key obtained from MaxMind"
2350
  msgstr ""
2351
 
2352
+ #: includes/functions.php:3438
2353
  msgid "Event category"
2354
  msgstr ""
2355
 
2356
+ #: includes/functions.php:3441
2357
  msgid ""
2358
  "Category name used for external tracking events. You can use tags to get the "
2359
  "event, the number or the name of the block that caused the event."
2360
  msgstr ""
2361
 
2362
+ #: includes/functions.php:3446
2363
  msgid "Event action"
2364
  msgstr ""
2365
 
2366
+ #: includes/functions.php:3449
2367
  msgid ""
2368
  "Action name used for external tracking events. You can use tags to get the "
2369
  "event, the number or the name of the block that caused the event."
2370
  msgstr ""
2371
 
2372
+ #: includes/functions.php:3454
2373
  msgid "Event label"
2374
  msgstr ""
2375
 
2376
+ #: includes/functions.php:3457
2377
  msgid ""
2378
  "Label name used for external tracking events. You can use tags to get the "
2379
  "event, the number or the name of the block that caused the event."
2380
  msgstr ""
2381
 
2382
  #. translators: %s: Ad Inserter Pro
2383
+ #: includes/functions.php:3603
2384
  msgid "Show link to %s settings page for each site on the Sites page"
2385
  msgstr ""
2386
 
2387
  #. translators: %s: Ad Inserter Pro
2388
+ #: includes/functions.php:3603
2389
  msgid "Show link to %s on the Sites page"
2390
  msgstr ""
2391
 
2392
+ #: includes/functions.php:5193
2393
  msgid "File %s missing."
2394
  msgstr ""
2395
 
2396
+ #: includes/php-check.php:8
2397
+ msgid "The latest PHP version: "
2398
+ msgstr ""
2399
+
2400
  #: includes/placeholders.php:20
2401
  msgid "Custom"
2402
  msgstr ""
2421
  msgid "Placeholder"
2422
  msgstr ""
2423
 
2424
+ #: includes/placeholders.php:363 settings.php:954 settings.php:4346
2425
  msgid "Size"
2426
  msgstr ""
2427
 
2489
  msgid "Remove dummy paragraph"
2490
  msgstr ""
2491
 
2492
+ #: includes/preview-adb.php:9 includes/preview.php:1989
2493
  msgid "Use current settings"
2494
  msgstr ""
2495
 
2516
  msgid "Default"
2517
  msgstr ""
2518
 
2519
+ #: includes/preview-adb.php:12 includes/preview.php:1992
2520
  msgid "Close preview window"
2521
  msgstr ""
2522
 
2529
  msgid "Ad Blocking Detected Message Preview"
2530
  msgstr ""
2531
 
2532
+ #: includes/preview-adb.php:348 settings.php:2906
2533
  msgid "Message CSS"
2534
  msgstr ""
2535
 
2536
+ #: includes/preview-adb.php:353 settings.php:2914
2537
  msgid "Overlay CSS"
2538
  msgstr ""
2539
 
2540
+ #: includes/preview.php:229
2541
  msgid "Sticky Code Preview"
2542
  msgstr ""
2543
 
2544
+ #: includes/preview.php:229
2545
  msgid "Code Preview"
2546
  msgstr ""
2547
 
2548
+ #: includes/preview.php:1987
2549
  msgid "Highlight inserted code"
2550
  msgstr ""
2551
 
2552
+ #: includes/preview.php:1987
2553
  msgid "Highlight"
2554
  msgstr ""
2555
 
2556
+ #: includes/preview.php:1990
2557
  msgid "Reset to block settings"
2558
  msgstr ""
2559
 
2560
+ #: includes/preview.php:2005
2561
  msgid "AdSense ad unit"
2562
  msgstr ""
2563
 
2564
+ #: includes/preview.php:2072
2565
  msgid "wrapping div"
2566
  msgstr ""
2567
 
2568
+ #: includes/preview.php:2077 includes/preview.php:2084
2569
  msgid "background"
2570
  msgstr ""
2571
 
2572
+ #: includes/preview.php:2111 includes/preview.php:2262 settings.php:1306
2573
  msgid "Alignment"
2574
  msgstr ""
2575
 
2576
+ #: includes/preview.php:2179
2577
  msgid "Horizontal margin"
2578
  msgstr ""
2579
 
2580
+ #: includes/preview.php:2228
2581
  msgid "Vertical margin"
2582
  msgstr ""
2583
 
2584
+ #: includes/preview.php:2250
2585
  msgid "Animate"
2586
  msgstr ""
2587
 
2588
+ #: includes/preview.php:2316
2589
  msgid ""
2590
  "This is a preview of the code between dummy paragraphs. Here you can test "
2591
  "various block alignments, visually edit margin and padding values of the "
2595
  "restores all the values to those of the current block."
2596
  msgstr ""
2597
 
2598
+ #: includes/preview.php:2319
2599
  msgid ""
2600
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2601
  "code with the alignment and style as it is set for this block. Highlight "
2602
  "button highlights background, wrapping div margin and code area."
2603
  msgstr ""
2604
 
2605
+ #: includes/preview.php:2321
2606
  msgid ""
2607
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2608
  "code was loaded from your AdSense account. The ad block is displayed on a "
2610
  "highlight ad block."
2611
  msgstr ""
2612
 
2613
+ #: includes/preview.php:2327
2614
  msgid ""
2615
  "You can resize the window (and refresh the page to reload ads) to check "
2616
  "display with different screen widths.\n"
2618
  "settings will be copied to the active block."
2619
  msgstr ""
2620
 
2621
+ #: includes/preview.php:2329
2622
  msgid ""
2623
  "Please note that the code, block name, alignment and style are taken from "
2624
  "the current block settings (may not be saved).\n"
2626
  "padding can't be set. However, you can use own HTML code for the block."
2627
  msgstr ""
2628
 
2629
+ #: includes/preview.php:2334 includes/preview.php:2348
2630
+ #: includes/preview.php:2358 includes/preview.php:2368
2631
+ #: includes/preview.php:2378
2632
  msgid ""
2633
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2634
  "code with it's settings is called a block.\n"
2642
  "and manual insertion."
2643
  msgstr ""
2644
 
2645
+ #: includes/preview.php:2339 includes/preview.php:2353
2646
+ #: includes/preview.php:2363 includes/preview.php:2373
2647
+ #: includes/preview.php:2383
2648
  msgid ""
2649
  "Few very important things you need to know in order to insert code and "
2650
  "display some ad:\n"
2657
  "individual post/page exceptions."
2658
  msgstr ""
2659
 
2660
+ #: includes/preview.php:2345
2661
  msgid ""
2662
  "This is a preview of the code for sticky ads. Here you can test various "
2663
  "horizontal and vertical alignments, close button locations, visually edit "
2667
  "the values to those of the current block."
2668
  msgstr ""
2669
 
2670
+ #: settings.php:160 settings.php:163
2671
  msgid ""
2672
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2673
  msgstr ""
2674
 
2675
+ #: settings.php:202 settings.php:1195
2676
  msgid ""
2677
  "Settings for individual exceptions have been updated. Please check all "
2678
  "blocks that have exceptions and and then save settings."
2679
  msgstr ""
2680
 
2681
+ #: settings.php:244
2682
  msgid "Online documentation"
2683
  msgstr ""
2684
 
2685
+ #: settings.php:248 settings.php:789 settings.php:2289
2686
  msgid "Show AdSense ad units"
2687
  msgstr ""
2688
 
2689
+ #: settings.php:257
2690
  msgid "Edit ads.txt file"
2691
  msgstr ""
2692
 
2693
+ #: settings.php:260 settings.php:1138
2694
  msgid "Check theme for available positions for automatic insertion"
2695
  msgstr ""
2696
 
2697
+ #: settings.php:262
2698
  msgid "List all blocks"
2699
  msgstr ""
2700
 
2701
+ #: settings.php:269
2702
  msgid "Loaded plugin JavaScript file version"
2703
  msgstr ""
2704
 
2705
  #. translators: %s: HTML tags
2706
+ #: settings.php:271
2707
  msgid ""
2708
  "Wrong or %s missing version parameter %s of the JavaScript file, probably "
2709
  "due to inappropriate caching."
2710
  msgstr ""
2711
 
2712
+ #: settings.php:272
2713
  msgid ""
2714
  "Missing version parameter of the JavaScript file, probably due to "
2715
  "inappropriate caching."
2716
  msgstr ""
2717
 
2718
+ #: settings.php:273
2719
  msgid ""
2720
  "Incompatible (old) JavaScript file loaded, probably due to inappropriate "
2721
  "caching."
2722
  msgstr ""
2723
 
2724
+ #: settings.php:274 settings.php:285
2725
  msgid ""
2726
  "Please delete browser's cache and all other caches used and then reload this "
2727
  "page."
2728
  msgstr ""
2729
 
2730
+ #: settings.php:280
2731
  msgid "Loaded plugin CSS file version"
2732
  msgstr ""
2733
 
2734
  #. translators: %s: HTML tags
2735
+ #: settings.php:282
2736
  msgid ""
2737
  "Wrong or %s missing version parameter %s of the CSS file, probably due to "
2738
  "inappropriate caching."
2739
  msgstr ""
2740
 
2741
+ #: settings.php:283
2742
  msgid ""
2743
  "Missing version parameter of the CSS file, probably due to inappropriate "
2744
  "caching."
2745
  msgstr ""
2746
 
2747
+ #: settings.php:284
2748
  msgid ""
2749
  "Incompatible (old) CSS file loaded, probably due to inappropriate caching."
2750
  msgstr ""
2751
 
2752
+ #: settings.php:291 settings.php:317
2753
  msgid "WARNING"
2754
  msgstr ""
2755
 
2756
  #. translators: %s: HTML tags
2757
+ #: settings.php:293
2758
  msgid "Page may %s not be loaded properly. %s"
2759
  msgstr ""
2760
 
2761
+ #: settings.php:294
2762
  msgid ""
2763
  "Check ad blocking software that may block CSS, JavaScript or image files."
2764
  msgstr ""
2765
 
2766
+ #: settings.php:303
2767
  msgid "SAFE MODE"
2768
  msgstr ""
2769
 
2770
  #. translators: %s: HTML tags
2771
+ #: settings.php:305
2772
  msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
2773
  msgstr ""
2774
 
2775
+ #: settings.php:317
2776
  msgid ""
2777
  "To disable debugging functions and to enable insertions go to tab [*] / tab "
2778
  "Debugging"
2779
  msgstr ""
2780
 
2781
+ #: settings.php:319
2782
  msgid "Debugging functions enabled - some code is not inserted"
2783
  msgstr ""
2784
 
2785
+ #: settings.php:336
2786
  msgid "Group name"
2787
  msgstr ""
2788
 
2789
+ #: settings.php:337
2790
  msgid "Option name"
2791
  msgstr ""
2792
 
2793
+ #: settings.php:343
2794
  msgid "Share"
2795
  msgstr ""
2796
 
2797
+ #: settings.php:346
2798
  msgid ""
2799
  "Option share in percents - 0 means option is disabled, if share for one "
2800
  "option is not defined it will be calculated automatically. Leave all share "
2801
  "fields empty for equal option shares."
2802
  msgstr ""
2803
 
2804
+ #: settings.php:349
2805
  msgid "Time"
2806
  msgstr ""
2807
 
2808
+ #: settings.php:352
2809
  msgid ""
2810
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2811
  "Leave all time fields empty for no timed rotation."
2812
  msgstr ""
2813
 
2814
+ #: settings.php:504
2815
  msgid "General Settings"
2816
  msgstr ""
2817
 
2818
+ #: settings.php:737 settings.php:2633 settings.php:2700 settings.php:2886
2819
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2820
  msgstr ""
2821
 
2822
+ #: settings.php:744
2823
  msgid "Toggle tools"
2824
  msgstr ""
2825
 
2826
+ #: settings.php:752
2827
  msgid "Process PHP code in block"
2828
  msgstr ""
2829
 
2830
+ #: settings.php:759
2831
  msgid "Disable insertion of this block"
2832
  msgstr ""
2833
 
2834
+ #: settings.php:771
2835
  msgid "Toggle code generator"
2836
  msgstr ""
2837
 
2838
+ #: settings.php:775
2839
  msgid "Toggle rotation editor"
2840
  msgstr ""
2841
 
2842
+ #: settings.php:779
2843
  msgid "Open visual HTML editor"
2844
  msgstr ""
2845
 
2846
+ #: settings.php:798
2847
  msgid "Clear block"
2848
  msgstr ""
2849
 
2850
+ #: settings.php:803 settings.php:4217
2851
  msgid "Copy block"
2852
  msgstr ""
2853
 
2854
+ #: settings.php:807
2855
  msgid "Paste name"
2856
  msgstr ""
2857
 
2858
+ #: settings.php:811
2859
  msgid "Paste code"
2860
  msgstr ""
2861
 
2862
+ #: settings.php:815
2863
  msgid "Paste settings"
2864
  msgstr ""
2865
 
2866
+ #: settings.php:819
2867
  msgid "Paste block (name, code and settings)"
2868
  msgstr ""
2869
 
2870
+ #: settings.php:838
2871
  msgid "Rotation groups"
2872
  msgstr ""
2873
 
2874
+ #: settings.php:842
2875
  msgid "Remove option"
2876
  msgstr ""
2877
 
2878
+ #: settings.php:846
2879
  msgid "Add option"
2880
  msgstr ""
2881
 
2882
+ #: settings.php:861
2883
  msgid "Import code"
2884
  msgstr ""
2885
 
2886
+ #: settings.php:865
2887
  msgid "Generate code"
2888
  msgstr ""
2889
 
2890
+ #: settings.php:870
2891
  msgid "Banner"
2892
  msgstr ""
2893
 
2894
+ #: settings.php:881
2895
  msgid "Image"
2896
  msgstr ""
2897
 
2898
+ #: settings.php:889
2899
  msgid "Link"
2900
  msgstr ""
2901
 
2902
+ #: settings.php:900
2903
  msgid "Open link in a new tab"
2904
  msgstr ""
2905
 
2906
+ #: settings.php:901
2907
  msgid "Select Image"
2908
  msgstr ""
2909
 
2910
+ #: settings.php:902
2911
  msgid "Select Placeholder"
2912
  msgstr ""
2913
 
2914
+ #: settings.php:914
2915
  msgid "Comment"
2916
  msgstr ""
2917
 
2918
+ #: settings.php:923
2919
  msgctxt "AdSense"
2920
  msgid "Publisher ID"
2921
  msgstr ""
2922
 
2923
+ #: settings.php:932
2924
  msgctxt "AdSense"
2925
  msgid "Ad Slot ID"
2926
  msgstr ""
2927
 
2928
+ #: settings.php:941
2929
  msgid "Ad Type"
2930
  msgstr ""
2931
 
2932
+ #: settings.php:966
2933
  msgid "AMP Ad"
2934
  msgstr ""
2935
 
2936
+ #: settings.php:984
2937
  msgid "Show ad units from your AdSense account"
2938
  msgstr ""
2939
 
2940
+ #: settings.php:984
2941
  msgid "AdSense ad units"
2942
  msgstr ""
2943
 
2944
+ #: settings.php:1001
2945
  msgctxt "AdSense"
2946
  msgid "Layout"
2947
  msgstr ""
2948
 
2949
+ #: settings.php:1010
2950
  msgctxt "AdSense"
2951
  msgid "Layout Key"
2952
  msgstr ""
2953
 
2954
+ #: settings.php:1020
2955
  msgid "Full width"
2956
  msgstr ""
2957
 
2958
+ #: settings.php:1022
2959
  msgctxt "Full width"
2960
  msgid "Enabled"
2961
  msgstr ""
2962
 
2963
+ #: settings.php:1023
2964
  msgctxt "Full width"
2965
  msgid "Disabled"
2966
  msgstr ""
2967
 
2968
+ #: settings.php:1104
2969
  msgid ""
2970
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2971
  "Cookie or Referer (domain)"
2972
  msgstr ""
2973
 
2974
+ #: settings.php:1104
2975
  msgid "Lists"
2976
  msgstr ""
2977
 
2978
+ #: settings.php:1105
2979
  msgid "Widget, Shortcode and PHP function call"
2980
  msgstr ""
2981
 
2982
+ #: settings.php:1105
2983
  msgid "Manual"
2984
  msgstr ""
2985
 
2986
+ #: settings.php:1106
2987
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2988
  msgstr ""
2989
 
2990
+ #: settings.php:1106
2991
  msgid "Devices"
2992
  msgstr ""
2993
 
2994
+ #: settings.php:1107
2995
  msgid ""
2996
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2997
  "feeds), Filter, Scheduling, General tag"
2998
  msgstr ""
2999
 
3000
+ #: settings.php:1107
3001
  msgid "Misc"
3002
  msgstr ""
3003
 
3004
+ #: settings.php:1108
3005
  msgid "Preview code and alignment"
3006
  msgstr ""
3007
 
3008
+ #: settings.php:1111 settings.php:2273
3009
  msgid ""
3010
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3011
  "editor is active before saving settings."
3012
  msgstr ""
3013
 
3014
+ #: settings.php:1124 settings.php:1125
3015
  msgid "Enable insertion on posts"
3016
  msgstr ""
3017
 
3018
+ #: settings.php:1125 settings.php:3432
3019
  msgid "Posts"
3020
  msgstr ""
3021
 
3022
+ #: settings.php:1129 settings.php:1130
3023
  msgid ""
3024
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3025
  "page or theme homepage (available positions may depend on hooks used by the "
3026
  "theme)"
3027
  msgstr ""
3028
 
3029
+ #: settings.php:1130 settings.php:3434
3030
  msgid "Homepage"
3031
  msgstr ""
3032
 
3033
+ #: settings.php:1134 settings.php:1135
3034
  msgid "Enable insertion on category blog pages (including sub-pages)"
3035
  msgstr ""
3036
 
3037
+ #: settings.php:1135 settings.php:3435
3038
  msgid "Category pages"
3039
  msgstr ""
3040
 
3041
+ #: settings.php:1145 settings.php:1146
3042
  msgid "Enable insertion on static pages"
3043
  msgstr ""
3044
 
3045
+ #: settings.php:1146 settings.php:3433
3046
  msgid "Static pages"
3047
  msgstr ""
3048
 
3049
+ #: settings.php:1150 settings.php:1151
3050
  msgid "Enable insertion on search blog pages"
3051
  msgstr ""
3052
 
3053
+ #: settings.php:1151 settings.php:3437
3054
  msgid "Search pages"
3055
  msgstr ""
3056
 
3057
+ #: settings.php:1155 settings.php:1156
3058
  msgid "Enable insertion on tag or archive blog pages"
3059
  msgstr ""
3060
 
3061
+ #: settings.php:1159
3062
  msgid "Toggle settings for default insertion and list of individual exceptions"
3063
  msgstr ""
3064
 
3065
+ #: settings.php:1171
3066
  msgid ""
3067
  "Enable individual post/page exceptions for insertion of this block. They can "
3068
  "be configured on the individual post/page editor page (in the settings below "
3069
  "the editor)."
3070
  msgstr ""
3071
 
3072
+ #: settings.php:1172
3073
  msgid ""
3074
  "Enable individual post/page exceptions for insertion of this block. When "
3075
  "enabled they can be configured on the individual post/page editor page (in "
3076
  "the settings below the editor)."
3077
  msgstr ""
3078
 
3079
+ #: settings.php:1172
3080
  msgid "Use exceptions for individual posts or pages to change insertion"
3081
  msgstr ""
3082
 
3083
  #. Translators: Enabled means...
3084
+ #: settings.php:1180
3085
  msgid ""
3086
  "means the insertion for this block is enabled by default and disabled for "
3087
  "exceptions."
3088
  msgstr ""
3089
 
3090
  #. Translators: Disabled means...
3091
+ #: settings.php:1181
3092
  msgid ""
3093
  "means the insertion for this block is disabled by default and enabled for "
3094
  "exceptions."
3095
  msgstr ""
3096
 
3097
+ #: settings.php:1182
3098
  msgid ""
3099
  "When individual post/page exceptions are enabled they can be configured on "
3100
  "the individual post/page editor page (in the settings below the editor)."
3101
  msgstr ""
3102
 
3103
+ #: settings.php:1190
3104
  msgid ""
3105
  "No exception for post or static page defined. Block will not be inserted."
3106
  msgstr ""
3107
 
3108
+ #: settings.php:1208
3109
  msgctxt "post"
3110
  msgid "Type"
3111
  msgstr ""
3112
 
3113
  #. translators: %d: block number
3114
+ #: settings.php:1210
3115
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3116
  msgstr ""
3117
 
3118
+ #: settings.php:1211
3119
  msgid "Clear listed exceptions for block"
3120
  msgstr ""
3121
 
3122
+ #: settings.php:1237 settings.php:1385 settings.php:2047
3123
  msgid "Insertion"
3124
  msgstr ""
3125
 
3126
+ #: settings.php:1275
3127
  msgid ""
3128
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3129
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3133
  "negative number means counting from the opposite direction"
3134
  msgstr ""
3135
 
3136
+ #: settings.php:1276
3137
  msgid ""
3138
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3139
  "means every N images, empty means all images, 0 means random image, value "
3143
  "direction"
3144
  msgstr ""
3145
 
3146
+ #: settings.php:1289
3147
  msgid ""
3148
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3149
  "numbers, %N means every N excerpts, empty means all excerpts"
3150
  msgstr ""
3151
 
3152
+ #: settings.php:1290
3153
  msgid ""
3154
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3155
  "numbers, %N means every N posts, empty means all posts"
3156
  msgstr ""
3157
 
3158
+ #: settings.php:1291
3159
  msgid ""
3160
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3161
  "numbers, %N means every N comments, empty means all comments"
3162
  msgstr ""
3163
 
3164
+ #: settings.php:1298
3165
  msgid "Toggle paragraph counting settings"
3166
  msgstr ""
3167
 
3168
+ #: settings.php:1299
3169
  msgid "Toggle paragraph clearance settings"
3170
  msgstr ""
3171
 
3172
+ #: settings.php:1302
3173
  msgid "Toggle insertion filter settings"
3174
  msgstr ""
3175
 
3176
+ #: settings.php:1320
3177
  msgid "Toggle insertion and alignment icons"
3178
  msgstr ""
3179
 
3180
+ #: settings.php:1334
3181
  msgid "Custom CSS code for the wrapping div"
3182
  msgstr ""
3183
 
3184
+ #: settings.php:1337 settings.php:1338 settings.php:1339 settings.php:1340
3185
+ #: settings.php:1341 settings.php:1342
3186
  msgid "CSS code for the wrapping div, click to edit"
3187
  msgstr ""
3188
 
3189
+ #: settings.php:1355
3190
  msgid "HTML element"
3191
  msgstr ""
3192
 
3193
+ #: settings.php:1368
3194
  msgid "HTML element selector or comma separated list of selectors"
3195
  msgstr ""
3196
 
3197
+ #: settings.php:1374 settings.php:2791
3198
  msgid "Action"
3199
  msgstr ""
3200
 
3201
+ #: settings.php:1386
3202
  msgid ""
3203
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3204
  "Server-side insertion inserts block when the page is generated but needs "
3205
  "Output buffering enabled."
3206
  msgstr ""
3207
 
3208
+ #: settings.php:1395
3209
  msgid "Code position"
3210
  msgstr ""
3211
 
3212
+ #: settings.php:1396
3213
  msgid ""
3214
  "Page position where the code for client-side insertion will be inserted."
3215
  msgstr ""
3216
 
3217
+ #: settings.php:1411
3218
  msgid "Count"
3219
  msgstr ""
3220
 
3221
+ #: settings.php:1417
3222
  msgid "paragraphs with tags"
3223
  msgstr ""
3224
 
3225
+ #: settings.php:1423
3226
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3227
  msgstr ""
3228
 
3229
+ #: settings.php:1432
3230
  msgid "that have between"
3231
  msgstr ""
3232
 
3233
+ #: settings.php:1438
3234
  msgid "Minimum number of paragraph words, leave empty for no limit"
3235
  msgstr ""
3236
 
3237
+ #: settings.php:1447
3238
  msgid "Maximum number of paragraph words, leave empty for no limit"
3239
  msgstr ""
3240
 
3241
+ #: settings.php:1450
3242
  msgid "words"
3243
  msgstr ""
3244
 
3245
+ #: settings.php:1465 settings.php:1524 settings.php:1594 settings.php:1620
3246
  msgid "Comma separated texts"
3247
  msgstr ""
3248
 
3249
+ #: settings.php:1478
3250
  msgid ""
3251
  "Count also paragraphs inside these elements - defined on general plugin "
3252
  "settings page - tab [*] / tab General"
3253
  msgstr ""
3254
 
3255
  #. Translators: %s: HTML tags
3256
+ #: settings.php:1484
3257
  msgid "Count inside %s elements"
3258
  msgstr ""
3259
 
3260
  #. translators: inside [HTML tags] elements that contain
3261
+ #: settings.php:1496
3262
  msgid "inside"
3263
  msgstr ""
3264
 
3265
+ #: settings.php:1502
3266
  msgid "Comma separated HTML tag names of container elements"
3267
  msgstr ""
3268
 
3269
  #. translators: inside [HTML tags] elements that contain
3270
+ #: settings.php:1511
3271
  msgid "elements that"
3272
  msgstr ""
3273
 
3274
+ #: settings.php:1537 settings.php:2170
3275
  msgid "Post/Static page must have between"
3276
  msgstr ""
3277
 
3278
+ #: settings.php:1543
3279
  msgid "Minimum number of paragraphs, leave empty for no limit"
3280
  msgstr ""
3281
 
3282
+ #: settings.php:1552
3283
  msgid "Maximum number of paragraphs, leave empty for no limit"
3284
  msgstr ""
3285
 
3286
  #. Translators: Post/Static page must have between X and Y paragraphs
3287
+ #: settings.php:1555
3288
  msgid "paragraph"
3289
  msgid_plural "paragraphs"
3290
  msgstr[0] ""
3291
  msgstr[1] ""
3292
 
3293
+ #: settings.php:1563
3294
  msgid "Minimum number of words in paragraphs above"
3295
  msgstr ""
3296
 
3297
+ #: settings.php:1569
3298
  msgid ""
3299
  "Used only with automatic insertion After paragraph and empty paragraph "
3300
  "numbers"
3301
  msgstr ""
3302
 
3303
+ #: settings.php:1579 settings.php:1605
3304
  msgid "In"
3305
  msgstr ""
3306
 
3307
+ #: settings.php:1585
3308
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3309
  msgstr ""
3310
 
3311
+ #: settings.php:1588
3312
  msgid "paragraphs above avoid"
3313
  msgstr ""
3314
 
3315
+ #: settings.php:1611
3316
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3317
  msgstr ""
3318
 
3319
+ #: settings.php:1614
3320
  msgid "paragraphs below avoid"
3321
  msgstr ""
3322
 
3323
+ #: settings.php:1630
3324
  msgid "If text is found"
3325
  msgstr ""
3326
 
3327
+ #: settings.php:1637
3328
  msgid "check up to"
3329
  msgstr ""
3330
 
3331
+ #: settings.php:1645
3332
  msgctxt "check up to"
3333
  msgid "paragraphs"
3334
  msgstr ""
3335
 
3336
+ #: settings.php:1661
3337
  msgid "Categories"
3338
  msgstr ""
3339
 
3340
+ #: settings.php:1664
3341
  msgid "Toggle category editor"
3342
  msgstr ""
3343
 
3344
+ #: settings.php:1667
3345
  msgid "Comma separated category slugs"
3346
  msgstr ""
3347
 
3348
+ #: settings.php:1676
3349
  msgid "Blacklist categories"
3350
  msgstr ""
3351
 
3352
+ #: settings.php:1680
3353
  msgid "Whitelist categories"
3354
  msgstr ""
3355
 
3356
+ #: settings.php:1692
3357
  msgid "Tags"
3358
  msgstr ""
3359
 
3360
+ #: settings.php:1695
3361
  msgid "Toggle tag editor"
3362
  msgstr ""
3363
 
3364
+ #: settings.php:1698
3365
  msgid "Comma separated tag slugs"
3366
  msgstr ""
3367
 
3368
+ #: settings.php:1707
3369
  msgid "Blacklist tags"
3370
  msgstr ""
3371
 
3372
+ #: settings.php:1711
3373
  msgid "Whitelist tags"
3374
  msgstr ""
3375
 
3376
+ #: settings.php:1723
3377
  msgid "Taxonomies"
3378
  msgstr ""
3379
 
3380
+ #: settings.php:1726
3381
  msgid "Toggle taxonomy editor"
3382
  msgstr ""
3383
 
3384
+ #: settings.php:1729
3385
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3386
  msgstr ""
3387
 
3388
+ #: settings.php:1738
3389
  msgid "Blacklist taxonomies"
3390
  msgstr ""
3391
 
3392
+ #: settings.php:1742
3393
  msgid "Whitelist taxonomies"
3394
  msgstr ""
3395
 
3396
+ #: settings.php:1754
3397
  msgid "Post IDs"
3398
  msgstr ""
3399
 
3400
+ #: settings.php:1757
3401
  msgid "Toggle post/page ID editor"
3402
  msgstr ""
3403
 
3404
+ #: settings.php:1760
3405
  msgid "Comma separated post/page IDs"
3406
  msgstr ""
3407
 
3408
+ #: settings.php:1769
3409
  msgid "Blacklist IDs"
3410
  msgstr ""
3411
 
3412
+ #: settings.php:1773
3413
  msgid "Whitelist IDs"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:1785
3417
  msgid "Urls"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:1788
3421
  msgid "Toggle url editor"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:1791
3425
  msgid ""
3426
  "Comma separated urls (page addresses) starting with / after domain name (e."
3427
  "g. /permalink-url, use only when you need to taget a specific url not "
3429
  "start*. *url-pattern*, *url-end)"
3430
  msgstr ""
3431
 
3432
+ #: settings.php:1800
3433
  msgid "Blacklist urls"
3434
  msgstr ""
3435
 
3436
+ #: settings.php:1804
3437
  msgid "Whitelist urls"
3438
  msgstr ""
3439
 
3440
+ #: settings.php:1815
3441
  msgid "Url parameters"
3442
  msgstr ""
3443
 
3444
+ #: settings.php:1819
3445
  msgid "Toggle url parameter and cookie editor"
3446
  msgstr ""
3447
 
3448
+ #: settings.php:1822
3449
  msgid ""
3450
  "Comma separated url query parameters or cookies with optional values (use "
3451
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3452
  msgstr ""
3453
 
3454
+ #: settings.php:1831
3455
  msgid "Blacklist url parameters"
3456
  msgstr ""
3457
 
3458
+ #: settings.php:1835
3459
  msgid "Whitelist url parameters"
3460
  msgstr ""
3461
 
3462
+ #: settings.php:1846
3463
  msgid "Referrers"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:1849
3467
  msgid "Toggle referer editor"
3468
  msgstr ""
3469
 
3470
+ #: settings.php:1852
3471
  msgid ""
3472
  "Comma separated domains, use # for no referrer, you can also use partial "
3473
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3474
  msgstr ""
3475
 
3476
+ #: settings.php:1861
3477
  msgid "Blacklist referers"
3478
  msgstr ""
3479
 
3480
+ #: settings.php:1865
3481
  msgid "Whitelist referers"
3482
  msgstr ""
3483
 
3484
+ #: settings.php:1876
3485
  msgid "Clients"
3486
  msgstr ""
3487
 
3488
+ #: settings.php:1879
3489
  msgid "Toggle client editor"
3490
  msgstr ""
3491
 
3492
+ #: settings.php:1882
3493
  msgid "Comma separated names (operating systems, browsers, devices)"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:1891
3497
  msgid "Blacklist clients"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:1895
3501
  msgid "Whitelist clients"
3502
  msgstr ""
3503
 
3504
+ #: settings.php:1916
3505
  msgid "Enable widget for this block"
3506
  msgstr ""
3507
 
3508
+ #: settings.php:1928
3509
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3510
  msgstr ""
3511
 
3512
+ #: settings.php:1929 settings.php:4274
3513
  msgid "Shortcode"
3514
  msgstr ""
3515
 
3516
+ #: settings.php:1944
3517
  msgid ""
3518
  "Enable PHP function call to insert this block at any position in theme file. "
3519
  "If function is disabled for block it will return empty string."
3520
  msgstr ""
3521
 
3522
+ #: settings.php:1945
3523
  msgid "PHP function"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:1960
3527
  msgid "Client-side device detection"
3528
  msgstr ""
3529
 
3530
+ #: settings.php:1961
3531
  msgid "Server-side device detection"
3532
  msgstr ""
3533
 
3534
+ #: settings.php:1968
3535
  msgid "Use client-side detection to"
3536
  msgstr ""
3537
 
3538
+ #: settings.php:1970
3539
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3540
  msgstr ""
3541
 
3542
  #. Translators: only on (the following devices): viewport names (devices)
3543
  #. listed
3544
+ #: settings.php:1975
3545
  msgid "only on"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:2003
3549
  msgid "Device min width %s px"
3550
  msgstr ""
3551
 
3552
+ #: settings.php:2029
3553
  msgid "Use server-side detection to insert block only for"
3554
  msgstr ""
3555
 
3556
+ #: settings.php:2048
3557
  msgid "Filter"
3558
  msgstr ""
3559
 
3560
+ #: settings.php:2049
3561
  msgid "Word Count"
3562
  msgstr ""
3563
 
3564
+ #: settings.php:2050 settings.php:4264
3565
  msgid "Scheduling"
3566
  msgstr ""
3567
 
3568
+ #: settings.php:2051
3569
  msgid "Display"
3570
  msgstr ""
3571
 
3572
+ #: settings.php:2053 settings.php:2315
3573
  msgid "General"
3574
  msgstr ""
3575
 
3576
+ #: settings.php:2065
3577
  msgid "Old settings for AMP pages detected"
3578
  msgstr ""
3579
 
3580
+ #: settings.php:2065
3581
  msgid ""
3582
  "To insert different codes on normal and AMP pages separate them with "
3583
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3584
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3585
  msgstr ""
3586
 
3587
+ #: settings.php:2065
3588
  msgid "AMP pages"
3589
  msgstr ""
3590
 
3591
+ #: settings.php:2070
3592
  msgid "Enable insertion for Ajax requests"
3593
  msgstr ""
3594
 
3595
+ #: settings.php:2070
3596
  msgid "Ajax requests"
3597
  msgstr ""
3598
 
3599
+ #: settings.php:2075
3600
  msgid "Enable insertion in RSS feeds"
3601
  msgstr ""
3602
 
3603
+ #: settings.php:2075
3604
  msgid "RSS Feed"
3605
  msgstr ""
3606
 
3607
+ #: settings.php:2080
3608
  msgid "Enable insertion on page for Error 404: Page not found"
3609
  msgstr ""
3610
 
3611
+ #: settings.php:2080
3612
  msgid "Error 404 page"
3613
  msgstr ""
3614
 
3615
+ #: settings.php:2092
3616
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3617
  msgstr ""
3618
 
3619
+ #: settings.php:2093
3620
  msgid "insertions"
3621
  msgstr ""
3622
 
3623
+ #: settings.php:2095
3624
  msgid ""
3625
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3626
  "General)"
3627
  msgstr ""
3628
 
3629
+ #: settings.php:2098 settings.php:2495
3630
  msgid "Max blocks per page"
3631
  msgstr ""
3632
 
3633
+ #: settings.php:2110
3634
  msgid "Insert for"
3635
  msgstr ""
3636
 
3637
+ #: settings.php:2118
3638
  msgid ""
3639
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3640
  "currently active). Might speed up insertion on content pages when "
3641
  "the_content filter is called multiple times."
3642
  msgstr ""
3643
 
3644
+ #: settings.php:2121
3645
  msgid "Insert only in the loop"
3646
  msgstr ""
3647
 
3648
+ #: settings.php:2127
3649
  msgid ""
3650
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3651
  msgstr ""
3652
 
3653
+ #: settings.php:2127
3654
  msgid "Disable caching"
3655
  msgstr ""
3656
 
3657
+ #: settings.php:2139
3658
  msgid "Filter insertions"
3659
  msgstr ""
3660
 
3661
+ #: settings.php:2142
3662
  msgid ""
3663
  "Filter multiple insertions by specifying wanted insertions for this block - "
3664
  "single number, comma separated numbers or %N for every N insertions - empty "
3666
  "using only one insertion type."
3667
  msgstr ""
3668
 
3669
+ #: settings.php:2145
3670
  msgid "using"
3671
  msgstr ""
3672
 
3673
+ #: settings.php:2164
3674
  msgid "Checked means specified calls are unwanted"
3675
  msgstr ""
3676
 
3677
+ #: settings.php:2164
3678
  msgid "Invert filter"
3679
  msgstr ""
3680
 
3681
+ #: settings.php:2171
3682
  msgid "Minimum number of post/static page words, leave empty for no limit"
3683
  msgstr ""
3684
 
3685
+ #: settings.php:2173
3686
  msgid "Maximum number of post/static page words, leave empty for no limit"
3687
  msgstr ""
3688
 
3689
+ #: settings.php:2186
3690
  msgid "for"
3691
  msgstr ""
3692
 
3693
+ #: settings.php:2186
3694
  msgid "days after publishing"
3695
  msgstr ""
3696
 
3697
+ #: settings.php:2188
3698
  msgid "Not available"
3699
  msgstr ""
3700
 
3701
+ #: settings.php:2201 settings.php:2487
3702
  msgid "Ad label"
3703
  msgstr ""
3704
 
3705
+ #: settings.php:2221
3706
  msgid "General tag"
3707
  msgstr ""
3708
 
3709
+ #: settings.php:2225
3710
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3711
  msgstr ""
3712
 
3713
  #. translators: %s: HTML tags
3714
+ #: settings.php:2234
3715
  msgid ""
3716
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3717
  "client-side device detection!"
3718
  msgstr ""
3719
 
3720
  #. translators: %s: HTML tags for text and link
3721
+ #: settings.php:2248
3722
  msgid ""
3723
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3724
  "side %s insertion. Use %s Server-side %s insertion."
3725
  msgstr ""
3726
 
3727
+ #: settings.php:2264
3728
  msgid "Settings"
3729
  msgstr ""
3730
 
3731
+ #: settings.php:2267
3732
  msgid "Settings timestamp"
3733
  msgstr ""
3734
 
3735
+ #: settings.php:2280
3736
  msgid "Are you sure you want to reset all settings?"
3737
  msgstr ""
3738
 
3739
+ #: settings.php:2280
3740
  msgid "Reset All Settings"
3741
  msgstr ""
3742
 
3743
+ #: settings.php:2316
3744
  msgid "Viewports"
3745
  msgstr ""
3746
 
3747
+ #: settings.php:2317
3748
  msgid "Hooks"
3749
  msgstr ""
3750
 
3751
+ #: settings.php:2318
3752
  msgid "Header"
3753
  msgstr ""
3754
 
3755
+ #: settings.php:2319 strings.php:30
3756
  msgid "Footer"
3757
  msgstr ""
3758
 
3759
+ #: settings.php:2324
3760
  msgid "Debugging"
3761
  msgstr ""
3762
 
3763
+ #: settings.php:2334
3764
  msgid "Plugin priority"
3765
  msgstr ""
3766
 
3767
+ #: settings.php:2342
3768
  msgid "Output buffering"
3769
  msgstr ""
3770
 
3771
+ #: settings.php:2345
3772
  msgid "Needed for position Above header but may not work with all themes"
3773
  msgstr ""
3774
 
3775
+ #: settings.php:2353
3776
  msgid "Syntax highlighting theme"
3777
  msgstr ""
3778
 
3779
+ #: settings.php:2360
3780
  msgctxt "no syntax highlighting themes"
3781
  msgid "None"
3782
  msgstr ""
3783
 
3784
+ #: settings.php:2361
3785
  msgid "No Syntax Highlighting"
3786
  msgstr ""
3787
 
3788
+ #: settings.php:2363
3789
  msgctxt "syntax highlighting themes"
3790
  msgid "Light"
3791
  msgstr ""
3792
 
3793
+ #: settings.php:2378
3794
  msgctxt "syntax highlighting themes"
3795
  msgid "Dark"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:2404
3799
  msgid "Min. user role for ind. exceptions editing"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:2414
3803
  msgid "Disable caching for logged in administrators"
3804
  msgstr ""
3805
 
3806
+ #: settings.php:2417
3807
  msgid ""
3808
  "Enabled means that logged in administrators will see non-cached (live) pages "
3809
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3810
  msgstr ""
3811
 
3812
+ #: settings.php:2425
3813
  msgid "Wait for jQuery"
3814
  msgstr ""
3815
 
3816
+ #: settings.php:2428
3817
  msgid ""
3818
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3819
  "it will run the scripts that may need it"
3820
  msgstr ""
3821
 
3822
+ #: settings.php:2436
3823
  msgid "Sticky widget mode"
3824
  msgstr ""
3825
 
3826
+ #: settings.php:2439
3827
  msgid ""
3828
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3829
  "mode works with most themes but may reload ads on page load."
3830
  msgstr ""
3831
 
3832
+ #: settings.php:2447
3833
  msgid "Sticky widget top margin"
3834
  msgstr ""
3835
 
3836
+ #: settings.php:2455
3837
  msgid "Dynamic blocks"
3838
  msgstr ""
3839
 
3840
+ #: settings.php:2468
3841
  msgid "Functions for paragraph counting"
3842
  msgstr ""
3843
 
3844
+ #: settings.php:2471
3845
  msgid ""
3846
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3847
  "functions if paragraphs are not counted properly on non-english pages."
3848
  msgstr ""
3849
 
3850
+ #: settings.php:2479
3851
  msgid "No paragraph counting inside"
3852
  msgstr ""
3853
 
3854
+ #: settings.php:2490
3855
  msgid "Label text or HTML code"
3856
  msgstr ""
3857
 
3858
+ #: settings.php:2498
3859
  msgid ""
3860
  "Maximum number of inserted blocks per page. You need to enable Max page "
3861
  "insertions (button Misc / tab Insertion) to count block for this limit."
3862
  msgstr ""
3863
 
3864
+ #: settings.php:2512
3865
  msgid "Plugin usage tracking"
3866
  msgstr ""
3867
 
3868
  #. translators: %s: Ad Inserter
3869
+ #: settings.php:2515
3870
  msgid ""
3871
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3872
  "Only information regarding the WordPress environment and %s usage is "
3873
  "recorded (once per month and on events like plugin activation/deactivation)."
3874
  msgstr ""
3875
 
3876
+ #: settings.php:2533
3877
  msgid "CSS class name for the wrapping div"
3878
  msgstr ""
3879
 
3880
+ #: settings.php:2533
3881
  msgid "Block class name"
3882
  msgstr ""
3883
 
3884
+ #: settings.php:2539
3885
  msgid "Include block number class"
3886
  msgstr ""
3887
 
3888
+ #: settings.php:2539
3889
  msgid "Block number class"
3890
  msgstr ""
3891
 
3892
+ #: settings.php:2544
3893
  msgid "Include block name class"
3894
  msgstr ""
3895
 
3896
+ #: settings.php:2544
3897
  msgid "Block name class"
3898
  msgstr ""
3899
 
3900
+ #: settings.php:2549
3901
  msgid ""
3902
  "Instead of alignment classes generate inline alignment styles for blocks"
3903
  msgstr ""
3904
 
3905
+ #: settings.php:2549
3906
  msgid "Inline styles"
3907
  msgstr ""
3908
 
3909
+ #: settings.php:2555
3910
  msgid "Preview of the block wrapping code"
3911
  msgstr ""
3912
 
3913
+ #: settings.php:2556
3914
  msgid "Wrapping div"
3915
  msgstr ""
3916
 
3917
+ #: settings.php:2557 settings.php:2997
3918
  msgid "BLOCK CODE"
3919
  msgstr ""
3920
 
3921
+ #: settings.php:2565
3922
  msgid "Viewport Settings used for client-side device detection"
3923
  msgstr ""
3924
 
3925
  #. Translators: %d: viewport number
3926
+ #: settings.php:2573
3927
  msgid "Viewport %d name"
3928
  msgstr ""
3929
 
3930
+ #: settings.php:2576
3931
  msgid "min width"
3932
  msgstr ""
3933
 
3934
+ #: settings.php:2587
3935
  msgid "Custom Hooks"
3936
  msgstr ""
3937
 
3938
+ #: settings.php:2599 settings.php:2602
3939
  msgid "Enable hook"
3940
  msgstr ""
3941
 
3942
  #. translators: %d: hook number
3943
+ #: settings.php:2602
3944
  msgid "Hook %d name"
3945
  msgstr ""
3946
 
3947
+ #: settings.php:2605
3948
  msgid "Hook name for automatic insertion selection"
3949
  msgstr ""
3950
 
3951
+ #: settings.php:2608
3952
  msgid "action"
3953
  msgstr ""
3954
 
3955
+ #: settings.php:2611
3956
  msgid "Action name as used in the do_action () function"
3957
  msgstr ""
3958
 
3959
+ #: settings.php:2614
3960
  msgid "priority"
3961
  msgstr ""
3962
 
3963
+ #: settings.php:2617
3964
  msgid "Priority for the hook (default is 10)"
3965
  msgstr ""
3966
 
3967
+ #: settings.php:2638
3968
  msgid "Enable insertion of this code into HTML page header"
3969
  msgstr ""
3970
 
3971
+ #: settings.php:2642 settings.php:2709 settings.php:2891
3972
  msgid "Process PHP code"
3973
  msgstr ""
3974
 
3975
+ #: settings.php:2646
3976
  msgid "HTML Page Header Code"
3977
  msgstr ""
3978
 
3979
+ #: settings.php:2654
3980
  msgid "Code in the %s section of the HTML page"
3981
  msgstr ""
3982
 
3983
+ #: settings.php:2655
3984
  msgctxt "code in the header"
3985
  msgid "NOT ENABLED"
3986
  msgstr ""
3987
 
3988
+ #: settings.php:2672 settings.php:2740
3989
  msgid "Use server-side detection to insert code only for"
3990
  msgstr ""
3991
 
3992
+ #: settings.php:2687
3993
  msgid ""
3994
  "Enable insertion of this code into HTML page header on page for Error 404: "
3995
  "Page not found"
3996
  msgstr ""
3997
 
3998
+ #: settings.php:2687 settings.php:2755
3999
  msgid "Insert on Error 404 page"
4000
  msgstr ""
4001
 
4002
+ #: settings.php:2705
4003
  msgid "Enable insertion of this code into HTML page footer"
4004
  msgstr ""
4005
 
4006
+ #: settings.php:2713
4007
  msgid "HTML Page Footer Code"
4008
  msgstr ""
4009
 
4010
  #. translators: %s: HTML tags
4011
+ #: settings.php:2721
4012
  msgid "Code before the %s tag of the the HTML page"
4013
  msgstr ""
4014
 
4015
+ #: settings.php:2722
4016
  msgctxt "code in the footer"
4017
  msgid "NOT ENABLED"
4018
  msgstr ""
4019
 
4020
+ #: settings.php:2755
4021
  msgid ""
4022
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4023
  "Page not found"
4024
  msgstr ""
4025
 
4026
+ #: settings.php:2771
4027
  msgid "Code for ad blocking detection inserted. Click for details."
4028
  msgstr ""
4029
 
4030
+ #: settings.php:2776
4031
  msgid "Enable detection of ad blocking"
4032
  msgstr ""
4033
 
4034
+ #: settings.php:2794
4035
  msgid "Global action when ad blocking is detected"
4036
  msgstr ""
4037
 
4038
+ #: settings.php:2800
4039
  msgid "No action for"
4040
  msgstr ""
4041
 
4042
+ #: settings.php:2801
4043
  msgid "Exceptions for global action when ad blocking is detected."
4044
  msgstr ""
4045
 
4046
+ #: settings.php:2811
4047
  msgid "Delay Action"
4048
  msgstr ""
4049
 
4050
+ #: settings.php:2814
4051
  msgid ""
4052
  "Number of page views to delay action when ad blocking is detected. Leave "
4053
  "empty for no delay (action fires on first page view). Sets cookie."
4054
  msgstr ""
4055
 
4056
+ #: settings.php:2814
4057
  msgctxt "Delay Action for x "
4058
  msgid "page views"
4059
  msgstr ""
4060
 
4061
+ #: settings.php:2819
4062
  msgid "No Action Period"
4063
  msgstr ""
4064
 
4065
+ #: settings.php:2822
4066
  msgid ""
4067
  "Number of days to supress action when ad blocking is detected. Leave empty "
4068
  "for no no-action period (action fires always after defined page view delay). "
4069
  "Sets cookie."
4070
  msgstr ""
4071
 
4072
+ #: settings.php:2822
4073
  msgctxt "no action period"
4074
  msgid "days"
4075
  msgstr ""
4076
 
4077
+ #: settings.php:2827
4078
  msgid "Custom Selectors"
4079
  msgstr ""
4080
 
4081
+ #: settings.php:2830
4082
  msgid ""
4083
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4084
  "blocking detection. Invisible element or element with zero height means ad "
4085
  "blocking is present."
4086
  msgstr ""
4087
 
4088
+ #: settings.php:2842
4089
  msgid "Redirection Page"
4090
  msgstr ""
4091
 
4092
+ #: settings.php:2854
4093
  msgid "Custom Url"
4094
  msgstr ""
4095
 
4096
+ #: settings.php:2859
4097
  msgid ""
4098
  "Static page for redirection when ad blocking is detected. For other pages "
4099
  "select Custom url and set it below."
4100
  msgstr ""
4101
 
4102
+ #: settings.php:2868
4103
  msgid "Custom Redirection Url"
4104
  msgstr ""
4105
 
4106
+ #: settings.php:2880
4107
  msgid "Message HTML code"
4108
  msgstr ""
4109
 
4110
+ #: settings.php:2893
4111
  msgid "Preview message when ad blocking is detected"
4112
  msgstr ""
4113
 
4114
+ #: settings.php:2922
4115
  msgid "Prevent visitors from closing the warning message"
4116
  msgstr ""
4117
 
4118
+ #: settings.php:2922
4119
  msgid "Undismissible Message"
4120
  msgstr ""
4121
 
4122
+ #: settings.php:2928
4123
  msgid "Not undismissible for"
4124
  msgstr ""
4125
 
4126
+ #: settings.php:2929
4127
  msgid "Users which can close the warning message."
4128
  msgstr ""
4129
 
4130
+ #: settings.php:2943
4131
  msgid ""
4132
  "Force showing admin toolbar for administrators when viewing site. Enable "
4133
  "this option when you are logged in as admin and you don't see admin toolbar."
4134
  msgstr ""
4135
 
4136
+ #: settings.php:2951
4137
  msgid "Disable header code (Header tab)"
4138
  msgstr ""
4139
 
4140
+ #: settings.php:2955
4141
  msgid "Disable footer code (Footer tab)"
4142
  msgstr ""
4143
 
4144
  #. translators: %s: Ad Inserter
4145
+ #: settings.php:2959
4146
  msgid "Disable %s JavaScript code"
4147
  msgstr ""
4148
 
4149
  #. translators: %s: Ad Inserter
4150
+ #: settings.php:2963
4151
  msgid "Disable %s CSS code"
4152
  msgstr ""
4153
 
4154
+ #: settings.php:2967
4155
  msgid ""
4156
  "Disable PHP code processing (in all blocks including header and footer code)"
4157
  msgstr ""
4158
 
4159
+ #: settings.php:2971
4160
  msgid "Disable insertion of all blocks"
4161
  msgstr ""
4162
 
4163
+ #: settings.php:2975
4164
  msgid "Disable insertions"
4165
  msgstr ""
4166
 
4167
  #. translators: %s: Ad Inserter
4168
+ #: settings.php:2987
4169
  msgid "%s CSS CODE"
4170
  msgstr ""
4171
 
4172
+ #: settings.php:2990
4173
  msgid "HEADER CODE"
4174
  msgstr ""
4175
 
4176
  #. translators: %s: PHP tags
4177
+ #: settings.php:2996
4178
  msgid "BLOCK PHP CODE"
4179
  msgstr ""
4180
 
4181
  #. translators: %s: Ad Inserter
4182
+ #: settings.php:3002
4183
  msgid "%s JS CODE"
4184
  msgstr ""
4185
 
4186
+ #: settings.php:3005
4187
  msgid "FOOTER CODE"
4188
  msgstr ""
4189
 
4190
+ #: settings.php:3014
4191
  msgid "Force showing admin toolbar when viewing site"
4192
  msgstr ""
4193
 
4194
+ #: settings.php:3021
4195
  msgid "Enable debugging functions in admin toolbar"
4196
  msgstr ""
4197
 
4198
+ #: settings.php:3023
4199
  msgid "Debugging functions in admin toolbar"
4200
  msgstr ""
4201
 
4202
+ #: settings.php:3030
4203
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4204
  msgstr ""
4205
 
4206
+ #: settings.php:3032
4207
  msgid "Debugging functions on mobile screens"
4208
  msgstr ""
4209
 
4210
+ #: settings.php:3039
4211
  msgid ""
4212
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4213
  "tags, processing) by url parameters for non-logged in users. Enable this "
4216
  "administrators debugging is always enabled."
4217
  msgstr ""
4218
 
4219
+ #: settings.php:3041
4220
  msgid "Remote debugging"
4221
  msgstr ""
4222
 
4223
+ #: settings.php:3048
4224
  msgid ""
4225
  "Disable translation to see original texts for the settings and messages in "
4226
  "English"
4227
  msgstr ""
4228
 
4229
+ #: settings.php:3050
4230
  msgid "Disable translation"
4231
  msgstr ""
4232
 
4233
+ #: settings.php:3420
4234
  msgid "Available positions for current theme"
4235
  msgstr ""
4236
 
4237
+ #: settings.php:3421
4238
  msgid "Error checking pages"
4239
  msgstr ""
4240
 
4241
+ #: settings.php:3424
4242
  msgid "Toggle theme checker for available positions for automatic insertion"
4243
  msgstr ""
4244
 
4245
+ #: settings.php:3424
4246
  msgctxt "Button"
4247
  msgid "Check"
4248
  msgstr ""
4249
 
4250
+ #: settings.php:3431
4251
  msgid "Position"
4252
  msgstr ""
4253
 
4254
+ #: settings.php:3436
4255
  msgid "Archive pages"
4256
  msgstr ""
4257
 
4258
+ #: settings.php:3495
4259
  msgid ""
4260
  "Position not available because output buffering (tab [*]) is not enabled"
4261
  msgstr ""
4262
 
4263
+ #: settings.php:3498 strings.php:231
4264
  msgid "Position not checked yet"
4265
  msgstr ""
4266
 
4267
+ #: settings.php:3534
4268
  msgid "Toggle active/all blocks"
4269
  msgstr ""
4270
 
4271
+ #: settings.php:3538 strings.php:218
4272
  msgid "Rearrange block order"
4273
  msgstr ""
4274
 
4275
+ #: settings.php:3543
4276
  msgid "Save new block order"
4277
  msgstr ""
4278
 
4279
+ #: settings.php:3569
4280
  msgid "Toggle active/all ad units"
4281
  msgstr ""
4282
 
4283
+ #: settings.php:3573
4284
  msgid "Reload AdSense ad units"
4285
  msgstr ""
4286
 
4287
+ #: settings.php:3577
4288
  msgid "Clear authorization to access AdSense account"
4289
  msgstr ""
4290
 
4291
+ #: settings.php:3581 settings.php:4431 settings.php:4498 strings.php:226
4292
  msgid "Google AdSense Homepage"
4293
  msgstr ""
4294
 
4295
+ #: settings.php:3597
4296
  msgid "Switch to physical ads.txt file"
4297
  msgstr ""
4298
 
4299
+ #: settings.php:3598
4300
  msgid "Switch to virtual ads.txt file"
4301
  msgstr ""
4302
 
4303
  #. translators: %s: ads.txt
4304
+ #: settings.php:3608
4305
  msgid "Open %s"
4306
  msgstr ""
4307
 
4308
+ #: settings.php:3616
4309
  msgid "Reload ads.txt file"
4310
  msgstr ""
4311
 
4312
+ #: settings.php:3620 settings.php:4558
4313
  msgid "Save"
4314
  msgstr ""
4315
 
4316
  #. translators: %s: Ad Inserter
4317
+ #: settings.php:3795
4318
  msgid "ads.txt file: %s virtual ads.txt file"
4319
  msgstr ""
4320
 
4321
+ #: settings.php:3800 settings.php:3820 strings.php:210
4322
  msgid "Warning"
4323
  msgstr ""
4324
 
4325
  #. translators: %s: Ad Inserter
4326
+ #: settings.php:3800
4327
  msgid "%s virtual file ads.txt not found"
4328
  msgstr ""
4329
 
4330
+ #: settings.php:3808
4331
  msgid "IMPORTANT"
4332
  msgstr ""
4333
 
4334
+ #: settings.php:3808
4335
  msgid "ads.txt file must be placed on the root domain"
4336
  msgstr ""
4337
 
4338
+ #: settings.php:3813
4339
  msgid "ads.txt file"
4340
  msgstr ""
4341
 
4342
+ #: settings.php:3813
4343
  msgid "NOT WRITABLE"
4344
  msgstr ""
4345
 
4346
+ #: settings.php:3820
4347
  msgid "file %s not found"
4348
  msgstr ""
4349
 
4350
+ #: settings.php:3830
4351
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4352
  msgstr ""
4353
 
4354
  #. translators: %s: Ad Inserter
4355
+ #: settings.php:3836
4356
  msgid "%s virtual ads.txt file"
4357
  msgstr ""
4358
 
4359
+ #: settings.php:3858
4360
  msgid "Advertising system"
4361
  msgstr ""
4362
 
4363
+ #: settings.php:3859
4364
  msgid "Account ID"
4365
  msgstr ""
4366
 
4367
+ #: settings.php:3861
4368
  msgid "Certification authority ID"
4369
  msgstr ""
4370
 
4371
+ #: settings.php:3876
4372
  msgid "Account ID found in block and present in ads.txt"
4373
  msgstr ""
4374
 
4375
+ #: settings.php:3880
4376
  msgid "Account ID found in block but not present in ads.txt"
4377
  msgstr ""
4378
 
4379
+ #: settings.php:4214
4380
  msgid "Preview block"
4381
  msgstr ""
4382
 
4383
+ #: settings.php:4221
4384
  msgid "Pause block"
4385
  msgstr ""
4386
 
4387
+ #: settings.php:4260
4388
  msgid "Automatic insertion"
4389
  msgstr ""
4390
 
4391
  #. translators: %s HTML tags
4392
+ #: settings.php:4261 settings.php:5229
4393
  msgid "PHP code processing"
4394
  msgstr ""
4395
 
4396
+ #: settings.php:4263
4397
  msgid "Device detection"
4398
  msgstr ""
4399
 
4400
+ #: settings.php:4286
4401
  msgid "No active block"
4402
  msgstr ""
4403
 
4404
+ #: settings.php:4287
4405
  msgid "No block matches search keywords"
4406
  msgstr ""
4407
 
4408
+ #: settings.php:4342
4409
  msgid "Ad unit"
4410
  msgstr ""
4411
 
4412
+ #: settings.php:4344
4413
  msgid "Slot ID"
4414
  msgstr ""
4415
 
4416
+ #: settings.php:4370
4417
  msgid "Copy AdSense code"
4418
  msgstr ""
4419
 
4420
+ #: settings.php:4373
4421
  msgid "Preview AdSense ad"
4422
  msgstr ""
4423
 
4424
+ #: settings.php:4376
4425
  msgid "Get AdSense code"
4426
  msgstr ""
4427
 
4428
  #. translators: %s: HTML tags
4429
+ #: settings.php:4408
4430
  msgid ""
4431
  "Please %s clear authorization %s with the button %s above and once again "
4432
  "authorize access to your AdSense account."
4433
  msgstr ""
4434
 
4435
+ #: settings.php:4427
4436
  msgid "AdSense Integration"
4437
  msgstr ""
4438
 
4439
+ #: settings.php:4429
4440
  msgid "AdSense Integration - Step 2"
4441
  msgstr ""
4442
 
4443
  #. translators: %s: HTML tags
4444
+ #: settings.php:4435
4445
  msgid ""
4446
  "Authorize %s to access your AdSense account. Click on the %s Get "
4447
  "Authorization Code %s button to open a new window where you can allow "
4450
  msgstr ""
4451
 
4452
  #. translators: %s: HTML tags
4453
+ #: settings.php:4442
4454
  msgid ""
4455
  "If you get error, can't access ad units or would like to use own Google API "
4456
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4458
  msgstr ""
4459
 
4460
  #. translators: %s: HTML tags
4461
+ #: settings.php:4444
4462
  msgid ""
4463
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4464
  "Authorization Code %s button to open a new window where you can allow "
4467
  msgstr ""
4468
 
4469
  #. translators: %s: HTML tags
4470
+ #: settings.php:4451
4471
  msgid ""
4472
  "If you get error %s invalid client %s click on the button %s Clear and "
4473
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4474
  msgstr ""
4475
 
4476
+ #: settings.php:4462
4477
  msgid "Get Authorization Code"
4478
  msgstr ""
4479
 
4480
+ #: settings.php:4465
4481
  msgid "Enter Authorization Code"
4482
  msgstr ""
4483
 
4484
+ #: settings.php:4475
4485
  msgid "Use own API IDs"
4486
  msgstr ""
4487
 
4488
+ #: settings.php:4477
4489
  msgid "Clear and return to Step 1"
4490
  msgstr ""
4491
 
4492
+ #: settings.php:4481
4493
  msgid "Authorize"
4494
  msgstr ""
4495
 
4496
+ #: settings.php:4497
4497
  msgid "AdSense Integration - Step 1"
4498
  msgstr ""
4499
 
4500
  #. translators: %s: Ad Inserter
4501
+ #: settings.php:4501
4502
  msgid ""
4503
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4504
  "To do this you need to authorize %s to access your AdSense account. The "
4507
  msgstr ""
4508
 
4509
  #. translators: %s: HTML tags
4510
+ #: settings.php:4510
4511
  msgid "Go to %s Google APIs and Services console %s"
4512
  msgstr ""
4513
 
4514
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4515
+ #: settings.php:4511
4516
  msgid ""
4517
  "Create %1$s project - if the project and IDs are already created click on "
4518
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4519
  msgstr ""
4520
 
4521
  #. translators: %s: HTML tags
4522
+ #: settings.php:4512
4523
  msgid ""
4524
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4525
  "create a new project"
4526
  msgstr ""
4527
 
4528
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4529
+ #: settings.php:4513
4530
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4531
  msgstr ""
4532
 
4533
  #. translators: %s: HTML tags
4534
+ #: settings.php:4514
4535
  msgid ""
4536
  "Click on project selection, wait for the project to be created and then and "
4537
  "select %s as the current project"
4538
  msgstr ""
4539
 
4540
  #. translators: %s: HTML tags
4541
+ #: settings.php:4515
4542
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4543
  msgstr ""
4544
 
4545
  #. translators: %s: HTML tags
4546
+ #: settings.php:4516
4547
  msgid "Search for adsense and enable %s"
4548
  msgstr ""
4549
 
4550
  #. translators: %s: HTML tags
4551
+ #: settings.php:4517
4552
  msgid "Click on %s CREATE CREDENTIALS %s"
4553
  msgstr ""
4554
 
4555
  #. translators: %s: HTML tags
4556
+ #: settings.php:4518
4557
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4558
  msgstr ""
4559
 
4560
  #. translators: %s: HTML tags
4561
+ #: settings.php:4519
4562
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4563
  msgstr ""
4564
 
4565
  #. translators: %s: HTML tags
4566
+ #: settings.php:4520
4567
  msgid "Click on %s What credentials do I need? %s"
4568
  msgstr ""
4569
 
4570
  #. translators: %s: HTML tags
4571
+ #: settings.php:4521
4572
  msgid ""
4573
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4574
  "Ad Inserter client %s"
4575
  msgstr ""
4576
 
4577
  #. translators: %s: HTML tags
4578
+ #: settings.php:4522
4579
  msgid ""
4580
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4581
  "enter %s"
4582
  msgstr ""
4583
 
4584
  #. translators: %s: HTML tags
4585
+ #: settings.php:4523
4586
  msgid "Click on %s Continue %s"
4587
  msgstr ""
4588
 
4589
  #. translators: %s: HTML tags
4590
+ #: settings.php:4524
4591
  msgid "Click on %s Done %s"
4592
  msgstr ""
4593
 
4594
  #. translators: %s: HTML tags
4595
+ #: settings.php:4525
4596
  msgid ""
4597
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4598
  "secret %s"
4599
  msgstr ""
4600
 
4601
+ #: settings.php:4526
4602
  msgid "Copy them to the appropriate fields below"
4603
  msgstr ""
4604
 
4605
+ #: settings.php:4532
4606
  msgid "Client ID"
4607
  msgstr ""
4608
 
4609
+ #: settings.php:4535
4610
  msgid "Enter Client ID"
4611
  msgstr ""
4612
 
4613
+ #: settings.php:4540
4614
  msgid "Client secret"
4615
  msgstr ""
4616
 
4617
+ #: settings.php:4543
4618
  msgid "Enter Client secret"
4619
  msgstr ""
4620
 
4621
+ #: settings.php:4553
4622
  msgid "Use default API IDs"
4623
  msgstr ""
4624
 
4625
+ #: settings.php:4717
4626
  msgid "All posts"
4627
  msgstr ""
4628
 
4629
+ #: settings.php:4718
4630
  msgid "All static pages"
4631
  msgstr ""
4632
 
4633
+ #: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
4634
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4635
  msgstr ""
4636
 
4637
+ #: settings.php:4878 settings.php:4891 settings.php:4905 settings.php:4921
4638
+ #: settings.php:5120 settings.php:5122 settings.php:5138 settings.php:5143
4639
+ #: settings.php:5151 settings.php:5152 settings.php:5155 settings.php:5161
4640
+ #: settings.php:5171 settings.php:5175
4641
  msgid "Looking for AdSense alternative?"
4642
  msgstr ""
4643
 
4644
+ #: settings.php:4933
4645
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4646
  msgstr ""
4647
 
4648
+ #: settings.php:4938 settings.php:5117 settings.php:5130 settings.php:5158
4649
+ #: settings.php:5184
4650
  msgid "Use Infolinks ads with Adsense to earn more"
4651
  msgstr ""
4652
 
4653
+ #: settings.php:4959 settings.php:5009
4654
  msgid "Support plugin development"
4655
  msgstr ""
4656
 
4657
+ #: settings.php:4964 settings.php:5010
4658
  msgid ""
4659
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4660
  "reviewing the plugin on WordPres"
4661
  msgstr ""
4662
 
4663
+ #: settings.php:4964
4664
  msgctxt "Review Ad Inserter"
4665
  msgid "Review"
4666
  msgstr ""
4667
 
4668
+ #: settings.php:4969
4669
  msgid ""
4670
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4671
  "rating the plugin on WordPres"
4672
  msgstr ""
4673
 
4674
+ #: settings.php:4969
4675
  msgctxt "Rate Ad Inserter"
4676
  msgid "Rate"
4677
  msgstr ""
4678
 
4679
+ #: settings.php:4974
4680
  msgid ""
4681
  "Support free Ad Inserter development. If you are making money with Ad "
4682
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4683
  "you!"
4684
  msgstr ""
4685
 
4686
+ #: settings.php:4974
4687
  msgid "Donate"
4688
  msgstr ""
4689
 
4690
+ #: settings.php:4981 settings.php:5025
4691
  msgid "Average rating of the plugin - Thank you!"
4692
  msgstr ""
4693
 
4694
  #. translators: %s: Ad Inserter, HTML tags
4695
+ #: settings.php:4992
4696
  msgid ""
4697
  "You've been using %s for a while now, and I hope you're happy with it. "
4698
  "Positive %s reviews %s are a great way to show your appreciation for my "
4701
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4702
  msgstr ""
4703
 
4704
+ #: settings.php:5010
4705
  msgid "Review"
4706
  msgstr ""
4707
 
4708
+ #: settings.php:5014
4709
  msgid "Ad Inserter on Twitter"
4710
  msgstr ""
4711
 
4712
+ #: settings.php:5015
4713
  msgid "Ad Inserter on Facebook"
4714
  msgstr ""
4715
 
4716
+ #: settings.php:5018
4717
  msgid "Follow Ad Inserter"
4718
  msgstr ""
4719
 
4720
  #. translators: %s: HTML tags
4721
+ #: settings.php:5045
4722
  msgid ""
4723
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4724
  "and %s Common Settings %s pages"
4725
  msgstr ""
4726
 
4727
  #. translators: %s: HTML tags
4728
+ #: settings.php:5057
4729
  msgid ""
4730
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4731
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4733
  msgstr ""
4734
 
4735
  #. translators: %s: HTML tags
4736
+ #: settings.php:5078
4737
  msgid ""
4738
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4739
  "purchase you refer to us"
4740
  msgstr ""
4741
 
4742
  #. translators: %s: HTML tags
4743
+ #: settings.php:5085
4744
  msgid ""
4745
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4746
  "diagnose and fix the problem."
4747
  msgstr ""
4748
 
4749
  #. translators: %s: HTML tags
4750
+ #: settings.php:5089
4751
  msgid ""
4752
  "If you need any kind of help or support, please do not hesitate to open a "
4753
  "thread on the %s support forum. %s"
4754
  msgstr ""
4755
 
4756
+ #: settings.php:5115 settings.php:5179 settings.php:5183
4757
  msgid "Code preview with visual CSS editor"
4758
  msgstr ""
4759
 
4760
+ #: settings.php:5119 settings.php:5169
4761
  msgid "A/B testing - Track ad impressions and clicks"
4762
  msgstr ""
4763
 
4764
+ #: settings.php:5134
4765
  msgid "Insert ads on AMP pages"
4766
  msgstr ""
4767
 
4768
+ #: settings.php:5142
4769
  msgid "Ad blocking detection and content protection"
4770
  msgstr ""
4771
 
4772
+ #: settings.php:5192
4773
  msgid "Looking for Pro Ad Management plugin?"
4774
  msgstr ""
4775
 
4776
+ #: settings.php:5193
4777
  msgid "To Optimally Monetize your WordPress website?"
4778
  msgstr ""
4779
 
4780
  #. Translators: %s: price of Ad Inserter Pro
4781
+ #: settings.php:5194
4782
  msgid "Different license types starting from %s"
4783
  msgstr ""
4784
 
4785
  #. translators: %s HTML tags
4786
+ #: settings.php:5197
4787
  msgid "%s AdSense Integration %s"
4788
  msgstr ""
4789
 
4790
  #. translators: %s HTML tags
4791
+ #: settings.php:5198
4792
  msgid "Syntax highlighting %s editor %s"
4793
  msgstr ""
4794
 
4795
  #. translators: %s HTML tags
4796
+ #: settings.php:5199
4797
  msgid "%s Code preview %s with visual CSS editor"
4798
  msgstr ""
4799
 
4800
  #. translators: %s HTML tags
4801
+ #: settings.php:5200
4802
  msgid "Simple user interface - all settings on a single page"
4803
  msgstr ""
4804
 
4805
  #. translators: %s HTML tags
4806
+ #: settings.php:5201
4807
  msgid ""
4808
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4809
  "image / excerpt"
4810
  msgstr ""
4811
 
4812
  #. translators: %s HTML tags
4813
+ #: settings.php:5202
4814
  msgid "%s Automatic insertion %s between posts on blog pages"
4815
  msgstr ""
4816
 
4817
  #. translators: %s HTML tags
4818
+ #: settings.php:5203
4819
  msgid "%s Automatic insertion %s before, between and after comments"
4820
  msgstr ""
4821
 
4822
  #. translators: %s HTML tags
4823
+ #: settings.php:5204
4824
  msgid "%s Automatic insertion %s after %s or before %s tag"
4825
  msgstr ""
4826
 
4827
  #. translators: %s HTML tags
4828
+ #: settings.php:5205
4829
  msgid "Automatic insertion at %s custom hook positions %s"
4830
  msgstr ""
4831
 
4832
  #. translators: %s HTML tags
4833
+ #: settings.php:5206
4834
  msgid ""
4835
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4836
  "selectors)"
4837
  msgstr ""
4838
 
4839
  #. translators: %s HTML tags
4840
+ #: settings.php:5207
4841
  msgid "%s Insertion exceptions %s for individual posts and pages"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
+ #: settings.php:5208
4846
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
+ #: settings.php:5209
4851
  msgid ""
4852
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4853
  "scrolls)"
4854
  msgstr ""
4855
 
4856
  #. translators: %s HTML tags
4857
+ #: settings.php:5210
4858
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4859
  msgstr ""
4860
 
4861
  #. translators: %s HTML tags
4862
+ #: settings.php:5211
4863
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4864
  msgstr ""
4865
 
4866
  #. translators: %s HTML tags
4867
+ #: settings.php:5212
4868
  msgid ""
4869
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4870
  "visible)"
4871
  msgstr ""
4872
 
4873
  #. translators: %s HTML tags
4874
+ #: settings.php:5213
4875
  msgid ""
4876
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4877
  msgstr ""
4878
 
4879
  #. translators: %s HTML tags
4880
+ #: settings.php:5214
4881
  msgid "Block %s alignment and style %s customizations"
4882
  msgstr ""
4883
 
4884
  #. translators: %s HTML tags
4885
+ #: settings.php:5215
4886
  msgid ""
4887
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4888
  "TOS)"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
+ #: settings.php:5216
4893
  msgid ""
4894
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4895
  "feeds"
4896
  msgstr ""
4897
 
4898
  #. translators: %s HTML tags
4899
+ #: settings.php:5217
4900
  msgid "%s Ad rotation %s (works also with caching)"
4901
  msgstr ""
4902
 
4903
  #. translators: %s HTML tags
4904
+ #: settings.php:5218
4905
  msgid "Create, edit and check %s ads.txt %s file"
4906
  msgstr ""
4907
 
4908
  #. translators: %s HTML tags
4909
+ #: settings.php:5219
4910
  msgid ""
4911
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4912
  "AdSense)"
4913
  msgstr ""
4914
 
4915
  #. translators: %s HTML tags
4916
+ #: settings.php:5220
4917
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4918
  msgstr ""
4919
 
4920
  #. translators: %s HTML tags
4921
+ #: settings.php:5221
4922
  msgid "%s Public web reports %s for clients, export to PDF"
4923
  msgstr ""
4924
 
4925
  #. translators: %s HTML tags
4926
+ #: settings.php:5222
4927
  msgid "Support for %s A/B testing %s"
4928
  msgstr ""
4929
 
4930
  #. translators: %s HTML tags
4931
+ #: settings.php:5223
4932
  msgid "Frequency capping - %s limit impressions or clicks %s"
4933
  msgstr ""
4934
 
4935
  #. translators: %s HTML tags
4936
+ #: settings.php:5224
4937
  msgid "Click fraud %s protection %s"
4938
  msgstr ""
4939
 
4940
  #. translators: %s HTML tags
4941
+ #: settings.php:5225
4942
  msgid "Support for %s lazy loading %s"
4943
  msgstr ""
4944
 
4945
  #. translators: %s HTML tags
4946
+ #: settings.php:5226
4947
  msgid "Support for ads on %s AMP pages %s"
4948
  msgstr ""
4949
 
4950
  #. translators: %s HTML tags
4951
+ #: settings.php:5227
4952
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4953
  msgstr ""
4954
 
4955
  #. translators: %s HTML tags
4956
+ #: settings.php:5228
4957
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4958
  msgstr ""
4959
 
4960
  #. translators: %s HTML tags
4961
+ #: settings.php:5230
4962
  msgid "%s Banner %s code generator"
4963
  msgstr ""
4964
 
4965
  #. translators: %s HTML tags
4966
+ #: settings.php:5231
4967
  msgid "Support for %s header and footer %s code"
4968
  msgstr ""
4969
 
4970
  #. translators: %s HTML tags
4971
+ #: settings.php:5232
4972
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4973
  msgstr ""
4974
 
4975
  #. translators: %s HTML tags
4976
+ #: settings.php:5233
4977
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4978
  msgstr ""
4979
 
4980
  #. translators: %s HTML tags
4981
+ #: settings.php:5234
4982
  msgid "Client-side %s mobile device detection %s (works with caching)"
4983
  msgstr ""
4984
 
4985
  #. translators: %s HTML tags
4986
+ #: settings.php:5235
4987
  msgid ""
4988
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4989
  "protection"
4990
  msgstr ""
4991
 
4992
  #. translators: %s HTML tags
4993
+ #: settings.php:5236
4994
  msgid "%s Ad blocking statistics %s"
4995
  msgstr ""
4996
 
4997
  #. translators: %s HTML tags
4998
+ #: settings.php:5237
4999
  msgid ""
5000
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5001
  "referrers, operating systems, browsers"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
+ #: settings.php:5238
5006
  msgid ""
5007
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5008
  msgstr ""
5009
 
5010
  #. translators: %s HTML tags
5011
+ #: settings.php:5239
5012
  msgid "%s Multisite options %s to limit settings on the sites"
5013
  msgstr ""
5014
 
5015
  #. translators: %s HTML tags
5016
+ #: settings.php:5240
5017
  msgid "%s Import/Export %s block or plugin settings"
5018
  msgstr ""
5019
 
5020
  #. translators: %s HTML tags
5021
+ #: settings.php:5241
5022
  msgid "%s Insertion scheduling %s with fallback option"
5023
  msgstr ""
5024
 
5025
  #. translators: %s HTML tags
5026
+ #: settings.php:5242
5027
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5028
  msgstr ""
5029
 
5030
  #. translators: %s HTML tags
5031
+ #: settings.php:5243
5032
  msgid "Simple troubleshooting with many %s debugging functions %s"
5033
  msgstr ""
5034
 
5035
  #. translators: %s HTML tags
5036
+ #: settings.php:5244
5037
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5038
  msgstr ""
5039
 
5040
  #. translators: %s HTML tags
5041
+ #: settings.php:5245
5042
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5043
  msgstr ""
5044
 
5045
  #. translators: %s HTML tags
5046
+ #: settings.php:5246
5047
  msgid ""
5048
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5049
  msgstr ""
5050
 
5051
  #. translators: %s HTML tags
5052
+ #: settings.php:5247
5053
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5054
  msgstr ""
5055
 
5056
  #. translators: %s HTML tags
5057
+ #: settings.php:5248
5058
  msgid "No ads on the settings page"
5059
  msgstr ""
5060
 
5061
  #. translators: %s HTML tags
5062
+ #: settings.php:5249
5063
  msgid "Premium support"
5064
  msgstr ""
5065
 
5066
  #. translators: %s HTML tags
5067
+ #: settings.php:5252
5068
  msgid ""
5069
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5070
  "website with many advertising features to automatically insert adverts on "
5079
  msgstr ""
5080
 
5081
  #. translators: %s HTML tags
5082
+ #: settings.php:5265
5083
  msgid "Looking for %s Pro Ad Management plugin? %s"
5084
  msgstr ""
5085
 
5086
  #. translators: %s HTML tags
5087
+ #: settings.php:5270
5088
  msgid "Ads between posts"
5089
  msgstr ""
5090
 
5091
  #. translators: %s HTML tags
5092
+ #: settings.php:5271
5093
  msgid "Ads between comments"
5094
  msgstr ""
5095
 
5096
  #. translators: %s HTML tags
5097
+ #: settings.php:5272
5098
  msgid "Support via email"
5099
  msgstr ""
5100
 
5101
  #. translators: %s HTML tags
5102
+ #: settings.php:5278
5103
  msgid "%s Sticky positions %s"
5104
  msgstr ""
5105
 
5106
  #. translators: %s HTML tags
5107
+ #: settings.php:5279
5108
  msgid "%s Limit insertions %s"
5109
  msgstr ""
5110
 
5111
  #. translators: %s HTML tags
5112
+ #: settings.php:5280
5113
  msgid "%s Clearance %s options"
5114
  msgstr ""
5115
 
5116
  #. translators: %s HTML tags
5117
+ #: settings.php:5286
5118
  msgid "Ad rotation"
5119
  msgstr ""
5120
 
5121
  #. translators: %s HTML tags
5122
+ #: settings.php:5287
5123
  msgid "%s A/B testing %s"
5124
  msgstr ""
5125
 
5126
  #. translators: %s HTML tags
5127
+ #: settings.php:5288
5128
  msgid "%s Ad tracking %s"
5129
  msgstr ""
5130
 
5131
  #. translators: %s HTML tags
5132
+ #: settings.php:5294
5133
  msgid "Support for %s AMP pages %s"
5134
  msgstr ""
5135
 
5136
  #. translators: %s HTML tags
5137
+ #: settings.php:5295
5138
  msgid "%s Ad blocking detection %s"
5139
  msgstr ""
5140
 
5141
  #. translators: %s HTML tags
5142
+ #: settings.php:5296
5143
  msgid "%s Mobile device detection %s"
5144
  msgstr ""
5145
 
5146
  #. translators: %s HTML tags
5147
+ #: settings.php:5303
5148
  msgid "64 code blocks"
5149
  msgstr ""
5150
 
5151
  #. translators: %s HTML tags
5152
+ #: settings.php:5304
5153
  msgid "%s GEO targeting %s"
5154
  msgstr ""
5155
 
5156
  #. translators: %s HTML tags
5157
+ #: settings.php:5305
5158
  msgid "%s Scheduling %s"
5159
  msgstr ""
5160
 
5682
  msgstr ""
5683
 
5684
  #: strings.php:163
5685
+ msgctxt "Manual loading"
5686
+ msgid "Auto"
5687
  msgstr ""
5688
 
5689
  #: strings.php:164
5690
+ msgctxt "Manual loading"
5691
+ msgid "Always"
5692
+ msgstr ""
5693
+
5694
+ #: strings.php:166
5695
+ msgid "Top right"
5696
+ msgstr ""
5697
+
5698
+ #: strings.php:167
5699
  msgid "Top left"
5700
  msgstr ""
5701
 
5702
+ #: strings.php:168
5703
  msgid "Bottom right"
5704
  msgstr ""
5705
 
5706
+ #: strings.php:169
5707
  msgid "Bottom left"
5708
  msgstr ""
5709
 
5710
+ #: strings.php:171
5711
  msgctxt "AdSense Ad Type"
5712
  msgid "Standard"
5713
  msgstr ""
5714
 
5715
+ #: strings.php:172
5716
  msgctxt "AdSense Ad Type"
5717
  msgid "Link"
5718
  msgstr ""
5719
 
5720
+ #: strings.php:173
5721
  msgctxt "AdSense Ad Type"
5722
  msgid "In-article"
5723
  msgstr ""
5724
 
5725
+ #: strings.php:174
5726
  msgctxt "AdSense Ad Type"
5727
  msgid "In-feed"
5728
  msgstr ""
5729
 
5730
+ #: strings.php:175
5731
  msgctxt "AdSense Ad Type"
5732
  msgid "Matched content"
5733
  msgstr ""
5734
 
5735
+ #: strings.php:176
5736
  msgctxt "AdSense Ad Type"
5737
  msgid "Auto Ads"
5738
  msgstr ""
5739
 
5740
+ #: strings.php:177
5741
  msgctxt "AdSense Ad Type"
5742
  msgid "AMP Only"
5743
  msgstr ""
5744
 
5745
+ #: strings.php:179
5746
  msgctxt "AMP ad"
5747
  msgid "Disabled"
5748
  msgstr ""
5749
 
5750
+ #: strings.php:180
5751
  msgid "Above the fold"
5752
  msgstr ""
5753
 
5754
+ #: strings.php:181
5755
  msgid "Below the fold"
5756
  msgstr ""
5757
 
5758
+ #: strings.php:182
5759
  msgctxt "AMP ad"
5760
  msgid "Sticky"
5761
  msgstr ""
5762
 
5763
+ #: strings.php:184
5764
  msgctxt "size"
5765
  msgid "Fixed"
5766
  msgstr ""
5767
 
5768
+ #: strings.php:185
5769
  msgctxt "size"
5770
  msgid "Responsive"
5771
  msgstr ""
5772
 
5773
+ #: strings.php:186
5774
  msgctxt "size"
5775
  msgid "Fixed by viewport"
5776
  msgstr ""
5777
 
5778
+ #: strings.php:190
5779
  msgid "Impressions and clicks"
5780
  msgstr ""
5781
 
5782
+ #: strings.php:191
5783
  msgid "Advanced WordPress Ad Management Plugin"
5784
  msgstr ""
5785
 
5786
+ #: strings.php:197
5787
  msgctxt "Button"
5788
  msgid "Hide"
5789
  msgstr ""
5790
 
5791
+ #: strings.php:198
5792
  msgctxt "Button"
5793
  msgid "Show"
5794
  msgstr ""
5795
 
5796
+ #: strings.php:199
5797
  msgid "Insertion expired"
5798
  msgstr ""
5799
 
5800
+ #: strings.php:200
5801
  msgid "Duration"
5802
  msgstr ""
5803
 
5804
+ #: strings.php:201
5805
  msgid "Invalid end date - must be after start date"
5806
  msgstr ""
5807
 
5808
+ #: strings.php:202
5809
  msgid "Invalid start date - only data for 1 year back is available"
5810
  msgstr ""
5811
 
5812
+ #: strings.php:203
5813
  msgid "Invalid date range - only data for 1 year can be displayed"
5814
  msgstr ""
5815
 
5816
+ #: strings.php:211
5817
  msgid "Delete"
5818
  msgstr ""
5819
 
5820
+ #: strings.php:212
5821
  msgid "Switch"
5822
  msgstr ""
5823
 
5824
+ #: strings.php:214
5825
  msgid "Delete all statistics data?"
5826
  msgstr ""
5827
 
5828
  #. translators: %s: dates
5829
+ #: strings.php:216
5830
  msgid "Delete statistics data between %s and %s?"
5831
  msgstr ""
5832
 
5833
+ #: strings.php:217
5834
  msgid "Cancel block order rearrangement"
5835
  msgstr ""
5836
 
5837
+ #: strings.php:219
5838
  msgid "downloading..."
5839
  msgstr ""
5840
 
5841
+ #: strings.php:220
5842
  msgid "download error"
5843
  msgstr ""
5844
 
5845
+ #: strings.php:221
5846
  msgid "update error"
5847
  msgstr ""
5848
 
5849
+ #: strings.php:222
5850
  msgid "Updating..."
5851
  msgstr ""
5852
 
5853
+ #: strings.php:224
5854
  msgid "ERROR"
5855
  msgstr ""
5856
 
5857
+ #: strings.php:225
5858
  msgid "Error reloading settings"
5859
  msgstr ""
5860
 
5861
+ #: strings.php:227
5862
  msgctxt "Search field placeholder"
5863
  msgid "Search..."
5864
  msgstr ""
5865
 
5866
+ #: strings.php:228
5867
  msgctxt "Search field placeholder"
5868
  msgid "Filter..."
5869
  msgstr ""
5870
 
5871
+ #: strings.php:229
5872
  msgid "Use filter to limit names in the list"
5873
  msgstr ""
5874
 
5875
+ #: strings.php:230
5876
  msgctxt "Button"
5877
  msgid "Filter"
5878
  msgstr ""
5879
 
5880
+ #: strings.php:232
5881
  msgid "Position not available"
5882
  msgstr ""
5883
 
5884
+ #: strings.php:233
5885
  msgid ""
5886
  "Theme check | Selected position for automatic insertion might not be not "
5887
  "available on this page type"
5888
  msgstr ""
5889
 
5890
+ #: strings.php:234
5891
  msgid "Position available"
5892
  msgstr ""
5893
 
5894
+ #: strings.php:236
5895
  msgid "Select or upload banner image"
5896
  msgstr ""
5897
 
5898
+ #: strings.php:237
5899
  msgid "Use this image"
5900
  msgstr ""
5901
 
5902
+ #: strings.php:238
5903
  msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
5904
  msgstr ""
5905
 
5906
+ #: strings.php:240
5907
  msgctxt "Monday"
5908
  msgid "MO"
5909
  msgstr ""
5910
 
5911
+ #: strings.php:241
5912
  msgctxt "Tuesday"
5913
  msgid "TU"
5914
  msgstr ""
5915
 
5916
+ #: strings.php:242
5917
  msgctxt "Wednesday"
5918
  msgid "WE"
5919
  msgstr ""
5920
 
5921
+ #: strings.php:243
5922
  msgctxt "Thursday"
5923
  msgid "TH"
5924
  msgstr ""
5925
 
5926
+ #: strings.php:244
5927
  msgctxt "Friday"
5928
  msgid "FR"
5929
  msgstr ""
5930
 
5931
+ #: strings.php:245
5932
  msgctxt "Saturday"
5933
  msgid "SA"
5934
  msgstr ""
5935
 
5936
+ #: strings.php:246
5937
  msgctxt "Sunday"
5938
  msgid "SU"
5939
  msgstr ""
5940
 
5941
+ #: strings.php:262
5942
+ msgctxt "Scheduling"
5943
+ msgid "FALLBACK"
5944
+ msgstr ""
5945
+
5946
+ #: strings.php:263
5947
+ msgid "Automatically placed by AdSense Auto ads code"
5948
+ msgstr ""
5949
+
5950
+ #: strings.php:268
5951
  msgid "Add"
5952
  msgstr ""
5953
 
5954
+ #: strings.php:269
5955
  msgctxt "Element"
5956
  msgid "Parent"
5957
  msgstr ""
5958
 
5959
+ #: strings.php:270
5960
  msgid "Cancel element selection"
5961
  msgstr ""
5962
 
5963
+ #: strings.php:271
5964
  msgid "Select parent element"
5965
  msgstr ""
5966
 
5967
+ #: strings.php:272
5968
  msgid "CSS selector"
5969
  msgstr ""
5970
 
5971
+ #: strings.php:273
5972
  msgid "Use current selector"
5973
  msgstr ""
5974
 
5975
+ #: strings.php:274
5976
  msgid "ELEMENT"
5977
  msgstr ""
5978
 
5979
+ #: strings.php:275
5980
  msgid "PATH"
5981
  msgstr ""
5982
 
5983
+ #: strings.php:276
5984
  msgid "SELECTOR"
5985
  msgstr ""
5986
 
 
 
 
 
 
 
 
 
 
5987
  #. Description of the plugin/theme
5988
  msgid ""
5989
  "Ad management with many advanced advertising features to insert ads at "
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.6
7
  Tested up to: 5.4
8
  Requires PHP: 5.6
9
- Stable tag: 2.6.6
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
@@ -331,6 +331,13 @@ If you are not happy to reveal this information and you have opted in, simply di
331
 
332
  == Changelog ==
333
 
 
 
 
 
 
 
 
334
  = 2.6.6 =
335
  - Fix for exceptions list not showing all exceptions
336
  - Improved ad blocking detection
@@ -466,6 +473,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
466
 
467
  == Upgrade Notice ==
468
 
 
 
 
 
 
 
 
469
  = 2.6.6 =
470
  Fix for exceptions list not showing all exceptions;
471
  Improved ad blocking detection;
6
  Requires at least: 4.6
7
  Tested up to: 5.4
8
  Requires PHP: 5.6
9
+ Stable tag: 2.6.7
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
331
 
332
  == Changelog ==
333
 
334
+ = 2.6.7 =
335
+ - Added support for various shortcodes for post categories
336
+ - Added support for various shortcodes for post tags
337
+ - Added support for user action on click (Pro only)
338
+ - Added support for manual loading (Pro only)
339
+ - Few minor bug fixes, cosmetic changes and code improvements
340
+
341
  = 2.6.6 =
342
  - Fix for exceptions list not showing all exceptions
343
  - Improved ad blocking detection
473
 
474
  == Upgrade Notice ==
475
 
476
+ = 2.6.7 =
477
+ Added support for various shortcodes for post categories;
478
+ Added support for various shortcodes for post tags;
479
+ Added support for user action on click (Pro only);
480
+ Added support for manual loading (Pro only);
481
+ Few minor bug fixes, cosmetic changes and code improvements
482
+
483
  = 2.6.6 =
484
  Fix for exceptions list not showing all exceptions;
485
  Improved ad blocking detection;
settings.php CHANGED
@@ -616,7 +616,7 @@ function generate_settings_form (){
616
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
617
 
618
  $display_options =
619
- $obj->get_show_label () || $obj->get_lazy_loading () ||
620
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
621
  $obj->get_delay_showing () || $obj->get_show_every () ||
622
  $obj->get_iframe ();
@@ -2200,7 +2200,7 @@ function generate_settings_form (){
2200
  <input id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
2201
  <label for="show-label-<?php echo $block; ?>"><?php _e ('Ad label', 'ad-inserter'); ?></label>
2202
  </td>
2203
- <?php if (function_exists ('ai_display_lazy')) ai_display_lazy ($block, $obj, $default, 'lazy-loading-'.$block, AI_OPTION_CLOSE_BUTTON . WP_FORM_FIELD_POSTFIX . $block); ?>
2204
  </tr>
2205
  </tbody>
2206
  </table>
616
  $adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
617
 
618
  $display_options =
619
+ $obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
620
  $obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
621
  $obj->get_delay_showing () || $obj->get_show_every () ||
622
  $obj->get_iframe ();
2200
  <input id="show-label-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_SHOW_LABEL, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_show_label (); ?>" <?php if ($obj->get_show_label () == AI_ENABLED) echo 'checked '; ?> />
2201
  <label for="show-label-<?php echo $block; ?>"><?php _e ('Ad label', 'ad-inserter'); ?></label>
2202
  </td>
2203
+ <?php if (function_exists ('ai_display_lazy')) ai_display_lazy ($block, $obj, $default); ?>
2204
  </tr>
2205
  </tbody>
2206
  </table>
strings.php CHANGED
@@ -160,6 +160,9 @@ define ('AI_TEXT_INTERNAL', _x('Internal', 'tracking', 'ad-inserte
160
  define ('AI_TEXT_ADVANCED', _x('Advanced', 'detection', 'ad-inserter'));
161
  define ('AI_TEXT_ENABLED', __('Enabled', 'ad-inserter'));
162
 
 
 
 
163
  define ('AI_TEXT_TOP_RIGHT', __('Top right', 'ad-inserter'));
164
  define ('AI_TEXT_TOP_LEFT', __('Top left', 'ad-inserter'));
165
  define ('AI_TEXT_BOTTOM_RIGHT', __('Bottom right', 'ad-inserter'));
160
  define ('AI_TEXT_ADVANCED', _x('Advanced', 'detection', 'ad-inserter'));
161
  define ('AI_TEXT_ENABLED', __('Enabled', 'ad-inserter'));
162
 
163
+ define ('AI_TEXT_AUTO', _x('Auto', 'Manual loading', 'ad-inserter'));
164
+ define ('AI_TEXT_ALWAYS', _x('Always', 'Manual loading', 'ad-inserter'));
165
+
166
  define ('AI_TEXT_TOP_RIGHT', __('Top right', 'ad-inserter'));
167
  define ('AI_TEXT_TOP_LEFT', __('Top left', 'ad-inserter'));
168
  define ('AI_TEXT_BOTTOM_RIGHT', __('Bottom right', 'ad-inserter'));