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

Version Description

  • Fix for saving code with slashes
  • Fix for rotation editor code import
  • 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.4.11
Comparing to
See all releases

Code changes from version 2.4.10 to 2.4.11

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.4.10
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,9 +15,15 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
18
  Ad Inserter 2.4.10 - 2019-02-18
19
  - Added support for counter shortcodes
20
  - Added support for code separator selection for code preview
 
21
  - Added support for CHECK separator (Pro only)
22
  - Added links to test pages for check for available positions
23
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -5462,7 +5468,7 @@ function ai_settings () {
5462
  $field_value = $_POST [$form_field_name];
5463
 
5464
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5465
- $field_value = base64_decode (substr ($field_value, 4));
5466
  }
5467
 
5468
  $ai_options [$block][$key] = filter_option ($key, $field_value);
@@ -6650,10 +6656,17 @@ function ai_pre_do_shortcode_tag ($return, $tag, $attr, $m) {
6650
 
6651
  if (strtolower ($tag) == 'adinserter') {
6652
  if ($ai_expand_only_rotate) {
6653
- // Expand only ROTATE
6654
  if (isset ($attr ['rotate']) || in_array ('ROTATE', $attr) || in_array ('rotate', $attr)) {
6655
  return false;
6656
- } else return $m [0];
 
 
 
 
 
 
 
6657
  }
6658
  }
6659
 
@@ -6805,6 +6818,7 @@ function ai_process_shortcode (&$block, $atts) {
6805
  }
6806
  if ($parameters ['counter'] != '') {
6807
  $counter_name = strtolower ($parameters ['counter']);
 
6808
  switch ($counter_name) {
6809
  case 'block':
6810
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']) && isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']])) {
@@ -6826,6 +6840,11 @@ function ai_process_shortcode (&$block, $atts) {
6826
  return $ad_inserter_globals [AI_LOOP_BEFORE_COUNTER_NAME];
6827
  }
6828
  break;
 
 
 
 
 
6829
  case 'widget':
6830
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']) && isset ($ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']])) {
6831
  return $ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']];
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.4.11
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.4.11 - 2019-02-23
19
+ - Fix for saving code with slashes
20
+ - Fix for rotation editor code import
21
+ - Few minor bug fixes, cosmetic changes and code improvements
22
+
23
  Ad Inserter 2.4.10 - 2019-02-18
24
  - Added support for counter shortcodes
25
  - Added support for code separator selection for code preview
26
+ - Added support for group rotations
27
  - Added support for CHECK separator (Pro only)
28
  - Added links to test pages for check for available positions
29
  - Few minor bug fixes, cosmetic changes and code improvements
5468
  $field_value = $_POST [$form_field_name];
5469
 
5470
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5471
+ $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
5472
  }
5473
 
5474
  $ai_options [$block][$key] = filter_option ($key, $field_value);
6656
 
6657
  if (strtolower ($tag) == 'adinserter') {
6658
  if ($ai_expand_only_rotate) {
6659
+ // Expand only ROTATE / COUNT / CHECK
6660
  if (isset ($attr ['rotate']) || in_array ('ROTATE', $attr) || in_array ('rotate', $attr)) {
6661
  return false;
6662
+ }
6663
+ elseif (isset ($attr ['count']) || in_array ('COUNT', $attr) || in_array ('count', $attr)) {
6664
+ return false;
6665
+ }
6666
+ elseif (isset ($attr ['check']) || in_array ('CHECK', $attr) || in_array ('check', $attr)) {
6667
+ return false;
6668
+ }
6669
+ else return $m [0];
6670
  }
6671
  }
6672
 
6818
  }
6819
  if ($parameters ['counter'] != '') {
6820
  $counter_name = strtolower ($parameters ['counter']);
6821
+
6822
  switch ($counter_name) {
6823
  case 'block':
6824
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']) && isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']])) {
6840
  return $ad_inserter_globals [AI_LOOP_BEFORE_COUNTER_NAME];
6841
  }
6842
  break;
6843
+ case 'after-post':
6844
+ if (isset ($ad_inserter_globals [AI_LOOP_AFTER_COUNTER_NAME])) {
6845
+ return $ad_inserter_globals [AI_LOOP_AFTER_COUNTER_NAME];
6846
+ }
6847
+ break;
6848
  case 'widget':
6849
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']) && isset ($ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']])) {
6850
  return $ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']];
class.php CHANGED
@@ -2423,7 +2423,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2423
  // Additional class to identify rotation code block in case of timed rotation
2424
  $rotation_class = '';
2425
  if ($groups) {
2426
- $rotation_class = ' ai-group-rotation';
2427
  }
2428
  if ($times) {
2429
  $rotation_class .= ' ai-'.$this->number;
@@ -6371,16 +6371,44 @@ class ai_code_generator {
6371
  $code = do_shortcode ($code);
6372
  $ai_expand_only_rotate = false;
6373
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6374
  if (strpos ($code, AD_ROTATE_SEPARATOR) !== false) {
6375
  $options = explode (AD_ROTATE_SEPARATOR, $code);
6376
  $data ['options'] = array ();
6377
  foreach ($options as $index => $option) {
6378
  $option_code = trim ($option, "\n");
6379
- $option_name = isset ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['name']) ? $ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['name'] : '';
6380
- $option_share = isset ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['share']) && is_numeric ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['share']) ? intval ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['share']) : '';
6381
- $option_time = isset ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['time']) && is_numeric ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['time']) ? intval ($ai_wp_data [AI_SHORTCODES]['rotate'][$index - 1]['time']) : '';
 
 
 
 
 
 
 
 
 
 
6382
  if ($index == 0 && $option_code == '') continue;
6383
- $data ['options'] []= array ('code' => $option_code, 'name' => $option_name, 'share' => $option_share, 'time' => $option_time);
6384
  }
6385
  }
6386
 
@@ -6393,6 +6421,8 @@ class ai_code_generator {
6393
  $rotation_code = trim ($rotation_data [0]['code']);
6394
  } else {
6395
  $rotation_code = '';
 
 
6396
  foreach ($rotation_data as $index => $rotation_data_row) {
6397
 
6398
  $name = trim ($rotation_data_row ['name']);
@@ -6407,9 +6437,13 @@ class ai_code_generator {
6407
 
6408
  $shortcode .= '[ADINSERTER ROTATE';
6409
 
6410
- if ($name != '') $shortcode .= ' name="'.str_replace ('"', '\'', $name).'"';
6411
- if ($share != '') $shortcode .= ' share="'.str_replace ('"', '\'', $share).'"';
6412
- if ($time != '') $shortcode .= ' time="'.str_replace ('"', '\'', $time).'"';
 
 
 
 
6413
  $shortcode .= "]\n\n";
6414
  } else $shortcode = '';
6415
 
2423
  // Additional class to identify rotation code block in case of timed rotation
2424
  $rotation_class = '';
2425
  if ($groups) {
2426
+ $rotation_class = ' ai-rotation-groups ai-'.$this->number;
2427
  }
2428
  if ($times) {
2429
  $rotation_class .= ' ai-'.$this->number;
6371
  $code = do_shortcode ($code);
6372
  $ai_expand_only_rotate = false;
6373
 
6374
+ if (strpos ($code, AD_CHECK_SEPARATOR) !== false) {
6375
+ return $data;
6376
+ }
6377
+
6378
+ preg_match_all ('/\|count([0-9]+?)\|/', $code, $matches);
6379
+ if (count ($matches [1]) != 0) {
6380
+ return $data;
6381
+ }
6382
+
6383
+ preg_match_all ('/\|rotate([0-9]+?)\|/', $code, $matches);
6384
+ if (count ($matches [1]) != 0) {
6385
+ $rotate_parameters = array ();
6386
+ foreach ($matches [1] as $match) {
6387
+ $rotate_parameters []= $ai_wp_data [AI_SHORTCODES]['rotate'][$match];
6388
+ }
6389
+ $code = preg_replace ('/\|rotate([0-9]+?)\|/', AD_ROTATE_SEPARATOR, $code);
6390
+ } else if (isset ($ai_wp_data [AI_SHORTCODES]['rotate'])) $rotate_parameters = $ai_wp_data [AI_SHORTCODES]['rotate'];
6391
+
6392
  if (strpos ($code, AD_ROTATE_SEPARATOR) !== false) {
6393
  $options = explode (AD_ROTATE_SEPARATOR, $code);
6394
  $data ['options'] = array ();
6395
  foreach ($options as $index => $option) {
6396
  $option_code = trim ($option, "\n");
6397
+
6398
+ $rotation_groups = 0;
6399
+ if (isset ($rotate_parameters [$index - 1]['group']) && $rotate_parameters [$index - 1]['group'] != '') {
6400
+ $rotation_groups = 1;
6401
+ $option_name = $rotate_parameters [$index - 1]['group'];
6402
+ $option_share = '';
6403
+ $option_time = '';
6404
+ } else {
6405
+ $option_name = isset ($rotate_parameters [$index - 1]['name']) ? $rotate_parameters [$index - 1]['name'] : '';
6406
+ $option_share = isset ($rotate_parameters [$index - 1]['share']) && is_numeric ($rotate_parameters [$index - 1]['share']) ? intval ($rotate_parameters [$index - 1]['share']) : '';
6407
+ $option_time = isset ($rotate_parameters [$index - 1]['time']) && is_numeric ($rotate_parameters [$index - 1]['time']) ? intval ($rotate_parameters [$index - 1]['time']) : '';
6408
+ }
6409
+
6410
  if ($index == 0 && $option_code == '') continue;
6411
+ $data ['options'] []= array ('code' => $option_code, 'name' => $option_name, 'share' => $option_share, 'time' => $option_time, 'groups' => $rotation_groups);
6412
  }
6413
  }
6414
 
6421
  $rotation_code = trim ($rotation_data [0]['code']);
6422
  } else {
6423
  $rotation_code = '';
6424
+ $rotation_groups = $rotation_data [0]['groups'];
6425
+
6426
  foreach ($rotation_data as $index => $rotation_data_row) {
6427
 
6428
  $name = trim ($rotation_data_row ['name']);
6437
 
6438
  $shortcode .= '[ADINSERTER ROTATE';
6439
 
6440
+ if ($rotation_groups) {
6441
+ if ($name != '') $shortcode .= ' group="'.str_replace ('"', '\'', $name).'"';
6442
+ } else {
6443
+ if ($name != '') $shortcode .= ' name="'.str_replace ('"', '\'', $name).'"';
6444
+ if ($share != '') $shortcode .= ' share="'.str_replace ('"', '\'', $share).'"';
6445
+ if ($time != '') $shortcode .= ' time="'.str_replace ('"', '\'', $time).'"';
6446
+ }
6447
  $shortcode .= "]\n\n";
6448
  } else $shortcode = '';
6449
 
constants.php CHANGED
@@ -29,7 +29,7 @@ if (!defined( 'AD_INSERTER_NAME'))
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
- define ('AD_INSERTER_VERSION', '2.4.10');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
+ define ('AD_INSERTER_VERSION', '2.4.11');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.4.10"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.4.11"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/js/ai-rotate.js CHANGED
@@ -42,7 +42,10 @@ jQuery (function ($) {
42
 
43
  if (rotate_options.length == 0) return;
44
 
45
- if (ai_debug) console.log ('AI ROTATE process single rotation:', rotate_options.length, 'options');
 
 
 
46
 
47
  rotate_options.hide ();
48
 
@@ -107,14 +110,18 @@ jQuery (function ($) {
107
 
108
  var option = $(rotate_options [random_index]);
109
 
110
- var group_markers = option.find ('span[data-ai-groups]');
 
 
 
 
111
  if (group_markers.length != 0) {
112
  if (ai_debug) {
113
  var next_groups = JSON.parse (b64d (group_markers.first ().data ('ai-groups')));
114
  console.log ('AI TIMED ROTATE next option sets groups', next_groups);
115
  }
116
 
117
- var group_rotations = $('.ai-group-rotation');
118
  if (group_rotations.length != 0) {
119
  setTimeout (function() {ai_process_group_rotations ();}, 5);
120
  }
@@ -134,7 +141,7 @@ jQuery (function ($) {
134
 
135
  if (ai_debug) {
136
  var option_name = b64d (option.data ('name'));
137
- console.log ('AI TIMED ROTATE index:', random_index, 'name:', option_name, 'time:', rotation_time);
138
  }
139
 
140
  if (rotation_time == 0 && rotate_options.length > 1) {
@@ -187,7 +194,7 @@ jQuery (function ($) {
187
  else if (typeof option.data ('group') != 'undefined') {
188
  if (ai_debug) {
189
  var option_name = b64d (option.data ('name'));
190
- console.log ('AI ROTATE GROUP', option_name, 'index:', random_index);
191
  }
192
  }
193
  else {
@@ -286,7 +293,7 @@ jQuery (function ($) {
286
  }
287
 
288
  function ai_process_group_rotations () {
289
- $("div.ai-rotate.ai-group-rotation").each (function (index, element) {
290
  ai_process_rotation (this);
291
  });
292
  }
42
 
43
  if (rotate_options.length == 0) return;
44
 
45
+ if (ai_debug) {
46
+ console.log ('AI ROTATE process single rotation', );
47
+ console.log ('AI ROTATE', 'block', $(rotation_block).attr ('class') + ',', rotate_options.length, 'options');
48
+ }
49
 
50
  rotate_options.hide ();
51
 
110
 
111
  var option = $(rotate_options [random_index]);
112
 
113
+ if (typeof option.data ('code') != 'undefined') {
114
+ option = $(b64d (option.data ('code')));
115
+ }
116
+
117
+ var group_markers = option.find ('span[data-ai-groups]').addBack ('span[data-ai-groups]');
118
  if (group_markers.length != 0) {
119
  if (ai_debug) {
120
  var next_groups = JSON.parse (b64d (group_markers.first ().data ('ai-groups')));
121
  console.log ('AI TIMED ROTATE next option sets groups', next_groups);
122
  }
123
 
124
+ var group_rotations = $('.ai-rotation-groups');
125
  if (group_rotations.length != 0) {
126
  setTimeout (function() {ai_process_group_rotations ();}, 5);
127
  }
141
 
142
  if (ai_debug) {
143
  var option_name = b64d (option.data ('name'));
144
+ console.log ('AI TIMED ROTATE index:', random_index + ',', 'name:', '"'+option_name+'",', 'time:', rotation_time);
145
  }
146
 
147
  if (rotation_time == 0 && rotate_options.length > 1) {
194
  else if (typeof option.data ('group') != 'undefined') {
195
  if (ai_debug) {
196
  var option_name = b64d (option.data ('name'));
197
+ console.log ('AI ROTATE GROUP', '"' + option_name + '",', 'index:', random_index);
198
  }
199
  }
200
  else {
293
  }
294
 
295
  function ai_process_group_rotations () {
296
+ $("div.ai-rotate.ai-rotation-groups").each (function (index, element) {
297
  ai_process_rotation (this);
298
  });
299
  }
includes/js/ai-rotate.min.js CHANGED
@@ -1,15 +1,15 @@
1
  jQuery(function($){function b64e(str){return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,function toSolidBytes(match,p1){return String.fromCharCode("0x"+p1)}))}function b64d(str){return decodeURIComponent(atob(str).split("").map(function(c){return"%"+("00"+c.charCodeAt(0).toString(16)).slice(-2)}).join(""))}ai_process_rotation=function(rotation_block){var ai_debug=typeof ai_debugging!=="undefined";if(ai_debug)console.log("");if(typeof rotation_block.length=="number"){if(ai_debug)console.log("AI ROTATE process rotation:",
2
  rotation_block.length,"rotation blocks");for(var index=0;index<rotation_block.length;index++){if(ai_debug)console.log("AI ROTATE process rotation block index:",index);if(index==0)ai_process_single_rotation(rotation_block[index],true);else ai_process_single_rotation(rotation_block[index],false)}}else{if(ai_debug)console.log("AI ROTATE process rotation: 1 rotation block");ai_process_single_rotation(rotation_block,true)}};ai_process_single_rotation=function(rotation_block,trigger_rotation){var ai_debug=
3
- typeof ai_debugging!=="undefined";var rotate_options=$(".ai-rotate-option",rotation_block);if(rotate_options.length==0)return;if(ai_debug)console.log("AI ROTATE process single rotation:",rotate_options.length,"options");rotate_options.hide();if(typeof $(rotation_block).data("next")=="undefined")if(typeof $(rotate_options[0]).data("group")!="undefined"){var random_index=-1;var all_ai_groups=$("span[data-ai-groups]");var ai_groups=[];all_ai_groups.each(function(index){var visible=!!($(this)[0].offsetWidth||
4
- $(this)[0].offsetHeight||$(this)[0].getClientRects().length);if(visible)ai_groups.push(this)});if(ai_debug)console.log("AI ROTATE GROUPS:",ai_groups.length,"group markers found");if(ai_groups.length>=1){var groups=JSON.parse(b64d($(ai_groups).first().data("ai-groups")));if(ai_debug)console.log("AI ROTATE GROUPS:",groups);groups.forEach(function(group,index){if(random_index==-1)rotate_options.each(function(index){var option_group=b64d($(this).data("group"));if(option_group==group){random_index=index;
5
- return false}})})}}else{var thresholds_data=$(rotation_block).data("shares");if(typeof thresholds_data==="string"){var thresholds=JSON.parse(atob(thresholds_data));var random_threshold=Math.round(Math.random()*100);for(var index=0;index<thresholds.length;index++){var random_index=index;if(random_threshold<=thresholds[index])break}}else{var random_index=Math.floor(Math.random()*rotate_options.length);var d=new Date;var n=d.getMilliseconds();if(n%2)random_index=rotate_options.length-random_index-1}}else{var random_index=
6
- parseInt($(rotation_block).attr("data-next"));if(ai_debug)console.log("AI TIMED ROTATE next index:",random_index);var option=$(rotate_options[random_index]);var group_markers=option.find("span[data-ai-groups]");if(group_markers.length!=0){if(ai_debug){var next_groups=JSON.parse(b64d(group_markers.first().data("ai-groups")));console.log("AI TIMED ROTATE next option sets groups",next_groups)}var group_rotations=$(".ai-group-rotation");if(group_rotations.length!=0)setTimeout(function(){ai_process_group_rotations()},
7
- 5)}}if(random_index<0||random_index>=rotate_options.length){if(ai_debug)console.log("AI ROTATE no option selected");return}var option=$(rotate_options[random_index]);var option_time_text="";if(typeof option.data("time")!="undefined"){var rotation_time=atob(option.data("time"));if(ai_debug){var option_name=b64d(option.data("name"));console.log("AI TIMED ROTATE index:",random_index,"name:",option_name,"time:",rotation_time)}if(rotation_time==0&&rotate_options.length>1){var next_random_index=random_index;
8
- do{next_random_index++;if(next_random_index>=rotate_options.length)next_random_index=0;var next_option=$(rotate_options[next_random_index]);if(typeof next_option.data("time")=="undefined"){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=0;if(ai_debug)console.log("AI TIMED ROTATE next option has no time: ",next_random_index);break}var next_rotation_time=atob(next_option.data("time"));if(ai_debug)console.log("AI TIMED ROTATE check:",next_random_index,"time:",next_rotation_time)}while(next_rotation_time==
9
- 0&&next_random_index!=random_index);if(rotation_time!=0){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=atob(option.data("time"))}if(ai_debug)console.log("AI TIMED ROTATE index:",random_index,"time:",rotation_time)}if(rotation_time>0){var next_random_index=random_index+1;if(next_random_index>=rotate_options.length)next_random_index=0;if(typeof $(rotation_block).data("info")!="undefined"){var block_info=JSON.parse(atob($(rotation_block).data("info")));var rotation_id=
10
- block_info[0];$(rotation_block).attr("data-next",next_random_index);if(trigger_rotation)setTimeout(function(){ai_process_rotation($("div.ai-rotate.ai-"+rotation_id))},rotation_time*1E3);option_time_text=" ("+rotation_time+" s)"}}}else if(typeof option.data("group")!="undefined"){if(ai_debug){var option_name=b64d(option.data("name"));console.log("AI ROTATE GROUP",option_name,"index:",random_index)}}else{if(!ai_debug)rotate_options.each(function(index){if(index!=random_index)$(this).remove()});if(ai_debug)console.log("AI ROTATE no time");
11
- if(ai_debug)console.log("AI ROTATE index:",random_index)}option.css({"display":"","visibility":"","position":"","width":"","height":"","top":"","left":""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");$(rotation_block).css({"position":""});if(typeof option.data("code")!="undefined"){rotate_options.empty();var option_code=b64d(option.data("code"));option.append(option_code)}var option_name="";var debug_block_frame=$(rotation_block).closest(".ai-debug-block");if(debug_block_frame.length!=
12
- 0){var option_name=b64d(option.data("name"));var name_tag=debug_block_frame.find("kbd.ai-option-name");var nested_debug_block=debug_block_frame.find(".ai-debug-block");if(typeof nested_debug_block!="undefined"){var name_tag2=nested_debug_block.find("kbd.ai-option-name");name_tag=name_tag.slice(0,name_tag.length-name_tag2.length)}if(typeof name_tag!="undefined"){var separator=name_tag.first().data("separator");if(typeof separator=="undefined")separator="";name_tag.html(separator+option_name+option_time_text)}}var tracking_updated=
13
- false;var adb_show_wrapping_div=$(rotation_block).closest(".ai-adb-show");if(adb_show_wrapping_div.length!=0)if(adb_show_wrapping_div.data("ai-tracking")){var data=JSON.parse(b64d(adb_show_wrapping_div.data("ai-tracking")));if(typeof data!=="undefined"&&data.constructor===Array){data[1]=random_index+1;data[3]=option_name;adb_show_wrapping_div.data("ai-tracking",b64e(JSON.stringify(data)));tracking_updated=true}}if(!tracking_updated){var wrapping_div=$(rotation_block).closest("div[data-ai]");if(typeof wrapping_div.data("ai")!=
14
- "undefined"){var data=JSON.parse(b64d(wrapping_div.data("ai")));if(typeof data!=="undefined"&&data.constructor===Array){data[1]=random_index+1;data[3]=option_name;wrapping_div.data("ai",b64e(JSON.stringify(data)))}}}};function ai_process_rotations(){$("div.ai-rotate").each(function(index,element){ai_process_rotation(this)})}function ai_process_group_rotations(){$("div.ai-rotate.ai-group-rotation").each(function(index,element){ai_process_rotation(this)})}ai_process_rotations_in_element=function(el){$("div.ai-rotate",
15
- el).each(function(index,element){ai_process_rotation(this)})};$(document).ready(function($){setTimeout(function(){ai_process_rotations()},10)})});
1
  jQuery(function($){function b64e(str){return btoa(encodeURIComponent(str).replace(/%([0-9A-F]{2})/g,function toSolidBytes(match,p1){return String.fromCharCode("0x"+p1)}))}function b64d(str){return decodeURIComponent(atob(str).split("").map(function(c){return"%"+("00"+c.charCodeAt(0).toString(16)).slice(-2)}).join(""))}ai_process_rotation=function(rotation_block){var ai_debug=typeof ai_debugging!=="undefined";if(ai_debug)console.log("");if(typeof rotation_block.length=="number"){if(ai_debug)console.log("AI ROTATE process rotation:",
2
  rotation_block.length,"rotation blocks");for(var index=0;index<rotation_block.length;index++){if(ai_debug)console.log("AI ROTATE process rotation block index:",index);if(index==0)ai_process_single_rotation(rotation_block[index],true);else ai_process_single_rotation(rotation_block[index],false)}}else{if(ai_debug)console.log("AI ROTATE process rotation: 1 rotation block");ai_process_single_rotation(rotation_block,true)}};ai_process_single_rotation=function(rotation_block,trigger_rotation){var ai_debug=
3
+ typeof ai_debugging!=="undefined";var rotate_options=$(".ai-rotate-option",rotation_block);if(rotate_options.length==0)return;if(ai_debug){console.log("AI ROTATE process single rotation");console.log("AI ROTATE","block",$(rotation_block).attr("class")+",",rotate_options.length,"options")}rotate_options.hide();if(typeof $(rotation_block).data("next")=="undefined")if(typeof $(rotate_options[0]).data("group")!="undefined"){var random_index=-1;var all_ai_groups=$("span[data-ai-groups]");var ai_groups=
4
+ [];all_ai_groups.each(function(index){var visible=!!($(this)[0].offsetWidth||$(this)[0].offsetHeight||$(this)[0].getClientRects().length);if(visible)ai_groups.push(this)});if(ai_debug)console.log("AI ROTATE GROUPS:",ai_groups.length,"group markers found");if(ai_groups.length>=1){var groups=JSON.parse(b64d($(ai_groups).first().data("ai-groups")));if(ai_debug)console.log("AI ROTATE GROUPS:",groups);groups.forEach(function(group,index){if(random_index==-1)rotate_options.each(function(index){var option_group=
5
+ b64d($(this).data("group"));if(option_group==group){random_index=index;return false}})})}}else{var thresholds_data=$(rotation_block).data("shares");if(typeof thresholds_data==="string"){var thresholds=JSON.parse(atob(thresholds_data));var random_threshold=Math.round(Math.random()*100);for(var index=0;index<thresholds.length;index++){var random_index=index;if(random_threshold<=thresholds[index])break}}else{var random_index=Math.floor(Math.random()*rotate_options.length);var d=new Date;var n=d.getMilliseconds();
6
+ if(n%2)random_index=rotate_options.length-random_index-1}}else{var random_index=parseInt($(rotation_block).attr("data-next"));if(ai_debug)console.log("AI TIMED ROTATE next index:",random_index);var option=$(rotate_options[random_index]);if(typeof option.data("code")!="undefined")option=$(b64d(option.data("code")));var group_markers=option.find("span[data-ai-groups]").addBack("span[data-ai-groups]");if(group_markers.length!=0){if(ai_debug){var next_groups=JSON.parse(b64d(group_markers.first().data("ai-groups")));
7
+ console.log("AI TIMED ROTATE next option sets groups",next_groups)}var group_rotations=$(".ai-rotation-groups");if(group_rotations.length!=0)setTimeout(function(){ai_process_group_rotations()},5)}}if(random_index<0||random_index>=rotate_options.length){if(ai_debug)console.log("AI ROTATE no option selected");return}var option=$(rotate_options[random_index]);var option_time_text="";if(typeof option.data("time")!="undefined"){var rotation_time=atob(option.data("time"));if(ai_debug){var option_name=b64d(option.data("name"));
8
+ console.log("AI TIMED ROTATE index:",random_index+",","name:",'"'+option_name+'",',"time:",rotation_time)}if(rotation_time==0&&rotate_options.length>1){var next_random_index=random_index;do{next_random_index++;if(next_random_index>=rotate_options.length)next_random_index=0;var next_option=$(rotate_options[next_random_index]);if(typeof next_option.data("time")=="undefined"){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=0;if(ai_debug)console.log("AI TIMED ROTATE next option has no time: ",
9
+ next_random_index);break}var next_rotation_time=atob(next_option.data("time"));if(ai_debug)console.log("AI TIMED ROTATE check:",next_random_index,"time:",next_rotation_time)}while(next_rotation_time==0&&next_random_index!=random_index);if(rotation_time!=0){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=atob(option.data("time"))}if(ai_debug)console.log("AI TIMED ROTATE index:",random_index,"time:",rotation_time)}if(rotation_time>0){var next_random_index=random_index+
10
+ 1;if(next_random_index>=rotate_options.length)next_random_index=0;if(typeof $(rotation_block).data("info")!="undefined"){var block_info=JSON.parse(atob($(rotation_block).data("info")));var rotation_id=block_info[0];$(rotation_block).attr("data-next",next_random_index);if(trigger_rotation)setTimeout(function(){ai_process_rotation($("div.ai-rotate.ai-"+rotation_id))},rotation_time*1E3);option_time_text=" ("+rotation_time+" s)"}}}else if(typeof option.data("group")!="undefined"){if(ai_debug){var option_name=
11
+ b64d(option.data("name"));console.log("AI ROTATE GROUP",'"'+option_name+'",',"index:",random_index)}}else{if(!ai_debug)rotate_options.each(function(index){if(index!=random_index)$(this).remove()});if(ai_debug)console.log("AI ROTATE no time");if(ai_debug)console.log("AI ROTATE index:",random_index)}option.css({"display":"","visibility":"","position":"","width":"","height":"","top":"","left":""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");$(rotation_block).css({"position":""});
12
+ if(typeof option.data("code")!="undefined"){rotate_options.empty();var option_code=b64d(option.data("code"));option.append(option_code)}var option_name="";var debug_block_frame=$(rotation_block).closest(".ai-debug-block");if(debug_block_frame.length!=0){var option_name=b64d(option.data("name"));var name_tag=debug_block_frame.find("kbd.ai-option-name");var nested_debug_block=debug_block_frame.find(".ai-debug-block");if(typeof nested_debug_block!="undefined"){var name_tag2=nested_debug_block.find("kbd.ai-option-name");
13
+ name_tag=name_tag.slice(0,name_tag.length-name_tag2.length)}if(typeof name_tag!="undefined"){var separator=name_tag.first().data("separator");if(typeof separator=="undefined")separator="";name_tag.html(separator+option_name+option_time_text)}}var tracking_updated=false;var adb_show_wrapping_div=$(rotation_block).closest(".ai-adb-show");if(adb_show_wrapping_div.length!=0)if(adb_show_wrapping_div.data("ai-tracking")){var data=JSON.parse(b64d(adb_show_wrapping_div.data("ai-tracking")));if(typeof data!==
14
+ "undefined"&&data.constructor===Array){data[1]=random_index+1;data[3]=option_name;adb_show_wrapping_div.data("ai-tracking",b64e(JSON.stringify(data)));tracking_updated=true}}if(!tracking_updated){var wrapping_div=$(rotation_block).closest("div[data-ai]");if(typeof wrapping_div.data("ai")!="undefined"){var data=JSON.parse(b64d(wrapping_div.data("ai")));if(typeof data!=="undefined"&&data.constructor===Array){data[1]=random_index+1;data[3]=option_name;wrapping_div.data("ai",b64e(JSON.stringify(data)))}}}};
15
+ function ai_process_rotations(){$("div.ai-rotate").each(function(index,element){ai_process_rotation(this)})}function ai_process_group_rotations(){$("div.ai-rotate.ai-rotation-groups").each(function(index,element){ai_process_rotation(this)})}ai_process_rotations_in_element=function(el){$("div.ai-rotate",el).each(function(index,element){ai_process_rotation(this)})};$(document).ready(function($){setTimeout(function(){ai_process_rotations()},10)})});
includes/preview.php CHANGED
@@ -2072,7 +2072,7 @@ select {
2072
 
2073
  <div style="float: left;">
2074
 
2075
- <?php _e ('Alignment and style', 'ad-inserter'); ?>
2076
  &nbsp;&nbsp;&nbsp;
2077
  <select id="block-alignment" style="min-width: 120px;">
2078
  <?php if (function_exists ('ai_preview_style_options')) ai_preview_style_options ($obj, $alignment_type, true); ?>
@@ -2223,7 +2223,7 @@ select {
2223
 
2224
  <div style="display: inline-block;">
2225
  <div style="display: inline-block; vertical-align: middle;">
2226
- <?php _e ('Alignment and style', 'ad-inserter'); ?>
2227
  </div>
2228
 
2229
  <select id="block-alignment" style="min-width:120px; margin: 0 10px 0 5px;">
2072
 
2073
  <div style="float: left;">
2074
 
2075
+ <?php _e ('Alignment', 'ad-inserter'); ?>
2076
  &nbsp;&nbsp;&nbsp;
2077
  <select id="block-alignment" style="min-width: 120px;">
2078
  <?php if (function_exists ('ai_preview_style_options')) ai_preview_style_options ($obj, $alignment_type, true); ?>
2223
 
2224
  <div style="display: inline-block;">
2225
  <div style="display: inline-block; vertical-align: middle;">
2226
+ <?php _e ('Alignment', 'ad-inserter'); ?>
2227
  </div>
2228
 
2229
  <select id="block-alignment" style="min-width:120px; margin: 0 10px 0 5px;">
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.4.10";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -2930,6 +2930,22 @@ jQuery(document).ready(function($) {
2930
  remove_rotate_option (block, $('#ai-rotation-container-' + block).tabs ("option", "active"));
2931
  });
2932
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2933
  $("#tab-" + tab + " .adsense-list").click (function () {
2934
  $(this).blur ();
2935
 
@@ -3149,7 +3165,7 @@ jQuery(document).ready(function($) {
3149
 
3150
  var tabs = options;
3151
  if (tabs < 1) tabs = 1;
3152
- if (tabs > 18) tabs = 18;
3153
 
3154
  add_rotate_options (block, tabs);
3155
 
@@ -3171,6 +3187,14 @@ jQuery(document).ready(function($) {
3171
  rotation_container.find ('input.option-time').each (function (index) {
3172
  if (index < options) $(this).val (code_data ['options'][index]['time']);
3173
  });
 
 
 
 
 
 
 
 
3174
  }
3175
  }
3176
  }).fail (function (xhr, status, error) {
@@ -3203,7 +3227,8 @@ jQuery(document).ready(function($) {
3203
  rotation_container.find ("div.rounded").each (function (index) {
3204
  var code_data = $('#option-' + block + '-' + (index + 1)).data ('code');
3205
  var code = typeof code_data == 'undefined' ? '' : b64d (code_data);
3206
- var option_data = {'name': $(this).find ('input.option-name').val (), 'share': $(this).find ('input.option-share').val (), 'time': $(this).find ('input.option-time').val (), 'code': code};
 
3207
 
3208
  rotation_data.push (option_data);
3209
  });
@@ -3253,7 +3278,7 @@ jQuery(document).ready(function($) {
3253
  var insertion = 0;
3254
 
3255
  for (option = options + 1; option <= options + new_options; option ++) {
3256
- if (option > 18) break;
3257
 
3258
  var new_li = li.clone ().show ();
3259
  new_li.find ("a").attr ('href', '#tab-option-' + block + '-' + option).text (String.fromCharCode (64 + option));
1
+ var javascript_version = "2.4.11";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
2930
  remove_rotate_option (block, $('#ai-rotation-container-' + block).tabs ("option", "active"));
2931
  });
2932
 
2933
+ $("#rotation-groups-"+tab).click (function () {
2934
+ var block = $(this).attr('id').tabIndex ();
2935
+ var label = $(this).next ().find ('span');
2936
+ label.toggleClass ('on');
2937
+ var rotation_container = $('#ai-rotation-container-' + block);
2938
+ if (label.hasClass ('on')) {
2939
+ rotation_container.find ('span.group-name-label').show ();
2940
+ rotation_container.find ('span.option-name-label').hide ();
2941
+ rotation_container.find ('td.option-parameters').hide ();
2942
+ } else {
2943
+ rotation_container.find ('span.group-name-label').hide ();
2944
+ rotation_container.find ('span.option-name-label').show ();
2945
+ rotation_container.find ('td.option-parameters').show ();
2946
+ }
2947
+ });
2948
+
2949
  $("#tab-" + tab + " .adsense-list").click (function () {
2950
  $(this).blur ();
2951
 
3165
 
3166
  var tabs = options;
3167
  if (tabs < 1) tabs = 1;
3168
+ if (tabs > 17) tabs = 17;
3169
 
3170
  add_rotate_options (block, tabs);
3171
 
3187
  rotation_container.find ('input.option-time').each (function (index) {
3188
  if (index < options) $(this).val (code_data ['options'][index]['time']);
3189
  });
3190
+
3191
+ var group_label = $("#rotation-groups-" + block).next ().find ('span');
3192
+ if (code_data ['options'][0]['groups']) {
3193
+ group_label.removeClass ('on');
3194
+ } else {
3195
+ group_label.addClass ('on');
3196
+ }
3197
+ $("#rotation-groups-" + block).click ();
3198
  }
3199
  }
3200
  }).fail (function (xhr, status, error) {
3227
  rotation_container.find ("div.rounded").each (function (index) {
3228
  var code_data = $('#option-' + block + '-' + (index + 1)).data ('code');
3229
  var code = typeof code_data == 'undefined' ? '' : b64d (code_data);
3230
+ var group_rotation = $("#rotation-groups-" + block).next ().find ('span').hasClass ('on');
3231
+ var option_data = {'name': $(this).find ('input.option-name').val (), 'share': $(this).find ('input.option-share').val (), 'time': $(this).find ('input.option-time').val (), 'code': code, 'groups': group_rotation};
3232
 
3233
  rotation_data.push (option_data);
3234
  });
3278
  var insertion = 0;
3279
 
3280
  for (option = options + 1; option <= options + new_options; option ++) {
3281
+ if (option > 17) break;
3282
 
3283
  var new_li = li.clone ().show ();
3284
  new_li.find ("a").attr ('href', '#tab-option-' + block + '-' + option).text (String.fromCharCode (64 + option));
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.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-02-18 16:56:36+00:00\n"
8
- "PO-Revision-Date: 2019-02-18 17:56+0100\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,129 +16,129 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:312
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:328
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:335
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:406
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:413
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:422
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:429
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:439
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1016
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1021
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1026 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1031 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1036 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1041 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1088
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1092
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1301
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1576 ad-inserter.php:2439
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2010
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2010
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2011
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2012
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2013
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2014
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2015
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2210
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,21 +146,21 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2211 includes/functions.php:1489
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
- #: ad-inserter.php:2214
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
- #: ad-inserter.php:2215 includes/functions.php:1492
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
- #: ad-inserter.php:2225
164
  msgid ""
165
  "I would really appreciate it if you could give the plugin a 5-star rating on "
166
  "WordPres."
@@ -168,7 +168,7 @@ msgstr ""
168
  "Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
169
  "zvezicami."
170
 
171
- #: ad-inserter.php:2227
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website. Thank you, Igor"
@@ -177,105 +177,105 @@ msgstr ""
177
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
178
 
179
  #. translators: %s: Ad Inserter
180
- #: ad-inserter.php:2233
181
  msgid "Rate %s"
182
- msgstr "Oceni %s"
183
 
184
- #: ad-inserter.php:2238
185
  msgid "I already did."
186
  msgstr "Sem že."
187
 
188
- #: ad-inserter.php:2252
189
  msgctxt "Menu item"
190
  msgid "Settings"
191
  msgstr "Nastavitve"
192
 
193
  #. translators: %s: Ad Inserter
194
- #: ad-inserter.php:2326
195
  msgctxt "Meta box name"
196
  msgid "%s Individual Exceptions"
197
  msgstr "Posamezne Izjeme za %s"
198
 
199
- #: ad-inserter.php:2355 ad-inserter.php:7951 class.php:1967
200
  #: includes/preview.php:1966 includes/preview.php:2010
201
- #: includes/preview.php:2047 settings.php:3347 strings.php:3
202
  msgid "Block"
203
  msgstr "Blok"
204
 
205
- #: ad-inserter.php:2356 settings.php:3348 settings.php:3422
206
  msgid "Name"
207
  msgstr "Ime"
208
 
209
- #: ad-inserter.php:2357 settings.php:3350
210
  msgid "Automatic insertion"
211
  msgstr "Samodejno vstavljanje"
212
 
213
- #: ad-inserter.php:2360
214
  msgid "Default insertion for pages"
215
  msgstr "Privzeto vstavljanje za strani"
216
 
217
- #: ad-inserter.php:2361
218
  msgid "Default insertion for posts"
219
  msgstr "Privzeto vstavljanje za prispevke"
220
 
221
  #. translators: For this post or page
222
- #: ad-inserter.php:2364
223
  msgctxt "Page"
224
  msgid "For this"
225
  msgstr "Za to"
226
 
227
- #: ad-inserter.php:2365
228
  msgctxt "Post"
229
  msgid "For this"
230
  msgstr "Za ta"
231
 
232
- #: ad-inserter.php:2373
233
  msgctxt "Enabled/disabled on all"
234
  msgid "pages"
235
  msgstr "straneh"
236
 
237
- #: ad-inserter.php:2374
238
  msgctxt "Default insertion for"
239
  msgid "pages"
240
  msgstr "strani"
241
 
242
- #: ad-inserter.php:2378
243
  msgctxt "Enabled/disabled on all"
244
  msgid "posts"
245
  msgstr "prispevkih"
246
 
247
- #: ad-inserter.php:2379
248
  msgctxt "Default insertion for"
249
  msgid "posts"
250
  msgstr "prispevke"
251
 
252
- #: ad-inserter.php:2398 ad-inserter.php:2411 strings.php:156
253
  msgid "Enabled"
254
  msgstr "Omogočeno"
255
 
256
  #. translators: Menu items
257
- #: ad-inserter.php:2398 ad-inserter.php:2411 includes/functions.php:2117
258
  #: strings.php:16
259
  msgid "Disabled"
260
  msgstr "Onemogočeno"
261
 
262
  #. translators: Enabled on all pages or posts
263
- #: ad-inserter.php:2401
264
  msgid "Enabled on all"
265
  msgstr "Omogočeno na vseh"
266
 
267
  #. translators: Disabled on all pages or posts
268
- #: ad-inserter.php:2403
269
  msgid "Disabled on all"
270
  msgstr "Onemogočeno na vseh"
271
 
272
  #. translators: No individual exceptions enabled for pages or posts
273
- #: ad-inserter.php:2431
274
  msgid "No individual exceptions enabled for"
275
  msgstr "Ni omogočenih posameznih izjem za"
276
 
277
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
278
- #: ad-inserter.php:2436
279
  msgid ""
280
  "Default insertion for %1$s can be configured for each block on %2$s page - "
281
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
@@ -285,7 +285,7 @@ msgstr ""
285
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
286
  "strani</strong>.<br />"
287
 
288
- #: ad-inserter.php:2441
289
  msgid ""
290
  "Default value is <strong>blank</strong> and means no individual exceptions "
291
  "(even if previously defined here).<br />"
@@ -293,7 +293,7 @@ msgstr ""
293
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
294
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
295
 
296
- #: ad-inserter.php:2444
297
  msgctxt "Pages"
298
  msgid ""
299
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -302,7 +302,7 @@ msgstr ""
302
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
303
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
304
 
305
- #: ad-inserter.php:2445
306
  msgctxt "Posts"
307
  msgid ""
308
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -311,61 +311,61 @@ msgstr ""
311
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
312
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
313
 
314
- #: ad-inserter.php:2447
315
  msgid "For more information check page %s"
316
  msgstr "Za več informacij poglejte stran %s"
317
 
318
  #. translators: Ad Inserter Exceptions documentation page
319
- #: ad-inserter.php:2449
320
  msgid "Individual Exceptions"
321
  msgstr "Posamezne Izjeme"
322
 
323
- #: ad-inserter.php:2494
324
  msgid "STATIC PAGE"
325
  msgstr "STATIČNA STRAN"
326
 
327
- #: ad-inserter.php:2497
328
  msgid "POST"
329
  msgstr "PRISPEVEK"
330
 
331
- #: ad-inserter.php:2500
332
  msgid "HOMEPAGE"
333
  msgstr "DOMAČA STRAN"
334
 
335
- #: ad-inserter.php:2503
336
  msgid "CATEGORY PAGE"
337
  msgstr "STRAN KATEGORIJE"
338
 
339
- #: ad-inserter.php:2506
340
  msgid "SEARCH PAGE"
341
  msgstr "STRAN ISKANJE"
342
 
343
- #: ad-inserter.php:2509
344
  msgid "ARCHIVE PAGE"
345
  msgstr "STRAN ARHIVA"
346
 
347
- #: ad-inserter.php:2512
348
  msgid "ERROR 404 PAGE"
349
  msgstr "STRAN NAPAKA 404"
350
 
351
- #: ad-inserter.php:2515
352
  msgid "AJAX CALL"
353
  msgstr "AJAX KLIC"
354
 
355
- #: ad-inserter.php:2518
356
  msgid "UNKNOWN PAGE TYPE"
357
  msgstr "NEZNAN TIP STRANI"
358
 
359
- #: ad-inserter.php:2535
360
  msgid "Click to delete ad blocking detection cokies"
361
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
362
 
363
- #: ad-inserter.php:2536
364
  msgid "AD BLOCKING STATUS UNKNOWN"
365
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
366
 
367
  #. translators: %s: AdSense Auto Ads
368
- #: ad-inserter.php:2560
369
  msgid ""
370
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
371
  "positions"
@@ -373,11 +373,11 @@ msgstr ""
373
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
374
  "položaje"
375
 
376
- #: ad-inserter.php:2699
377
  msgid "Code for insertion"
378
  msgstr "Koda za vstavljanje"
379
 
380
- #: ad-inserter.php:2699
381
  msgid "character"
382
  msgid_plural "characters"
383
  msgstr[0] "znak"
@@ -385,16 +385,16 @@ msgstr[1] "znaka"
385
  msgstr[2] "znaki"
386
  msgstr[3] "znakov"
387
 
388
- #: ad-inserter.php:2742
389
  msgid "Header code"
390
  msgstr "Koda v glavi"
391
 
392
- #: ad-inserter.php:2742
393
  msgctxt "Header code"
394
  msgid "DISABLED"
395
  msgstr "ONEMOGOČENA"
396
 
397
- #: ad-inserter.php:2742 ad-inserter.php:2960
398
  msgid "character inserted"
399
  msgid_plural "characters inserted"
400
  msgstr[0] "znak vstavljen"
@@ -402,43 +402,43 @@ msgstr[1] "znaka vstavljena"
402
  msgstr[2] "znaki vstavljeni"
403
  msgstr[3] "znakov vstavljenih"
404
 
405
- #: ad-inserter.php:2775
406
  msgid "Automatically placed by AdSense Auto ads code"
407
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
408
 
409
- #: ad-inserter.php:2960
410
  msgid "Footer code"
411
  msgstr "Koda v nogi"
412
 
413
- #: ad-inserter.php:2960
414
  msgctxt "Footer code"
415
  msgid "DISABLED"
416
  msgstr "ONEMOGOČENA"
417
 
418
- #: ad-inserter.php:2966
419
  msgid "JAVASCRIPT NOT WORKING"
420
  msgstr "JAVASCRIPT NE DELA"
421
 
422
- #: ad-inserter.php:2966
423
  msgid "NO JAVASCRIPT ERRORS"
424
  msgstr "BREZ JAVASCRIPT NAPAK"
425
 
426
- #: ad-inserter.php:2966
427
  msgid "JAVASCRIPT ERRORS"
428
  msgstr "JAVASCRIPT NAPAKE"
429
 
430
  #. translators: block name (block with default settings)
431
- #: ad-inserter.php:5026
432
  msgctxt "Block name"
433
  msgid "Default"
434
  msgstr "Privzeti"
435
 
436
  #. translators: %s: Ad Inserter
437
- #: ad-inserter.php:5590
438
  msgid "Error importing %s settings."
439
  msgstr "Napaka pri uvozu %s nastavitev."
440
 
441
- #: ad-inserter.php:5591
442
  msgid "Error importing settings for block"
443
  msgid_plural "Error importing settings for blocks:"
444
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -446,15 +446,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
446
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
447
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
448
 
449
- #: ad-inserter.php:5640
450
  msgid "Settings saved."
451
  msgstr "Nastavitve shranjene."
452
 
453
- #: ad-inserter.php:5725
454
  msgid "Settings cleared."
455
  msgstr "Nastavitve ponastavljene."
456
 
457
- #: ad-inserter.php:6070 ad-inserter.php:6072 ad-inserter.php:6095
458
  msgid "word"
459
  msgid_plural "words"
460
  msgstr[0] "beseda"
@@ -462,38 +462,38 @@ msgstr[1] "besedi"
462
  msgstr[2] "besede"
463
  msgstr[3] "besed"
464
 
465
- #: ad-inserter.php:6109 ad-inserter.php:6221
466
  msgid "HTML TAGS REMOVED"
467
  msgstr "HTML ZNAČKE ODSTRANJENE"
468
 
469
- #: ad-inserter.php:6297
470
  msgid "BEFORE COMMENTS"
471
  msgstr "PRED KOMENTARJI"
472
 
473
- #: ad-inserter.php:6405
474
  msgid "AFTER COMMENTS"
475
  msgstr "PO KOMETARJIH"
476
 
477
- #: ad-inserter.php:6468
478
  msgid "BETWEEN COMMENTS"
479
  msgstr "MED KOMENTARJI"
480
 
481
- #: ad-inserter.php:7598
482
  msgid "requires WordPress 4.0 or newer"
483
  msgstr "potrebuje WordPress 4.0 ali novejši"
484
 
485
- #: ad-inserter.php:7598
486
  msgid "Please update!"
487
  msgstr "Prosimo, posodobite!"
488
 
489
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
490
  #. name with HTML tags will be added)
491
- #: ad-inserter.php:7824
492
  msgid "Thank you for installing"
493
  msgstr "Hvala za namestitev vtičnika"
494
 
495
  #. translators: Opt-in message: %s: HTML tags
496
- #: ad-inserter.php:7826
497
  msgid ""
498
  "We would like to %s track its usage %s on your site. This is completely "
499
  "optional and can be disabled at any time."
@@ -501,7 +501,7 @@ msgstr ""
501
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
502
  "izbirno in se lahko izključi kadarkoli."
503
 
504
- #: ad-inserter.php:7828
505
  msgid ""
506
  "We don't record any sensitive data, only information regarding the WordPress "
507
  "environment and plugin usage, which will help us to make improvements to the "
@@ -511,7 +511,7 @@ msgstr ""
511
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
512
 
513
  #. translators: Deactivation message: %s: HTML tags
514
- #: ad-inserter.php:7865
515
  msgid ""
516
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
517
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -522,49 +522,49 @@ msgstr ""
522
  "nam %s in poskušali vam bomo pomagati."
523
 
524
  #. translators: %s: Ad Inserter
525
- #: ad-inserter.php:7908
526
  msgid "%s block."
527
  msgstr "%s blok."
528
 
529
  #. translators: widget title
530
- #: ad-inserter.php:7924 ad-inserter.php:7960
531
  msgid "Processing log"
532
  msgstr "Dnevnik procesiranja"
533
 
534
  #. translators: widget title
535
- #: ad-inserter.php:7926 ad-inserter.php:7961
536
  msgid "Dummy widget"
537
  msgstr "Prazen gradnik"
538
 
539
  #. translators: widget title
540
- #: ad-inserter.php:7928 ad-inserter.php:7959
541
  msgid "Debugging tools"
542
  msgstr "Orodja za razhroščevanje"
543
 
544
  #. translators: block status (widget title)
545
- #: ad-inserter.php:7935
546
  msgctxt "block"
547
  msgid "PAUSED"
548
  msgstr "USTAVLJEN"
549
 
550
- #: ad-inserter.php:7936
551
  msgid "WIDGET DISABLED"
552
  msgstr "GRADNIK ONEMOGOČEN"
553
 
554
- #: ad-inserter.php:7937
555
  msgid "Unknown block"
556
  msgstr "Neznan blok"
557
 
558
- #: ad-inserter.php:7946 includes/functions.php:2630 settings.php:1033
559
  msgid "Title"
560
  msgstr "Naslov"
561
 
562
- #: ad-inserter.php:7968
563
  msgctxt "Widget"
564
  msgid "Sticky"
565
  msgstr "Lepljiv"
566
 
567
- #: ad-inserter.php:8017
568
  msgid ""
569
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
570
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -573,7 +573,7 @@ msgstr ""
573
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
574
  "Inserter Pro."
575
 
576
- #: ad-inserter.php:8018
577
  msgid ""
578
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
579
  "will clear all settings that are available only in the Pro version "
@@ -608,11 +608,11 @@ msgstr "Pred prispevkom"
608
  msgid "After post"
609
  msgstr "Za prispevkom"
610
 
611
- #: class.php:1957 settings.php:1619 settings.php:3354
612
  msgid "Widget"
613
  msgstr "Gradnik"
614
 
615
- #: class.php:1962 settings.php:3352
616
  msgid "PHP function call"
617
  msgstr "Klic PHP funkcije"
618
 
@@ -702,7 +702,7 @@ msgctxt "JavaScript"
702
  msgid "script"
703
  msgstr "skripta"
704
 
705
- #: class.php:3042 settings.php:1888
706
  msgid "for"
707
  msgstr "za"
708
 
@@ -821,7 +821,7 @@ msgstr ""
821
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
822
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
823
 
824
- #: includes/functions.php:420 settings.php:1189 settings.php:2444
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
@@ -872,7 +872,7 @@ msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
872
  msgid "%s license overused. Continue?"
873
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
874
 
875
- #: includes/functions.php:507 settings.php:1958
876
  msgid "Save Settings"
877
  msgstr "Sharani Nastavitve"
878
 
@@ -948,7 +948,7 @@ msgstr "Sledenje je globalno onemogočeno"
948
  msgid "Tracking for this block is disabled"
949
  msgstr "Sledenje za ta blok je onemogočeno"
950
 
951
- #: includes/functions.php:732 settings.php:3115 settings.php:3151
952
  #: strings.php:209
953
  msgid "Loading..."
954
  msgstr "Nalagam..."
@@ -1240,8 +1240,8 @@ msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1240
  msgid "Expired"
1241
  msgstr "Poteklo"
1242
 
1243
- #: includes/functions.php:2112 settings.php:1272 settings.php:1287
1244
- #: settings.php:1874
1245
  msgid "and"
1246
  msgstr "in"
1247
 
@@ -1282,13 +1282,13 @@ msgstr "Oznaka oglasa v iframe-u"
1282
  msgid "Preview iframe code"
1283
  msgstr "Predpreglej kodo iframe"
1284
 
1285
- #: includes/functions.php:2165 includes/preview.php:1964 settings.php:949
1286
- #: settings.php:2506
1287
  msgid "Preview"
1288
  msgstr "Predogled"
1289
 
1290
  #: includes/functions.php:2179 includes/functions.php:3821
1291
- #: includes/functions.php:3884 settings.php:1991
1292
  msgid "Ad Blocking"
1293
  msgstr "Blokiranje Oglasov"
1294
 
@@ -1480,7 +1480,7 @@ msgstr ""
1480
  msgid "Are you sure you want to clear all exceptions for block"
1481
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1482
 
1483
- #: includes/functions.php:2618 settings.php:1036
1484
  msgid "Clear all exceptions for block"
1485
  msgstr "Pobriši vse izjeme za blok"
1486
 
@@ -1492,7 +1492,7 @@ msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1492
  msgid "Clear all exceptions for all blocks"
1493
  msgstr "Pobriši vse izjeme za vse bloke"
1494
 
1495
- #: includes/functions.php:2630 settings.php:3424
1496
  msgid "Type"
1497
  msgstr "Vrsta"
1498
 
@@ -1501,7 +1501,7 @@ msgid "View"
1501
  msgstr "Poglej"
1502
 
1503
  #: includes/functions.php:2649 includes/placeholders.php:346
1504
- #: includes/preview.php:2271 settings.php:1175
1505
  msgid "Edit"
1506
  msgstr "Uredi"
1507
 
@@ -1567,7 +1567,7 @@ msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1567
  msgid "Main site settings used for all blogs"
1568
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1569
 
1570
- #: includes/functions.php:2740 settings.php:2402
1571
  msgid "Ad Blocking Detection"
1572
  msgstr "Zaznavanje Blokiranja Oglasov"
1573
 
@@ -1727,7 +1727,7 @@ msgstr "Zapri urejevalnik polnila"
1727
  msgid "Placeholder"
1728
  msgstr "Polnilo"
1729
 
1730
- #: includes/placeholders.php:356 settings.php:803 settings.php:3425
1731
  msgid "Size"
1732
  msgstr "Velikost"
1733
 
@@ -1860,11 +1860,11 @@ msgstr "Prekliči"
1860
  msgid "Ad Blocking Detected Message Preview"
1861
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1862
 
1863
- #: includes/preview-adb.php:348 settings.php:2519
1864
  msgid "Message CSS"
1865
  msgstr "CSS sporočila"
1866
 
1867
- #: includes/preview-adb.php:353 settings.php:2527
1868
  msgid "Overlay CSS"
1869
  msgstr "CSS prevleke"
1870
 
@@ -1904,9 +1904,10 @@ msgstr "div za ovijanje"
1904
  msgid "background"
1905
  msgstr "ozadje"
1906
 
1907
- #: includes/preview.php:2075 includes/preview.php:2226
1908
- msgid "Alignment and style"
1909
- msgstr "Poravnava in slog"
 
1910
 
1911
  #: includes/preview.php:2143
1912
  msgid "Horizontal margin"
@@ -2143,14 +2144,18 @@ msgid "Debugging functions enabled - some code is not inserted"
2143
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
2144
 
2145
  #: settings.php:249
2146
- msgid "Option Name"
2147
- msgstr "Ime Različice"
2148
 
2149
- #: settings.php:255
 
 
 
 
2150
  msgid "Share"
2151
  msgstr "Delež"
2152
 
2153
- #: settings.php:258
2154
  msgid ""
2155
  "Option share in percents - 0 means option is disabled, if share for one "
2156
  "option is not defined it will be calculated automatically. Leave all share "
@@ -2160,11 +2165,11 @@ msgstr ""
2160
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
2161
  "prazne za enakomerno porazdelitev deležev različic."
2162
 
2163
- #: settings.php:261
2164
  msgid "Time"
2165
  msgstr "Čas"
2166
 
2167
- #: settings.php:264
2168
  msgid ""
2169
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2170
  "Leave all time fields empty for no timed rotation."
@@ -2172,148 +2177,152 @@ msgstr ""
2172
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
2173
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
2174
 
2175
- #: settings.php:416
2176
  msgid "General Settings"
2177
  msgstr "Splošne Nastavitve"
2178
 
2179
- #: settings.php:591 settings.php:2278 settings.php:2336 settings.php:2499
2180
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2181
  msgstr ""
2182
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2183
 
2184
- #: settings.php:598
2185
  msgid "Toggle tools"
2186
  msgstr "Preklopi orodja"
2187
 
2188
- #: settings.php:606
2189
  msgid "Process PHP code in block"
2190
  msgstr "Procesiraj PHP kodo v bloku"
2191
 
2192
- #: settings.php:613
2193
  msgid "Disable insertion of this block"
2194
  msgstr "Onemogoči vstavljanje tega bloka"
2195
 
2196
- #: settings.php:625
2197
  msgid "Toggle code generator"
2198
  msgstr "Preklopi generator kode"
2199
 
2200
- #: settings.php:629
2201
  msgid "Toggle rotation editor"
2202
  msgstr "Preklopi urejevalnik rotacije"
2203
 
2204
- #: settings.php:633
2205
  msgid "Open visual HTML editor"
2206
  msgstr "Odpri vizualni HTML urejevalnik"
2207
 
2208
- #: settings.php:643
2209
  msgid "Show AdSense ad units"
2210
  msgstr "Pokaži oglasne enote AdSense"
2211
 
2212
- #: settings.php:652
2213
  msgid "Clear block"
2214
  msgstr "Počisti blok"
2215
 
2216
- #: settings.php:657 settings.php:3319
2217
  msgid "Copy block"
2218
  msgstr "Kopiraj blok"
2219
 
2220
- #: settings.php:661
2221
  msgid "Paste name"
2222
  msgstr "Prilepi ime"
2223
 
2224
- #: settings.php:665
2225
  msgid "Paste code"
2226
  msgstr "Prilepi kodo"
2227
 
2228
- #: settings.php:669
2229
  msgid "Paste settings"
2230
  msgstr "Prilepi nastavitve"
2231
 
2232
- #: settings.php:673
2233
  msgid "Paste block (name, code and settings)"
2234
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2235
 
2236
- #: settings.php:692
 
 
 
 
2237
  msgid "Remove option"
2238
  msgstr "Odstrani različico"
2239
 
2240
- #: settings.php:696
2241
  msgid "Add option"
2242
  msgstr "Dodaj različico"
2243
 
2244
- #: settings.php:711
2245
  msgid "Import code"
2246
  msgstr "Uvozi kodo"
2247
 
2248
- #: settings.php:715
2249
  msgid "Generate code"
2250
  msgstr "Generiraj kodo"
2251
 
2252
- #: settings.php:720
2253
  msgid "Banner"
2254
  msgstr "Pasica"
2255
 
2256
- #: settings.php:731
2257
  msgid "Image"
2258
  msgstr "Slika"
2259
 
2260
- #: settings.php:739
2261
  msgid "Link"
2262
  msgstr "Povezava"
2263
 
2264
- #: settings.php:750
2265
  msgid "Open link in a new tab"
2266
  msgstr "Odpri povezavo v novem zavihku"
2267
 
2268
- #: settings.php:751
2269
  msgid "Select Image"
2270
  msgstr "Izberi Sliko"
2271
 
2272
- #: settings.php:752
2273
  msgid "Select Placeholder"
2274
  msgstr "Izberi Polnilo"
2275
 
2276
- #: settings.php:764
2277
  msgid "Comment"
2278
  msgstr "Komentar"
2279
 
2280
- #: settings.php:773
2281
  msgctxt "AdSense"
2282
  msgid "Publisher ID"
2283
  msgstr "ID založnika"
2284
 
2285
- #: settings.php:782
2286
  msgctxt "AdSense"
2287
  msgid "Ad Slot ID"
2288
  msgstr "ID mesta"
2289
 
2290
- #: settings.php:791
2291
  msgid "Ad Type"
2292
  msgstr "Vrsta"
2293
 
2294
- #: settings.php:815
2295
  msgid "AMP Ad"
2296
  msgstr "AMP Oglas"
2297
 
2298
- #: settings.php:832
2299
  msgid "Show ad units from your AdSense account"
2300
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2301
 
2302
- #: settings.php:832
2303
  msgid "AdSense ad units"
2304
  msgstr "Oglasne enote AdSense"
2305
 
2306
- #: settings.php:849
2307
  msgctxt "AdSense"
2308
  msgid "Layout"
2309
  msgstr "Postavitev"
2310
 
2311
- #: settings.php:858
2312
  msgctxt "AdSense"
2313
  msgid "Layout Key"
2314
  msgstr "Ključ postavitve"
2315
 
2316
- #: settings.php:945
2317
  msgid ""
2318
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2319
  "Cookie or Referer (domain)"
@@ -2321,28 +2330,28 @@ msgstr ""
2321
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2322
  "parametrov, Piškotkov ali napotiteljev (domen)"
2323
 
2324
- #: settings.php:945
2325
  msgid "Lists"
2326
  msgstr "Seznami"
2327
 
2328
- #: settings.php:946
2329
  msgid "Widget, Shortcode and PHP function call"
2330
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2331
 
2332
- #: settings.php:946
2333
  msgid "Manual"
2334
  msgstr "Ročno"
2335
 
2336
- #: settings.php:947
2337
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2338
  msgstr ""
2339
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2340
 
2341
- #: settings.php:947
2342
  msgid "Devices"
2343
  msgstr "Naprave"
2344
 
2345
- #: settings.php:948
2346
  msgid ""
2347
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2348
  "feeds), Filter, Scheduling, General tag"
@@ -2350,15 +2359,15 @@ msgstr ""
2350
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2351
  "RSS), Filter, Urnik, Splošna oznaka"
2352
 
2353
- #: settings.php:948
2354
  msgid "Misc"
2355
  msgstr "Razno"
2356
 
2357
- #: settings.php:949
2358
  msgid "Preview code and alignment"
2359
  msgstr "Predogled kode in poravnave"
2360
 
2361
- #: settings.php:952 settings.php:1956
2362
  msgid ""
2363
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2364
  "editor is active before saving settings."
@@ -2366,15 +2375,15 @@ msgstr ""
2366
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2367
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2368
 
2369
- #: settings.php:954
2370
  msgid "Save All Settings"
2371
  msgstr "Sharani Vse Nastavitve"
2372
 
2373
- #: settings.php:965
2374
  msgid "Enable insertion on posts"
2375
  msgstr "Omogoči vstavljanje na prispevkih"
2376
 
2377
- #: settings.php:967 settings.php:973
2378
  msgid ""
2379
  "Individual post exceptions (if enabled here) can be configured in post "
2380
  "editor. Leave blank for no individual post exceptions."
@@ -2382,11 +2391,11 @@ msgstr ""
2382
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2383
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2384
 
2385
- #: settings.php:973 settings.php:3002
2386
  msgid "Posts"
2387
  msgstr "Prispevki"
2388
 
2389
- #: settings.php:977 settings.php:978
2390
  msgid ""
2391
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2392
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -2396,27 +2405,27 @@ msgstr ""
2396
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2397
  "lahko odvisni od ročic, ki jih tema uporablja)"
2398
 
2399
- #: settings.php:978 settings.php:3004
2400
  msgid "Homepage"
2401
  msgstr "Domača stran"
2402
 
2403
- #: settings.php:982 settings.php:983
2404
  msgid "Enable insertion on category blog pages (including sub-pages)"
2405
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2406
 
2407
- #: settings.php:983 settings.php:3005
2408
  msgid "Category pages"
2409
  msgstr "Strani kategorij"
2410
 
2411
- #: settings.php:986
2412
  msgid "Check theme for available positions for automatic insertion"
2413
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2414
 
2415
- #: settings.php:993
2416
  msgid "Enable insertion on static pages"
2417
  msgstr "Omogoči vstavljanje na statičnih straneh"
2418
 
2419
- #: settings.php:995 settings.php:1001
2420
  msgid ""
2421
  "Individual static page exceptions (if enabled here) can be configured in "
2422
  "page editor. Leave blank for no individual page exceptions."
@@ -2425,45 +2434,45 @@ msgstr ""
2425
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2426
  "izjem."
2427
 
2428
- #: settings.php:1001 settings.php:3003
2429
  msgid "Static pages"
2430
  msgstr "Statične strani"
2431
 
2432
- #: settings.php:1005 settings.php:1006
2433
  msgid "Enable insertion on search blog pages"
2434
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2435
 
2436
- #: settings.php:1006 settings.php:3007
2437
  msgid "Search pages"
2438
  msgstr "Iskalne strani"
2439
 
2440
- #: settings.php:1010 settings.php:1011
2441
  msgid "Enable insertion on tag or archive blog pages"
2442
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2443
 
2444
- #: settings.php:1011
2445
  msgid "Tag / Archive pages"
2446
  msgstr "Strani oznak / arhiva"
2447
 
2448
- #: settings.php:1017
2449
  msgid "Toggle list of individual exceptions"
2450
  msgstr "Preklopi seznam posameznih izjem"
2451
 
2452
- #: settings.php:1033
2453
  msgctxt "post"
2454
  msgid "Type"
2455
  msgstr "Vrsta"
2456
 
2457
  #. translators: %d: block number
2458
- #: settings.php:1035
2459
  msgid "Are you sure you want to clear all exceptions for block %d?"
2460
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2461
 
2462
- #: settings.php:1067 settings.php:1215 settings.php:1749
2463
  msgid "Insertion"
2464
  msgstr "Vstavljanje"
2465
 
2466
- #: settings.php:1105
2467
  msgid ""
2468
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2469
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2479,7 +2488,7 @@ msgstr ""
2479
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2480
  "število pomeni štetje z nasprotne smeri"
2481
 
2482
- #: settings.php:1106
2483
  msgid ""
2484
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2485
  "means every N images, empty means all images, 0 means random image, value "
@@ -2494,7 +2503,7 @@ msgstr ""
2494
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2495
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2496
 
2497
- #: settings.php:1119
2498
  msgid ""
2499
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2500
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -2503,7 +2512,7 @@ msgstr ""
2503
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2504
  "izvlečki"
2505
 
2506
- #: settings.php:1120
2507
  msgid ""
2508
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2509
  "numbers, %N means every N posts, empty means all posts"
@@ -2512,7 +2521,7 @@ msgstr ""
2512
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2513
  "prispevki"
2514
 
2515
- #: settings.php:1121
2516
  msgid ""
2517
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2518
  "numbers, %N means every N comments, empty means all comments"
@@ -2521,48 +2530,44 @@ msgstr ""
2521
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2522
  "vsi komentarji"
2523
 
2524
- #: settings.php:1128
2525
  msgid "Toggle paragraph counting settings"
2526
  msgstr "Preklopi nastavitve za štetje odstavkov"
2527
 
2528
- #: settings.php:1129
2529
  msgid "Toggle paragraph clearance settings"
2530
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2531
 
2532
- #: settings.php:1132
2533
  msgid "Toggle insertion filter settings"
2534
  msgstr "Preklopi nastavitve filtra vstavljanja"
2535
 
2536
- #: settings.php:1136 settings.php:3351
2537
- msgid "Alignment"
2538
- msgstr "Poravnava"
2539
-
2540
- #: settings.php:1150
2541
  msgid "Toggle insertion and alignment icons"
2542
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2543
 
2544
- #: settings.php:1164
2545
  msgid "Custom CSS code for the wrapping div"
2546
  msgstr "CSS koda po meri za div za ovijanje"
2547
 
2548
- #: settings.php:1167 settings.php:1168 settings.php:1169 settings.php:1170
2549
- #: settings.php:1171 settings.php:1172
2550
  msgid "CSS code for the wrapping div, click to edit"
2551
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
2552
 
2553
- #: settings.php:1185
2554
  msgid "HTML element"
2555
  msgstr "HTML element"
2556
 
2557
- #: settings.php:1198
2558
  msgid "HTML element selector or comma separated list of selectors"
2559
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2560
 
2561
- #: settings.php:1204 settings.php:2412
2562
  msgid "Action"
2563
  msgstr "Akcija"
2564
 
2565
- #: settings.php:1216
2566
  msgid ""
2567
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2568
  "Server-side insertion inserts block when the page is generated but needs "
@@ -2572,11 +2577,11 @@ msgstr ""
2572
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
2573
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
2574
 
2575
- #: settings.php:1226
2576
  msgid "JavaScript code position"
2577
  msgstr "Položaj JavaScript kode"
2578
 
2579
- #: settings.php:1227
2580
  msgid ""
2581
  "Page position where the JavaScript code for client-side insertion will be "
2582
  "inserted. Should be after the HTML element if not waiting for DOM ready."
@@ -2585,45 +2590,45 @@ msgstr ""
2585
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
2586
  "DOM."
2587
 
2588
- #: settings.php:1242
2589
  msgid "Count"
2590
  msgstr "Štej"
2591
 
2592
- #: settings.php:1248
2593
  msgid "paragraphs with tags"
2594
  msgstr "odstavke z značkami"
2595
 
2596
- #: settings.php:1254
2597
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2598
  msgstr ""
2599
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
2600
 
2601
- #: settings.php:1263
2602
  msgid "that have between"
2603
  msgstr "ki imajo med"
2604
 
2605
- #: settings.php:1269
2606
  msgid "Minimum number of paragraph words, leave empty for no limit"
2607
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
2608
 
2609
- #: settings.php:1278
2610
  msgid "Maximum number of paragraph words, leave empty for no limit"
2611
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
2612
 
2613
- #: settings.php:1281 settings.php:1876
2614
  msgid "words"
2615
  msgstr "besed"
2616
 
2617
- #: settings.php:1296 settings.php:1362 settings.php:1388
2618
  msgid "Comma separated texts"
2619
  msgstr "Z vejico ločena besedila"
2620
 
2621
- #: settings.php:1305
2622
  msgid "Minimum number of paragraphs"
2623
  msgstr "Najmanjše število odstavkov"
2624
 
2625
  #. translators: %s: list of HTML tags
2626
- #: settings.php:1320
2627
  msgid ""
2628
  "Count also paragraphs inside %s elements - defined on general plugin "
2629
  "settings page - tab &#9881; / tab General"
@@ -2631,15 +2636,15 @@ msgstr ""
2631
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
2632
  "nastavitev vtičnika - zavihek &#9881; / zavihek Splošno"
2633
 
2634
- #: settings.php:1320
2635
  msgid "Count inside special elements"
2636
  msgstr "Štej znotraj posebnih elementov"
2637
 
2638
- #: settings.php:1331
2639
  msgid "Minimum number of words in paragraphs above"
2640
  msgstr "Najmanjše število besed v odstavkih zgoraj"
2641
 
2642
- #: settings.php:1337
2643
  msgid ""
2644
  "Used only with automatic insertion After paragraph and empty paragraph "
2645
  "numbers"
@@ -2647,128 +2652,128 @@ msgstr ""
2647
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
2648
  "številkami odstavkov"
2649
 
2650
- #: settings.php:1347 settings.php:1373
2651
  msgid "In"
2652
  msgstr "V"
2653
 
2654
- #: settings.php:1353
2655
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2656
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
2657
 
2658
- #: settings.php:1356
2659
  msgid "paragraphs above avoid"
2660
  msgstr "odstavkih zgoraj se izogni"
2661
 
2662
- #: settings.php:1379
2663
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2664
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
2665
 
2666
- #: settings.php:1382
2667
  msgid "paragraphs below avoid"
2668
  msgstr "odstavkih spodaj se izogni"
2669
 
2670
- #: settings.php:1398
2671
  msgid "If text is found"
2672
  msgstr "Če je besedilo najdeno"
2673
 
2674
- #: settings.php:1405
2675
  msgid "check up to"
2676
  msgstr "preveri do"
2677
 
2678
- #: settings.php:1413
2679
  msgctxt "check up to"
2680
  msgid "paragraphs"
2681
  msgstr "odstavkov"
2682
 
2683
- #: settings.php:1429
2684
  msgid "Categories"
2685
  msgstr "Kategorije"
2686
 
2687
- #: settings.php:1432
2688
  msgid "Toggle category editor"
2689
  msgstr "Preklopi urejevalnik kategorij"
2690
 
2691
- #: settings.php:1435
2692
  msgid "Comma separated category slugs"
2693
  msgstr "Z vejico ločeni ključi kategorij"
2694
 
2695
- #: settings.php:1439
2696
  msgid "Blacklist categories"
2697
  msgstr "Črni seznam kategorij"
2698
 
2699
- #: settings.php:1443
2700
  msgid "Whitelist categories"
2701
  msgstr "Beli seznam kategorij"
2702
 
2703
- #: settings.php:1455
2704
  msgid "Tags"
2705
  msgstr "Oznake"
2706
 
2707
- #: settings.php:1458
2708
  msgid "Toggle tag editor"
2709
  msgstr "Preklopi urejevalnik oznak"
2710
 
2711
- #: settings.php:1461
2712
  msgid "Comma separated tag slugs"
2713
  msgstr "Z vejico ločeni ključi oznak"
2714
 
2715
- #: settings.php:1465
2716
  msgid "Blacklist tags"
2717
  msgstr "Črni seznam oznak"
2718
 
2719
- #: settings.php:1469
2720
  msgid "Whitelist tags"
2721
  msgstr "Beli seznam oznak"
2722
 
2723
- #: settings.php:1481
2724
  msgid "Taxonomies"
2725
  msgstr "Taksonomije"
2726
 
2727
- #: settings.php:1484
2728
  msgid "Toggle taxonomy editor"
2729
  msgstr "Preklopi urejevalnik taksonomij"
2730
 
2731
- #: settings.php:1487
2732
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2733
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
2734
 
2735
- #: settings.php:1491
2736
  msgid "Blacklist taxonomies"
2737
  msgstr "Črni seznam taksonomij"
2738
 
2739
- #: settings.php:1495
2740
  msgid "Whitelist taxonomies"
2741
  msgstr "Beli seznam taksonomij"
2742
 
2743
- #: settings.php:1507
2744
  msgid "Post IDs"
2745
  msgstr "ID-ji prispevkov"
2746
 
2747
- #: settings.php:1510
2748
  msgid "Toggle post/page ID editor"
2749
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
2750
 
2751
- #: settings.php:1513
2752
  msgid "Comma separated post/page IDs"
2753
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
2754
 
2755
- #: settings.php:1517
2756
  msgid "Blacklist IDs"
2757
  msgstr "Črni seznam ID-jev"
2758
 
2759
- #: settings.php:1521
2760
  msgid "Whitelist IDs"
2761
  msgstr "Beli seznam ID-jev"
2762
 
2763
- #: settings.php:1533
2764
  msgid "Urls"
2765
  msgstr "Url-ji"
2766
 
2767
- #: settings.php:1536
2768
  msgid "Toggle url editor"
2769
  msgstr "Preklopi urejevalnik url-jev"
2770
 
2771
- #: settings.php:1539
2772
  msgid ""
2773
  "Comma separated urls (page addresses) starting with / after domain name (e."
2774
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2780,23 +2785,23 @@ msgstr ""
2780
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
2781
  "začetek*. *url-vzorec*, *url-konec)"
2782
 
2783
- #: settings.php:1543
2784
  msgid "Blacklist urls"
2785
  msgstr "Črni seznam url-jev"
2786
 
2787
- #: settings.php:1547
2788
  msgid "Whitelist urls"
2789
  msgstr "Beli seznam url-jev"
2790
 
2791
- #: settings.php:1558
2792
  msgid "Url parameters"
2793
  msgstr "Url parametri"
2794
 
2795
- #: settings.php:1562
2796
  msgid "Toggle url parameter and cookie editor"
2797
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
2798
 
2799
- #: settings.php:1565
2800
  msgid ""
2801
  "Comma separated url query parameters or cookies with optional values (use "
2802
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -2805,23 +2810,23 @@ msgstr ""
2805
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
2806
  "'piškotek=vrednost')"
2807
 
2808
- #: settings.php:1569
2809
  msgid "Blacklist url parameters"
2810
  msgstr "Črni seznam url parametrov"
2811
 
2812
- #: settings.php:1573
2813
  msgid "Whitelist url parameters"
2814
  msgstr "Beli seznam url parametrov"
2815
 
2816
- #: settings.php:1584
2817
  msgid "Referrers"
2818
  msgstr "Napotitelji"
2819
 
2820
- #: settings.php:1587
2821
  msgid "Toggle referer editor"
2822
  msgstr "Preklopi urejevalnik napotiteljev"
2823
 
2824
- #: settings.php:1590
2825
  msgid ""
2826
  "Comma separated domains, use # for no referrer, you can also use partial "
2827
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -2829,28 +2834,28 @@ msgstr ""
2829
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
2830
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
2831
 
2832
- #: settings.php:1594
2833
  msgid "Blacklist referers"
2834
  msgstr "Črni seznam napotiteljev"
2835
 
2836
- #: settings.php:1598
2837
  msgid "Whitelist referers"
2838
  msgstr "Beli seznam napotiteljev"
2839
 
2840
- #: settings.php:1618
2841
  msgid "Enable widget for this block"
2842
  msgstr "Omogočite gradnik za ta blok"
2843
 
2844
- #: settings.php:1630
2845
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2846
  msgstr ""
2847
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2848
 
2849
- #: settings.php:1631 settings.php:3353
2850
  msgid "Shortcode"
2851
  msgstr "Kratka koda"
2852
 
2853
- #: settings.php:1646
2854
  msgid ""
2855
  "Enable PHP function call to insert this block at any position in theme file. "
2856
  "If function is disabled for block it will return empty string."
@@ -2859,66 +2864,66 @@ msgstr ""
2859
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
2860
  "prazen niz."
2861
 
2862
- #: settings.php:1647
2863
  msgid "PHP function"
2864
  msgstr "PHP funkcija"
2865
 
2866
- #: settings.php:1662
2867
  msgid "Client-side device detection"
2868
  msgstr "Zaznavanje naprave na strani klienta"
2869
 
2870
- #: settings.php:1663
2871
  msgid "Server-side device detection"
2872
  msgstr "Zaznavanje naprave na strani strežnika"
2873
 
2874
- #: settings.php:1670
2875
  msgid "Use client-side detection to"
2876
  msgstr "Uporabi zaznavanje na strani klienta in"
2877
 
2878
- #: settings.php:1672
2879
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2880
  msgstr ""
2881
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
2882
 
2883
  #. Translators: only on (the following devices): viewport names (devices)
2884
  #. listed
2885
- #: settings.php:1677
2886
  msgid "only on"
2887
  msgstr "samo na"
2888
 
2889
- #: settings.php:1705
2890
  msgid "Device min width %s px"
2891
  msgstr "Najmanjša širina naprave %s px"
2892
 
2893
- #: settings.php:1731
2894
  msgid "Use server-side detection to insert block only for"
2895
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
2896
 
2897
- #: settings.php:1750
2898
  msgid "Filter"
2899
  msgstr "Filter"
2900
 
2901
- #: settings.php:1751
2902
  msgid "Word Count"
2903
  msgstr "Število Besed"
2904
 
2905
- #: settings.php:1752
2906
  msgid "Scheduling"
2907
  msgstr "Urnik"
2908
 
2909
- #: settings.php:1753
2910
  msgid "Display"
2911
  msgstr "Prikaz"
2912
 
2913
- #: settings.php:1755 settings.php:1984
2914
  msgid "General"
2915
  msgstr "Splošno"
2916
 
2917
- #: settings.php:1767
2918
  msgid "Old settings for AMP pages detected"
2919
  msgstr "Zaznane stare nastavitve za AMP strani"
2920
 
2921
- #: settings.php:1767
2922
  msgid ""
2923
  "To insert different codes on normal and AMP pages separate them with "
2924
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -2929,48 +2934,48 @@ msgstr ""
2929
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
2930
  "separatorja)."
2931
 
2932
- #: settings.php:1767
2933
  msgid "AMP pages"
2934
  msgstr "AMP strani"
2935
 
2936
- #: settings.php:1772
2937
  msgid "Enable insertion for Ajax requests"
2938
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
2939
 
2940
- #: settings.php:1772
2941
  msgid "Ajax requests"
2942
  msgstr "Ajax zahteve"
2943
 
2944
- #: settings.php:1777
2945
  msgid "Enable insertion in RSS feeds"
2946
  msgstr "Omogoči vstavljanje v RSS virih"
2947
 
2948
- #: settings.php:1777
2949
  msgid "RSS Feed"
2950
  msgstr "RSS Vir"
2951
 
2952
- #: settings.php:1782
2953
  msgid "Enable insertion on page for Error 404: Page not found"
2954
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
2955
 
2956
- #: settings.php:1782
2957
  msgid "Error 404 page"
2958
  msgstr "Stran napake 404"
2959
 
2960
- #: settings.php:1794
2961
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2962
  msgstr ""
2963
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
2964
 
2965
- #: settings.php:1795
2966
  msgid "Max"
2967
  msgstr "Največ"
2968
 
2969
- #: settings.php:1795
2970
  msgid "insertions"
2971
  msgstr "vstavljanj"
2972
 
2973
- #: settings.php:1797
2974
  msgid ""
2975
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2976
  "tab General)"
@@ -2978,15 +2983,15 @@ msgstr ""
2978
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
2979
  "&#9881; / zavihek Splošno)"
2980
 
2981
- #: settings.php:1800 settings.php:2142
2982
  msgid "Max blocks per page"
2983
  msgstr "Največ blokov na stran"
2984
 
2985
- #: settings.php:1812
2986
  msgid "Insert for"
2987
  msgstr "Vstavi za"
2988
 
2989
- #: settings.php:1820
2990
  msgid ""
2991
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2992
  "currently active). Might speed up insertion on content pages when "
@@ -2996,26 +3001,26 @@ msgstr ""
2996
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
2997
  "filter the_content večkrat klican."
2998
 
2999
- #: settings.php:1823
3000
  msgid "Insert only in the loop"
3001
  msgstr "Vstavi samo v zanki"
3002
 
3003
- #: settings.php:1829
3004
  msgid ""
3005
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3006
  msgstr ""
3007
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3008
  "Rocket"
3009
 
3010
- #: settings.php:1829
3011
  msgid "Disable caching"
3012
  msgstr "Onemogoči predpomnjenje"
3013
 
3014
- #: settings.php:1841
3015
  msgid "Filter insertions"
3016
  msgstr "Filtriraj vstavljanja"
3017
 
3018
- #: settings.php:1844
3019
  msgid ""
3020
  "Filter multiple insertions by specifying wanted insertions for this block - "
3021
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3027,56 +3032,56 @@ msgstr ""
3027
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3028
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3029
 
3030
- #: settings.php:1847
3031
  msgid "using"
3032
  msgstr "z uporabo"
3033
 
3034
- #: settings.php:1866
3035
  msgid "Checked means specified calls are unwanted"
3036
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3037
 
3038
- #: settings.php:1866
3039
  msgid "Invert filter"
3040
  msgstr "Obrni filter"
3041
 
3042
- #: settings.php:1872
3043
  msgid "Post/Static page must have between"
3044
  msgstr "Prispevek/Statična stran mora imeti med"
3045
 
3046
- #: settings.php:1873
3047
  msgid "Minimum number of post/static page words, leave empty for no limit"
3048
  msgstr ""
3049
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3050
  "omejitev"
3051
 
3052
- #: settings.php:1875
3053
  msgid "Maximum number of post/static page words, leave empty for no limit"
3054
  msgstr ""
3055
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3056
  "omejitev"
3057
 
3058
- #: settings.php:1888
3059
  msgid "days after publishing"
3060
  msgstr "dni po objavi"
3061
 
3062
- #: settings.php:1890
3063
  msgid "Not available"
3064
  msgstr "Ni na razpolago"
3065
 
3066
- #: settings.php:1903 settings.php:2134
3067
  msgid "Ad label"
3068
  msgstr "Oznaka oglasa"
3069
 
3070
- #: settings.php:1922
3071
  msgid "General tag"
3072
  msgstr "Splošna oznaka"
3073
 
3074
- #: settings.php:1926
3075
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3076
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3077
 
3078
  #. translators: %s: HTML tags
3079
- #: settings.php:1935
3080
  msgid ""
3081
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3082
  "side device detection!"
@@ -3084,86 +3089,86 @@ msgstr ""
3084
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3085
  "potrebna za zaznavanje naprave na strani klienta!"
3086
 
3087
- #: settings.php:1947
3088
  msgid "Settings"
3089
  msgstr "Nastavitve"
3090
 
3091
- #: settings.php:1950
3092
  msgid "Settings timestamp"
3093
  msgstr "Časovni žig nastavitev"
3094
 
3095
- #: settings.php:1962
3096
  msgid "Are you sure you want to reset all settings?"
3097
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3098
 
3099
- #: settings.php:1962
3100
  msgid "Reset All Settings"
3101
  msgstr "Ponastavi Vse Nastavitve"
3102
 
3103
- #: settings.php:1985
3104
  msgid "Viewports"
3105
  msgstr "Pogledi"
3106
 
3107
- #: settings.php:1986
3108
  msgid "Hooks"
3109
  msgstr "Ročice"
3110
 
3111
- #: settings.php:1987
3112
  msgid "Header"
3113
  msgstr "Glava"
3114
 
3115
- #: settings.php:1988 strings.php:30
3116
  msgid "Footer"
3117
  msgstr "Noga"
3118
 
3119
- #: settings.php:1993
3120
  msgid "Debugging"
3121
  msgstr "Razhroščevanje"
3122
 
3123
- #: settings.php:2003
3124
  msgid "Plugin priority"
3125
  msgstr "Prednost vtičnika"
3126
 
3127
- #: settings.php:2011
3128
  msgid "Output buffering"
3129
  msgstr "Predpomnjenje izhoda"
3130
 
3131
- #: settings.php:2014
3132
  msgid "Needed for position Above header but may not work with all themes"
3133
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3134
 
3135
- #: settings.php:2022
3136
  msgid "Syntax highlighting theme"
3137
  msgstr "Tema za poudarjanje sintakse"
3138
 
3139
- #: settings.php:2029
3140
  msgctxt "no syntax highlighting themes"
3141
  msgid "None"
3142
  msgstr "Brez"
3143
 
3144
- #: settings.php:2030
3145
  msgid "No Syntax Highlighting"
3146
  msgstr "Brez Poudarjanja Sintakse"
3147
 
3148
- #: settings.php:2032
3149
  msgctxt "syntax highlighting themes"
3150
  msgid "Light"
3151
  msgstr "Svetle"
3152
 
3153
- #: settings.php:2047
3154
  msgctxt "syntax highlighting themes"
3155
  msgid "Dark"
3156
  msgstr "Temne"
3157
 
3158
- #: settings.php:2073
3159
  msgid "Min. user role for ind. exceptions editing"
3160
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3161
 
3162
- #: settings.php:2083
3163
  msgid "Sticky widget mode"
3164
  msgstr "Način za lepljive gradnike"
3165
 
3166
- #: settings.php:2086
3167
  msgid ""
3168
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3169
  "mode works with most themes but may reload ads on page load."
@@ -3172,19 +3177,19 @@ msgstr ""
3172
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3173
  "nalaganju strani."
3174
 
3175
- #: settings.php:2094
3176
  msgid "Sticky widget top margin"
3177
  msgstr "Zgornji rob za lepljiv gradnik"
3178
 
3179
- #: settings.php:2102
3180
  msgid "Dynamic blocks"
3181
  msgstr "Dinamični bloki"
3182
 
3183
- #: settings.php:2115
3184
  msgid "Functions for paragraph counting"
3185
  msgstr "Funkcije za štetje odstavkov"
3186
 
3187
- #: settings.php:2118
3188
  msgid ""
3189
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3190
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3193,15 +3198,15 @@ msgstr ""
3193
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3194
  "šteti."
3195
 
3196
- #: settings.php:2126
3197
  msgid "No paragraph counting inside"
3198
  msgstr "Ni štetja odstavkov znotraj"
3199
 
3200
- #: settings.php:2137
3201
  msgid "Label text or HTML code"
3202
  msgstr "Besedilo oznake ali HTML koda"
3203
 
3204
- #: settings.php:2145
3205
  msgid ""
3206
  "Maximum number of inserted blocks per page. You need to enable Max page "
3207
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3210,12 +3215,12 @@ msgstr ""
3210
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3211
  "omejitev."
3212
 
3213
- #: settings.php:2159
3214
  msgid "Plugin usage tracking"
3215
  msgstr "Sledenje uporabe vtičnika"
3216
 
3217
  #. translators: %s: Ad Inserter
3218
- #: settings.php:2162
3219
  msgid ""
3220
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3221
  "Only information regarding the WordPress environment and %s usage is "
@@ -3225,125 +3230,125 @@ msgstr ""
3225
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3226
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3227
 
3228
- #: settings.php:2180
3229
  msgid "CSS class name for the wrapping div"
3230
  msgstr "Ime CSS razreda za div za ovijanje"
3231
 
3232
- #: settings.php:2180
3233
  msgid "Block class name"
3234
  msgstr "Ime razreda za blok"
3235
 
3236
- #: settings.php:2184
3237
  msgid "Include general plugin block class"
3238
  msgstr "Vključi splošni razred vtičnika za blok"
3239
 
3240
- #: settings.php:2184
3241
  msgid "Block class"
3242
  msgstr "Razred bloka"
3243
 
3244
- #: settings.php:2189
3245
  msgid "Include block number class"
3246
  msgstr "Vključi razred številke bloka"
3247
 
3248
- #: settings.php:2189
3249
  msgid "Block number class"
3250
  msgstr "Razred številke bloka"
3251
 
3252
- #: settings.php:2194
3253
  msgid ""
3254
  "Instead of alignment classes generate inline alignment styles for blocks"
3255
  msgstr ""
3256
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3257
 
3258
- #: settings.php:2194
3259
  msgid "Inline styles"
3260
  msgstr "Medvrstični slogi"
3261
 
3262
- #: settings.php:2200
3263
  msgid "Preview of the block wrapping code"
3264
  msgstr "Predogled kode za ovijanje blokov"
3265
 
3266
- #: settings.php:2201
3267
  msgid "Wrapping div"
3268
  msgstr "div za ovijanje"
3269
 
3270
- #: settings.php:2202 settings.php:2602
3271
  msgid "BLOCK CODE"
3272
  msgstr "KODA BLOKA"
3273
 
3274
- #: settings.php:2210
3275
  msgid "Viewport Settings used for client-side device detection"
3276
  msgstr ""
3277
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3278
 
3279
  #. Translators: %d: viewport number
3280
- #: settings.php:2218
3281
  msgid "Viewport %d name"
3282
  msgstr "Ime pogleda %d"
3283
 
3284
- #: settings.php:2221
3285
  msgid "min width"
3286
  msgstr "najmanjša širina"
3287
 
3288
- #: settings.php:2232
3289
  msgid "Custom Hooks"
3290
  msgstr "Ročice Po Meri"
3291
 
3292
- #: settings.php:2244 settings.php:2247
3293
  msgid "Enable hook"
3294
  msgstr "Omogoči ročico"
3295
 
3296
  #. translators: %d: hook number
3297
- #: settings.php:2247
3298
  msgid "Hook %d name"
3299
  msgstr "Ime ročice %d"
3300
 
3301
- #: settings.php:2250
3302
  msgid "Hook name for automatic insertion selection"
3303
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3304
 
3305
- #: settings.php:2253
3306
  msgid "action"
3307
  msgstr "akcija"
3308
 
3309
- #: settings.php:2256
3310
  msgid "Action name as used in the do_action () function"
3311
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3312
 
3313
- #: settings.php:2259
3314
  msgid "priority"
3315
  msgstr "prednost"
3316
 
3317
- #: settings.php:2262
3318
  msgid "Priority for the hook (default is 10)"
3319
  msgstr "Prednost za ročico (privzeta je 10)"
3320
 
3321
- #: settings.php:2283
3322
  msgid "Enable insertion of this code into HTML page header"
3323
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3324
 
3325
- #: settings.php:2287 settings.php:2345 settings.php:2504
3326
  msgid "Process PHP code"
3327
  msgstr "Procesiraj PHP kodo"
3328
 
3329
- #: settings.php:2291
3330
  msgid "HTML Page Header Code"
3331
  msgstr "Koda v Glavi HTML Strani"
3332
 
3333
- #: settings.php:2299
3334
  msgid "Code in the %s section of the HTML page"
3335
  msgstr "Koda v %s delu HTML strani"
3336
 
3337
- #: settings.php:2300 settings.php:2358
3338
  msgctxt "code in header or footer"
3339
  msgid "DISABLED"
3340
  msgstr "ONEMOGOČENA"
3341
 
3342
- #: settings.php:2313 settings.php:2371
3343
  msgid "Use server-side detection to insert code only for"
3344
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3345
 
3346
- #: settings.php:2326
3347
  msgid ""
3348
  "Enable insertion of this code into HTML page header on page for Error 404: "
3349
  "Page not found"
@@ -3351,24 +3356,24 @@ msgstr ""
3351
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3352
  "obstaja"
3353
 
3354
- #: settings.php:2326 settings.php:2384
3355
  msgid "Insert on Error 404 page"
3356
  msgstr "Vstavi na strani Napake 404"
3357
 
3358
- #: settings.php:2341
3359
  msgid "Enable insertion of this code into HTML page footer"
3360
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3361
 
3362
- #: settings.php:2349
3363
  msgid "HTML Page Footer Code"
3364
  msgstr "Koda v Nogi HTML Strani"
3365
 
3366
  #. translators: %s: HTML tags
3367
- #: settings.php:2357
3368
  msgid "Code before the %s tag of the the HTML page"
3369
  msgstr "Koda pred %s značko HTML strani"
3370
 
3371
- #: settings.php:2384
3372
  msgid ""
3373
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3374
  "Page not found"
@@ -3376,19 +3381,19 @@ msgstr ""
3376
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3377
  "Stran ne obstaja"
3378
 
3379
- #: settings.php:2398
3380
  msgid "Enable detection of ad blocking"
3381
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3382
 
3383
- #: settings.php:2415
3384
  msgid "Global action when ad blocking is detected"
3385
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3386
 
3387
- #: settings.php:2424
3388
  msgid "Delay Action"
3389
  msgstr "Zakasni Akcijo"
3390
 
3391
- #: settings.php:2427
3392
  msgid ""
3393
  "Number of page views to delay action when ad blocking is detected. Leave "
3394
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3397,16 +3402,16 @@ msgstr ""
3397
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3398
  "strani). Nastavi piškotek."
3399
 
3400
- #: settings.php:2427
3401
  msgctxt "Delay Action for x "
3402
  msgid "page views"
3403
  msgstr "ogledov strani"
3404
 
3405
- #: settings.php:2432
3406
  msgid "No Action Period"
3407
  msgstr "Obdobje Brez Akcije"
3408
 
3409
- #: settings.php:2435
3410
  msgid ""
3411
  "Number of days to supress action when ad blocking is detected. Leave empty "
3412
  "for no no-action period (action fires always after defined page view delay). "
@@ -3416,16 +3421,16 @@ msgstr ""
3416
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3417
  "strani). Nastavi piškotek."
3418
 
3419
- #: settings.php:2435
3420
  msgctxt "no action period"
3421
  msgid "days"
3422
  msgstr "dni"
3423
 
3424
- #: settings.php:2440
3425
  msgid "Custom Selectors"
3426
  msgstr "Selektorji Po Meri"
3427
 
3428
- #: settings.php:2443
3429
  msgid ""
3430
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3431
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3435,15 +3440,15 @@ msgstr ""
3435
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3436
  "pomeni prisotnost blokiranja oglasov."
3437
 
3438
- #: settings.php:2455
3439
  msgid "Redirection Page"
3440
  msgstr "Stran za Preusmeritev"
3441
 
3442
- #: settings.php:2467
3443
  msgid "Custom Url"
3444
  msgstr "Url Po Meri"
3445
 
3446
- #: settings.php:2472
3447
  msgid ""
3448
  "Static page for redirection when ad blocking is detected. For other pages "
3449
  "select Custom url and set it below."
@@ -3451,27 +3456,27 @@ msgstr ""
3451
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3452
  "strani izberite Url Po Meri in ga nastavite spodaj."
3453
 
3454
- #: settings.php:2481
3455
  msgid "Custom Redirection Url"
3456
  msgstr "Url za Preusmeritev Po Meri"
3457
 
3458
- #: settings.php:2493
3459
  msgid "Message HTML code"
3460
  msgstr "HTML koda sporočila"
3461
 
3462
- #: settings.php:2506
3463
  msgid "Preview message when ad blocking is detected"
3464
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3465
 
3466
- #: settings.php:2535
3467
  msgid "Prevent visitors from closing the warning message"
3468
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3469
 
3470
- #: settings.php:2535
3471
  msgid "Undismissible Message"
3472
  msgstr "Neodstranljivo Sporočilo"
3473
 
3474
- #: settings.php:2548
3475
  msgid ""
3476
  "Force showing admin toolbar for administrators when viewing site. Enable "
3477
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3480,84 +3485,84 @@ msgstr ""
3480
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3481
  "skrbnike."
3482
 
3483
- #: settings.php:2556
3484
  msgid "Disable header code (Header tab)"
3485
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3486
 
3487
- #: settings.php:2560
3488
  msgid "Disable footer code (Footer tab)"
3489
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3490
 
3491
  #. translators: %s: Ad Inserter
3492
- #: settings.php:2564
3493
  msgid "Disable %s JavaScript code"
3494
  msgstr "Onemogoči %s JavaScript kodo"
3495
 
3496
  #. translators: %s: Ad Inserter
3497
- #: settings.php:2568
3498
  msgid "Disable %s CSS code"
3499
  msgstr "Onemogoči %s CSS kodo"
3500
 
3501
- #: settings.php:2572
3502
  msgid ""
3503
  "Disable PHP code processing (in all blocks including header and footer code)"
3504
  msgstr ""
3505
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3506
 
3507
- #: settings.php:2576
3508
  msgid "Disable insertion of all blocks"
3509
  msgstr "Onemogoči vstavljanje vseh blokov"
3510
 
3511
- #: settings.php:2580
3512
  msgid "Disable insertions"
3513
  msgstr "Onemogoči vstavljanja"
3514
 
3515
  #. translators: %s: Ad Inserter
3516
- #: settings.php:2592
3517
  msgid "%s CSS CODE"
3518
  msgstr "%s CSS KODA"
3519
 
3520
- #: settings.php:2595
3521
  msgid "HEADER CODE"
3522
  msgstr "KODA GLAVE"
3523
 
3524
  #. translators: %s: PHP tags
3525
- #: settings.php:2601
3526
  msgid "BLOCK PHP CODE"
3527
  msgstr "PHP KODA BLOKA"
3528
 
3529
  #. translators: %s: Ad Inserter
3530
- #: settings.php:2607
3531
  msgid "%s JS CODE"
3532
  msgstr "%s JS KODA"
3533
 
3534
- #: settings.php:2610
3535
  msgid "FOOTER CODE"
3536
  msgstr "KODA NOGE"
3537
 
3538
- #: settings.php:2619
3539
  msgid "Force showing admin toolbar when viewing site"
3540
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3541
 
3542
- #: settings.php:2626
3543
  msgid "Enable debugging functions in admin toolbar"
3544
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3545
 
3546
- #: settings.php:2628
3547
  msgid "Debugging functions in admin toolbar"
3548
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3549
 
3550
- #: settings.php:2635
3551
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3552
  msgstr ""
3553
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3554
  "zaslonih"
3555
 
3556
- #: settings.php:2637
3557
  msgid "Debugging functions on mobile screens"
3558
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3559
 
3560
- #: settings.php:2644
3561
  msgid ""
3562
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3563
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3572,11 +3577,11 @@ msgstr ""
3572
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3573
  "vedno omogočeno."
3574
 
3575
- #: settings.php:2646
3576
  msgid "Remote debugging"
3577
  msgstr "Oddaljeno razhroščevanje"
3578
 
3579
- #: settings.php:2653
3580
  msgid ""
3581
  "Disable translation to see original texts for the settings and messages in "
3582
  "English"
@@ -3584,112 +3589,112 @@ msgstr ""
3584
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3585
  "angleščini"
3586
 
3587
- #: settings.php:2655
3588
  msgid "Disable translation"
3589
  msgstr "Onemogoči prevod"
3590
 
3591
- #: settings.php:2990
3592
  msgid "Available positions for current theme"
3593
  msgstr "Razpoložljivi položaji za trenutno temo"
3594
 
3595
- #: settings.php:2991
3596
  msgid "Error checking pages"
3597
  msgstr "Napaka pri preverjanju strani"
3598
 
3599
- #: settings.php:2994
3600
  msgid "Toggle theme checker for available positions for automatic insertion"
3601
  msgstr ""
3602
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3603
 
3604
- #: settings.php:2994
3605
  msgctxt "Button"
3606
  msgid "Check"
3607
  msgstr "Preveri"
3608
 
3609
- #: settings.php:3001
3610
  msgid "Position"
3611
  msgstr "Položaj"
3612
 
3613
- #: settings.php:3006
3614
  msgid "Archive pages"
3615
  msgstr "Strani arhiva"
3616
 
3617
- #: settings.php:3065
3618
  msgid ""
3619
  "Position not available because output buffering (tab [*]) is not enabled"
3620
  msgstr ""
3621
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3622
 
3623
- #: settings.php:3068 strings.php:217
3624
  msgid "Position not checked yet"
3625
  msgstr "Položaj še ni bil preverjen"
3626
 
3627
- #: settings.php:3099
3628
  msgid "Toggle active/all blocks"
3629
  msgstr "Preklopi aktive/vse bloke"
3630
 
3631
- #: settings.php:3103 strings.php:204
3632
  msgid "Rearrange block order"
3633
  msgstr "Preuredi vrstni red blokov"
3634
 
3635
- #: settings.php:3108
3636
  msgid "Save new block order"
3637
  msgstr "Shrani vrstni red blokov"
3638
 
3639
- #: settings.php:3108
3640
  msgid "Save Changes"
3641
  msgstr "Sharani Nastavitve"
3642
 
3643
- #: settings.php:3133
3644
  msgid "Toggle active/all ad units"
3645
  msgstr "Preklopi aktivne/vse oglasne enote"
3646
 
3647
- #: settings.php:3137
3648
  msgid "Reload AdSense ad units"
3649
  msgstr "Ponovno naloži oglasne enote AdSense"
3650
 
3651
- #: settings.php:3141
3652
  msgid "Clear authorization to access AdSense account"
3653
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3654
 
3655
- #: settings.php:3145 settings.php:3510 settings.php:3577 strings.php:212
3656
  msgid "Google AdSense Homepage"
3657
  msgstr "Google AdSense Domača Stran"
3658
 
3659
- #: settings.php:3322
3660
  msgid "Preview block"
3661
  msgstr "Predogled bloka"
3662
 
3663
- #: settings.php:3331
3664
  msgid "Insertion disabled"
3665
  msgstr "Vstavljanje onemogočeno"
3666
 
3667
- #: settings.php:3355
3668
  msgid "Widget positions"
3669
  msgstr "Položaji gradnikov"
3670
 
3671
- #: settings.php:3421
3672
  msgid "Ad unit"
3673
  msgstr "Enota"
3674
 
3675
- #: settings.php:3423
3676
  msgid "Slot ID"
3677
  msgstr "ID mesta"
3678
 
3679
- #: settings.php:3449
3680
  msgid "Copy AdSense code"
3681
  msgstr "Kopiraj kodo AdSense"
3682
 
3683
- #: settings.php:3452
3684
  msgid "Preview AdSense ad"
3685
  msgstr "Predogled oglasa AdSense"
3686
 
3687
- #: settings.php:3455
3688
  msgid "Get AdSense code"
3689
  msgstr "Pridobi kodo AdSense"
3690
 
3691
  #. translators: %s: HTML tags
3692
- #: settings.php:3487
3693
  msgid ""
3694
  "Please %s clear authorization %s with the button %s above and once again "
3695
  "authorize access to your AdSense account."
@@ -3697,16 +3702,16 @@ msgstr ""
3697
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3698
  "avtorizirajte dostop do vašega računa AdSense."
3699
 
3700
- #: settings.php:3506
3701
  msgid "AdSense Integration"
3702
  msgstr "Integracija AdSense"
3703
 
3704
- #: settings.php:3508
3705
  msgid "AdSense Integration - Step 2"
3706
  msgstr "Integracija AdSense - Korak 2"
3707
 
3708
  #. translators: %s: HTML tags
3709
- #: settings.php:3514
3710
  msgid ""
3711
  "Authorize %s to access your AdSense account. Click on the %s Get "
3712
  "Authorization Code %s button to open a new window where you can allow "
@@ -3719,7 +3724,7 @@ msgstr ""
3719
  "Avtoriziraj. %s"
3720
 
3721
  #. translators: %s: HTML tags
3722
- #: settings.php:3521
3723
  msgid ""
3724
  "If you get error, can't access ad units or would like to use own Google API "
3725
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3730,7 +3735,7 @@ msgstr ""
3730
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3731
 
3732
  #. translators: %s: HTML tags
3733
- #: settings.php:3523
3734
  msgid ""
3735
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3736
  "Authorization Code %s button to open a new window where you can allow "
@@ -3743,7 +3748,7 @@ msgstr ""
3743
  "gumb %s Avtoriziraj. %s"
3744
 
3745
  #. translators: %s: HTML tags
3746
- #: settings.php:3530
3747
  msgid ""
3748
  "If you get error %s invalid client %s click on the button %s Clear and "
3749
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -3751,32 +3756,32 @@ msgstr ""
3751
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3752
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3753
 
3754
- #: settings.php:3541
3755
  msgid "Get Authorization Code"
3756
  msgstr "Pridobi Avtoriazcijsko Kodo"
3757
 
3758
- #: settings.php:3544
3759
  msgid "Enter Authorization Code"
3760
  msgstr "Vnesi Avorizacijsko Kodo"
3761
 
3762
- #: settings.php:3554
3763
  msgid "Use own API IDs"
3764
  msgstr "Uporabi lastne API ID-je"
3765
 
3766
- #: settings.php:3556
3767
  msgid "Clear and return to Step 1"
3768
  msgstr "Odstrani in se vrni na Korak 1"
3769
 
3770
- #: settings.php:3560
3771
  msgid "Authorize"
3772
  msgstr "Avtoriziraj"
3773
 
3774
- #: settings.php:3576
3775
  msgid "AdSense Integration - Step 1"
3776
  msgstr "Integracija AdSense - Korak 1"
3777
 
3778
  #. translators: %s: Ad Inserter
3779
- #: settings.php:3580
3780
  msgid ""
3781
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3782
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3789,12 +3794,12 @@ msgstr ""
3789
  "Klienta in Skrivnost Klienta."
3790
 
3791
  #. translators: %s: HTML tags
3792
- #: settings.php:3589
3793
  msgid "Go to %s Google APIs and Services console %s"
3794
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3795
 
3796
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3797
- #: settings.php:3590
3798
  msgid ""
3799
  "Create %1$s project - if the project and IDs are already created click on "
3800
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -3803,7 +3808,7 @@ msgstr ""
3803
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3804
 
3805
  #. translators: %s: HTML tags
3806
- #: settings.php:3591
3807
  msgid ""
3808
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3809
  "create a new project"
@@ -3812,12 +3817,12 @@ msgstr ""
3812
  "ustvaritev novega projekta"
3813
 
3814
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3815
- #: settings.php:3592
3816
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3817
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
3818
 
3819
  #. translators: %s: HTML tags
3820
- #: settings.php:3593
3821
  msgid ""
3822
  "Click on project selection, wait for the project to be created and then and "
3823
  "select %s as the current project"
@@ -3826,39 +3831,39 @@ msgstr ""
3826
  "izberite %s kot trenutni projekt"
3827
 
3828
  #. translators: %s: HTML tags
3829
- #: settings.php:3594
3830
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3831
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
3832
 
3833
  #. translators: %s: HTML tags
3834
- #: settings.php:3595
3835
  msgid "Search for adsense and enable %s"
3836
  msgstr "Poiščite adsense in omogočite %s"
3837
 
3838
  #. translators: %s: HTML tags
3839
- #: settings.php:3596
3840
  msgid "Click on %s CREATE CREDENTIALS %s"
3841
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
3842
 
3843
  #. translators: %s: HTML tags
3844
- #: settings.php:3597
3845
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3846
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
3847
 
3848
  #. translators: %s: HTML tags
3849
- #: settings.php:3598
3850
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3851
  msgstr ""
3852
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
3853
  "podatki %s"
3854
 
3855
  #. translators: %s: HTML tags
3856
- #: settings.php:3599
3857
  msgid "Click on %s What credentials do I need? %s"
3858
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
3859
 
3860
  #. translators: %s: HTML tags
3861
- #: settings.php:3600
3862
  msgid ""
3863
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3864
  "Ad Inserter client %s"
@@ -3867,7 +3872,7 @@ msgstr ""
3867
  "%s Ad Inserter klient %s"
3868
 
3869
  #. translators: %s: HTML tags
3870
- #: settings.php:3601
3871
  msgid ""
3872
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3873
  "enter %s"
@@ -3876,17 +3881,17 @@ msgstr ""
3876
  "uporabnikom %s vnesite %s"
3877
 
3878
  #. translators: %s: HTML tags
3879
- #: settings.php:3602
3880
  msgid "Click on %s Continue %s"
3881
  msgstr "Kliknite na %s Nadaljuj %s"
3882
 
3883
  #. translators: %s: HTML tags
3884
- #: settings.php:3603
3885
  msgid "Click on %s Done %s"
3886
  msgstr "Kliknite na %s Končaj %s"
3887
 
3888
  #. translators: %s: HTML tags
3889
- #: settings.php:3604
3890
  msgid ""
3891
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3892
  "secret %s"
@@ -3894,58 +3899,58 @@ msgstr ""
3894
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
3895
  "Skrivnost klienta %s"
3896
 
3897
- #: settings.php:3605
3898
  msgid "Copy them to the appropriate fields below"
3899
  msgstr "Skopirajte ju na ustrezni polji spodaj"
3900
 
3901
- #: settings.php:3611
3902
  msgid "Client ID"
3903
  msgstr "ID klienta"
3904
 
3905
- #: settings.php:3614
3906
  msgid "Enter Client ID"
3907
  msgstr "Vnesite ID klienta"
3908
 
3909
- #: settings.php:3619
3910
  msgid "Client secret"
3911
  msgstr "Skrivnost klienta"
3912
 
3913
- #: settings.php:3622
3914
  msgid "Enter Client secret"
3915
  msgstr "Vnesite Skrivnost klienta"
3916
 
3917
- #: settings.php:3632
3918
  msgid "Use default API IDs"
3919
  msgstr "Uporabi privzete API ID-je"
3920
 
3921
- #: settings.php:3637
3922
  msgid "Save"
3923
  msgstr "Shrani"
3924
 
3925
- #: settings.php:3913 settings.php:3926 settings.php:3939 settings.php:3954
3926
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3927
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
3928
 
3929
- #: settings.php:3918 settings.php:3931 settings.php:3944 settings.php:3959
3930
- #: settings.php:4128 settings.php:4132 settings.php:4134 settings.php:4150
3931
- #: settings.php:4161 settings.php:4164 settings.php:4170 settings.php:4182
3932
  msgid "Looking for AdSense alternative?"
3933
  msgstr "Iščete alternativo za AdSense?"
3934
 
3935
- #: settings.php:3970
3936
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3937
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
3938
 
3939
- #: settings.php:3975 settings.php:4130 settings.php:4142 settings.php:4167
3940
- #: settings.php:4190
3941
  msgid "Use Infolinks ads with Adsense to earn more"
3942
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
3943
 
3944
- #: settings.php:3994 settings.php:4032
3945
  msgid "Support plugin development"
3946
  msgstr "Podprite razvoj vtičnika"
3947
 
3948
- #: settings.php:3995 settings.php:4033
3949
  msgid ""
3950
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3951
  "reviewing the plugin on WordPres"
@@ -3953,12 +3958,12 @@ msgstr ""
3953
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
3954
  "razširiti novico z oceno vtičnika na WordPress-u"
3955
 
3956
- #: settings.php:3995
3957
  msgctxt "Review ad Inserter"
3958
  msgid "Review"
3959
  msgstr "Oceni"
3960
 
3961
- #: settings.php:3996
3962
  msgid ""
3963
  "Support free Ad Inserter development. If you are making money with Ad "
3964
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -3967,16 +3972,16 @@ msgstr ""
3967
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
3968
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
3969
 
3970
- #: settings.php:3996
3971
  msgid "Donate"
3972
  msgstr "Donirajte"
3973
 
3974
- #: settings.php:4003 settings.php:4048
3975
  msgid "Average rating of the plugin - Thank you!"
3976
  msgstr "Povprečna ocena vtičnika - Hvala!"
3977
 
3978
  #. translators: %s: Ad Inserter, HTML tags
3979
- #: settings.php:4014
3980
  msgid ""
3981
  "You've been using %s for a while now, and I hope you're happy with it. "
3982
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3990,24 +3995,24 @@ msgstr ""
3990
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
3991
  "monetizacijo vašega spletnega mesta. %s Hvala!"
3992
 
3993
- #: settings.php:4033
3994
  msgid "Review"
3995
  msgstr "Ocena"
3996
 
3997
- #: settings.php:4037
3998
  msgid "Ad Inserter on Twitter"
3999
  msgstr "Ad Inserter na Twitter-ju"
4000
 
4001
- #: settings.php:4038
4002
  msgid "Ad Inserter on Facebook"
4003
  msgstr "Ad Inserter na Facebook-u"
4004
 
4005
- #: settings.php:4041
4006
  msgid "Follow Ad Inserter"
4007
  msgstr "Sledi Ad Inserter-ju"
4008
 
4009
  #. translators: %s: HTML tags
4010
- #: settings.php:4068
4011
  msgid ""
4012
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4013
  "and %s Common Settings %s pages"
@@ -4016,7 +4021,7 @@ msgstr ""
4016
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4017
 
4018
  #. translators: %s: HTML tags
4019
- #: settings.php:4080
4020
  msgid ""
4021
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4022
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
@@ -4026,7 +4031,7 @@ msgstr ""
4026
  "%s"
4027
 
4028
  #. translators: %s: HTML tags
4029
- #: settings.php:4099
4030
  msgid ""
4031
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4032
  "diagnose and fix the problem."
@@ -4035,7 +4040,7 @@ msgstr ""
4035
  "navodili za diagnozo in rešitvami za težave."
4036
 
4037
  #. translators: %s: HTML tags
4038
- #: settings.php:4103
4039
  msgid ""
4040
  "If you need any kind of help or support, please do not hesitate to open a "
4041
  "thread on the %s support forum. %s"
@@ -4043,44 +4048,44 @@ msgstr ""
4043
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4044
  "nit na %s podpornem forumu. %s"
4045
 
4046
- #: settings.php:4146 settings.php:4186
4047
  msgid "A/B testing - Track ad impressions and clicks"
4048
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4049
 
4050
- #: settings.php:4154 settings.php:4178
4051
  msgid "Code preview with visual CSS editor"
4052
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4053
 
4054
- #: settings.php:4196
4055
  msgid "Looking for Pro Ad Management plugin?"
4056
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4057
 
4058
- #: settings.php:4197
4059
  msgid "To Optimally Monetize your WordPress website?"
4060
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4061
 
4062
  #. translators: %s HTML tags
4063
- #: settings.php:4200
4064
  msgid "%s AdSense Integration %s"
4065
  msgstr "%s Integracija AdSense %s"
4066
 
4067
  #. translators: %s HTML tags
4068
- #: settings.php:4201
4069
  msgid "Syntax highlighting %s editor %s"
4070
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4071
 
4072
  #. translators: %s HTML tags
4073
- #: settings.php:4202
4074
  msgid "%s Code preview %s with visual CSS editor"
4075
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4076
 
4077
  #. translators: %s HTML tags
4078
- #: settings.php:4203
4079
  msgid "Simple user interface - all settings on a single page"
4080
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4081
 
4082
  #. translators: %s HTML tags
4083
- #: settings.php:4204
4084
  msgid ""
4085
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4086
  "image / excerpt"
@@ -4089,27 +4094,27 @@ msgstr ""
4089
  "%s / sliko / izvlečkom"
4090
 
4091
  #. translators: %s HTML tags
4092
- #: settings.php:4205
4093
  msgid "%s Automatic insertion %s between posts on blog pages"
4094
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4095
 
4096
  #. translators: %s HTML tags
4097
- #: settings.php:4206
4098
  msgid "%s Automatic insertion %s before, between and after comments"
4099
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4100
 
4101
  #. translators: %s HTML tags
4102
- #: settings.php:4207
4103
  msgid "%s Automatic insertion %s after %s or before %s tag"
4104
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4105
 
4106
  #. translators: %s HTML tags
4107
- #: settings.php:4208
4108
  msgid "Automatic insertion at %s custom hook positions %s"
4109
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4110
 
4111
  #. translators: %s HTML tags
4112
- #: settings.php:4209
4113
  msgid ""
4114
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4115
  "selectors)"
@@ -4118,17 +4123,17 @@ msgstr ""
4118
  "selektorjev)"
4119
 
4120
  #. translators: %s HTML tags
4121
- #: settings.php:4210
4122
  msgid "%s Insertion exceptions %s for individual posts and pages"
4123
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4124
 
4125
  #. translators: %s HTML tags
4126
- #: settings.php:4211
4127
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4128
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4129
 
4130
  #. translators: %s HTML tags
4131
- #: settings.php:4212
4132
  msgid ""
4133
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4134
  "scrolls)"
@@ -4137,19 +4142,19 @@ msgstr ""
4137
  "se stran pomika)"
4138
 
4139
  #. translators: %s HTML tags
4140
- #: settings.php:4213
4141
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4142
  msgstr ""
4143
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4144
 
4145
  #. translators: %s HTML tags
4146
- #: settings.php:4214
4147
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4148
  msgstr ""
4149
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4150
 
4151
  #. translators: %s HTML tags
4152
- #: settings.php:4215
4153
  msgid ""
4154
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4155
  "visible)"
@@ -4158,7 +4163,7 @@ msgstr ""
4158
  "postane viden)"
4159
 
4160
  #. translators: %s HTML tags
4161
- #: settings.php:4216
4162
  msgid ""
4163
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4164
  msgstr ""
@@ -4166,12 +4171,12 @@ msgstr ""
4166
  "strani)"
4167
 
4168
  #. translators: %s HTML tags
4169
- #: settings.php:4217
4170
  msgid "Block %s alignment and style %s customizations"
4171
  msgstr "%s Poravnave in slogi %s bloka po meri"
4172
 
4173
  #. translators: %s HTML tags
4174
- #: settings.php:4218
4175
  msgid ""
4176
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4177
  "TOS)"
@@ -4179,7 +4184,7 @@ msgstr ""
4179
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4180
 
4181
  #. translators: %s HTML tags
4182
- #: settings.php:4219
4183
  msgid ""
4184
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4185
  "feeds"
@@ -4188,12 +4193,12 @@ msgstr ""
4188
  "virih"
4189
 
4190
  #. translators: %s HTML tags
4191
- #: settings.php:4220
4192
  msgid "%s Ad rotation %s (works also with caching)"
4193
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4194
 
4195
  #. translators: %s HTML tags
4196
- #: settings.php:4221
4197
  msgid ""
4198
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4199
  "AdSense)"
@@ -4202,66 +4207,66 @@ msgstr ""
4202
  "AdSense)"
4203
 
4204
  #. translators: %s HTML tags
4205
- #: settings.php:4222
4206
  msgid "Support for %s A/B testing %s"
4207
  msgstr "Podpora za %s A/B testiranje %s"
4208
 
4209
  #. translators: %s HTML tags
4210
- #: settings.php:4223
4211
  msgid "Support for %s lazy loading %s"
4212
  msgstr "Podpora za %s leno nalaganje %s"
4213
 
4214
  #. translators: %s HTML tags
4215
- #: settings.php:4224
4216
  msgid "Support for ads on %s AMP pages %s"
4217
  msgstr "Podpora za oglase na %s AMP straneh %s"
4218
 
4219
  #. translators: %s HTML tags
4220
- #: settings.php:4225
4221
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4222
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4223
 
4224
  #. translators: %s HTML tags
4225
- #: settings.php:4226
4226
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4227
  msgstr ""
4228
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4229
 
4230
  #. translators: %s HTML tags
4231
- #: settings.php:4227
4232
  msgid "PHP code processing"
4233
  msgstr "Procesiranje PHP kode"
4234
 
4235
  #. translators: %s HTML tags
4236
- #: settings.php:4228
4237
  msgid "%s Banner %s code generator"
4238
  msgstr "Generator kode za %s pasice %s"
4239
 
4240
  #. translators: %s HTML tags
4241
- #: settings.php:4229
4242
  msgid "Support for %s header and footer %s code"
4243
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4244
 
4245
  #. translators: %s HTML tags
4246
- #: settings.php:4230
4247
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4248
  msgstr ""
4249
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4250
 
4251
  #. translators: %s HTML tags
4252
- #: settings.php:4231
4253
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4254
  msgstr ""
4255
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4256
  "strežnika"
4257
 
4258
  #. translators: %s HTML tags
4259
- #: settings.php:4232
4260
  msgid "Client-side %s mobile device detection %s (works with caching)"
4261
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4262
 
4263
  #. translators: %s HTML tags
4264
- #: settings.php:4233
4265
  msgid ""
4266
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4267
  "protection"
@@ -4270,12 +4275,12 @@ msgstr ""
4270
  "vsebine"
4271
 
4272
  #. translators: %s HTML tags
4273
- #: settings.php:4234
4274
  msgid "%s Ad blocking statistics %s"
4275
  msgstr "%s Statistika blokiranja oglasov %s"
4276
 
4277
  #. translators: %s HTML tags
4278
- #: settings.php:4235
4279
  msgid ""
4280
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4281
  "referers"
@@ -4283,75 +4288,75 @@ msgstr ""
4283
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4284
 
4285
  #. translators: %s HTML tags
4286
- #: settings.php:4236
4287
  msgid ""
4288
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4289
  msgstr ""
4290
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4291
 
4292
  #. translators: %s HTML tags
4293
- #: settings.php:4237
4294
  msgid "%s Multisite options %s to limit settings on the sites"
4295
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4296
 
4297
  #. translators: %s HTML tags
4298
- #: settings.php:4238
4299
  msgid "%s Import/Export %s block or plugin settings"
4300
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4301
 
4302
  #. translators: %s HTML tags
4303
- #: settings.php:4239
4304
  msgid "%s Insertion scheduling %s with fallback option"
4305
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4306
 
4307
  #. translators: %s HTML tags
4308
- #: settings.php:4240
4309
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4310
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4311
 
4312
  #. translators: %s HTML tags
4313
- #: settings.php:4241
4314
  msgid "Simple troubleshooting with many %s debugging functions %s"
4315
  msgstr ""
4316
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4317
 
4318
  #. translators: %s HTML tags
4319
- #: settings.php:4242
4320
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4321
  msgstr ""
4322
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4323
 
4324
  #. translators: %s HTML tags
4325
- #: settings.php:4243
4326
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4327
  msgstr ""
4328
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4329
 
4330
  #. translators: %s HTML tags
4331
- #: settings.php:4244
4332
  msgid ""
4333
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4334
  msgstr ""
4335
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4336
 
4337
  #. translators: %s HTML tags
4338
- #: settings.php:4245
4339
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4340
  msgstr ""
4341
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4342
 
4343
  #. translators: %s HTML tags
4344
- #: settings.php:4246
4345
  msgid "No ads on the settings page"
4346
  msgstr "Stran z nastavitvami brez oglasov"
4347
 
4348
  #. translators: %s HTML tags
4349
- #: settings.php:4247
4350
  msgid "Premium support via email"
4351
  msgstr "Vrhunska podpora prek elektronske pošte"
4352
 
4353
  #. translators: %s HTML tags
4354
- #: settings.php:4250
4355
  msgid ""
4356
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4357
  "website with many advertising features to automatically insert adverts on "
@@ -4378,82 +4383,82 @@ msgstr ""
4378
  "bodo ohranile)."
4379
 
4380
  #. translators: %s HTML tags
4381
- #: settings.php:4263
4382
  msgid "Looking for %s Pro Ad Management plugin? %s"
4383
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4384
 
4385
  #. translators: %s HTML tags
4386
- #: settings.php:4268
4387
  msgid "Ads between posts"
4388
  msgstr "Oglasi med prispevki"
4389
 
4390
  #. translators: %s HTML tags
4391
- #: settings.php:4269
4392
  msgid "Ads between comments"
4393
  msgstr "Oglasi med komentarji"
4394
 
4395
  #. translators: %s HTML tags
4396
- #: settings.php:4270
4397
  msgid "Support via email"
4398
  msgstr "Podpora prek elektronske pošte"
4399
 
4400
  #. translators: %s HTML tags
4401
- #: settings.php:4276
4402
  msgid "%s Sticky positions %s"
4403
  msgstr "%s Lepljivi položaji %s"
4404
 
4405
  #. translators: %s HTML tags
4406
- #: settings.php:4277
4407
  msgid "%s Limit insertions %s"
4408
  msgstr "%s Omeji vstavljanja %s"
4409
 
4410
  #. translators: %s HTML tags
4411
- #: settings.php:4278
4412
  msgid "%s Clearance %s options"
4413
  msgstr "Možnosti %s izogibanja %s"
4414
 
4415
  #. translators: %s HTML tags
4416
- #: settings.php:4284
4417
  msgid "Ad rotation"
4418
  msgstr "Vrtenje oglasov"
4419
 
4420
  #. translators: %s HTML tags
4421
- #: settings.php:4285
4422
  msgid "%s A/B testing %s"
4423
  msgstr "%s A/B testiranje %s"
4424
 
4425
  #. translators: %s HTML tags
4426
- #: settings.php:4286
4427
  msgid "%s Ad tracking %s"
4428
  msgstr "%s Sledenje oglasom %s"
4429
 
4430
  #. translators: %s HTML tags
4431
- #: settings.php:4292
4432
  msgid "Support for %s AMP pages %s"
4433
  msgstr "Podpora za %s AMP strani %s"
4434
 
4435
  #. translators: %s HTML tags
4436
- #: settings.php:4293
4437
  msgid "%s Ad blocking detection %s"
4438
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4439
 
4440
  #. translators: %s HTML tags
4441
- #: settings.php:4294
4442
  msgid "%s Mobile device detection %s"
4443
  msgstr "%s Zaznavanje mobilne naprave %s"
4444
 
4445
  #. translators: %s HTML tags
4446
- #: settings.php:4301
4447
  msgid "64 code blocks"
4448
  msgstr "64 kodnih blokov"
4449
 
4450
  #. translators: %s HTML tags
4451
- #: settings.php:4302
4452
  msgid "%s GEO targeting %s"
4453
  msgstr "%s GEO ciljanje %s"
4454
 
4455
  #. translators: %s HTML tags
4456
- #: settings.php:4303
4457
  msgid "%s Scheduling %s"
4458
  msgstr "%s Urnik %s"
4459
 
@@ -5249,6 +5254,9 @@ msgstr ""
5249
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5250
  "na optimalna mesta"
5251
 
 
 
 
5252
  #~ msgid "ROTATION GROUP: "
5253
  #~ msgstr "ROTATION "
5254
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-02-22 19:28:04+00:00\n"
8
+ "PO-Revision-Date: 2019-02-22 20:29+0100\n"
9
  "Last-Translator: Igor Funa\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:318
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:334
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:341
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:412
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:419
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:428
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:435
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:445
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1022
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1027
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1032 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1037 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1042 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1047 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1094
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1098
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1307
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1582 ad-inserter.php:2445
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2016
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2016
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2017
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2018
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2019
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2020
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2021
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2216
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2217 includes/functions.php:1489
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
+ #: ad-inserter.php:2220
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
+ #: ad-inserter.php:2221 includes/functions.php:1492
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
+ #: ad-inserter.php:2231
164
  msgid ""
165
  "I would really appreciate it if you could give the plugin a 5-star rating on "
166
  "WordPres."
168
  "Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
169
  "zvezicami."
170
 
171
+ #: ad-inserter.php:2233
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website. Thank you, Igor"
177
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
178
 
179
  #. translators: %s: Ad Inserter
180
+ #: ad-inserter.php:2239
181
  msgid "Rate %s"
182
+ msgstr "Ocenite %s"
183
 
184
+ #: ad-inserter.php:2244
185
  msgid "I already did."
186
  msgstr "Sem že."
187
 
188
+ #: ad-inserter.php:2258
189
  msgctxt "Menu item"
190
  msgid "Settings"
191
  msgstr "Nastavitve"
192
 
193
  #. translators: %s: Ad Inserter
194
+ #: ad-inserter.php:2332
195
  msgctxt "Meta box name"
196
  msgid "%s Individual Exceptions"
197
  msgstr "Posamezne Izjeme za %s"
198
 
199
+ #: ad-inserter.php:2361 ad-inserter.php:7972 class.php:1967
200
  #: includes/preview.php:1966 includes/preview.php:2010
201
+ #: includes/preview.php:2047 settings.php:3352 strings.php:3
202
  msgid "Block"
203
  msgstr "Blok"
204
 
205
+ #: ad-inserter.php:2362 settings.php:3353 settings.php:3427
206
  msgid "Name"
207
  msgstr "Ime"
208
 
209
+ #: ad-inserter.php:2363 settings.php:3355
210
  msgid "Automatic insertion"
211
  msgstr "Samodejno vstavljanje"
212
 
213
+ #: ad-inserter.php:2366
214
  msgid "Default insertion for pages"
215
  msgstr "Privzeto vstavljanje za strani"
216
 
217
+ #: ad-inserter.php:2367
218
  msgid "Default insertion for posts"
219
  msgstr "Privzeto vstavljanje za prispevke"
220
 
221
  #. translators: For this post or page
222
+ #: ad-inserter.php:2370
223
  msgctxt "Page"
224
  msgid "For this"
225
  msgstr "Za to"
226
 
227
+ #: ad-inserter.php:2371
228
  msgctxt "Post"
229
  msgid "For this"
230
  msgstr "Za ta"
231
 
232
+ #: ad-inserter.php:2379
233
  msgctxt "Enabled/disabled on all"
234
  msgid "pages"
235
  msgstr "straneh"
236
 
237
+ #: ad-inserter.php:2380
238
  msgctxt "Default insertion for"
239
  msgid "pages"
240
  msgstr "strani"
241
 
242
+ #: ad-inserter.php:2384
243
  msgctxt "Enabled/disabled on all"
244
  msgid "posts"
245
  msgstr "prispevkih"
246
 
247
+ #: ad-inserter.php:2385
248
  msgctxt "Default insertion for"
249
  msgid "posts"
250
  msgstr "prispevke"
251
 
252
+ #: ad-inserter.php:2404 ad-inserter.php:2417 strings.php:156
253
  msgid "Enabled"
254
  msgstr "Omogočeno"
255
 
256
  #. translators: Menu items
257
+ #: ad-inserter.php:2404 ad-inserter.php:2417 includes/functions.php:2117
258
  #: strings.php:16
259
  msgid "Disabled"
260
  msgstr "Onemogočeno"
261
 
262
  #. translators: Enabled on all pages or posts
263
+ #: ad-inserter.php:2407
264
  msgid "Enabled on all"
265
  msgstr "Omogočeno na vseh"
266
 
267
  #. translators: Disabled on all pages or posts
268
+ #: ad-inserter.php:2409
269
  msgid "Disabled on all"
270
  msgstr "Onemogočeno na vseh"
271
 
272
  #. translators: No individual exceptions enabled for pages or posts
273
+ #: ad-inserter.php:2437
274
  msgid "No individual exceptions enabled for"
275
  msgstr "Ni omogočenih posameznih izjem za"
276
 
277
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
278
+ #: ad-inserter.php:2442
279
  msgid ""
280
  "Default insertion for %1$s can be configured for each block on %2$s page - "
281
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
285
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
286
  "strani</strong>.<br />"
287
 
288
+ #: ad-inserter.php:2447
289
  msgid ""
290
  "Default value is <strong>blank</strong> and means no individual exceptions "
291
  "(even if previously defined here).<br />"
293
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
294
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
295
 
296
+ #: ad-inserter.php:2450
297
  msgctxt "Pages"
298
  msgid ""
299
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
302
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
303
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
304
 
305
+ #: ad-inserter.php:2451
306
  msgctxt "Posts"
307
  msgid ""
308
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
311
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
312
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
313
 
314
+ #: ad-inserter.php:2453
315
  msgid "For more information check page %s"
316
  msgstr "Za več informacij poglejte stran %s"
317
 
318
  #. translators: Ad Inserter Exceptions documentation page
319
+ #: ad-inserter.php:2455
320
  msgid "Individual Exceptions"
321
  msgstr "Posamezne Izjeme"
322
 
323
+ #: ad-inserter.php:2500
324
  msgid "STATIC PAGE"
325
  msgstr "STATIČNA STRAN"
326
 
327
+ #: ad-inserter.php:2503
328
  msgid "POST"
329
  msgstr "PRISPEVEK"
330
 
331
+ #: ad-inserter.php:2506
332
  msgid "HOMEPAGE"
333
  msgstr "DOMAČA STRAN"
334
 
335
+ #: ad-inserter.php:2509
336
  msgid "CATEGORY PAGE"
337
  msgstr "STRAN KATEGORIJE"
338
 
339
+ #: ad-inserter.php:2512
340
  msgid "SEARCH PAGE"
341
  msgstr "STRAN ISKANJE"
342
 
343
+ #: ad-inserter.php:2515
344
  msgid "ARCHIVE PAGE"
345
  msgstr "STRAN ARHIVA"
346
 
347
+ #: ad-inserter.php:2518
348
  msgid "ERROR 404 PAGE"
349
  msgstr "STRAN NAPAKA 404"
350
 
351
+ #: ad-inserter.php:2521
352
  msgid "AJAX CALL"
353
  msgstr "AJAX KLIC"
354
 
355
+ #: ad-inserter.php:2524
356
  msgid "UNKNOWN PAGE TYPE"
357
  msgstr "NEZNAN TIP STRANI"
358
 
359
+ #: ad-inserter.php:2541
360
  msgid "Click to delete ad blocking detection cokies"
361
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
362
 
363
+ #: ad-inserter.php:2542
364
  msgid "AD BLOCKING STATUS UNKNOWN"
365
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
366
 
367
  #. translators: %s: AdSense Auto Ads
368
+ #: ad-inserter.php:2566
369
  msgid ""
370
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
371
  "positions"
373
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
374
  "položaje"
375
 
376
+ #: ad-inserter.php:2705
377
  msgid "Code for insertion"
378
  msgstr "Koda za vstavljanje"
379
 
380
+ #: ad-inserter.php:2705
381
  msgid "character"
382
  msgid_plural "characters"
383
  msgstr[0] "znak"
385
  msgstr[2] "znaki"
386
  msgstr[3] "znakov"
387
 
388
+ #: ad-inserter.php:2748
389
  msgid "Header code"
390
  msgstr "Koda v glavi"
391
 
392
+ #: ad-inserter.php:2748
393
  msgctxt "Header code"
394
  msgid "DISABLED"
395
  msgstr "ONEMOGOČENA"
396
 
397
+ #: ad-inserter.php:2748 ad-inserter.php:2966
398
  msgid "character inserted"
399
  msgid_plural "characters inserted"
400
  msgstr[0] "znak vstavljen"
402
  msgstr[2] "znaki vstavljeni"
403
  msgstr[3] "znakov vstavljenih"
404
 
405
+ #: ad-inserter.php:2781
406
  msgid "Automatically placed by AdSense Auto ads code"
407
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
408
 
409
+ #: ad-inserter.php:2966
410
  msgid "Footer code"
411
  msgstr "Koda v nogi"
412
 
413
+ #: ad-inserter.php:2966
414
  msgctxt "Footer code"
415
  msgid "DISABLED"
416
  msgstr "ONEMOGOČENA"
417
 
418
+ #: ad-inserter.php:2972
419
  msgid "JAVASCRIPT NOT WORKING"
420
  msgstr "JAVASCRIPT NE DELA"
421
 
422
+ #: ad-inserter.php:2972
423
  msgid "NO JAVASCRIPT ERRORS"
424
  msgstr "BREZ JAVASCRIPT NAPAK"
425
 
426
+ #: ad-inserter.php:2972
427
  msgid "JAVASCRIPT ERRORS"
428
  msgstr "JAVASCRIPT NAPAKE"
429
 
430
  #. translators: block name (block with default settings)
431
+ #: ad-inserter.php:5032
432
  msgctxt "Block name"
433
  msgid "Default"
434
  msgstr "Privzeti"
435
 
436
  #. translators: %s: Ad Inserter
437
+ #: ad-inserter.php:5596
438
  msgid "Error importing %s settings."
439
  msgstr "Napaka pri uvozu %s nastavitev."
440
 
441
+ #: ad-inserter.php:5597
442
  msgid "Error importing settings for block"
443
  msgid_plural "Error importing settings for blocks:"
444
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
446
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
447
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
448
 
449
+ #: ad-inserter.php:5646
450
  msgid "Settings saved."
451
  msgstr "Nastavitve shranjene."
452
 
453
+ #: ad-inserter.php:5731
454
  msgid "Settings cleared."
455
  msgstr "Nastavitve ponastavljene."
456
 
457
+ #: ad-inserter.php:6076 ad-inserter.php:6078 ad-inserter.php:6101
458
  msgid "word"
459
  msgid_plural "words"
460
  msgstr[0] "beseda"
462
  msgstr[2] "besede"
463
  msgstr[3] "besed"
464
 
465
+ #: ad-inserter.php:6115 ad-inserter.php:6227
466
  msgid "HTML TAGS REMOVED"
467
  msgstr "HTML ZNAČKE ODSTRANJENE"
468
 
469
+ #: ad-inserter.php:6303
470
  msgid "BEFORE COMMENTS"
471
  msgstr "PRED KOMENTARJI"
472
 
473
+ #: ad-inserter.php:6411
474
  msgid "AFTER COMMENTS"
475
  msgstr "PO KOMETARJIH"
476
 
477
+ #: ad-inserter.php:6474
478
  msgid "BETWEEN COMMENTS"
479
  msgstr "MED KOMENTARJI"
480
 
481
+ #: ad-inserter.php:7619
482
  msgid "requires WordPress 4.0 or newer"
483
  msgstr "potrebuje WordPress 4.0 ali novejši"
484
 
485
+ #: ad-inserter.php:7619
486
  msgid "Please update!"
487
  msgstr "Prosimo, posodobite!"
488
 
489
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
490
  #. name with HTML tags will be added)
491
+ #: ad-inserter.php:7845
492
  msgid "Thank you for installing"
493
  msgstr "Hvala za namestitev vtičnika"
494
 
495
  #. translators: Opt-in message: %s: HTML tags
496
+ #: ad-inserter.php:7847
497
  msgid ""
498
  "We would like to %s track its usage %s on your site. This is completely "
499
  "optional and can be disabled at any time."
501
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
502
  "izbirno in se lahko izključi kadarkoli."
503
 
504
+ #: ad-inserter.php:7849
505
  msgid ""
506
  "We don't record any sensitive data, only information regarding the WordPress "
507
  "environment and plugin usage, which will help us to make improvements to the "
511
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
512
 
513
  #. translators: Deactivation message: %s: HTML tags
514
+ #: ad-inserter.php:7886
515
  msgid ""
516
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
517
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
522
  "nam %s in poskušali vam bomo pomagati."
523
 
524
  #. translators: %s: Ad Inserter
525
+ #: ad-inserter.php:7929
526
  msgid "%s block."
527
  msgstr "%s blok."
528
 
529
  #. translators: widget title
530
+ #: ad-inserter.php:7945 ad-inserter.php:7981
531
  msgid "Processing log"
532
  msgstr "Dnevnik procesiranja"
533
 
534
  #. translators: widget title
535
+ #: ad-inserter.php:7947 ad-inserter.php:7982
536
  msgid "Dummy widget"
537
  msgstr "Prazen gradnik"
538
 
539
  #. translators: widget title
540
+ #: ad-inserter.php:7949 ad-inserter.php:7980
541
  msgid "Debugging tools"
542
  msgstr "Orodja za razhroščevanje"
543
 
544
  #. translators: block status (widget title)
545
+ #: ad-inserter.php:7956
546
  msgctxt "block"
547
  msgid "PAUSED"
548
  msgstr "USTAVLJEN"
549
 
550
+ #: ad-inserter.php:7957
551
  msgid "WIDGET DISABLED"
552
  msgstr "GRADNIK ONEMOGOČEN"
553
 
554
+ #: ad-inserter.php:7958
555
  msgid "Unknown block"
556
  msgstr "Neznan blok"
557
 
558
+ #: ad-inserter.php:7967 includes/functions.php:2630 settings.php:1038
559
  msgid "Title"
560
  msgstr "Naslov"
561
 
562
+ #: ad-inserter.php:7989
563
  msgctxt "Widget"
564
  msgid "Sticky"
565
  msgstr "Lepljiv"
566
 
567
+ #: ad-inserter.php:8038
568
  msgid ""
569
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
570
  "Inserter you need to first deactivate Ad Inserter Pro."
573
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
574
  "Inserter Pro."
575
 
576
+ #: ad-inserter.php:8039
577
  msgid ""
578
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
579
  "will clear all settings that are available only in the Pro version "
608
  msgid "After post"
609
  msgstr "Za prispevkom"
610
 
611
+ #: class.php:1957 settings.php:1624 settings.php:3359
612
  msgid "Widget"
613
  msgstr "Gradnik"
614
 
615
+ #: class.php:1962 settings.php:3357
616
  msgid "PHP function call"
617
  msgstr "Klic PHP funkcije"
618
 
702
  msgid "script"
703
  msgstr "skripta"
704
 
705
+ #: class.php:3042 settings.php:1893
706
  msgid "for"
707
  msgstr "za"
708
 
821
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
822
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
823
 
824
+ #: includes/functions.php:420 settings.php:1194 settings.php:2449
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
872
  msgid "%s license overused. Continue?"
873
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
874
 
875
+ #: includes/functions.php:507 settings.php:1963
876
  msgid "Save Settings"
877
  msgstr "Sharani Nastavitve"
878
 
948
  msgid "Tracking for this block is disabled"
949
  msgstr "Sledenje za ta blok je onemogočeno"
950
 
951
+ #: includes/functions.php:732 settings.php:3120 settings.php:3156
952
  #: strings.php:209
953
  msgid "Loading..."
954
  msgstr "Nalagam..."
1240
  msgid "Expired"
1241
  msgstr "Poteklo"
1242
 
1243
+ #: includes/functions.php:2112 settings.php:1277 settings.php:1292
1244
+ #: settings.php:1879
1245
  msgid "and"
1246
  msgstr "in"
1247
 
1282
  msgid "Preview iframe code"
1283
  msgstr "Predpreglej kodo iframe"
1284
 
1285
+ #: includes/functions.php:2165 includes/preview.php:1964 settings.php:954
1286
+ #: settings.php:2511
1287
  msgid "Preview"
1288
  msgstr "Predogled"
1289
 
1290
  #: includes/functions.php:2179 includes/functions.php:3821
1291
+ #: includes/functions.php:3884 settings.php:1996
1292
  msgid "Ad Blocking"
1293
  msgstr "Blokiranje Oglasov"
1294
 
1480
  msgid "Are you sure you want to clear all exceptions for block"
1481
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1482
 
1483
+ #: includes/functions.php:2618 settings.php:1041
1484
  msgid "Clear all exceptions for block"
1485
  msgstr "Pobriši vse izjeme za blok"
1486
 
1492
  msgid "Clear all exceptions for all blocks"
1493
  msgstr "Pobriši vse izjeme za vse bloke"
1494
 
1495
+ #: includes/functions.php:2630 settings.php:3429
1496
  msgid "Type"
1497
  msgstr "Vrsta"
1498
 
1501
  msgstr "Poglej"
1502
 
1503
  #: includes/functions.php:2649 includes/placeholders.php:346
1504
+ #: includes/preview.php:2271 settings.php:1180
1505
  msgid "Edit"
1506
  msgstr "Uredi"
1507
 
1567
  msgid "Main site settings used for all blogs"
1568
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1569
 
1570
+ #: includes/functions.php:2740 settings.php:2407
1571
  msgid "Ad Blocking Detection"
1572
  msgstr "Zaznavanje Blokiranja Oglasov"
1573
 
1727
  msgid "Placeholder"
1728
  msgstr "Polnilo"
1729
 
1730
+ #: includes/placeholders.php:356 settings.php:808 settings.php:3430
1731
  msgid "Size"
1732
  msgstr "Velikost"
1733
 
1860
  msgid "Ad Blocking Detected Message Preview"
1861
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1862
 
1863
+ #: includes/preview-adb.php:348 settings.php:2524
1864
  msgid "Message CSS"
1865
  msgstr "CSS sporočila"
1866
 
1867
+ #: includes/preview-adb.php:353 settings.php:2532
1868
  msgid "Overlay CSS"
1869
  msgstr "CSS prevleke"
1870
 
1904
  msgid "background"
1905
  msgstr "ozadje"
1906
 
1907
+ #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1908
+ #: settings.php:3356
1909
+ msgid "Alignment"
1910
+ msgstr "Poravnava"
1911
 
1912
  #: includes/preview.php:2143
1913
  msgid "Horizontal margin"
2144
  msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
2145
 
2146
  #: settings.php:249
2147
+ msgid "Group name"
2148
+ msgstr "Ime skupine"
2149
 
2150
+ #: settings.php:250
2151
+ msgid "Option name"
2152
+ msgstr "Ime različice"
2153
+
2154
+ #: settings.php:256
2155
  msgid "Share"
2156
  msgstr "Delež"
2157
 
2158
+ #: settings.php:259
2159
  msgid ""
2160
  "Option share in percents - 0 means option is disabled, if share for one "
2161
  "option is not defined it will be calculated automatically. Leave all share "
2165
  "eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
2166
  "prazne za enakomerno porazdelitev deležev različic."
2167
 
2168
+ #: settings.php:262
2169
  msgid "Time"
2170
  msgstr "Čas"
2171
 
2172
+ #: settings.php:265
2173
  msgid ""
2174
  "Option time in seconds - 0 means option is disabled and will be skipped. "
2175
  "Leave all time fields empty for no timed rotation."
2177
  "Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
2178
  "preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
2179
 
2180
+ #: settings.php:417
2181
  msgid "General Settings"
2182
  msgstr "Splošne Nastavitve"
2183
 
2184
+ #: settings.php:592 settings.php:2283 settings.php:2341 settings.php:2504
2185
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2186
  msgstr ""
2187
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2188
 
2189
+ #: settings.php:599
2190
  msgid "Toggle tools"
2191
  msgstr "Preklopi orodja"
2192
 
2193
+ #: settings.php:607
2194
  msgid "Process PHP code in block"
2195
  msgstr "Procesiraj PHP kodo v bloku"
2196
 
2197
+ #: settings.php:614
2198
  msgid "Disable insertion of this block"
2199
  msgstr "Onemogoči vstavljanje tega bloka"
2200
 
2201
+ #: settings.php:626
2202
  msgid "Toggle code generator"
2203
  msgstr "Preklopi generator kode"
2204
 
2205
+ #: settings.php:630
2206
  msgid "Toggle rotation editor"
2207
  msgstr "Preklopi urejevalnik rotacije"
2208
 
2209
+ #: settings.php:634
2210
  msgid "Open visual HTML editor"
2211
  msgstr "Odpri vizualni HTML urejevalnik"
2212
 
2213
+ #: settings.php:644
2214
  msgid "Show AdSense ad units"
2215
  msgstr "Pokaži oglasne enote AdSense"
2216
 
2217
+ #: settings.php:653
2218
  msgid "Clear block"
2219
  msgstr "Počisti blok"
2220
 
2221
+ #: settings.php:658 settings.php:3324
2222
  msgid "Copy block"
2223
  msgstr "Kopiraj blok"
2224
 
2225
+ #: settings.php:662
2226
  msgid "Paste name"
2227
  msgstr "Prilepi ime"
2228
 
2229
+ #: settings.php:666
2230
  msgid "Paste code"
2231
  msgstr "Prilepi kodo"
2232
 
2233
+ #: settings.php:670
2234
  msgid "Paste settings"
2235
  msgstr "Prilepi nastavitve"
2236
 
2237
+ #: settings.php:674
2238
  msgid "Paste block (name, code and settings)"
2239
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2240
 
2241
+ #: settings.php:693
2242
+ msgid "Rotation groups"
2243
+ msgstr "Skupine za rotacijo"
2244
+
2245
+ #: settings.php:697
2246
  msgid "Remove option"
2247
  msgstr "Odstrani različico"
2248
 
2249
+ #: settings.php:701
2250
  msgid "Add option"
2251
  msgstr "Dodaj različico"
2252
 
2253
+ #: settings.php:716
2254
  msgid "Import code"
2255
  msgstr "Uvozi kodo"
2256
 
2257
+ #: settings.php:720
2258
  msgid "Generate code"
2259
  msgstr "Generiraj kodo"
2260
 
2261
+ #: settings.php:725
2262
  msgid "Banner"
2263
  msgstr "Pasica"
2264
 
2265
+ #: settings.php:736
2266
  msgid "Image"
2267
  msgstr "Slika"
2268
 
2269
+ #: settings.php:744
2270
  msgid "Link"
2271
  msgstr "Povezava"
2272
 
2273
+ #: settings.php:755
2274
  msgid "Open link in a new tab"
2275
  msgstr "Odpri povezavo v novem zavihku"
2276
 
2277
+ #: settings.php:756
2278
  msgid "Select Image"
2279
  msgstr "Izberi Sliko"
2280
 
2281
+ #: settings.php:757
2282
  msgid "Select Placeholder"
2283
  msgstr "Izberi Polnilo"
2284
 
2285
+ #: settings.php:769
2286
  msgid "Comment"
2287
  msgstr "Komentar"
2288
 
2289
+ #: settings.php:778
2290
  msgctxt "AdSense"
2291
  msgid "Publisher ID"
2292
  msgstr "ID založnika"
2293
 
2294
+ #: settings.php:787
2295
  msgctxt "AdSense"
2296
  msgid "Ad Slot ID"
2297
  msgstr "ID mesta"
2298
 
2299
+ #: settings.php:796
2300
  msgid "Ad Type"
2301
  msgstr "Vrsta"
2302
 
2303
+ #: settings.php:820
2304
  msgid "AMP Ad"
2305
  msgstr "AMP Oglas"
2306
 
2307
+ #: settings.php:837
2308
  msgid "Show ad units from your AdSense account"
2309
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2310
 
2311
+ #: settings.php:837
2312
  msgid "AdSense ad units"
2313
  msgstr "Oglasne enote AdSense"
2314
 
2315
+ #: settings.php:854
2316
  msgctxt "AdSense"
2317
  msgid "Layout"
2318
  msgstr "Postavitev"
2319
 
2320
+ #: settings.php:863
2321
  msgctxt "AdSense"
2322
  msgid "Layout Key"
2323
  msgstr "Ključ postavitve"
2324
 
2325
+ #: settings.php:950
2326
  msgid ""
2327
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2328
  "Cookie or Referer (domain)"
2330
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2331
  "parametrov, Piškotkov ali napotiteljev (domen)"
2332
 
2333
+ #: settings.php:950
2334
  msgid "Lists"
2335
  msgstr "Seznami"
2336
 
2337
+ #: settings.php:951
2338
  msgid "Widget, Shortcode and PHP function call"
2339
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2340
 
2341
+ #: settings.php:951
2342
  msgid "Manual"
2343
  msgstr "Ročno"
2344
 
2345
+ #: settings.php:952
2346
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2347
  msgstr ""
2348
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2349
 
2350
+ #: settings.php:952
2351
  msgid "Devices"
2352
  msgstr "Naprave"
2353
 
2354
+ #: settings.php:953
2355
  msgid ""
2356
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2357
  "feeds), Filter, Scheduling, General tag"
2359
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2360
  "RSS), Filter, Urnik, Splošna oznaka"
2361
 
2362
+ #: settings.php:953
2363
  msgid "Misc"
2364
  msgstr "Razno"
2365
 
2366
+ #: settings.php:954
2367
  msgid "Preview code and alignment"
2368
  msgstr "Predogled kode in poravnave"
2369
 
2370
+ #: settings.php:957 settings.php:1961
2371
  msgid ""
2372
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2373
  "editor is active before saving settings."
2375
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2376
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2377
 
2378
+ #: settings.php:959
2379
  msgid "Save All Settings"
2380
  msgstr "Sharani Vse Nastavitve"
2381
 
2382
+ #: settings.php:970
2383
  msgid "Enable insertion on posts"
2384
  msgstr "Omogoči vstavljanje na prispevkih"
2385
 
2386
+ #: settings.php:972 settings.php:978
2387
  msgid ""
2388
  "Individual post exceptions (if enabled here) can be configured in post "
2389
  "editor. Leave blank for no individual post exceptions."
2391
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2392
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2393
 
2394
+ #: settings.php:978 settings.php:3007
2395
  msgid "Posts"
2396
  msgstr "Prispevki"
2397
 
2398
+ #: settings.php:982 settings.php:983
2399
  msgid ""
2400
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2401
  "page or theme homepage (available positions may depend on hooks used by the "
2405
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2406
  "lahko odvisni od ročic, ki jih tema uporablja)"
2407
 
2408
+ #: settings.php:983 settings.php:3009
2409
  msgid "Homepage"
2410
  msgstr "Domača stran"
2411
 
2412
+ #: settings.php:987 settings.php:988
2413
  msgid "Enable insertion on category blog pages (including sub-pages)"
2414
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2415
 
2416
+ #: settings.php:988 settings.php:3010
2417
  msgid "Category pages"
2418
  msgstr "Strani kategorij"
2419
 
2420
+ #: settings.php:991
2421
  msgid "Check theme for available positions for automatic insertion"
2422
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2423
 
2424
+ #: settings.php:998
2425
  msgid "Enable insertion on static pages"
2426
  msgstr "Omogoči vstavljanje na statičnih straneh"
2427
 
2428
+ #: settings.php:1000 settings.php:1006
2429
  msgid ""
2430
  "Individual static page exceptions (if enabled here) can be configured in "
2431
  "page editor. Leave blank for no individual page exceptions."
2434
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2435
  "izjem."
2436
 
2437
+ #: settings.php:1006 settings.php:3008
2438
  msgid "Static pages"
2439
  msgstr "Statične strani"
2440
 
2441
+ #: settings.php:1010 settings.php:1011
2442
  msgid "Enable insertion on search blog pages"
2443
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2444
 
2445
+ #: settings.php:1011 settings.php:3012
2446
  msgid "Search pages"
2447
  msgstr "Iskalne strani"
2448
 
2449
+ #: settings.php:1015 settings.php:1016
2450
  msgid "Enable insertion on tag or archive blog pages"
2451
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2452
 
2453
+ #: settings.php:1016
2454
  msgid "Tag / Archive pages"
2455
  msgstr "Strani oznak / arhiva"
2456
 
2457
+ #: settings.php:1022
2458
  msgid "Toggle list of individual exceptions"
2459
  msgstr "Preklopi seznam posameznih izjem"
2460
 
2461
+ #: settings.php:1038
2462
  msgctxt "post"
2463
  msgid "Type"
2464
  msgstr "Vrsta"
2465
 
2466
  #. translators: %d: block number
2467
+ #: settings.php:1040
2468
  msgid "Are you sure you want to clear all exceptions for block %d?"
2469
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2470
 
2471
+ #: settings.php:1072 settings.php:1220 settings.php:1754
2472
  msgid "Insertion"
2473
  msgstr "Vstavljanje"
2474
 
2475
+ #: settings.php:1110
2476
  msgid ""
2477
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2478
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2488
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2489
  "število pomeni štetje z nasprotne smeri"
2490
 
2491
+ #: settings.php:1111
2492
  msgid ""
2493
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2494
  "means every N images, empty means all images, 0 means random image, value "
2503
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2504
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2505
 
2506
+ #: settings.php:1124
2507
  msgid ""
2508
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2509
  "numbers, %N means every N excerpts, empty means all excerpts"
2512
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2513
  "izvlečki"
2514
 
2515
+ #: settings.php:1125
2516
  msgid ""
2517
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2518
  "numbers, %N means every N posts, empty means all posts"
2521
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2522
  "prispevki"
2523
 
2524
+ #: settings.php:1126
2525
  msgid ""
2526
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2527
  "numbers, %N means every N comments, empty means all comments"
2530
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2531
  "vsi komentarji"
2532
 
2533
+ #: settings.php:1133
2534
  msgid "Toggle paragraph counting settings"
2535
  msgstr "Preklopi nastavitve za štetje odstavkov"
2536
 
2537
+ #: settings.php:1134
2538
  msgid "Toggle paragraph clearance settings"
2539
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2540
 
2541
+ #: settings.php:1137
2542
  msgid "Toggle insertion filter settings"
2543
  msgstr "Preklopi nastavitve filtra vstavljanja"
2544
 
2545
+ #: settings.php:1155
 
 
 
 
2546
  msgid "Toggle insertion and alignment icons"
2547
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2548
 
2549
+ #: settings.php:1169
2550
  msgid "Custom CSS code for the wrapping div"
2551
  msgstr "CSS koda po meri za div za ovijanje"
2552
 
2553
+ #: settings.php:1172 settings.php:1173 settings.php:1174 settings.php:1175
2554
+ #: settings.php:1176 settings.php:1177
2555
  msgid "CSS code for the wrapping div, click to edit"
2556
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
2557
 
2558
+ #: settings.php:1190
2559
  msgid "HTML element"
2560
  msgstr "HTML element"
2561
 
2562
+ #: settings.php:1203
2563
  msgid "HTML element selector or comma separated list of selectors"
2564
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2565
 
2566
+ #: settings.php:1209 settings.php:2417
2567
  msgid "Action"
2568
  msgstr "Akcija"
2569
 
2570
+ #: settings.php:1221
2571
  msgid ""
2572
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2573
  "Server-side insertion inserts block when the page is generated but needs "
2577
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
2578
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
2579
 
2580
+ #: settings.php:1231
2581
  msgid "JavaScript code position"
2582
  msgstr "Položaj JavaScript kode"
2583
 
2584
+ #: settings.php:1232
2585
  msgid ""
2586
  "Page position where the JavaScript code for client-side insertion will be "
2587
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2590
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
2591
  "DOM."
2592
 
2593
+ #: settings.php:1247
2594
  msgid "Count"
2595
  msgstr "Štej"
2596
 
2597
+ #: settings.php:1253
2598
  msgid "paragraphs with tags"
2599
  msgstr "odstavke z značkami"
2600
 
2601
+ #: settings.php:1259
2602
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2603
  msgstr ""
2604
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
2605
 
2606
+ #: settings.php:1268
2607
  msgid "that have between"
2608
  msgstr "ki imajo med"
2609
 
2610
+ #: settings.php:1274
2611
  msgid "Minimum number of paragraph words, leave empty for no limit"
2612
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
2613
 
2614
+ #: settings.php:1283
2615
  msgid "Maximum number of paragraph words, leave empty for no limit"
2616
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
2617
 
2618
+ #: settings.php:1286 settings.php:1881
2619
  msgid "words"
2620
  msgstr "besed"
2621
 
2622
+ #: settings.php:1301 settings.php:1367 settings.php:1393
2623
  msgid "Comma separated texts"
2624
  msgstr "Z vejico ločena besedila"
2625
 
2626
+ #: settings.php:1310
2627
  msgid "Minimum number of paragraphs"
2628
  msgstr "Najmanjše število odstavkov"
2629
 
2630
  #. translators: %s: list of HTML tags
2631
+ #: settings.php:1325
2632
  msgid ""
2633
  "Count also paragraphs inside %s elements - defined on general plugin "
2634
  "settings page - tab &#9881; / tab General"
2636
  "Štej tudi odstavke znotraj elementov %s - določeni na strani splošnih "
2637
  "nastavitev vtičnika - zavihek &#9881; / zavihek Splošno"
2638
 
2639
+ #: settings.php:1325
2640
  msgid "Count inside special elements"
2641
  msgstr "Štej znotraj posebnih elementov"
2642
 
2643
+ #: settings.php:1336
2644
  msgid "Minimum number of words in paragraphs above"
2645
  msgstr "Najmanjše število besed v odstavkih zgoraj"
2646
 
2647
+ #: settings.php:1342
2648
  msgid ""
2649
  "Used only with automatic insertion After paragraph and empty paragraph "
2650
  "numbers"
2652
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
2653
  "številkami odstavkov"
2654
 
2655
+ #: settings.php:1352 settings.php:1378
2656
  msgid "In"
2657
  msgstr "V"
2658
 
2659
+ #: settings.php:1358
2660
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2661
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
2662
 
2663
+ #: settings.php:1361
2664
  msgid "paragraphs above avoid"
2665
  msgstr "odstavkih zgoraj se izogni"
2666
 
2667
+ #: settings.php:1384
2668
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2669
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
2670
 
2671
+ #: settings.php:1387
2672
  msgid "paragraphs below avoid"
2673
  msgstr "odstavkih spodaj se izogni"
2674
 
2675
+ #: settings.php:1403
2676
  msgid "If text is found"
2677
  msgstr "Če je besedilo najdeno"
2678
 
2679
+ #: settings.php:1410
2680
  msgid "check up to"
2681
  msgstr "preveri do"
2682
 
2683
+ #: settings.php:1418
2684
  msgctxt "check up to"
2685
  msgid "paragraphs"
2686
  msgstr "odstavkov"
2687
 
2688
+ #: settings.php:1434
2689
  msgid "Categories"
2690
  msgstr "Kategorije"
2691
 
2692
+ #: settings.php:1437
2693
  msgid "Toggle category editor"
2694
  msgstr "Preklopi urejevalnik kategorij"
2695
 
2696
+ #: settings.php:1440
2697
  msgid "Comma separated category slugs"
2698
  msgstr "Z vejico ločeni ključi kategorij"
2699
 
2700
+ #: settings.php:1444
2701
  msgid "Blacklist categories"
2702
  msgstr "Črni seznam kategorij"
2703
 
2704
+ #: settings.php:1448
2705
  msgid "Whitelist categories"
2706
  msgstr "Beli seznam kategorij"
2707
 
2708
+ #: settings.php:1460
2709
  msgid "Tags"
2710
  msgstr "Oznake"
2711
 
2712
+ #: settings.php:1463
2713
  msgid "Toggle tag editor"
2714
  msgstr "Preklopi urejevalnik oznak"
2715
 
2716
+ #: settings.php:1466
2717
  msgid "Comma separated tag slugs"
2718
  msgstr "Z vejico ločeni ključi oznak"
2719
 
2720
+ #: settings.php:1470
2721
  msgid "Blacklist tags"
2722
  msgstr "Črni seznam oznak"
2723
 
2724
+ #: settings.php:1474
2725
  msgid "Whitelist tags"
2726
  msgstr "Beli seznam oznak"
2727
 
2728
+ #: settings.php:1486
2729
  msgid "Taxonomies"
2730
  msgstr "Taksonomije"
2731
 
2732
+ #: settings.php:1489
2733
  msgid "Toggle taxonomy editor"
2734
  msgstr "Preklopi urejevalnik taksonomij"
2735
 
2736
+ #: settings.php:1492
2737
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2738
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
2739
 
2740
+ #: settings.php:1496
2741
  msgid "Blacklist taxonomies"
2742
  msgstr "Črni seznam taksonomij"
2743
 
2744
+ #: settings.php:1500
2745
  msgid "Whitelist taxonomies"
2746
  msgstr "Beli seznam taksonomij"
2747
 
2748
+ #: settings.php:1512
2749
  msgid "Post IDs"
2750
  msgstr "ID-ji prispevkov"
2751
 
2752
+ #: settings.php:1515
2753
  msgid "Toggle post/page ID editor"
2754
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
2755
 
2756
+ #: settings.php:1518
2757
  msgid "Comma separated post/page IDs"
2758
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
2759
 
2760
+ #: settings.php:1522
2761
  msgid "Blacklist IDs"
2762
  msgstr "Črni seznam ID-jev"
2763
 
2764
+ #: settings.php:1526
2765
  msgid "Whitelist IDs"
2766
  msgstr "Beli seznam ID-jev"
2767
 
2768
+ #: settings.php:1538
2769
  msgid "Urls"
2770
  msgstr "Url-ji"
2771
 
2772
+ #: settings.php:1541
2773
  msgid "Toggle url editor"
2774
  msgstr "Preklopi urejevalnik url-jev"
2775
 
2776
+ #: settings.php:1544
2777
  msgid ""
2778
  "Comma separated urls (page addresses) starting with / after domain name (e."
2779
  "g. /permalink-url, use only when you need to taget a specific url not "
2785
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
2786
  "začetek*. *url-vzorec*, *url-konec)"
2787
 
2788
+ #: settings.php:1548
2789
  msgid "Blacklist urls"
2790
  msgstr "Črni seznam url-jev"
2791
 
2792
+ #: settings.php:1552
2793
  msgid "Whitelist urls"
2794
  msgstr "Beli seznam url-jev"
2795
 
2796
+ #: settings.php:1563
2797
  msgid "Url parameters"
2798
  msgstr "Url parametri"
2799
 
2800
+ #: settings.php:1567
2801
  msgid "Toggle url parameter and cookie editor"
2802
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
2803
 
2804
+ #: settings.php:1570
2805
  msgid ""
2806
  "Comma separated url query parameters or cookies with optional values (use "
2807
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2810
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
2811
  "'piškotek=vrednost')"
2812
 
2813
+ #: settings.php:1574
2814
  msgid "Blacklist url parameters"
2815
  msgstr "Črni seznam url parametrov"
2816
 
2817
+ #: settings.php:1578
2818
  msgid "Whitelist url parameters"
2819
  msgstr "Beli seznam url parametrov"
2820
 
2821
+ #: settings.php:1589
2822
  msgid "Referrers"
2823
  msgstr "Napotitelji"
2824
 
2825
+ #: settings.php:1592
2826
  msgid "Toggle referer editor"
2827
  msgstr "Preklopi urejevalnik napotiteljev"
2828
 
2829
+ #: settings.php:1595
2830
  msgid ""
2831
  "Comma separated domains, use # for no referrer, you can also use partial "
2832
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2834
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
2835
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
2836
 
2837
+ #: settings.php:1599
2838
  msgid "Blacklist referers"
2839
  msgstr "Črni seznam napotiteljev"
2840
 
2841
+ #: settings.php:1603
2842
  msgid "Whitelist referers"
2843
  msgstr "Beli seznam napotiteljev"
2844
 
2845
+ #: settings.php:1623
2846
  msgid "Enable widget for this block"
2847
  msgstr "Omogočite gradnik za ta blok"
2848
 
2849
+ #: settings.php:1635
2850
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2851
  msgstr ""
2852
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2853
 
2854
+ #: settings.php:1636 settings.php:3358
2855
  msgid "Shortcode"
2856
  msgstr "Kratka koda"
2857
 
2858
+ #: settings.php:1651
2859
  msgid ""
2860
  "Enable PHP function call to insert this block at any position in theme file. "
2861
  "If function is disabled for block it will return empty string."
2864
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
2865
  "prazen niz."
2866
 
2867
+ #: settings.php:1652
2868
  msgid "PHP function"
2869
  msgstr "PHP funkcija"
2870
 
2871
+ #: settings.php:1667
2872
  msgid "Client-side device detection"
2873
  msgstr "Zaznavanje naprave na strani klienta"
2874
 
2875
+ #: settings.php:1668
2876
  msgid "Server-side device detection"
2877
  msgstr "Zaznavanje naprave na strani strežnika"
2878
 
2879
+ #: settings.php:1675
2880
  msgid "Use client-side detection to"
2881
  msgstr "Uporabi zaznavanje na strani klienta in"
2882
 
2883
+ #: settings.php:1677
2884
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2885
  msgstr ""
2886
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
2887
 
2888
  #. Translators: only on (the following devices): viewport names (devices)
2889
  #. listed
2890
+ #: settings.php:1682
2891
  msgid "only on"
2892
  msgstr "samo na"
2893
 
2894
+ #: settings.php:1710
2895
  msgid "Device min width %s px"
2896
  msgstr "Najmanjša širina naprave %s px"
2897
 
2898
+ #: settings.php:1736
2899
  msgid "Use server-side detection to insert block only for"
2900
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
2901
 
2902
+ #: settings.php:1755
2903
  msgid "Filter"
2904
  msgstr "Filter"
2905
 
2906
+ #: settings.php:1756
2907
  msgid "Word Count"
2908
  msgstr "Število Besed"
2909
 
2910
+ #: settings.php:1757
2911
  msgid "Scheduling"
2912
  msgstr "Urnik"
2913
 
2914
+ #: settings.php:1758
2915
  msgid "Display"
2916
  msgstr "Prikaz"
2917
 
2918
+ #: settings.php:1760 settings.php:1989
2919
  msgid "General"
2920
  msgstr "Splošno"
2921
 
2922
+ #: settings.php:1772
2923
  msgid "Old settings for AMP pages detected"
2924
  msgstr "Zaznane stare nastavitve za AMP strani"
2925
 
2926
+ #: settings.php:1772
2927
  msgid ""
2928
  "To insert different codes on normal and AMP pages separate them with "
2929
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
2934
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
2935
  "separatorja)."
2936
 
2937
+ #: settings.php:1772
2938
  msgid "AMP pages"
2939
  msgstr "AMP strani"
2940
 
2941
+ #: settings.php:1777
2942
  msgid "Enable insertion for Ajax requests"
2943
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
2944
 
2945
+ #: settings.php:1777
2946
  msgid "Ajax requests"
2947
  msgstr "Ajax zahteve"
2948
 
2949
+ #: settings.php:1782
2950
  msgid "Enable insertion in RSS feeds"
2951
  msgstr "Omogoči vstavljanje v RSS virih"
2952
 
2953
+ #: settings.php:1782
2954
  msgid "RSS Feed"
2955
  msgstr "RSS Vir"
2956
 
2957
+ #: settings.php:1787
2958
  msgid "Enable insertion on page for Error 404: Page not found"
2959
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
2960
 
2961
+ #: settings.php:1787
2962
  msgid "Error 404 page"
2963
  msgstr "Stran napake 404"
2964
 
2965
+ #: settings.php:1799
2966
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2967
  msgstr ""
2968
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
2969
 
2970
+ #: settings.php:1800
2971
  msgid "Max"
2972
  msgstr "Največ"
2973
 
2974
+ #: settings.php:1800
2975
  msgid "insertions"
2976
  msgstr "vstavljanj"
2977
 
2978
+ #: settings.php:1802
2979
  msgid ""
2980
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2981
  "tab General)"
2983
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
2984
  "&#9881; / zavihek Splošno)"
2985
 
2986
+ #: settings.php:1805 settings.php:2147
2987
  msgid "Max blocks per page"
2988
  msgstr "Največ blokov na stran"
2989
 
2990
+ #: settings.php:1817
2991
  msgid "Insert for"
2992
  msgstr "Vstavi za"
2993
 
2994
+ #: settings.php:1825
2995
  msgid ""
2996
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2997
  "currently active). Might speed up insertion on content pages when "
3001
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3002
  "filter the_content večkrat klican."
3003
 
3004
+ #: settings.php:1828
3005
  msgid "Insert only in the loop"
3006
  msgstr "Vstavi samo v zanki"
3007
 
3008
+ #: settings.php:1834
3009
  msgid ""
3010
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3011
  msgstr ""
3012
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3013
  "Rocket"
3014
 
3015
+ #: settings.php:1834
3016
  msgid "Disable caching"
3017
  msgstr "Onemogoči predpomnjenje"
3018
 
3019
+ #: settings.php:1846
3020
  msgid "Filter insertions"
3021
  msgstr "Filtriraj vstavljanja"
3022
 
3023
+ #: settings.php:1849
3024
  msgid ""
3025
  "Filter multiple insertions by specifying wanted insertions for this block - "
3026
  "single number, comma separated numbers or %N for every N insertions - empty "
3032
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3033
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3034
 
3035
+ #: settings.php:1852
3036
  msgid "using"
3037
  msgstr "z uporabo"
3038
 
3039
+ #: settings.php:1871
3040
  msgid "Checked means specified calls are unwanted"
3041
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3042
 
3043
+ #: settings.php:1871
3044
  msgid "Invert filter"
3045
  msgstr "Obrni filter"
3046
 
3047
+ #: settings.php:1877
3048
  msgid "Post/Static page must have between"
3049
  msgstr "Prispevek/Statična stran mora imeti med"
3050
 
3051
+ #: settings.php:1878
3052
  msgid "Minimum number of post/static page words, leave empty for no limit"
3053
  msgstr ""
3054
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3055
  "omejitev"
3056
 
3057
+ #: settings.php:1880
3058
  msgid "Maximum number of post/static page words, leave empty for no limit"
3059
  msgstr ""
3060
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3061
  "omejitev"
3062
 
3063
+ #: settings.php:1893
3064
  msgid "days after publishing"
3065
  msgstr "dni po objavi"
3066
 
3067
+ #: settings.php:1895
3068
  msgid "Not available"
3069
  msgstr "Ni na razpolago"
3070
 
3071
+ #: settings.php:1908 settings.php:2139
3072
  msgid "Ad label"
3073
  msgstr "Oznaka oglasa"
3074
 
3075
+ #: settings.php:1927
3076
  msgid "General tag"
3077
  msgstr "Splošna oznaka"
3078
 
3079
+ #: settings.php:1931
3080
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3081
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3082
 
3083
  #. translators: %s: HTML tags
3084
+ #: settings.php:1940
3085
  msgid ""
3086
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3087
  "side device detection!"
3089
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3090
  "potrebna za zaznavanje naprave na strani klienta!"
3091
 
3092
+ #: settings.php:1952
3093
  msgid "Settings"
3094
  msgstr "Nastavitve"
3095
 
3096
+ #: settings.php:1955
3097
  msgid "Settings timestamp"
3098
  msgstr "Časovni žig nastavitev"
3099
 
3100
+ #: settings.php:1967
3101
  msgid "Are you sure you want to reset all settings?"
3102
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3103
 
3104
+ #: settings.php:1967
3105
  msgid "Reset All Settings"
3106
  msgstr "Ponastavi Vse Nastavitve"
3107
 
3108
+ #: settings.php:1990
3109
  msgid "Viewports"
3110
  msgstr "Pogledi"
3111
 
3112
+ #: settings.php:1991
3113
  msgid "Hooks"
3114
  msgstr "Ročice"
3115
 
3116
+ #: settings.php:1992
3117
  msgid "Header"
3118
  msgstr "Glava"
3119
 
3120
+ #: settings.php:1993 strings.php:30
3121
  msgid "Footer"
3122
  msgstr "Noga"
3123
 
3124
+ #: settings.php:1998
3125
  msgid "Debugging"
3126
  msgstr "Razhroščevanje"
3127
 
3128
+ #: settings.php:2008
3129
  msgid "Plugin priority"
3130
  msgstr "Prednost vtičnika"
3131
 
3132
+ #: settings.php:2016
3133
  msgid "Output buffering"
3134
  msgstr "Predpomnjenje izhoda"
3135
 
3136
+ #: settings.php:2019
3137
  msgid "Needed for position Above header but may not work with all themes"
3138
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3139
 
3140
+ #: settings.php:2027
3141
  msgid "Syntax highlighting theme"
3142
  msgstr "Tema za poudarjanje sintakse"
3143
 
3144
+ #: settings.php:2034
3145
  msgctxt "no syntax highlighting themes"
3146
  msgid "None"
3147
  msgstr "Brez"
3148
 
3149
+ #: settings.php:2035
3150
  msgid "No Syntax Highlighting"
3151
  msgstr "Brez Poudarjanja Sintakse"
3152
 
3153
+ #: settings.php:2037
3154
  msgctxt "syntax highlighting themes"
3155
  msgid "Light"
3156
  msgstr "Svetle"
3157
 
3158
+ #: settings.php:2052
3159
  msgctxt "syntax highlighting themes"
3160
  msgid "Dark"
3161
  msgstr "Temne"
3162
 
3163
+ #: settings.php:2078
3164
  msgid "Min. user role for ind. exceptions editing"
3165
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3166
 
3167
+ #: settings.php:2088
3168
  msgid "Sticky widget mode"
3169
  msgstr "Način za lepljive gradnike"
3170
 
3171
+ #: settings.php:2091
3172
  msgid ""
3173
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3174
  "mode works with most themes but may reload ads on page load."
3177
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3178
  "nalaganju strani."
3179
 
3180
+ #: settings.php:2099
3181
  msgid "Sticky widget top margin"
3182
  msgstr "Zgornji rob za lepljiv gradnik"
3183
 
3184
+ #: settings.php:2107
3185
  msgid "Dynamic blocks"
3186
  msgstr "Dinamični bloki"
3187
 
3188
+ #: settings.php:2120
3189
  msgid "Functions for paragraph counting"
3190
  msgstr "Funkcije za štetje odstavkov"
3191
 
3192
+ #: settings.php:2123
3193
  msgid ""
3194
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3195
  "functions if paragraphs are not counted properly on non-english pages."
3198
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3199
  "šteti."
3200
 
3201
+ #: settings.php:2131
3202
  msgid "No paragraph counting inside"
3203
  msgstr "Ni štetja odstavkov znotraj"
3204
 
3205
+ #: settings.php:2142
3206
  msgid "Label text or HTML code"
3207
  msgstr "Besedilo oznake ali HTML koda"
3208
 
3209
+ #: settings.php:2150
3210
  msgid ""
3211
  "Maximum number of inserted blocks per page. You need to enable Max page "
3212
  "insertions (button Misc / tab Insertion) to count block for this limit."
3215
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3216
  "omejitev."
3217
 
3218
+ #: settings.php:2164
3219
  msgid "Plugin usage tracking"
3220
  msgstr "Sledenje uporabe vtičnika"
3221
 
3222
  #. translators: %s: Ad Inserter
3223
+ #: settings.php:2167
3224
  msgid ""
3225
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3226
  "Only information regarding the WordPress environment and %s usage is "
3230
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3231
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3232
 
3233
+ #: settings.php:2185
3234
  msgid "CSS class name for the wrapping div"
3235
  msgstr "Ime CSS razreda za div za ovijanje"
3236
 
3237
+ #: settings.php:2185
3238
  msgid "Block class name"
3239
  msgstr "Ime razreda za blok"
3240
 
3241
+ #: settings.php:2189
3242
  msgid "Include general plugin block class"
3243
  msgstr "Vključi splošni razred vtičnika za blok"
3244
 
3245
+ #: settings.php:2189
3246
  msgid "Block class"
3247
  msgstr "Razred bloka"
3248
 
3249
+ #: settings.php:2194
3250
  msgid "Include block number class"
3251
  msgstr "Vključi razred številke bloka"
3252
 
3253
+ #: settings.php:2194
3254
  msgid "Block number class"
3255
  msgstr "Razred številke bloka"
3256
 
3257
+ #: settings.php:2199
3258
  msgid ""
3259
  "Instead of alignment classes generate inline alignment styles for blocks"
3260
  msgstr ""
3261
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3262
 
3263
+ #: settings.php:2199
3264
  msgid "Inline styles"
3265
  msgstr "Medvrstični slogi"
3266
 
3267
+ #: settings.php:2205
3268
  msgid "Preview of the block wrapping code"
3269
  msgstr "Predogled kode za ovijanje blokov"
3270
 
3271
+ #: settings.php:2206
3272
  msgid "Wrapping div"
3273
  msgstr "div za ovijanje"
3274
 
3275
+ #: settings.php:2207 settings.php:2607
3276
  msgid "BLOCK CODE"
3277
  msgstr "KODA BLOKA"
3278
 
3279
+ #: settings.php:2215
3280
  msgid "Viewport Settings used for client-side device detection"
3281
  msgstr ""
3282
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3283
 
3284
  #. Translators: %d: viewport number
3285
+ #: settings.php:2223
3286
  msgid "Viewport %d name"
3287
  msgstr "Ime pogleda %d"
3288
 
3289
+ #: settings.php:2226
3290
  msgid "min width"
3291
  msgstr "najmanjša širina"
3292
 
3293
+ #: settings.php:2237
3294
  msgid "Custom Hooks"
3295
  msgstr "Ročice Po Meri"
3296
 
3297
+ #: settings.php:2249 settings.php:2252
3298
  msgid "Enable hook"
3299
  msgstr "Omogoči ročico"
3300
 
3301
  #. translators: %d: hook number
3302
+ #: settings.php:2252
3303
  msgid "Hook %d name"
3304
  msgstr "Ime ročice %d"
3305
 
3306
+ #: settings.php:2255
3307
  msgid "Hook name for automatic insertion selection"
3308
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3309
 
3310
+ #: settings.php:2258
3311
  msgid "action"
3312
  msgstr "akcija"
3313
 
3314
+ #: settings.php:2261
3315
  msgid "Action name as used in the do_action () function"
3316
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3317
 
3318
+ #: settings.php:2264
3319
  msgid "priority"
3320
  msgstr "prednost"
3321
 
3322
+ #: settings.php:2267
3323
  msgid "Priority for the hook (default is 10)"
3324
  msgstr "Prednost za ročico (privzeta je 10)"
3325
 
3326
+ #: settings.php:2288
3327
  msgid "Enable insertion of this code into HTML page header"
3328
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3329
 
3330
+ #: settings.php:2292 settings.php:2350 settings.php:2509
3331
  msgid "Process PHP code"
3332
  msgstr "Procesiraj PHP kodo"
3333
 
3334
+ #: settings.php:2296
3335
  msgid "HTML Page Header Code"
3336
  msgstr "Koda v Glavi HTML Strani"
3337
 
3338
+ #: settings.php:2304
3339
  msgid "Code in the %s section of the HTML page"
3340
  msgstr "Koda v %s delu HTML strani"
3341
 
3342
+ #: settings.php:2305 settings.php:2363
3343
  msgctxt "code in header or footer"
3344
  msgid "DISABLED"
3345
  msgstr "ONEMOGOČENA"
3346
 
3347
+ #: settings.php:2318 settings.php:2376
3348
  msgid "Use server-side detection to insert code only for"
3349
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3350
 
3351
+ #: settings.php:2331
3352
  msgid ""
3353
  "Enable insertion of this code into HTML page header on page for Error 404: "
3354
  "Page not found"
3356
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3357
  "obstaja"
3358
 
3359
+ #: settings.php:2331 settings.php:2389
3360
  msgid "Insert on Error 404 page"
3361
  msgstr "Vstavi na strani Napake 404"
3362
 
3363
+ #: settings.php:2346
3364
  msgid "Enable insertion of this code into HTML page footer"
3365
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3366
 
3367
+ #: settings.php:2354
3368
  msgid "HTML Page Footer Code"
3369
  msgstr "Koda v Nogi HTML Strani"
3370
 
3371
  #. translators: %s: HTML tags
3372
+ #: settings.php:2362
3373
  msgid "Code before the %s tag of the the HTML page"
3374
  msgstr "Koda pred %s značko HTML strani"
3375
 
3376
+ #: settings.php:2389
3377
  msgid ""
3378
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3379
  "Page not found"
3381
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3382
  "Stran ne obstaja"
3383
 
3384
+ #: settings.php:2403
3385
  msgid "Enable detection of ad blocking"
3386
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3387
 
3388
+ #: settings.php:2420
3389
  msgid "Global action when ad blocking is detected"
3390
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3391
 
3392
+ #: settings.php:2429
3393
  msgid "Delay Action"
3394
  msgstr "Zakasni Akcijo"
3395
 
3396
+ #: settings.php:2432
3397
  msgid ""
3398
  "Number of page views to delay action when ad blocking is detected. Leave "
3399
  "empty for no delay (action fires on first page view). Sets cookie."
3402
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3403
  "strani). Nastavi piškotek."
3404
 
3405
+ #: settings.php:2432
3406
  msgctxt "Delay Action for x "
3407
  msgid "page views"
3408
  msgstr "ogledov strani"
3409
 
3410
+ #: settings.php:2437
3411
  msgid "No Action Period"
3412
  msgstr "Obdobje Brez Akcije"
3413
 
3414
+ #: settings.php:2440
3415
  msgid ""
3416
  "Number of days to supress action when ad blocking is detected. Leave empty "
3417
  "for no no-action period (action fires always after defined page view delay). "
3421
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3422
  "strani). Nastavi piškotek."
3423
 
3424
+ #: settings.php:2440
3425
  msgctxt "no action period"
3426
  msgid "days"
3427
  msgstr "dni"
3428
 
3429
+ #: settings.php:2445
3430
  msgid "Custom Selectors"
3431
  msgstr "Selektorji Po Meri"
3432
 
3433
+ #: settings.php:2448
3434
  msgid ""
3435
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3436
  "blocking detection. Invisible element or element with zero height means ad "
3440
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3441
  "pomeni prisotnost blokiranja oglasov."
3442
 
3443
+ #: settings.php:2460
3444
  msgid "Redirection Page"
3445
  msgstr "Stran za Preusmeritev"
3446
 
3447
+ #: settings.php:2472
3448
  msgid "Custom Url"
3449
  msgstr "Url Po Meri"
3450
 
3451
+ #: settings.php:2477
3452
  msgid ""
3453
  "Static page for redirection when ad blocking is detected. For other pages "
3454
  "select Custom url and set it below."
3456
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3457
  "strani izberite Url Po Meri in ga nastavite spodaj."
3458
 
3459
+ #: settings.php:2486
3460
  msgid "Custom Redirection Url"
3461
  msgstr "Url za Preusmeritev Po Meri"
3462
 
3463
+ #: settings.php:2498
3464
  msgid "Message HTML code"
3465
  msgstr "HTML koda sporočila"
3466
 
3467
+ #: settings.php:2511
3468
  msgid "Preview message when ad blocking is detected"
3469
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3470
 
3471
+ #: settings.php:2540
3472
  msgid "Prevent visitors from closing the warning message"
3473
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3474
 
3475
+ #: settings.php:2540
3476
  msgid "Undismissible Message"
3477
  msgstr "Neodstranljivo Sporočilo"
3478
 
3479
+ #: settings.php:2553
3480
  msgid ""
3481
  "Force showing admin toolbar for administrators when viewing site. Enable "
3482
  "this option when you are logged in as admin and you don't see admin toolbar."
3485
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3486
  "skrbnike."
3487
 
3488
+ #: settings.php:2561
3489
  msgid "Disable header code (Header tab)"
3490
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3491
 
3492
+ #: settings.php:2565
3493
  msgid "Disable footer code (Footer tab)"
3494
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3495
 
3496
  #. translators: %s: Ad Inserter
3497
+ #: settings.php:2569
3498
  msgid "Disable %s JavaScript code"
3499
  msgstr "Onemogoči %s JavaScript kodo"
3500
 
3501
  #. translators: %s: Ad Inserter
3502
+ #: settings.php:2573
3503
  msgid "Disable %s CSS code"
3504
  msgstr "Onemogoči %s CSS kodo"
3505
 
3506
+ #: settings.php:2577
3507
  msgid ""
3508
  "Disable PHP code processing (in all blocks including header and footer code)"
3509
  msgstr ""
3510
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3511
 
3512
+ #: settings.php:2581
3513
  msgid "Disable insertion of all blocks"
3514
  msgstr "Onemogoči vstavljanje vseh blokov"
3515
 
3516
+ #: settings.php:2585
3517
  msgid "Disable insertions"
3518
  msgstr "Onemogoči vstavljanja"
3519
 
3520
  #. translators: %s: Ad Inserter
3521
+ #: settings.php:2597
3522
  msgid "%s CSS CODE"
3523
  msgstr "%s CSS KODA"
3524
 
3525
+ #: settings.php:2600
3526
  msgid "HEADER CODE"
3527
  msgstr "KODA GLAVE"
3528
 
3529
  #. translators: %s: PHP tags
3530
+ #: settings.php:2606
3531
  msgid "BLOCK PHP CODE"
3532
  msgstr "PHP KODA BLOKA"
3533
 
3534
  #. translators: %s: Ad Inserter
3535
+ #: settings.php:2612
3536
  msgid "%s JS CODE"
3537
  msgstr "%s JS KODA"
3538
 
3539
+ #: settings.php:2615
3540
  msgid "FOOTER CODE"
3541
  msgstr "KODA NOGE"
3542
 
3543
+ #: settings.php:2624
3544
  msgid "Force showing admin toolbar when viewing site"
3545
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3546
 
3547
+ #: settings.php:2631
3548
  msgid "Enable debugging functions in admin toolbar"
3549
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3550
 
3551
+ #: settings.php:2633
3552
  msgid "Debugging functions in admin toolbar"
3553
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3554
 
3555
+ #: settings.php:2640
3556
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3557
  msgstr ""
3558
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3559
  "zaslonih"
3560
 
3561
+ #: settings.php:2642
3562
  msgid "Debugging functions on mobile screens"
3563
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3564
 
3565
+ #: settings.php:2649
3566
  msgid ""
3567
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3568
  "tags, processing) by url parameters for non-logged in users. Enable this "
3577
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3578
  "vedno omogočeno."
3579
 
3580
+ #: settings.php:2651
3581
  msgid "Remote debugging"
3582
  msgstr "Oddaljeno razhroščevanje"
3583
 
3584
+ #: settings.php:2658
3585
  msgid ""
3586
  "Disable translation to see original texts for the settings and messages in "
3587
  "English"
3589
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3590
  "angleščini"
3591
 
3592
+ #: settings.php:2660
3593
  msgid "Disable translation"
3594
  msgstr "Onemogoči prevod"
3595
 
3596
+ #: settings.php:2995
3597
  msgid "Available positions for current theme"
3598
  msgstr "Razpoložljivi položaji za trenutno temo"
3599
 
3600
+ #: settings.php:2996
3601
  msgid "Error checking pages"
3602
  msgstr "Napaka pri preverjanju strani"
3603
 
3604
+ #: settings.php:2999
3605
  msgid "Toggle theme checker for available positions for automatic insertion"
3606
  msgstr ""
3607
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3608
 
3609
+ #: settings.php:2999
3610
  msgctxt "Button"
3611
  msgid "Check"
3612
  msgstr "Preveri"
3613
 
3614
+ #: settings.php:3006
3615
  msgid "Position"
3616
  msgstr "Položaj"
3617
 
3618
+ #: settings.php:3011
3619
  msgid "Archive pages"
3620
  msgstr "Strani arhiva"
3621
 
3622
+ #: settings.php:3070
3623
  msgid ""
3624
  "Position not available because output buffering (tab [*]) is not enabled"
3625
  msgstr ""
3626
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3627
 
3628
+ #: settings.php:3073 strings.php:217
3629
  msgid "Position not checked yet"
3630
  msgstr "Položaj še ni bil preverjen"
3631
 
3632
+ #: settings.php:3104
3633
  msgid "Toggle active/all blocks"
3634
  msgstr "Preklopi aktive/vse bloke"
3635
 
3636
+ #: settings.php:3108 strings.php:204
3637
  msgid "Rearrange block order"
3638
  msgstr "Preuredi vrstni red blokov"
3639
 
3640
+ #: settings.php:3113
3641
  msgid "Save new block order"
3642
  msgstr "Shrani vrstni red blokov"
3643
 
3644
+ #: settings.php:3113
3645
  msgid "Save Changes"
3646
  msgstr "Sharani Nastavitve"
3647
 
3648
+ #: settings.php:3138
3649
  msgid "Toggle active/all ad units"
3650
  msgstr "Preklopi aktivne/vse oglasne enote"
3651
 
3652
+ #: settings.php:3142
3653
  msgid "Reload AdSense ad units"
3654
  msgstr "Ponovno naloži oglasne enote AdSense"
3655
 
3656
+ #: settings.php:3146
3657
  msgid "Clear authorization to access AdSense account"
3658
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3659
 
3660
+ #: settings.php:3150 settings.php:3515 settings.php:3582 strings.php:212
3661
  msgid "Google AdSense Homepage"
3662
  msgstr "Google AdSense Domača Stran"
3663
 
3664
+ #: settings.php:3327
3665
  msgid "Preview block"
3666
  msgstr "Predogled bloka"
3667
 
3668
+ #: settings.php:3336
3669
  msgid "Insertion disabled"
3670
  msgstr "Vstavljanje onemogočeno"
3671
 
3672
+ #: settings.php:3360
3673
  msgid "Widget positions"
3674
  msgstr "Položaji gradnikov"
3675
 
3676
+ #: settings.php:3426
3677
  msgid "Ad unit"
3678
  msgstr "Enota"
3679
 
3680
+ #: settings.php:3428
3681
  msgid "Slot ID"
3682
  msgstr "ID mesta"
3683
 
3684
+ #: settings.php:3454
3685
  msgid "Copy AdSense code"
3686
  msgstr "Kopiraj kodo AdSense"
3687
 
3688
+ #: settings.php:3457
3689
  msgid "Preview AdSense ad"
3690
  msgstr "Predogled oglasa AdSense"
3691
 
3692
+ #: settings.php:3460
3693
  msgid "Get AdSense code"
3694
  msgstr "Pridobi kodo AdSense"
3695
 
3696
  #. translators: %s: HTML tags
3697
+ #: settings.php:3492
3698
  msgid ""
3699
  "Please %s clear authorization %s with the button %s above and once again "
3700
  "authorize access to your AdSense account."
3702
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3703
  "avtorizirajte dostop do vašega računa AdSense."
3704
 
3705
+ #: settings.php:3511
3706
  msgid "AdSense Integration"
3707
  msgstr "Integracija AdSense"
3708
 
3709
+ #: settings.php:3513
3710
  msgid "AdSense Integration - Step 2"
3711
  msgstr "Integracija AdSense - Korak 2"
3712
 
3713
  #. translators: %s: HTML tags
3714
+ #: settings.php:3519
3715
  msgid ""
3716
  "Authorize %s to access your AdSense account. Click on the %s Get "
3717
  "Authorization Code %s button to open a new window where you can allow "
3724
  "Avtoriziraj. %s"
3725
 
3726
  #. translators: %s: HTML tags
3727
+ #: settings.php:3526
3728
  msgid ""
3729
  "If you get error, can't access ad units or would like to use own Google API "
3730
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3735
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3736
 
3737
  #. translators: %s: HTML tags
3738
+ #: settings.php:3528
3739
  msgid ""
3740
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3741
  "Authorization Code %s button to open a new window where you can allow "
3748
  "gumb %s Avtoriziraj. %s"
3749
 
3750
  #. translators: %s: HTML tags
3751
+ #: settings.php:3535
3752
  msgid ""
3753
  "If you get error %s invalid client %s click on the button %s Clear and "
3754
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3756
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3757
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3758
 
3759
+ #: settings.php:3546
3760
  msgid "Get Authorization Code"
3761
  msgstr "Pridobi Avtoriazcijsko Kodo"
3762
 
3763
+ #: settings.php:3549
3764
  msgid "Enter Authorization Code"
3765
  msgstr "Vnesi Avorizacijsko Kodo"
3766
 
3767
+ #: settings.php:3559
3768
  msgid "Use own API IDs"
3769
  msgstr "Uporabi lastne API ID-je"
3770
 
3771
+ #: settings.php:3561
3772
  msgid "Clear and return to Step 1"
3773
  msgstr "Odstrani in se vrni na Korak 1"
3774
 
3775
+ #: settings.php:3565
3776
  msgid "Authorize"
3777
  msgstr "Avtoriziraj"
3778
 
3779
+ #: settings.php:3581
3780
  msgid "AdSense Integration - Step 1"
3781
  msgstr "Integracija AdSense - Korak 1"
3782
 
3783
  #. translators: %s: Ad Inserter
3784
+ #: settings.php:3585
3785
  msgid ""
3786
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3787
  "To do this you need to authorize %s to access your AdSense account. The "
3794
  "Klienta in Skrivnost Klienta."
3795
 
3796
  #. translators: %s: HTML tags
3797
+ #: settings.php:3594
3798
  msgid "Go to %s Google APIs and Services console %s"
3799
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3800
 
3801
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3802
+ #: settings.php:3595
3803
  msgid ""
3804
  "Create %1$s project - if the project and IDs are already created click on "
3805
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3808
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3809
 
3810
  #. translators: %s: HTML tags
3811
+ #: settings.php:3596
3812
  msgid ""
3813
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3814
  "create a new project"
3817
  "ustvaritev novega projekta"
3818
 
3819
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3820
+ #: settings.php:3597
3821
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3822
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
3823
 
3824
  #. translators: %s: HTML tags
3825
+ #: settings.php:3598
3826
  msgid ""
3827
  "Click on project selection, wait for the project to be created and then and "
3828
  "select %s as the current project"
3831
  "izberite %s kot trenutni projekt"
3832
 
3833
  #. translators: %s: HTML tags
3834
+ #: settings.php:3599
3835
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3836
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
3837
 
3838
  #. translators: %s: HTML tags
3839
+ #: settings.php:3600
3840
  msgid "Search for adsense and enable %s"
3841
  msgstr "Poiščite adsense in omogočite %s"
3842
 
3843
  #. translators: %s: HTML tags
3844
+ #: settings.php:3601
3845
  msgid "Click on %s CREATE CREDENTIALS %s"
3846
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
3847
 
3848
  #. translators: %s: HTML tags
3849
+ #: settings.php:3602
3850
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3851
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
3852
 
3853
  #. translators: %s: HTML tags
3854
+ #: settings.php:3603
3855
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3856
  msgstr ""
3857
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
3858
  "podatki %s"
3859
 
3860
  #. translators: %s: HTML tags
3861
+ #: settings.php:3604
3862
  msgid "Click on %s What credentials do I need? %s"
3863
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
3864
 
3865
  #. translators: %s: HTML tags
3866
+ #: settings.php:3605
3867
  msgid ""
3868
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3869
  "Ad Inserter client %s"
3872
  "%s Ad Inserter klient %s"
3873
 
3874
  #. translators: %s: HTML tags
3875
+ #: settings.php:3606
3876
  msgid ""
3877
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3878
  "enter %s"
3881
  "uporabnikom %s vnesite %s"
3882
 
3883
  #. translators: %s: HTML tags
3884
+ #: settings.php:3607
3885
  msgid "Click on %s Continue %s"
3886
  msgstr "Kliknite na %s Nadaljuj %s"
3887
 
3888
  #. translators: %s: HTML tags
3889
+ #: settings.php:3608
3890
  msgid "Click on %s Done %s"
3891
  msgstr "Kliknite na %s Končaj %s"
3892
 
3893
  #. translators: %s: HTML tags
3894
+ #: settings.php:3609
3895
  msgid ""
3896
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3897
  "secret %s"
3899
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
3900
  "Skrivnost klienta %s"
3901
 
3902
+ #: settings.php:3610
3903
  msgid "Copy them to the appropriate fields below"
3904
  msgstr "Skopirajte ju na ustrezni polji spodaj"
3905
 
3906
+ #: settings.php:3616
3907
  msgid "Client ID"
3908
  msgstr "ID klienta"
3909
 
3910
+ #: settings.php:3619
3911
  msgid "Enter Client ID"
3912
  msgstr "Vnesite ID klienta"
3913
 
3914
+ #: settings.php:3624
3915
  msgid "Client secret"
3916
  msgstr "Skrivnost klienta"
3917
 
3918
+ #: settings.php:3627
3919
  msgid "Enter Client secret"
3920
  msgstr "Vnesite Skrivnost klienta"
3921
 
3922
+ #: settings.php:3637
3923
  msgid "Use default API IDs"
3924
  msgstr "Uporabi privzete API ID-je"
3925
 
3926
+ #: settings.php:3642
3927
  msgid "Save"
3928
  msgstr "Shrani"
3929
 
3930
+ #: settings.php:3918 settings.php:3931 settings.php:3944 settings.php:3959
3931
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3932
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
3933
 
3934
+ #: settings.php:3923 settings.php:3936 settings.php:3949 settings.php:3964
3935
+ #: settings.php:4133 settings.php:4137 settings.php:4139 settings.php:4155
3936
+ #: settings.php:4166 settings.php:4169 settings.php:4175 settings.php:4187
3937
  msgid "Looking for AdSense alternative?"
3938
  msgstr "Iščete alternativo za AdSense?"
3939
 
3940
+ #: settings.php:3975
3941
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3942
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
3943
 
3944
+ #: settings.php:3980 settings.php:4135 settings.php:4147 settings.php:4172
3945
+ #: settings.php:4195
3946
  msgid "Use Infolinks ads with Adsense to earn more"
3947
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
3948
 
3949
+ #: settings.php:3999 settings.php:4037
3950
  msgid "Support plugin development"
3951
  msgstr "Podprite razvoj vtičnika"
3952
 
3953
+ #: settings.php:4000 settings.php:4038
3954
  msgid ""
3955
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3956
  "reviewing the plugin on WordPres"
3958
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
3959
  "razširiti novico z oceno vtičnika na WordPress-u"
3960
 
3961
+ #: settings.php:4000
3962
  msgctxt "Review ad Inserter"
3963
  msgid "Review"
3964
  msgstr "Oceni"
3965
 
3966
+ #: settings.php:4001
3967
  msgid ""
3968
  "Support free Ad Inserter development. If you are making money with Ad "
3969
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3972
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
3973
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
3974
 
3975
+ #: settings.php:4001
3976
  msgid "Donate"
3977
  msgstr "Donirajte"
3978
 
3979
+ #: settings.php:4008 settings.php:4053
3980
  msgid "Average rating of the plugin - Thank you!"
3981
  msgstr "Povprečna ocena vtičnika - Hvala!"
3982
 
3983
  #. translators: %s: Ad Inserter, HTML tags
3984
+ #: settings.php:4019
3985
  msgid ""
3986
  "You've been using %s for a while now, and I hope you're happy with it. "
3987
  "Positive %s reviews %s are a great way to show your appreciation for my "
3995
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
3996
  "monetizacijo vašega spletnega mesta. %s Hvala!"
3997
 
3998
+ #: settings.php:4038
3999
  msgid "Review"
4000
  msgstr "Ocena"
4001
 
4002
+ #: settings.php:4042
4003
  msgid "Ad Inserter on Twitter"
4004
  msgstr "Ad Inserter na Twitter-ju"
4005
 
4006
+ #: settings.php:4043
4007
  msgid "Ad Inserter on Facebook"
4008
  msgstr "Ad Inserter na Facebook-u"
4009
 
4010
+ #: settings.php:4046
4011
  msgid "Follow Ad Inserter"
4012
  msgstr "Sledi Ad Inserter-ju"
4013
 
4014
  #. translators: %s: HTML tags
4015
+ #: settings.php:4073
4016
  msgid ""
4017
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4018
  "and %s Common Settings %s pages"
4021
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4022
 
4023
  #. translators: %s: HTML tags
4024
+ #: settings.php:4085
4025
  msgid ""
4026
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4027
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
4031
  "%s"
4032
 
4033
  #. translators: %s: HTML tags
4034
+ #: settings.php:4104
4035
  msgid ""
4036
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4037
  "diagnose and fix the problem."
4040
  "navodili za diagnozo in rešitvami za težave."
4041
 
4042
  #. translators: %s: HTML tags
4043
+ #: settings.php:4108
4044
  msgid ""
4045
  "If you need any kind of help or support, please do not hesitate to open a "
4046
  "thread on the %s support forum. %s"
4048
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4049
  "nit na %s podpornem forumu. %s"
4050
 
4051
+ #: settings.php:4151 settings.php:4191
4052
  msgid "A/B testing - Track ad impressions and clicks"
4053
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4054
 
4055
+ #: settings.php:4159 settings.php:4183
4056
  msgid "Code preview with visual CSS editor"
4057
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4058
 
4059
+ #: settings.php:4201
4060
  msgid "Looking for Pro Ad Management plugin?"
4061
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4062
 
4063
+ #: settings.php:4202
4064
  msgid "To Optimally Monetize your WordPress website?"
4065
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4066
 
4067
  #. translators: %s HTML tags
4068
+ #: settings.php:4205
4069
  msgid "%s AdSense Integration %s"
4070
  msgstr "%s Integracija AdSense %s"
4071
 
4072
  #. translators: %s HTML tags
4073
+ #: settings.php:4206
4074
  msgid "Syntax highlighting %s editor %s"
4075
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4076
 
4077
  #. translators: %s HTML tags
4078
+ #: settings.php:4207
4079
  msgid "%s Code preview %s with visual CSS editor"
4080
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4081
 
4082
  #. translators: %s HTML tags
4083
+ #: settings.php:4208
4084
  msgid "Simple user interface - all settings on a single page"
4085
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4086
 
4087
  #. translators: %s HTML tags
4088
+ #: settings.php:4209
4089
  msgid ""
4090
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4091
  "image / excerpt"
4094
  "%s / sliko / izvlečkom"
4095
 
4096
  #. translators: %s HTML tags
4097
+ #: settings.php:4210
4098
  msgid "%s Automatic insertion %s between posts on blog pages"
4099
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4100
 
4101
  #. translators: %s HTML tags
4102
+ #: settings.php:4211
4103
  msgid "%s Automatic insertion %s before, between and after comments"
4104
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4105
 
4106
  #. translators: %s HTML tags
4107
+ #: settings.php:4212
4108
  msgid "%s Automatic insertion %s after %s or before %s tag"
4109
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4110
 
4111
  #. translators: %s HTML tags
4112
+ #: settings.php:4213
4113
  msgid "Automatic insertion at %s custom hook positions %s"
4114
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4115
 
4116
  #. translators: %s HTML tags
4117
+ #: settings.php:4214
4118
  msgid ""
4119
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4120
  "selectors)"
4123
  "selektorjev)"
4124
 
4125
  #. translators: %s HTML tags
4126
+ #: settings.php:4215
4127
  msgid "%s Insertion exceptions %s for individual posts and pages"
4128
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4129
 
4130
  #. translators: %s HTML tags
4131
+ #: settings.php:4216
4132
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4133
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4134
 
4135
  #. translators: %s HTML tags
4136
+ #: settings.php:4217
4137
  msgid ""
4138
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4139
  "scrolls)"
4142
  "se stran pomika)"
4143
 
4144
  #. translators: %s HTML tags
4145
+ #: settings.php:4218
4146
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4147
  msgstr ""
4148
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4149
 
4150
  #. translators: %s HTML tags
4151
+ #: settings.php:4219
4152
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4153
  msgstr ""
4154
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4155
 
4156
  #. translators: %s HTML tags
4157
+ #: settings.php:4220
4158
  msgid ""
4159
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4160
  "visible)"
4163
  "postane viden)"
4164
 
4165
  #. translators: %s HTML tags
4166
+ #: settings.php:4221
4167
  msgid ""
4168
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4169
  msgstr ""
4171
  "strani)"
4172
 
4173
  #. translators: %s HTML tags
4174
+ #: settings.php:4222
4175
  msgid "Block %s alignment and style %s customizations"
4176
  msgstr "%s Poravnave in slogi %s bloka po meri"
4177
 
4178
  #. translators: %s HTML tags
4179
+ #: settings.php:4223
4180
  msgid ""
4181
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4182
  "TOS)"
4184
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4185
 
4186
  #. translators: %s HTML tags
4187
+ #: settings.php:4224
4188
  msgid ""
4189
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4190
  "feeds"
4193
  "virih"
4194
 
4195
  #. translators: %s HTML tags
4196
+ #: settings.php:4225
4197
  msgid "%s Ad rotation %s (works also with caching)"
4198
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4199
 
4200
  #. translators: %s HTML tags
4201
+ #: settings.php:4226
4202
  msgid ""
4203
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4204
  "AdSense)"
4207
  "AdSense)"
4208
 
4209
  #. translators: %s HTML tags
4210
+ #: settings.php:4227
4211
  msgid "Support for %s A/B testing %s"
4212
  msgstr "Podpora za %s A/B testiranje %s"
4213
 
4214
  #. translators: %s HTML tags
4215
+ #: settings.php:4228
4216
  msgid "Support for %s lazy loading %s"
4217
  msgstr "Podpora za %s leno nalaganje %s"
4218
 
4219
  #. translators: %s HTML tags
4220
+ #: settings.php:4229
4221
  msgid "Support for ads on %s AMP pages %s"
4222
  msgstr "Podpora za oglase na %s AMP straneh %s"
4223
 
4224
  #. translators: %s HTML tags
4225
+ #: settings.php:4230
4226
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4227
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4228
 
4229
  #. translators: %s HTML tags
4230
+ #: settings.php:4231
4231
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4232
  msgstr ""
4233
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4234
 
4235
  #. translators: %s HTML tags
4236
+ #: settings.php:4232
4237
  msgid "PHP code processing"
4238
  msgstr "Procesiranje PHP kode"
4239
 
4240
  #. translators: %s HTML tags
4241
+ #: settings.php:4233
4242
  msgid "%s Banner %s code generator"
4243
  msgstr "Generator kode za %s pasice %s"
4244
 
4245
  #. translators: %s HTML tags
4246
+ #: settings.php:4234
4247
  msgid "Support for %s header and footer %s code"
4248
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4249
 
4250
  #. translators: %s HTML tags
4251
+ #: settings.php:4235
4252
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4253
  msgstr ""
4254
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4255
 
4256
  #. translators: %s HTML tags
4257
+ #: settings.php:4236
4258
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4259
  msgstr ""
4260
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4261
  "strežnika"
4262
 
4263
  #. translators: %s HTML tags
4264
+ #: settings.php:4237
4265
  msgid "Client-side %s mobile device detection %s (works with caching)"
4266
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4267
 
4268
  #. translators: %s HTML tags
4269
+ #: settings.php:4238
4270
  msgid ""
4271
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4272
  "protection"
4275
  "vsebine"
4276
 
4277
  #. translators: %s HTML tags
4278
+ #: settings.php:4239
4279
  msgid "%s Ad blocking statistics %s"
4280
  msgstr "%s Statistika blokiranja oglasov %s"
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4240
4284
  msgid ""
4285
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4286
  "referers"
4288
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4289
 
4290
  #. translators: %s HTML tags
4291
+ #: settings.php:4241
4292
  msgid ""
4293
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4294
  msgstr ""
4295
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4296
 
4297
  #. translators: %s HTML tags
4298
+ #: settings.php:4242
4299
  msgid "%s Multisite options %s to limit settings on the sites"
4300
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4301
 
4302
  #. translators: %s HTML tags
4303
+ #: settings.php:4243
4304
  msgid "%s Import/Export %s block or plugin settings"
4305
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4306
 
4307
  #. translators: %s HTML tags
4308
+ #: settings.php:4244
4309
  msgid "%s Insertion scheduling %s with fallback option"
4310
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4311
 
4312
  #. translators: %s HTML tags
4313
+ #: settings.php:4245
4314
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4315
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4316
 
4317
  #. translators: %s HTML tags
4318
+ #: settings.php:4246
4319
  msgid "Simple troubleshooting with many %s debugging functions %s"
4320
  msgstr ""
4321
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4322
 
4323
  #. translators: %s HTML tags
4324
+ #: settings.php:4247
4325
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4326
  msgstr ""
4327
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4328
 
4329
  #. translators: %s HTML tags
4330
+ #: settings.php:4248
4331
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4332
  msgstr ""
4333
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4334
 
4335
  #. translators: %s HTML tags
4336
+ #: settings.php:4249
4337
  msgid ""
4338
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4339
  msgstr ""
4340
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4341
 
4342
  #. translators: %s HTML tags
4343
+ #: settings.php:4250
4344
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4345
  msgstr ""
4346
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4347
 
4348
  #. translators: %s HTML tags
4349
+ #: settings.php:4251
4350
  msgid "No ads on the settings page"
4351
  msgstr "Stran z nastavitvami brez oglasov"
4352
 
4353
  #. translators: %s HTML tags
4354
+ #: settings.php:4252
4355
  msgid "Premium support via email"
4356
  msgstr "Vrhunska podpora prek elektronske pošte"
4357
 
4358
  #. translators: %s HTML tags
4359
+ #: settings.php:4255
4360
  msgid ""
4361
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4362
  "website with many advertising features to automatically insert adverts on "
4383
  "bodo ohranile)."
4384
 
4385
  #. translators: %s HTML tags
4386
+ #: settings.php:4268
4387
  msgid "Looking for %s Pro Ad Management plugin? %s"
4388
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4389
 
4390
  #. translators: %s HTML tags
4391
+ #: settings.php:4273
4392
  msgid "Ads between posts"
4393
  msgstr "Oglasi med prispevki"
4394
 
4395
  #. translators: %s HTML tags
4396
+ #: settings.php:4274
4397
  msgid "Ads between comments"
4398
  msgstr "Oglasi med komentarji"
4399
 
4400
  #. translators: %s HTML tags
4401
+ #: settings.php:4275
4402
  msgid "Support via email"
4403
  msgstr "Podpora prek elektronske pošte"
4404
 
4405
  #. translators: %s HTML tags
4406
+ #: settings.php:4281
4407
  msgid "%s Sticky positions %s"
4408
  msgstr "%s Lepljivi položaji %s"
4409
 
4410
  #. translators: %s HTML tags
4411
+ #: settings.php:4282
4412
  msgid "%s Limit insertions %s"
4413
  msgstr "%s Omeji vstavljanja %s"
4414
 
4415
  #. translators: %s HTML tags
4416
+ #: settings.php:4283
4417
  msgid "%s Clearance %s options"
4418
  msgstr "Možnosti %s izogibanja %s"
4419
 
4420
  #. translators: %s HTML tags
4421
+ #: settings.php:4289
4422
  msgid "Ad rotation"
4423
  msgstr "Vrtenje oglasov"
4424
 
4425
  #. translators: %s HTML tags
4426
+ #: settings.php:4290
4427
  msgid "%s A/B testing %s"
4428
  msgstr "%s A/B testiranje %s"
4429
 
4430
  #. translators: %s HTML tags
4431
+ #: settings.php:4291
4432
  msgid "%s Ad tracking %s"
4433
  msgstr "%s Sledenje oglasom %s"
4434
 
4435
  #. translators: %s HTML tags
4436
+ #: settings.php:4297
4437
  msgid "Support for %s AMP pages %s"
4438
  msgstr "Podpora za %s AMP strani %s"
4439
 
4440
  #. translators: %s HTML tags
4441
+ #: settings.php:4298
4442
  msgid "%s Ad blocking detection %s"
4443
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4444
 
4445
  #. translators: %s HTML tags
4446
+ #: settings.php:4299
4447
  msgid "%s Mobile device detection %s"
4448
  msgstr "%s Zaznavanje mobilne naprave %s"
4449
 
4450
  #. translators: %s HTML tags
4451
+ #: settings.php:4306
4452
  msgid "64 code blocks"
4453
  msgstr "64 kodnih blokov"
4454
 
4455
  #. translators: %s HTML tags
4456
+ #: settings.php:4307
4457
  msgid "%s GEO targeting %s"
4458
  msgstr "%s GEO ciljanje %s"
4459
 
4460
  #. translators: %s HTML tags
4461
+ #: settings.php:4308
4462
  msgid "%s Scheduling %s"
4463
  msgstr "%s Urnik %s"
4464
 
5254
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5255
  "na optimalna mesta"
5256
 
5257
+ #~ msgid "Alignment and style"
5258
+ #~ msgstr "Poravnava in slog"
5259
+
5260
  #~ msgid "ROTATION GROUP: "
5261
  #~ msgstr "ROTATION "
5262
 
languages/ad-inserter.pot CHANGED
@@ -4,7 +4,7 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.10\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-02-18 16:56:36+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,465 +12,465 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:312
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:328
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:335
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:406
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:413
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:422
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:429
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:439
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1016
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1021
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1026 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1031 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1036 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1041 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1088
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1092
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1301
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1576 ad-inserter.php:2439
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2010
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2010
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2011
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2012
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2013
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2014
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2015
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2210
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2211 includes/functions.php:1489
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
- #: ad-inserter.php:2214
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
- #: ad-inserter.php:2215 includes/functions.php:1492
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
- #: ad-inserter.php:2225
158
  msgid ""
159
  "I would really appreciate it if you could give the plugin a 5-star rating on "
160
  "WordPres."
161
  msgstr ""
162
 
163
- #: ad-inserter.php:2227
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
- #: ad-inserter.php:2233
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
- #: ad-inserter.php:2238
175
  msgid "I already did."
176
  msgstr ""
177
 
178
- #: ad-inserter.php:2252
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
- #: ad-inserter.php:2326
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
- #: ad-inserter.php:2355 ad-inserter.php:7951 class.php:1967
190
  #: includes/preview.php:1966 includes/preview.php:2010
191
- #: includes/preview.php:2047 settings.php:3347 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
- #: ad-inserter.php:2356 settings.php:3348 settings.php:3422
196
  msgid "Name"
197
  msgstr ""
198
 
199
- #: ad-inserter.php:2357 settings.php:3350
200
  msgid "Automatic insertion"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2360
204
  msgid "Default insertion for pages"
205
  msgstr ""
206
 
207
- #: ad-inserter.php:2361
208
  msgid "Default insertion for posts"
209
  msgstr ""
210
 
211
  #. translators: For this post or page
212
- #: ad-inserter.php:2364
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr ""
216
 
217
- #: ad-inserter.php:2365
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr ""
221
 
222
- #: ad-inserter.php:2373
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr ""
226
 
227
- #: ad-inserter.php:2374
228
  msgctxt "Default insertion for"
229
  msgid "pages"
230
  msgstr ""
231
 
232
- #: ad-inserter.php:2378
233
  msgctxt "Enabled/disabled on all"
234
  msgid "posts"
235
  msgstr ""
236
 
237
- #: ad-inserter.php:2379
238
  msgctxt "Default insertion for"
239
  msgid "posts"
240
  msgstr ""
241
 
242
- #: ad-inserter.php:2398 ad-inserter.php:2411 strings.php:156
243
  msgid "Enabled"
244
  msgstr ""
245
 
246
  #. translators: Menu items
247
- #: ad-inserter.php:2398 ad-inserter.php:2411 includes/functions.php:2117
248
  #: strings.php:16
249
  msgid "Disabled"
250
  msgstr ""
251
 
252
  #. translators: Enabled on all pages or posts
253
- #: ad-inserter.php:2401
254
  msgid "Enabled on all"
255
  msgstr ""
256
 
257
  #. translators: Disabled on all pages or posts
258
- #: ad-inserter.php:2403
259
  msgid "Disabled on all"
260
  msgstr ""
261
 
262
  #. translators: No individual exceptions enabled for pages or posts
263
- #: ad-inserter.php:2431
264
  msgid "No individual exceptions enabled for"
265
  msgstr ""
266
 
267
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
268
- #: ad-inserter.php:2436
269
  msgid ""
270
  "Default insertion for %1$s can be configured for each block on %2$s page - "
271
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
272
  "checkbox.<br />"
273
  msgstr ""
274
 
275
- #: ad-inserter.php:2441
276
  msgid ""
277
  "Default value is <strong>blank</strong> and means no individual exceptions "
278
  "(even if previously defined here).<br />"
279
  msgstr ""
280
 
281
- #: ad-inserter.php:2444
282
  msgctxt "Pages"
283
  msgid ""
284
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
285
  "enabled</strong> to enable individual exception settings on this page.<br />"
286
  msgstr ""
287
 
288
- #: ad-inserter.php:2445
289
  msgctxt "Posts"
290
  msgid ""
291
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
292
  "enabled</strong> to enable individual exception settings on this page.<br />"
293
  msgstr ""
294
 
295
- #: ad-inserter.php:2447
296
  msgid "For more information check page %s"
297
  msgstr ""
298
 
299
  #. translators: Ad Inserter Exceptions documentation page
300
- #: ad-inserter.php:2449
301
  msgid "Individual Exceptions"
302
  msgstr ""
303
 
304
- #: ad-inserter.php:2494
305
  msgid "STATIC PAGE"
306
  msgstr ""
307
 
308
- #: ad-inserter.php:2497
309
  msgid "POST"
310
  msgstr ""
311
 
312
- #: ad-inserter.php:2500
313
  msgid "HOMEPAGE"
314
  msgstr ""
315
 
316
- #: ad-inserter.php:2503
317
  msgid "CATEGORY PAGE"
318
  msgstr ""
319
 
320
- #: ad-inserter.php:2506
321
  msgid "SEARCH PAGE"
322
  msgstr ""
323
 
324
- #: ad-inserter.php:2509
325
  msgid "ARCHIVE PAGE"
326
  msgstr ""
327
 
328
- #: ad-inserter.php:2512
329
  msgid "ERROR 404 PAGE"
330
  msgstr ""
331
 
332
- #: ad-inserter.php:2515
333
  msgid "AJAX CALL"
334
  msgstr ""
335
 
336
- #: ad-inserter.php:2518
337
  msgid "UNKNOWN PAGE TYPE"
338
  msgstr ""
339
 
340
- #: ad-inserter.php:2535
341
  msgid "Click to delete ad blocking detection cokies"
342
  msgstr ""
343
 
344
- #: ad-inserter.php:2536
345
  msgid "AD BLOCKING STATUS UNKNOWN"
346
  msgstr ""
347
 
348
  #. translators: %s: AdSense Auto Ads
349
- #: ad-inserter.php:2560
350
  msgid ""
351
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
352
  "positions"
353
  msgstr ""
354
 
355
- #: ad-inserter.php:2699
356
  msgid "Code for insertion"
357
  msgstr ""
358
 
359
- #: ad-inserter.php:2699
360
  msgid "character"
361
  msgid_plural "characters"
362
  msgstr[0] ""
363
  msgstr[1] ""
364
 
365
- #: ad-inserter.php:2742
366
  msgid "Header code"
367
  msgstr ""
368
 
369
- #: ad-inserter.php:2742
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr ""
373
 
374
- #: ad-inserter.php:2742 ad-inserter.php:2960
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] ""
378
  msgstr[1] ""
379
 
380
- #: ad-inserter.php:2775
381
  msgid "Automatically placed by AdSense Auto ads code"
382
  msgstr ""
383
 
384
- #: ad-inserter.php:2960
385
  msgid "Footer code"
386
  msgstr ""
387
 
388
- #: ad-inserter.php:2960
389
  msgctxt "Footer code"
390
  msgid "DISABLED"
391
  msgstr ""
392
 
393
- #: ad-inserter.php:2966
394
  msgid "JAVASCRIPT NOT WORKING"
395
  msgstr ""
396
 
397
- #: ad-inserter.php:2966
398
  msgid "NO JAVASCRIPT ERRORS"
399
  msgstr ""
400
 
401
- #: ad-inserter.php:2966
402
  msgid "JAVASCRIPT ERRORS"
403
  msgstr ""
404
 
405
  #. translators: block name (block with default settings)
406
- #: ad-inserter.php:5026
407
  msgctxt "Block name"
408
  msgid "Default"
409
  msgstr ""
410
 
411
  #. translators: %s: Ad Inserter
412
- #: ad-inserter.php:5590
413
  msgid "Error importing %s settings."
414
  msgstr ""
415
 
416
- #: ad-inserter.php:5591
417
  msgid "Error importing settings for block"
418
  msgid_plural "Error importing settings for blocks:"
419
  msgstr[0] ""
420
  msgstr[1] ""
421
 
422
- #: ad-inserter.php:5640
423
  msgid "Settings saved."
424
  msgstr ""
425
 
426
- #: ad-inserter.php:5725
427
  msgid "Settings cleared."
428
  msgstr ""
429
 
430
- #: ad-inserter.php:6070 ad-inserter.php:6072 ad-inserter.php:6095
431
  msgid "word"
432
  msgid_plural "words"
433
  msgstr[0] ""
434
  msgstr[1] ""
435
 
436
- #: ad-inserter.php:6109 ad-inserter.php:6221
437
  msgid "HTML TAGS REMOVED"
438
  msgstr ""
439
 
440
- #: ad-inserter.php:6297
441
  msgid "BEFORE COMMENTS"
442
  msgstr ""
443
 
444
- #: ad-inserter.php:6405
445
  msgid "AFTER COMMENTS"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:6468
449
  msgid "BETWEEN COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:7598
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:7598
457
  msgid "Please update!"
458
  msgstr ""
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
- #: ad-inserter.php:7824
463
  msgid "Thank you for installing"
464
  msgstr ""
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
- #: ad-inserter.php:7826
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
471
  msgstr ""
472
 
473
- #: ad-inserter.php:7828
474
  msgid ""
475
  "We don't record any sensitive data, only information regarding the WordPress "
476
  "environment and plugin usage, which will help us to make improvements to the "
@@ -478,7 +478,7 @@ msgid ""
478
  msgstr ""
479
 
480
  #. translators: Deactivation message: %s: HTML tags
481
- #: ad-inserter.php:7865
482
  msgid ""
483
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
484
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -486,55 +486,55 @@ msgid ""
486
  msgstr ""
487
 
488
  #. translators: %s: Ad Inserter
489
- #: ad-inserter.php:7908
490
  msgid "%s block."
491
  msgstr ""
492
 
493
  #. translators: widget title
494
- #: ad-inserter.php:7924 ad-inserter.php:7960
495
  msgid "Processing log"
496
  msgstr ""
497
 
498
  #. translators: widget title
499
- #: ad-inserter.php:7926 ad-inserter.php:7961
500
  msgid "Dummy widget"
501
  msgstr ""
502
 
503
  #. translators: widget title
504
- #: ad-inserter.php:7928 ad-inserter.php:7959
505
  msgid "Debugging tools"
506
  msgstr ""
507
 
508
  #. translators: block status (widget title)
509
- #: ad-inserter.php:7935
510
  msgctxt "block"
511
  msgid "PAUSED"
512
  msgstr ""
513
 
514
- #: ad-inserter.php:7936
515
  msgid "WIDGET DISABLED"
516
  msgstr ""
517
 
518
- #: ad-inserter.php:7937
519
  msgid "Unknown block"
520
  msgstr ""
521
 
522
- #: ad-inserter.php:7946 includes/functions.php:2630 settings.php:1033
523
  msgid "Title"
524
  msgstr ""
525
 
526
- #: ad-inserter.php:7968
527
  msgctxt "Widget"
528
  msgid "Sticky"
529
  msgstr ""
530
 
531
- #: ad-inserter.php:8017
532
  msgid ""
533
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
534
  "Inserter you need to first deactivate Ad Inserter Pro."
535
  msgstr ""
536
 
537
- #: ad-inserter.php:8018
538
  msgid ""
539
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
540
  "will clear all settings that are available only in the Pro version "
@@ -566,11 +566,11 @@ msgstr ""
566
  msgid "After post"
567
  msgstr ""
568
 
569
- #: class.php:1957 settings.php:1619 settings.php:3354
570
  msgid "Widget"
571
  msgstr ""
572
 
573
- #: class.php:1962 settings.php:3352
574
  msgid "PHP function call"
575
  msgstr ""
576
 
@@ -660,7 +660,7 @@ msgctxt "JavaScript"
660
  msgid "script"
661
  msgstr ""
662
 
663
- #: class.php:3042 settings.php:1888
664
  msgid "for"
665
  msgstr ""
666
 
@@ -771,7 +771,7 @@ msgid ""
771
  "Leave empty unless position is not properly calculated."
772
  msgstr ""
773
 
774
- #: includes/functions.php:420 settings.php:1189 settings.php:2444
775
  msgid "Open HTML element selector"
776
  msgstr ""
777
 
@@ -822,7 +822,7 @@ msgstr ""
822
  msgid "%s license overused. Continue?"
823
  msgstr ""
824
 
825
- #: includes/functions.php:507 settings.php:1958
826
  msgid "Save Settings"
827
  msgstr ""
828
 
@@ -892,7 +892,7 @@ msgstr ""
892
  msgid "Tracking for this block is disabled"
893
  msgstr ""
894
 
895
- #: includes/functions.php:732 settings.php:3115 settings.php:3151
896
  #: strings.php:209
897
  msgid "Loading..."
898
  msgstr ""
@@ -1161,8 +1161,8 @@ msgstr ""
1161
  msgid "Expired"
1162
  msgstr ""
1163
 
1164
- #: includes/functions.php:2112 settings.php:1272 settings.php:1287
1165
- #: settings.php:1874
1166
  msgid "and"
1167
  msgstr ""
1168
 
@@ -1202,13 +1202,13 @@ msgstr ""
1202
  msgid "Preview iframe code"
1203
  msgstr ""
1204
 
1205
- #: includes/functions.php:2165 includes/preview.php:1964 settings.php:949
1206
- #: settings.php:2506
1207
  msgid "Preview"
1208
  msgstr ""
1209
 
1210
  #: includes/functions.php:2179 includes/functions.php:3821
1211
- #: includes/functions.php:3884 settings.php:1991
1212
  msgid "Ad Blocking"
1213
  msgstr ""
1214
 
@@ -1384,7 +1384,7 @@ msgstr ""
1384
  msgid "Are you sure you want to clear all exceptions for block"
1385
  msgstr ""
1386
 
1387
- #: includes/functions.php:2618 settings.php:1036
1388
  msgid "Clear all exceptions for block"
1389
  msgstr ""
1390
 
@@ -1396,7 +1396,7 @@ msgstr ""
1396
  msgid "Clear all exceptions for all blocks"
1397
  msgstr ""
1398
 
1399
- #: includes/functions.php:2630 settings.php:3424
1400
  msgid "Type"
1401
  msgstr ""
1402
 
@@ -1405,7 +1405,7 @@ msgid "View"
1405
  msgstr ""
1406
 
1407
  #: includes/functions.php:2649 includes/placeholders.php:346
1408
- #: includes/preview.php:2271 settings.php:1175
1409
  msgid "Edit"
1410
  msgstr ""
1411
 
@@ -1470,7 +1470,7 @@ msgstr ""
1470
  msgid "Main site settings used for all blogs"
1471
  msgstr ""
1472
 
1473
- #: includes/functions.php:2740 settings.php:2402
1474
  msgid "Ad Blocking Detection"
1475
  msgstr ""
1476
 
@@ -1618,7 +1618,7 @@ msgstr ""
1618
  msgid "Placeholder"
1619
  msgstr ""
1620
 
1621
- #: includes/placeholders.php:356 settings.php:803 settings.php:3425
1622
  msgid "Size"
1623
  msgstr ""
1624
 
@@ -1726,11 +1726,11 @@ msgstr ""
1726
  msgid "Ad Blocking Detected Message Preview"
1727
  msgstr ""
1728
 
1729
- #: includes/preview-adb.php:348 settings.php:2519
1730
  msgid "Message CSS"
1731
  msgstr ""
1732
 
1733
- #: includes/preview-adb.php:353 settings.php:2527
1734
  msgid "Overlay CSS"
1735
  msgstr ""
1736
 
@@ -1770,8 +1770,9 @@ msgstr ""
1770
  msgid "background"
1771
  msgstr ""
1772
 
1773
- #: includes/preview.php:2075 includes/preview.php:2226
1774
- msgid "Alignment and style"
 
1775
  msgstr ""
1776
 
1777
  #: includes/preview.php:2143
@@ -1944,306 +1945,314 @@ msgid "Debugging functions enabled - some code is not inserted"
1944
  msgstr ""
1945
 
1946
  #: settings.php:249
1947
- msgid "Option Name"
 
 
 
 
1948
  msgstr ""
1949
 
1950
- #: settings.php:255
1951
  msgid "Share"
1952
  msgstr ""
1953
 
1954
- #: settings.php:258
1955
  msgid ""
1956
  "Option share in percents - 0 means option is disabled, if share for one "
1957
  "option is not defined it will be calculated automatically. Leave all share "
1958
  "fields empty for equal option shares."
1959
  msgstr ""
1960
 
1961
- #: settings.php:261
1962
  msgid "Time"
1963
  msgstr ""
1964
 
1965
- #: settings.php:264
1966
  msgid ""
1967
  "Option time in seconds - 0 means option is disabled and will be skipped. "
1968
  "Leave all time fields empty for no timed rotation."
1969
  msgstr ""
1970
 
1971
- #: settings.php:416
1972
  msgid "General Settings"
1973
  msgstr ""
1974
 
1975
- #: settings.php:591 settings.php:2278 settings.php:2336 settings.php:2499
1976
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
1977
  msgstr ""
1978
 
1979
- #: settings.php:598
1980
  msgid "Toggle tools"
1981
  msgstr ""
1982
 
1983
- #: settings.php:606
1984
  msgid "Process PHP code in block"
1985
  msgstr ""
1986
 
1987
- #: settings.php:613
1988
  msgid "Disable insertion of this block"
1989
  msgstr ""
1990
 
1991
- #: settings.php:625
1992
  msgid "Toggle code generator"
1993
  msgstr ""
1994
 
1995
- #: settings.php:629
1996
  msgid "Toggle rotation editor"
1997
  msgstr ""
1998
 
1999
- #: settings.php:633
2000
  msgid "Open visual HTML editor"
2001
  msgstr ""
2002
 
2003
- #: settings.php:643
2004
  msgid "Show AdSense ad units"
2005
  msgstr ""
2006
 
2007
- #: settings.php:652
2008
  msgid "Clear block"
2009
  msgstr ""
2010
 
2011
- #: settings.php:657 settings.php:3319
2012
  msgid "Copy block"
2013
  msgstr ""
2014
 
2015
- #: settings.php:661
2016
  msgid "Paste name"
2017
  msgstr ""
2018
 
2019
- #: settings.php:665
2020
  msgid "Paste code"
2021
  msgstr ""
2022
 
2023
- #: settings.php:669
2024
  msgid "Paste settings"
2025
  msgstr ""
2026
 
2027
- #: settings.php:673
2028
  msgid "Paste block (name, code and settings)"
2029
  msgstr ""
2030
 
2031
- #: settings.php:692
 
 
 
 
2032
  msgid "Remove option"
2033
  msgstr ""
2034
 
2035
- #: settings.php:696
2036
  msgid "Add option"
2037
  msgstr ""
2038
 
2039
- #: settings.php:711
2040
  msgid "Import code"
2041
  msgstr ""
2042
 
2043
- #: settings.php:715
2044
  msgid "Generate code"
2045
  msgstr ""
2046
 
2047
- #: settings.php:720
2048
  msgid "Banner"
2049
  msgstr ""
2050
 
2051
- #: settings.php:731
2052
  msgid "Image"
2053
  msgstr ""
2054
 
2055
- #: settings.php:739
2056
  msgid "Link"
2057
  msgstr ""
2058
 
2059
- #: settings.php:750
2060
  msgid "Open link in a new tab"
2061
  msgstr ""
2062
 
2063
- #: settings.php:751
2064
  msgid "Select Image"
2065
  msgstr ""
2066
 
2067
- #: settings.php:752
2068
  msgid "Select Placeholder"
2069
  msgstr ""
2070
 
2071
- #: settings.php:764
2072
  msgid "Comment"
2073
  msgstr ""
2074
 
2075
- #: settings.php:773
2076
  msgctxt "AdSense"
2077
  msgid "Publisher ID"
2078
  msgstr ""
2079
 
2080
- #: settings.php:782
2081
  msgctxt "AdSense"
2082
  msgid "Ad Slot ID"
2083
  msgstr ""
2084
 
2085
- #: settings.php:791
2086
  msgid "Ad Type"
2087
  msgstr ""
2088
 
2089
- #: settings.php:815
2090
  msgid "AMP Ad"
2091
  msgstr ""
2092
 
2093
- #: settings.php:832
2094
  msgid "Show ad units from your AdSense account"
2095
  msgstr ""
2096
 
2097
- #: settings.php:832
2098
  msgid "AdSense ad units"
2099
  msgstr ""
2100
 
2101
- #: settings.php:849
2102
  msgctxt "AdSense"
2103
  msgid "Layout"
2104
  msgstr ""
2105
 
2106
- #: settings.php:858
2107
  msgctxt "AdSense"
2108
  msgid "Layout Key"
2109
  msgstr ""
2110
 
2111
- #: settings.php:945
2112
  msgid ""
2113
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2114
  "Cookie or Referer (domain)"
2115
  msgstr ""
2116
 
2117
- #: settings.php:945
2118
  msgid "Lists"
2119
  msgstr ""
2120
 
2121
- #: settings.php:946
2122
  msgid "Widget, Shortcode and PHP function call"
2123
  msgstr ""
2124
 
2125
- #: settings.php:946
2126
  msgid "Manual"
2127
  msgstr ""
2128
 
2129
- #: settings.php:947
2130
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2131
  msgstr ""
2132
 
2133
- #: settings.php:947
2134
  msgid "Devices"
2135
  msgstr ""
2136
 
2137
- #: settings.php:948
2138
  msgid ""
2139
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2140
  "feeds), Filter, Scheduling, General tag"
2141
  msgstr ""
2142
 
2143
- #: settings.php:948
2144
  msgid "Misc"
2145
  msgstr ""
2146
 
2147
- #: settings.php:949
2148
  msgid "Preview code and alignment"
2149
  msgstr ""
2150
 
2151
- #: settings.php:952 settings.php:1956
2152
  msgid ""
2153
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2154
  "editor is active before saving settings."
2155
  msgstr ""
2156
 
2157
- #: settings.php:954
2158
  msgid "Save All Settings"
2159
  msgstr ""
2160
 
2161
- #: settings.php:965
2162
  msgid "Enable insertion on posts"
2163
  msgstr ""
2164
 
2165
- #: settings.php:967 settings.php:973
2166
  msgid ""
2167
  "Individual post exceptions (if enabled here) can be configured in post "
2168
  "editor. Leave blank for no individual post exceptions."
2169
  msgstr ""
2170
 
2171
- #: settings.php:973 settings.php:3002
2172
  msgid "Posts"
2173
  msgstr ""
2174
 
2175
- #: settings.php:977 settings.php:978
2176
  msgid ""
2177
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2178
  "page or theme homepage (available positions may depend on hooks used by the "
2179
  "theme)"
2180
  msgstr ""
2181
 
2182
- #: settings.php:978 settings.php:3004
2183
  msgid "Homepage"
2184
  msgstr ""
2185
 
2186
- #: settings.php:982 settings.php:983
2187
  msgid "Enable insertion on category blog pages (including sub-pages)"
2188
  msgstr ""
2189
 
2190
- #: settings.php:983 settings.php:3005
2191
  msgid "Category pages"
2192
  msgstr ""
2193
 
2194
- #: settings.php:986
2195
  msgid "Check theme for available positions for automatic insertion"
2196
  msgstr ""
2197
 
2198
- #: settings.php:993
2199
  msgid "Enable insertion on static pages"
2200
  msgstr ""
2201
 
2202
- #: settings.php:995 settings.php:1001
2203
  msgid ""
2204
  "Individual static page exceptions (if enabled here) can be configured in "
2205
  "page editor. Leave blank for no individual page exceptions."
2206
  msgstr ""
2207
 
2208
- #: settings.php:1001 settings.php:3003
2209
  msgid "Static pages"
2210
  msgstr ""
2211
 
2212
- #: settings.php:1005 settings.php:1006
2213
  msgid "Enable insertion on search blog pages"
2214
  msgstr ""
2215
 
2216
- #: settings.php:1006 settings.php:3007
2217
  msgid "Search pages"
2218
  msgstr ""
2219
 
2220
- #: settings.php:1010 settings.php:1011
2221
  msgid "Enable insertion on tag or archive blog pages"
2222
  msgstr ""
2223
 
2224
- #: settings.php:1011
2225
  msgid "Tag / Archive pages"
2226
  msgstr ""
2227
 
2228
- #: settings.php:1017
2229
  msgid "Toggle list of individual exceptions"
2230
  msgstr ""
2231
 
2232
- #: settings.php:1033
2233
  msgctxt "post"
2234
  msgid "Type"
2235
  msgstr ""
2236
 
2237
  #. translators: %d: block number
2238
- #: settings.php:1035
2239
  msgid "Are you sure you want to clear all exceptions for block %d?"
2240
  msgstr ""
2241
 
2242
- #: settings.php:1067 settings.php:1215 settings.php:1749
2243
  msgid "Insertion"
2244
  msgstr ""
2245
 
2246
- #: settings.php:1105
2247
  msgid ""
2248
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2249
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2253,7 +2262,7 @@ msgid ""
2253
  "negative number means counting from the opposite direction"
2254
  msgstr ""
2255
 
2256
- #: settings.php:1106
2257
  msgid ""
2258
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2259
  "means every N images, empty means all images, 0 means random image, value "
@@ -2263,261 +2272,257 @@ msgid ""
2263
  "direction"
2264
  msgstr ""
2265
 
2266
- #: settings.php:1119
2267
  msgid ""
2268
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2269
  "numbers, %N means every N excerpts, empty means all excerpts"
2270
  msgstr ""
2271
 
2272
- #: settings.php:1120
2273
  msgid ""
2274
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2275
  "numbers, %N means every N posts, empty means all posts"
2276
  msgstr ""
2277
 
2278
- #: settings.php:1121
2279
  msgid ""
2280
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2281
  "numbers, %N means every N comments, empty means all comments"
2282
  msgstr ""
2283
 
2284
- #: settings.php:1128
2285
  msgid "Toggle paragraph counting settings"
2286
  msgstr ""
2287
 
2288
- #: settings.php:1129
2289
  msgid "Toggle paragraph clearance settings"
2290
  msgstr ""
2291
 
2292
- #: settings.php:1132
2293
  msgid "Toggle insertion filter settings"
2294
  msgstr ""
2295
 
2296
- #: settings.php:1136 settings.php:3351
2297
- msgid "Alignment"
2298
- msgstr ""
2299
-
2300
- #: settings.php:1150
2301
  msgid "Toggle insertion and alignment icons"
2302
  msgstr ""
2303
 
2304
- #: settings.php:1164
2305
  msgid "Custom CSS code for the wrapping div"
2306
  msgstr ""
2307
 
2308
- #: settings.php:1167 settings.php:1168 settings.php:1169 settings.php:1170
2309
- #: settings.php:1171 settings.php:1172
2310
  msgid "CSS code for the wrapping div, click to edit"
2311
  msgstr ""
2312
 
2313
- #: settings.php:1185
2314
  msgid "HTML element"
2315
  msgstr ""
2316
 
2317
- #: settings.php:1198
2318
  msgid "HTML element selector or comma separated list of selectors"
2319
  msgstr ""
2320
 
2321
- #: settings.php:1204 settings.php:2412
2322
  msgid "Action"
2323
  msgstr ""
2324
 
2325
- #: settings.php:1216
2326
  msgid ""
2327
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2328
  "Server-side insertion inserts block when the page is generated but needs "
2329
  "Output buffering enabled."
2330
  msgstr ""
2331
 
2332
- #: settings.php:1226
2333
  msgid "JavaScript code position"
2334
  msgstr ""
2335
 
2336
- #: settings.php:1227
2337
  msgid ""
2338
  "Page position where the JavaScript code for client-side insertion will be "
2339
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2340
  msgstr ""
2341
 
2342
- #: settings.php:1242
2343
  msgid "Count"
2344
  msgstr ""
2345
 
2346
- #: settings.php:1248
2347
  msgid "paragraphs with tags"
2348
  msgstr ""
2349
 
2350
- #: settings.php:1254
2351
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2352
  msgstr ""
2353
 
2354
- #: settings.php:1263
2355
  msgid "that have between"
2356
  msgstr ""
2357
 
2358
- #: settings.php:1269
2359
  msgid "Minimum number of paragraph words, leave empty for no limit"
2360
  msgstr ""
2361
 
2362
- #: settings.php:1278
2363
  msgid "Maximum number of paragraph words, leave empty for no limit"
2364
  msgstr ""
2365
 
2366
- #: settings.php:1281 settings.php:1876
2367
  msgid "words"
2368
  msgstr ""
2369
 
2370
- #: settings.php:1296 settings.php:1362 settings.php:1388
2371
  msgid "Comma separated texts"
2372
  msgstr ""
2373
 
2374
- #: settings.php:1305
2375
  msgid "Minimum number of paragraphs"
2376
  msgstr ""
2377
 
2378
  #. translators: %s: list of HTML tags
2379
- #: settings.php:1320
2380
  msgid ""
2381
  "Count also paragraphs inside %s elements - defined on general plugin "
2382
  "settings page - tab &#9881; / tab General"
2383
  msgstr ""
2384
 
2385
- #: settings.php:1320
2386
  msgid "Count inside special elements"
2387
  msgstr ""
2388
 
2389
- #: settings.php:1331
2390
  msgid "Minimum number of words in paragraphs above"
2391
  msgstr ""
2392
 
2393
- #: settings.php:1337
2394
  msgid ""
2395
  "Used only with automatic insertion After paragraph and empty paragraph "
2396
  "numbers"
2397
  msgstr ""
2398
 
2399
- #: settings.php:1347 settings.php:1373
2400
  msgid "In"
2401
  msgstr ""
2402
 
2403
- #: settings.php:1353
2404
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2405
  msgstr ""
2406
 
2407
- #: settings.php:1356
2408
  msgid "paragraphs above avoid"
2409
  msgstr ""
2410
 
2411
- #: settings.php:1379
2412
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2413
  msgstr ""
2414
 
2415
- #: settings.php:1382
2416
  msgid "paragraphs below avoid"
2417
  msgstr ""
2418
 
2419
- #: settings.php:1398
2420
  msgid "If text is found"
2421
  msgstr ""
2422
 
2423
- #: settings.php:1405
2424
  msgid "check up to"
2425
  msgstr ""
2426
 
2427
- #: settings.php:1413
2428
  msgctxt "check up to"
2429
  msgid "paragraphs"
2430
  msgstr ""
2431
 
2432
- #: settings.php:1429
2433
  msgid "Categories"
2434
  msgstr ""
2435
 
2436
- #: settings.php:1432
2437
  msgid "Toggle category editor"
2438
  msgstr ""
2439
 
2440
- #: settings.php:1435
2441
  msgid "Comma separated category slugs"
2442
  msgstr ""
2443
 
2444
- #: settings.php:1439
2445
  msgid "Blacklist categories"
2446
  msgstr ""
2447
 
2448
- #: settings.php:1443
2449
  msgid "Whitelist categories"
2450
  msgstr ""
2451
 
2452
- #: settings.php:1455
2453
  msgid "Tags"
2454
  msgstr ""
2455
 
2456
- #: settings.php:1458
2457
  msgid "Toggle tag editor"
2458
  msgstr ""
2459
 
2460
- #: settings.php:1461
2461
  msgid "Comma separated tag slugs"
2462
  msgstr ""
2463
 
2464
- #: settings.php:1465
2465
  msgid "Blacklist tags"
2466
  msgstr ""
2467
 
2468
- #: settings.php:1469
2469
  msgid "Whitelist tags"
2470
  msgstr ""
2471
 
2472
- #: settings.php:1481
2473
  msgid "Taxonomies"
2474
  msgstr ""
2475
 
2476
- #: settings.php:1484
2477
  msgid "Toggle taxonomy editor"
2478
  msgstr ""
2479
 
2480
- #: settings.php:1487
2481
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2482
  msgstr ""
2483
 
2484
- #: settings.php:1491
2485
  msgid "Blacklist taxonomies"
2486
  msgstr ""
2487
 
2488
- #: settings.php:1495
2489
  msgid "Whitelist taxonomies"
2490
  msgstr ""
2491
 
2492
- #: settings.php:1507
2493
  msgid "Post IDs"
2494
  msgstr ""
2495
 
2496
- #: settings.php:1510
2497
  msgid "Toggle post/page ID editor"
2498
  msgstr ""
2499
 
2500
- #: settings.php:1513
2501
  msgid "Comma separated post/page IDs"
2502
  msgstr ""
2503
 
2504
- #: settings.php:1517
2505
  msgid "Blacklist IDs"
2506
  msgstr ""
2507
 
2508
- #: settings.php:1521
2509
  msgid "Whitelist IDs"
2510
  msgstr ""
2511
 
2512
- #: settings.php:1533
2513
  msgid "Urls"
2514
  msgstr ""
2515
 
2516
- #: settings.php:1536
2517
  msgid "Toggle url editor"
2518
  msgstr ""
2519
 
2520
- #: settings.php:1539
2521
  msgid ""
2522
  "Comma separated urls (page addresses) starting with / after domain name (e."
2523
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2525,220 +2530,220 @@ msgid ""
2525
  "start*. *url-pattern*, *url-end)"
2526
  msgstr ""
2527
 
2528
- #: settings.php:1543
2529
  msgid "Blacklist urls"
2530
  msgstr ""
2531
 
2532
- #: settings.php:1547
2533
  msgid "Whitelist urls"
2534
  msgstr ""
2535
 
2536
- #: settings.php:1558
2537
  msgid "Url parameters"
2538
  msgstr ""
2539
 
2540
- #: settings.php:1562
2541
  msgid "Toggle url parameter and cookie editor"
2542
  msgstr ""
2543
 
2544
- #: settings.php:1565
2545
  msgid ""
2546
  "Comma separated url query parameters or cookies with optional values (use "
2547
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2548
  msgstr ""
2549
 
2550
- #: settings.php:1569
2551
  msgid "Blacklist url parameters"
2552
  msgstr ""
2553
 
2554
- #: settings.php:1573
2555
  msgid "Whitelist url parameters"
2556
  msgstr ""
2557
 
2558
- #: settings.php:1584
2559
  msgid "Referrers"
2560
  msgstr ""
2561
 
2562
- #: settings.php:1587
2563
  msgid "Toggle referer editor"
2564
  msgstr ""
2565
 
2566
- #: settings.php:1590
2567
  msgid ""
2568
  "Comma separated domains, use # for no referrer, you can also use partial "
2569
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2570
  msgstr ""
2571
 
2572
- #: settings.php:1594
2573
  msgid "Blacklist referers"
2574
  msgstr ""
2575
 
2576
- #: settings.php:1598
2577
  msgid "Whitelist referers"
2578
  msgstr ""
2579
 
2580
- #: settings.php:1618
2581
  msgid "Enable widget for this block"
2582
  msgstr ""
2583
 
2584
- #: settings.php:1630
2585
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2586
  msgstr ""
2587
 
2588
- #: settings.php:1631 settings.php:3353
2589
  msgid "Shortcode"
2590
  msgstr ""
2591
 
2592
- #: settings.php:1646
2593
  msgid ""
2594
  "Enable PHP function call to insert this block at any position in theme file. "
2595
  "If function is disabled for block it will return empty string."
2596
  msgstr ""
2597
 
2598
- #: settings.php:1647
2599
  msgid "PHP function"
2600
  msgstr ""
2601
 
2602
- #: settings.php:1662
2603
  msgid "Client-side device detection"
2604
  msgstr ""
2605
 
2606
- #: settings.php:1663
2607
  msgid "Server-side device detection"
2608
  msgstr ""
2609
 
2610
- #: settings.php:1670
2611
  msgid "Use client-side detection to"
2612
  msgstr ""
2613
 
2614
- #: settings.php:1672
2615
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2616
  msgstr ""
2617
 
2618
  #. Translators: only on (the following devices): viewport names (devices)
2619
  #. listed
2620
- #: settings.php:1677
2621
  msgid "only on"
2622
  msgstr ""
2623
 
2624
- #: settings.php:1705
2625
  msgid "Device min width %s px"
2626
  msgstr ""
2627
 
2628
- #: settings.php:1731
2629
  msgid "Use server-side detection to insert block only for"
2630
  msgstr ""
2631
 
2632
- #: settings.php:1750
2633
  msgid "Filter"
2634
  msgstr ""
2635
 
2636
- #: settings.php:1751
2637
  msgid "Word Count"
2638
  msgstr ""
2639
 
2640
- #: settings.php:1752
2641
  msgid "Scheduling"
2642
  msgstr ""
2643
 
2644
- #: settings.php:1753
2645
  msgid "Display"
2646
  msgstr ""
2647
 
2648
- #: settings.php:1755 settings.php:1984
2649
  msgid "General"
2650
  msgstr ""
2651
 
2652
- #: settings.php:1767
2653
  msgid "Old settings for AMP pages detected"
2654
  msgstr ""
2655
 
2656
- #: settings.php:1767
2657
  msgid ""
2658
  "To insert different codes on normal and AMP pages separate them with "
2659
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
2660
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
2661
  msgstr ""
2662
 
2663
- #: settings.php:1767
2664
  msgid "AMP pages"
2665
  msgstr ""
2666
 
2667
- #: settings.php:1772
2668
  msgid "Enable insertion for Ajax requests"
2669
  msgstr ""
2670
 
2671
- #: settings.php:1772
2672
  msgid "Ajax requests"
2673
  msgstr ""
2674
 
2675
- #: settings.php:1777
2676
  msgid "Enable insertion in RSS feeds"
2677
  msgstr ""
2678
 
2679
- #: settings.php:1777
2680
  msgid "RSS Feed"
2681
  msgstr ""
2682
 
2683
- #: settings.php:1782
2684
  msgid "Enable insertion on page for Error 404: Page not found"
2685
  msgstr ""
2686
 
2687
- #: settings.php:1782
2688
  msgid "Error 404 page"
2689
  msgstr ""
2690
 
2691
- #: settings.php:1794
2692
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2693
  msgstr ""
2694
 
2695
- #: settings.php:1795
2696
  msgid "Max"
2697
  msgstr ""
2698
 
2699
- #: settings.php:1795
2700
  msgid "insertions"
2701
  msgstr ""
2702
 
2703
- #: settings.php:1797
2704
  msgid ""
2705
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2706
  "tab General)"
2707
  msgstr ""
2708
 
2709
- #: settings.php:1800 settings.php:2142
2710
  msgid "Max blocks per page"
2711
  msgstr ""
2712
 
2713
- #: settings.php:1812
2714
  msgid "Insert for"
2715
  msgstr ""
2716
 
2717
- #: settings.php:1820
2718
  msgid ""
2719
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2720
  "currently active). Might speed up insertion on content pages when "
2721
  "the_content filter is called multiple times."
2722
  msgstr ""
2723
 
2724
- #: settings.php:1823
2725
  msgid "Insert only in the loop"
2726
  msgstr ""
2727
 
2728
- #: settings.php:1829
2729
  msgid ""
2730
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
2731
  msgstr ""
2732
 
2733
- #: settings.php:1829
2734
  msgid "Disable caching"
2735
  msgstr ""
2736
 
2737
- #: settings.php:1841
2738
  msgid "Filter insertions"
2739
  msgstr ""
2740
 
2741
- #: settings.php:1844
2742
  msgid ""
2743
  "Filter multiple insertions by specifying wanted insertions for this block - "
2744
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -2746,496 +2751,496 @@ msgid ""
2746
  "using only one insertion type."
2747
  msgstr ""
2748
 
2749
- #: settings.php:1847
2750
  msgid "using"
2751
  msgstr ""
2752
 
2753
- #: settings.php:1866
2754
  msgid "Checked means specified calls are unwanted"
2755
  msgstr ""
2756
 
2757
- #: settings.php:1866
2758
  msgid "Invert filter"
2759
  msgstr ""
2760
 
2761
- #: settings.php:1872
2762
  msgid "Post/Static page must have between"
2763
  msgstr ""
2764
 
2765
- #: settings.php:1873
2766
  msgid "Minimum number of post/static page words, leave empty for no limit"
2767
  msgstr ""
2768
 
2769
- #: settings.php:1875
2770
  msgid "Maximum number of post/static page words, leave empty for no limit"
2771
  msgstr ""
2772
 
2773
- #: settings.php:1888
2774
  msgid "days after publishing"
2775
  msgstr ""
2776
 
2777
- #: settings.php:1890
2778
  msgid "Not available"
2779
  msgstr ""
2780
 
2781
- #: settings.php:1903 settings.php:2134
2782
  msgid "Ad label"
2783
  msgstr ""
2784
 
2785
- #: settings.php:1922
2786
  msgid "General tag"
2787
  msgstr ""
2788
 
2789
- #: settings.php:1926
2790
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
2791
  msgstr ""
2792
 
2793
  #. translators: %s: HTML tags
2794
- #: settings.php:1935
2795
  msgid ""
2796
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
2797
  "side device detection!"
2798
  msgstr ""
2799
 
2800
- #: settings.php:1947
2801
  msgid "Settings"
2802
  msgstr ""
2803
 
2804
- #: settings.php:1950
2805
  msgid "Settings timestamp"
2806
  msgstr ""
2807
 
2808
- #: settings.php:1962
2809
  msgid "Are you sure you want to reset all settings?"
2810
  msgstr ""
2811
 
2812
- #: settings.php:1962
2813
  msgid "Reset All Settings"
2814
  msgstr ""
2815
 
2816
- #: settings.php:1985
2817
  msgid "Viewports"
2818
  msgstr ""
2819
 
2820
- #: settings.php:1986
2821
  msgid "Hooks"
2822
  msgstr ""
2823
 
2824
- #: settings.php:1987
2825
  msgid "Header"
2826
  msgstr ""
2827
 
2828
- #: settings.php:1988 strings.php:30
2829
  msgid "Footer"
2830
  msgstr ""
2831
 
2832
- #: settings.php:1993
2833
  msgid "Debugging"
2834
  msgstr ""
2835
 
2836
- #: settings.php:2003
2837
  msgid "Plugin priority"
2838
  msgstr ""
2839
 
2840
- #: settings.php:2011
2841
  msgid "Output buffering"
2842
  msgstr ""
2843
 
2844
- #: settings.php:2014
2845
  msgid "Needed for position Above header but may not work with all themes"
2846
  msgstr ""
2847
 
2848
- #: settings.php:2022
2849
  msgid "Syntax highlighting theme"
2850
  msgstr ""
2851
 
2852
- #: settings.php:2029
2853
  msgctxt "no syntax highlighting themes"
2854
  msgid "None"
2855
  msgstr ""
2856
 
2857
- #: settings.php:2030
2858
  msgid "No Syntax Highlighting"
2859
  msgstr ""
2860
 
2861
- #: settings.php:2032
2862
  msgctxt "syntax highlighting themes"
2863
  msgid "Light"
2864
  msgstr ""
2865
 
2866
- #: settings.php:2047
2867
  msgctxt "syntax highlighting themes"
2868
  msgid "Dark"
2869
  msgstr ""
2870
 
2871
- #: settings.php:2073
2872
  msgid "Min. user role for ind. exceptions editing"
2873
  msgstr ""
2874
 
2875
- #: settings.php:2083
2876
  msgid "Sticky widget mode"
2877
  msgstr ""
2878
 
2879
- #: settings.php:2086
2880
  msgid ""
2881
  "CSS mode is the best approach but may not work with all themes. JavaScript "
2882
  "mode works with most themes but may reload ads on page load."
2883
  msgstr ""
2884
 
2885
- #: settings.php:2094
2886
  msgid "Sticky widget top margin"
2887
  msgstr ""
2888
 
2889
- #: settings.php:2102
2890
  msgid "Dynamic blocks"
2891
  msgstr ""
2892
 
2893
- #: settings.php:2115
2894
  msgid "Functions for paragraph counting"
2895
  msgstr ""
2896
 
2897
- #: settings.php:2118
2898
  msgid ""
2899
  "Standard PHP functions are faster and work in most cases, use Multibyte "
2900
  "functions if paragraphs are not counted properly on non-english pages."
2901
  msgstr ""
2902
 
2903
- #: settings.php:2126
2904
  msgid "No paragraph counting inside"
2905
  msgstr ""
2906
 
2907
- #: settings.php:2137
2908
  msgid "Label text or HTML code"
2909
  msgstr ""
2910
 
2911
- #: settings.php:2145
2912
  msgid ""
2913
  "Maximum number of inserted blocks per page. You need to enable Max page "
2914
  "insertions (button Misc / tab Insertion) to count block for this limit."
2915
  msgstr ""
2916
 
2917
- #: settings.php:2159
2918
  msgid "Plugin usage tracking"
2919
  msgstr ""
2920
 
2921
  #. translators: %s: Ad Inserter
2922
- #: settings.php:2162
2923
  msgid ""
2924
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
2925
  "Only information regarding the WordPress environment and %s usage is "
2926
  "recorded (once per month and on events like plugin activation/deactivation)."
2927
  msgstr ""
2928
 
2929
- #: settings.php:2180
2930
  msgid "CSS class name for the wrapping div"
2931
  msgstr ""
2932
 
2933
- #: settings.php:2180
2934
  msgid "Block class name"
2935
  msgstr ""
2936
 
2937
- #: settings.php:2184
2938
  msgid "Include general plugin block class"
2939
  msgstr ""
2940
 
2941
- #: settings.php:2184
2942
  msgid "Block class"
2943
  msgstr ""
2944
 
2945
- #: settings.php:2189
2946
  msgid "Include block number class"
2947
  msgstr ""
2948
 
2949
- #: settings.php:2189
2950
  msgid "Block number class"
2951
  msgstr ""
2952
 
2953
- #: settings.php:2194
2954
  msgid ""
2955
  "Instead of alignment classes generate inline alignment styles for blocks"
2956
  msgstr ""
2957
 
2958
- #: settings.php:2194
2959
  msgid "Inline styles"
2960
  msgstr ""
2961
 
2962
- #: settings.php:2200
2963
  msgid "Preview of the block wrapping code"
2964
  msgstr ""
2965
 
2966
- #: settings.php:2201
2967
  msgid "Wrapping div"
2968
  msgstr ""
2969
 
2970
- #: settings.php:2202 settings.php:2602
2971
  msgid "BLOCK CODE"
2972
  msgstr ""
2973
 
2974
- #: settings.php:2210
2975
  msgid "Viewport Settings used for client-side device detection"
2976
  msgstr ""
2977
 
2978
  #. Translators: %d: viewport number
2979
- #: settings.php:2218
2980
  msgid "Viewport %d name"
2981
  msgstr ""
2982
 
2983
- #: settings.php:2221
2984
  msgid "min width"
2985
  msgstr ""
2986
 
2987
- #: settings.php:2232
2988
  msgid "Custom Hooks"
2989
  msgstr ""
2990
 
2991
- #: settings.php:2244 settings.php:2247
2992
  msgid "Enable hook"
2993
  msgstr ""
2994
 
2995
  #. translators: %d: hook number
2996
- #: settings.php:2247
2997
  msgid "Hook %d name"
2998
  msgstr ""
2999
 
3000
- #: settings.php:2250
3001
  msgid "Hook name for automatic insertion selection"
3002
  msgstr ""
3003
 
3004
- #: settings.php:2253
3005
  msgid "action"
3006
  msgstr ""
3007
 
3008
- #: settings.php:2256
3009
  msgid "Action name as used in the do_action () function"
3010
  msgstr ""
3011
 
3012
- #: settings.php:2259
3013
  msgid "priority"
3014
  msgstr ""
3015
 
3016
- #: settings.php:2262
3017
  msgid "Priority for the hook (default is 10)"
3018
  msgstr ""
3019
 
3020
- #: settings.php:2283
3021
  msgid "Enable insertion of this code into HTML page header"
3022
  msgstr ""
3023
 
3024
- #: settings.php:2287 settings.php:2345 settings.php:2504
3025
  msgid "Process PHP code"
3026
  msgstr ""
3027
 
3028
- #: settings.php:2291
3029
  msgid "HTML Page Header Code"
3030
  msgstr ""
3031
 
3032
- #: settings.php:2299
3033
  msgid "Code in the %s section of the HTML page"
3034
  msgstr ""
3035
 
3036
- #: settings.php:2300 settings.php:2358
3037
  msgctxt "code in header or footer"
3038
  msgid "DISABLED"
3039
  msgstr ""
3040
 
3041
- #: settings.php:2313 settings.php:2371
3042
  msgid "Use server-side detection to insert code only for"
3043
  msgstr ""
3044
 
3045
- #: settings.php:2326
3046
  msgid ""
3047
  "Enable insertion of this code into HTML page header on page for Error 404: "
3048
  "Page not found"
3049
  msgstr ""
3050
 
3051
- #: settings.php:2326 settings.php:2384
3052
  msgid "Insert on Error 404 page"
3053
  msgstr ""
3054
 
3055
- #: settings.php:2341
3056
  msgid "Enable insertion of this code into HTML page footer"
3057
  msgstr ""
3058
 
3059
- #: settings.php:2349
3060
  msgid "HTML Page Footer Code"
3061
  msgstr ""
3062
 
3063
  #. translators: %s: HTML tags
3064
- #: settings.php:2357
3065
  msgid "Code before the %s tag of the the HTML page"
3066
  msgstr ""
3067
 
3068
- #: settings.php:2384
3069
  msgid ""
3070
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3071
  "Page not found"
3072
  msgstr ""
3073
 
3074
- #: settings.php:2398
3075
  msgid "Enable detection of ad blocking"
3076
  msgstr ""
3077
 
3078
- #: settings.php:2415
3079
  msgid "Global action when ad blocking is detected"
3080
  msgstr ""
3081
 
3082
- #: settings.php:2424
3083
  msgid "Delay Action"
3084
  msgstr ""
3085
 
3086
- #: settings.php:2427
3087
  msgid ""
3088
  "Number of page views to delay action when ad blocking is detected. Leave "
3089
  "empty for no delay (action fires on first page view). Sets cookie."
3090
  msgstr ""
3091
 
3092
- #: settings.php:2427
3093
  msgctxt "Delay Action for x "
3094
  msgid "page views"
3095
  msgstr ""
3096
 
3097
- #: settings.php:2432
3098
  msgid "No Action Period"
3099
  msgstr ""
3100
 
3101
- #: settings.php:2435
3102
  msgid ""
3103
  "Number of days to supress action when ad blocking is detected. Leave empty "
3104
  "for no no-action period (action fires always after defined page view delay). "
3105
  "Sets cookie."
3106
  msgstr ""
3107
 
3108
- #: settings.php:2435
3109
  msgctxt "no action period"
3110
  msgid "days"
3111
  msgstr ""
3112
 
3113
- #: settings.php:2440
3114
  msgid "Custom Selectors"
3115
  msgstr ""
3116
 
3117
- #: settings.php:2443
3118
  msgid ""
3119
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3120
  "blocking detection. Invisible element or element with zero height means ad "
3121
  "blocking is present."
3122
  msgstr ""
3123
 
3124
- #: settings.php:2455
3125
  msgid "Redirection Page"
3126
  msgstr ""
3127
 
3128
- #: settings.php:2467
3129
  msgid "Custom Url"
3130
  msgstr ""
3131
 
3132
- #: settings.php:2472
3133
  msgid ""
3134
  "Static page for redirection when ad blocking is detected. For other pages "
3135
  "select Custom url and set it below."
3136
  msgstr ""
3137
 
3138
- #: settings.php:2481
3139
  msgid "Custom Redirection Url"
3140
  msgstr ""
3141
 
3142
- #: settings.php:2493
3143
  msgid "Message HTML code"
3144
  msgstr ""
3145
 
3146
- #: settings.php:2506
3147
  msgid "Preview message when ad blocking is detected"
3148
  msgstr ""
3149
 
3150
- #: settings.php:2535
3151
  msgid "Prevent visitors from closing the warning message"
3152
  msgstr ""
3153
 
3154
- #: settings.php:2535
3155
  msgid "Undismissible Message"
3156
  msgstr ""
3157
 
3158
- #: settings.php:2548
3159
  msgid ""
3160
  "Force showing admin toolbar for administrators when viewing site. Enable "
3161
  "this option when you are logged in as admin and you don't see admin toolbar."
3162
  msgstr ""
3163
 
3164
- #: settings.php:2556
3165
  msgid "Disable header code (Header tab)"
3166
  msgstr ""
3167
 
3168
- #: settings.php:2560
3169
  msgid "Disable footer code (Footer tab)"
3170
  msgstr ""
3171
 
3172
  #. translators: %s: Ad Inserter
3173
- #: settings.php:2564
3174
  msgid "Disable %s JavaScript code"
3175
  msgstr ""
3176
 
3177
  #. translators: %s: Ad Inserter
3178
- #: settings.php:2568
3179
  msgid "Disable %s CSS code"
3180
  msgstr ""
3181
 
3182
- #: settings.php:2572
3183
  msgid ""
3184
  "Disable PHP code processing (in all blocks including header and footer code)"
3185
  msgstr ""
3186
 
3187
- #: settings.php:2576
3188
  msgid "Disable insertion of all blocks"
3189
  msgstr ""
3190
 
3191
- #: settings.php:2580
3192
  msgid "Disable insertions"
3193
  msgstr ""
3194
 
3195
  #. translators: %s: Ad Inserter
3196
- #: settings.php:2592
3197
  msgid "%s CSS CODE"
3198
  msgstr ""
3199
 
3200
- #: settings.php:2595
3201
  msgid "HEADER CODE"
3202
  msgstr ""
3203
 
3204
  #. translators: %s: PHP tags
3205
- #: settings.php:2601
3206
  msgid "BLOCK PHP CODE"
3207
  msgstr ""
3208
 
3209
  #. translators: %s: Ad Inserter
3210
- #: settings.php:2607
3211
  msgid "%s JS CODE"
3212
  msgstr ""
3213
 
3214
- #: settings.php:2610
3215
  msgid "FOOTER CODE"
3216
  msgstr ""
3217
 
3218
- #: settings.php:2619
3219
  msgid "Force showing admin toolbar when viewing site"
3220
  msgstr ""
3221
 
3222
- #: settings.php:2626
3223
  msgid "Enable debugging functions in admin toolbar"
3224
  msgstr ""
3225
 
3226
- #: settings.php:2628
3227
  msgid "Debugging functions in admin toolbar"
3228
  msgstr ""
3229
 
3230
- #: settings.php:2635
3231
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3232
  msgstr ""
3233
 
3234
- #: settings.php:2637
3235
  msgid "Debugging functions on mobile screens"
3236
  msgstr ""
3237
 
3238
- #: settings.php:2644
3239
  msgid ""
3240
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3241
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3244,135 +3249,135 @@ msgid ""
3244
  "administrators debugging is always enabled."
3245
  msgstr ""
3246
 
3247
- #: settings.php:2646
3248
  msgid "Remote debugging"
3249
  msgstr ""
3250
 
3251
- #: settings.php:2653
3252
  msgid ""
3253
  "Disable translation to see original texts for the settings and messages in "
3254
  "English"
3255
  msgstr ""
3256
 
3257
- #: settings.php:2655
3258
  msgid "Disable translation"
3259
  msgstr ""
3260
 
3261
- #: settings.php:2990
3262
  msgid "Available positions for current theme"
3263
  msgstr ""
3264
 
3265
- #: settings.php:2991
3266
  msgid "Error checking pages"
3267
  msgstr ""
3268
 
3269
- #: settings.php:2994
3270
  msgid "Toggle theme checker for available positions for automatic insertion"
3271
  msgstr ""
3272
 
3273
- #: settings.php:2994
3274
  msgctxt "Button"
3275
  msgid "Check"
3276
  msgstr ""
3277
 
3278
- #: settings.php:3001
3279
  msgid "Position"
3280
  msgstr ""
3281
 
3282
- #: settings.php:3006
3283
  msgid "Archive pages"
3284
  msgstr ""
3285
 
3286
- #: settings.php:3065
3287
  msgid ""
3288
  "Position not available because output buffering (tab [*]) is not enabled"
3289
  msgstr ""
3290
 
3291
- #: settings.php:3068 strings.php:217
3292
  msgid "Position not checked yet"
3293
  msgstr ""
3294
 
3295
- #: settings.php:3099
3296
  msgid "Toggle active/all blocks"
3297
  msgstr ""
3298
 
3299
- #: settings.php:3103 strings.php:204
3300
  msgid "Rearrange block order"
3301
  msgstr ""
3302
 
3303
- #: settings.php:3108
3304
  msgid "Save new block order"
3305
  msgstr ""
3306
 
3307
- #: settings.php:3108
3308
  msgid "Save Changes"
3309
  msgstr ""
3310
 
3311
- #: settings.php:3133
3312
  msgid "Toggle active/all ad units"
3313
  msgstr ""
3314
 
3315
- #: settings.php:3137
3316
  msgid "Reload AdSense ad units"
3317
  msgstr ""
3318
 
3319
- #: settings.php:3141
3320
  msgid "Clear authorization to access AdSense account"
3321
  msgstr ""
3322
 
3323
- #: settings.php:3145 settings.php:3510 settings.php:3577 strings.php:212
3324
  msgid "Google AdSense Homepage"
3325
  msgstr ""
3326
 
3327
- #: settings.php:3322
3328
  msgid "Preview block"
3329
  msgstr ""
3330
 
3331
- #: settings.php:3331
3332
  msgid "Insertion disabled"
3333
  msgstr ""
3334
 
3335
- #: settings.php:3355
3336
  msgid "Widget positions"
3337
  msgstr ""
3338
 
3339
- #: settings.php:3421
3340
  msgid "Ad unit"
3341
  msgstr ""
3342
 
3343
- #: settings.php:3423
3344
  msgid "Slot ID"
3345
  msgstr ""
3346
 
3347
- #: settings.php:3449
3348
  msgid "Copy AdSense code"
3349
  msgstr ""
3350
 
3351
- #: settings.php:3452
3352
  msgid "Preview AdSense ad"
3353
  msgstr ""
3354
 
3355
- #: settings.php:3455
3356
  msgid "Get AdSense code"
3357
  msgstr ""
3358
 
3359
  #. translators: %s: HTML tags
3360
- #: settings.php:3487
3361
  msgid ""
3362
  "Please %s clear authorization %s with the button %s above and once again "
3363
  "authorize access to your AdSense account."
3364
  msgstr ""
3365
 
3366
- #: settings.php:3506
3367
  msgid "AdSense Integration"
3368
  msgstr ""
3369
 
3370
- #: settings.php:3508
3371
  msgid "AdSense Integration - Step 2"
3372
  msgstr ""
3373
 
3374
  #. translators: %s: HTML tags
3375
- #: settings.php:3514
3376
  msgid ""
3377
  "Authorize %s to access your AdSense account. Click on the %s Get "
3378
  "Authorization Code %s button to open a new window where you can allow "
@@ -3381,7 +3386,7 @@ msgid ""
3381
  msgstr ""
3382
 
3383
  #. translators: %s: HTML tags
3384
- #: settings.php:3521
3385
  msgid ""
3386
  "If you get error, can't access ad units or would like to use own Google API "
3387
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3389,7 +3394,7 @@ msgid ""
3389
  msgstr ""
3390
 
3391
  #. translators: %s: HTML tags
3392
- #: settings.php:3523
3393
  msgid ""
3394
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3395
  "Authorization Code %s button to open a new window where you can allow "
@@ -3398,38 +3403,38 @@ msgid ""
3398
  msgstr ""
3399
 
3400
  #. translators: %s: HTML tags
3401
- #: settings.php:3530
3402
  msgid ""
3403
  "If you get error %s invalid client %s click on the button %s Clear and "
3404
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3405
  msgstr ""
3406
 
3407
- #: settings.php:3541
3408
  msgid "Get Authorization Code"
3409
  msgstr ""
3410
 
3411
- #: settings.php:3544
3412
  msgid "Enter Authorization Code"
3413
  msgstr ""
3414
 
3415
- #: settings.php:3554
3416
  msgid "Use own API IDs"
3417
  msgstr ""
3418
 
3419
- #: settings.php:3556
3420
  msgid "Clear and return to Step 1"
3421
  msgstr ""
3422
 
3423
- #: settings.php:3560
3424
  msgid "Authorize"
3425
  msgstr ""
3426
 
3427
- #: settings.php:3576
3428
  msgid "AdSense Integration - Step 1"
3429
  msgstr ""
3430
 
3431
  #. translators: %s: Ad Inserter
3432
- #: settings.php:3580
3433
  msgid ""
3434
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3435
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3438,176 +3443,176 @@ msgid ""
3438
  msgstr ""
3439
 
3440
  #. translators: %s: HTML tags
3441
- #: settings.php:3589
3442
  msgid "Go to %s Google APIs and Services console %s"
3443
  msgstr ""
3444
 
3445
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3446
- #: settings.php:3590
3447
  msgid ""
3448
  "Create %1$s project - if the project and IDs are already created click on "
3449
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3450
  msgstr ""
3451
 
3452
  #. translators: %s: HTML tags
3453
- #: settings.php:3591
3454
  msgid ""
3455
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3456
  "create a new project"
3457
  msgstr ""
3458
 
3459
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3460
- #: settings.php:3592
3461
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3462
  msgstr ""
3463
 
3464
  #. translators: %s: HTML tags
3465
- #: settings.php:3593
3466
  msgid ""
3467
  "Click on project selection, wait for the project to be created and then and "
3468
  "select %s as the current project"
3469
  msgstr ""
3470
 
3471
  #. translators: %s: HTML tags
3472
- #: settings.php:3594
3473
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3474
  msgstr ""
3475
 
3476
  #. translators: %s: HTML tags
3477
- #: settings.php:3595
3478
  msgid "Search for adsense and enable %s"
3479
  msgstr ""
3480
 
3481
  #. translators: %s: HTML tags
3482
- #: settings.php:3596
3483
  msgid "Click on %s CREATE CREDENTIALS %s"
3484
  msgstr ""
3485
 
3486
  #. translators: %s: HTML tags
3487
- #: settings.php:3597
3488
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3489
  msgstr ""
3490
 
3491
  #. translators: %s: HTML tags
3492
- #: settings.php:3598
3493
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3494
  msgstr ""
3495
 
3496
  #. translators: %s: HTML tags
3497
- #: settings.php:3599
3498
  msgid "Click on %s What credentials do I need? %s"
3499
  msgstr ""
3500
 
3501
  #. translators: %s: HTML tags
3502
- #: settings.php:3600
3503
  msgid ""
3504
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3505
  "Ad Inserter client %s"
3506
  msgstr ""
3507
 
3508
  #. translators: %s: HTML tags
3509
- #: settings.php:3601
3510
  msgid ""
3511
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3512
  "enter %s"
3513
  msgstr ""
3514
 
3515
  #. translators: %s: HTML tags
3516
- #: settings.php:3602
3517
  msgid "Click on %s Continue %s"
3518
  msgstr ""
3519
 
3520
  #. translators: %s: HTML tags
3521
- #: settings.php:3603
3522
  msgid "Click on %s Done %s"
3523
  msgstr ""
3524
 
3525
  #. translators: %s: HTML tags
3526
- #: settings.php:3604
3527
  msgid ""
3528
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3529
  "secret %s"
3530
  msgstr ""
3531
 
3532
- #: settings.php:3605
3533
  msgid "Copy them to the appropriate fields below"
3534
  msgstr ""
3535
 
3536
- #: settings.php:3611
3537
  msgid "Client ID"
3538
  msgstr ""
3539
 
3540
- #: settings.php:3614
3541
  msgid "Enter Client ID"
3542
  msgstr ""
3543
 
3544
- #: settings.php:3619
3545
  msgid "Client secret"
3546
  msgstr ""
3547
 
3548
- #: settings.php:3622
3549
  msgid "Enter Client secret"
3550
  msgstr ""
3551
 
3552
- #: settings.php:3632
3553
  msgid "Use default API IDs"
3554
  msgstr ""
3555
 
3556
- #: settings.php:3637
3557
  msgid "Save"
3558
  msgstr ""
3559
 
3560
- #: settings.php:3913 settings.php:3926 settings.php:3939 settings.php:3954
3561
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3562
  msgstr ""
3563
 
3564
- #: settings.php:3918 settings.php:3931 settings.php:3944 settings.php:3959
3565
- #: settings.php:4128 settings.php:4132 settings.php:4134 settings.php:4150
3566
- #: settings.php:4161 settings.php:4164 settings.php:4170 settings.php:4182
3567
  msgid "Looking for AdSense alternative?"
3568
  msgstr ""
3569
 
3570
- #: settings.php:3970
3571
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3572
  msgstr ""
3573
 
3574
- #: settings.php:3975 settings.php:4130 settings.php:4142 settings.php:4167
3575
- #: settings.php:4190
3576
  msgid "Use Infolinks ads with Adsense to earn more"
3577
  msgstr ""
3578
 
3579
- #: settings.php:3994 settings.php:4032
3580
  msgid "Support plugin development"
3581
  msgstr ""
3582
 
3583
- #: settings.php:3995 settings.php:4033
3584
  msgid ""
3585
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3586
  "reviewing the plugin on WordPres"
3587
  msgstr ""
3588
 
3589
- #: settings.php:3995
3590
  msgctxt "Review ad Inserter"
3591
  msgid "Review"
3592
  msgstr ""
3593
 
3594
- #: settings.php:3996
3595
  msgid ""
3596
  "Support free Ad Inserter development. If you are making money with Ad "
3597
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3598
  "you!"
3599
  msgstr ""
3600
 
3601
- #: settings.php:3996
3602
  msgid "Donate"
3603
  msgstr ""
3604
 
3605
- #: settings.php:4003 settings.php:4048
3606
  msgid "Average rating of the plugin - Thank you!"
3607
  msgstr ""
3608
 
3609
  #. translators: %s: Ad Inserter, HTML tags
3610
- #: settings.php:4014
3611
  msgid ""
3612
  "You've been using %s for a while now, and I hope you're happy with it. "
3613
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3616,329 +3621,329 @@ msgid ""
3616
  "your website. %s Thank you!"
3617
  msgstr ""
3618
 
3619
- #: settings.php:4033
3620
  msgid "Review"
3621
  msgstr ""
3622
 
3623
- #: settings.php:4037
3624
  msgid "Ad Inserter on Twitter"
3625
  msgstr ""
3626
 
3627
- #: settings.php:4038
3628
  msgid "Ad Inserter on Facebook"
3629
  msgstr ""
3630
 
3631
- #: settings.php:4041
3632
  msgid "Follow Ad Inserter"
3633
  msgstr ""
3634
 
3635
  #. translators: %s: HTML tags
3636
- #: settings.php:4068
3637
  msgid ""
3638
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3639
  "and %s Common Settings %s pages"
3640
  msgstr ""
3641
 
3642
  #. translators: %s: HTML tags
3643
- #: settings.php:4080
3644
  msgid ""
3645
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3646
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3647
  msgstr ""
3648
 
3649
  #. translators: %s: HTML tags
3650
- #: settings.php:4099
3651
  msgid ""
3652
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3653
  "diagnose and fix the problem."
3654
  msgstr ""
3655
 
3656
  #. translators: %s: HTML tags
3657
- #: settings.php:4103
3658
  msgid ""
3659
  "If you need any kind of help or support, please do not hesitate to open a "
3660
  "thread on the %s support forum. %s"
3661
  msgstr ""
3662
 
3663
- #: settings.php:4146 settings.php:4186
3664
  msgid "A/B testing - Track ad impressions and clicks"
3665
  msgstr ""
3666
 
3667
- #: settings.php:4154 settings.php:4178
3668
  msgid "Code preview with visual CSS editor"
3669
  msgstr ""
3670
 
3671
- #: settings.php:4196
3672
  msgid "Looking for Pro Ad Management plugin?"
3673
  msgstr ""
3674
 
3675
- #: settings.php:4197
3676
  msgid "To Optimally Monetize your WordPress website?"
3677
  msgstr ""
3678
 
3679
  #. translators: %s HTML tags
3680
- #: settings.php:4200
3681
  msgid "%s AdSense Integration %s"
3682
  msgstr ""
3683
 
3684
  #. translators: %s HTML tags
3685
- #: settings.php:4201
3686
  msgid "Syntax highlighting %s editor %s"
3687
  msgstr ""
3688
 
3689
  #. translators: %s HTML tags
3690
- #: settings.php:4202
3691
  msgid "%s Code preview %s with visual CSS editor"
3692
  msgstr ""
3693
 
3694
  #. translators: %s HTML tags
3695
- #: settings.php:4203
3696
  msgid "Simple user interface - all settings on a single page"
3697
  msgstr ""
3698
 
3699
  #. translators: %s HTML tags
3700
- #: settings.php:4204
3701
  msgid ""
3702
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3703
  "image / excerpt"
3704
  msgstr ""
3705
 
3706
  #. translators: %s HTML tags
3707
- #: settings.php:4205
3708
  msgid "%s Automatic insertion %s between posts on blog pages"
3709
  msgstr ""
3710
 
3711
  #. translators: %s HTML tags
3712
- #: settings.php:4206
3713
  msgid "%s Automatic insertion %s before, between and after comments"
3714
  msgstr ""
3715
 
3716
  #. translators: %s HTML tags
3717
- #: settings.php:4207
3718
  msgid "%s Automatic insertion %s after %s or before %s tag"
3719
  msgstr ""
3720
 
3721
  #. translators: %s HTML tags
3722
- #: settings.php:4208
3723
  msgid "Automatic insertion at %s custom hook positions %s"
3724
  msgstr ""
3725
 
3726
  #. translators: %s HTML tags
3727
- #: settings.php:4209
3728
  msgid ""
3729
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3730
  "selectors)"
3731
  msgstr ""
3732
 
3733
  #. translators: %s HTML tags
3734
- #: settings.php:4210
3735
  msgid "%s Insertion exceptions %s for individual posts and pages"
3736
  msgstr ""
3737
 
3738
  #. translators: %s HTML tags
3739
- #: settings.php:4211
3740
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3741
  msgstr ""
3742
 
3743
  #. translators: %s HTML tags
3744
- #: settings.php:4212
3745
  msgid ""
3746
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3747
  "scrolls)"
3748
  msgstr ""
3749
 
3750
  #. translators: %s HTML tags
3751
- #: settings.php:4213
3752
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3753
  msgstr ""
3754
 
3755
  #. translators: %s HTML tags
3756
- #: settings.php:4214
3757
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3758
  msgstr ""
3759
 
3760
  #. translators: %s HTML tags
3761
- #: settings.php:4215
3762
  msgid ""
3763
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3764
  "visible)"
3765
  msgstr ""
3766
 
3767
  #. translators: %s HTML tags
3768
- #: settings.php:4216
3769
  msgid ""
3770
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3771
  msgstr ""
3772
 
3773
  #. translators: %s HTML tags
3774
- #: settings.php:4217
3775
  msgid "Block %s alignment and style %s customizations"
3776
  msgstr ""
3777
 
3778
  #. translators: %s HTML tags
3779
- #: settings.php:4218
3780
  msgid ""
3781
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3782
  "TOS)"
3783
  msgstr ""
3784
 
3785
  #. translators: %s HTML tags
3786
- #: settings.php:4219
3787
  msgid ""
3788
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3789
  "feeds"
3790
  msgstr ""
3791
 
3792
  #. translators: %s HTML tags
3793
- #: settings.php:4220
3794
  msgid "%s Ad rotation %s (works also with caching)"
3795
  msgstr ""
3796
 
3797
  #. translators: %s HTML tags
3798
- #: settings.php:4221
3799
  msgid ""
3800
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3801
  "AdSense)"
3802
  msgstr ""
3803
 
3804
  #. translators: %s HTML tags
3805
- #: settings.php:4222
3806
  msgid "Support for %s A/B testing %s"
3807
  msgstr ""
3808
 
3809
  #. translators: %s HTML tags
3810
- #: settings.php:4223
3811
  msgid "Support for %s lazy loading %s"
3812
  msgstr ""
3813
 
3814
  #. translators: %s HTML tags
3815
- #: settings.php:4224
3816
  msgid "Support for ads on %s AMP pages %s"
3817
  msgstr ""
3818
 
3819
  #. translators: %s HTML tags
3820
- #: settings.php:4225
3821
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
3822
  msgstr ""
3823
 
3824
  #. translators: %s HTML tags
3825
- #: settings.php:4226
3826
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
3827
  msgstr ""
3828
 
3829
  #. translators: %s HTML tags
3830
- #: settings.php:4227
3831
  msgid "PHP code processing"
3832
  msgstr ""
3833
 
3834
  #. translators: %s HTML tags
3835
- #: settings.php:4228
3836
  msgid "%s Banner %s code generator"
3837
  msgstr ""
3838
 
3839
  #. translators: %s HTML tags
3840
- #: settings.php:4229
3841
  msgid "Support for %s header and footer %s code"
3842
  msgstr ""
3843
 
3844
  #. translators: %s HTML tags
3845
- #: settings.php:4230
3846
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
3847
  msgstr ""
3848
 
3849
  #. translators: %s HTML tags
3850
- #: settings.php:4231
3851
  msgid "Desktop, tablet and phone server-side %s device detection %s"
3852
  msgstr ""
3853
 
3854
  #. translators: %s HTML tags
3855
- #: settings.php:4232
3856
  msgid "Client-side %s mobile device detection %s (works with caching)"
3857
  msgstr ""
3858
 
3859
  #. translators: %s HTML tags
3860
- #: settings.php:4233
3861
  msgid ""
3862
  "%s Ad blocking detection %s - popup message, ad replacement, content "
3863
  "protection"
3864
  msgstr ""
3865
 
3866
  #. translators: %s HTML tags
3867
- #: settings.php:4234
3868
  msgid "%s Ad blocking statistics %s"
3869
  msgstr ""
3870
 
3871
  #. translators: %s HTML tags
3872
- #: settings.php:4235
3873
  msgid ""
3874
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
3875
  "referers"
3876
  msgstr ""
3877
 
3878
  #. translators: %s HTML tags
3879
- #: settings.php:4236
3880
  msgid ""
3881
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
3882
  msgstr ""
3883
 
3884
  #. translators: %s HTML tags
3885
- #: settings.php:4237
3886
  msgid "%s Multisite options %s to limit settings on the sites"
3887
  msgstr ""
3888
 
3889
  #. translators: %s HTML tags
3890
- #: settings.php:4238
3891
  msgid "%s Import/Export %s block or plugin settings"
3892
  msgstr ""
3893
 
3894
  #. translators: %s HTML tags
3895
- #: settings.php:4239
3896
  msgid "%s Insertion scheduling %s with fallback option"
3897
  msgstr ""
3898
 
3899
  #. translators: %s HTML tags
3900
- #: settings.php:4240
3901
  msgid "Country-level %s GEO targeting %s (works also with caching)"
3902
  msgstr ""
3903
 
3904
  #. translators: %s HTML tags
3905
- #: settings.php:4241
3906
  msgid "Simple troubleshooting with many %s debugging functions %s"
3907
  msgstr ""
3908
 
3909
  #. translators: %s HTML tags
3910
- #: settings.php:4242
3911
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
3912
  msgstr ""
3913
 
3914
  #. translators: %s HTML tags
3915
- #: settings.php:4243
3916
  msgid "%s Visualization %s of available positions for automatic ad insertion"
3917
  msgstr ""
3918
 
3919
  #. translators: %s HTML tags
3920
- #: settings.php:4244
3921
  msgid ""
3922
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
3923
  msgstr ""
3924
 
3925
  #. translators: %s HTML tags
3926
- #: settings.php:4245
3927
  msgid "%s Clipboard support %s to easily copy blocks or settings"
3928
  msgstr ""
3929
 
3930
  #. translators: %s HTML tags
3931
- #: settings.php:4246
3932
  msgid "No ads on the settings page"
3933
  msgstr ""
3934
 
3935
  #. translators: %s HTML tags
3936
- #: settings.php:4247
3937
  msgid "Premium support via email"
3938
  msgstr ""
3939
 
3940
  #. translators: %s HTML tags
3941
- #: settings.php:4250
3942
  msgid ""
3943
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
3944
  "website with many advertising features to automatically insert adverts on "
@@ -3953,82 +3958,82 @@ msgid ""
3953
  msgstr ""
3954
 
3955
  #. translators: %s HTML tags
3956
- #: settings.php:4263
3957
  msgid "Looking for %s Pro Ad Management plugin? %s"
3958
  msgstr ""
3959
 
3960
  #. translators: %s HTML tags
3961
- #: settings.php:4268
3962
  msgid "Ads between posts"
3963
  msgstr ""
3964
 
3965
  #. translators: %s HTML tags
3966
- #: settings.php:4269
3967
  msgid "Ads between comments"
3968
  msgstr ""
3969
 
3970
  #. translators: %s HTML tags
3971
- #: settings.php:4270
3972
  msgid "Support via email"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
- #: settings.php:4276
3977
  msgid "%s Sticky positions %s"
3978
  msgstr ""
3979
 
3980
  #. translators: %s HTML tags
3981
- #: settings.php:4277
3982
  msgid "%s Limit insertions %s"
3983
  msgstr ""
3984
 
3985
  #. translators: %s HTML tags
3986
- #: settings.php:4278
3987
  msgid "%s Clearance %s options"
3988
  msgstr ""
3989
 
3990
  #. translators: %s HTML tags
3991
- #: settings.php:4284
3992
  msgid "Ad rotation"
3993
  msgstr ""
3994
 
3995
  #. translators: %s HTML tags
3996
- #: settings.php:4285
3997
  msgid "%s A/B testing %s"
3998
  msgstr ""
3999
 
4000
  #. translators: %s HTML tags
4001
- #: settings.php:4286
4002
  msgid "%s Ad tracking %s"
4003
  msgstr ""
4004
 
4005
  #. translators: %s HTML tags
4006
- #: settings.php:4292
4007
  msgid "Support for %s AMP pages %s"
4008
  msgstr ""
4009
 
4010
  #. translators: %s HTML tags
4011
- #: settings.php:4293
4012
  msgid "%s Ad blocking detection %s"
4013
  msgstr ""
4014
 
4015
  #. translators: %s HTML tags
4016
- #: settings.php:4294
4017
  msgid "%s Mobile device detection %s"
4018
  msgstr ""
4019
 
4020
  #. translators: %s HTML tags
4021
- #: settings.php:4301
4022
  msgid "64 code blocks"
4023
  msgstr ""
4024
 
4025
  #. translators: %s HTML tags
4026
- #: settings.php:4302
4027
  msgid "%s GEO targeting %s"
4028
  msgstr ""
4029
 
4030
  #. translators: %s HTML tags
4031
- #: settings.php:4303
4032
  msgid "%s Scheduling %s"
4033
  msgstr ""
4034
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.10\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-02-22 19:28:04+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:318
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:334
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:341
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:412
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:419
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:428
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:435
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:445
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1022
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1027
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1032 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1037 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1042 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1047 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1094
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1098
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1307
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1582 ad-inserter.php:2445
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2016
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2016
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2017
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2018
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2019
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2020
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2021
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2216
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2217 includes/functions.php:1489
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
+ #: ad-inserter.php:2220
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
+ #: ad-inserter.php:2221 includes/functions.php:1492
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
+ #: ad-inserter.php:2231
158
  msgid ""
159
  "I would really appreciate it if you could give the plugin a 5-star rating on "
160
  "WordPres."
161
  msgstr ""
162
 
163
+ #: ad-inserter.php:2233
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
+ #: ad-inserter.php:2239
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2244
175
  msgid "I already did."
176
  msgstr ""
177
 
178
+ #: ad-inserter.php:2258
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
+ #: ad-inserter.php:2332
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
+ #: ad-inserter.php:2361 ad-inserter.php:7972 class.php:1967
190
  #: includes/preview.php:1966 includes/preview.php:2010
191
+ #: includes/preview.php:2047 settings.php:3352 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2362 settings.php:3353 settings.php:3427
196
  msgid "Name"
197
  msgstr ""
198
 
199
+ #: ad-inserter.php:2363 settings.php:3355
200
  msgid "Automatic insertion"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2366
204
  msgid "Default insertion for pages"
205
  msgstr ""
206
 
207
+ #: ad-inserter.php:2367
208
  msgid "Default insertion for posts"
209
  msgstr ""
210
 
211
  #. translators: For this post or page
212
+ #: ad-inserter.php:2370
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr ""
216
 
217
+ #: ad-inserter.php:2371
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr ""
221
 
222
+ #: ad-inserter.php:2379
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr ""
226
 
227
+ #: ad-inserter.php:2380
228
  msgctxt "Default insertion for"
229
  msgid "pages"
230
  msgstr ""
231
 
232
+ #: ad-inserter.php:2384
233
  msgctxt "Enabled/disabled on all"
234
  msgid "posts"
235
  msgstr ""
236
 
237
+ #: ad-inserter.php:2385
238
  msgctxt "Default insertion for"
239
  msgid "posts"
240
  msgstr ""
241
 
242
+ #: ad-inserter.php:2404 ad-inserter.php:2417 strings.php:156
243
  msgid "Enabled"
244
  msgstr ""
245
 
246
  #. translators: Menu items
247
+ #: ad-inserter.php:2404 ad-inserter.php:2417 includes/functions.php:2117
248
  #: strings.php:16
249
  msgid "Disabled"
250
  msgstr ""
251
 
252
  #. translators: Enabled on all pages or posts
253
+ #: ad-inserter.php:2407
254
  msgid "Enabled on all"
255
  msgstr ""
256
 
257
  #. translators: Disabled on all pages or posts
258
+ #: ad-inserter.php:2409
259
  msgid "Disabled on all"
260
  msgstr ""
261
 
262
  #. translators: No individual exceptions enabled for pages or posts
263
+ #: ad-inserter.php:2437
264
  msgid "No individual exceptions enabled for"
265
  msgstr ""
266
 
267
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
268
+ #: ad-inserter.php:2442
269
  msgid ""
270
  "Default insertion for %1$s can be configured for each block on %2$s page - "
271
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
272
  "checkbox.<br />"
273
  msgstr ""
274
 
275
+ #: ad-inserter.php:2447
276
  msgid ""
277
  "Default value is <strong>blank</strong> and means no individual exceptions "
278
  "(even if previously defined here).<br />"
279
  msgstr ""
280
 
281
+ #: ad-inserter.php:2450
282
  msgctxt "Pages"
283
  msgid ""
284
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
285
  "enabled</strong> to enable individual exception settings on this page.<br />"
286
  msgstr ""
287
 
288
+ #: ad-inserter.php:2451
289
  msgctxt "Posts"
290
  msgid ""
291
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
292
  "enabled</strong> to enable individual exception settings on this page.<br />"
293
  msgstr ""
294
 
295
+ #: ad-inserter.php:2453
296
  msgid "For more information check page %s"
297
  msgstr ""
298
 
299
  #. translators: Ad Inserter Exceptions documentation page
300
+ #: ad-inserter.php:2455
301
  msgid "Individual Exceptions"
302
  msgstr ""
303
 
304
+ #: ad-inserter.php:2500
305
  msgid "STATIC PAGE"
306
  msgstr ""
307
 
308
+ #: ad-inserter.php:2503
309
  msgid "POST"
310
  msgstr ""
311
 
312
+ #: ad-inserter.php:2506
313
  msgid "HOMEPAGE"
314
  msgstr ""
315
 
316
+ #: ad-inserter.php:2509
317
  msgid "CATEGORY PAGE"
318
  msgstr ""
319
 
320
+ #: ad-inserter.php:2512
321
  msgid "SEARCH PAGE"
322
  msgstr ""
323
 
324
+ #: ad-inserter.php:2515
325
  msgid "ARCHIVE PAGE"
326
  msgstr ""
327
 
328
+ #: ad-inserter.php:2518
329
  msgid "ERROR 404 PAGE"
330
  msgstr ""
331
 
332
+ #: ad-inserter.php:2521
333
  msgid "AJAX CALL"
334
  msgstr ""
335
 
336
+ #: ad-inserter.php:2524
337
  msgid "UNKNOWN PAGE TYPE"
338
  msgstr ""
339
 
340
+ #: ad-inserter.php:2541
341
  msgid "Click to delete ad blocking detection cokies"
342
  msgstr ""
343
 
344
+ #: ad-inserter.php:2542
345
  msgid "AD BLOCKING STATUS UNKNOWN"
346
  msgstr ""
347
 
348
  #. translators: %s: AdSense Auto Ads
349
+ #: ad-inserter.php:2566
350
  msgid ""
351
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
352
  "positions"
353
  msgstr ""
354
 
355
+ #: ad-inserter.php:2705
356
  msgid "Code for insertion"
357
  msgstr ""
358
 
359
+ #: ad-inserter.php:2705
360
  msgid "character"
361
  msgid_plural "characters"
362
  msgstr[0] ""
363
  msgstr[1] ""
364
 
365
+ #: ad-inserter.php:2748
366
  msgid "Header code"
367
  msgstr ""
368
 
369
+ #: ad-inserter.php:2748
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr ""
373
 
374
+ #: ad-inserter.php:2748 ad-inserter.php:2966
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] ""
378
  msgstr[1] ""
379
 
380
+ #: ad-inserter.php:2781
381
  msgid "Automatically placed by AdSense Auto ads code"
382
  msgstr ""
383
 
384
+ #: ad-inserter.php:2966
385
  msgid "Footer code"
386
  msgstr ""
387
 
388
+ #: ad-inserter.php:2966
389
  msgctxt "Footer code"
390
  msgid "DISABLED"
391
  msgstr ""
392
 
393
+ #: ad-inserter.php:2972
394
  msgid "JAVASCRIPT NOT WORKING"
395
  msgstr ""
396
 
397
+ #: ad-inserter.php:2972
398
  msgid "NO JAVASCRIPT ERRORS"
399
  msgstr ""
400
 
401
+ #: ad-inserter.php:2972
402
  msgid "JAVASCRIPT ERRORS"
403
  msgstr ""
404
 
405
  #. translators: block name (block with default settings)
406
+ #: ad-inserter.php:5032
407
  msgctxt "Block name"
408
  msgid "Default"
409
  msgstr ""
410
 
411
  #. translators: %s: Ad Inserter
412
+ #: ad-inserter.php:5596
413
  msgid "Error importing %s settings."
414
  msgstr ""
415
 
416
+ #: ad-inserter.php:5597
417
  msgid "Error importing settings for block"
418
  msgid_plural "Error importing settings for blocks:"
419
  msgstr[0] ""
420
  msgstr[1] ""
421
 
422
+ #: ad-inserter.php:5646
423
  msgid "Settings saved."
424
  msgstr ""
425
 
426
+ #: ad-inserter.php:5731
427
  msgid "Settings cleared."
428
  msgstr ""
429
 
430
+ #: ad-inserter.php:6076 ad-inserter.php:6078 ad-inserter.php:6101
431
  msgid "word"
432
  msgid_plural "words"
433
  msgstr[0] ""
434
  msgstr[1] ""
435
 
436
+ #: ad-inserter.php:6115 ad-inserter.php:6227
437
  msgid "HTML TAGS REMOVED"
438
  msgstr ""
439
 
440
+ #: ad-inserter.php:6303
441
  msgid "BEFORE COMMENTS"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:6411
445
  msgid "AFTER COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:6474
449
  msgid "BETWEEN COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7619
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:7619
457
  msgid "Please update!"
458
  msgstr ""
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
+ #: ad-inserter.php:7845
463
  msgid "Thank you for installing"
464
  msgstr ""
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
+ #: ad-inserter.php:7847
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
471
  msgstr ""
472
 
473
+ #: ad-inserter.php:7849
474
  msgid ""
475
  "We don't record any sensitive data, only information regarding the WordPress "
476
  "environment and plugin usage, which will help us to make improvements to the "
478
  msgstr ""
479
 
480
  #. translators: Deactivation message: %s: HTML tags
481
+ #: ad-inserter.php:7886
482
  msgid ""
483
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
484
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
486
  msgstr ""
487
 
488
  #. translators: %s: Ad Inserter
489
+ #: ad-inserter.php:7929
490
  msgid "%s block."
491
  msgstr ""
492
 
493
  #. translators: widget title
494
+ #: ad-inserter.php:7945 ad-inserter.php:7981
495
  msgid "Processing log"
496
  msgstr ""
497
 
498
  #. translators: widget title
499
+ #: ad-inserter.php:7947 ad-inserter.php:7982
500
  msgid "Dummy widget"
501
  msgstr ""
502
 
503
  #. translators: widget title
504
+ #: ad-inserter.php:7949 ad-inserter.php:7980
505
  msgid "Debugging tools"
506
  msgstr ""
507
 
508
  #. translators: block status (widget title)
509
+ #: ad-inserter.php:7956
510
  msgctxt "block"
511
  msgid "PAUSED"
512
  msgstr ""
513
 
514
+ #: ad-inserter.php:7957
515
  msgid "WIDGET DISABLED"
516
  msgstr ""
517
 
518
+ #: ad-inserter.php:7958
519
  msgid "Unknown block"
520
  msgstr ""
521
 
522
+ #: ad-inserter.php:7967 includes/functions.php:2630 settings.php:1038
523
  msgid "Title"
524
  msgstr ""
525
 
526
+ #: ad-inserter.php:7989
527
  msgctxt "Widget"
528
  msgid "Sticky"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:8038
532
  msgid ""
533
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
534
  "Inserter you need to first deactivate Ad Inserter Pro."
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:8039
538
  msgid ""
539
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
540
  "will clear all settings that are available only in the Pro version "
566
  msgid "After post"
567
  msgstr ""
568
 
569
+ #: class.php:1957 settings.php:1624 settings.php:3359
570
  msgid "Widget"
571
  msgstr ""
572
 
573
+ #: class.php:1962 settings.php:3357
574
  msgid "PHP function call"
575
  msgstr ""
576
 
660
  msgid "script"
661
  msgstr ""
662
 
663
+ #: class.php:3042 settings.php:1893
664
  msgid "for"
665
  msgstr ""
666
 
771
  "Leave empty unless position is not properly calculated."
772
  msgstr ""
773
 
774
+ #: includes/functions.php:420 settings.php:1194 settings.php:2449
775
  msgid "Open HTML element selector"
776
  msgstr ""
777
 
822
  msgid "%s license overused. Continue?"
823
  msgstr ""
824
 
825
+ #: includes/functions.php:507 settings.php:1963
826
  msgid "Save Settings"
827
  msgstr ""
828
 
892
  msgid "Tracking for this block is disabled"
893
  msgstr ""
894
 
895
+ #: includes/functions.php:732 settings.php:3120 settings.php:3156
896
  #: strings.php:209
897
  msgid "Loading..."
898
  msgstr ""
1161
  msgid "Expired"
1162
  msgstr ""
1163
 
1164
+ #: includes/functions.php:2112 settings.php:1277 settings.php:1292
1165
+ #: settings.php:1879
1166
  msgid "and"
1167
  msgstr ""
1168
 
1202
  msgid "Preview iframe code"
1203
  msgstr ""
1204
 
1205
+ #: includes/functions.php:2165 includes/preview.php:1964 settings.php:954
1206
+ #: settings.php:2511
1207
  msgid "Preview"
1208
  msgstr ""
1209
 
1210
  #: includes/functions.php:2179 includes/functions.php:3821
1211
+ #: includes/functions.php:3884 settings.php:1996
1212
  msgid "Ad Blocking"
1213
  msgstr ""
1214
 
1384
  msgid "Are you sure you want to clear all exceptions for block"
1385
  msgstr ""
1386
 
1387
+ #: includes/functions.php:2618 settings.php:1041
1388
  msgid "Clear all exceptions for block"
1389
  msgstr ""
1390
 
1396
  msgid "Clear all exceptions for all blocks"
1397
  msgstr ""
1398
 
1399
+ #: includes/functions.php:2630 settings.php:3429
1400
  msgid "Type"
1401
  msgstr ""
1402
 
1405
  msgstr ""
1406
 
1407
  #: includes/functions.php:2649 includes/placeholders.php:346
1408
+ #: includes/preview.php:2271 settings.php:1180
1409
  msgid "Edit"
1410
  msgstr ""
1411
 
1470
  msgid "Main site settings used for all blogs"
1471
  msgstr ""
1472
 
1473
+ #: includes/functions.php:2740 settings.php:2407
1474
  msgid "Ad Blocking Detection"
1475
  msgstr ""
1476
 
1618
  msgid "Placeholder"
1619
  msgstr ""
1620
 
1621
+ #: includes/placeholders.php:356 settings.php:808 settings.php:3430
1622
  msgid "Size"
1623
  msgstr ""
1624
 
1726
  msgid "Ad Blocking Detected Message Preview"
1727
  msgstr ""
1728
 
1729
+ #: includes/preview-adb.php:348 settings.php:2524
1730
  msgid "Message CSS"
1731
  msgstr ""
1732
 
1733
+ #: includes/preview-adb.php:353 settings.php:2532
1734
  msgid "Overlay CSS"
1735
  msgstr ""
1736
 
1770
  msgid "background"
1771
  msgstr ""
1772
 
1773
+ #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1774
+ #: settings.php:3356
1775
+ msgid "Alignment"
1776
  msgstr ""
1777
 
1778
  #: includes/preview.php:2143
1945
  msgstr ""
1946
 
1947
  #: settings.php:249
1948
+ msgid "Group name"
1949
+ msgstr ""
1950
+
1951
+ #: settings.php:250
1952
+ msgid "Option name"
1953
  msgstr ""
1954
 
1955
+ #: settings.php:256
1956
  msgid "Share"
1957
  msgstr ""
1958
 
1959
+ #: settings.php:259
1960
  msgid ""
1961
  "Option share in percents - 0 means option is disabled, if share for one "
1962
  "option is not defined it will be calculated automatically. Leave all share "
1963
  "fields empty for equal option shares."
1964
  msgstr ""
1965
 
1966
+ #: settings.php:262
1967
  msgid "Time"
1968
  msgstr ""
1969
 
1970
+ #: settings.php:265
1971
  msgid ""
1972
  "Option time in seconds - 0 means option is disabled and will be skipped. "
1973
  "Leave all time fields empty for no timed rotation."
1974
  msgstr ""
1975
 
1976
+ #: settings.php:417
1977
  msgid "General Settings"
1978
  msgstr ""
1979
 
1980
+ #: settings.php:592 settings.php:2283 settings.php:2341 settings.php:2504
1981
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
1982
  msgstr ""
1983
 
1984
+ #: settings.php:599
1985
  msgid "Toggle tools"
1986
  msgstr ""
1987
 
1988
+ #: settings.php:607
1989
  msgid "Process PHP code in block"
1990
  msgstr ""
1991
 
1992
+ #: settings.php:614
1993
  msgid "Disable insertion of this block"
1994
  msgstr ""
1995
 
1996
+ #: settings.php:626
1997
  msgid "Toggle code generator"
1998
  msgstr ""
1999
 
2000
+ #: settings.php:630
2001
  msgid "Toggle rotation editor"
2002
  msgstr ""
2003
 
2004
+ #: settings.php:634
2005
  msgid "Open visual HTML editor"
2006
  msgstr ""
2007
 
2008
+ #: settings.php:644
2009
  msgid "Show AdSense ad units"
2010
  msgstr ""
2011
 
2012
+ #: settings.php:653
2013
  msgid "Clear block"
2014
  msgstr ""
2015
 
2016
+ #: settings.php:658 settings.php:3324
2017
  msgid "Copy block"
2018
  msgstr ""
2019
 
2020
+ #: settings.php:662
2021
  msgid "Paste name"
2022
  msgstr ""
2023
 
2024
+ #: settings.php:666
2025
  msgid "Paste code"
2026
  msgstr ""
2027
 
2028
+ #: settings.php:670
2029
  msgid "Paste settings"
2030
  msgstr ""
2031
 
2032
+ #: settings.php:674
2033
  msgid "Paste block (name, code and settings)"
2034
  msgstr ""
2035
 
2036
+ #: settings.php:693
2037
+ msgid "Rotation groups"
2038
+ msgstr ""
2039
+
2040
+ #: settings.php:697
2041
  msgid "Remove option"
2042
  msgstr ""
2043
 
2044
+ #: settings.php:701
2045
  msgid "Add option"
2046
  msgstr ""
2047
 
2048
+ #: settings.php:716
2049
  msgid "Import code"
2050
  msgstr ""
2051
 
2052
+ #: settings.php:720
2053
  msgid "Generate code"
2054
  msgstr ""
2055
 
2056
+ #: settings.php:725
2057
  msgid "Banner"
2058
  msgstr ""
2059
 
2060
+ #: settings.php:736
2061
  msgid "Image"
2062
  msgstr ""
2063
 
2064
+ #: settings.php:744
2065
  msgid "Link"
2066
  msgstr ""
2067
 
2068
+ #: settings.php:755
2069
  msgid "Open link in a new tab"
2070
  msgstr ""
2071
 
2072
+ #: settings.php:756
2073
  msgid "Select Image"
2074
  msgstr ""
2075
 
2076
+ #: settings.php:757
2077
  msgid "Select Placeholder"
2078
  msgstr ""
2079
 
2080
+ #: settings.php:769
2081
  msgid "Comment"
2082
  msgstr ""
2083
 
2084
+ #: settings.php:778
2085
  msgctxt "AdSense"
2086
  msgid "Publisher ID"
2087
  msgstr ""
2088
 
2089
+ #: settings.php:787
2090
  msgctxt "AdSense"
2091
  msgid "Ad Slot ID"
2092
  msgstr ""
2093
 
2094
+ #: settings.php:796
2095
  msgid "Ad Type"
2096
  msgstr ""
2097
 
2098
+ #: settings.php:820
2099
  msgid "AMP Ad"
2100
  msgstr ""
2101
 
2102
+ #: settings.php:837
2103
  msgid "Show ad units from your AdSense account"
2104
  msgstr ""
2105
 
2106
+ #: settings.php:837
2107
  msgid "AdSense ad units"
2108
  msgstr ""
2109
 
2110
+ #: settings.php:854
2111
  msgctxt "AdSense"
2112
  msgid "Layout"
2113
  msgstr ""
2114
 
2115
+ #: settings.php:863
2116
  msgctxt "AdSense"
2117
  msgid "Layout Key"
2118
  msgstr ""
2119
 
2120
+ #: settings.php:950
2121
  msgid ""
2122
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2123
  "Cookie or Referer (domain)"
2124
  msgstr ""
2125
 
2126
+ #: settings.php:950
2127
  msgid "Lists"
2128
  msgstr ""
2129
 
2130
+ #: settings.php:951
2131
  msgid "Widget, Shortcode and PHP function call"
2132
  msgstr ""
2133
 
2134
+ #: settings.php:951
2135
  msgid "Manual"
2136
  msgstr ""
2137
 
2138
+ #: settings.php:952
2139
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2140
  msgstr ""
2141
 
2142
+ #: settings.php:952
2143
  msgid "Devices"
2144
  msgstr ""
2145
 
2146
+ #: settings.php:953
2147
  msgid ""
2148
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2149
  "feeds), Filter, Scheduling, General tag"
2150
  msgstr ""
2151
 
2152
+ #: settings.php:953
2153
  msgid "Misc"
2154
  msgstr ""
2155
 
2156
+ #: settings.php:954
2157
  msgid "Preview code and alignment"
2158
  msgstr ""
2159
 
2160
+ #: settings.php:957 settings.php:1961
2161
  msgid ""
2162
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2163
  "editor is active before saving settings."
2164
  msgstr ""
2165
 
2166
+ #: settings.php:959
2167
  msgid "Save All Settings"
2168
  msgstr ""
2169
 
2170
+ #: settings.php:970
2171
  msgid "Enable insertion on posts"
2172
  msgstr ""
2173
 
2174
+ #: settings.php:972 settings.php:978
2175
  msgid ""
2176
  "Individual post exceptions (if enabled here) can be configured in post "
2177
  "editor. Leave blank for no individual post exceptions."
2178
  msgstr ""
2179
 
2180
+ #: settings.php:978 settings.php:3007
2181
  msgid "Posts"
2182
  msgstr ""
2183
 
2184
+ #: settings.php:982 settings.php:983
2185
  msgid ""
2186
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2187
  "page or theme homepage (available positions may depend on hooks used by the "
2188
  "theme)"
2189
  msgstr ""
2190
 
2191
+ #: settings.php:983 settings.php:3009
2192
  msgid "Homepage"
2193
  msgstr ""
2194
 
2195
+ #: settings.php:987 settings.php:988
2196
  msgid "Enable insertion on category blog pages (including sub-pages)"
2197
  msgstr ""
2198
 
2199
+ #: settings.php:988 settings.php:3010
2200
  msgid "Category pages"
2201
  msgstr ""
2202
 
2203
+ #: settings.php:991
2204
  msgid "Check theme for available positions for automatic insertion"
2205
  msgstr ""
2206
 
2207
+ #: settings.php:998
2208
  msgid "Enable insertion on static pages"
2209
  msgstr ""
2210
 
2211
+ #: settings.php:1000 settings.php:1006
2212
  msgid ""
2213
  "Individual static page exceptions (if enabled here) can be configured in "
2214
  "page editor. Leave blank for no individual page exceptions."
2215
  msgstr ""
2216
 
2217
+ #: settings.php:1006 settings.php:3008
2218
  msgid "Static pages"
2219
  msgstr ""
2220
 
2221
+ #: settings.php:1010 settings.php:1011
2222
  msgid "Enable insertion on search blog pages"
2223
  msgstr ""
2224
 
2225
+ #: settings.php:1011 settings.php:3012
2226
  msgid "Search pages"
2227
  msgstr ""
2228
 
2229
+ #: settings.php:1015 settings.php:1016
2230
  msgid "Enable insertion on tag or archive blog pages"
2231
  msgstr ""
2232
 
2233
+ #: settings.php:1016
2234
  msgid "Tag / Archive pages"
2235
  msgstr ""
2236
 
2237
+ #: settings.php:1022
2238
  msgid "Toggle list of individual exceptions"
2239
  msgstr ""
2240
 
2241
+ #: settings.php:1038
2242
  msgctxt "post"
2243
  msgid "Type"
2244
  msgstr ""
2245
 
2246
  #. translators: %d: block number
2247
+ #: settings.php:1040
2248
  msgid "Are you sure you want to clear all exceptions for block %d?"
2249
  msgstr ""
2250
 
2251
+ #: settings.php:1072 settings.php:1220 settings.php:1754
2252
  msgid "Insertion"
2253
  msgstr ""
2254
 
2255
+ #: settings.php:1110
2256
  msgid ""
2257
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2258
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2262
  "negative number means counting from the opposite direction"
2263
  msgstr ""
2264
 
2265
+ #: settings.php:1111
2266
  msgid ""
2267
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2268
  "means every N images, empty means all images, 0 means random image, value "
2272
  "direction"
2273
  msgstr ""
2274
 
2275
+ #: settings.php:1124
2276
  msgid ""
2277
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2278
  "numbers, %N means every N excerpts, empty means all excerpts"
2279
  msgstr ""
2280
 
2281
+ #: settings.php:1125
2282
  msgid ""
2283
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2284
  "numbers, %N means every N posts, empty means all posts"
2285
  msgstr ""
2286
 
2287
+ #: settings.php:1126
2288
  msgid ""
2289
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2290
  "numbers, %N means every N comments, empty means all comments"
2291
  msgstr ""
2292
 
2293
+ #: settings.php:1133
2294
  msgid "Toggle paragraph counting settings"
2295
  msgstr ""
2296
 
2297
+ #: settings.php:1134
2298
  msgid "Toggle paragraph clearance settings"
2299
  msgstr ""
2300
 
2301
+ #: settings.php:1137
2302
  msgid "Toggle insertion filter settings"
2303
  msgstr ""
2304
 
2305
+ #: settings.php:1155
 
 
 
 
2306
  msgid "Toggle insertion and alignment icons"
2307
  msgstr ""
2308
 
2309
+ #: settings.php:1169
2310
  msgid "Custom CSS code for the wrapping div"
2311
  msgstr ""
2312
 
2313
+ #: settings.php:1172 settings.php:1173 settings.php:1174 settings.php:1175
2314
+ #: settings.php:1176 settings.php:1177
2315
  msgid "CSS code for the wrapping div, click to edit"
2316
  msgstr ""
2317
 
2318
+ #: settings.php:1190
2319
  msgid "HTML element"
2320
  msgstr ""
2321
 
2322
+ #: settings.php:1203
2323
  msgid "HTML element selector or comma separated list of selectors"
2324
  msgstr ""
2325
 
2326
+ #: settings.php:1209 settings.php:2417
2327
  msgid "Action"
2328
  msgstr ""
2329
 
2330
+ #: settings.php:1221
2331
  msgid ""
2332
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2333
  "Server-side insertion inserts block when the page is generated but needs "
2334
  "Output buffering enabled."
2335
  msgstr ""
2336
 
2337
+ #: settings.php:1231
2338
  msgid "JavaScript code position"
2339
  msgstr ""
2340
 
2341
+ #: settings.php:1232
2342
  msgid ""
2343
  "Page position where the JavaScript code for client-side insertion will be "
2344
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2345
  msgstr ""
2346
 
2347
+ #: settings.php:1247
2348
  msgid "Count"
2349
  msgstr ""
2350
 
2351
+ #: settings.php:1253
2352
  msgid "paragraphs with tags"
2353
  msgstr ""
2354
 
2355
+ #: settings.php:1259
2356
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2357
  msgstr ""
2358
 
2359
+ #: settings.php:1268
2360
  msgid "that have between"
2361
  msgstr ""
2362
 
2363
+ #: settings.php:1274
2364
  msgid "Minimum number of paragraph words, leave empty for no limit"
2365
  msgstr ""
2366
 
2367
+ #: settings.php:1283
2368
  msgid "Maximum number of paragraph words, leave empty for no limit"
2369
  msgstr ""
2370
 
2371
+ #: settings.php:1286 settings.php:1881
2372
  msgid "words"
2373
  msgstr ""
2374
 
2375
+ #: settings.php:1301 settings.php:1367 settings.php:1393
2376
  msgid "Comma separated texts"
2377
  msgstr ""
2378
 
2379
+ #: settings.php:1310
2380
  msgid "Minimum number of paragraphs"
2381
  msgstr ""
2382
 
2383
  #. translators: %s: list of HTML tags
2384
+ #: settings.php:1325
2385
  msgid ""
2386
  "Count also paragraphs inside %s elements - defined on general plugin "
2387
  "settings page - tab &#9881; / tab General"
2388
  msgstr ""
2389
 
2390
+ #: settings.php:1325
2391
  msgid "Count inside special elements"
2392
  msgstr ""
2393
 
2394
+ #: settings.php:1336
2395
  msgid "Minimum number of words in paragraphs above"
2396
  msgstr ""
2397
 
2398
+ #: settings.php:1342
2399
  msgid ""
2400
  "Used only with automatic insertion After paragraph and empty paragraph "
2401
  "numbers"
2402
  msgstr ""
2403
 
2404
+ #: settings.php:1352 settings.php:1378
2405
  msgid "In"
2406
  msgstr ""
2407
 
2408
+ #: settings.php:1358
2409
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2410
  msgstr ""
2411
 
2412
+ #: settings.php:1361
2413
  msgid "paragraphs above avoid"
2414
  msgstr ""
2415
 
2416
+ #: settings.php:1384
2417
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2418
  msgstr ""
2419
 
2420
+ #: settings.php:1387
2421
  msgid "paragraphs below avoid"
2422
  msgstr ""
2423
 
2424
+ #: settings.php:1403
2425
  msgid "If text is found"
2426
  msgstr ""
2427
 
2428
+ #: settings.php:1410
2429
  msgid "check up to"
2430
  msgstr ""
2431
 
2432
+ #: settings.php:1418
2433
  msgctxt "check up to"
2434
  msgid "paragraphs"
2435
  msgstr ""
2436
 
2437
+ #: settings.php:1434
2438
  msgid "Categories"
2439
  msgstr ""
2440
 
2441
+ #: settings.php:1437
2442
  msgid "Toggle category editor"
2443
  msgstr ""
2444
 
2445
+ #: settings.php:1440
2446
  msgid "Comma separated category slugs"
2447
  msgstr ""
2448
 
2449
+ #: settings.php:1444
2450
  msgid "Blacklist categories"
2451
  msgstr ""
2452
 
2453
+ #: settings.php:1448
2454
  msgid "Whitelist categories"
2455
  msgstr ""
2456
 
2457
+ #: settings.php:1460
2458
  msgid "Tags"
2459
  msgstr ""
2460
 
2461
+ #: settings.php:1463
2462
  msgid "Toggle tag editor"
2463
  msgstr ""
2464
 
2465
+ #: settings.php:1466
2466
  msgid "Comma separated tag slugs"
2467
  msgstr ""
2468
 
2469
+ #: settings.php:1470
2470
  msgid "Blacklist tags"
2471
  msgstr ""
2472
 
2473
+ #: settings.php:1474
2474
  msgid "Whitelist tags"
2475
  msgstr ""
2476
 
2477
+ #: settings.php:1486
2478
  msgid "Taxonomies"
2479
  msgstr ""
2480
 
2481
+ #: settings.php:1489
2482
  msgid "Toggle taxonomy editor"
2483
  msgstr ""
2484
 
2485
+ #: settings.php:1492
2486
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2487
  msgstr ""
2488
 
2489
+ #: settings.php:1496
2490
  msgid "Blacklist taxonomies"
2491
  msgstr ""
2492
 
2493
+ #: settings.php:1500
2494
  msgid "Whitelist taxonomies"
2495
  msgstr ""
2496
 
2497
+ #: settings.php:1512
2498
  msgid "Post IDs"
2499
  msgstr ""
2500
 
2501
+ #: settings.php:1515
2502
  msgid "Toggle post/page ID editor"
2503
  msgstr ""
2504
 
2505
+ #: settings.php:1518
2506
  msgid "Comma separated post/page IDs"
2507
  msgstr ""
2508
 
2509
+ #: settings.php:1522
2510
  msgid "Blacklist IDs"
2511
  msgstr ""
2512
 
2513
+ #: settings.php:1526
2514
  msgid "Whitelist IDs"
2515
  msgstr ""
2516
 
2517
+ #: settings.php:1538
2518
  msgid "Urls"
2519
  msgstr ""
2520
 
2521
+ #: settings.php:1541
2522
  msgid "Toggle url editor"
2523
  msgstr ""
2524
 
2525
+ #: settings.php:1544
2526
  msgid ""
2527
  "Comma separated urls (page addresses) starting with / after domain name (e."
2528
  "g. /permalink-url, use only when you need to taget a specific url not "
2530
  "start*. *url-pattern*, *url-end)"
2531
  msgstr ""
2532
 
2533
+ #: settings.php:1548
2534
  msgid "Blacklist urls"
2535
  msgstr ""
2536
 
2537
+ #: settings.php:1552
2538
  msgid "Whitelist urls"
2539
  msgstr ""
2540
 
2541
+ #: settings.php:1563
2542
  msgid "Url parameters"
2543
  msgstr ""
2544
 
2545
+ #: settings.php:1567
2546
  msgid "Toggle url parameter and cookie editor"
2547
  msgstr ""
2548
 
2549
+ #: settings.php:1570
2550
  msgid ""
2551
  "Comma separated url query parameters or cookies with optional values (use "
2552
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2553
  msgstr ""
2554
 
2555
+ #: settings.php:1574
2556
  msgid "Blacklist url parameters"
2557
  msgstr ""
2558
 
2559
+ #: settings.php:1578
2560
  msgid "Whitelist url parameters"
2561
  msgstr ""
2562
 
2563
+ #: settings.php:1589
2564
  msgid "Referrers"
2565
  msgstr ""
2566
 
2567
+ #: settings.php:1592
2568
  msgid "Toggle referer editor"
2569
  msgstr ""
2570
 
2571
+ #: settings.php:1595
2572
  msgid ""
2573
  "Comma separated domains, use # for no referrer, you can also use partial "
2574
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2575
  msgstr ""
2576
 
2577
+ #: settings.php:1599
2578
  msgid "Blacklist referers"
2579
  msgstr ""
2580
 
2581
+ #: settings.php:1603
2582
  msgid "Whitelist referers"
2583
  msgstr ""
2584
 
2585
+ #: settings.php:1623
2586
  msgid "Enable widget for this block"
2587
  msgstr ""
2588
 
2589
+ #: settings.php:1635
2590
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2591
  msgstr ""
2592
 
2593
+ #: settings.php:1636 settings.php:3358
2594
  msgid "Shortcode"
2595
  msgstr ""
2596
 
2597
+ #: settings.php:1651
2598
  msgid ""
2599
  "Enable PHP function call to insert this block at any position in theme file. "
2600
  "If function is disabled for block it will return empty string."
2601
  msgstr ""
2602
 
2603
+ #: settings.php:1652
2604
  msgid "PHP function"
2605
  msgstr ""
2606
 
2607
+ #: settings.php:1667
2608
  msgid "Client-side device detection"
2609
  msgstr ""
2610
 
2611
+ #: settings.php:1668
2612
  msgid "Server-side device detection"
2613
  msgstr ""
2614
 
2615
+ #: settings.php:1675
2616
  msgid "Use client-side detection to"
2617
  msgstr ""
2618
 
2619
+ #: settings.php:1677
2620
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
2621
  msgstr ""
2622
 
2623
  #. Translators: only on (the following devices): viewport names (devices)
2624
  #. listed
2625
+ #: settings.php:1682
2626
  msgid "only on"
2627
  msgstr ""
2628
 
2629
+ #: settings.php:1710
2630
  msgid "Device min width %s px"
2631
  msgstr ""
2632
 
2633
+ #: settings.php:1736
2634
  msgid "Use server-side detection to insert block only for"
2635
  msgstr ""
2636
 
2637
+ #: settings.php:1755
2638
  msgid "Filter"
2639
  msgstr ""
2640
 
2641
+ #: settings.php:1756
2642
  msgid "Word Count"
2643
  msgstr ""
2644
 
2645
+ #: settings.php:1757
2646
  msgid "Scheduling"
2647
  msgstr ""
2648
 
2649
+ #: settings.php:1758
2650
  msgid "Display"
2651
  msgstr ""
2652
 
2653
+ #: settings.php:1760 settings.php:1989
2654
  msgid "General"
2655
  msgstr ""
2656
 
2657
+ #: settings.php:1772
2658
  msgid "Old settings for AMP pages detected"
2659
  msgstr ""
2660
 
2661
+ #: settings.php:1772
2662
  msgid ""
2663
  "To insert different codes on normal and AMP pages separate them with "
2664
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
2665
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
2666
  msgstr ""
2667
 
2668
+ #: settings.php:1772
2669
  msgid "AMP pages"
2670
  msgstr ""
2671
 
2672
+ #: settings.php:1777
2673
  msgid "Enable insertion for Ajax requests"
2674
  msgstr ""
2675
 
2676
+ #: settings.php:1777
2677
  msgid "Ajax requests"
2678
  msgstr ""
2679
 
2680
+ #: settings.php:1782
2681
  msgid "Enable insertion in RSS feeds"
2682
  msgstr ""
2683
 
2684
+ #: settings.php:1782
2685
  msgid "RSS Feed"
2686
  msgstr ""
2687
 
2688
+ #: settings.php:1787
2689
  msgid "Enable insertion on page for Error 404: Page not found"
2690
  msgstr ""
2691
 
2692
+ #: settings.php:1787
2693
  msgid "Error 404 page"
2694
  msgstr ""
2695
 
2696
+ #: settings.php:1799
2697
  msgid "Maximum number of insertion of this block. Empty or 0 means no limit."
2698
  msgstr ""
2699
 
2700
+ #: settings.php:1800
2701
  msgid "Max"
2702
  msgstr ""
2703
 
2704
+ #: settings.php:1800
2705
  msgid "insertions"
2706
  msgstr ""
2707
 
2708
+ #: settings.php:1802
2709
  msgid ""
2710
  "Count this block for Max blocks per page limit (defined on the tab &#9881; / "
2711
  "tab General)"
2712
  msgstr ""
2713
 
2714
+ #: settings.php:1805 settings.php:2147
2715
  msgid "Max blocks per page"
2716
  msgstr ""
2717
 
2718
+ #: settings.php:1817
2719
  msgid "Insert for"
2720
  msgstr ""
2721
 
2722
+ #: settings.php:1825
2723
  msgid ""
2724
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
2725
  "currently active). Might speed up insertion on content pages when "
2726
  "the_content filter is called multiple times."
2727
  msgstr ""
2728
 
2729
+ #: settings.php:1828
2730
  msgid "Insert only in the loop"
2731
  msgstr ""
2732
 
2733
+ #: settings.php:1834
2734
  msgid ""
2735
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
2736
  msgstr ""
2737
 
2738
+ #: settings.php:1834
2739
  msgid "Disable caching"
2740
  msgstr ""
2741
 
2742
+ #: settings.php:1846
2743
  msgid "Filter insertions"
2744
  msgstr ""
2745
 
2746
+ #: settings.php:1849
2747
  msgid ""
2748
  "Filter multiple insertions by specifying wanted insertions for this block - "
2749
  "single number, comma separated numbers or %N for every N insertions - empty "
2751
  "using only one insertion type."
2752
  msgstr ""
2753
 
2754
+ #: settings.php:1852
2755
  msgid "using"
2756
  msgstr ""
2757
 
2758
+ #: settings.php:1871
2759
  msgid "Checked means specified calls are unwanted"
2760
  msgstr ""
2761
 
2762
+ #: settings.php:1871
2763
  msgid "Invert filter"
2764
  msgstr ""
2765
 
2766
+ #: settings.php:1877
2767
  msgid "Post/Static page must have between"
2768
  msgstr ""
2769
 
2770
+ #: settings.php:1878
2771
  msgid "Minimum number of post/static page words, leave empty for no limit"
2772
  msgstr ""
2773
 
2774
+ #: settings.php:1880
2775
  msgid "Maximum number of post/static page words, leave empty for no limit"
2776
  msgstr ""
2777
 
2778
+ #: settings.php:1893
2779
  msgid "days after publishing"
2780
  msgstr ""
2781
 
2782
+ #: settings.php:1895
2783
  msgid "Not available"
2784
  msgstr ""
2785
 
2786
+ #: settings.php:1908 settings.php:2139
2787
  msgid "Ad label"
2788
  msgstr ""
2789
 
2790
+ #: settings.php:1927
2791
  msgid "General tag"
2792
  msgstr ""
2793
 
2794
+ #: settings.php:1931
2795
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
2796
  msgstr ""
2797
 
2798
  #. translators: %s: HTML tags
2799
+ #: settings.php:1940
2800
  msgid ""
2801
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
2802
  "side device detection!"
2803
  msgstr ""
2804
 
2805
+ #: settings.php:1952
2806
  msgid "Settings"
2807
  msgstr ""
2808
 
2809
+ #: settings.php:1955
2810
  msgid "Settings timestamp"
2811
  msgstr ""
2812
 
2813
+ #: settings.php:1967
2814
  msgid "Are you sure you want to reset all settings?"
2815
  msgstr ""
2816
 
2817
+ #: settings.php:1967
2818
  msgid "Reset All Settings"
2819
  msgstr ""
2820
 
2821
+ #: settings.php:1990
2822
  msgid "Viewports"
2823
  msgstr ""
2824
 
2825
+ #: settings.php:1991
2826
  msgid "Hooks"
2827
  msgstr ""
2828
 
2829
+ #: settings.php:1992
2830
  msgid "Header"
2831
  msgstr ""
2832
 
2833
+ #: settings.php:1993 strings.php:30
2834
  msgid "Footer"
2835
  msgstr ""
2836
 
2837
+ #: settings.php:1998
2838
  msgid "Debugging"
2839
  msgstr ""
2840
 
2841
+ #: settings.php:2008
2842
  msgid "Plugin priority"
2843
  msgstr ""
2844
 
2845
+ #: settings.php:2016
2846
  msgid "Output buffering"
2847
  msgstr ""
2848
 
2849
+ #: settings.php:2019
2850
  msgid "Needed for position Above header but may not work with all themes"
2851
  msgstr ""
2852
 
2853
+ #: settings.php:2027
2854
  msgid "Syntax highlighting theme"
2855
  msgstr ""
2856
 
2857
+ #: settings.php:2034
2858
  msgctxt "no syntax highlighting themes"
2859
  msgid "None"
2860
  msgstr ""
2861
 
2862
+ #: settings.php:2035
2863
  msgid "No Syntax Highlighting"
2864
  msgstr ""
2865
 
2866
+ #: settings.php:2037
2867
  msgctxt "syntax highlighting themes"
2868
  msgid "Light"
2869
  msgstr ""
2870
 
2871
+ #: settings.php:2052
2872
  msgctxt "syntax highlighting themes"
2873
  msgid "Dark"
2874
  msgstr ""
2875
 
2876
+ #: settings.php:2078
2877
  msgid "Min. user role for ind. exceptions editing"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:2088
2881
  msgid "Sticky widget mode"
2882
  msgstr ""
2883
 
2884
+ #: settings.php:2091
2885
  msgid ""
2886
  "CSS mode is the best approach but may not work with all themes. JavaScript "
2887
  "mode works with most themes but may reload ads on page load."
2888
  msgstr ""
2889
 
2890
+ #: settings.php:2099
2891
  msgid "Sticky widget top margin"
2892
  msgstr ""
2893
 
2894
+ #: settings.php:2107
2895
  msgid "Dynamic blocks"
2896
  msgstr ""
2897
 
2898
+ #: settings.php:2120
2899
  msgid "Functions for paragraph counting"
2900
  msgstr ""
2901
 
2902
+ #: settings.php:2123
2903
  msgid ""
2904
  "Standard PHP functions are faster and work in most cases, use Multibyte "
2905
  "functions if paragraphs are not counted properly on non-english pages."
2906
  msgstr ""
2907
 
2908
+ #: settings.php:2131
2909
  msgid "No paragraph counting inside"
2910
  msgstr ""
2911
 
2912
+ #: settings.php:2142
2913
  msgid "Label text or HTML code"
2914
  msgstr ""
2915
 
2916
+ #: settings.php:2150
2917
  msgid ""
2918
  "Maximum number of inserted blocks per page. You need to enable Max page "
2919
  "insertions (button Misc / tab Insertion) to count block for this limit."
2920
  msgstr ""
2921
 
2922
+ #: settings.php:2164
2923
  msgid "Plugin usage tracking"
2924
  msgstr ""
2925
 
2926
  #. translators: %s: Ad Inserter
2927
+ #: settings.php:2167
2928
  msgid ""
2929
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
2930
  "Only information regarding the WordPress environment and %s usage is "
2931
  "recorded (once per month and on events like plugin activation/deactivation)."
2932
  msgstr ""
2933
 
2934
+ #: settings.php:2185
2935
  msgid "CSS class name for the wrapping div"
2936
  msgstr ""
2937
 
2938
+ #: settings.php:2185
2939
  msgid "Block class name"
2940
  msgstr ""
2941
 
2942
+ #: settings.php:2189
2943
  msgid "Include general plugin block class"
2944
  msgstr ""
2945
 
2946
+ #: settings.php:2189
2947
  msgid "Block class"
2948
  msgstr ""
2949
 
2950
+ #: settings.php:2194
2951
  msgid "Include block number class"
2952
  msgstr ""
2953
 
2954
+ #: settings.php:2194
2955
  msgid "Block number class"
2956
  msgstr ""
2957
 
2958
+ #: settings.php:2199
2959
  msgid ""
2960
  "Instead of alignment classes generate inline alignment styles for blocks"
2961
  msgstr ""
2962
 
2963
+ #: settings.php:2199
2964
  msgid "Inline styles"
2965
  msgstr ""
2966
 
2967
+ #: settings.php:2205
2968
  msgid "Preview of the block wrapping code"
2969
  msgstr ""
2970
 
2971
+ #: settings.php:2206
2972
  msgid "Wrapping div"
2973
  msgstr ""
2974
 
2975
+ #: settings.php:2207 settings.php:2607
2976
  msgid "BLOCK CODE"
2977
  msgstr ""
2978
 
2979
+ #: settings.php:2215
2980
  msgid "Viewport Settings used for client-side device detection"
2981
  msgstr ""
2982
 
2983
  #. Translators: %d: viewport number
2984
+ #: settings.php:2223
2985
  msgid "Viewport %d name"
2986
  msgstr ""
2987
 
2988
+ #: settings.php:2226
2989
  msgid "min width"
2990
  msgstr ""
2991
 
2992
+ #: settings.php:2237
2993
  msgid "Custom Hooks"
2994
  msgstr ""
2995
 
2996
+ #: settings.php:2249 settings.php:2252
2997
  msgid "Enable hook"
2998
  msgstr ""
2999
 
3000
  #. translators: %d: hook number
3001
+ #: settings.php:2252
3002
  msgid "Hook %d name"
3003
  msgstr ""
3004
 
3005
+ #: settings.php:2255
3006
  msgid "Hook name for automatic insertion selection"
3007
  msgstr ""
3008
 
3009
+ #: settings.php:2258
3010
  msgid "action"
3011
  msgstr ""
3012
 
3013
+ #: settings.php:2261
3014
  msgid "Action name as used in the do_action () function"
3015
  msgstr ""
3016
 
3017
+ #: settings.php:2264
3018
  msgid "priority"
3019
  msgstr ""
3020
 
3021
+ #: settings.php:2267
3022
  msgid "Priority for the hook (default is 10)"
3023
  msgstr ""
3024
 
3025
+ #: settings.php:2288
3026
  msgid "Enable insertion of this code into HTML page header"
3027
  msgstr ""
3028
 
3029
+ #: settings.php:2292 settings.php:2350 settings.php:2509
3030
  msgid "Process PHP code"
3031
  msgstr ""
3032
 
3033
+ #: settings.php:2296
3034
  msgid "HTML Page Header Code"
3035
  msgstr ""
3036
 
3037
+ #: settings.php:2304
3038
  msgid "Code in the %s section of the HTML page"
3039
  msgstr ""
3040
 
3041
+ #: settings.php:2305 settings.php:2363
3042
  msgctxt "code in header or footer"
3043
  msgid "DISABLED"
3044
  msgstr ""
3045
 
3046
+ #: settings.php:2318 settings.php:2376
3047
  msgid "Use server-side detection to insert code only for"
3048
  msgstr ""
3049
 
3050
+ #: settings.php:2331
3051
  msgid ""
3052
  "Enable insertion of this code into HTML page header on page for Error 404: "
3053
  "Page not found"
3054
  msgstr ""
3055
 
3056
+ #: settings.php:2331 settings.php:2389
3057
  msgid "Insert on Error 404 page"
3058
  msgstr ""
3059
 
3060
+ #: settings.php:2346
3061
  msgid "Enable insertion of this code into HTML page footer"
3062
  msgstr ""
3063
 
3064
+ #: settings.php:2354
3065
  msgid "HTML Page Footer Code"
3066
  msgstr ""
3067
 
3068
  #. translators: %s: HTML tags
3069
+ #: settings.php:2362
3070
  msgid "Code before the %s tag of the the HTML page"
3071
  msgstr ""
3072
 
3073
+ #: settings.php:2389
3074
  msgid ""
3075
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3076
  "Page not found"
3077
  msgstr ""
3078
 
3079
+ #: settings.php:2403
3080
  msgid "Enable detection of ad blocking"
3081
  msgstr ""
3082
 
3083
+ #: settings.php:2420
3084
  msgid "Global action when ad blocking is detected"
3085
  msgstr ""
3086
 
3087
+ #: settings.php:2429
3088
  msgid "Delay Action"
3089
  msgstr ""
3090
 
3091
+ #: settings.php:2432
3092
  msgid ""
3093
  "Number of page views to delay action when ad blocking is detected. Leave "
3094
  "empty for no delay (action fires on first page view). Sets cookie."
3095
  msgstr ""
3096
 
3097
+ #: settings.php:2432
3098
  msgctxt "Delay Action for x "
3099
  msgid "page views"
3100
  msgstr ""
3101
 
3102
+ #: settings.php:2437
3103
  msgid "No Action Period"
3104
  msgstr ""
3105
 
3106
+ #: settings.php:2440
3107
  msgid ""
3108
  "Number of days to supress action when ad blocking is detected. Leave empty "
3109
  "for no no-action period (action fires always after defined page view delay). "
3110
  "Sets cookie."
3111
  msgstr ""
3112
 
3113
+ #: settings.php:2440
3114
  msgctxt "no action period"
3115
  msgid "days"
3116
  msgstr ""
3117
 
3118
+ #: settings.php:2445
3119
  msgid "Custom Selectors"
3120
  msgstr ""
3121
 
3122
+ #: settings.php:2448
3123
  msgid ""
3124
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3125
  "blocking detection. Invisible element or element with zero height means ad "
3126
  "blocking is present."
3127
  msgstr ""
3128
 
3129
+ #: settings.php:2460
3130
  msgid "Redirection Page"
3131
  msgstr ""
3132
 
3133
+ #: settings.php:2472
3134
  msgid "Custom Url"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:2477
3138
  msgid ""
3139
  "Static page for redirection when ad blocking is detected. For other pages "
3140
  "select Custom url and set it below."
3141
  msgstr ""
3142
 
3143
+ #: settings.php:2486
3144
  msgid "Custom Redirection Url"
3145
  msgstr ""
3146
 
3147
+ #: settings.php:2498
3148
  msgid "Message HTML code"
3149
  msgstr ""
3150
 
3151
+ #: settings.php:2511
3152
  msgid "Preview message when ad blocking is detected"
3153
  msgstr ""
3154
 
3155
+ #: settings.php:2540
3156
  msgid "Prevent visitors from closing the warning message"
3157
  msgstr ""
3158
 
3159
+ #: settings.php:2540
3160
  msgid "Undismissible Message"
3161
  msgstr ""
3162
 
3163
+ #: settings.php:2553
3164
  msgid ""
3165
  "Force showing admin toolbar for administrators when viewing site. Enable "
3166
  "this option when you are logged in as admin and you don't see admin toolbar."
3167
  msgstr ""
3168
 
3169
+ #: settings.php:2561
3170
  msgid "Disable header code (Header tab)"
3171
  msgstr ""
3172
 
3173
+ #: settings.php:2565
3174
  msgid "Disable footer code (Footer tab)"
3175
  msgstr ""
3176
 
3177
  #. translators: %s: Ad Inserter
3178
+ #: settings.php:2569
3179
  msgid "Disable %s JavaScript code"
3180
  msgstr ""
3181
 
3182
  #. translators: %s: Ad Inserter
3183
+ #: settings.php:2573
3184
  msgid "Disable %s CSS code"
3185
  msgstr ""
3186
 
3187
+ #: settings.php:2577
3188
  msgid ""
3189
  "Disable PHP code processing (in all blocks including header and footer code)"
3190
  msgstr ""
3191
 
3192
+ #: settings.php:2581
3193
  msgid "Disable insertion of all blocks"
3194
  msgstr ""
3195
 
3196
+ #: settings.php:2585
3197
  msgid "Disable insertions"
3198
  msgstr ""
3199
 
3200
  #. translators: %s: Ad Inserter
3201
+ #: settings.php:2597
3202
  msgid "%s CSS CODE"
3203
  msgstr ""
3204
 
3205
+ #: settings.php:2600
3206
  msgid "HEADER CODE"
3207
  msgstr ""
3208
 
3209
  #. translators: %s: PHP tags
3210
+ #: settings.php:2606
3211
  msgid "BLOCK PHP CODE"
3212
  msgstr ""
3213
 
3214
  #. translators: %s: Ad Inserter
3215
+ #: settings.php:2612
3216
  msgid "%s JS CODE"
3217
  msgstr ""
3218
 
3219
+ #: settings.php:2615
3220
  msgid "FOOTER CODE"
3221
  msgstr ""
3222
 
3223
+ #: settings.php:2624
3224
  msgid "Force showing admin toolbar when viewing site"
3225
  msgstr ""
3226
 
3227
+ #: settings.php:2631
3228
  msgid "Enable debugging functions in admin toolbar"
3229
  msgstr ""
3230
 
3231
+ #: settings.php:2633
3232
  msgid "Debugging functions in admin toolbar"
3233
  msgstr ""
3234
 
3235
+ #: settings.php:2640
3236
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3237
  msgstr ""
3238
 
3239
+ #: settings.php:2642
3240
  msgid "Debugging functions on mobile screens"
3241
  msgstr ""
3242
 
3243
+ #: settings.php:2649
3244
  msgid ""
3245
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3246
  "tags, processing) by url parameters for non-logged in users. Enable this "
3249
  "administrators debugging is always enabled."
3250
  msgstr ""
3251
 
3252
+ #: settings.php:2651
3253
  msgid "Remote debugging"
3254
  msgstr ""
3255
 
3256
+ #: settings.php:2658
3257
  msgid ""
3258
  "Disable translation to see original texts for the settings and messages in "
3259
  "English"
3260
  msgstr ""
3261
 
3262
+ #: settings.php:2660
3263
  msgid "Disable translation"
3264
  msgstr ""
3265
 
3266
+ #: settings.php:2995
3267
  msgid "Available positions for current theme"
3268
  msgstr ""
3269
 
3270
+ #: settings.php:2996
3271
  msgid "Error checking pages"
3272
  msgstr ""
3273
 
3274
+ #: settings.php:2999
3275
  msgid "Toggle theme checker for available positions for automatic insertion"
3276
  msgstr ""
3277
 
3278
+ #: settings.php:2999
3279
  msgctxt "Button"
3280
  msgid "Check"
3281
  msgstr ""
3282
 
3283
+ #: settings.php:3006
3284
  msgid "Position"
3285
  msgstr ""
3286
 
3287
+ #: settings.php:3011
3288
  msgid "Archive pages"
3289
  msgstr ""
3290
 
3291
+ #: settings.php:3070
3292
  msgid ""
3293
  "Position not available because output buffering (tab [*]) is not enabled"
3294
  msgstr ""
3295
 
3296
+ #: settings.php:3073 strings.php:217
3297
  msgid "Position not checked yet"
3298
  msgstr ""
3299
 
3300
+ #: settings.php:3104
3301
  msgid "Toggle active/all blocks"
3302
  msgstr ""
3303
 
3304
+ #: settings.php:3108 strings.php:204
3305
  msgid "Rearrange block order"
3306
  msgstr ""
3307
 
3308
+ #: settings.php:3113
3309
  msgid "Save new block order"
3310
  msgstr ""
3311
 
3312
+ #: settings.php:3113
3313
  msgid "Save Changes"
3314
  msgstr ""
3315
 
3316
+ #: settings.php:3138
3317
  msgid "Toggle active/all ad units"
3318
  msgstr ""
3319
 
3320
+ #: settings.php:3142
3321
  msgid "Reload AdSense ad units"
3322
  msgstr ""
3323
 
3324
+ #: settings.php:3146
3325
  msgid "Clear authorization to access AdSense account"
3326
  msgstr ""
3327
 
3328
+ #: settings.php:3150 settings.php:3515 settings.php:3582 strings.php:212
3329
  msgid "Google AdSense Homepage"
3330
  msgstr ""
3331
 
3332
+ #: settings.php:3327
3333
  msgid "Preview block"
3334
  msgstr ""
3335
 
3336
+ #: settings.php:3336
3337
  msgid "Insertion disabled"
3338
  msgstr ""
3339
 
3340
+ #: settings.php:3360
3341
  msgid "Widget positions"
3342
  msgstr ""
3343
 
3344
+ #: settings.php:3426
3345
  msgid "Ad unit"
3346
  msgstr ""
3347
 
3348
+ #: settings.php:3428
3349
  msgid "Slot ID"
3350
  msgstr ""
3351
 
3352
+ #: settings.php:3454
3353
  msgid "Copy AdSense code"
3354
  msgstr ""
3355
 
3356
+ #: settings.php:3457
3357
  msgid "Preview AdSense ad"
3358
  msgstr ""
3359
 
3360
+ #: settings.php:3460
3361
  msgid "Get AdSense code"
3362
  msgstr ""
3363
 
3364
  #. translators: %s: HTML tags
3365
+ #: settings.php:3492
3366
  msgid ""
3367
  "Please %s clear authorization %s with the button %s above and once again "
3368
  "authorize access to your AdSense account."
3369
  msgstr ""
3370
 
3371
+ #: settings.php:3511
3372
  msgid "AdSense Integration"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:3513
3376
  msgid "AdSense Integration - Step 2"
3377
  msgstr ""
3378
 
3379
  #. translators: %s: HTML tags
3380
+ #: settings.php:3519
3381
  msgid ""
3382
  "Authorize %s to access your AdSense account. Click on the %s Get "
3383
  "Authorization Code %s button to open a new window where you can allow "
3386
  msgstr ""
3387
 
3388
  #. translators: %s: HTML tags
3389
+ #: settings.php:3526
3390
  msgid ""
3391
  "If you get error, can't access ad units or would like to use own Google API "
3392
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3394
  msgstr ""
3395
 
3396
  #. translators: %s: HTML tags
3397
+ #: settings.php:3528
3398
  msgid ""
3399
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3400
  "Authorization Code %s button to open a new window where you can allow "
3403
  msgstr ""
3404
 
3405
  #. translators: %s: HTML tags
3406
+ #: settings.php:3535
3407
  msgid ""
3408
  "If you get error %s invalid client %s click on the button %s Clear and "
3409
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3410
  msgstr ""
3411
 
3412
+ #: settings.php:3546
3413
  msgid "Get Authorization Code"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:3549
3417
  msgid "Enter Authorization Code"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:3559
3421
  msgid "Use own API IDs"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:3561
3425
  msgid "Clear and return to Step 1"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:3565
3429
  msgid "Authorize"
3430
  msgstr ""
3431
 
3432
+ #: settings.php:3581
3433
  msgid "AdSense Integration - Step 1"
3434
  msgstr ""
3435
 
3436
  #. translators: %s: Ad Inserter
3437
+ #: settings.php:3585
3438
  msgid ""
3439
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3440
  "To do this you need to authorize %s to access your AdSense account. The "
3443
  msgstr ""
3444
 
3445
  #. translators: %s: HTML tags
3446
+ #: settings.php:3594
3447
  msgid "Go to %s Google APIs and Services console %s"
3448
  msgstr ""
3449
 
3450
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3451
+ #: settings.php:3595
3452
  msgid ""
3453
  "Create %1$s project - if the project and IDs are already created click on "
3454
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3455
  msgstr ""
3456
 
3457
  #. translators: %s: HTML tags
3458
+ #: settings.php:3596
3459
  msgid ""
3460
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3461
  "create a new project"
3462
  msgstr ""
3463
 
3464
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3465
+ #: settings.php:3597
3466
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3467
  msgstr ""
3468
 
3469
  #. translators: %s: HTML tags
3470
+ #: settings.php:3598
3471
  msgid ""
3472
  "Click on project selection, wait for the project to be created and then and "
3473
  "select %s as the current project"
3474
  msgstr ""
3475
 
3476
  #. translators: %s: HTML tags
3477
+ #: settings.php:3599
3478
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3479
  msgstr ""
3480
 
3481
  #. translators: %s: HTML tags
3482
+ #: settings.php:3600
3483
  msgid "Search for adsense and enable %s"
3484
  msgstr ""
3485
 
3486
  #. translators: %s: HTML tags
3487
+ #: settings.php:3601
3488
  msgid "Click on %s CREATE CREDENTIALS %s"
3489
  msgstr ""
3490
 
3491
  #. translators: %s: HTML tags
3492
+ #: settings.php:3602
3493
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3494
  msgstr ""
3495
 
3496
  #. translators: %s: HTML tags
3497
+ #: settings.php:3603
3498
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3499
  msgstr ""
3500
 
3501
  #. translators: %s: HTML tags
3502
+ #: settings.php:3604
3503
  msgid "Click on %s What credentials do I need? %s"
3504
  msgstr ""
3505
 
3506
  #. translators: %s: HTML tags
3507
+ #: settings.php:3605
3508
  msgid ""
3509
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3510
  "Ad Inserter client %s"
3511
  msgstr ""
3512
 
3513
  #. translators: %s: HTML tags
3514
+ #: settings.php:3606
3515
  msgid ""
3516
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3517
  "enter %s"
3518
  msgstr ""
3519
 
3520
  #. translators: %s: HTML tags
3521
+ #: settings.php:3607
3522
  msgid "Click on %s Continue %s"
3523
  msgstr ""
3524
 
3525
  #. translators: %s: HTML tags
3526
+ #: settings.php:3608
3527
  msgid "Click on %s Done %s"
3528
  msgstr ""
3529
 
3530
  #. translators: %s: HTML tags
3531
+ #: settings.php:3609
3532
  msgid ""
3533
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3534
  "secret %s"
3535
  msgstr ""
3536
 
3537
+ #: settings.php:3610
3538
  msgid "Copy them to the appropriate fields below"
3539
  msgstr ""
3540
 
3541
+ #: settings.php:3616
3542
  msgid "Client ID"
3543
  msgstr ""
3544
 
3545
+ #: settings.php:3619
3546
  msgid "Enter Client ID"
3547
  msgstr ""
3548
 
3549
+ #: settings.php:3624
3550
  msgid "Client secret"
3551
  msgstr ""
3552
 
3553
+ #: settings.php:3627
3554
  msgid "Enter Client secret"
3555
  msgstr ""
3556
 
3557
+ #: settings.php:3637
3558
  msgid "Use default API IDs"
3559
  msgstr ""
3560
 
3561
+ #: settings.php:3642
3562
  msgid "Save"
3563
  msgstr ""
3564
 
3565
+ #: settings.php:3918 settings.php:3931 settings.php:3944 settings.php:3959
3566
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3567
  msgstr ""
3568
 
3569
+ #: settings.php:3923 settings.php:3936 settings.php:3949 settings.php:3964
3570
+ #: settings.php:4133 settings.php:4137 settings.php:4139 settings.php:4155
3571
+ #: settings.php:4166 settings.php:4169 settings.php:4175 settings.php:4187
3572
  msgid "Looking for AdSense alternative?"
3573
  msgstr ""
3574
 
3575
+ #: settings.php:3975
3576
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3577
  msgstr ""
3578
 
3579
+ #: settings.php:3980 settings.php:4135 settings.php:4147 settings.php:4172
3580
+ #: settings.php:4195
3581
  msgid "Use Infolinks ads with Adsense to earn more"
3582
  msgstr ""
3583
 
3584
+ #: settings.php:3999 settings.php:4037
3585
  msgid "Support plugin development"
3586
  msgstr ""
3587
 
3588
+ #: settings.php:4000 settings.php:4038
3589
  msgid ""
3590
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3591
  "reviewing the plugin on WordPres"
3592
  msgstr ""
3593
 
3594
+ #: settings.php:4000
3595
  msgctxt "Review ad Inserter"
3596
  msgid "Review"
3597
  msgstr ""
3598
 
3599
+ #: settings.php:4001
3600
  msgid ""
3601
  "Support free Ad Inserter development. If you are making money with Ad "
3602
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3603
  "you!"
3604
  msgstr ""
3605
 
3606
+ #: settings.php:4001
3607
  msgid "Donate"
3608
  msgstr ""
3609
 
3610
+ #: settings.php:4008 settings.php:4053
3611
  msgid "Average rating of the plugin - Thank you!"
3612
  msgstr ""
3613
 
3614
  #. translators: %s: Ad Inserter, HTML tags
3615
+ #: settings.php:4019
3616
  msgid ""
3617
  "You've been using %s for a while now, and I hope you're happy with it. "
3618
  "Positive %s reviews %s are a great way to show your appreciation for my "
3621
  "your website. %s Thank you!"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:4038
3625
  msgid "Review"
3626
  msgstr ""
3627
 
3628
+ #: settings.php:4042
3629
  msgid "Ad Inserter on Twitter"
3630
  msgstr ""
3631
 
3632
+ #: settings.php:4043
3633
  msgid "Ad Inserter on Facebook"
3634
  msgstr ""
3635
 
3636
+ #: settings.php:4046
3637
  msgid "Follow Ad Inserter"
3638
  msgstr ""
3639
 
3640
  #. translators: %s: HTML tags
3641
+ #: settings.php:4073
3642
  msgid ""
3643
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3644
  "and %s Common Settings %s pages"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: HTML tags
3648
+ #: settings.php:4085
3649
  msgid ""
3650
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3651
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3652
  msgstr ""
3653
 
3654
  #. translators: %s: HTML tags
3655
+ #: settings.php:4104
3656
  msgid ""
3657
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3658
  "diagnose and fix the problem."
3659
  msgstr ""
3660
 
3661
  #. translators: %s: HTML tags
3662
+ #: settings.php:4108
3663
  msgid ""
3664
  "If you need any kind of help or support, please do not hesitate to open a "
3665
  "thread on the %s support forum. %s"
3666
  msgstr ""
3667
 
3668
+ #: settings.php:4151 settings.php:4191
3669
  msgid "A/B testing - Track ad impressions and clicks"
3670
  msgstr ""
3671
 
3672
+ #: settings.php:4159 settings.php:4183
3673
  msgid "Code preview with visual CSS editor"
3674
  msgstr ""
3675
 
3676
+ #: settings.php:4201
3677
  msgid "Looking for Pro Ad Management plugin?"
3678
  msgstr ""
3679
 
3680
+ #: settings.php:4202
3681
  msgid "To Optimally Monetize your WordPress website?"
3682
  msgstr ""
3683
 
3684
  #. translators: %s HTML tags
3685
+ #: settings.php:4205
3686
  msgid "%s AdSense Integration %s"
3687
  msgstr ""
3688
 
3689
  #. translators: %s HTML tags
3690
+ #: settings.php:4206
3691
  msgid "Syntax highlighting %s editor %s"
3692
  msgstr ""
3693
 
3694
  #. translators: %s HTML tags
3695
+ #: settings.php:4207
3696
  msgid "%s Code preview %s with visual CSS editor"
3697
  msgstr ""
3698
 
3699
  #. translators: %s HTML tags
3700
+ #: settings.php:4208
3701
  msgid "Simple user interface - all settings on a single page"
3702
  msgstr ""
3703
 
3704
  #. translators: %s HTML tags
3705
+ #: settings.php:4209
3706
  msgid ""
3707
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3708
  "image / excerpt"
3709
  msgstr ""
3710
 
3711
  #. translators: %s HTML tags
3712
+ #: settings.php:4210
3713
  msgid "%s Automatic insertion %s between posts on blog pages"
3714
  msgstr ""
3715
 
3716
  #. translators: %s HTML tags
3717
+ #: settings.php:4211
3718
  msgid "%s Automatic insertion %s before, between and after comments"
3719
  msgstr ""
3720
 
3721
  #. translators: %s HTML tags
3722
+ #: settings.php:4212
3723
  msgid "%s Automatic insertion %s after %s or before %s tag"
3724
  msgstr ""
3725
 
3726
  #. translators: %s HTML tags
3727
+ #: settings.php:4213
3728
  msgid "Automatic insertion at %s custom hook positions %s"
3729
  msgstr ""
3730
 
3731
  #. translators: %s HTML tags
3732
+ #: settings.php:4214
3733
  msgid ""
3734
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3735
  "selectors)"
3736
  msgstr ""
3737
 
3738
  #. translators: %s HTML tags
3739
+ #: settings.php:4215
3740
  msgid "%s Insertion exceptions %s for individual posts and pages"
3741
  msgstr ""
3742
 
3743
  #. translators: %s HTML tags
3744
+ #: settings.php:4216
3745
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3746
  msgstr ""
3747
 
3748
  #. translators: %s HTML tags
3749
+ #: settings.php:4217
3750
  msgid ""
3751
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3752
  "scrolls)"
3753
  msgstr ""
3754
 
3755
  #. translators: %s HTML tags
3756
+ #: settings.php:4218
3757
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3758
  msgstr ""
3759
 
3760
  #. translators: %s HTML tags
3761
+ #: settings.php:4219
3762
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3763
  msgstr ""
3764
 
3765
  #. translators: %s HTML tags
3766
+ #: settings.php:4220
3767
  msgid ""
3768
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3769
  "visible)"
3770
  msgstr ""
3771
 
3772
  #. translators: %s HTML tags
3773
+ #: settings.php:4221
3774
  msgid ""
3775
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3776
  msgstr ""
3777
 
3778
  #. translators: %s HTML tags
3779
+ #: settings.php:4222
3780
  msgid "Block %s alignment and style %s customizations"
3781
  msgstr ""
3782
 
3783
  #. translators: %s HTML tags
3784
+ #: settings.php:4223
3785
  msgid ""
3786
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3787
  "TOS)"
3788
  msgstr ""
3789
 
3790
  #. translators: %s HTML tags
3791
+ #: settings.php:4224
3792
  msgid ""
3793
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3794
  "feeds"
3795
  msgstr ""
3796
 
3797
  #. translators: %s HTML tags
3798
+ #: settings.php:4225
3799
  msgid "%s Ad rotation %s (works also with caching)"
3800
  msgstr ""
3801
 
3802
  #. translators: %s HTML tags
3803
+ #: settings.php:4226
3804
  msgid ""
3805
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3806
  "AdSense)"
3807
  msgstr ""
3808
 
3809
  #. translators: %s HTML tags
3810
+ #: settings.php:4227
3811
  msgid "Support for %s A/B testing %s"
3812
  msgstr ""
3813
 
3814
  #. translators: %s HTML tags
3815
+ #: settings.php:4228
3816
  msgid "Support for %s lazy loading %s"
3817
  msgstr ""
3818
 
3819
  #. translators: %s HTML tags
3820
+ #: settings.php:4229
3821
  msgid "Support for ads on %s AMP pages %s"
3822
  msgstr ""
3823
 
3824
  #. translators: %s HTML tags
3825
+ #: settings.php:4230
3826
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
3827
  msgstr ""
3828
 
3829
  #. translators: %s HTML tags
3830
+ #: settings.php:4231
3831
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
3832
  msgstr ""
3833
 
3834
  #. translators: %s HTML tags
3835
+ #: settings.php:4232
3836
  msgid "PHP code processing"
3837
  msgstr ""
3838
 
3839
  #. translators: %s HTML tags
3840
+ #: settings.php:4233
3841
  msgid "%s Banner %s code generator"
3842
  msgstr ""
3843
 
3844
  #. translators: %s HTML tags
3845
+ #: settings.php:4234
3846
  msgid "Support for %s header and footer %s code"
3847
  msgstr ""
3848
 
3849
  #. translators: %s HTML tags
3850
+ #: settings.php:4235
3851
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
3852
  msgstr ""
3853
 
3854
  #. translators: %s HTML tags
3855
+ #: settings.php:4236
3856
  msgid "Desktop, tablet and phone server-side %s device detection %s"
3857
  msgstr ""
3858
 
3859
  #. translators: %s HTML tags
3860
+ #: settings.php:4237
3861
  msgid "Client-side %s mobile device detection %s (works with caching)"
3862
  msgstr ""
3863
 
3864
  #. translators: %s HTML tags
3865
+ #: settings.php:4238
3866
  msgid ""
3867
  "%s Ad blocking detection %s - popup message, ad replacement, content "
3868
  "protection"
3869
  msgstr ""
3870
 
3871
  #. translators: %s HTML tags
3872
+ #: settings.php:4239
3873
  msgid "%s Ad blocking statistics %s"
3874
  msgstr ""
3875
 
3876
  #. translators: %s HTML tags
3877
+ #: settings.php:4240
3878
  msgid ""
3879
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
3880
  "referers"
3881
  msgstr ""
3882
 
3883
  #. translators: %s HTML tags
3884
+ #: settings.php:4241
3885
  msgid ""
3886
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
3887
  msgstr ""
3888
 
3889
  #. translators: %s HTML tags
3890
+ #: settings.php:4242
3891
  msgid "%s Multisite options %s to limit settings on the sites"
3892
  msgstr ""
3893
 
3894
  #. translators: %s HTML tags
3895
+ #: settings.php:4243
3896
  msgid "%s Import/Export %s block or plugin settings"
3897
  msgstr ""
3898
 
3899
  #. translators: %s HTML tags
3900
+ #: settings.php:4244
3901
  msgid "%s Insertion scheduling %s with fallback option"
3902
  msgstr ""
3903
 
3904
  #. translators: %s HTML tags
3905
+ #: settings.php:4245
3906
  msgid "Country-level %s GEO targeting %s (works also with caching)"
3907
  msgstr ""
3908
 
3909
  #. translators: %s HTML tags
3910
+ #: settings.php:4246
3911
  msgid "Simple troubleshooting with many %s debugging functions %s"
3912
  msgstr ""
3913
 
3914
  #. translators: %s HTML tags
3915
+ #: settings.php:4247
3916
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
3917
  msgstr ""
3918
 
3919
  #. translators: %s HTML tags
3920
+ #: settings.php:4248
3921
  msgid "%s Visualization %s of available positions for automatic ad insertion"
3922
  msgstr ""
3923
 
3924
  #. translators: %s HTML tags
3925
+ #: settings.php:4249
3926
  msgid ""
3927
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
3928
  msgstr ""
3929
 
3930
  #. translators: %s HTML tags
3931
+ #: settings.php:4250
3932
  msgid "%s Clipboard support %s to easily copy blocks or settings"
3933
  msgstr ""
3934
 
3935
  #. translators: %s HTML tags
3936
+ #: settings.php:4251
3937
  msgid "No ads on the settings page"
3938
  msgstr ""
3939
 
3940
  #. translators: %s HTML tags
3941
+ #: settings.php:4252
3942
  msgid "Premium support via email"
3943
  msgstr ""
3944
 
3945
  #. translators: %s HTML tags
3946
+ #: settings.php:4255
3947
  msgid ""
3948
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
3949
  "website with many advertising features to automatically insert adverts on "
3958
  msgstr ""
3959
 
3960
  #. translators: %s HTML tags
3961
+ #: settings.php:4268
3962
  msgid "Looking for %s Pro Ad Management plugin? %s"
3963
  msgstr ""
3964
 
3965
  #. translators: %s HTML tags
3966
+ #: settings.php:4273
3967
  msgid "Ads between posts"
3968
  msgstr ""
3969
 
3970
  #. translators: %s HTML tags
3971
+ #: settings.php:4274
3972
  msgid "Ads between comments"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
+ #: settings.php:4275
3977
  msgid "Support via email"
3978
  msgstr ""
3979
 
3980
  #. translators: %s HTML tags
3981
+ #: settings.php:4281
3982
  msgid "%s Sticky positions %s"
3983
  msgstr ""
3984
 
3985
  #. translators: %s HTML tags
3986
+ #: settings.php:4282
3987
  msgid "%s Limit insertions %s"
3988
  msgstr ""
3989
 
3990
  #. translators: %s HTML tags
3991
+ #: settings.php:4283
3992
  msgid "%s Clearance %s options"
3993
  msgstr ""
3994
 
3995
  #. translators: %s HTML tags
3996
+ #: settings.php:4289
3997
  msgid "Ad rotation"
3998
  msgstr ""
3999
 
4000
  #. translators: %s HTML tags
4001
+ #: settings.php:4290
4002
  msgid "%s A/B testing %s"
4003
  msgstr ""
4004
 
4005
  #. translators: %s HTML tags
4006
+ #: settings.php:4291
4007
  msgid "%s Ad tracking %s"
4008
  msgstr ""
4009
 
4010
  #. translators: %s HTML tags
4011
+ #: settings.php:4297
4012
  msgid "Support for %s AMP pages %s"
4013
  msgstr ""
4014
 
4015
  #. translators: %s HTML tags
4016
+ #: settings.php:4298
4017
  msgid "%s Ad blocking detection %s"
4018
  msgstr ""
4019
 
4020
  #. translators: %s HTML tags
4021
+ #: settings.php:4299
4022
  msgid "%s Mobile device detection %s"
4023
  msgstr ""
4024
 
4025
  #. translators: %s HTML tags
4026
+ #: settings.php:4306
4027
  msgid "64 code blocks"
4028
  msgstr ""
4029
 
4030
  #. translators: %s HTML tags
4031
+ #: settings.php:4307
4032
  msgid "%s GEO targeting %s"
4033
  msgstr ""
4034
 
4035
  #. translators: %s HTML tags
4036
+ #: settings.php:4308
4037
  msgid "%s Scheduling %s"
4038
  msgstr ""
4039
 
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp, DoubleClick for publishers
6
  Requires at least: 4.0
7
- Tested up to: 5.0
8
  Requires PHP: 5.6
9
- Stable tag: 2.4.10
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, AMP ads, DFP ads, PHP, tracking, AdSense header and footer code
@@ -486,9 +486,15 @@ Please note that responsive AdSense ads can not work with floating alignments (a
486
 
487
  == Changelog ==
488
 
 
 
 
 
 
489
  = 2.4.10 =
490
  - Added support for counter shortcodes
491
  - Added support for code separator selection for code preview
 
492
  - Added support for CHECK separator (Pro only)
493
  - Added links to test pages for check for available positions
494
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -565,9 +571,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
565
 
566
  == Upgrade Notice ==
567
 
 
 
 
 
 
568
  = 2.4.10 =
569
  Added support for counter shortcodes;
570
  Added support for code separator selection for code preview;
 
571
  Added support for CHECK separator (Pro only);
572
  Added links to test pages for check for available positions;
573
  Few minor bug fixes, cosmetic changes and code improvements
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp, DoubleClick for publishers
6
  Requires at least: 4.0
7
+ Tested up to: 5.1
8
  Requires PHP: 5.6
9
+ Stable tag: 2.4.11
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, AMP ads, DFP ads, PHP, tracking, AdSense header and footer code
486
 
487
  == Changelog ==
488
 
489
+ = 2.4.11 =
490
+ - Fix for saving code with slashes
491
+ - Fix for rotation editor code import
492
+ - Few minor bug fixes, cosmetic changes and code improvements
493
+
494
  = 2.4.10 =
495
  - Added support for counter shortcodes
496
  - Added support for code separator selection for code preview
497
+ - Added support for group rotations
498
  - Added support for CHECK separator (Pro only)
499
  - Added links to test pages for check for available positions
500
  - Few minor bug fixes, cosmetic changes and code improvements
571
 
572
  == Upgrade Notice ==
573
 
574
+ = 2.4.11 =
575
+ Fix for saving code with slashes;
576
+ Fix for rotation editor code import;
577
+ Few minor bug fixes, cosmetic changes and code improvements
578
+
579
  = 2.4.10 =
580
  Added support for counter shortcodes;
581
  Added support for code separator selection for code preview;
582
+ Added support for group rotations;
583
  Added support for CHECK separator (Pro only);
584
  Added links to test pages for check for available positions;
585
  Few minor bug fixes, cosmetic changes and code improvements
settings.php CHANGED
@@ -245,22 +245,23 @@ function generate_settings_form (){
245
  <div class="responsive-table rounded">
246
  <table class="ai-settings-table" style="">
247
  <tr>
248
- <td style="padding-right: 7px;">
249
- <?php _e ('Option Name', 'ad-inserter'); ?>
 
250
  </td>
251
  <td style="width: 100%;">
252
  <input class="option-name" style="width: 100%;" type="text" size="50" maxlength="200" />
253
  </td>
254
- <td style="padding-left: 7px;">
255
  <?php _e ('Share', 'ad-inserter'); ?>
256
  </td>
257
- <td>
258
  <input class="option-share" style="width: 42px;" type="text" maxlength="2" title="<?php _e ('Option share in percents - 0 means option is disabled, if share for one option is not defined it will be calculated automatically. Leave all share fields empty for equal option shares.', 'ad-inserter'); ?>" /> %
259
  </td>
260
- <td style="padding-left: 7px;">
261
  <?php _e ('Time', 'ad-inserter'); ?>
262
  </td>
263
- <td>
264
  <input class="option-time" style="width: 42px;" type="text" maxlength="3" title="<?php _e ('Option time in seconds - 0 means option is disabled and will be skipped. Leave all time fields empty for no timed rotation.', 'ad-inserter'); ?>" /> s
265
  </td>
266
  </tr>
@@ -687,6 +688,10 @@ function generate_settings_form (){
687
 
688
  <div class="max-input" style="height: 28px; position: absolute; top: 4px; left: -6px;">
689
  <span style="display: table-cell; width: 100%;"></span>
 
 
 
 
690
  <span class="ai-toolbar-button">
691
  <input type="checkbox" id="remove-option-<?php echo $block; ?>" style="display: none;" />
692
  <label class="checkbox-button" for="remove-option-<?php echo $block; ?>" title="<?php _e ('Remove option', 'ad-inserter'); ?>"><span class="checkbox-icon icon-minus"></span></label>
245
  <div class="responsive-table rounded">
246
  <table class="ai-settings-table" style="">
247
  <tr>
248
+ <td style="padding-right: 7px; min-width: 72px">
249
+ <span class="group-name-label" style="display: none;"><?php _e ('Group name', 'ad-inserter'); ?></span>
250
+ <span class="option-name-label"><?php _e ('Option name', 'ad-inserter'); ?></span>
251
  </td>
252
  <td style="width: 100%;">
253
  <input class="option-name" style="width: 100%;" type="text" size="50" maxlength="200" />
254
  </td>
255
+ <td class="option-parameters" style="padding-left: 7px;">
256
  <?php _e ('Share', 'ad-inserter'); ?>
257
  </td>
258
+ <td class="option-parameters">
259
  <input class="option-share" style="width: 42px;" type="text" maxlength="2" title="<?php _e ('Option share in percents - 0 means option is disabled, if share for one option is not defined it will be calculated automatically. Leave all share fields empty for equal option shares.', 'ad-inserter'); ?>" /> %
260
  </td>
261
+ <td class="option-parameters" style="padding-left: 7px;">
262
  <?php _e ('Time', 'ad-inserter'); ?>
263
  </td>
264
+ <td class="option-parameters">
265
  <input class="option-time" style="width: 42px;" type="text" maxlength="3" title="<?php _e ('Option time in seconds - 0 means option is disabled and will be skipped. Leave all time fields empty for no timed rotation.', 'ad-inserter'); ?>" /> s
266
  </td>
267
  </tr>
688
 
689
  <div class="max-input" style="height: 28px; position: absolute; top: 4px; left: -6px;">
690
  <span style="display: table-cell; width: 100%;"></span>
691
+ <span class="ai-toolbar-button">
692
+ <input type="checkbox" id="rotation-groups-<?php echo $block; ?>" style="display: none;" />
693
+ <label for="rotation-groups-<?php echo $block; ?>" title="<?php _e ('Rotation groups', 'ad-inserter'); ?>"><span class="checkbox-button dashicons dashicons-groups"></span></label>
694
+ </span>
695
  <span class="ai-toolbar-button">
696
  <input type="checkbox" id="remove-option-<?php echo $block; ?>" style="display: none;" />
697
  <label class="checkbox-button" for="remove-option-<?php echo $block; ?>" title="<?php _e ('Remove option', 'ad-inserter'); ?>"><span class="checkbox-icon icon-minus"></span></label>