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

Version Description

  • Added support for taxonomy for Yoast primary category
  • Layout changes to accomodate longer translated texts
  • Fix for escape character not saved in header, footer and ad blocking message code
  • 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.19
Comparing to
See all releases

Code changes from version 2.4.18 to 2.4.19

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.4.18
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,12 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
18
  Ad Inserter 2.4.18 - 2019-05-26
19
  - Added support for full width responsive AdSense code option
20
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -1745,6 +1751,10 @@ function ai_admin_remove_scripts ($hook_suffix) {
1745
 
1746
  // Fix for WP BotWatch plugin: remove styles loaded on Ad Inserter admin page
1747
  wp_dequeue_style ('wp-botwatch');
 
 
 
 
1748
  }
1749
  }
1750
 
@@ -2531,8 +2541,10 @@ function ai_save_meta_box_data_hook ($post_id) {
2531
  if (isset ($_POST [$option_name]) && $_POST [$option_name]) $selected []= $block;
2532
  }
2533
 
2534
- // Update the meta field in the database.
2535
- update_post_meta ($post_id, '_adinserter_block_exceptions', implode (",", $selected));
 
 
2536
  }
2537
 
2538
  function ai_widgets_init_hook () {
@@ -5439,7 +5451,7 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
5439
 
5440
  .ai-debug-message {text-align: center; font-weight: bold;}
5441
 
5442
- .ai-debug-bar kbd {margin: 0; padding: 0; color: #fff; font-size: inherit; font-family: arial; background-color: transparent; box-shadow: none;}
5443
 
5444
  .ai-debug-block pre {margin: 0; padding: 2px 5px 2px; line-height: 14px;}
5445
 
@@ -5615,7 +5627,7 @@ function ai_settings () {
5615
  $field_value = $_POST [$form_field_name];
5616
 
5617
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5618
- $field_value = base64_decode (substr ($field_value, 4));
5619
  }
5620
 
5621
  $wp_options [$key] = filter_option_hf ($key, $field_value);
@@ -5631,7 +5643,7 @@ function ai_settings () {
5631
  $field_value = $_POST [$form_field_name];
5632
 
5633
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5634
- $field_value = base64_decode (substr ($field_value, 4));
5635
  }
5636
 
5637
  $wp_options [$key] = filter_option_hf ($key, $field_value);
@@ -5648,7 +5660,7 @@ function ai_settings () {
5648
  $field_value = $_POST [$form_field_name];
5649
 
5650
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5651
- $field_value = base64_decode (substr ($field_value, 4));
5652
  }
5653
 
5654
  $wp_options [$key] = filter_option_hf ($key, $field_value);
@@ -7720,6 +7732,33 @@ function ai_get_unique_string ($start = 0, $length = 32, $seed = '') {
7720
  //}
7721
 
7722
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7723
  // ===========================================================================================
7724
 
7725
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.4.19
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.19 - 2019-06-18
19
+ - Added support for taxonomy for Yoast primary category
20
+ - Layout changes to accomodate longer translated texts
21
+ - Fix for escape character not saved in header, footer and ad blocking message code
22
+ - Few minor bug fixes, cosmetic changes and code improvements
23
+
24
  Ad Inserter 2.4.18 - 2019-05-26
25
  - Added support for full width responsive AdSense code option
26
  - Few minor bug fixes, cosmetic changes and code improvements
1751
 
1752
  // Fix for WP BotWatch plugin: remove styles loaded on Ad Inserter admin page
1753
  wp_dequeue_style ('wp-botwatch');
1754
+
1755
+ // Fix for All in One Schema.org Rich Snippets plugin: remove styles loaded on Ad Inserter admin page
1756
+ wp_dequeue_style ('admin_style');
1757
+ wp_deregister_style ('admin_style');
1758
  }
1759
  }
1760
 
2541
  if (isset ($_POST [$option_name]) && $_POST [$option_name]) $selected []= $block;
2542
  }
2543
 
2544
+ if (!empty ($selected)) {
2545
+ // Update the meta field in the database.
2546
+ update_post_meta ($post_id, '_adinserter_block_exceptions', implode (",", $selected));
2547
+ } else delete_post_meta ($post_id, '_adinserter_block_exceptions');
2548
  }
2549
 
2550
  function ai_widgets_init_hook () {
5451
 
5452
  .ai-debug-message {text-align: center; font-weight: bold;}
5453
 
5454
+ .ai-debug-bar kbd {margin: 0; padding: 0; color: #fff; font-size: inherit; font-family: arial; background-color: transparent; text-shadow: none; border: 0; box-shadow: none;}
5455
 
5456
  .ai-debug-block pre {margin: 0; padding: 2px 5px 2px; line-height: 14px;}
5457
 
5627
  $field_value = $_POST [$form_field_name];
5628
 
5629
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5630
+ $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
5631
  }
5632
 
5633
  $wp_options [$key] = filter_option_hf ($key, $field_value);
5643
  $field_value = $_POST [$form_field_name];
5644
 
5645
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5646
+ $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
5647
  }
5648
 
5649
  $wp_options [$key] = filter_option_hf ($key, $field_value);
5660
  $field_value = $_POST [$form_field_name];
5661
 
5662
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5663
+ $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
5664
  }
5665
 
5666
  $wp_options [$key] = filter_option_hf ($key, $field_value);
7732
  //}
7733
 
7734
 
7735
+ function ai_yoast_primary_category () {
7736
+ $category = get_the_category ();
7737
+ // If post has a category assigned.
7738
+ if ($category) {
7739
+ $primary_category = '';
7740
+ if (class_exists ('WPSEO_Primary_Term')) {
7741
+ // Show the post's 'Primary' category, if this Yoast feature is available, & one is set
7742
+ $wpseo_primary_term = new WPSEO_Primary_Term ('category', get_the_id ());
7743
+ $wpseo_primary_term = $wpseo_primary_term->get_primary_term ();
7744
+ $term = get_term ($wpseo_primary_term);
7745
+
7746
+ if (is_wp_error ($term)) {
7747
+ // Default to first category (not Yoast) if an error is returned
7748
+ $primary_category = $category [0]->slug;
7749
+ } else {
7750
+ // Yoast Primary category
7751
+ $primary_category = $term->slug;
7752
+ }
7753
+ } else {
7754
+ // Default, display the first category in WP's list of assigned categories
7755
+ $primary_category = $category [0]->slug;
7756
+ }
7757
+ }
7758
+ return $primary_category;
7759
+ }
7760
+
7761
+
7762
  // ===========================================================================================
7763
 
7764
 
class.php CHANGED
@@ -3855,7 +3855,7 @@ echo '</body>
3855
  } else {
3856
  foreach ($filter_values as $filter_value) {
3857
  $filter_value = trim ($filter_value);
3858
- if ($filter_value [0] == '%') {
3859
  $mod_value = substr ($filter_value, 1);
3860
  if (is_numeric ($mod_value) && $mod_value > 0) {
3861
  if (($index + 1) % $mod_value == 0) {
@@ -4513,7 +4513,7 @@ echo '</body>
4513
  } else {
4514
  foreach ($filter_values as $filter_value) {
4515
  $filter_value = trim ($filter_value);
4516
- if ($filter_value [0] == '%') {
4517
  $mod_value = substr ($filter_value, 1);
4518
  if (is_numeric ($mod_value) && $mod_value > 0) {
4519
  if (($index + 1) % $mod_value == 0) {
@@ -4543,7 +4543,7 @@ echo '</body>
4543
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
4544
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
4545
 
4546
- $direction = $this->get_avoid_direction();
4547
  $max_checks = $this->get_avoid_try_limit();
4548
 
4549
  $failed_clearance_positions = array ();
@@ -4982,6 +4982,10 @@ echo '</body>
4982
  $terms = explode (':', $taxonomy_disabled);
4983
  if ($terms [1] == $post_type) return false;
4984
  }
 
 
 
 
4985
 
4986
  foreach ($taxonomy_names as $taxonomy_name) {
4987
  $terms = get_the_terms (0, $taxonomy_name);
@@ -5038,6 +5042,10 @@ echo '</body>
5038
  $terms = explode (':', $taxonomy_enabled);
5039
  if ($terms [1] == $post_type) return true;
5040
  }
 
 
 
 
5041
 
5042
  foreach ($taxonomy_names as $taxonomy_name) {
5043
  $terms = get_the_terms (0, $taxonomy_name);
@@ -5513,7 +5521,7 @@ echo '</body>
5513
 
5514
  foreach ($filter_values as $filter_value) {
5515
  $filter_value = trim ($filter_value);
5516
- if ($filter_value [0] == '%') {
5517
  $mod_value = substr ($filter_value, 1);
5518
  if (is_numeric ($mod_value) && $mod_value > 0) {
5519
  if ($counter_for_filter % $mod_value == 0) return $filter_ok;
3855
  } else {
3856
  foreach ($filter_values as $filter_value) {
3857
  $filter_value = trim ($filter_value);
3858
+ if (isset ($filter_value [0]) && $filter_value [0] == '%') {
3859
  $mod_value = substr ($filter_value, 1);
3860
  if (is_numeric ($mod_value) && $mod_value > 0) {
3861
  if (($index + 1) % $mod_value == 0) {
4513
  } else {
4514
  foreach ($filter_values as $filter_value) {
4515
  $filter_value = trim ($filter_value);
4516
+ if (isset ($filter_value [0]) && $filter_value [0] == '%') {
4517
  $mod_value = substr ($filter_value, 1);
4518
  if (is_numeric ($mod_value) && $mod_value > 0) {
4519
  if (($index + 1) % $mod_value == 0) {
4543
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
4544
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
4545
 
4546
+ $direction = $this->get_avoid_direction();
4547
  $max_checks = $this->get_avoid_try_limit();
4548
 
4549
  $failed_clearance_positions = array ();
4982
  $terms = explode (':', $taxonomy_disabled);
4983
  if ($terms [1] == $post_type) return false;
4984
  }
4985
+ elseif (strpos ($taxonomy_disabled, 'yoast-primary-category:') === 0) {
4986
+ $primary_category = explode (':', $taxonomy_disabled);
4987
+ if ($primary_category [1] == ai_yoast_primary_category ()) return false;
4988
+ }
4989
 
4990
  foreach ($taxonomy_names as $taxonomy_name) {
4991
  $terms = get_the_terms (0, $taxonomy_name);
5042
  $terms = explode (':', $taxonomy_enabled);
5043
  if ($terms [1] == $post_type) return true;
5044
  }
5045
+ elseif (strpos ($taxonomy_enabled, 'yoast-primary-category:') === 0) {
5046
+ $primary_category = explode (':', $taxonomy_enabled);
5047
+ if ($primary_category [1] == ai_yoast_primary_category ()) return true;
5048
+ }
5049
 
5050
  foreach ($taxonomy_names as $taxonomy_name) {
5051
  $terms = get_the_terms (0, $taxonomy_name);
5521
 
5522
  foreach ($filter_values as $filter_value) {
5523
  $filter_value = trim ($filter_value);
5524
+ if (isset ($filter_value [0]) && $filter_value [0] == '%') {
5525
  $mod_value = substr ($filter_value, 1);
5526
  if (is_numeric ($mod_value) && $mod_value > 0) {
5527
  if ($counter_for_filter % $mod_value == 0) return $filter_ok;
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.18');
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.19');
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.18"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -26,7 +26,17 @@
26
  }
27
 
28
  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
29
- background: #fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x!important !important;
 
 
 
 
 
 
 
 
 
 
30
  }
31
 
32
  /*.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {*/
@@ -103,12 +113,16 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
103
 
104
  .ai-settings-table.left {
105
  float: left;
106
- width: 59%
 
 
 
 
107
  }
108
 
109
  .ai-settings-table.right {
110
  float: right;
111
- width: 41%
112
  }
113
 
114
  .ai-settings-table.ai-values td:first-child {
@@ -283,7 +297,10 @@ div.ai-tooltip .version {
283
  width: 14px;
284
  text-align: center;
285
  font-size: 12px;
 
 
286
  }
 
287
  #ai-tabs {
288
  padding: .2em 0 0 .6em;
289
  }
@@ -295,6 +312,9 @@ div.ai-tooltip .version {
295
  #ai-plugin-settings-tabs li a {
296
  padding: .5em 0.4em;
297
  font-size: 12px;
 
 
 
298
  }
299
 
300
  #header-buttons {
@@ -1294,6 +1314,10 @@ table.check-pages a span.dashicons {
1294
  margin-top: 10px;
1295
  }
1296
 
 
 
 
 
1297
  @media (max-width: 762px) {
1298
  #ai-sidebar-right {
1299
  float: none;
@@ -1369,6 +1393,10 @@ table.check-pages a span.dashicons {
1369
  .scombobox-list p {
1370
  font-size: 16px;
1371
  }
 
 
 
 
1372
  }
1373
 
1374
  @media(max-width: 768px) {
@@ -1506,7 +1534,7 @@ table.check-pages {
1506
  table.check-pages th {
1507
  font-weight: bold;
1508
  text-align: center;
1509
- white-space: nowrap;
1510
  }
1511
 
1512
  table.check-pages td {
1
  #ai-data {
2
+ font-family: "2.4.19"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
26
  }
27
 
28
  .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
29
+ background: #fff url(images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x !important;
30
+ }
31
+
32
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
33
+ font-weight: normal;
34
+ color: #555;
35
+ }
36
+
37
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
38
+ color: #555;
39
+ text-decoration: none;
40
  }
41
 
42
  /*.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {*/
113
 
114
  .ai-settings-table.left {
115
  float: left;
116
+ width: 63%
117
+ }
118
+
119
+ .ai-settings-table.left td.label {
120
+ max-width: 104px;
121
  }
122
 
123
  .ai-settings-table.right {
124
  float: right;
125
+ width: 37%
126
  }
127
 
128
  .ai-settings-table.ai-values td:first-child {
297
  width: 14px;
298
  text-align: center;
299
  font-size: 12px;
300
+ font-weight: normal;
301
+ color: #555;
302
  }
303
+
304
  #ai-tabs {
305
  padding: .2em 0 0 .6em;
306
  }
312
  #ai-plugin-settings-tabs li a {
313
  padding: .5em 0.4em;
314
  font-size: 12px;
315
+ /* max-width: 83px;*/
316
+ /* overflow: hidden;*/
317
+ /* text-overflow: ellipsis;*/
318
  }
319
 
320
  #header-buttons {
1314
  margin-top: 10px;
1315
  }
1316
 
1317
+ .filter-type-select {
1318
+ max-width: 300px;
1319
+ }
1320
+
1321
  @media (max-width: 762px) {
1322
  #ai-sidebar-right {
1323
  float: none;
1393
  .scombobox-list p {
1394
  font-size: 16px;
1395
  }
1396
+
1397
+ .filter-type-select {
1398
+ max-width: 258px;
1399
+ }
1400
  }
1401
 
1402
  @media(max-width: 768px) {
1534
  table.check-pages th {
1535
  font-weight: bold;
1536
  text-align: center;
1537
+ /* white-space: nowrap;*/
1538
  }
1539
 
1540
  table.check-pages td {
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.4.18";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.4.19";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,141 +4,141 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-05-26 16:36:01+00:00\n"
8
- "PO-Revision-Date: 2019-05-26 18:36+0200\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.2.1\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:351
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:367
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:374
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:445
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:452
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:461
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:468
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:478
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:1075
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1080
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:1085 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:1090 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:1095 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1100 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1147
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1151
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1360
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1641 ad-inserter.php:2493
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2064
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2064
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2065
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2066
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2067
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2068
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2069
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:2264
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,25 +146,25 @@ 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:2265 includes/functions.php:1530
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
- #: ad-inserter.php:2268
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:2269 includes/functions.php:1533
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
- #: ad-inserter.php:2279
164
  msgid "I would really appreciate if you could rate the plugin on WordPres."
165
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
166
 
167
- #: ad-inserter.php:2281
168
  msgid ""
169
  "Positive reviews are a great incentive to fix bugs and to add new features "
170
  "for better monetization of your website. Thank you, Igor"
@@ -173,105 +173,105 @@ msgstr ""
173
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
174
 
175
  #. translators: %s: Ad Inserter
176
- #: ad-inserter.php:2287
177
  msgid "Rate %s"
178
  msgstr "Ocenite %s"
179
 
180
- #: ad-inserter.php:2292
181
  msgid "I already did."
182
  msgstr "Sem že."
183
 
184
- #: ad-inserter.php:2306
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr "Nastavitve"
188
 
189
  #. translators: %s: Ad Inserter
190
- #: ad-inserter.php:2380
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr "Posamezne Izjeme za %s"
194
 
195
- #: ad-inserter.php:2409 ad-inserter.php:8126 class.php:1967
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
- #: includes/preview.php:2057 settings.php:3684 strings.php:3
198
  msgid "Block"
199
  msgstr "Blok"
200
 
201
- #: ad-inserter.php:2410 settings.php:3685 settings.php:3759
202
  msgid "Name"
203
  msgstr "Ime"
204
 
205
- #: ad-inserter.php:2411 settings.php:3687
206
  msgid "Automatic insertion"
207
  msgstr "Samodejno vstavljanje"
208
 
209
- #: ad-inserter.php:2414
210
  msgid "Default insertion for pages"
211
  msgstr "Privzeto vstavljanje za strani"
212
 
213
- #: ad-inserter.php:2415
214
  msgid "Default insertion for posts"
215
  msgstr "Privzeto vstavljanje za prispevke"
216
 
217
  #. translators: For this post or page
218
- #: ad-inserter.php:2418
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
- #: ad-inserter.php:2419
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
- #: ad-inserter.php:2427
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
- #: ad-inserter.php:2428
234
  msgctxt "Default insertion for"
235
  msgid "pages"
236
  msgstr "strani"
237
 
238
- #: ad-inserter.php:2432
239
  msgctxt "Enabled/disabled on all"
240
  msgid "posts"
241
  msgstr "prispevkih"
242
 
243
- #: ad-inserter.php:2433
244
  msgctxt "Default insertion for"
245
  msgid "posts"
246
  msgstr "prispevke"
247
 
248
- #: ad-inserter.php:2452 ad-inserter.php:2465 strings.php:156
249
  msgid "Enabled"
250
  msgstr "Omogočeno"
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:2452 ad-inserter.php:2465 includes/functions.php:2191
254
  #: strings.php:16
255
  msgid "Disabled"
256
  msgstr "Onemogočeno"
257
 
258
  #. translators: Enabled on all pages or posts
259
- #: ad-inserter.php:2455
260
  msgid "Enabled on all"
261
  msgstr "Omogočeno na vseh"
262
 
263
  #. translators: Disabled on all pages or posts
264
- #: ad-inserter.php:2457
265
  msgid "Disabled on all"
266
  msgstr "Onemogočeno na vseh"
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:2485
270
  msgid "No individual exceptions enabled for"
271
  msgstr "Ni omogočenih posameznih izjem za"
272
 
273
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
274
- #: ad-inserter.php:2490
275
  msgid ""
276
  "Default insertion for %1$s can be configured for each block on %2$s page - "
277
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
@@ -281,7 +281,7 @@ msgstr ""
281
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
282
  "strani</strong>.<br />"
283
 
284
- #: ad-inserter.php:2495
285
  msgid ""
286
  "Default value is <strong>blank</strong> and means no individual exceptions "
287
  "(even if previously defined here).<br />"
@@ -289,7 +289,7 @@ msgstr ""
289
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
290
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
291
 
292
- #: ad-inserter.php:2498
293
  msgctxt "Pages"
294
  msgid ""
295
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -298,7 +298,7 @@ msgstr ""
298
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
299
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
300
 
301
- #: ad-inserter.php:2499
302
  msgctxt "Posts"
303
  msgid ""
304
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -307,61 +307,61 @@ msgstr ""
307
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
308
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
309
 
310
- #: ad-inserter.php:2501
311
  msgid "For more information check page %s"
312
  msgstr "Za več informacij poglejte stran %s"
313
 
314
  #. translators: Ad Inserter Exceptions documentation page
315
- #: ad-inserter.php:2503
316
  msgid "Individual Exceptions"
317
  msgstr "Posamezne Izjeme"
318
 
319
- #: ad-inserter.php:2548
320
  msgid "STATIC PAGE"
321
  msgstr "STATIČNA STRAN"
322
 
323
- #: ad-inserter.php:2551
324
  msgid "POST"
325
  msgstr "PRISPEVEK"
326
 
327
- #: ad-inserter.php:2554
328
  msgid "HOMEPAGE"
329
  msgstr "DOMAČA STRAN"
330
 
331
- #: ad-inserter.php:2557
332
  msgid "CATEGORY PAGE"
333
  msgstr "STRAN KATEGORIJE"
334
 
335
- #: ad-inserter.php:2560
336
  msgid "SEARCH PAGE"
337
  msgstr "STRAN ISKANJE"
338
 
339
- #: ad-inserter.php:2563
340
  msgid "ARCHIVE PAGE"
341
  msgstr "STRAN ARHIVA"
342
 
343
- #: ad-inserter.php:2566
344
  msgid "ERROR 404 PAGE"
345
  msgstr "STRAN NAPAKA 404"
346
 
347
- #: ad-inserter.php:2569
348
  msgid "AJAX CALL"
349
  msgstr "AJAX KLIC"
350
 
351
- #: ad-inserter.php:2572
352
  msgid "UNKNOWN PAGE TYPE"
353
  msgstr "NEZNAN TIP STRANI"
354
 
355
- #: ad-inserter.php:2589
356
  msgid "Click to delete ad blocking detection cokies"
357
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
358
 
359
- #: ad-inserter.php:2590
360
  msgid "AD BLOCKING STATUS UNKNOWN"
361
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
362
 
363
  #. translators: %s: AdSense Auto Ads
364
- #: ad-inserter.php:2614
365
  msgid ""
366
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
367
  "positions"
@@ -369,11 +369,11 @@ msgstr ""
369
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
370
  "položaje"
371
 
372
- #: ad-inserter.php:2753
373
  msgid "Code for insertion"
374
  msgstr "Koda za vstavljanje"
375
 
376
- #: ad-inserter.php:2753
377
  msgid "character"
378
  msgid_plural "characters"
379
  msgstr[0] "znak"
@@ -381,16 +381,16 @@ msgstr[1] "znaka"
381
  msgstr[2] "znaki"
382
  msgstr[3] "znakov"
383
 
384
- #: ad-inserter.php:2796
385
  msgid "Header code"
386
  msgstr "Koda v glavi"
387
 
388
- #: ad-inserter.php:2796
389
  msgctxt "Header code"
390
  msgid "DISABLED"
391
  msgstr "ONEMOGOČENA"
392
 
393
- #: ad-inserter.php:2796 ad-inserter.php:3018
394
  msgid "character inserted"
395
  msgid_plural "characters inserted"
396
  msgstr[0] "znak vstavljen"
@@ -398,43 +398,43 @@ msgstr[1] "znaka vstavljena"
398
  msgstr[2] "znaki vstavljeni"
399
  msgstr[3] "znakov vstavljenih"
400
 
401
- #: ad-inserter.php:2829
402
  msgid "Automatically placed by AdSense Auto ads code"
403
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
404
 
405
- #: ad-inserter.php:3018
406
  msgid "Footer code"
407
  msgstr "Koda v nogi"
408
 
409
- #: ad-inserter.php:3018
410
  msgctxt "Footer code"
411
  msgid "DISABLED"
412
  msgstr "ONEMOGOČENA"
413
 
414
- #: ad-inserter.php:3024
415
  msgid "JAVASCRIPT NOT WORKING"
416
  msgstr "JAVASCRIPT NE DELA"
417
 
418
- #: ad-inserter.php:3024
419
  msgid "NO JAVASCRIPT ERRORS"
420
  msgstr "BREZ JAVASCRIPT NAPAK"
421
 
422
- #: ad-inserter.php:3024
423
  msgid "JAVASCRIPT ERRORS"
424
  msgstr "JAVASCRIPT NAPAKE"
425
 
426
  #. translators: block name (block with default settings)
427
- #: ad-inserter.php:5156
428
  msgctxt "Block name"
429
  msgid "Default"
430
  msgstr "Privzeti"
431
 
432
  #. translators: %s: Ad Inserter
433
- #: ad-inserter.php:5727
434
  msgid "Error importing %s settings."
435
  msgstr "Napaka pri uvozu %s nastavitev."
436
 
437
- #: ad-inserter.php:5728
438
  msgid "Error importing settings for block"
439
  msgid_plural "Error importing settings for blocks:"
440
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -442,15 +442,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
442
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
443
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
444
 
445
- #: ad-inserter.php:5777
446
  msgid "Settings saved."
447
  msgstr "Nastavitve shranjene."
448
 
449
- #: ad-inserter.php:5862
450
  msgid "Settings cleared."
451
  msgstr "Nastavitve ponastavljene."
452
 
453
- #: ad-inserter.php:6207 ad-inserter.php:6209 ad-inserter.php:6232
454
  msgid "word"
455
  msgid_plural "words"
456
  msgstr[0] "beseda"
@@ -458,38 +458,38 @@ msgstr[1] "besedi"
458
  msgstr[2] "besede"
459
  msgstr[3] "besed"
460
 
461
- #: ad-inserter.php:6246 ad-inserter.php:6358
462
  msgid "HTML TAGS REMOVED"
463
  msgstr "HTML ZNAČKE ODSTRANJENE"
464
 
465
- #: ad-inserter.php:6434
466
  msgid "BEFORE COMMENTS"
467
  msgstr "PRED KOMENTARJI"
468
 
469
- #: ad-inserter.php:6542
470
  msgid "AFTER COMMENTS"
471
  msgstr "PO KOMETARJIH"
472
 
473
- #: ad-inserter.php:6605
474
  msgid "BETWEEN COMMENTS"
475
  msgstr "MED KOMENTARJI"
476
 
477
- #: ad-inserter.php:7766
478
  msgid "requires WordPress 4.0 or newer"
479
  msgstr "potrebuje WordPress 4.0 ali novejši"
480
 
481
- #: ad-inserter.php:7766
482
  msgid "Please update!"
483
  msgstr "Prosimo, posodobite!"
484
 
485
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
486
  #. name with HTML tags will be added)
487
- #: ad-inserter.php:7999
488
  msgid "Thank you for installing"
489
  msgstr "Hvala za namestitev vtičnika"
490
 
491
  #. translators: Opt-in message: %s: HTML tags
492
- #: ad-inserter.php:8001
493
  msgid ""
494
  "We would like to %s track its usage %s on your site. This is completely "
495
  "optional and can be disabled at any time."
@@ -497,7 +497,7 @@ msgstr ""
497
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
498
  "izbirno in se lahko izključi kadarkoli."
499
 
500
- #: ad-inserter.php:8003
501
  msgid ""
502
  "We don't record any sensitive data, only information regarding the WordPress "
503
  "environment and plugin usage, which will help us to make improvements to the "
@@ -507,7 +507,7 @@ msgstr ""
507
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
508
 
509
  #. translators: Deactivation message: %s: HTML tags
510
- #: ad-inserter.php:8040
511
  msgid ""
512
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
513
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -518,49 +518,49 @@ msgstr ""
518
  "nam %s in poskušali vam bomo pomagati."
519
 
520
  #. translators: %s: Ad Inserter
521
- #: ad-inserter.php:8083
522
  msgid "%s block."
523
  msgstr "%s blok."
524
 
525
  #. translators: widget title
526
- #: ad-inserter.php:8099 ad-inserter.php:8135
527
  msgid "Processing log"
528
  msgstr "Dnevnik procesiranja"
529
 
530
  #. translators: widget title
531
- #: ad-inserter.php:8101 ad-inserter.php:8136
532
  msgid "Dummy widget"
533
  msgstr "Prazen gradnik"
534
 
535
  #. translators: widget title
536
- #: ad-inserter.php:8103 ad-inserter.php:8134
537
  msgid "Debugging tools"
538
  msgstr "Orodja za razhroščevanje"
539
 
540
  #. translators: block status (widget title)
541
- #: ad-inserter.php:8110
542
  msgctxt "block"
543
  msgid "PAUSED"
544
  msgstr "USTAVLJEN"
545
 
546
- #: ad-inserter.php:8111
547
  msgid "WIDGET DISABLED"
548
  msgstr "GRADNIK ONEMOGOČEN"
549
 
550
- #: ad-inserter.php:8112
551
  msgid "Unknown block"
552
  msgstr "Neznan blok"
553
 
554
- #: ad-inserter.php:8121 includes/functions.php:2721 settings.php:1045
555
  msgid "Title"
556
  msgstr "Naslov"
557
 
558
- #: ad-inserter.php:8143
559
  msgctxt "Widget"
560
  msgid "Sticky"
561
  msgstr "Lepljiv"
562
 
563
- #: ad-inserter.php:8192
564
  msgid ""
565
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
566
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -569,7 +569,7 @@ msgstr ""
569
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
570
  "Inserter Pro."
571
 
572
- #: ad-inserter.php:8193
573
  msgid ""
574
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
575
  "will clear all settings that are available only in the Pro version "
@@ -604,11 +604,11 @@ msgstr "Pred prispevkom"
604
  msgid "After post"
605
  msgstr "Za prispevkom"
606
 
607
- #: class.php:1957 settings.php:1631 settings.php:3691
608
  msgid "Widget"
609
  msgstr "Gradnik"
610
 
611
- #: class.php:1962 settings.php:3689
612
  msgid "PHP function call"
613
  msgstr "Klic PHP funkcije"
614
 
@@ -669,27 +669,27 @@ msgstr "države='%s' tip='%s'"
669
  msgid "ip addresses='%s' type='%s'"
670
  msgstr "ip naslovi='%s' tip='%s'"
671
 
672
- #: class.php:2944 strings.php:231
673
  msgid "BEFORE"
674
  msgstr "PRED"
675
 
676
- #: class.php:2952 strings.php:233
677
  msgid "PREPEND CONTENT"
678
  msgstr "DODAJ PRED VSEBINO"
679
 
680
- #: class.php:2956 strings.php:234
681
  msgid "APPEND CONTENT"
682
  msgstr "DODAJ ZA VSEBINO"
683
 
684
- #: class.php:2960 strings.php:235
685
  msgid "REPLACE CONTENT"
686
  msgstr "NADOMESTI VSEBINO"
687
 
688
- #: class.php:2964 strings.php:236
689
  msgid "REPLACE ELEMENT"
690
  msgstr "NADOMESTI ELEMENT"
691
 
692
- #: class.php:2975 strings.php:232
693
  msgid "AFTER"
694
  msgstr "ZA"
695
 
@@ -702,12 +702,12 @@ msgstr "skripta"
702
  msgid "for"
703
  msgstr "za"
704
 
705
- #: class.php:5585 class.php:5637
706
  msgctxt "category name"
707
  msgid "Uncategorized"
708
  msgstr "Nekategorizirano"
709
 
710
- #: class.php:6130
711
  msgid ""
712
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
713
  "extension for PHP."
@@ -716,7 +716,7 @@ msgstr ""
716
  "namestiti DOM razširitev za PHP."
717
 
718
  #: includes/editor.php:7 includes/placeholders.php:352
719
- #: includes/preview.php:1962 strings.php:238
720
  msgid "Use"
721
  msgstr "Uporabi"
722
 
@@ -725,7 +725,7 @@ msgid "Reset"
725
  msgstr "Ponastavi"
726
 
727
  #: includes/editor.php:9 includes/placeholders.php:354
728
- #: includes/preview.php:1965 strings.php:201 strings.php:237
729
  msgid "Cancel"
730
  msgstr "Prekliči"
731
 
@@ -817,7 +817,7 @@ msgstr ""
817
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
818
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
819
 
820
- #: includes/functions.php:422 settings.php:1201 settings.php:2500
821
  msgid "Open HTML element selector"
822
  msgstr "Odpri izbirnik HTML elementa"
823
 
@@ -952,8 +952,8 @@ msgstr "Sledenje za ta blok je onemogočeno"
952
  msgid "Double click to toggle controls in public reports"
953
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
954
 
955
- #: includes/functions.php:749 settings.php:3185 settings.php:3221
956
- #: settings.php:3264 strings.php:211
957
  msgid "Loading..."
958
  msgstr "Nalagam..."
959
 
@@ -969,51 +969,51 @@ msgstr ""
969
  msgid "Auto refresh data for the selected range every 60 seconds"
970
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
971
 
972
- #: includes/functions.php:777 includes/functions.php:4734
973
  msgid "Load data for last month"
974
  msgstr "Naloži podatke za zadnji mesec"
975
 
976
- #: includes/functions.php:777 includes/functions.php:4734
977
  msgid "Last Month"
978
  msgstr "Zadnji Mesec"
979
 
980
- #: includes/functions.php:780 includes/functions.php:4737
981
  msgid "Load data for this month"
982
  msgstr "Naloži podatke za ta mesec"
983
 
984
- #: includes/functions.php:780 includes/functions.php:4737
985
  msgid "This Month"
986
  msgstr "Ta Mesec"
987
 
988
- #: includes/functions.php:783 includes/functions.php:4740
989
  msgid "Load data for this year"
990
  msgstr "Naloži podatke za to leto"
991
 
992
- #: includes/functions.php:783 includes/functions.php:4740
993
  msgid "This Year"
994
  msgstr "To Leto"
995
 
996
- #: includes/functions.php:786 includes/functions.php:4743
997
  msgid "Load data for the last 15 days"
998
  msgstr "Naloži podatke za zadnjih 15 dni"
999
 
1000
- #: includes/functions.php:789 includes/functions.php:4746
1001
  msgid "Load data for the last 30 days"
1002
  msgstr "Naloži podatke za zadnjih 30 dni"
1003
 
1004
- #: includes/functions.php:792 includes/functions.php:4749
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
- #: includes/functions.php:795 includes/functions.php:4752
1009
  msgid "Load data for the last 180 days"
1010
  msgstr "Naloži podatke za zadnjih 180 dni"
1011
 
1012
- #: includes/functions.php:798 includes/functions.php:4755
1013
  msgid "Load data for the last 365 days"
1014
  msgstr "Naloži podatke za zadnjih 365 dni"
1015
 
1016
- #: includes/functions.php:808 includes/functions.php:4765
1017
  msgid "Load data for the selected range"
1018
  msgstr "Naloži podatke za izbrano obdobje"
1019
 
@@ -1292,7 +1292,7 @@ msgid "Preview iframe code"
1292
  msgstr "Predpreglej kodo iframe"
1293
 
1294
  #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1295
- #: settings.php:2562
1296
  msgid "Preview"
1297
  msgstr "Predogled"
1298
 
@@ -1392,8 +1392,12 @@ msgid "countries"
1392
  msgstr "države"
1393
 
1394
  #: includes/functions.php:2526
1395
- msgid "Enable tracking"
1396
- msgstr "Omogoči sledenje"
 
 
 
 
1397
 
1398
  #: includes/functions.php:2533
1399
  msgid "Generate report"
@@ -1403,7 +1407,7 @@ msgstr "Generiraj poročilo"
1403
  msgid "Impression and Click Tracking"
1404
  msgstr "Sledenje Prikazov in Klikov"
1405
 
1406
- #: includes/functions.php:2542 settings.php:2450
1407
  msgctxt "ad blocking detection"
1408
  msgid "NOT ENABLED"
1409
  msgstr "NI OMOGOČENO"
@@ -1470,7 +1474,7 @@ msgstr ""
1470
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1471
  "ponastavitev na privzeto sliko."
1472
 
1473
- #: includes/functions.php:2644 strings.php:223
1474
  msgid "Select or upload header image"
1475
  msgstr "Izberi ali naloži sliko glave"
1476
 
@@ -1536,7 +1540,7 @@ msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1536
  msgid "Clear all exceptions for all blocks"
1537
  msgstr "Pobriši vse izjeme za vse bloke"
1538
 
1539
- #: includes/functions.php:2721 settings.php:3423 settings.php:3761
1540
  msgid "Type"
1541
  msgstr "Vrsta"
1542
 
@@ -1611,7 +1615,7 @@ msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1611
  msgid "Main site settings used for all blogs"
1612
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1613
 
1614
- #: includes/functions.php:2831 settings.php:2449
1615
  msgid "Ad Blocking Detection"
1616
  msgstr "Zaznavanje Blokiranja Oglasov"
1617
 
@@ -1739,44 +1743,40 @@ msgid "Average"
1739
  msgstr "Povprečni"
1740
 
1741
  #. Translators: %s: Ad Inserter Pro
1742
- #: includes/functions.php:4327
 
1743
  msgid "%s Report"
1744
  msgstr "%s Poročilo"
1745
 
1746
- #. translators: for report range description
1747
- #: includes/functions.php:4418 includes/functions.php:4679 strings.php:178
1748
- msgid "Ad Inserter Pro Report"
1749
- msgstr "Ad Inserter Pro Poročilo"
1750
-
1751
- #: includes/functions.php:4585
1752
  msgid "for last month"
1753
  msgstr "za zadnji mesec"
1754
 
1755
- #: includes/functions.php:4590
1756
  msgid "for this month"
1757
  msgstr "za ta mesec"
1758
 
1759
- #: includes/functions.php:4595
1760
  msgid "for this year"
1761
  msgstr "za to leto"
1762
 
1763
- #: includes/functions.php:4600
1764
  msgid "for the last 15 days"
1765
  msgstr "za zadnjih 15 dni"
1766
 
1767
- #: includes/functions.php:4605
1768
  msgid "for the last 30 days"
1769
  msgstr "za zadnjih 30 dni"
1770
 
1771
- #: includes/functions.php:4610
1772
  msgid "for the last 90 days"
1773
  msgstr "za zadnjih 90 dni"
1774
 
1775
- #: includes/functions.php:4615
1776
  msgid "for the last 180 days"
1777
  msgstr "za zadnjih 180 dni"
1778
 
1779
- #: includes/functions.php:4620
1780
  msgid "for the last 365 days"
1781
  msgstr "za zadnjih 365 dni"
1782
 
@@ -1804,7 +1804,7 @@ msgstr "Zapri urejevalnik polnila"
1804
  msgid "Placeholder"
1805
  msgstr "Polnilo"
1806
 
1807
- #: includes/placeholders.php:363 settings.php:808 settings.php:3762
1808
  msgid "Size"
1809
  msgstr "Velikost"
1810
 
@@ -1937,11 +1937,11 @@ msgstr "Prekliči"
1937
  msgid "Ad Blocking Detected Message Preview"
1938
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1939
 
1940
- #: includes/preview-adb.php:348 settings.php:2575
1941
  msgid "Message CSS"
1942
  msgstr "CSS sporočila"
1943
 
1944
- #: includes/preview-adb.php:353 settings.php:2583
1945
  msgid "Overlay CSS"
1946
  msgstr "CSS prevleke"
1947
 
@@ -1982,7 +1982,7 @@ msgid "background"
1982
  msgstr "ozadje"
1983
 
1984
  #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1985
- #: settings.php:3688
1986
  msgid "Alignment"
1987
  msgstr "Poravnava"
1988
 
@@ -2258,7 +2258,7 @@ msgstr ""
2258
  msgid "General Settings"
2259
  msgstr "Splošne Nastavitve"
2260
 
2261
- #: settings.php:592 settings.php:2321 settings.php:2379 settings.php:2555
2262
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2263
  msgstr ""
2264
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
@@ -2295,7 +2295,7 @@ msgstr "Pokaži oglasne enote AdSense"
2295
  msgid "Clear block"
2296
  msgstr "Počisti blok"
2297
 
2298
- #: settings.php:658 settings.php:3656
2299
  msgid "Copy block"
2300
  msgstr "Kopiraj blok"
2301
 
@@ -2482,7 +2482,7 @@ msgstr ""
2482
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2483
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2484
 
2485
- #: settings.php:985 settings.php:3072
2486
  msgid "Posts"
2487
  msgstr "Prispevki"
2488
 
@@ -2496,7 +2496,7 @@ msgstr ""
2496
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2497
  "lahko odvisni od ročic, ki jih tema uporablja)"
2498
 
2499
- #: settings.php:990 settings.php:3074
2500
  msgid "Homepage"
2501
  msgstr "Domača stran"
2502
 
@@ -2504,7 +2504,7 @@ msgstr "Domača stran"
2504
  msgid "Enable insertion on category blog pages (including sub-pages)"
2505
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2506
 
2507
- #: settings.php:995 settings.php:3075
2508
  msgid "Category pages"
2509
  msgstr "Strani kategorij"
2510
 
@@ -2525,7 +2525,7 @@ msgstr ""
2525
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2526
  "izjem."
2527
 
2528
- #: settings.php:1013 settings.php:3073
2529
  msgid "Static pages"
2530
  msgstr "Statične strani"
2531
 
@@ -2533,7 +2533,7 @@ msgstr "Statične strani"
2533
  msgid "Enable insertion on search blog pages"
2534
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2535
 
2536
- #: settings.php:1018 settings.php:3077
2537
  msgid "Search pages"
2538
  msgstr "Iskalne strani"
2539
 
@@ -2654,7 +2654,7 @@ msgstr "HTML element"
2654
  msgid "HTML element selector or comma separated list of selectors"
2655
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2656
 
2657
- #: settings.php:1216 settings.php:2460
2658
  msgid "Action"
2659
  msgstr "Akcija"
2660
 
@@ -2942,7 +2942,7 @@ msgid "Enable shortcode for manual insertion of this block in posts and pages"
2942
  msgstr ""
2943
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2944
 
2945
- #: settings.php:1643 settings.php:3690
2946
  msgid "Shortcode"
2947
  msgstr "Kratka koda"
2948
 
@@ -3379,7 +3379,7 @@ msgstr "Predogled kode za ovijanje blokov"
3379
  msgid "Wrapping div"
3380
  msgstr "div za ovijanje"
3381
 
3382
- #: settings.php:2245 settings.php:2666
3383
  msgid "BLOCK CODE"
3384
  msgstr "KODA BLOKA"
3385
 
@@ -3434,7 +3434,7 @@ msgstr "Prednost za ročico (privzeta je 10)"
3434
  msgid "Enable insertion of this code into HTML page header"
3435
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3436
 
3437
- #: settings.php:2330 settings.php:2388 settings.php:2560
3438
  msgid "Process PHP code"
3439
  msgstr "Procesiraj PHP kodo"
3440
 
@@ -3451,11 +3451,11 @@ msgctxt "code in the header"
3451
  msgid "NOT ENABLED"
3452
  msgstr "NI OMOGOČENA"
3453
 
3454
- #: settings.php:2356 settings.php:2414
3455
  msgid "Use server-side detection to insert code only for"
3456
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3457
 
3458
- #: settings.php:2369
3459
  msgid ""
3460
  "Enable insertion of this code into HTML page header on page for Error 404: "
3461
  "Page not found"
@@ -3463,29 +3463,29 @@ msgstr ""
3463
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3464
  "obstaja"
3465
 
3466
- #: settings.php:2369 settings.php:2427
3467
  msgid "Insert on Error 404 page"
3468
  msgstr "Vstavi na strani Napake 404"
3469
 
3470
- #: settings.php:2384
3471
  msgid "Enable insertion of this code into HTML page footer"
3472
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3473
 
3474
- #: settings.php:2392
3475
  msgid "HTML Page Footer Code"
3476
  msgstr "Koda v Nogi HTML Strani"
3477
 
3478
  #. translators: %s: HTML tags
3479
- #: settings.php:2400
3480
  msgid "Code before the %s tag of the the HTML page"
3481
  msgstr "Koda pred %s značko HTML strani"
3482
 
3483
- #: settings.php:2401
3484
  msgctxt "code in the footer"
3485
  msgid "NOT ENABLED"
3486
  msgstr "NI OMOGOČENA"
3487
 
3488
- #: settings.php:2427
3489
  msgid ""
3490
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3491
  "Page not found"
@@ -3493,32 +3493,32 @@ msgstr ""
3493
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3494
  "Stran ne obstaja"
3495
 
3496
- #: settings.php:2440
3497
  msgid "Code for ad blocking detection inserted. Click for details."
3498
  msgstr ""
3499
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3500
 
3501
- #: settings.php:2445
3502
  msgid "Enable detection of ad blocking"
3503
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3504
 
3505
- #: settings.php:2463
3506
  msgid "Global action when ad blocking is detected"
3507
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3508
 
3509
- #: settings.php:2469
3510
  msgid "No action for"
3511
  msgstr "Ni akcije za"
3512
 
3513
- #: settings.php:2470
3514
  msgid "Exceptions for global action when ad blocking is detected."
3515
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3516
 
3517
- #: settings.php:2480
3518
  msgid "Delay Action"
3519
  msgstr "Zakasni Akcijo"
3520
 
3521
- #: settings.php:2483
3522
  msgid ""
3523
  "Number of page views to delay action when ad blocking is detected. Leave "
3524
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3527,16 +3527,16 @@ msgstr ""
3527
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3528
  "strani). Nastavi piškotek."
3529
 
3530
- #: settings.php:2483
3531
  msgctxt "Delay Action for x "
3532
  msgid "page views"
3533
  msgstr "ogledov strani"
3534
 
3535
- #: settings.php:2488
3536
  msgid "No Action Period"
3537
  msgstr "Obdobje Brez Akcije"
3538
 
3539
- #: settings.php:2491
3540
  msgid ""
3541
  "Number of days to supress action when ad blocking is detected. Leave empty "
3542
  "for no no-action period (action fires always after defined page view delay). "
@@ -3546,16 +3546,16 @@ msgstr ""
3546
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3547
  "strani). Nastavi piškotek."
3548
 
3549
- #: settings.php:2491
3550
  msgctxt "no action period"
3551
  msgid "days"
3552
  msgstr "dni"
3553
 
3554
- #: settings.php:2496
3555
  msgid "Custom Selectors"
3556
  msgstr "Selektorji Po Meri"
3557
 
3558
- #: settings.php:2499
3559
  msgid ""
3560
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3561
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3565,15 +3565,15 @@ msgstr ""
3565
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3566
  "pomeni prisotnost blokiranja oglasov."
3567
 
3568
- #: settings.php:2511
3569
  msgid "Redirection Page"
3570
  msgstr "Stran za Preusmeritev"
3571
 
3572
- #: settings.php:2523
3573
  msgid "Custom Url"
3574
  msgstr "Url Po Meri"
3575
 
3576
- #: settings.php:2528
3577
  msgid ""
3578
  "Static page for redirection when ad blocking is detected. For other pages "
3579
  "select Custom url and set it below."
@@ -3581,35 +3581,35 @@ msgstr ""
3581
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3582
  "strani izberite Url Po Meri in ga nastavite spodaj."
3583
 
3584
- #: settings.php:2537
3585
  msgid "Custom Redirection Url"
3586
  msgstr "Url za Preusmeritev Po Meri"
3587
 
3588
- #: settings.php:2549
3589
  msgid "Message HTML code"
3590
  msgstr "HTML koda sporočila"
3591
 
3592
- #: settings.php:2562
3593
  msgid "Preview message when ad blocking is detected"
3594
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3595
 
3596
- #: settings.php:2591
3597
  msgid "Prevent visitors from closing the warning message"
3598
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3599
 
3600
- #: settings.php:2591
3601
  msgid "Undismissible Message"
3602
  msgstr "Neodstranljivo Sporočilo"
3603
 
3604
- #: settings.php:2597
3605
  msgid "Not undismissible for"
3606
  msgstr "Ni neodstranljivo za"
3607
 
3608
- #: settings.php:2598
3609
  msgid "Users which can close the warning message."
3610
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3611
 
3612
- #: settings.php:2612
3613
  msgid ""
3614
  "Force showing admin toolbar for administrators when viewing site. Enable "
3615
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3618,84 +3618,84 @@ msgstr ""
3618
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3619
  "skrbnike."
3620
 
3621
- #: settings.php:2620
3622
  msgid "Disable header code (Header tab)"
3623
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3624
 
3625
- #: settings.php:2624
3626
  msgid "Disable footer code (Footer tab)"
3627
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3628
 
3629
  #. translators: %s: Ad Inserter
3630
- #: settings.php:2628
3631
  msgid "Disable %s JavaScript code"
3632
  msgstr "Onemogoči %s JavaScript kodo"
3633
 
3634
  #. translators: %s: Ad Inserter
3635
- #: settings.php:2632
3636
  msgid "Disable %s CSS code"
3637
  msgstr "Onemogoči %s CSS kodo"
3638
 
3639
- #: settings.php:2636
3640
  msgid ""
3641
  "Disable PHP code processing (in all blocks including header and footer code)"
3642
  msgstr ""
3643
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3644
 
3645
- #: settings.php:2640
3646
  msgid "Disable insertion of all blocks"
3647
  msgstr "Onemogoči vstavljanje vseh blokov"
3648
 
3649
- #: settings.php:2644
3650
  msgid "Disable insertions"
3651
  msgstr "Onemogoči vstavljanja"
3652
 
3653
  #. translators: %s: Ad Inserter
3654
- #: settings.php:2656
3655
  msgid "%s CSS CODE"
3656
  msgstr "%s CSS KODA"
3657
 
3658
- #: settings.php:2659
3659
  msgid "HEADER CODE"
3660
  msgstr "KODA GLAVE"
3661
 
3662
  #. translators: %s: PHP tags
3663
- #: settings.php:2665
3664
  msgid "BLOCK PHP CODE"
3665
  msgstr "PHP KODA BLOKA"
3666
 
3667
  #. translators: %s: Ad Inserter
3668
- #: settings.php:2671
3669
  msgid "%s JS CODE"
3670
  msgstr "%s JS KODA"
3671
 
3672
- #: settings.php:2674
3673
  msgid "FOOTER CODE"
3674
  msgstr "KODA NOGE"
3675
 
3676
- #: settings.php:2683
3677
  msgid "Force showing admin toolbar when viewing site"
3678
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3679
 
3680
- #: settings.php:2690
3681
  msgid "Enable debugging functions in admin toolbar"
3682
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3683
 
3684
- #: settings.php:2692
3685
  msgid "Debugging functions in admin toolbar"
3686
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3687
 
3688
- #: settings.php:2699
3689
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3690
  msgstr ""
3691
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3692
  "zaslonih"
3693
 
3694
- #: settings.php:2701
3695
  msgid "Debugging functions on mobile screens"
3696
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3697
 
3698
- #: settings.php:2708
3699
  msgid ""
3700
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3701
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3710,11 +3710,11 @@ msgstr ""
3710
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3711
  "vedno omogočeno."
3712
 
3713
- #: settings.php:2710
3714
  msgid "Remote debugging"
3715
  msgstr "Oddaljeno razhroščevanje"
3716
 
3717
- #: settings.php:2717
3718
  msgid ""
3719
  "Disable translation to see original texts for the settings and messages in "
3720
  "English"
@@ -3722,179 +3722,179 @@ msgstr ""
3722
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3723
  "angleščini"
3724
 
3725
- #: settings.php:2719
3726
  msgid "Disable translation"
3727
  msgstr "Onemogoči prevod"
3728
 
3729
- #: settings.php:3060
3730
  msgid "Available positions for current theme"
3731
  msgstr "Razpoložljivi položaji za trenutno temo"
3732
 
3733
- #: settings.php:3061
3734
  msgid "Error checking pages"
3735
  msgstr "Napaka pri preverjanju strani"
3736
 
3737
- #: settings.php:3064
3738
  msgid "Toggle theme checker for available positions for automatic insertion"
3739
  msgstr ""
3740
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3741
 
3742
- #: settings.php:3064
3743
  msgctxt "Button"
3744
  msgid "Check"
3745
  msgstr "Preveri"
3746
 
3747
- #: settings.php:3071
3748
  msgid "Position"
3749
  msgstr "Položaj"
3750
 
3751
- #: settings.php:3076
3752
  msgid "Archive pages"
3753
  msgstr "Strani arhiva"
3754
 
3755
- #: settings.php:3135
3756
  msgid ""
3757
  "Position not available because output buffering (tab [*]) is not enabled"
3758
  msgstr ""
3759
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3760
 
3761
- #: settings.php:3138 strings.php:219
3762
  msgid "Position not checked yet"
3763
  msgstr "Položaj še ni bil preverjen"
3764
 
3765
- #: settings.php:3169
3766
  msgid "Toggle active/all blocks"
3767
  msgstr "Preklopi aktive/vse bloke"
3768
 
3769
- #: settings.php:3173 strings.php:206
3770
  msgid "Rearrange block order"
3771
  msgstr "Preuredi vrstni red blokov"
3772
 
3773
- #: settings.php:3178
3774
  msgid "Save new block order"
3775
  msgstr "Shrani vrstni red blokov"
3776
 
3777
- #: settings.php:3178
3778
  msgid "Save Changes"
3779
  msgstr "Sharani Nastavitve"
3780
 
3781
- #: settings.php:3203
3782
  msgid "Toggle active/all ad units"
3783
  msgstr "Preklopi aktivne/vse oglasne enote"
3784
 
3785
- #: settings.php:3207
3786
  msgid "Reload AdSense ad units"
3787
  msgstr "Ponovno naloži oglasne enote AdSense"
3788
 
3789
- #: settings.php:3211
3790
  msgid "Clear authorization to access AdSense account"
3791
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3792
 
3793
- #: settings.php:3215 settings.php:3847 settings.php:3914 strings.php:214
3794
  msgid "Google AdSense Homepage"
3795
  msgstr "Google AdSense Domača Stran"
3796
 
3797
- #: settings.php:3238
3798
  msgid "Reload ads.txt file"
3799
  msgstr "Ponovno naloži datoteko ads.txt"
3800
 
3801
  #. translators: %s: ads.txt
3802
- #: settings.php:3242
3803
  msgid "Open %s"
3804
  msgstr "Odpri %s"
3805
 
3806
- #: settings.php:3246
3807
  msgid "Switch to table view"
3808
  msgstr "Preklopi na tabelarični pogled"
3809
 
3810
- #: settings.php:3250
3811
  msgid "Switch to editor"
3812
  msgstr "Preklopi na urejevalnik"
3813
 
3814
- #: settings.php:3254
3815
  msgid "Save ads.txt file"
3816
  msgstr "Shrani datoteko ads.txt"
3817
 
3818
- #: settings.php:3389 settings.php:3397 strings.php:199
3819
  msgid "Warning"
3820
  msgstr "Opozorilo"
3821
 
3822
- #: settings.php:3389
3823
  msgid "ads.txt file must be placed on the root domain"
3824
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3825
 
3826
  #. translators: %s: file path
3827
- #: settings.php:3390
3828
  msgid "WordPress is installed in %s"
3829
  msgstr "WordPress je nameščen v %s"
3830
 
3831
- #: settings.php:3391
3832
  msgid "Showing file"
3833
  msgstr "Prikazana datoteka"
3834
 
3835
- #: settings.php:3397
3836
  msgid "File %s not found"
3837
  msgstr "Datoteka %s ni najdena"
3838
 
3839
- #: settings.php:3404
3840
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3841
  msgstr ""
3842
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3843
 
3844
- #: settings.php:3421
3845
  msgid "Advertising system"
3846
  msgstr "Oglaševalski sistem"
3847
 
3848
- #: settings.php:3422
3849
  msgid "Account ID"
3850
  msgstr "ID Računa"
3851
 
3852
- #: settings.php:3424
3853
  msgid "Certification authority ID"
3854
  msgstr "ID organa za potrjevanje"
3855
 
3856
- #: settings.php:3439
3857
  msgid "Account ID found in block and present in ads.txt"
3858
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3859
 
3860
- #: settings.php:3443
3861
  msgid "Account ID found in block but not present in ads.txt"
3862
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3863
 
3864
- #: settings.php:3659
3865
  msgid "Preview block"
3866
  msgstr "Predogled bloka"
3867
 
3868
- #: settings.php:3668
3869
  msgid "Insertion disabled"
3870
  msgstr "Vstavljanje onemogočeno"
3871
 
3872
- #: settings.php:3692
3873
  msgid "Widget positions"
3874
  msgstr "Položaji gradnikov"
3875
 
3876
- #: settings.php:3758
3877
  msgid "Ad unit"
3878
  msgstr "Enota"
3879
 
3880
- #: settings.php:3760
3881
  msgid "Slot ID"
3882
  msgstr "ID mesta"
3883
 
3884
- #: settings.php:3786
3885
  msgid "Copy AdSense code"
3886
  msgstr "Kopiraj kodo AdSense"
3887
 
3888
- #: settings.php:3789
3889
  msgid "Preview AdSense ad"
3890
  msgstr "Predogled oglasa AdSense"
3891
 
3892
- #: settings.php:3792
3893
  msgid "Get AdSense code"
3894
  msgstr "Pridobi kodo AdSense"
3895
 
3896
  #. translators: %s: HTML tags
3897
- #: settings.php:3824
3898
  msgid ""
3899
  "Please %s clear authorization %s with the button %s above and once again "
3900
  "authorize access to your AdSense account."
@@ -3902,16 +3902,16 @@ msgstr ""
3902
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3903
  "avtorizirajte dostop do vašega računa AdSense."
3904
 
3905
- #: settings.php:3843
3906
  msgid "AdSense Integration"
3907
  msgstr "Integracija AdSense"
3908
 
3909
- #: settings.php:3845
3910
  msgid "AdSense Integration - Step 2"
3911
  msgstr "Integracija AdSense - Korak 2"
3912
 
3913
  #. translators: %s: HTML tags
3914
- #: settings.php:3851
3915
  msgid ""
3916
  "Authorize %s to access your AdSense account. Click on the %s Get "
3917
  "Authorization Code %s button to open a new window where you can allow "
@@ -3924,7 +3924,7 @@ msgstr ""
3924
  "Avtoriziraj. %s"
3925
 
3926
  #. translators: %s: HTML tags
3927
- #: settings.php:3858
3928
  msgid ""
3929
  "If you get error, can't access ad units or would like to use own Google API "
3930
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3935,7 +3935,7 @@ msgstr ""
3935
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3936
 
3937
  #. translators: %s: HTML tags
3938
- #: settings.php:3860
3939
  msgid ""
3940
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3941
  "Authorization Code %s button to open a new window where you can allow "
@@ -3948,7 +3948,7 @@ msgstr ""
3948
  "gumb %s Avtoriziraj. %s"
3949
 
3950
  #. translators: %s: HTML tags
3951
- #: settings.php:3867
3952
  msgid ""
3953
  "If you get error %s invalid client %s click on the button %s Clear and "
3954
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -3956,32 +3956,32 @@ msgstr ""
3956
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3957
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3958
 
3959
- #: settings.php:3878
3960
  msgid "Get Authorization Code"
3961
  msgstr "Pridobi Avtoriazcijsko Kodo"
3962
 
3963
- #: settings.php:3881
3964
  msgid "Enter Authorization Code"
3965
  msgstr "Vnesi Avorizacijsko Kodo"
3966
 
3967
- #: settings.php:3891
3968
  msgid "Use own API IDs"
3969
  msgstr "Uporabi lastne API ID-je"
3970
 
3971
- #: settings.php:3893
3972
  msgid "Clear and return to Step 1"
3973
  msgstr "Odstrani in se vrni na Korak 1"
3974
 
3975
- #: settings.php:3897
3976
  msgid "Authorize"
3977
  msgstr "Avtoriziraj"
3978
 
3979
- #: settings.php:3913
3980
  msgid "AdSense Integration - Step 1"
3981
  msgstr "Integracija AdSense - Korak 1"
3982
 
3983
  #. translators: %s: Ad Inserter
3984
- #: settings.php:3917
3985
  msgid ""
3986
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3987
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3994,12 +3994,12 @@ msgstr ""
3994
  "Klienta in Skrivnost Klienta."
3995
 
3996
  #. translators: %s: HTML tags
3997
- #: settings.php:3926
3998
  msgid "Go to %s Google APIs and Services console %s"
3999
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4000
 
4001
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4002
- #: settings.php:3927
4003
  msgid ""
4004
  "Create %1$s project - if the project and IDs are already created click on "
4005
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4008,7 +4008,7 @@ msgstr ""
4008
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4009
 
4010
  #. translators: %s: HTML tags
4011
- #: settings.php:3928
4012
  msgid ""
4013
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4014
  "create a new project"
@@ -4017,12 +4017,12 @@ msgstr ""
4017
  "ustvaritev novega projekta"
4018
 
4019
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4020
- #: settings.php:3929
4021
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4022
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4023
 
4024
  #. translators: %s: HTML tags
4025
- #: settings.php:3930
4026
  msgid ""
4027
  "Click on project selection, wait for the project to be created and then and "
4028
  "select %s as the current project"
@@ -4031,39 +4031,39 @@ msgstr ""
4031
  "izberite %s kot trenutni projekt"
4032
 
4033
  #. translators: %s: HTML tags
4034
- #: settings.php:3931
4035
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4036
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4037
 
4038
  #. translators: %s: HTML tags
4039
- #: settings.php:3932
4040
  msgid "Search for adsense and enable %s"
4041
  msgstr "Poiščite adsense in omogočite %s"
4042
 
4043
  #. translators: %s: HTML tags
4044
- #: settings.php:3933
4045
  msgid "Click on %s CREATE CREDENTIALS %s"
4046
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4047
 
4048
  #. translators: %s: HTML tags
4049
- #: settings.php:3934
4050
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4051
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4052
 
4053
  #. translators: %s: HTML tags
4054
- #: settings.php:3935
4055
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4056
  msgstr ""
4057
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4058
  "podatki %s"
4059
 
4060
  #. translators: %s: HTML tags
4061
- #: settings.php:3936
4062
  msgid "Click on %s What credentials do I need? %s"
4063
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4064
 
4065
  #. translators: %s: HTML tags
4066
- #: settings.php:3937
4067
  msgid ""
4068
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4069
  "Ad Inserter client %s"
@@ -4072,7 +4072,7 @@ msgstr ""
4072
  "%s Ad Inserter klient %s"
4073
 
4074
  #. translators: %s: HTML tags
4075
- #: settings.php:3938
4076
  msgid ""
4077
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4078
  "enter %s"
@@ -4081,17 +4081,17 @@ msgstr ""
4081
  "uporabnikom %s vnesite %s"
4082
 
4083
  #. translators: %s: HTML tags
4084
- #: settings.php:3939
4085
  msgid "Click on %s Continue %s"
4086
  msgstr "Kliknite na %s Nadaljuj %s"
4087
 
4088
  #. translators: %s: HTML tags
4089
- #: settings.php:3940
4090
  msgid "Click on %s Done %s"
4091
  msgstr "Kliknite na %s Končaj %s"
4092
 
4093
  #. translators: %s: HTML tags
4094
- #: settings.php:3941
4095
  msgid ""
4096
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4097
  "secret %s"
@@ -4099,58 +4099,58 @@ msgstr ""
4099
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4100
  "Skrivnost klienta %s"
4101
 
4102
- #: settings.php:3942
4103
  msgid "Copy them to the appropriate fields below"
4104
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4105
 
4106
- #: settings.php:3948
4107
  msgid "Client ID"
4108
  msgstr "ID klienta"
4109
 
4110
- #: settings.php:3951
4111
  msgid "Enter Client ID"
4112
  msgstr "Vnesite ID klienta"
4113
 
4114
- #: settings.php:3956
4115
  msgid "Client secret"
4116
  msgstr "Skrivnost klienta"
4117
 
4118
- #: settings.php:3959
4119
  msgid "Enter Client secret"
4120
  msgstr "Vnesite Skrivnost klienta"
4121
 
4122
- #: settings.php:3969
4123
  msgid "Use default API IDs"
4124
  msgstr "Uporabi privzete API ID-je"
4125
 
4126
- #: settings.php:3974
4127
  msgid "Save"
4128
  msgstr "Shrani"
4129
 
4130
- #: settings.php:4250 settings.php:4263 settings.php:4276 settings.php:4291
4131
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4132
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4133
 
4134
- #: settings.php:4255 settings.php:4268 settings.php:4281 settings.php:4296
4135
- #: settings.php:4474 settings.php:4478 settings.php:4480 settings.php:4496
4136
- #: settings.php:4508 settings.php:4511 settings.php:4517 settings.php:4529
4137
  msgid "Looking for AdSense alternative?"
4138
  msgstr "Iščete alternativo za AdSense?"
4139
 
4140
- #: settings.php:4307
4141
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4142
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4143
 
4144
- #: settings.php:4312 settings.php:4476 settings.php:4488 settings.php:4514
4145
- #: settings.php:4537
4146
  msgid "Use Infolinks ads with Adsense to earn more"
4147
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4148
 
4149
- #: settings.php:4331 settings.php:4369
4150
  msgid "Support plugin development"
4151
  msgstr "Podprite razvoj vtičnika"
4152
 
4153
- #: settings.php:4332 settings.php:4370
4154
  msgid ""
4155
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4156
  "reviewing the plugin on WordPres"
@@ -4158,12 +4158,12 @@ msgstr ""
4158
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4159
  "razširiti novico z oceno vtičnika na WordPress-u"
4160
 
4161
- #: settings.php:4332
4162
  msgctxt "Review ad Inserter"
4163
  msgid "Review"
4164
  msgstr "Oceni"
4165
 
4166
- #: settings.php:4333
4167
  msgid ""
4168
  "Support free Ad Inserter development. If you are making money with Ad "
4169
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4172,16 +4172,16 @@ msgstr ""
4172
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4173
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4174
 
4175
- #: settings.php:4333
4176
  msgid "Donate"
4177
  msgstr "Donirajte"
4178
 
4179
- #: settings.php:4340 settings.php:4385
4180
  msgid "Average rating of the plugin - Thank you!"
4181
  msgstr "Povprečna ocena vtičnika - Hvala!"
4182
 
4183
  #. translators: %s: Ad Inserter, HTML tags
4184
- #: settings.php:4351
4185
  msgid ""
4186
  "You've been using %s for a while now, and I hope you're happy with it. "
4187
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4195,24 +4195,24 @@ msgstr ""
4195
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4196
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4197
 
4198
- #: settings.php:4370
4199
  msgid "Review"
4200
  msgstr "Ocena"
4201
 
4202
- #: settings.php:4374
4203
  msgid "Ad Inserter on Twitter"
4204
  msgstr "Ad Inserter na Twitter-ju"
4205
 
4206
- #: settings.php:4375
4207
  msgid "Ad Inserter on Facebook"
4208
  msgstr "Ad Inserter na Facebook-u"
4209
 
4210
- #: settings.php:4378
4211
  msgid "Follow Ad Inserter"
4212
  msgstr "Sledi Ad Inserter-ju"
4213
 
4214
  #. translators: %s: HTML tags
4215
- #: settings.php:4405
4216
  msgid ""
4217
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4218
  "and %s Common Settings %s pages"
@@ -4221,17 +4221,18 @@ msgstr ""
4221
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4222
 
4223
  #. translators: %s: HTML tags
4224
- #: settings.php:4417
4225
  msgid ""
4226
- "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4227
- "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
 
4228
  msgstr ""
4229
- "%s Novinec z %s AdSense? %s %s %s Povežite vaše spletišče %s - Napredna %s "
4230
- "koda AdSense: %s %s oglasi V viru, %s %s Samodejni oglasi, %s %s AMP oglasi "
4231
- "%s"
4232
 
4233
  #. translators: %s: HTML tags
4234
- #: settings.php:4436
4235
  msgid ""
4236
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4237
  "purchase you refer to us"
@@ -4240,7 +4241,7 @@ msgstr ""
4240
  "nakup, ki nam ga posredujete"
4241
 
4242
  #. translators: %s: HTML tags
4243
- #: settings.php:4443
4244
  msgid ""
4245
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4246
  "diagnose and fix the problem."
@@ -4249,7 +4250,7 @@ msgstr ""
4249
  "navodili za diagnozo in rešitvami za težave."
4250
 
4251
  #. translators: %s: HTML tags
4252
- #: settings.php:4447
4253
  msgid ""
4254
  "If you need any kind of help or support, please do not hesitate to open a "
4255
  "thread on the %s support forum. %s"
@@ -4257,44 +4258,44 @@ msgstr ""
4257
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4258
  "nit na %s podpornem forumu. %s"
4259
 
4260
- #: settings.php:4492 settings.php:4533
4261
  msgid "A/B testing - Track ad impressions and clicks"
4262
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4263
 
4264
- #: settings.php:4500 settings.php:4525
4265
  msgid "Code preview with visual CSS editor"
4266
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4267
 
4268
- #: settings.php:4545
4269
  msgid "Looking for Pro Ad Management plugin?"
4270
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4271
 
4272
- #: settings.php:4546
4273
  msgid "To Optimally Monetize your WordPress website?"
4274
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4275
 
4276
  #. translators: %s HTML tags
4277
- #: settings.php:4549
4278
  msgid "%s AdSense Integration %s"
4279
  msgstr "%s Integracija AdSense %s"
4280
 
4281
  #. translators: %s HTML tags
4282
- #: settings.php:4550
4283
  msgid "Syntax highlighting %s editor %s"
4284
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4285
 
4286
  #. translators: %s HTML tags
4287
- #: settings.php:4551
4288
  msgid "%s Code preview %s with visual CSS editor"
4289
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4290
 
4291
  #. translators: %s HTML tags
4292
- #: settings.php:4552
4293
  msgid "Simple user interface - all settings on a single page"
4294
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4295
 
4296
  #. translators: %s HTML tags
4297
- #: settings.php:4553
4298
  msgid ""
4299
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4300
  "image / excerpt"
@@ -4303,27 +4304,27 @@ msgstr ""
4303
  "%s / sliko / izvlečkom"
4304
 
4305
  #. translators: %s HTML tags
4306
- #: settings.php:4554
4307
  msgid "%s Automatic insertion %s between posts on blog pages"
4308
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4309
 
4310
  #. translators: %s HTML tags
4311
- #: settings.php:4555
4312
  msgid "%s Automatic insertion %s before, between and after comments"
4313
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4314
 
4315
  #. translators: %s HTML tags
4316
- #: settings.php:4556
4317
  msgid "%s Automatic insertion %s after %s or before %s tag"
4318
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4319
 
4320
  #. translators: %s HTML tags
4321
- #: settings.php:4557
4322
  msgid "Automatic insertion at %s custom hook positions %s"
4323
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4324
 
4325
  #. translators: %s HTML tags
4326
- #: settings.php:4558
4327
  msgid ""
4328
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4329
  "selectors)"
@@ -4332,17 +4333,17 @@ msgstr ""
4332
  "selektorjev)"
4333
 
4334
  #. translators: %s HTML tags
4335
- #: settings.php:4559
4336
  msgid "%s Insertion exceptions %s for individual posts and pages"
4337
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4338
 
4339
  #. translators: %s HTML tags
4340
- #: settings.php:4560
4341
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4342
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4343
 
4344
  #. translators: %s HTML tags
4345
- #: settings.php:4561
4346
  msgid ""
4347
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4348
  "scrolls)"
@@ -4351,19 +4352,19 @@ msgstr ""
4351
  "se stran pomika)"
4352
 
4353
  #. translators: %s HTML tags
4354
- #: settings.php:4562
4355
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4356
  msgstr ""
4357
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4358
 
4359
  #. translators: %s HTML tags
4360
- #: settings.php:4563
4361
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4362
  msgstr ""
4363
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4364
 
4365
  #. translators: %s HTML tags
4366
- #: settings.php:4564
4367
  msgid ""
4368
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4369
  "visible)"
@@ -4372,7 +4373,7 @@ msgstr ""
4372
  "postane viden)"
4373
 
4374
  #. translators: %s HTML tags
4375
- #: settings.php:4565
4376
  msgid ""
4377
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4378
  msgstr ""
@@ -4380,12 +4381,12 @@ msgstr ""
4380
  "strani)"
4381
 
4382
  #. translators: %s HTML tags
4383
- #: settings.php:4566
4384
  msgid "Block %s alignment and style %s customizations"
4385
  msgstr "%s Poravnave in slogi %s bloka po meri"
4386
 
4387
  #. translators: %s HTML tags
4388
- #: settings.php:4567
4389
  msgid ""
4390
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4391
  "TOS)"
@@ -4393,7 +4394,7 @@ msgstr ""
4393
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4394
 
4395
  #. translators: %s HTML tags
4396
- #: settings.php:4568
4397
  msgid ""
4398
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4399
  "feeds"
@@ -4402,17 +4403,17 @@ msgstr ""
4402
  "virih"
4403
 
4404
  #. translators: %s HTML tags
4405
- #: settings.php:4569
4406
  msgid "%s Ad rotation %s (works also with caching)"
4407
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4408
 
4409
  #. translators: %s HTML tags
4410
- #: settings.php:4570
4411
  msgid "Create, edit and check %s ads.txt %s file"
4412
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4413
 
4414
  #. translators: %s HTML tags
4415
- #: settings.php:4571
4416
  msgid ""
4417
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4418
  "AdSense)"
@@ -4421,76 +4422,76 @@ msgstr ""
4421
  "AdSense)"
4422
 
4423
  #. translators: %s HTML tags
4424
- #: settings.php:4572
4425
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4426
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4427
 
4428
  #. translators: %s HTML tags
4429
- #: settings.php:4573
4430
  msgid "%s Public web reports %s for clients, export to PDF"
4431
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4432
 
4433
  #. translators: %s HTML tags
4434
- #: settings.php:4574
4435
  msgid "Support for %s A/B testing %s"
4436
  msgstr "Podpora za %s A/B testiranje %s"
4437
 
4438
  #. translators: %s HTML tags
4439
- #: settings.php:4575
4440
  msgid "Support for %s lazy loading %s"
4441
  msgstr "Podpora za %s leno nalaganje %s"
4442
 
4443
  #. translators: %s HTML tags
4444
- #: settings.php:4576
4445
  msgid "Support for ads on %s AMP pages %s"
4446
  msgstr "Podpora za oglase na %s AMP straneh %s"
4447
 
4448
  #. translators: %s HTML tags
4449
- #: settings.php:4577
4450
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4451
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4452
 
4453
  #. translators: %s HTML tags
4454
- #: settings.php:4578
4455
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4456
  msgstr ""
4457
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4458
 
4459
  #. translators: %s HTML tags
4460
- #: settings.php:4579
4461
  msgid "PHP code processing"
4462
  msgstr "Procesiranje PHP kode"
4463
 
4464
  #. translators: %s HTML tags
4465
- #: settings.php:4580
4466
  msgid "%s Banner %s code generator"
4467
  msgstr "Generator kode za %s pasice %s"
4468
 
4469
  #. translators: %s HTML tags
4470
- #: settings.php:4581
4471
  msgid "Support for %s header and footer %s code"
4472
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4473
 
4474
  #. translators: %s HTML tags
4475
- #: settings.php:4582
4476
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4477
  msgstr ""
4478
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4479
 
4480
  #. translators: %s HTML tags
4481
- #: settings.php:4583
4482
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4483
  msgstr ""
4484
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4485
  "strežnika"
4486
 
4487
  #. translators: %s HTML tags
4488
- #: settings.php:4584
4489
  msgid "Client-side %s mobile device detection %s (works with caching)"
4490
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4491
 
4492
  #. translators: %s HTML tags
4493
- #: settings.php:4585
4494
  msgid ""
4495
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4496
  "protection"
@@ -4499,12 +4500,12 @@ msgstr ""
4499
  "vsebine"
4500
 
4501
  #. translators: %s HTML tags
4502
- #: settings.php:4586
4503
  msgid "%s Ad blocking statistics %s"
4504
  msgstr "%s Statistika blokiranja oglasov %s"
4505
 
4506
  #. translators: %s HTML tags
4507
- #: settings.php:4587
4508
  msgid ""
4509
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4510
  "referers"
@@ -4512,75 +4513,75 @@ msgstr ""
4512
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4513
 
4514
  #. translators: %s HTML tags
4515
- #: settings.php:4588
4516
  msgid ""
4517
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4518
  msgstr ""
4519
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4520
 
4521
  #. translators: %s HTML tags
4522
- #: settings.php:4589
4523
  msgid "%s Multisite options %s to limit settings on the sites"
4524
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4525
 
4526
  #. translators: %s HTML tags
4527
- #: settings.php:4590
4528
  msgid "%s Import/Export %s block or plugin settings"
4529
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4530
 
4531
  #. translators: %s HTML tags
4532
- #: settings.php:4591
4533
  msgid "%s Insertion scheduling %s with fallback option"
4534
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4535
 
4536
  #. translators: %s HTML tags
4537
- #: settings.php:4592
4538
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4539
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4540
 
4541
  #. translators: %s HTML tags
4542
- #: settings.php:4593
4543
  msgid "Simple troubleshooting with many %s debugging functions %s"
4544
  msgstr ""
4545
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4546
 
4547
  #. translators: %s HTML tags
4548
- #: settings.php:4594
4549
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4550
  msgstr ""
4551
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4552
 
4553
  #. translators: %s HTML tags
4554
- #: settings.php:4595
4555
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4556
  msgstr ""
4557
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4558
 
4559
  #. translators: %s HTML tags
4560
- #: settings.php:4596
4561
  msgid ""
4562
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4563
  msgstr ""
4564
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4565
 
4566
  #. translators: %s HTML tags
4567
- #: settings.php:4597
4568
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4569
  msgstr ""
4570
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4571
 
4572
  #. translators: %s HTML tags
4573
- #: settings.php:4598
4574
  msgid "No ads on the settings page"
4575
  msgstr "Stran z nastavitvami brez oglasov"
4576
 
4577
  #. translators: %s HTML tags
4578
- #: settings.php:4599
4579
  msgid "Premium support"
4580
  msgstr "Vrhunska podpora"
4581
 
4582
  #. translators: %s HTML tags
4583
- #: settings.php:4602
4584
  msgid ""
4585
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4586
  "website with many advertising features to automatically insert adverts on "
@@ -4607,82 +4608,82 @@ msgstr ""
4607
  "bodo ohranile)."
4608
 
4609
  #. translators: %s HTML tags
4610
- #: settings.php:4615
4611
  msgid "Looking for %s Pro Ad Management plugin? %s"
4612
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4613
 
4614
  #. translators: %s HTML tags
4615
- #: settings.php:4620
4616
  msgid "Ads between posts"
4617
  msgstr "Oglasi med prispevki"
4618
 
4619
  #. translators: %s HTML tags
4620
- #: settings.php:4621
4621
  msgid "Ads between comments"
4622
  msgstr "Oglasi med komentarji"
4623
 
4624
  #. translators: %s HTML tags
4625
- #: settings.php:4622
4626
  msgid "Support via email"
4627
  msgstr "Podpora prek elektronske pošte"
4628
 
4629
  #. translators: %s HTML tags
4630
- #: settings.php:4628
4631
  msgid "%s Sticky positions %s"
4632
  msgstr "%s Lepljivi položaji %s"
4633
 
4634
  #. translators: %s HTML tags
4635
- #: settings.php:4629
4636
  msgid "%s Limit insertions %s"
4637
  msgstr "%s Omeji vstavljanja %s"
4638
 
4639
  #. translators: %s HTML tags
4640
- #: settings.php:4630
4641
  msgid "%s Clearance %s options"
4642
  msgstr "Možnosti %s izogibanja %s"
4643
 
4644
  #. translators: %s HTML tags
4645
- #: settings.php:4636
4646
  msgid "Ad rotation"
4647
  msgstr "Vrtenje oglasov"
4648
 
4649
  #. translators: %s HTML tags
4650
- #: settings.php:4637
4651
  msgid "%s A/B testing %s"
4652
  msgstr "%s A/B testiranje %s"
4653
 
4654
  #. translators: %s HTML tags
4655
- #: settings.php:4638
4656
  msgid "%s Ad tracking %s"
4657
  msgstr "%s Sledenje oglasom %s"
4658
 
4659
  #. translators: %s HTML tags
4660
- #: settings.php:4644
4661
  msgid "Support for %s AMP pages %s"
4662
  msgstr "Podpora za %s AMP strani %s"
4663
 
4664
  #. translators: %s HTML tags
4665
- #: settings.php:4645
4666
  msgid "%s Ad blocking detection %s"
4667
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4668
 
4669
  #. translators: %s HTML tags
4670
- #: settings.php:4646
4671
  msgid "%s Mobile device detection %s"
4672
  msgstr "%s Zaznavanje mobilne naprave %s"
4673
 
4674
  #. translators: %s HTML tags
4675
- #: settings.php:4653
4676
  msgid "64 code blocks"
4677
  msgstr "64 kodnih blokov"
4678
 
4679
  #. translators: %s HTML tags
4680
- #: settings.php:4654
4681
  msgid "%s GEO targeting %s"
4682
  msgstr "%s GEO ciljanje %s"
4683
 
4684
  #. translators: %s HTML tags
4685
- #: settings.php:4655
4686
  msgid "%s Scheduling %s"
4687
  msgstr "%s Urnik %s"
4688
 
@@ -5288,47 +5289,47 @@ msgctxt "size"
5288
  msgid "Fixed by viewport"
5289
  msgstr "Fiksna glede na pogled"
5290
 
5291
- #: strings.php:179
5292
  msgid "Impressions and clicks"
5293
  msgstr "Prikazi in Kliki"
5294
 
5295
- #: strings.php:180
5296
  msgid "Advanced WordPress Ad Management Plugin"
5297
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
5298
 
5299
- #: strings.php:186
5300
  msgctxt "Button"
5301
  msgid "Hide"
5302
  msgstr "Skrij"
5303
 
5304
- #: strings.php:187
5305
  msgctxt "Button"
5306
  msgid "Show"
5307
  msgstr "Pokaži"
5308
 
5309
- #: strings.php:188
5310
  msgid "Insertion expired"
5311
  msgstr "Vstavljanje poteklo"
5312
 
5313
- #: strings.php:189
5314
  msgid "Duration"
5315
  msgstr "Trajanje"
5316
 
5317
- #: strings.php:190
5318
  msgid "Invalid end date - must be after start date"
5319
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5320
 
5321
- #: strings.php:191
5322
  msgid "Invalid start date - only data for 1 year back is available"
5323
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5324
 
5325
- #: strings.php:192
5326
  msgid "Invalid date range - only data for 1 year can be displayed"
5327
  msgstr ""
5328
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5329
 
5330
- #: strings.php:193 strings.php:194 strings.php:195 strings.php:196
5331
- #: strings.php:197 strings.php:198
5332
  msgid "day"
5333
  msgid_plural "days"
5334
  msgstr[0] "dan"
@@ -5336,71 +5337,71 @@ msgstr[1] "dni"
5336
  msgstr[2] "dni"
5337
  msgstr[3] "dni"
5338
 
5339
- #: strings.php:200
5340
  msgid "Delete"
5341
  msgstr "Pobriši"
5342
 
5343
- #: strings.php:202
5344
  msgid "Delete all statistics data?"
5345
  msgstr "Pobrišem vse podatke o statistiki?"
5346
 
5347
  #. translators: %s: dates
5348
- #: strings.php:204
5349
  msgid "Delete statistics data between %s and %s?"
5350
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5351
 
5352
- #: strings.php:205
5353
  msgid "Cancel block order rearrangement"
5354
  msgstr "Prekliči preureditev vrstnega reda blokov"
5355
 
5356
- #: strings.php:207
5357
  msgid "downloading..."
5358
  msgstr "prenašam..."
5359
 
5360
- #: strings.php:208
5361
  msgid "download error"
5362
  msgstr "napaka pri prenosu"
5363
 
5364
- #: strings.php:209
5365
  msgid "update error"
5366
  msgstr "napaka pri posodobitvi"
5367
 
5368
- #: strings.php:210
5369
  msgid "Updating..."
5370
  msgstr "Posodabljam..."
5371
 
5372
- #: strings.php:212
5373
  msgid "ERROR"
5374
  msgstr "NAPAKA"
5375
 
5376
- #: strings.php:213
5377
  msgid "Error reloading settings"
5378
  msgstr "Napaka pri nalaganju nastavitev"
5379
 
5380
- #: strings.php:215
5381
  msgctxt "Search field placeholder"
5382
  msgid "Search..."
5383
  msgstr "Išči..."
5384
 
5385
- #: strings.php:216
5386
  msgctxt "Search field placeholder"
5387
  msgid "Filter..."
5388
  msgstr "Filter..."
5389
 
5390
- #: strings.php:217
5391
  msgid "Use filter to limit names in the list"
5392
  msgstr "Uporabite filter za omejitev imen v seznamu"
5393
 
5394
- #: strings.php:218
5395
  msgctxt "Button"
5396
  msgid "Filter"
5397
  msgstr "Filter"
5398
 
5399
- #: strings.php:220
5400
  msgid "Position not available"
5401
  msgstr "Položaj ni na razpolago"
5402
 
5403
- #: strings.php:221
5404
  msgid ""
5405
  "Theme check | Selected position for automatic insertion might not be not "
5406
  "available on this page type"
@@ -5408,60 +5409,60 @@ msgstr ""
5408
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5409
  "razpolago na tem tipu strani"
5410
 
5411
- #: strings.php:222
5412
  msgid "Position available"
5413
  msgstr "Položaj na razpolago"
5414
 
5415
- #: strings.php:224
5416
  msgid "Select or upload banner image"
5417
  msgstr "Izberi ali naloži sliko pasice"
5418
 
5419
- #: strings.php:225
5420
  msgid "Use this image"
5421
  msgstr "Uporabi to sliko"
5422
 
5423
- #: strings.php:239
5424
  msgid "Add"
5425
  msgstr "Dodaj"
5426
 
5427
- #: strings.php:240
5428
  msgid "Parent"
5429
  msgstr "Starš"
5430
 
5431
- #: strings.php:241
5432
  msgid "Cancel element selection"
5433
  msgstr "Prekliči izbor HTML elementa"
5434
 
5435
- #: strings.php:242
5436
  msgid "Select parent element"
5437
  msgstr "Izberi starševski element"
5438
 
5439
- #: strings.php:243
5440
  msgid "CSS selector"
5441
  msgstr "CSS selektor"
5442
 
5443
- #: strings.php:244
5444
  msgid "Use current selector"
5445
  msgstr "Uporabi trenutni selektor"
5446
 
5447
- #: strings.php:245
5448
  msgid "ELEMENT"
5449
  msgstr "ELEMENT"
5450
 
5451
- #: strings.php:246
5452
  msgid "PATH"
5453
  msgstr "POT"
5454
 
5455
- #: strings.php:247
5456
  msgid "SELECTOR"
5457
  msgstr "SELEKTOR"
5458
 
5459
- #: strings.php:248
5460
  msgctxt "Block"
5461
  msgid "VISIBLE"
5462
  msgstr "VIDEN"
5463
 
5464
- #: strings.php:249
5465
  msgctxt "Block"
5466
  msgid "HIDDEN"
5467
  msgstr "SKRIT"
@@ -5474,6 +5475,12 @@ msgstr ""
5474
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5475
  "na optimalna mesta"
5476
 
 
 
 
 
 
 
5477
  #~ msgid "Open public report with controls"
5478
  #~ msgstr "Odpri javno poročilo s kontrolami"
5479
 
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-06-13 19:59:55+00:00\n"
8
+ "PO-Revision-Date: 2019-06-13 22:01+0200\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 2.2.3\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:356
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:372
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:379
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:450
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:457
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:466
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:473
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:483
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:1080
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1085
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:1090 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:1095 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:1100 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1105 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1152
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1156
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1365
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1646 ad-inserter.php:2498
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2069
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2069
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2070
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2071
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2072
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2073
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2074
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:2269
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:2270 includes/functions.php:1530
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
+ #: ad-inserter.php:2273
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:2274 includes/functions.php:1533
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
+ #: ad-inserter.php:2284
164
  msgid "I would really appreciate if you could rate the plugin on WordPres."
165
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
166
 
167
+ #: ad-inserter.php:2286
168
  msgid ""
169
  "Positive reviews are a great incentive to fix bugs and to add new features "
170
  "for better monetization of your website. Thank you, Igor"
173
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
174
 
175
  #. translators: %s: Ad Inserter
176
+ #: ad-inserter.php:2292
177
  msgid "Rate %s"
178
  msgstr "Ocenite %s"
179
 
180
+ #: ad-inserter.php:2297
181
  msgid "I already did."
182
  msgstr "Sem že."
183
 
184
+ #: ad-inserter.php:2311
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr "Nastavitve"
188
 
189
  #. translators: %s: Ad Inserter
190
+ #: ad-inserter.php:2385
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr "Posamezne Izjeme za %s"
194
 
195
+ #: ad-inserter.php:2414 ad-inserter.php:8160 class.php:1967
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
+ #: includes/preview.php:2057 settings.php:3704 strings.php:3
198
  msgid "Block"
199
  msgstr "Blok"
200
 
201
+ #: ad-inserter.php:2415 settings.php:3705 settings.php:3779
202
  msgid "Name"
203
  msgstr "Ime"
204
 
205
+ #: ad-inserter.php:2416 settings.php:3707
206
  msgid "Automatic insertion"
207
  msgstr "Samodejno vstavljanje"
208
 
209
+ #: ad-inserter.php:2419
210
  msgid "Default insertion for pages"
211
  msgstr "Privzeto vstavljanje za strani"
212
 
213
+ #: ad-inserter.php:2420
214
  msgid "Default insertion for posts"
215
  msgstr "Privzeto vstavljanje za prispevke"
216
 
217
  #. translators: For this post or page
218
+ #: ad-inserter.php:2423
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
+ #: ad-inserter.php:2424
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
+ #: ad-inserter.php:2432
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
+ #: ad-inserter.php:2433
234
  msgctxt "Default insertion for"
235
  msgid "pages"
236
  msgstr "strani"
237
 
238
+ #: ad-inserter.php:2437
239
  msgctxt "Enabled/disabled on all"
240
  msgid "posts"
241
  msgstr "prispevkih"
242
 
243
+ #: ad-inserter.php:2438
244
  msgctxt "Default insertion for"
245
  msgid "posts"
246
  msgstr "prispevke"
247
 
248
+ #: ad-inserter.php:2457 ad-inserter.php:2470 strings.php:156
249
  msgid "Enabled"
250
  msgstr "Omogočeno"
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:2457 ad-inserter.php:2470 includes/functions.php:2191
254
  #: strings.php:16
255
  msgid "Disabled"
256
  msgstr "Onemogočeno"
257
 
258
  #. translators: Enabled on all pages or posts
259
+ #: ad-inserter.php:2460
260
  msgid "Enabled on all"
261
  msgstr "Omogočeno na vseh"
262
 
263
  #. translators: Disabled on all pages or posts
264
+ #: ad-inserter.php:2462
265
  msgid "Disabled on all"
266
  msgstr "Onemogočeno na vseh"
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:2490
270
  msgid "No individual exceptions enabled for"
271
  msgstr "Ni omogočenih posameznih izjem za"
272
 
273
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
274
+ #: ad-inserter.php:2495
275
  msgid ""
276
  "Default insertion for %1$s can be configured for each block on %2$s page - "
277
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
281
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
282
  "strani</strong>.<br />"
283
 
284
+ #: ad-inserter.php:2500
285
  msgid ""
286
  "Default value is <strong>blank</strong> and means no individual exceptions "
287
  "(even if previously defined here).<br />"
289
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
290
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
291
 
292
+ #: ad-inserter.php:2503
293
  msgctxt "Pages"
294
  msgid ""
295
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
298
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
299
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
300
 
301
+ #: ad-inserter.php:2504
302
  msgctxt "Posts"
303
  msgid ""
304
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
307
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
308
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
309
 
310
+ #: ad-inserter.php:2506
311
  msgid "For more information check page %s"
312
  msgstr "Za več informacij poglejte stran %s"
313
 
314
  #. translators: Ad Inserter Exceptions documentation page
315
+ #: ad-inserter.php:2508
316
  msgid "Individual Exceptions"
317
  msgstr "Posamezne Izjeme"
318
 
319
+ #: ad-inserter.php:2555
320
  msgid "STATIC PAGE"
321
  msgstr "STATIČNA STRAN"
322
 
323
+ #: ad-inserter.php:2558
324
  msgid "POST"
325
  msgstr "PRISPEVEK"
326
 
327
+ #: ad-inserter.php:2561
328
  msgid "HOMEPAGE"
329
  msgstr "DOMAČA STRAN"
330
 
331
+ #: ad-inserter.php:2564
332
  msgid "CATEGORY PAGE"
333
  msgstr "STRAN KATEGORIJE"
334
 
335
+ #: ad-inserter.php:2567
336
  msgid "SEARCH PAGE"
337
  msgstr "STRAN ISKANJE"
338
 
339
+ #: ad-inserter.php:2570
340
  msgid "ARCHIVE PAGE"
341
  msgstr "STRAN ARHIVA"
342
 
343
+ #: ad-inserter.php:2573
344
  msgid "ERROR 404 PAGE"
345
  msgstr "STRAN NAPAKA 404"
346
 
347
+ #: ad-inserter.php:2576
348
  msgid "AJAX CALL"
349
  msgstr "AJAX KLIC"
350
 
351
+ #: ad-inserter.php:2579
352
  msgid "UNKNOWN PAGE TYPE"
353
  msgstr "NEZNAN TIP STRANI"
354
 
355
+ #: ad-inserter.php:2596
356
  msgid "Click to delete ad blocking detection cokies"
357
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
358
 
359
+ #: ad-inserter.php:2597
360
  msgid "AD BLOCKING STATUS UNKNOWN"
361
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
362
 
363
  #. translators: %s: AdSense Auto Ads
364
+ #: ad-inserter.php:2621
365
  msgid ""
366
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
367
  "positions"
369
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
370
  "položaje"
371
 
372
+ #: ad-inserter.php:2760
373
  msgid "Code for insertion"
374
  msgstr "Koda za vstavljanje"
375
 
376
+ #: ad-inserter.php:2760
377
  msgid "character"
378
  msgid_plural "characters"
379
  msgstr[0] "znak"
381
  msgstr[2] "znaki"
382
  msgstr[3] "znakov"
383
 
384
+ #: ad-inserter.php:2803
385
  msgid "Header code"
386
  msgstr "Koda v glavi"
387
 
388
+ #: ad-inserter.php:2803
389
  msgctxt "Header code"
390
  msgid "DISABLED"
391
  msgstr "ONEMOGOČENA"
392
 
393
+ #: ad-inserter.php:2803 ad-inserter.php:3025
394
  msgid "character inserted"
395
  msgid_plural "characters inserted"
396
  msgstr[0] "znak vstavljen"
398
  msgstr[2] "znaki vstavljeni"
399
  msgstr[3] "znakov vstavljenih"
400
 
401
+ #: ad-inserter.php:2836
402
  msgid "Automatically placed by AdSense Auto ads code"
403
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
404
 
405
+ #: ad-inserter.php:3025
406
  msgid "Footer code"
407
  msgstr "Koda v nogi"
408
 
409
+ #: ad-inserter.php:3025
410
  msgctxt "Footer code"
411
  msgid "DISABLED"
412
  msgstr "ONEMOGOČENA"
413
 
414
+ #: ad-inserter.php:3031
415
  msgid "JAVASCRIPT NOT WORKING"
416
  msgstr "JAVASCRIPT NE DELA"
417
 
418
+ #: ad-inserter.php:3031
419
  msgid "NO JAVASCRIPT ERRORS"
420
  msgstr "BREZ JAVASCRIPT NAPAK"
421
 
422
+ #: ad-inserter.php:3031
423
  msgid "JAVASCRIPT ERRORS"
424
  msgstr "JAVASCRIPT NAPAKE"
425
 
426
  #. translators: block name (block with default settings)
427
+ #: ad-inserter.php:5163
428
  msgctxt "Block name"
429
  msgid "Default"
430
  msgstr "Privzeti"
431
 
432
  #. translators: %s: Ad Inserter
433
+ #: ad-inserter.php:5734
434
  msgid "Error importing %s settings."
435
  msgstr "Napaka pri uvozu %s nastavitev."
436
 
437
+ #: ad-inserter.php:5735
438
  msgid "Error importing settings for block"
439
  msgid_plural "Error importing settings for blocks:"
440
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
442
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
443
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
444
 
445
+ #: ad-inserter.php:5784
446
  msgid "Settings saved."
447
  msgstr "Nastavitve shranjene."
448
 
449
+ #: ad-inserter.php:5869
450
  msgid "Settings cleared."
451
  msgstr "Nastavitve ponastavljene."
452
 
453
+ #: ad-inserter.php:6214 ad-inserter.php:6216 ad-inserter.php:6239
454
  msgid "word"
455
  msgid_plural "words"
456
  msgstr[0] "beseda"
458
  msgstr[2] "besede"
459
  msgstr[3] "besed"
460
 
461
+ #: ad-inserter.php:6253 ad-inserter.php:6365
462
  msgid "HTML TAGS REMOVED"
463
  msgstr "HTML ZNAČKE ODSTRANJENE"
464
 
465
+ #: ad-inserter.php:6441
466
  msgid "BEFORE COMMENTS"
467
  msgstr "PRED KOMENTARJI"
468
 
469
+ #: ad-inserter.php:6549
470
  msgid "AFTER COMMENTS"
471
  msgstr "PO KOMETARJIH"
472
 
473
+ #: ad-inserter.php:6612
474
  msgid "BETWEEN COMMENTS"
475
  msgstr "MED KOMENTARJI"
476
 
477
+ #: ad-inserter.php:7800
478
  msgid "requires WordPress 4.0 or newer"
479
  msgstr "potrebuje WordPress 4.0 ali novejši"
480
 
481
+ #: ad-inserter.php:7800
482
  msgid "Please update!"
483
  msgstr "Prosimo, posodobite!"
484
 
485
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
486
  #. name with HTML tags will be added)
487
+ #: ad-inserter.php:8033
488
  msgid "Thank you for installing"
489
  msgstr "Hvala za namestitev vtičnika"
490
 
491
  #. translators: Opt-in message: %s: HTML tags
492
+ #: ad-inserter.php:8035
493
  msgid ""
494
  "We would like to %s track its usage %s on your site. This is completely "
495
  "optional and can be disabled at any time."
497
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
498
  "izbirno in se lahko izključi kadarkoli."
499
 
500
+ #: ad-inserter.php:8037
501
  msgid ""
502
  "We don't record any sensitive data, only information regarding the WordPress "
503
  "environment and plugin usage, which will help us to make improvements to the "
507
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
508
 
509
  #. translators: Deactivation message: %s: HTML tags
510
+ #: ad-inserter.php:8074
511
  msgid ""
512
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
513
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
518
  "nam %s in poskušali vam bomo pomagati."
519
 
520
  #. translators: %s: Ad Inserter
521
+ #: ad-inserter.php:8117
522
  msgid "%s block."
523
  msgstr "%s blok."
524
 
525
  #. translators: widget title
526
+ #: ad-inserter.php:8133 ad-inserter.php:8169
527
  msgid "Processing log"
528
  msgstr "Dnevnik procesiranja"
529
 
530
  #. translators: widget title
531
+ #: ad-inserter.php:8135 ad-inserter.php:8170
532
  msgid "Dummy widget"
533
  msgstr "Prazen gradnik"
534
 
535
  #. translators: widget title
536
+ #: ad-inserter.php:8137 ad-inserter.php:8168
537
  msgid "Debugging tools"
538
  msgstr "Orodja za razhroščevanje"
539
 
540
  #. translators: block status (widget title)
541
+ #: ad-inserter.php:8144
542
  msgctxt "block"
543
  msgid "PAUSED"
544
  msgstr "USTAVLJEN"
545
 
546
+ #: ad-inserter.php:8145
547
  msgid "WIDGET DISABLED"
548
  msgstr "GRADNIK ONEMOGOČEN"
549
 
550
+ #: ad-inserter.php:8146
551
  msgid "Unknown block"
552
  msgstr "Neznan blok"
553
 
554
+ #: ad-inserter.php:8155 includes/functions.php:2721 settings.php:1045
555
  msgid "Title"
556
  msgstr "Naslov"
557
 
558
+ #: ad-inserter.php:8177
559
  msgctxt "Widget"
560
  msgid "Sticky"
561
  msgstr "Lepljiv"
562
 
563
+ #: ad-inserter.php:8226
564
  msgid ""
565
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
566
  "Inserter you need to first deactivate Ad Inserter Pro."
569
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
570
  "Inserter Pro."
571
 
572
+ #: ad-inserter.php:8227
573
  msgid ""
574
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
575
  "will clear all settings that are available only in the Pro version "
604
  msgid "After post"
605
  msgstr "Za prispevkom"
606
 
607
+ #: class.php:1957 settings.php:1631 settings.php:3711
608
  msgid "Widget"
609
  msgstr "Gradnik"
610
 
611
+ #: class.php:1962 settings.php:3709
612
  msgid "PHP function call"
613
  msgstr "Klic PHP funkcije"
614
 
669
  msgid "ip addresses='%s' type='%s'"
670
  msgstr "ip naslovi='%s' tip='%s'"
671
 
672
+ #: class.php:2944 strings.php:232
673
  msgid "BEFORE"
674
  msgstr "PRED"
675
 
676
+ #: class.php:2952 strings.php:234
677
  msgid "PREPEND CONTENT"
678
  msgstr "DODAJ PRED VSEBINO"
679
 
680
+ #: class.php:2956 strings.php:235
681
  msgid "APPEND CONTENT"
682
  msgstr "DODAJ ZA VSEBINO"
683
 
684
+ #: class.php:2960 strings.php:236
685
  msgid "REPLACE CONTENT"
686
  msgstr "NADOMESTI VSEBINO"
687
 
688
+ #: class.php:2964 strings.php:237
689
  msgid "REPLACE ELEMENT"
690
  msgstr "NADOMESTI ELEMENT"
691
 
692
+ #: class.php:2975 strings.php:233
693
  msgid "AFTER"
694
  msgstr "ZA"
695
 
702
  msgid "for"
703
  msgstr "za"
704
 
705
+ #: class.php:5593 class.php:5645
706
  msgctxt "category name"
707
  msgid "Uncategorized"
708
  msgstr "Nekategorizirano"
709
 
710
+ #: class.php:6138
711
  msgid ""
712
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
713
  "extension for PHP."
716
  "namestiti DOM razširitev za PHP."
717
 
718
  #: includes/editor.php:7 includes/placeholders.php:352
719
+ #: includes/preview.php:1962 strings.php:239
720
  msgid "Use"
721
  msgstr "Uporabi"
722
 
725
  msgstr "Ponastavi"
726
 
727
  #: includes/editor.php:9 includes/placeholders.php:354
728
+ #: includes/preview.php:1965 strings.php:202 strings.php:238
729
  msgid "Cancel"
730
  msgstr "Prekliči"
731
 
817
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
818
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
819
 
820
+ #: includes/functions.php:422 settings.php:1201 settings.php:2519
821
  msgid "Open HTML element selector"
822
  msgstr "Odpri izbirnik HTML elementa"
823
 
952
  msgid "Double click to toggle controls in public reports"
953
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
954
 
955
+ #: includes/functions.php:749 settings.php:3205 settings.php:3241
956
+ #: settings.php:3284 strings.php:212
957
  msgid "Loading..."
958
  msgstr "Nalagam..."
959
 
969
  msgid "Auto refresh data for the selected range every 60 seconds"
970
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
971
 
972
+ #: includes/functions.php:777 includes/functions.php:4735
973
  msgid "Load data for last month"
974
  msgstr "Naloži podatke za zadnji mesec"
975
 
976
+ #: includes/functions.php:777 includes/functions.php:4735
977
  msgid "Last Month"
978
  msgstr "Zadnji Mesec"
979
 
980
+ #: includes/functions.php:780 includes/functions.php:4738
981
  msgid "Load data for this month"
982
  msgstr "Naloži podatke za ta mesec"
983
 
984
+ #: includes/functions.php:780 includes/functions.php:4738
985
  msgid "This Month"
986
  msgstr "Ta Mesec"
987
 
988
+ #: includes/functions.php:783 includes/functions.php:4741
989
  msgid "Load data for this year"
990
  msgstr "Naloži podatke za to leto"
991
 
992
+ #: includes/functions.php:783 includes/functions.php:4741
993
  msgid "This Year"
994
  msgstr "To Leto"
995
 
996
+ #: includes/functions.php:786 includes/functions.php:4744
997
  msgid "Load data for the last 15 days"
998
  msgstr "Naloži podatke za zadnjih 15 dni"
999
 
1000
+ #: includes/functions.php:789 includes/functions.php:4747
1001
  msgid "Load data for the last 30 days"
1002
  msgstr "Naloži podatke za zadnjih 30 dni"
1003
 
1004
+ #: includes/functions.php:792 includes/functions.php:4750
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
+ #: includes/functions.php:795 includes/functions.php:4753
1009
  msgid "Load data for the last 180 days"
1010
  msgstr "Naloži podatke za zadnjih 180 dni"
1011
 
1012
+ #: includes/functions.php:798 includes/functions.php:4756
1013
  msgid "Load data for the last 365 days"
1014
  msgstr "Naloži podatke za zadnjih 365 dni"
1015
 
1016
+ #: includes/functions.php:808 includes/functions.php:4766
1017
  msgid "Load data for the selected range"
1018
  msgstr "Naloži podatke za izbrano obdobje"
1019
 
1292
  msgstr "Predpreglej kodo iframe"
1293
 
1294
  #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1295
+ #: settings.php:2581
1296
  msgid "Preview"
1297
  msgstr "Predogled"
1298
 
1392
  msgstr "države"
1393
 
1394
  #: includes/functions.php:2526
1395
+ msgid ""
1396
+ "Enable impression and click tracking. You also need to enable tracking for "
1397
+ "each block you want to track."
1398
+ msgstr ""
1399
+ "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1400
+ "vsak blok, ki bi ga radi sledili."
1401
 
1402
  #: includes/functions.php:2533
1403
  msgid "Generate report"
1407
  msgid "Impression and Click Tracking"
1408
  msgstr "Sledenje Prikazov in Klikov"
1409
 
1410
+ #: includes/functions.php:2542 settings.php:2469
1411
  msgctxt "ad blocking detection"
1412
  msgid "NOT ENABLED"
1413
  msgstr "NI OMOGOČENO"
1474
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1475
  "ponastavitev na privzeto sliko."
1476
 
1477
+ #: includes/functions.php:2644 strings.php:224
1478
  msgid "Select or upload header image"
1479
  msgstr "Izberi ali naloži sliko glave"
1480
 
1540
  msgid "Clear all exceptions for all blocks"
1541
  msgstr "Pobriši vse izjeme za vse bloke"
1542
 
1543
+ #: includes/functions.php:2721 settings.php:3443 settings.php:3781
1544
  msgid "Type"
1545
  msgstr "Vrsta"
1546
 
1615
  msgid "Main site settings used for all blogs"
1616
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1617
 
1618
+ #: includes/functions.php:2831 settings.php:2468
1619
  msgid "Ad Blocking Detection"
1620
  msgstr "Zaznavanje Blokiranja Oglasov"
1621
 
1743
  msgstr "Povprečni"
1744
 
1745
  #. Translators: %s: Ad Inserter Pro
1746
+ #: includes/functions.php:4327 includes/functions.php:4419
1747
+ #: includes/functions.php:4680 strings.php:179
1748
  msgid "%s Report"
1749
  msgstr "%s Poročilo"
1750
 
1751
+ #: includes/functions.php:4586
 
 
 
 
 
1752
  msgid "for last month"
1753
  msgstr "za zadnji mesec"
1754
 
1755
+ #: includes/functions.php:4591
1756
  msgid "for this month"
1757
  msgstr "za ta mesec"
1758
 
1759
+ #: includes/functions.php:4596
1760
  msgid "for this year"
1761
  msgstr "za to leto"
1762
 
1763
+ #: includes/functions.php:4601
1764
  msgid "for the last 15 days"
1765
  msgstr "za zadnjih 15 dni"
1766
 
1767
+ #: includes/functions.php:4606
1768
  msgid "for the last 30 days"
1769
  msgstr "za zadnjih 30 dni"
1770
 
1771
+ #: includes/functions.php:4611
1772
  msgid "for the last 90 days"
1773
  msgstr "za zadnjih 90 dni"
1774
 
1775
+ #: includes/functions.php:4616
1776
  msgid "for the last 180 days"
1777
  msgstr "za zadnjih 180 dni"
1778
 
1779
+ #: includes/functions.php:4621
1780
  msgid "for the last 365 days"
1781
  msgstr "za zadnjih 365 dni"
1782
 
1804
  msgid "Placeholder"
1805
  msgstr "Polnilo"
1806
 
1807
+ #: includes/placeholders.php:363 settings.php:808 settings.php:3782
1808
  msgid "Size"
1809
  msgstr "Velikost"
1810
 
1937
  msgid "Ad Blocking Detected Message Preview"
1938
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1939
 
1940
+ #: includes/preview-adb.php:348 settings.php:2594
1941
  msgid "Message CSS"
1942
  msgstr "CSS sporočila"
1943
 
1944
+ #: includes/preview-adb.php:353 settings.php:2602
1945
  msgid "Overlay CSS"
1946
  msgstr "CSS prevleke"
1947
 
1982
  msgstr "ozadje"
1983
 
1984
  #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1985
+ #: settings.php:3708
1986
  msgid "Alignment"
1987
  msgstr "Poravnava"
1988
 
2258
  msgid "General Settings"
2259
  msgstr "Splošne Nastavitve"
2260
 
2261
+ #: settings.php:592 settings.php:2321 settings.php:2388 settings.php:2574
2262
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2263
  msgstr ""
2264
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2295
  msgid "Clear block"
2296
  msgstr "Počisti blok"
2297
 
2298
+ #: settings.php:658 settings.php:3676
2299
  msgid "Copy block"
2300
  msgstr "Kopiraj blok"
2301
 
2482
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2483
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2484
 
2485
+ #: settings.php:985 settings.php:3092
2486
  msgid "Posts"
2487
  msgstr "Prispevki"
2488
 
2496
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2497
  "lahko odvisni od ročic, ki jih tema uporablja)"
2498
 
2499
+ #: settings.php:990 settings.php:3094
2500
  msgid "Homepage"
2501
  msgstr "Domača stran"
2502
 
2504
  msgid "Enable insertion on category blog pages (including sub-pages)"
2505
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2506
 
2507
+ #: settings.php:995 settings.php:3095
2508
  msgid "Category pages"
2509
  msgstr "Strani kategorij"
2510
 
2525
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2526
  "izjem."
2527
 
2528
+ #: settings.php:1013 settings.php:3093
2529
  msgid "Static pages"
2530
  msgstr "Statične strani"
2531
 
2533
  msgid "Enable insertion on search blog pages"
2534
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2535
 
2536
+ #: settings.php:1018 settings.php:3097
2537
  msgid "Search pages"
2538
  msgstr "Iskalne strani"
2539
 
2654
  msgid "HTML element selector or comma separated list of selectors"
2655
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2656
 
2657
+ #: settings.php:1216 settings.php:2479
2658
  msgid "Action"
2659
  msgstr "Akcija"
2660
 
2942
  msgstr ""
2943
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2944
 
2945
+ #: settings.php:1643 settings.php:3710
2946
  msgid "Shortcode"
2947
  msgstr "Kratka koda"
2948
 
3379
  msgid "Wrapping div"
3380
  msgstr "div za ovijanje"
3381
 
3382
+ #: settings.php:2245 settings.php:2685
3383
  msgid "BLOCK CODE"
3384
  msgstr "KODA BLOKA"
3385
 
3434
  msgid "Enable insertion of this code into HTML page header"
3435
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3436
 
3437
+ #: settings.php:2330 settings.php:2397 settings.php:2579
3438
  msgid "Process PHP code"
3439
  msgstr "Procesiraj PHP kodo"
3440
 
3451
  msgid "NOT ENABLED"
3452
  msgstr "NI OMOGOČENA"
3453
 
3454
+ #: settings.php:2360 settings.php:2428
3455
  msgid "Use server-side detection to insert code only for"
3456
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3457
 
3458
+ #: settings.php:2375
3459
  msgid ""
3460
  "Enable insertion of this code into HTML page header on page for Error 404: "
3461
  "Page not found"
3463
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3464
  "obstaja"
3465
 
3466
+ #: settings.php:2375 settings.php:2443
3467
  msgid "Insert on Error 404 page"
3468
  msgstr "Vstavi na strani Napake 404"
3469
 
3470
+ #: settings.php:2393
3471
  msgid "Enable insertion of this code into HTML page footer"
3472
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3473
 
3474
+ #: settings.php:2401
3475
  msgid "HTML Page Footer Code"
3476
  msgstr "Koda v Nogi HTML Strani"
3477
 
3478
  #. translators: %s: HTML tags
3479
+ #: settings.php:2409
3480
  msgid "Code before the %s tag of the the HTML page"
3481
  msgstr "Koda pred %s značko HTML strani"
3482
 
3483
+ #: settings.php:2410
3484
  msgctxt "code in the footer"
3485
  msgid "NOT ENABLED"
3486
  msgstr "NI OMOGOČENA"
3487
 
3488
+ #: settings.php:2443
3489
  msgid ""
3490
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3491
  "Page not found"
3493
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3494
  "Stran ne obstaja"
3495
 
3496
+ #: settings.php:2459
3497
  msgid "Code for ad blocking detection inserted. Click for details."
3498
  msgstr ""
3499
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3500
 
3501
+ #: settings.php:2464
3502
  msgid "Enable detection of ad blocking"
3503
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3504
 
3505
+ #: settings.php:2482
3506
  msgid "Global action when ad blocking is detected"
3507
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3508
 
3509
+ #: settings.php:2488
3510
  msgid "No action for"
3511
  msgstr "Ni akcije za"
3512
 
3513
+ #: settings.php:2489
3514
  msgid "Exceptions for global action when ad blocking is detected."
3515
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3516
 
3517
+ #: settings.php:2499
3518
  msgid "Delay Action"
3519
  msgstr "Zakasni Akcijo"
3520
 
3521
+ #: settings.php:2502
3522
  msgid ""
3523
  "Number of page views to delay action when ad blocking is detected. Leave "
3524
  "empty for no delay (action fires on first page view). Sets cookie."
3527
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3528
  "strani). Nastavi piškotek."
3529
 
3530
+ #: settings.php:2502
3531
  msgctxt "Delay Action for x "
3532
  msgid "page views"
3533
  msgstr "ogledov strani"
3534
 
3535
+ #: settings.php:2507
3536
  msgid "No Action Period"
3537
  msgstr "Obdobje Brez Akcije"
3538
 
3539
+ #: settings.php:2510
3540
  msgid ""
3541
  "Number of days to supress action when ad blocking is detected. Leave empty "
3542
  "for no no-action period (action fires always after defined page view delay). "
3546
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3547
  "strani). Nastavi piškotek."
3548
 
3549
+ #: settings.php:2510
3550
  msgctxt "no action period"
3551
  msgid "days"
3552
  msgstr "dni"
3553
 
3554
+ #: settings.php:2515
3555
  msgid "Custom Selectors"
3556
  msgstr "Selektorji Po Meri"
3557
 
3558
+ #: settings.php:2518
3559
  msgid ""
3560
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3561
  "blocking detection. Invisible element or element with zero height means ad "
3565
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3566
  "pomeni prisotnost blokiranja oglasov."
3567
 
3568
+ #: settings.php:2530
3569
  msgid "Redirection Page"
3570
  msgstr "Stran za Preusmeritev"
3571
 
3572
+ #: settings.php:2542
3573
  msgid "Custom Url"
3574
  msgstr "Url Po Meri"
3575
 
3576
+ #: settings.php:2547
3577
  msgid ""
3578
  "Static page for redirection when ad blocking is detected. For other pages "
3579
  "select Custom url and set it below."
3581
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3582
  "strani izberite Url Po Meri in ga nastavite spodaj."
3583
 
3584
+ #: settings.php:2556
3585
  msgid "Custom Redirection Url"
3586
  msgstr "Url za Preusmeritev Po Meri"
3587
 
3588
+ #: settings.php:2568
3589
  msgid "Message HTML code"
3590
  msgstr "HTML koda sporočila"
3591
 
3592
+ #: settings.php:2581
3593
  msgid "Preview message when ad blocking is detected"
3594
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3595
 
3596
+ #: settings.php:2610
3597
  msgid "Prevent visitors from closing the warning message"
3598
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3599
 
3600
+ #: settings.php:2610
3601
  msgid "Undismissible Message"
3602
  msgstr "Neodstranljivo Sporočilo"
3603
 
3604
+ #: settings.php:2616
3605
  msgid "Not undismissible for"
3606
  msgstr "Ni neodstranljivo za"
3607
 
3608
+ #: settings.php:2617
3609
  msgid "Users which can close the warning message."
3610
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3611
 
3612
+ #: settings.php:2631
3613
  msgid ""
3614
  "Force showing admin toolbar for administrators when viewing site. Enable "
3615
  "this option when you are logged in as admin and you don't see admin toolbar."
3618
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3619
  "skrbnike."
3620
 
3621
+ #: settings.php:2639
3622
  msgid "Disable header code (Header tab)"
3623
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3624
 
3625
+ #: settings.php:2643
3626
  msgid "Disable footer code (Footer tab)"
3627
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3628
 
3629
  #. translators: %s: Ad Inserter
3630
+ #: settings.php:2647
3631
  msgid "Disable %s JavaScript code"
3632
  msgstr "Onemogoči %s JavaScript kodo"
3633
 
3634
  #. translators: %s: Ad Inserter
3635
+ #: settings.php:2651
3636
  msgid "Disable %s CSS code"
3637
  msgstr "Onemogoči %s CSS kodo"
3638
 
3639
+ #: settings.php:2655
3640
  msgid ""
3641
  "Disable PHP code processing (in all blocks including header and footer code)"
3642
  msgstr ""
3643
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3644
 
3645
+ #: settings.php:2659
3646
  msgid "Disable insertion of all blocks"
3647
  msgstr "Onemogoči vstavljanje vseh blokov"
3648
 
3649
+ #: settings.php:2663
3650
  msgid "Disable insertions"
3651
  msgstr "Onemogoči vstavljanja"
3652
 
3653
  #. translators: %s: Ad Inserter
3654
+ #: settings.php:2675
3655
  msgid "%s CSS CODE"
3656
  msgstr "%s CSS KODA"
3657
 
3658
+ #: settings.php:2678
3659
  msgid "HEADER CODE"
3660
  msgstr "KODA GLAVE"
3661
 
3662
  #. translators: %s: PHP tags
3663
+ #: settings.php:2684
3664
  msgid "BLOCK PHP CODE"
3665
  msgstr "PHP KODA BLOKA"
3666
 
3667
  #. translators: %s: Ad Inserter
3668
+ #: settings.php:2690
3669
  msgid "%s JS CODE"
3670
  msgstr "%s JS KODA"
3671
 
3672
+ #: settings.php:2693
3673
  msgid "FOOTER CODE"
3674
  msgstr "KODA NOGE"
3675
 
3676
+ #: settings.php:2702
3677
  msgid "Force showing admin toolbar when viewing site"
3678
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3679
 
3680
+ #: settings.php:2709
3681
  msgid "Enable debugging functions in admin toolbar"
3682
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3683
 
3684
+ #: settings.php:2711
3685
  msgid "Debugging functions in admin toolbar"
3686
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3687
 
3688
+ #: settings.php:2718
3689
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3690
  msgstr ""
3691
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3692
  "zaslonih"
3693
 
3694
+ #: settings.php:2720
3695
  msgid "Debugging functions on mobile screens"
3696
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3697
 
3698
+ #: settings.php:2727
3699
  msgid ""
3700
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3701
  "tags, processing) by url parameters for non-logged in users. Enable this "
3710
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3711
  "vedno omogočeno."
3712
 
3713
+ #: settings.php:2729
3714
  msgid "Remote debugging"
3715
  msgstr "Oddaljeno razhroščevanje"
3716
 
3717
+ #: settings.php:2736
3718
  msgid ""
3719
  "Disable translation to see original texts for the settings and messages in "
3720
  "English"
3722
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3723
  "angleščini"
3724
 
3725
+ #: settings.php:2738
3726
  msgid "Disable translation"
3727
  msgstr "Onemogoči prevod"
3728
 
3729
+ #: settings.php:3080
3730
  msgid "Available positions for current theme"
3731
  msgstr "Razpoložljivi položaji za trenutno temo"
3732
 
3733
+ #: settings.php:3081
3734
  msgid "Error checking pages"
3735
  msgstr "Napaka pri preverjanju strani"
3736
 
3737
+ #: settings.php:3084
3738
  msgid "Toggle theme checker for available positions for automatic insertion"
3739
  msgstr ""
3740
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3741
 
3742
+ #: settings.php:3084
3743
  msgctxt "Button"
3744
  msgid "Check"
3745
  msgstr "Preveri"
3746
 
3747
+ #: settings.php:3091
3748
  msgid "Position"
3749
  msgstr "Položaj"
3750
 
3751
+ #: settings.php:3096
3752
  msgid "Archive pages"
3753
  msgstr "Strani arhiva"
3754
 
3755
+ #: settings.php:3155
3756
  msgid ""
3757
  "Position not available because output buffering (tab [*]) is not enabled"
3758
  msgstr ""
3759
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3760
 
3761
+ #: settings.php:3158 strings.php:220
3762
  msgid "Position not checked yet"
3763
  msgstr "Položaj še ni bil preverjen"
3764
 
3765
+ #: settings.php:3189
3766
  msgid "Toggle active/all blocks"
3767
  msgstr "Preklopi aktive/vse bloke"
3768
 
3769
+ #: settings.php:3193 strings.php:207
3770
  msgid "Rearrange block order"
3771
  msgstr "Preuredi vrstni red blokov"
3772
 
3773
+ #: settings.php:3198
3774
  msgid "Save new block order"
3775
  msgstr "Shrani vrstni red blokov"
3776
 
3777
+ #: settings.php:3198
3778
  msgid "Save Changes"
3779
  msgstr "Sharani Nastavitve"
3780
 
3781
+ #: settings.php:3223
3782
  msgid "Toggle active/all ad units"
3783
  msgstr "Preklopi aktivne/vse oglasne enote"
3784
 
3785
+ #: settings.php:3227
3786
  msgid "Reload AdSense ad units"
3787
  msgstr "Ponovno naloži oglasne enote AdSense"
3788
 
3789
+ #: settings.php:3231
3790
  msgid "Clear authorization to access AdSense account"
3791
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3792
 
3793
+ #: settings.php:3235 settings.php:3867 settings.php:3934 strings.php:215
3794
  msgid "Google AdSense Homepage"
3795
  msgstr "Google AdSense Domača Stran"
3796
 
3797
+ #: settings.php:3258
3798
  msgid "Reload ads.txt file"
3799
  msgstr "Ponovno naloži datoteko ads.txt"
3800
 
3801
  #. translators: %s: ads.txt
3802
+ #: settings.php:3262
3803
  msgid "Open %s"
3804
  msgstr "Odpri %s"
3805
 
3806
+ #: settings.php:3266
3807
  msgid "Switch to table view"
3808
  msgstr "Preklopi na tabelarični pogled"
3809
 
3810
+ #: settings.php:3270
3811
  msgid "Switch to editor"
3812
  msgstr "Preklopi na urejevalnik"
3813
 
3814
+ #: settings.php:3274
3815
  msgid "Save ads.txt file"
3816
  msgstr "Shrani datoteko ads.txt"
3817
 
3818
+ #: settings.php:3409 settings.php:3417 strings.php:200
3819
  msgid "Warning"
3820
  msgstr "Opozorilo"
3821
 
3822
+ #: settings.php:3409
3823
  msgid "ads.txt file must be placed on the root domain"
3824
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3825
 
3826
  #. translators: %s: file path
3827
+ #: settings.php:3410
3828
  msgid "WordPress is installed in %s"
3829
  msgstr "WordPress je nameščen v %s"
3830
 
3831
+ #: settings.php:3411
3832
  msgid "Showing file"
3833
  msgstr "Prikazana datoteka"
3834
 
3835
+ #: settings.php:3417
3836
  msgid "File %s not found"
3837
  msgstr "Datoteka %s ni najdena"
3838
 
3839
+ #: settings.php:3424
3840
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3841
  msgstr ""
3842
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3843
 
3844
+ #: settings.php:3441
3845
  msgid "Advertising system"
3846
  msgstr "Oglaševalski sistem"
3847
 
3848
+ #: settings.php:3442
3849
  msgid "Account ID"
3850
  msgstr "ID Računa"
3851
 
3852
+ #: settings.php:3444
3853
  msgid "Certification authority ID"
3854
  msgstr "ID organa za potrjevanje"
3855
 
3856
+ #: settings.php:3459
3857
  msgid "Account ID found in block and present in ads.txt"
3858
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3859
 
3860
+ #: settings.php:3463
3861
  msgid "Account ID found in block but not present in ads.txt"
3862
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3863
 
3864
+ #: settings.php:3679
3865
  msgid "Preview block"
3866
  msgstr "Predogled bloka"
3867
 
3868
+ #: settings.php:3688
3869
  msgid "Insertion disabled"
3870
  msgstr "Vstavljanje onemogočeno"
3871
 
3872
+ #: settings.php:3712
3873
  msgid "Widget positions"
3874
  msgstr "Položaji gradnikov"
3875
 
3876
+ #: settings.php:3778
3877
  msgid "Ad unit"
3878
  msgstr "Enota"
3879
 
3880
+ #: settings.php:3780
3881
  msgid "Slot ID"
3882
  msgstr "ID mesta"
3883
 
3884
+ #: settings.php:3806
3885
  msgid "Copy AdSense code"
3886
  msgstr "Kopiraj kodo AdSense"
3887
 
3888
+ #: settings.php:3809
3889
  msgid "Preview AdSense ad"
3890
  msgstr "Predogled oglasa AdSense"
3891
 
3892
+ #: settings.php:3812
3893
  msgid "Get AdSense code"
3894
  msgstr "Pridobi kodo AdSense"
3895
 
3896
  #. translators: %s: HTML tags
3897
+ #: settings.php:3844
3898
  msgid ""
3899
  "Please %s clear authorization %s with the button %s above and once again "
3900
  "authorize access to your AdSense account."
3902
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3903
  "avtorizirajte dostop do vašega računa AdSense."
3904
 
3905
+ #: settings.php:3863
3906
  msgid "AdSense Integration"
3907
  msgstr "Integracija AdSense"
3908
 
3909
+ #: settings.php:3865
3910
  msgid "AdSense Integration - Step 2"
3911
  msgstr "Integracija AdSense - Korak 2"
3912
 
3913
  #. translators: %s: HTML tags
3914
+ #: settings.php:3871
3915
  msgid ""
3916
  "Authorize %s to access your AdSense account. Click on the %s Get "
3917
  "Authorization Code %s button to open a new window where you can allow "
3924
  "Avtoriziraj. %s"
3925
 
3926
  #. translators: %s: HTML tags
3927
+ #: settings.php:3878
3928
  msgid ""
3929
  "If you get error, can't access ad units or would like to use own Google API "
3930
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3935
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3936
 
3937
  #. translators: %s: HTML tags
3938
+ #: settings.php:3880
3939
  msgid ""
3940
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3941
  "Authorization Code %s button to open a new window where you can allow "
3948
  "gumb %s Avtoriziraj. %s"
3949
 
3950
  #. translators: %s: HTML tags
3951
+ #: settings.php:3887
3952
  msgid ""
3953
  "If you get error %s invalid client %s click on the button %s Clear and "
3954
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3956
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3957
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3958
 
3959
+ #: settings.php:3898
3960
  msgid "Get Authorization Code"
3961
  msgstr "Pridobi Avtoriazcijsko Kodo"
3962
 
3963
+ #: settings.php:3901
3964
  msgid "Enter Authorization Code"
3965
  msgstr "Vnesi Avorizacijsko Kodo"
3966
 
3967
+ #: settings.php:3911
3968
  msgid "Use own API IDs"
3969
  msgstr "Uporabi lastne API ID-je"
3970
 
3971
+ #: settings.php:3913
3972
  msgid "Clear and return to Step 1"
3973
  msgstr "Odstrani in se vrni na Korak 1"
3974
 
3975
+ #: settings.php:3917
3976
  msgid "Authorize"
3977
  msgstr "Avtoriziraj"
3978
 
3979
+ #: settings.php:3933
3980
  msgid "AdSense Integration - Step 1"
3981
  msgstr "Integracija AdSense - Korak 1"
3982
 
3983
  #. translators: %s: Ad Inserter
3984
+ #: settings.php:3937
3985
  msgid ""
3986
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3987
  "To do this you need to authorize %s to access your AdSense account. The "
3994
  "Klienta in Skrivnost Klienta."
3995
 
3996
  #. translators: %s: HTML tags
3997
+ #: settings.php:3946
3998
  msgid "Go to %s Google APIs and Services console %s"
3999
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4000
 
4001
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4002
+ #: settings.php:3947
4003
  msgid ""
4004
  "Create %1$s project - if the project and IDs are already created click on "
4005
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4008
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4009
 
4010
  #. translators: %s: HTML tags
4011
+ #: settings.php:3948
4012
  msgid ""
4013
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4014
  "create a new project"
4017
  "ustvaritev novega projekta"
4018
 
4019
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4020
+ #: settings.php:3949
4021
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4022
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4023
 
4024
  #. translators: %s: HTML tags
4025
+ #: settings.php:3950
4026
  msgid ""
4027
  "Click on project selection, wait for the project to be created and then and "
4028
  "select %s as the current project"
4031
  "izberite %s kot trenutni projekt"
4032
 
4033
  #. translators: %s: HTML tags
4034
+ #: settings.php:3951
4035
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4036
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4037
 
4038
  #. translators: %s: HTML tags
4039
+ #: settings.php:3952
4040
  msgid "Search for adsense and enable %s"
4041
  msgstr "Poiščite adsense in omogočite %s"
4042
 
4043
  #. translators: %s: HTML tags
4044
+ #: settings.php:3953
4045
  msgid "Click on %s CREATE CREDENTIALS %s"
4046
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4047
 
4048
  #. translators: %s: HTML tags
4049
+ #: settings.php:3954
4050
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4051
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4052
 
4053
  #. translators: %s: HTML tags
4054
+ #: settings.php:3955
4055
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4056
  msgstr ""
4057
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4058
  "podatki %s"
4059
 
4060
  #. translators: %s: HTML tags
4061
+ #: settings.php:3956
4062
  msgid "Click on %s What credentials do I need? %s"
4063
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4064
 
4065
  #. translators: %s: HTML tags
4066
+ #: settings.php:3957
4067
  msgid ""
4068
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4069
  "Ad Inserter client %s"
4072
  "%s Ad Inserter klient %s"
4073
 
4074
  #. translators: %s: HTML tags
4075
+ #: settings.php:3958
4076
  msgid ""
4077
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4078
  "enter %s"
4081
  "uporabnikom %s vnesite %s"
4082
 
4083
  #. translators: %s: HTML tags
4084
+ #: settings.php:3959
4085
  msgid "Click on %s Continue %s"
4086
  msgstr "Kliknite na %s Nadaljuj %s"
4087
 
4088
  #. translators: %s: HTML tags
4089
+ #: settings.php:3960
4090
  msgid "Click on %s Done %s"
4091
  msgstr "Kliknite na %s Končaj %s"
4092
 
4093
  #. translators: %s: HTML tags
4094
+ #: settings.php:3961
4095
  msgid ""
4096
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4097
  "secret %s"
4099
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4100
  "Skrivnost klienta %s"
4101
 
4102
+ #: settings.php:3962
4103
  msgid "Copy them to the appropriate fields below"
4104
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4105
 
4106
+ #: settings.php:3968
4107
  msgid "Client ID"
4108
  msgstr "ID klienta"
4109
 
4110
+ #: settings.php:3971
4111
  msgid "Enter Client ID"
4112
  msgstr "Vnesite ID klienta"
4113
 
4114
+ #: settings.php:3976
4115
  msgid "Client secret"
4116
  msgstr "Skrivnost klienta"
4117
 
4118
+ #: settings.php:3979
4119
  msgid "Enter Client secret"
4120
  msgstr "Vnesite Skrivnost klienta"
4121
 
4122
+ #: settings.php:3989
4123
  msgid "Use default API IDs"
4124
  msgstr "Uporabi privzete API ID-je"
4125
 
4126
+ #: settings.php:3994
4127
  msgid "Save"
4128
  msgstr "Shrani"
4129
 
4130
+ #: settings.php:4270 settings.php:4283 settings.php:4296 settings.php:4311
4131
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4132
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4133
 
4134
+ #: settings.php:4275 settings.php:4288 settings.php:4301 settings.php:4316
4135
+ #: settings.php:4496 settings.php:4500 settings.php:4518 settings.php:4522
4136
+ #: settings.php:4530 settings.php:4533 settings.php:4539 settings.php:4551
4137
  msgid "Looking for AdSense alternative?"
4138
  msgstr "Iščete alternativo za AdSense?"
4139
 
4140
+ #: settings.php:4327
4141
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4142
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4143
 
4144
+ #: settings.php:4332 settings.php:4498 settings.php:4502 settings.php:4510
4145
+ #: settings.php:4536
4146
  msgid "Use Infolinks ads with Adsense to earn more"
4147
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4148
 
4149
+ #: settings.php:4351 settings.php:4389
4150
  msgid "Support plugin development"
4151
  msgstr "Podprite razvoj vtičnika"
4152
 
4153
+ #: settings.php:4352 settings.php:4390
4154
  msgid ""
4155
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4156
  "reviewing the plugin on WordPres"
4158
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4159
  "razširiti novico z oceno vtičnika na WordPress-u"
4160
 
4161
+ #: settings.php:4352
4162
  msgctxt "Review ad Inserter"
4163
  msgid "Review"
4164
  msgstr "Oceni"
4165
 
4166
+ #: settings.php:4353
4167
  msgid ""
4168
  "Support free Ad Inserter development. If you are making money with Ad "
4169
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4172
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4173
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4174
 
4175
+ #: settings.php:4353
4176
  msgid "Donate"
4177
  msgstr "Donirajte"
4178
 
4179
+ #: settings.php:4360 settings.php:4405
4180
  msgid "Average rating of the plugin - Thank you!"
4181
  msgstr "Povprečna ocena vtičnika - Hvala!"
4182
 
4183
  #. translators: %s: Ad Inserter, HTML tags
4184
+ #: settings.php:4371
4185
  msgid ""
4186
  "You've been using %s for a while now, and I hope you're happy with it. "
4187
  "Positive %s reviews %s are a great way to show your appreciation for my "
4195
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4196
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4197
 
4198
+ #: settings.php:4390
4199
  msgid "Review"
4200
  msgstr "Ocena"
4201
 
4202
+ #: settings.php:4394
4203
  msgid "Ad Inserter on Twitter"
4204
  msgstr "Ad Inserter na Twitter-ju"
4205
 
4206
+ #: settings.php:4395
4207
  msgid "Ad Inserter on Facebook"
4208
  msgstr "Ad Inserter na Facebook-u"
4209
 
4210
+ #: settings.php:4398
4211
  msgid "Follow Ad Inserter"
4212
  msgstr "Sledi Ad Inserter-ju"
4213
 
4214
  #. translators: %s: HTML tags
4215
+ #: settings.php:4425
4216
  msgid ""
4217
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4218
  "and %s Common Settings %s pages"
4221
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4222
 
4223
  #. translators: %s: HTML tags
4224
+ #: settings.php:4437
4225
  msgid ""
4226
+ "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4227
+ "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4228
+ "code %s"
4229
  msgstr ""
4230
+ "%s Novinec z %s AdSense? %s %s %s Povežite vaše spletišče %s - %s oglasi V "
4231
+ "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s &mdash; Kako %s vstaviti "
4232
+ "%s Infolinks %s oglasno kodo %s"
4233
 
4234
  #. translators: %s: HTML tags
4235
+ #: settings.php:4458
4236
  msgid ""
4237
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4238
  "purchase you refer to us"
4241
  "nakup, ki nam ga posredujete"
4242
 
4243
  #. translators: %s: HTML tags
4244
+ #: settings.php:4465
4245
  msgid ""
4246
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4247
  "diagnose and fix the problem."
4250
  "navodili za diagnozo in rešitvami za težave."
4251
 
4252
  #. translators: %s: HTML tags
4253
+ #: settings.php:4469
4254
  msgid ""
4255
  "If you need any kind of help or support, please do not hesitate to open a "
4256
  "thread on the %s support forum. %s"
4258
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4259
  "nit na %s podpornem forumu. %s"
4260
 
4261
+ #: settings.php:4514 settings.php:4555
4262
  msgid "A/B testing - Track ad impressions and clicks"
4263
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4264
 
4265
+ #: settings.php:4547 settings.php:4559
4266
  msgid "Code preview with visual CSS editor"
4267
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4268
 
4269
+ #: settings.php:4567
4270
  msgid "Looking for Pro Ad Management plugin?"
4271
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4272
 
4273
+ #: settings.php:4568
4274
  msgid "To Optimally Monetize your WordPress website?"
4275
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4276
 
4277
  #. translators: %s HTML tags
4278
+ #: settings.php:4571
4279
  msgid "%s AdSense Integration %s"
4280
  msgstr "%s Integracija AdSense %s"
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4572
4284
  msgid "Syntax highlighting %s editor %s"
4285
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4573
4289
  msgid "%s Code preview %s with visual CSS editor"
4290
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4291
 
4292
  #. translators: %s HTML tags
4293
+ #: settings.php:4574
4294
  msgid "Simple user interface - all settings on a single page"
4295
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4296
 
4297
  #. translators: %s HTML tags
4298
+ #: settings.php:4575
4299
  msgid ""
4300
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4301
  "image / excerpt"
4304
  "%s / sliko / izvlečkom"
4305
 
4306
  #. translators: %s HTML tags
4307
+ #: settings.php:4576
4308
  msgid "%s Automatic insertion %s between posts on blog pages"
4309
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4310
 
4311
  #. translators: %s HTML tags
4312
+ #: settings.php:4577
4313
  msgid "%s Automatic insertion %s before, between and after comments"
4314
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4315
 
4316
  #. translators: %s HTML tags
4317
+ #: settings.php:4578
4318
  msgid "%s Automatic insertion %s after %s or before %s tag"
4319
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4320
 
4321
  #. translators: %s HTML tags
4322
+ #: settings.php:4579
4323
  msgid "Automatic insertion at %s custom hook positions %s"
4324
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4325
 
4326
  #. translators: %s HTML tags
4327
+ #: settings.php:4580
4328
  msgid ""
4329
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4330
  "selectors)"
4333
  "selektorjev)"
4334
 
4335
  #. translators: %s HTML tags
4336
+ #: settings.php:4581
4337
  msgid "%s Insertion exceptions %s for individual posts and pages"
4338
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4339
 
4340
  #. translators: %s HTML tags
4341
+ #: settings.php:4582
4342
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4343
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4344
 
4345
  #. translators: %s HTML tags
4346
+ #: settings.php:4583
4347
  msgid ""
4348
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4349
  "scrolls)"
4352
  "se stran pomika)"
4353
 
4354
  #. translators: %s HTML tags
4355
+ #: settings.php:4584
4356
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4357
  msgstr ""
4358
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4359
 
4360
  #. translators: %s HTML tags
4361
+ #: settings.php:4585
4362
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4363
  msgstr ""
4364
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4365
 
4366
  #. translators: %s HTML tags
4367
+ #: settings.php:4586
4368
  msgid ""
4369
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4370
  "visible)"
4373
  "postane viden)"
4374
 
4375
  #. translators: %s HTML tags
4376
+ #: settings.php:4587
4377
  msgid ""
4378
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4379
  msgstr ""
4381
  "strani)"
4382
 
4383
  #. translators: %s HTML tags
4384
+ #: settings.php:4588
4385
  msgid "Block %s alignment and style %s customizations"
4386
  msgstr "%s Poravnave in slogi %s bloka po meri"
4387
 
4388
  #. translators: %s HTML tags
4389
+ #: settings.php:4589
4390
  msgid ""
4391
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4392
  "TOS)"
4394
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4395
 
4396
  #. translators: %s HTML tags
4397
+ #: settings.php:4590
4398
  msgid ""
4399
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4400
  "feeds"
4403
  "virih"
4404
 
4405
  #. translators: %s HTML tags
4406
+ #: settings.php:4591
4407
  msgid "%s Ad rotation %s (works also with caching)"
4408
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4409
 
4410
  #. translators: %s HTML tags
4411
+ #: settings.php:4592
4412
  msgid "Create, edit and check %s ads.txt %s file"
4413
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4414
 
4415
  #. translators: %s HTML tags
4416
+ #: settings.php:4593
4417
  msgid ""
4418
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4419
  "AdSense)"
4422
  "AdSense)"
4423
 
4424
  #. translators: %s HTML tags
4425
+ #: settings.php:4594
4426
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4427
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4428
 
4429
  #. translators: %s HTML tags
4430
+ #: settings.php:4595
4431
  msgid "%s Public web reports %s for clients, export to PDF"
4432
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4433
 
4434
  #. translators: %s HTML tags
4435
+ #: settings.php:4596
4436
  msgid "Support for %s A/B testing %s"
4437
  msgstr "Podpora za %s A/B testiranje %s"
4438
 
4439
  #. translators: %s HTML tags
4440
+ #: settings.php:4597
4441
  msgid "Support for %s lazy loading %s"
4442
  msgstr "Podpora za %s leno nalaganje %s"
4443
 
4444
  #. translators: %s HTML tags
4445
+ #: settings.php:4598
4446
  msgid "Support for ads on %s AMP pages %s"
4447
  msgstr "Podpora za oglase na %s AMP straneh %s"
4448
 
4449
  #. translators: %s HTML tags
4450
+ #: settings.php:4599
4451
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4452
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4453
 
4454
  #. translators: %s HTML tags
4455
+ #: settings.php:4600
4456
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4457
  msgstr ""
4458
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4459
 
4460
  #. translators: %s HTML tags
4461
+ #: settings.php:4601
4462
  msgid "PHP code processing"
4463
  msgstr "Procesiranje PHP kode"
4464
 
4465
  #. translators: %s HTML tags
4466
+ #: settings.php:4602
4467
  msgid "%s Banner %s code generator"
4468
  msgstr "Generator kode za %s pasice %s"
4469
 
4470
  #. translators: %s HTML tags
4471
+ #: settings.php:4603
4472
  msgid "Support for %s header and footer %s code"
4473
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4474
 
4475
  #. translators: %s HTML tags
4476
+ #: settings.php:4604
4477
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4478
  msgstr ""
4479
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4480
 
4481
  #. translators: %s HTML tags
4482
+ #: settings.php:4605
4483
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4484
  msgstr ""
4485
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4486
  "strežnika"
4487
 
4488
  #. translators: %s HTML tags
4489
+ #: settings.php:4606
4490
  msgid "Client-side %s mobile device detection %s (works with caching)"
4491
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4492
 
4493
  #. translators: %s HTML tags
4494
+ #: settings.php:4607
4495
  msgid ""
4496
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4497
  "protection"
4500
  "vsebine"
4501
 
4502
  #. translators: %s HTML tags
4503
+ #: settings.php:4608
4504
  msgid "%s Ad blocking statistics %s"
4505
  msgstr "%s Statistika blokiranja oglasov %s"
4506
 
4507
  #. translators: %s HTML tags
4508
+ #: settings.php:4609
4509
  msgid ""
4510
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4511
  "referers"
4513
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4514
 
4515
  #. translators: %s HTML tags
4516
+ #: settings.php:4610
4517
  msgid ""
4518
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4519
  msgstr ""
4520
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4521
 
4522
  #. translators: %s HTML tags
4523
+ #: settings.php:4611
4524
  msgid "%s Multisite options %s to limit settings on the sites"
4525
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4526
 
4527
  #. translators: %s HTML tags
4528
+ #: settings.php:4612
4529
  msgid "%s Import/Export %s block or plugin settings"
4530
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4531
 
4532
  #. translators: %s HTML tags
4533
+ #: settings.php:4613
4534
  msgid "%s Insertion scheduling %s with fallback option"
4535
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4536
 
4537
  #. translators: %s HTML tags
4538
+ #: settings.php:4614
4539
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4540
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4541
 
4542
  #. translators: %s HTML tags
4543
+ #: settings.php:4615
4544
  msgid "Simple troubleshooting with many %s debugging functions %s"
4545
  msgstr ""
4546
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4547
 
4548
  #. translators: %s HTML tags
4549
+ #: settings.php:4616
4550
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4551
  msgstr ""
4552
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4553
 
4554
  #. translators: %s HTML tags
4555
+ #: settings.php:4617
4556
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4557
  msgstr ""
4558
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4559
 
4560
  #. translators: %s HTML tags
4561
+ #: settings.php:4618
4562
  msgid ""
4563
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4564
  msgstr ""
4565
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4566
 
4567
  #. translators: %s HTML tags
4568
+ #: settings.php:4619
4569
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4570
  msgstr ""
4571
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4572
 
4573
  #. translators: %s HTML tags
4574
+ #: settings.php:4620
4575
  msgid "No ads on the settings page"
4576
  msgstr "Stran z nastavitvami brez oglasov"
4577
 
4578
  #. translators: %s HTML tags
4579
+ #: settings.php:4621
4580
  msgid "Premium support"
4581
  msgstr "Vrhunska podpora"
4582
 
4583
  #. translators: %s HTML tags
4584
+ #: settings.php:4624
4585
  msgid ""
4586
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4587
  "website with many advertising features to automatically insert adverts on "
4608
  "bodo ohranile)."
4609
 
4610
  #. translators: %s HTML tags
4611
+ #: settings.php:4637
4612
  msgid "Looking for %s Pro Ad Management plugin? %s"
4613
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4614
 
4615
  #. translators: %s HTML tags
4616
+ #: settings.php:4642
4617
  msgid "Ads between posts"
4618
  msgstr "Oglasi med prispevki"
4619
 
4620
  #. translators: %s HTML tags
4621
+ #: settings.php:4643
4622
  msgid "Ads between comments"
4623
  msgstr "Oglasi med komentarji"
4624
 
4625
  #. translators: %s HTML tags
4626
+ #: settings.php:4644
4627
  msgid "Support via email"
4628
  msgstr "Podpora prek elektronske pošte"
4629
 
4630
  #. translators: %s HTML tags
4631
+ #: settings.php:4650
4632
  msgid "%s Sticky positions %s"
4633
  msgstr "%s Lepljivi položaji %s"
4634
 
4635
  #. translators: %s HTML tags
4636
+ #: settings.php:4651
4637
  msgid "%s Limit insertions %s"
4638
  msgstr "%s Omeji vstavljanja %s"
4639
 
4640
  #. translators: %s HTML tags
4641
+ #: settings.php:4652
4642
  msgid "%s Clearance %s options"
4643
  msgstr "Možnosti %s izogibanja %s"
4644
 
4645
  #. translators: %s HTML tags
4646
+ #: settings.php:4658
4647
  msgid "Ad rotation"
4648
  msgstr "Vrtenje oglasov"
4649
 
4650
  #. translators: %s HTML tags
4651
+ #: settings.php:4659
4652
  msgid "%s A/B testing %s"
4653
  msgstr "%s A/B testiranje %s"
4654
 
4655
  #. translators: %s HTML tags
4656
+ #: settings.php:4660
4657
  msgid "%s Ad tracking %s"
4658
  msgstr "%s Sledenje oglasom %s"
4659
 
4660
  #. translators: %s HTML tags
4661
+ #: settings.php:4666
4662
  msgid "Support for %s AMP pages %s"
4663
  msgstr "Podpora za %s AMP strani %s"
4664
 
4665
  #. translators: %s HTML tags
4666
+ #: settings.php:4667
4667
  msgid "%s Ad blocking detection %s"
4668
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4669
 
4670
  #. translators: %s HTML tags
4671
+ #: settings.php:4668
4672
  msgid "%s Mobile device detection %s"
4673
  msgstr "%s Zaznavanje mobilne naprave %s"
4674
 
4675
  #. translators: %s HTML tags
4676
+ #: settings.php:4675
4677
  msgid "64 code blocks"
4678
  msgstr "64 kodnih blokov"
4679
 
4680
  #. translators: %s HTML tags
4681
+ #: settings.php:4676
4682
  msgid "%s GEO targeting %s"
4683
  msgstr "%s GEO ciljanje %s"
4684
 
4685
  #. translators: %s HTML tags
4686
+ #: settings.php:4677
4687
  msgid "%s Scheduling %s"
4688
  msgstr "%s Urnik %s"
4689
 
5289
  msgid "Fixed by viewport"
5290
  msgstr "Fiksna glede na pogled"
5291
 
5292
+ #: strings.php:180
5293
  msgid "Impressions and clicks"
5294
  msgstr "Prikazi in Kliki"
5295
 
5296
+ #: strings.php:181
5297
  msgid "Advanced WordPress Ad Management Plugin"
5298
  msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
5299
 
5300
+ #: strings.php:187
5301
  msgctxt "Button"
5302
  msgid "Hide"
5303
  msgstr "Skrij"
5304
 
5305
+ #: strings.php:188
5306
  msgctxt "Button"
5307
  msgid "Show"
5308
  msgstr "Pokaži"
5309
 
5310
+ #: strings.php:189
5311
  msgid "Insertion expired"
5312
  msgstr "Vstavljanje poteklo"
5313
 
5314
+ #: strings.php:190
5315
  msgid "Duration"
5316
  msgstr "Trajanje"
5317
 
5318
+ #: strings.php:191
5319
  msgid "Invalid end date - must be after start date"
5320
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5321
 
5322
+ #: strings.php:192
5323
  msgid "Invalid start date - only data for 1 year back is available"
5324
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5325
 
5326
+ #: strings.php:193
5327
  msgid "Invalid date range - only data for 1 year can be displayed"
5328
  msgstr ""
5329
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5330
 
5331
+ #: strings.php:194 strings.php:195 strings.php:196 strings.php:197
5332
+ #: strings.php:198 strings.php:199
5333
  msgid "day"
5334
  msgid_plural "days"
5335
  msgstr[0] "dan"
5337
  msgstr[2] "dni"
5338
  msgstr[3] "dni"
5339
 
5340
+ #: strings.php:201
5341
  msgid "Delete"
5342
  msgstr "Pobriši"
5343
 
5344
+ #: strings.php:203
5345
  msgid "Delete all statistics data?"
5346
  msgstr "Pobrišem vse podatke o statistiki?"
5347
 
5348
  #. translators: %s: dates
5349
+ #: strings.php:205
5350
  msgid "Delete statistics data between %s and %s?"
5351
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5352
 
5353
+ #: strings.php:206
5354
  msgid "Cancel block order rearrangement"
5355
  msgstr "Prekliči preureditev vrstnega reda blokov"
5356
 
5357
+ #: strings.php:208
5358
  msgid "downloading..."
5359
  msgstr "prenašam..."
5360
 
5361
+ #: strings.php:209
5362
  msgid "download error"
5363
  msgstr "napaka pri prenosu"
5364
 
5365
+ #: strings.php:210
5366
  msgid "update error"
5367
  msgstr "napaka pri posodobitvi"
5368
 
5369
+ #: strings.php:211
5370
  msgid "Updating..."
5371
  msgstr "Posodabljam..."
5372
 
5373
+ #: strings.php:213
5374
  msgid "ERROR"
5375
  msgstr "NAPAKA"
5376
 
5377
+ #: strings.php:214
5378
  msgid "Error reloading settings"
5379
  msgstr "Napaka pri nalaganju nastavitev"
5380
 
5381
+ #: strings.php:216
5382
  msgctxt "Search field placeholder"
5383
  msgid "Search..."
5384
  msgstr "Išči..."
5385
 
5386
+ #: strings.php:217
5387
  msgctxt "Search field placeholder"
5388
  msgid "Filter..."
5389
  msgstr "Filter..."
5390
 
5391
+ #: strings.php:218
5392
  msgid "Use filter to limit names in the list"
5393
  msgstr "Uporabite filter za omejitev imen v seznamu"
5394
 
5395
+ #: strings.php:219
5396
  msgctxt "Button"
5397
  msgid "Filter"
5398
  msgstr "Filter"
5399
 
5400
+ #: strings.php:221
5401
  msgid "Position not available"
5402
  msgstr "Položaj ni na razpolago"
5403
 
5404
+ #: strings.php:222
5405
  msgid ""
5406
  "Theme check | Selected position for automatic insertion might not be not "
5407
  "available on this page type"
5409
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5410
  "razpolago na tem tipu strani"
5411
 
5412
+ #: strings.php:223
5413
  msgid "Position available"
5414
  msgstr "Položaj na razpolago"
5415
 
5416
+ #: strings.php:225
5417
  msgid "Select or upload banner image"
5418
  msgstr "Izberi ali naloži sliko pasice"
5419
 
5420
+ #: strings.php:226
5421
  msgid "Use this image"
5422
  msgstr "Uporabi to sliko"
5423
 
5424
+ #: strings.php:240
5425
  msgid "Add"
5426
  msgstr "Dodaj"
5427
 
5428
+ #: strings.php:241
5429
  msgid "Parent"
5430
  msgstr "Starš"
5431
 
5432
+ #: strings.php:242
5433
  msgid "Cancel element selection"
5434
  msgstr "Prekliči izbor HTML elementa"
5435
 
5436
+ #: strings.php:243
5437
  msgid "Select parent element"
5438
  msgstr "Izberi starševski element"
5439
 
5440
+ #: strings.php:244
5441
  msgid "CSS selector"
5442
  msgstr "CSS selektor"
5443
 
5444
+ #: strings.php:245
5445
  msgid "Use current selector"
5446
  msgstr "Uporabi trenutni selektor"
5447
 
5448
+ #: strings.php:246
5449
  msgid "ELEMENT"
5450
  msgstr "ELEMENT"
5451
 
5452
+ #: strings.php:247
5453
  msgid "PATH"
5454
  msgstr "POT"
5455
 
5456
+ #: strings.php:248
5457
  msgid "SELECTOR"
5458
  msgstr "SELEKTOR"
5459
 
5460
+ #: strings.php:249
5461
  msgctxt "Block"
5462
  msgid "VISIBLE"
5463
  msgstr "VIDEN"
5464
 
5465
+ #: strings.php:250
5466
  msgctxt "Block"
5467
  msgid "HIDDEN"
5468
  msgstr "SKRIT"
5475
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5476
  "na optimalna mesta"
5477
 
5478
+ #~ msgid "Enable tracking"
5479
+ #~ msgstr "Omogoči sledenje"
5480
+
5481
+ #~ msgid "Ad Inserter Pro Report"
5482
+ #~ msgstr "Ad Inserter Pro Poročilo"
5483
+
5484
  #~ msgid "Open public report with controls"
5485
  #~ msgstr "Odpri javno poročilo s kontrolami"
5486
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.4.17\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-05-26 16:36:01+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,463 +12,463 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:351
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:367
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:374
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:445
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:452
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:461
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:468
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:478
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1075
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1080
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:1085 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:1090 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1095 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1100 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1147
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1151
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1360
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1641 ad-inserter.php:2493
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2064
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2064
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2065
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2066
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2067
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2068
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2069
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2264
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:2265 includes/functions.php:1530
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
- #: ad-inserter.php:2268
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:2269 includes/functions.php:1533
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
- #: ad-inserter.php:2279
158
  msgid "I would really appreciate if you could rate the plugin on WordPres."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2281
162
  msgid ""
163
  "Positive reviews are a great incentive to fix bugs and to add new features "
164
  "for better monetization of your website. Thank you, Igor"
165
  msgstr ""
166
 
167
  #. translators: %s: Ad Inserter
168
- #: ad-inserter.php:2287
169
  msgid "Rate %s"
170
  msgstr ""
171
 
172
- #: ad-inserter.php:2292
173
  msgid "I already did."
174
  msgstr ""
175
 
176
- #: ad-inserter.php:2306
177
  msgctxt "Menu item"
178
  msgid "Settings"
179
  msgstr ""
180
 
181
  #. translators: %s: Ad Inserter
182
- #: ad-inserter.php:2380
183
  msgctxt "Meta box name"
184
  msgid "%s Individual Exceptions"
185
  msgstr ""
186
 
187
- #: ad-inserter.php:2409 ad-inserter.php:8126 class.php:1967
188
  #: includes/preview.php:1976 includes/preview.php:2020
189
- #: includes/preview.php:2057 settings.php:3684 strings.php:3
190
  msgid "Block"
191
  msgstr ""
192
 
193
- #: ad-inserter.php:2410 settings.php:3685 settings.php:3759
194
  msgid "Name"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2411 settings.php:3687
198
  msgid "Automatic insertion"
199
  msgstr ""
200
 
201
- #: ad-inserter.php:2414
202
  msgid "Default insertion for pages"
203
  msgstr ""
204
 
205
- #: ad-inserter.php:2415
206
  msgid "Default insertion for posts"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
- #: ad-inserter.php:2418
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
- #: ad-inserter.php:2419
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
- #: ad-inserter.php:2427
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
- #: ad-inserter.php:2428
226
  msgctxt "Default insertion for"
227
  msgid "pages"
228
  msgstr ""
229
 
230
- #: ad-inserter.php:2432
231
  msgctxt "Enabled/disabled on all"
232
  msgid "posts"
233
  msgstr ""
234
 
235
- #: ad-inserter.php:2433
236
  msgctxt "Default insertion for"
237
  msgid "posts"
238
  msgstr ""
239
 
240
- #: ad-inserter.php:2452 ad-inserter.php:2465 strings.php:156
241
  msgid "Enabled"
242
  msgstr ""
243
 
244
  #. translators: Menu items
245
- #: ad-inserter.php:2452 ad-inserter.php:2465 includes/functions.php:2191
246
  #: strings.php:16
247
  msgid "Disabled"
248
  msgstr ""
249
 
250
  #. translators: Enabled on all pages or posts
251
- #: ad-inserter.php:2455
252
  msgid "Enabled on all"
253
  msgstr ""
254
 
255
  #. translators: Disabled on all pages or posts
256
- #: ad-inserter.php:2457
257
  msgid "Disabled on all"
258
  msgstr ""
259
 
260
  #. translators: No individual exceptions enabled for pages or posts
261
- #: ad-inserter.php:2485
262
  msgid "No individual exceptions enabled for"
263
  msgstr ""
264
 
265
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
266
- #: ad-inserter.php:2490
267
  msgid ""
268
  "Default insertion for %1$s can be configured for each block on %2$s page - "
269
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
270
  "checkbox.<br />"
271
  msgstr ""
272
 
273
- #: ad-inserter.php:2495
274
  msgid ""
275
  "Default value is <strong>blank</strong> and means no individual exceptions "
276
  "(even if previously defined here).<br />"
277
  msgstr ""
278
 
279
- #: ad-inserter.php:2498
280
  msgctxt "Pages"
281
  msgid ""
282
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
283
  "enabled</strong> to enable individual exception settings on this page.<br />"
284
  msgstr ""
285
 
286
- #: ad-inserter.php:2499
287
  msgctxt "Posts"
288
  msgid ""
289
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
290
  "enabled</strong> to enable individual exception settings on this page.<br />"
291
  msgstr ""
292
 
293
- #: ad-inserter.php:2501
294
  msgid "For more information check page %s"
295
  msgstr ""
296
 
297
  #. translators: Ad Inserter Exceptions documentation page
298
- #: ad-inserter.php:2503
299
  msgid "Individual Exceptions"
300
  msgstr ""
301
 
302
- #: ad-inserter.php:2548
303
  msgid "STATIC PAGE"
304
  msgstr ""
305
 
306
- #: ad-inserter.php:2551
307
  msgid "POST"
308
  msgstr ""
309
 
310
- #: ad-inserter.php:2554
311
  msgid "HOMEPAGE"
312
  msgstr ""
313
 
314
- #: ad-inserter.php:2557
315
  msgid "CATEGORY PAGE"
316
  msgstr ""
317
 
318
- #: ad-inserter.php:2560
319
  msgid "SEARCH PAGE"
320
  msgstr ""
321
 
322
- #: ad-inserter.php:2563
323
  msgid "ARCHIVE PAGE"
324
  msgstr ""
325
 
326
- #: ad-inserter.php:2566
327
  msgid "ERROR 404 PAGE"
328
  msgstr ""
329
 
330
- #: ad-inserter.php:2569
331
  msgid "AJAX CALL"
332
  msgstr ""
333
 
334
- #: ad-inserter.php:2572
335
  msgid "UNKNOWN PAGE TYPE"
336
  msgstr ""
337
 
338
- #: ad-inserter.php:2589
339
  msgid "Click to delete ad blocking detection cokies"
340
  msgstr ""
341
 
342
- #: ad-inserter.php:2590
343
  msgid "AD BLOCKING STATUS UNKNOWN"
344
  msgstr ""
345
 
346
  #. translators: %s: AdSense Auto Ads
347
- #: ad-inserter.php:2614
348
  msgid ""
349
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
350
  "positions"
351
  msgstr ""
352
 
353
- #: ad-inserter.php:2753
354
  msgid "Code for insertion"
355
  msgstr ""
356
 
357
- #: ad-inserter.php:2753
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] ""
361
  msgstr[1] ""
362
 
363
- #: ad-inserter.php:2796
364
  msgid "Header code"
365
  msgstr ""
366
 
367
- #: ad-inserter.php:2796
368
  msgctxt "Header code"
369
  msgid "DISABLED"
370
  msgstr ""
371
 
372
- #: ad-inserter.php:2796 ad-inserter.php:3018
373
  msgid "character inserted"
374
  msgid_plural "characters inserted"
375
  msgstr[0] ""
376
  msgstr[1] ""
377
 
378
- #: ad-inserter.php:2829
379
  msgid "Automatically placed by AdSense Auto ads code"
380
  msgstr ""
381
 
382
- #: ad-inserter.php:3018
383
  msgid "Footer code"
384
  msgstr ""
385
 
386
- #: ad-inserter.php:3018
387
  msgctxt "Footer code"
388
  msgid "DISABLED"
389
  msgstr ""
390
 
391
- #: ad-inserter.php:3024
392
  msgid "JAVASCRIPT NOT WORKING"
393
  msgstr ""
394
 
395
- #: ad-inserter.php:3024
396
  msgid "NO JAVASCRIPT ERRORS"
397
  msgstr ""
398
 
399
- #: ad-inserter.php:3024
400
  msgid "JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
  #. translators: block name (block with default settings)
404
- #: ad-inserter.php:5156
405
  msgctxt "Block name"
406
  msgid "Default"
407
  msgstr ""
408
 
409
  #. translators: %s: Ad Inserter
410
- #: ad-inserter.php:5727
411
  msgid "Error importing %s settings."
412
  msgstr ""
413
 
414
- #: ad-inserter.php:5728
415
  msgid "Error importing settings for block"
416
  msgid_plural "Error importing settings for blocks:"
417
  msgstr[0] ""
418
  msgstr[1] ""
419
 
420
- #: ad-inserter.php:5777
421
  msgid "Settings saved."
422
  msgstr ""
423
 
424
- #: ad-inserter.php:5862
425
  msgid "Settings cleared."
426
  msgstr ""
427
 
428
- #: ad-inserter.php:6207 ad-inserter.php:6209 ad-inserter.php:6232
429
  msgid "word"
430
  msgid_plural "words"
431
  msgstr[0] ""
432
  msgstr[1] ""
433
 
434
- #: ad-inserter.php:6246 ad-inserter.php:6358
435
  msgid "HTML TAGS REMOVED"
436
  msgstr ""
437
 
438
- #: ad-inserter.php:6434
439
  msgid "BEFORE COMMENTS"
440
  msgstr ""
441
 
442
- #: ad-inserter.php:6542
443
  msgid "AFTER COMMENTS"
444
  msgstr ""
445
 
446
- #: ad-inserter.php:6605
447
  msgid "BETWEEN COMMENTS"
448
  msgstr ""
449
 
450
- #: ad-inserter.php:7766
451
  msgid "requires WordPress 4.0 or newer"
452
  msgstr ""
453
 
454
- #: ad-inserter.php:7766
455
  msgid "Please update!"
456
  msgstr ""
457
 
458
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
459
  #. name with HTML tags will be added)
460
- #: ad-inserter.php:7999
461
  msgid "Thank you for installing"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: %s: HTML tags
465
- #: ad-inserter.php:8001
466
  msgid ""
467
  "We would like to %s track its usage %s on your site. This is completely "
468
  "optional and can be disabled at any time."
469
  msgstr ""
470
 
471
- #: ad-inserter.php:8003
472
  msgid ""
473
  "We don't record any sensitive data, only information regarding the WordPress "
474
  "environment and plugin usage, which will help us to make improvements to the "
@@ -476,7 +476,7 @@ msgid ""
476
  msgstr ""
477
 
478
  #. translators: Deactivation message: %s: HTML tags
479
- #: ad-inserter.php:8040
480
  msgid ""
481
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
482
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -484,55 +484,55 @@ msgid ""
484
  msgstr ""
485
 
486
  #. translators: %s: Ad Inserter
487
- #: ad-inserter.php:8083
488
  msgid "%s block."
489
  msgstr ""
490
 
491
  #. translators: widget title
492
- #: ad-inserter.php:8099 ad-inserter.php:8135
493
  msgid "Processing log"
494
  msgstr ""
495
 
496
  #. translators: widget title
497
- #: ad-inserter.php:8101 ad-inserter.php:8136
498
  msgid "Dummy widget"
499
  msgstr ""
500
 
501
  #. translators: widget title
502
- #: ad-inserter.php:8103 ad-inserter.php:8134
503
  msgid "Debugging tools"
504
  msgstr ""
505
 
506
  #. translators: block status (widget title)
507
- #: ad-inserter.php:8110
508
  msgctxt "block"
509
  msgid "PAUSED"
510
  msgstr ""
511
 
512
- #: ad-inserter.php:8111
513
  msgid "WIDGET DISABLED"
514
  msgstr ""
515
 
516
- #: ad-inserter.php:8112
517
  msgid "Unknown block"
518
  msgstr ""
519
 
520
- #: ad-inserter.php:8121 includes/functions.php:2721 settings.php:1045
521
  msgid "Title"
522
  msgstr ""
523
 
524
- #: ad-inserter.php:8143
525
  msgctxt "Widget"
526
  msgid "Sticky"
527
  msgstr ""
528
 
529
- #: ad-inserter.php:8192
530
  msgid ""
531
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
532
  "Inserter you need to first deactivate Ad Inserter Pro."
533
  msgstr ""
534
 
535
- #: ad-inserter.php:8193
536
  msgid ""
537
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
538
  "will clear all settings that are available only in the Pro version "
@@ -564,11 +564,11 @@ msgstr ""
564
  msgid "After post"
565
  msgstr ""
566
 
567
- #: class.php:1957 settings.php:1631 settings.php:3691
568
  msgid "Widget"
569
  msgstr ""
570
 
571
- #: class.php:1962 settings.php:3689
572
  msgid "PHP function call"
573
  msgstr ""
574
 
@@ -629,27 +629,27 @@ msgstr ""
629
  msgid "ip addresses='%s' type='%s'"
630
  msgstr ""
631
 
632
- #: class.php:2944 strings.php:231
633
  msgid "BEFORE"
634
  msgstr ""
635
 
636
- #: class.php:2952 strings.php:233
637
  msgid "PREPEND CONTENT"
638
  msgstr ""
639
 
640
- #: class.php:2956 strings.php:234
641
  msgid "APPEND CONTENT"
642
  msgstr ""
643
 
644
- #: class.php:2960 strings.php:235
645
  msgid "REPLACE CONTENT"
646
  msgstr ""
647
 
648
- #: class.php:2964 strings.php:236
649
  msgid "REPLACE ELEMENT"
650
  msgstr ""
651
 
652
- #: class.php:2975 strings.php:232
653
  msgid "AFTER"
654
  msgstr ""
655
 
@@ -662,19 +662,19 @@ msgstr ""
662
  msgid "for"
663
  msgstr ""
664
 
665
- #: class.php:5585 class.php:5637
666
  msgctxt "category name"
667
  msgid "Uncategorized"
668
  msgstr ""
669
 
670
- #: class.php:6130
671
  msgid ""
672
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
673
  "extension for PHP."
674
  msgstr ""
675
 
676
  #: includes/editor.php:7 includes/placeholders.php:352
677
- #: includes/preview.php:1962 strings.php:238
678
  msgid "Use"
679
  msgstr ""
680
 
@@ -683,7 +683,7 @@ msgid "Reset"
683
  msgstr ""
684
 
685
  #: includes/editor.php:9 includes/placeholders.php:354
686
- #: includes/preview.php:1965 strings.php:201 strings.php:237
687
  msgid "Cancel"
688
  msgstr ""
689
 
@@ -769,7 +769,7 @@ msgid ""
769
  "Leave empty unless position is not properly calculated."
770
  msgstr ""
771
 
772
- #: includes/functions.php:422 settings.php:1201 settings.php:2500
773
  msgid "Open HTML element selector"
774
  msgstr ""
775
 
@@ -898,8 +898,8 @@ msgstr ""
898
  msgid "Double click to toggle controls in public reports"
899
  msgstr ""
900
 
901
- #: includes/functions.php:749 settings.php:3185 settings.php:3221
902
- #: settings.php:3264 strings.php:211
903
  msgid "Loading..."
904
  msgstr ""
905
 
@@ -913,51 +913,51 @@ msgstr ""
913
  msgid "Auto refresh data for the selected range every 60 seconds"
914
  msgstr ""
915
 
916
- #: includes/functions.php:777 includes/functions.php:4734
917
  msgid "Load data for last month"
918
  msgstr ""
919
 
920
- #: includes/functions.php:777 includes/functions.php:4734
921
  msgid "Last Month"
922
  msgstr ""
923
 
924
- #: includes/functions.php:780 includes/functions.php:4737
925
  msgid "Load data for this month"
926
  msgstr ""
927
 
928
- #: includes/functions.php:780 includes/functions.php:4737
929
  msgid "This Month"
930
  msgstr ""
931
 
932
- #: includes/functions.php:783 includes/functions.php:4740
933
  msgid "Load data for this year"
934
  msgstr ""
935
 
936
- #: includes/functions.php:783 includes/functions.php:4740
937
  msgid "This Year"
938
  msgstr ""
939
 
940
- #: includes/functions.php:786 includes/functions.php:4743
941
  msgid "Load data for the last 15 days"
942
  msgstr ""
943
 
944
- #: includes/functions.php:789 includes/functions.php:4746
945
  msgid "Load data for the last 30 days"
946
  msgstr ""
947
 
948
- #: includes/functions.php:792 includes/functions.php:4749
949
  msgid "Load data for the last 90 days"
950
  msgstr ""
951
 
952
- #: includes/functions.php:795 includes/functions.php:4752
953
  msgid "Load data for the last 180 days"
954
  msgstr ""
955
 
956
- #: includes/functions.php:798 includes/functions.php:4755
957
  msgid "Load data for the last 365 days"
958
  msgstr ""
959
 
960
- #: includes/functions.php:808 includes/functions.php:4765
961
  msgid "Load data for the selected range"
962
  msgstr ""
963
 
@@ -1213,7 +1213,7 @@ msgid "Preview iframe code"
1213
  msgstr ""
1214
 
1215
  #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1216
- #: settings.php:2562
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
@@ -1305,7 +1305,9 @@ msgid "countries"
1305
  msgstr ""
1306
 
1307
  #: includes/functions.php:2526
1308
- msgid "Enable tracking"
 
 
1309
  msgstr ""
1310
 
1311
  #: includes/functions.php:2533
@@ -1316,7 +1318,7 @@ msgstr ""
1316
  msgid "Impression and Click Tracking"
1317
  msgstr ""
1318
 
1319
- #: includes/functions.php:2542 settings.php:2450
1320
  msgctxt "ad blocking detection"
1321
  msgid "NOT ENABLED"
1322
  msgstr ""
@@ -1376,7 +1378,7 @@ msgid ""
1376
  "to reset to default image."
1377
  msgstr ""
1378
 
1379
- #: includes/functions.php:2644 strings.php:223
1380
  msgid "Select or upload header image"
1381
  msgstr ""
1382
 
@@ -1434,7 +1436,7 @@ msgstr ""
1434
  msgid "Clear all exceptions for all blocks"
1435
  msgstr ""
1436
 
1437
- #: includes/functions.php:2721 settings.php:3423 settings.php:3761
1438
  msgid "Type"
1439
  msgstr ""
1440
 
@@ -1508,7 +1510,7 @@ msgstr ""
1508
  msgid "Main site settings used for all blogs"
1509
  msgstr ""
1510
 
1511
- #: includes/functions.php:2831 settings.php:2449
1512
  msgid "Ad Blocking Detection"
1513
  msgstr ""
1514
 
@@ -1624,44 +1626,40 @@ msgid "Average"
1624
  msgstr ""
1625
 
1626
  #. Translators: %s: Ad Inserter Pro
1627
- #: includes/functions.php:4327
 
1628
  msgid "%s Report"
1629
  msgstr ""
1630
 
1631
- #. translators: for report range description
1632
- #: includes/functions.php:4418 includes/functions.php:4679 strings.php:178
1633
- msgid "Ad Inserter Pro Report"
1634
- msgstr ""
1635
-
1636
- #: includes/functions.php:4585
1637
  msgid "for last month"
1638
  msgstr ""
1639
 
1640
- #: includes/functions.php:4590
1641
  msgid "for this month"
1642
  msgstr ""
1643
 
1644
- #: includes/functions.php:4595
1645
  msgid "for this year"
1646
  msgstr ""
1647
 
1648
- #: includes/functions.php:4600
1649
  msgid "for the last 15 days"
1650
  msgstr ""
1651
 
1652
- #: includes/functions.php:4605
1653
  msgid "for the last 30 days"
1654
  msgstr ""
1655
 
1656
- #: includes/functions.php:4610
1657
  msgid "for the last 90 days"
1658
  msgstr ""
1659
 
1660
- #: includes/functions.php:4615
1661
  msgid "for the last 180 days"
1662
  msgstr ""
1663
 
1664
- #: includes/functions.php:4620
1665
  msgid "for the last 365 days"
1666
  msgstr ""
1667
 
@@ -1689,7 +1687,7 @@ msgstr ""
1689
  msgid "Placeholder"
1690
  msgstr ""
1691
 
1692
- #: includes/placeholders.php:363 settings.php:808 settings.php:3762
1693
  msgid "Size"
1694
  msgstr ""
1695
 
@@ -1797,11 +1795,11 @@ msgstr ""
1797
  msgid "Ad Blocking Detected Message Preview"
1798
  msgstr ""
1799
 
1800
- #: includes/preview-adb.php:348 settings.php:2575
1801
  msgid "Message CSS"
1802
  msgstr ""
1803
 
1804
- #: includes/preview-adb.php:353 settings.php:2583
1805
  msgid "Overlay CSS"
1806
  msgstr ""
1807
 
@@ -1842,7 +1840,7 @@ msgid "background"
1842
  msgstr ""
1843
 
1844
  #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1845
- #: settings.php:3688
1846
  msgid "Alignment"
1847
  msgstr ""
1848
 
@@ -2048,7 +2046,7 @@ msgstr ""
2048
  msgid "General Settings"
2049
  msgstr ""
2050
 
2051
- #: settings.php:592 settings.php:2321 settings.php:2379 settings.php:2555
2052
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2053
  msgstr ""
2054
 
@@ -2084,7 +2082,7 @@ msgstr ""
2084
  msgid "Clear block"
2085
  msgstr ""
2086
 
2087
- #: settings.php:658 settings.php:3656
2088
  msgid "Copy block"
2089
  msgstr ""
2090
 
@@ -2262,7 +2260,7 @@ msgid ""
2262
  "editor. Leave blank for no individual post exceptions."
2263
  msgstr ""
2264
 
2265
- #: settings.php:985 settings.php:3072
2266
  msgid "Posts"
2267
  msgstr ""
2268
 
@@ -2273,7 +2271,7 @@ msgid ""
2273
  "theme)"
2274
  msgstr ""
2275
 
2276
- #: settings.php:990 settings.php:3074
2277
  msgid "Homepage"
2278
  msgstr ""
2279
 
@@ -2281,7 +2279,7 @@ msgstr ""
2281
  msgid "Enable insertion on category blog pages (including sub-pages)"
2282
  msgstr ""
2283
 
2284
- #: settings.php:995 settings.php:3075
2285
  msgid "Category pages"
2286
  msgstr ""
2287
 
@@ -2299,7 +2297,7 @@ msgid ""
2299
  "page editor. Leave blank for no individual page exceptions."
2300
  msgstr ""
2301
 
2302
- #: settings.php:1013 settings.php:3073
2303
  msgid "Static pages"
2304
  msgstr ""
2305
 
@@ -2307,7 +2305,7 @@ msgstr ""
2307
  msgid "Enable insertion on search blog pages"
2308
  msgstr ""
2309
 
2310
- #: settings.php:1018 settings.php:3077
2311
  msgid "Search pages"
2312
  msgstr ""
2313
 
@@ -2408,7 +2406,7 @@ msgstr ""
2408
  msgid "HTML element selector or comma separated list of selectors"
2409
  msgstr ""
2410
 
2411
- #: settings.php:1216 settings.php:2460
2412
  msgid "Action"
2413
  msgstr ""
2414
 
@@ -2675,7 +2673,7 @@ msgstr ""
2675
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2676
  msgstr ""
2677
 
2678
- #: settings.php:1643 settings.php:3690
2679
  msgid "Shortcode"
2680
  msgstr ""
2681
 
@@ -3071,7 +3069,7 @@ msgstr ""
3071
  msgid "Wrapping div"
3072
  msgstr ""
3073
 
3074
- #: settings.php:2245 settings.php:2666
3075
  msgid "BLOCK CODE"
3076
  msgstr ""
3077
 
@@ -3125,7 +3123,7 @@ msgstr ""
3125
  msgid "Enable insertion of this code into HTML page header"
3126
  msgstr ""
3127
 
3128
- #: settings.php:2330 settings.php:2388 settings.php:2560
3129
  msgid "Process PHP code"
3130
  msgstr ""
3131
 
@@ -3142,229 +3140,229 @@ msgctxt "code in the header"
3142
  msgid "NOT ENABLED"
3143
  msgstr ""
3144
 
3145
- #: settings.php:2356 settings.php:2414
3146
  msgid "Use server-side detection to insert code only for"
3147
  msgstr ""
3148
 
3149
- #: settings.php:2369
3150
  msgid ""
3151
  "Enable insertion of this code into HTML page header on page for Error 404: "
3152
  "Page not found"
3153
  msgstr ""
3154
 
3155
- #: settings.php:2369 settings.php:2427
3156
  msgid "Insert on Error 404 page"
3157
  msgstr ""
3158
 
3159
- #: settings.php:2384
3160
  msgid "Enable insertion of this code into HTML page footer"
3161
  msgstr ""
3162
 
3163
- #: settings.php:2392
3164
  msgid "HTML Page Footer Code"
3165
  msgstr ""
3166
 
3167
  #. translators: %s: HTML tags
3168
- #: settings.php:2400
3169
  msgid "Code before the %s tag of the the HTML page"
3170
  msgstr ""
3171
 
3172
- #: settings.php:2401
3173
  msgctxt "code in the footer"
3174
  msgid "NOT ENABLED"
3175
  msgstr ""
3176
 
3177
- #: settings.php:2427
3178
  msgid ""
3179
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3180
  "Page not found"
3181
  msgstr ""
3182
 
3183
- #: settings.php:2440
3184
  msgid "Code for ad blocking detection inserted. Click for details."
3185
  msgstr ""
3186
 
3187
- #: settings.php:2445
3188
  msgid "Enable detection of ad blocking"
3189
  msgstr ""
3190
 
3191
- #: settings.php:2463
3192
  msgid "Global action when ad blocking is detected"
3193
  msgstr ""
3194
 
3195
- #: settings.php:2469
3196
  msgid "No action for"
3197
  msgstr ""
3198
 
3199
- #: settings.php:2470
3200
  msgid "Exceptions for global action when ad blocking is detected."
3201
  msgstr ""
3202
 
3203
- #: settings.php:2480
3204
  msgid "Delay Action"
3205
  msgstr ""
3206
 
3207
- #: settings.php:2483
3208
  msgid ""
3209
  "Number of page views to delay action when ad blocking is detected. Leave "
3210
  "empty for no delay (action fires on first page view). Sets cookie."
3211
  msgstr ""
3212
 
3213
- #: settings.php:2483
3214
  msgctxt "Delay Action for x "
3215
  msgid "page views"
3216
  msgstr ""
3217
 
3218
- #: settings.php:2488
3219
  msgid "No Action Period"
3220
  msgstr ""
3221
 
3222
- #: settings.php:2491
3223
  msgid ""
3224
  "Number of days to supress action when ad blocking is detected. Leave empty "
3225
  "for no no-action period (action fires always after defined page view delay). "
3226
  "Sets cookie."
3227
  msgstr ""
3228
 
3229
- #: settings.php:2491
3230
  msgctxt "no action period"
3231
  msgid "days"
3232
  msgstr ""
3233
 
3234
- #: settings.php:2496
3235
  msgid "Custom Selectors"
3236
  msgstr ""
3237
 
3238
- #: settings.php:2499
3239
  msgid ""
3240
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3241
  "blocking detection. Invisible element or element with zero height means ad "
3242
  "blocking is present."
3243
  msgstr ""
3244
 
3245
- #: settings.php:2511
3246
  msgid "Redirection Page"
3247
  msgstr ""
3248
 
3249
- #: settings.php:2523
3250
  msgid "Custom Url"
3251
  msgstr ""
3252
 
3253
- #: settings.php:2528
3254
  msgid ""
3255
  "Static page for redirection when ad blocking is detected. For other pages "
3256
  "select Custom url and set it below."
3257
  msgstr ""
3258
 
3259
- #: settings.php:2537
3260
  msgid "Custom Redirection Url"
3261
  msgstr ""
3262
 
3263
- #: settings.php:2549
3264
  msgid "Message HTML code"
3265
  msgstr ""
3266
 
3267
- #: settings.php:2562
3268
  msgid "Preview message when ad blocking is detected"
3269
  msgstr ""
3270
 
3271
- #: settings.php:2591
3272
  msgid "Prevent visitors from closing the warning message"
3273
  msgstr ""
3274
 
3275
- #: settings.php:2591
3276
  msgid "Undismissible Message"
3277
  msgstr ""
3278
 
3279
- #: settings.php:2597
3280
  msgid "Not undismissible for"
3281
  msgstr ""
3282
 
3283
- #: settings.php:2598
3284
  msgid "Users which can close the warning message."
3285
  msgstr ""
3286
 
3287
- #: settings.php:2612
3288
  msgid ""
3289
  "Force showing admin toolbar for administrators when viewing site. Enable "
3290
  "this option when you are logged in as admin and you don't see admin toolbar."
3291
  msgstr ""
3292
 
3293
- #: settings.php:2620
3294
  msgid "Disable header code (Header tab)"
3295
  msgstr ""
3296
 
3297
- #: settings.php:2624
3298
  msgid "Disable footer code (Footer tab)"
3299
  msgstr ""
3300
 
3301
  #. translators: %s: Ad Inserter
3302
- #: settings.php:2628
3303
  msgid "Disable %s JavaScript code"
3304
  msgstr ""
3305
 
3306
  #. translators: %s: Ad Inserter
3307
- #: settings.php:2632
3308
  msgid "Disable %s CSS code"
3309
  msgstr ""
3310
 
3311
- #: settings.php:2636
3312
  msgid ""
3313
  "Disable PHP code processing (in all blocks including header and footer code)"
3314
  msgstr ""
3315
 
3316
- #: settings.php:2640
3317
  msgid "Disable insertion of all blocks"
3318
  msgstr ""
3319
 
3320
- #: settings.php:2644
3321
  msgid "Disable insertions"
3322
  msgstr ""
3323
 
3324
  #. translators: %s: Ad Inserter
3325
- #: settings.php:2656
3326
  msgid "%s CSS CODE"
3327
  msgstr ""
3328
 
3329
- #: settings.php:2659
3330
  msgid "HEADER CODE"
3331
  msgstr ""
3332
 
3333
  #. translators: %s: PHP tags
3334
- #: settings.php:2665
3335
  msgid "BLOCK PHP CODE"
3336
  msgstr ""
3337
 
3338
  #. translators: %s: Ad Inserter
3339
- #: settings.php:2671
3340
  msgid "%s JS CODE"
3341
  msgstr ""
3342
 
3343
- #: settings.php:2674
3344
  msgid "FOOTER CODE"
3345
  msgstr ""
3346
 
3347
- #: settings.php:2683
3348
  msgid "Force showing admin toolbar when viewing site"
3349
  msgstr ""
3350
 
3351
- #: settings.php:2690
3352
  msgid "Enable debugging functions in admin toolbar"
3353
  msgstr ""
3354
 
3355
- #: settings.php:2692
3356
  msgid "Debugging functions in admin toolbar"
3357
  msgstr ""
3358
 
3359
- #: settings.php:2699
3360
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3361
  msgstr ""
3362
 
3363
- #: settings.php:2701
3364
  msgid "Debugging functions on mobile screens"
3365
  msgstr ""
3366
 
3367
- #: settings.php:2708
3368
  msgid ""
3369
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3370
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3373,201 +3371,201 @@ msgid ""
3373
  "administrators debugging is always enabled."
3374
  msgstr ""
3375
 
3376
- #: settings.php:2710
3377
  msgid "Remote debugging"
3378
  msgstr ""
3379
 
3380
- #: settings.php:2717
3381
  msgid ""
3382
  "Disable translation to see original texts for the settings and messages in "
3383
  "English"
3384
  msgstr ""
3385
 
3386
- #: settings.php:2719
3387
  msgid "Disable translation"
3388
  msgstr ""
3389
 
3390
- #: settings.php:3060
3391
  msgid "Available positions for current theme"
3392
  msgstr ""
3393
 
3394
- #: settings.php:3061
3395
  msgid "Error checking pages"
3396
  msgstr ""
3397
 
3398
- #: settings.php:3064
3399
  msgid "Toggle theme checker for available positions for automatic insertion"
3400
  msgstr ""
3401
 
3402
- #: settings.php:3064
3403
  msgctxt "Button"
3404
  msgid "Check"
3405
  msgstr ""
3406
 
3407
- #: settings.php:3071
3408
  msgid "Position"
3409
  msgstr ""
3410
 
3411
- #: settings.php:3076
3412
  msgid "Archive pages"
3413
  msgstr ""
3414
 
3415
- #: settings.php:3135
3416
  msgid ""
3417
  "Position not available because output buffering (tab [*]) is not enabled"
3418
  msgstr ""
3419
 
3420
- #: settings.php:3138 strings.php:219
3421
  msgid "Position not checked yet"
3422
  msgstr ""
3423
 
3424
- #: settings.php:3169
3425
  msgid "Toggle active/all blocks"
3426
  msgstr ""
3427
 
3428
- #: settings.php:3173 strings.php:206
3429
  msgid "Rearrange block order"
3430
  msgstr ""
3431
 
3432
- #: settings.php:3178
3433
  msgid "Save new block order"
3434
  msgstr ""
3435
 
3436
- #: settings.php:3178
3437
  msgid "Save Changes"
3438
  msgstr ""
3439
 
3440
- #: settings.php:3203
3441
  msgid "Toggle active/all ad units"
3442
  msgstr ""
3443
 
3444
- #: settings.php:3207
3445
  msgid "Reload AdSense ad units"
3446
  msgstr ""
3447
 
3448
- #: settings.php:3211
3449
  msgid "Clear authorization to access AdSense account"
3450
  msgstr ""
3451
 
3452
- #: settings.php:3215 settings.php:3847 settings.php:3914 strings.php:214
3453
  msgid "Google AdSense Homepage"
3454
  msgstr ""
3455
 
3456
- #: settings.php:3238
3457
  msgid "Reload ads.txt file"
3458
  msgstr ""
3459
 
3460
  #. translators: %s: ads.txt
3461
- #: settings.php:3242
3462
  msgid "Open %s"
3463
  msgstr ""
3464
 
3465
- #: settings.php:3246
3466
  msgid "Switch to table view"
3467
  msgstr ""
3468
 
3469
- #: settings.php:3250
3470
  msgid "Switch to editor"
3471
  msgstr ""
3472
 
3473
- #: settings.php:3254
3474
  msgid "Save ads.txt file"
3475
  msgstr ""
3476
 
3477
- #: settings.php:3389 settings.php:3397 strings.php:199
3478
  msgid "Warning"
3479
  msgstr ""
3480
 
3481
- #: settings.php:3389
3482
  msgid "ads.txt file must be placed on the root domain"
3483
  msgstr ""
3484
 
3485
  #. translators: %s: file path
3486
- #: settings.php:3390
3487
  msgid "WordPress is installed in %s"
3488
  msgstr ""
3489
 
3490
- #: settings.php:3391
3491
  msgid "Showing file"
3492
  msgstr ""
3493
 
3494
- #: settings.php:3397
3495
  msgid "File %s not found"
3496
  msgstr ""
3497
 
3498
- #: settings.php:3404
3499
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3500
  msgstr ""
3501
 
3502
- #: settings.php:3421
3503
  msgid "Advertising system"
3504
  msgstr ""
3505
 
3506
- #: settings.php:3422
3507
  msgid "Account ID"
3508
  msgstr ""
3509
 
3510
- #: settings.php:3424
3511
  msgid "Certification authority ID"
3512
  msgstr ""
3513
 
3514
- #: settings.php:3439
3515
  msgid "Account ID found in block and present in ads.txt"
3516
  msgstr ""
3517
 
3518
- #: settings.php:3443
3519
  msgid "Account ID found in block but not present in ads.txt"
3520
  msgstr ""
3521
 
3522
- #: settings.php:3659
3523
  msgid "Preview block"
3524
  msgstr ""
3525
 
3526
- #: settings.php:3668
3527
  msgid "Insertion disabled"
3528
  msgstr ""
3529
 
3530
- #: settings.php:3692
3531
  msgid "Widget positions"
3532
  msgstr ""
3533
 
3534
- #: settings.php:3758
3535
  msgid "Ad unit"
3536
  msgstr ""
3537
 
3538
- #: settings.php:3760
3539
  msgid "Slot ID"
3540
  msgstr ""
3541
 
3542
- #: settings.php:3786
3543
  msgid "Copy AdSense code"
3544
  msgstr ""
3545
 
3546
- #: settings.php:3789
3547
  msgid "Preview AdSense ad"
3548
  msgstr ""
3549
 
3550
- #: settings.php:3792
3551
  msgid "Get AdSense code"
3552
  msgstr ""
3553
 
3554
  #. translators: %s: HTML tags
3555
- #: settings.php:3824
3556
  msgid ""
3557
  "Please %s clear authorization %s with the button %s above and once again "
3558
  "authorize access to your AdSense account."
3559
  msgstr ""
3560
 
3561
- #: settings.php:3843
3562
  msgid "AdSense Integration"
3563
  msgstr ""
3564
 
3565
- #: settings.php:3845
3566
  msgid "AdSense Integration - Step 2"
3567
  msgstr ""
3568
 
3569
  #. translators: %s: HTML tags
3570
- #: settings.php:3851
3571
  msgid ""
3572
  "Authorize %s to access your AdSense account. Click on the %s Get "
3573
  "Authorization Code %s button to open a new window where you can allow "
@@ -3576,7 +3574,7 @@ msgid ""
3576
  msgstr ""
3577
 
3578
  #. translators: %s: HTML tags
3579
- #: settings.php:3858
3580
  msgid ""
3581
  "If you get error, can't access ad units or would like to use own Google API "
3582
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3584,7 +3582,7 @@ msgid ""
3584
  msgstr ""
3585
 
3586
  #. translators: %s: HTML tags
3587
- #: settings.php:3860
3588
  msgid ""
3589
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3590
  "Authorization Code %s button to open a new window where you can allow "
@@ -3593,38 +3591,38 @@ msgid ""
3593
  msgstr ""
3594
 
3595
  #. translators: %s: HTML tags
3596
- #: settings.php:3867
3597
  msgid ""
3598
  "If you get error %s invalid client %s click on the button %s Clear and "
3599
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3600
  msgstr ""
3601
 
3602
- #: settings.php:3878
3603
  msgid "Get Authorization Code"
3604
  msgstr ""
3605
 
3606
- #: settings.php:3881
3607
  msgid "Enter Authorization Code"
3608
  msgstr ""
3609
 
3610
- #: settings.php:3891
3611
  msgid "Use own API IDs"
3612
  msgstr ""
3613
 
3614
- #: settings.php:3893
3615
  msgid "Clear and return to Step 1"
3616
  msgstr ""
3617
 
3618
- #: settings.php:3897
3619
  msgid "Authorize"
3620
  msgstr ""
3621
 
3622
- #: settings.php:3913
3623
  msgid "AdSense Integration - Step 1"
3624
  msgstr ""
3625
 
3626
  #. translators: %s: Ad Inserter
3627
- #: settings.php:3917
3628
  msgid ""
3629
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3630
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3633,176 +3631,176 @@ msgid ""
3633
  msgstr ""
3634
 
3635
  #. translators: %s: HTML tags
3636
- #: settings.php:3926
3637
  msgid "Go to %s Google APIs and Services console %s"
3638
  msgstr ""
3639
 
3640
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3641
- #: settings.php:3927
3642
  msgid ""
3643
  "Create %1$s project - if the project and IDs are already created click on "
3644
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: HTML tags
3648
- #: settings.php:3928
3649
  msgid ""
3650
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3651
  "create a new project"
3652
  msgstr ""
3653
 
3654
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3655
- #: settings.php:3929
3656
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3657
  msgstr ""
3658
 
3659
  #. translators: %s: HTML tags
3660
- #: settings.php:3930
3661
  msgid ""
3662
  "Click on project selection, wait for the project to be created and then and "
3663
  "select %s as the current project"
3664
  msgstr ""
3665
 
3666
  #. translators: %s: HTML tags
3667
- #: settings.php:3931
3668
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3669
  msgstr ""
3670
 
3671
  #. translators: %s: HTML tags
3672
- #: settings.php:3932
3673
  msgid "Search for adsense and enable %s"
3674
  msgstr ""
3675
 
3676
  #. translators: %s: HTML tags
3677
- #: settings.php:3933
3678
  msgid "Click on %s CREATE CREDENTIALS %s"
3679
  msgstr ""
3680
 
3681
  #. translators: %s: HTML tags
3682
- #: settings.php:3934
3683
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3684
  msgstr ""
3685
 
3686
  #. translators: %s: HTML tags
3687
- #: settings.php:3935
3688
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3689
  msgstr ""
3690
 
3691
  #. translators: %s: HTML tags
3692
- #: settings.php:3936
3693
  msgid "Click on %s What credentials do I need? %s"
3694
  msgstr ""
3695
 
3696
  #. translators: %s: HTML tags
3697
- #: settings.php:3937
3698
  msgid ""
3699
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3700
  "Ad Inserter client %s"
3701
  msgstr ""
3702
 
3703
  #. translators: %s: HTML tags
3704
- #: settings.php:3938
3705
  msgid ""
3706
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3707
  "enter %s"
3708
  msgstr ""
3709
 
3710
  #. translators: %s: HTML tags
3711
- #: settings.php:3939
3712
  msgid "Click on %s Continue %s"
3713
  msgstr ""
3714
 
3715
  #. translators: %s: HTML tags
3716
- #: settings.php:3940
3717
  msgid "Click on %s Done %s"
3718
  msgstr ""
3719
 
3720
  #. translators: %s: HTML tags
3721
- #: settings.php:3941
3722
  msgid ""
3723
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3724
  "secret %s"
3725
  msgstr ""
3726
 
3727
- #: settings.php:3942
3728
  msgid "Copy them to the appropriate fields below"
3729
  msgstr ""
3730
 
3731
- #: settings.php:3948
3732
  msgid "Client ID"
3733
  msgstr ""
3734
 
3735
- #: settings.php:3951
3736
  msgid "Enter Client ID"
3737
  msgstr ""
3738
 
3739
- #: settings.php:3956
3740
  msgid "Client secret"
3741
  msgstr ""
3742
 
3743
- #: settings.php:3959
3744
  msgid "Enter Client secret"
3745
  msgstr ""
3746
 
3747
- #: settings.php:3969
3748
  msgid "Use default API IDs"
3749
  msgstr ""
3750
 
3751
- #: settings.php:3974
3752
  msgid "Save"
3753
  msgstr ""
3754
 
3755
- #: settings.php:4250 settings.php:4263 settings.php:4276 settings.php:4291
3756
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3757
  msgstr ""
3758
 
3759
- #: settings.php:4255 settings.php:4268 settings.php:4281 settings.php:4296
3760
- #: settings.php:4474 settings.php:4478 settings.php:4480 settings.php:4496
3761
- #: settings.php:4508 settings.php:4511 settings.php:4517 settings.php:4529
3762
  msgid "Looking for AdSense alternative?"
3763
  msgstr ""
3764
 
3765
- #: settings.php:4307
3766
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3767
  msgstr ""
3768
 
3769
- #: settings.php:4312 settings.php:4476 settings.php:4488 settings.php:4514
3770
- #: settings.php:4537
3771
  msgid "Use Infolinks ads with Adsense to earn more"
3772
  msgstr ""
3773
 
3774
- #: settings.php:4331 settings.php:4369
3775
  msgid "Support plugin development"
3776
  msgstr ""
3777
 
3778
- #: settings.php:4332 settings.php:4370
3779
  msgid ""
3780
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3781
  "reviewing the plugin on WordPres"
3782
  msgstr ""
3783
 
3784
- #: settings.php:4332
3785
  msgctxt "Review ad Inserter"
3786
  msgid "Review"
3787
  msgstr ""
3788
 
3789
- #: settings.php:4333
3790
  msgid ""
3791
  "Support free Ad Inserter development. If you are making money with Ad "
3792
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3793
  "you!"
3794
  msgstr ""
3795
 
3796
- #: settings.php:4333
3797
  msgid "Donate"
3798
  msgstr ""
3799
 
3800
- #: settings.php:4340 settings.php:4385
3801
  msgid "Average rating of the plugin - Thank you!"
3802
  msgstr ""
3803
 
3804
  #. translators: %s: Ad Inserter, HTML tags
3805
- #: settings.php:4351
3806
  msgid ""
3807
  "You've been using %s for a while now, and I hope you're happy with it. "
3808
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3811,351 +3809,352 @@ msgid ""
3811
  "your website. %s Thank you!"
3812
  msgstr ""
3813
 
3814
- #: settings.php:4370
3815
  msgid "Review"
3816
  msgstr ""
3817
 
3818
- #: settings.php:4374
3819
  msgid "Ad Inserter on Twitter"
3820
  msgstr ""
3821
 
3822
- #: settings.php:4375
3823
  msgid "Ad Inserter on Facebook"
3824
  msgstr ""
3825
 
3826
- #: settings.php:4378
3827
  msgid "Follow Ad Inserter"
3828
  msgstr ""
3829
 
3830
  #. translators: %s: HTML tags
3831
- #: settings.php:4405
3832
  msgid ""
3833
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3834
  "and %s Common Settings %s pages"
3835
  msgstr ""
3836
 
3837
  #. translators: %s: HTML tags
3838
- #: settings.php:4417
3839
  msgid ""
3840
- "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3841
- "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
 
3842
  msgstr ""
3843
 
3844
  #. translators: %s: HTML tags
3845
- #: settings.php:4436
3846
  msgid ""
3847
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
3848
  "purchase you refer to us"
3849
  msgstr ""
3850
 
3851
  #. translators: %s: HTML tags
3852
- #: settings.php:4443
3853
  msgid ""
3854
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3855
  "diagnose and fix the problem."
3856
  msgstr ""
3857
 
3858
  #. translators: %s: HTML tags
3859
- #: settings.php:4447
3860
  msgid ""
3861
  "If you need any kind of help or support, please do not hesitate to open a "
3862
  "thread on the %s support forum. %s"
3863
  msgstr ""
3864
 
3865
- #: settings.php:4492 settings.php:4533
3866
  msgid "A/B testing - Track ad impressions and clicks"
3867
  msgstr ""
3868
 
3869
- #: settings.php:4500 settings.php:4525
3870
  msgid "Code preview with visual CSS editor"
3871
  msgstr ""
3872
 
3873
- #: settings.php:4545
3874
  msgid "Looking for Pro Ad Management plugin?"
3875
  msgstr ""
3876
 
3877
- #: settings.php:4546
3878
  msgid "To Optimally Monetize your WordPress website?"
3879
  msgstr ""
3880
 
3881
  #. translators: %s HTML tags
3882
- #: settings.php:4549
3883
  msgid "%s AdSense Integration %s"
3884
  msgstr ""
3885
 
3886
  #. translators: %s HTML tags
3887
- #: settings.php:4550
3888
  msgid "Syntax highlighting %s editor %s"
3889
  msgstr ""
3890
 
3891
  #. translators: %s HTML tags
3892
- #: settings.php:4551
3893
  msgid "%s Code preview %s with visual CSS editor"
3894
  msgstr ""
3895
 
3896
  #. translators: %s HTML tags
3897
- #: settings.php:4552
3898
  msgid "Simple user interface - all settings on a single page"
3899
  msgstr ""
3900
 
3901
  #. translators: %s HTML tags
3902
- #: settings.php:4553
3903
  msgid ""
3904
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3905
  "image / excerpt"
3906
  msgstr ""
3907
 
3908
  #. translators: %s HTML tags
3909
- #: settings.php:4554
3910
  msgid "%s Automatic insertion %s between posts on blog pages"
3911
  msgstr ""
3912
 
3913
  #. translators: %s HTML tags
3914
- #: settings.php:4555
3915
  msgid "%s Automatic insertion %s before, between and after comments"
3916
  msgstr ""
3917
 
3918
  #. translators: %s HTML tags
3919
- #: settings.php:4556
3920
  msgid "%s Automatic insertion %s after %s or before %s tag"
3921
  msgstr ""
3922
 
3923
  #. translators: %s HTML tags
3924
- #: settings.php:4557
3925
  msgid "Automatic insertion at %s custom hook positions %s"
3926
  msgstr ""
3927
 
3928
  #. translators: %s HTML tags
3929
- #: settings.php:4558
3930
  msgid ""
3931
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3932
  "selectors)"
3933
  msgstr ""
3934
 
3935
  #. translators: %s HTML tags
3936
- #: settings.php:4559
3937
  msgid "%s Insertion exceptions %s for individual posts and pages"
3938
  msgstr ""
3939
 
3940
  #. translators: %s HTML tags
3941
- #: settings.php:4560
3942
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3943
  msgstr ""
3944
 
3945
  #. translators: %s HTML tags
3946
- #: settings.php:4561
3947
  msgid ""
3948
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3949
  "scrolls)"
3950
  msgstr ""
3951
 
3952
  #. translators: %s HTML tags
3953
- #: settings.php:4562
3954
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3955
  msgstr ""
3956
 
3957
  #. translators: %s HTML tags
3958
- #: settings.php:4563
3959
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3960
  msgstr ""
3961
 
3962
  #. translators: %s HTML tags
3963
- #: settings.php:4564
3964
  msgid ""
3965
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3966
  "visible)"
3967
  msgstr ""
3968
 
3969
  #. translators: %s HTML tags
3970
- #: settings.php:4565
3971
  msgid ""
3972
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
- #: settings.php:4566
3977
  msgid "Block %s alignment and style %s customizations"
3978
  msgstr ""
3979
 
3980
  #. translators: %s HTML tags
3981
- #: settings.php:4567
3982
  msgid ""
3983
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3984
  "TOS)"
3985
  msgstr ""
3986
 
3987
  #. translators: %s HTML tags
3988
- #: settings.php:4568
3989
  msgid ""
3990
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3991
  "feeds"
3992
  msgstr ""
3993
 
3994
  #. translators: %s HTML tags
3995
- #: settings.php:4569
3996
  msgid "%s Ad rotation %s (works also with caching)"
3997
  msgstr ""
3998
 
3999
  #. translators: %s HTML tags
4000
- #: settings.php:4570
4001
  msgid "Create, edit and check %s ads.txt %s file"
4002
  msgstr ""
4003
 
4004
  #. translators: %s HTML tags
4005
- #: settings.php:4571
4006
  msgid ""
4007
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4008
  "AdSense)"
4009
  msgstr ""
4010
 
4011
  #. translators: %s HTML tags
4012
- #: settings.php:4572
4013
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4014
  msgstr ""
4015
 
4016
  #. translators: %s HTML tags
4017
- #: settings.php:4573
4018
  msgid "%s Public web reports %s for clients, export to PDF"
4019
  msgstr ""
4020
 
4021
  #. translators: %s HTML tags
4022
- #: settings.php:4574
4023
  msgid "Support for %s A/B testing %s"
4024
  msgstr ""
4025
 
4026
  #. translators: %s HTML tags
4027
- #: settings.php:4575
4028
  msgid "Support for %s lazy loading %s"
4029
  msgstr ""
4030
 
4031
  #. translators: %s HTML tags
4032
- #: settings.php:4576
4033
  msgid "Support for ads on %s AMP pages %s"
4034
  msgstr ""
4035
 
4036
  #. translators: %s HTML tags
4037
- #: settings.php:4577
4038
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4039
  msgstr ""
4040
 
4041
  #. translators: %s HTML tags
4042
- #: settings.php:4578
4043
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4044
  msgstr ""
4045
 
4046
  #. translators: %s HTML tags
4047
- #: settings.php:4579
4048
  msgid "PHP code processing"
4049
  msgstr ""
4050
 
4051
  #. translators: %s HTML tags
4052
- #: settings.php:4580
4053
  msgid "%s Banner %s code generator"
4054
  msgstr ""
4055
 
4056
  #. translators: %s HTML tags
4057
- #: settings.php:4581
4058
  msgid "Support for %s header and footer %s code"
4059
  msgstr ""
4060
 
4061
  #. translators: %s HTML tags
4062
- #: settings.php:4582
4063
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4064
  msgstr ""
4065
 
4066
  #. translators: %s HTML tags
4067
- #: settings.php:4583
4068
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4069
  msgstr ""
4070
 
4071
  #. translators: %s HTML tags
4072
- #: settings.php:4584
4073
  msgid "Client-side %s mobile device detection %s (works with caching)"
4074
  msgstr ""
4075
 
4076
  #. translators: %s HTML tags
4077
- #: settings.php:4585
4078
  msgid ""
4079
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4080
  "protection"
4081
  msgstr ""
4082
 
4083
  #. translators: %s HTML tags
4084
- #: settings.php:4586
4085
  msgid "%s Ad blocking statistics %s"
4086
  msgstr ""
4087
 
4088
  #. translators: %s HTML tags
4089
- #: settings.php:4587
4090
  msgid ""
4091
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4092
  "referers"
4093
  msgstr ""
4094
 
4095
  #. translators: %s HTML tags
4096
- #: settings.php:4588
4097
  msgid ""
4098
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4099
  msgstr ""
4100
 
4101
  #. translators: %s HTML tags
4102
- #: settings.php:4589
4103
  msgid "%s Multisite options %s to limit settings on the sites"
4104
  msgstr ""
4105
 
4106
  #. translators: %s HTML tags
4107
- #: settings.php:4590
4108
  msgid "%s Import/Export %s block or plugin settings"
4109
  msgstr ""
4110
 
4111
  #. translators: %s HTML tags
4112
- #: settings.php:4591
4113
  msgid "%s Insertion scheduling %s with fallback option"
4114
  msgstr ""
4115
 
4116
  #. translators: %s HTML tags
4117
- #: settings.php:4592
4118
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4119
  msgstr ""
4120
 
4121
  #. translators: %s HTML tags
4122
- #: settings.php:4593
4123
  msgid "Simple troubleshooting with many %s debugging functions %s"
4124
  msgstr ""
4125
 
4126
  #. translators: %s HTML tags
4127
- #: settings.php:4594
4128
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4129
  msgstr ""
4130
 
4131
  #. translators: %s HTML tags
4132
- #: settings.php:4595
4133
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4134
  msgstr ""
4135
 
4136
  #. translators: %s HTML tags
4137
- #: settings.php:4596
4138
  msgid ""
4139
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4140
  msgstr ""
4141
 
4142
  #. translators: %s HTML tags
4143
- #: settings.php:4597
4144
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4145
  msgstr ""
4146
 
4147
  #. translators: %s HTML tags
4148
- #: settings.php:4598
4149
  msgid "No ads on the settings page"
4150
  msgstr ""
4151
 
4152
  #. translators: %s HTML tags
4153
- #: settings.php:4599
4154
  msgid "Premium support"
4155
  msgstr ""
4156
 
4157
  #. translators: %s HTML tags
4158
- #: settings.php:4602
4159
  msgid ""
4160
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4161
  "website with many advertising features to automatically insert adverts on "
@@ -4170,82 +4169,82 @@ msgid ""
4170
  msgstr ""
4171
 
4172
  #. translators: %s HTML tags
4173
- #: settings.php:4615
4174
  msgid "Looking for %s Pro Ad Management plugin? %s"
4175
  msgstr ""
4176
 
4177
  #. translators: %s HTML tags
4178
- #: settings.php:4620
4179
  msgid "Ads between posts"
4180
  msgstr ""
4181
 
4182
  #. translators: %s HTML tags
4183
- #: settings.php:4621
4184
  msgid "Ads between comments"
4185
  msgstr ""
4186
 
4187
  #. translators: %s HTML tags
4188
- #: settings.php:4622
4189
  msgid "Support via email"
4190
  msgstr ""
4191
 
4192
  #. translators: %s HTML tags
4193
- #: settings.php:4628
4194
  msgid "%s Sticky positions %s"
4195
  msgstr ""
4196
 
4197
  #. translators: %s HTML tags
4198
- #: settings.php:4629
4199
  msgid "%s Limit insertions %s"
4200
  msgstr ""
4201
 
4202
  #. translators: %s HTML tags
4203
- #: settings.php:4630
4204
  msgid "%s Clearance %s options"
4205
  msgstr ""
4206
 
4207
  #. translators: %s HTML tags
4208
- #: settings.php:4636
4209
  msgid "Ad rotation"
4210
  msgstr ""
4211
 
4212
  #. translators: %s HTML tags
4213
- #: settings.php:4637
4214
  msgid "%s A/B testing %s"
4215
  msgstr ""
4216
 
4217
  #. translators: %s HTML tags
4218
- #: settings.php:4638
4219
  msgid "%s Ad tracking %s"
4220
  msgstr ""
4221
 
4222
  #. translators: %s HTML tags
4223
- #: settings.php:4644
4224
  msgid "Support for %s AMP pages %s"
4225
  msgstr ""
4226
 
4227
  #. translators: %s HTML tags
4228
- #: settings.php:4645
4229
  msgid "%s Ad blocking detection %s"
4230
  msgstr ""
4231
 
4232
  #. translators: %s HTML tags
4233
- #: settings.php:4646
4234
  msgid "%s Mobile device detection %s"
4235
  msgstr ""
4236
 
4237
  #. translators: %s HTML tags
4238
- #: settings.php:4653
4239
  msgid "64 code blocks"
4240
  msgstr ""
4241
 
4242
  #. translators: %s HTML tags
4243
- #: settings.php:4654
4244
  msgid "%s GEO targeting %s"
4245
  msgstr ""
4246
 
4247
  #. translators: %s HTML tags
4248
- #: settings.php:4655
4249
  msgid "%s Scheduling %s"
4250
  msgstr ""
4251
 
@@ -4847,175 +4846,175 @@ msgctxt "size"
4847
  msgid "Fixed by viewport"
4848
  msgstr ""
4849
 
4850
- #: strings.php:179
4851
  msgid "Impressions and clicks"
4852
  msgstr ""
4853
 
4854
- #: strings.php:180
4855
  msgid "Advanced WordPress Ad Management Plugin"
4856
  msgstr ""
4857
 
4858
- #: strings.php:186
4859
  msgctxt "Button"
4860
  msgid "Hide"
4861
  msgstr ""
4862
 
4863
- #: strings.php:187
4864
  msgctxt "Button"
4865
  msgid "Show"
4866
  msgstr ""
4867
 
4868
- #: strings.php:188
4869
  msgid "Insertion expired"
4870
  msgstr ""
4871
 
4872
- #: strings.php:189
4873
  msgid "Duration"
4874
  msgstr ""
4875
 
4876
- #: strings.php:190
4877
  msgid "Invalid end date - must be after start date"
4878
  msgstr ""
4879
 
4880
- #: strings.php:191
4881
  msgid "Invalid start date - only data for 1 year back is available"
4882
  msgstr ""
4883
 
4884
- #: strings.php:192
4885
  msgid "Invalid date range - only data for 1 year can be displayed"
4886
  msgstr ""
4887
 
4888
- #: strings.php:193 strings.php:194 strings.php:195 strings.php:196
4889
- #: strings.php:197 strings.php:198
4890
  msgid "day"
4891
  msgid_plural "days"
4892
  msgstr[0] ""
4893
  msgstr[1] ""
4894
 
4895
- #: strings.php:200
4896
  msgid "Delete"
4897
  msgstr ""
4898
 
4899
- #: strings.php:202
4900
  msgid "Delete all statistics data?"
4901
  msgstr ""
4902
 
4903
  #. translators: %s: dates
4904
- #: strings.php:204
4905
  msgid "Delete statistics data between %s and %s?"
4906
  msgstr ""
4907
 
4908
- #: strings.php:205
4909
  msgid "Cancel block order rearrangement"
4910
  msgstr ""
4911
 
4912
- #: strings.php:207
4913
  msgid "downloading..."
4914
  msgstr ""
4915
 
4916
- #: strings.php:208
4917
  msgid "download error"
4918
  msgstr ""
4919
 
4920
- #: strings.php:209
4921
  msgid "update error"
4922
  msgstr ""
4923
 
4924
- #: strings.php:210
4925
  msgid "Updating..."
4926
  msgstr ""
4927
 
4928
- #: strings.php:212
4929
  msgid "ERROR"
4930
  msgstr ""
4931
 
4932
- #: strings.php:213
4933
  msgid "Error reloading settings"
4934
  msgstr ""
4935
 
4936
- #: strings.php:215
4937
  msgctxt "Search field placeholder"
4938
  msgid "Search..."
4939
  msgstr ""
4940
 
4941
- #: strings.php:216
4942
  msgctxt "Search field placeholder"
4943
  msgid "Filter..."
4944
  msgstr ""
4945
 
4946
- #: strings.php:217
4947
  msgid "Use filter to limit names in the list"
4948
  msgstr ""
4949
 
4950
- #: strings.php:218
4951
  msgctxt "Button"
4952
  msgid "Filter"
4953
  msgstr ""
4954
 
4955
- #: strings.php:220
4956
  msgid "Position not available"
4957
  msgstr ""
4958
 
4959
- #: strings.php:221
4960
  msgid ""
4961
  "Theme check | Selected position for automatic insertion might not be not "
4962
  "available on this page type"
4963
  msgstr ""
4964
 
4965
- #: strings.php:222
4966
  msgid "Position available"
4967
  msgstr ""
4968
 
4969
- #: strings.php:224
4970
  msgid "Select or upload banner image"
4971
  msgstr ""
4972
 
4973
- #: strings.php:225
4974
  msgid "Use this image"
4975
  msgstr ""
4976
 
4977
- #: strings.php:239
4978
  msgid "Add"
4979
  msgstr ""
4980
 
4981
- #: strings.php:240
4982
  msgid "Parent"
4983
  msgstr ""
4984
 
4985
- #: strings.php:241
4986
  msgid "Cancel element selection"
4987
  msgstr ""
4988
 
4989
- #: strings.php:242
4990
  msgid "Select parent element"
4991
  msgstr ""
4992
 
4993
- #: strings.php:243
4994
  msgid "CSS selector"
4995
  msgstr ""
4996
 
4997
- #: strings.php:244
4998
  msgid "Use current selector"
4999
  msgstr ""
5000
 
5001
- #: strings.php:245
5002
  msgid "ELEMENT"
5003
  msgstr ""
5004
 
5005
- #: strings.php:246
5006
  msgid "PATH"
5007
  msgstr ""
5008
 
5009
- #: strings.php:247
5010
  msgid "SELECTOR"
5011
  msgstr ""
5012
 
5013
- #: strings.php:248
5014
  msgctxt "Block"
5015
  msgid "VISIBLE"
5016
  msgstr ""
5017
 
5018
- #: strings.php:249
5019
  msgctxt "Block"
5020
  msgid "HIDDEN"
5021
  msgstr ""
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.4.18\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-06-13 19:59:55+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:356
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:372
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:379
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:450
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:457
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:466
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:473
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:483
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1080
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1085
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:1090 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:1095 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1100 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1105 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1152
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1156
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1365
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1646 ad-inserter.php:2498
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2069
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2069
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2070
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2071
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2072
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2073
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2074
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2269
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:2270 includes/functions.php:1530
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
+ #: ad-inserter.php:2273
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:2274 includes/functions.php:1533
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
+ #: ad-inserter.php:2284
158
  msgid "I would really appreciate if you could rate the plugin on WordPres."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2286
162
  msgid ""
163
  "Positive reviews are a great incentive to fix bugs and to add new features "
164
  "for better monetization of your website. Thank you, Igor"
165
  msgstr ""
166
 
167
  #. translators: %s: Ad Inserter
168
+ #: ad-inserter.php:2292
169
  msgid "Rate %s"
170
  msgstr ""
171
 
172
+ #: ad-inserter.php:2297
173
  msgid "I already did."
174
  msgstr ""
175
 
176
+ #: ad-inserter.php:2311
177
  msgctxt "Menu item"
178
  msgid "Settings"
179
  msgstr ""
180
 
181
  #. translators: %s: Ad Inserter
182
+ #: ad-inserter.php:2385
183
  msgctxt "Meta box name"
184
  msgid "%s Individual Exceptions"
185
  msgstr ""
186
 
187
+ #: ad-inserter.php:2414 ad-inserter.php:8160 class.php:1967
188
  #: includes/preview.php:1976 includes/preview.php:2020
189
+ #: includes/preview.php:2057 settings.php:3704 strings.php:3
190
  msgid "Block"
191
  msgstr ""
192
 
193
+ #: ad-inserter.php:2415 settings.php:3705 settings.php:3779
194
  msgid "Name"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:2416 settings.php:3707
198
  msgid "Automatic insertion"
199
  msgstr ""
200
 
201
+ #: ad-inserter.php:2419
202
  msgid "Default insertion for pages"
203
  msgstr ""
204
 
205
+ #: ad-inserter.php:2420
206
  msgid "Default insertion for posts"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
+ #: ad-inserter.php:2423
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
+ #: ad-inserter.php:2424
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
+ #: ad-inserter.php:2432
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
+ #: ad-inserter.php:2433
226
  msgctxt "Default insertion for"
227
  msgid "pages"
228
  msgstr ""
229
 
230
+ #: ad-inserter.php:2437
231
  msgctxt "Enabled/disabled on all"
232
  msgid "posts"
233
  msgstr ""
234
 
235
+ #: ad-inserter.php:2438
236
  msgctxt "Default insertion for"
237
  msgid "posts"
238
  msgstr ""
239
 
240
+ #: ad-inserter.php:2457 ad-inserter.php:2470 strings.php:156
241
  msgid "Enabled"
242
  msgstr ""
243
 
244
  #. translators: Menu items
245
+ #: ad-inserter.php:2457 ad-inserter.php:2470 includes/functions.php:2191
246
  #: strings.php:16
247
  msgid "Disabled"
248
  msgstr ""
249
 
250
  #. translators: Enabled on all pages or posts
251
+ #: ad-inserter.php:2460
252
  msgid "Enabled on all"
253
  msgstr ""
254
 
255
  #. translators: Disabled on all pages or posts
256
+ #: ad-inserter.php:2462
257
  msgid "Disabled on all"
258
  msgstr ""
259
 
260
  #. translators: No individual exceptions enabled for pages or posts
261
+ #: ad-inserter.php:2490
262
  msgid "No individual exceptions enabled for"
263
  msgstr ""
264
 
265
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
266
+ #: ad-inserter.php:2495
267
  msgid ""
268
  "Default insertion for %1$s can be configured for each block on %2$s page - "
269
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
270
  "checkbox.<br />"
271
  msgstr ""
272
 
273
+ #: ad-inserter.php:2500
274
  msgid ""
275
  "Default value is <strong>blank</strong> and means no individual exceptions "
276
  "(even if previously defined here).<br />"
277
  msgstr ""
278
 
279
+ #: ad-inserter.php:2503
280
  msgctxt "Pages"
281
  msgid ""
282
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
283
  "enabled</strong> to enable individual exception settings on this page.<br />"
284
  msgstr ""
285
 
286
+ #: ad-inserter.php:2504
287
  msgctxt "Posts"
288
  msgid ""
289
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
290
  "enabled</strong> to enable individual exception settings on this page.<br />"
291
  msgstr ""
292
 
293
+ #: ad-inserter.php:2506
294
  msgid "For more information check page %s"
295
  msgstr ""
296
 
297
  #. translators: Ad Inserter Exceptions documentation page
298
+ #: ad-inserter.php:2508
299
  msgid "Individual Exceptions"
300
  msgstr ""
301
 
302
+ #: ad-inserter.php:2555
303
  msgid "STATIC PAGE"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:2558
307
  msgid "POST"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:2561
311
  msgid "HOMEPAGE"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:2564
315
  msgid "CATEGORY PAGE"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:2567
319
  msgid "SEARCH PAGE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:2570
323
  msgid "ARCHIVE PAGE"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:2573
327
  msgid "ERROR 404 PAGE"
328
  msgstr ""
329
 
330
+ #: ad-inserter.php:2576
331
  msgid "AJAX CALL"
332
  msgstr ""
333
 
334
+ #: ad-inserter.php:2579
335
  msgid "UNKNOWN PAGE TYPE"
336
  msgstr ""
337
 
338
+ #: ad-inserter.php:2596
339
  msgid "Click to delete ad blocking detection cokies"
340
  msgstr ""
341
 
342
+ #: ad-inserter.php:2597
343
  msgid "AD BLOCKING STATUS UNKNOWN"
344
  msgstr ""
345
 
346
  #. translators: %s: AdSense Auto Ads
347
+ #: ad-inserter.php:2621
348
  msgid ""
349
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
350
  "positions"
351
  msgstr ""
352
 
353
+ #: ad-inserter.php:2760
354
  msgid "Code for insertion"
355
  msgstr ""
356
 
357
+ #: ad-inserter.php:2760
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] ""
361
  msgstr[1] ""
362
 
363
+ #: ad-inserter.php:2803
364
  msgid "Header code"
365
  msgstr ""
366
 
367
+ #: ad-inserter.php:2803
368
  msgctxt "Header code"
369
  msgid "DISABLED"
370
  msgstr ""
371
 
372
+ #: ad-inserter.php:2803 ad-inserter.php:3025
373
  msgid "character inserted"
374
  msgid_plural "characters inserted"
375
  msgstr[0] ""
376
  msgstr[1] ""
377
 
378
+ #: ad-inserter.php:2836
379
  msgid "Automatically placed by AdSense Auto ads code"
380
  msgstr ""
381
 
382
+ #: ad-inserter.php:3025
383
  msgid "Footer code"
384
  msgstr ""
385
 
386
+ #: ad-inserter.php:3025
387
  msgctxt "Footer code"
388
  msgid "DISABLED"
389
  msgstr ""
390
 
391
+ #: ad-inserter.php:3031
392
  msgid "JAVASCRIPT NOT WORKING"
393
  msgstr ""
394
 
395
+ #: ad-inserter.php:3031
396
  msgid "NO JAVASCRIPT ERRORS"
397
  msgstr ""
398
 
399
+ #: ad-inserter.php:3031
400
  msgid "JAVASCRIPT ERRORS"
401
  msgstr ""
402
 
403
  #. translators: block name (block with default settings)
404
+ #: ad-inserter.php:5163
405
  msgctxt "Block name"
406
  msgid "Default"
407
  msgstr ""
408
 
409
  #. translators: %s: Ad Inserter
410
+ #: ad-inserter.php:5734
411
  msgid "Error importing %s settings."
412
  msgstr ""
413
 
414
+ #: ad-inserter.php:5735
415
  msgid "Error importing settings for block"
416
  msgid_plural "Error importing settings for blocks:"
417
  msgstr[0] ""
418
  msgstr[1] ""
419
 
420
+ #: ad-inserter.php:5784
421
  msgid "Settings saved."
422
  msgstr ""
423
 
424
+ #: ad-inserter.php:5869
425
  msgid "Settings cleared."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:6214 ad-inserter.php:6216 ad-inserter.php:6239
429
  msgid "word"
430
  msgid_plural "words"
431
  msgstr[0] ""
432
  msgstr[1] ""
433
 
434
+ #: ad-inserter.php:6253 ad-inserter.php:6365
435
  msgid "HTML TAGS REMOVED"
436
  msgstr ""
437
 
438
+ #: ad-inserter.php:6441
439
  msgid "BEFORE COMMENTS"
440
  msgstr ""
441
 
442
+ #: ad-inserter.php:6549
443
  msgid "AFTER COMMENTS"
444
  msgstr ""
445
 
446
+ #: ad-inserter.php:6612
447
  msgid "BETWEEN COMMENTS"
448
  msgstr ""
449
 
450
+ #: ad-inserter.php:7800
451
  msgid "requires WordPress 4.0 or newer"
452
  msgstr ""
453
 
454
+ #: ad-inserter.php:7800
455
  msgid "Please update!"
456
  msgstr ""
457
 
458
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
459
  #. name with HTML tags will be added)
460
+ #: ad-inserter.php:8033
461
  msgid "Thank you for installing"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: %s: HTML tags
465
+ #: ad-inserter.php:8035
466
  msgid ""
467
  "We would like to %s track its usage %s on your site. This is completely "
468
  "optional and can be disabled at any time."
469
  msgstr ""
470
 
471
+ #: ad-inserter.php:8037
472
  msgid ""
473
  "We don't record any sensitive data, only information regarding the WordPress "
474
  "environment and plugin usage, which will help us to make improvements to the "
476
  msgstr ""
477
 
478
  #. translators: Deactivation message: %s: HTML tags
479
+ #: ad-inserter.php:8074
480
  msgid ""
481
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
482
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
484
  msgstr ""
485
 
486
  #. translators: %s: Ad Inserter
487
+ #: ad-inserter.php:8117
488
  msgid "%s block."
489
  msgstr ""
490
 
491
  #. translators: widget title
492
+ #: ad-inserter.php:8133 ad-inserter.php:8169
493
  msgid "Processing log"
494
  msgstr ""
495
 
496
  #. translators: widget title
497
+ #: ad-inserter.php:8135 ad-inserter.php:8170
498
  msgid "Dummy widget"
499
  msgstr ""
500
 
501
  #. translators: widget title
502
+ #: ad-inserter.php:8137 ad-inserter.php:8168
503
  msgid "Debugging tools"
504
  msgstr ""
505
 
506
  #. translators: block status (widget title)
507
+ #: ad-inserter.php:8144
508
  msgctxt "block"
509
  msgid "PAUSED"
510
  msgstr ""
511
 
512
+ #: ad-inserter.php:8145
513
  msgid "WIDGET DISABLED"
514
  msgstr ""
515
 
516
+ #: ad-inserter.php:8146
517
  msgid "Unknown block"
518
  msgstr ""
519
 
520
+ #: ad-inserter.php:8155 includes/functions.php:2721 settings.php:1045
521
  msgid "Title"
522
  msgstr ""
523
 
524
+ #: ad-inserter.php:8177
525
  msgctxt "Widget"
526
  msgid "Sticky"
527
  msgstr ""
528
 
529
+ #: ad-inserter.php:8226
530
  msgid ""
531
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
532
  "Inserter you need to first deactivate Ad Inserter Pro."
533
  msgstr ""
534
 
535
+ #: ad-inserter.php:8227
536
  msgid ""
537
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
538
  "will clear all settings that are available only in the Pro version "
564
  msgid "After post"
565
  msgstr ""
566
 
567
+ #: class.php:1957 settings.php:1631 settings.php:3711
568
  msgid "Widget"
569
  msgstr ""
570
 
571
+ #: class.php:1962 settings.php:3709
572
  msgid "PHP function call"
573
  msgstr ""
574
 
629
  msgid "ip addresses='%s' type='%s'"
630
  msgstr ""
631
 
632
+ #: class.php:2944 strings.php:232
633
  msgid "BEFORE"
634
  msgstr ""
635
 
636
+ #: class.php:2952 strings.php:234
637
  msgid "PREPEND CONTENT"
638
  msgstr ""
639
 
640
+ #: class.php:2956 strings.php:235
641
  msgid "APPEND CONTENT"
642
  msgstr ""
643
 
644
+ #: class.php:2960 strings.php:236
645
  msgid "REPLACE CONTENT"
646
  msgstr ""
647
 
648
+ #: class.php:2964 strings.php:237
649
  msgid "REPLACE ELEMENT"
650
  msgstr ""
651
 
652
+ #: class.php:2975 strings.php:233
653
  msgid "AFTER"
654
  msgstr ""
655
 
662
  msgid "for"
663
  msgstr ""
664
 
665
+ #: class.php:5593 class.php:5645
666
  msgctxt "category name"
667
  msgid "Uncategorized"
668
  msgstr ""
669
 
670
+ #: class.php:6138
671
  msgid ""
672
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
673
  "extension for PHP."
674
  msgstr ""
675
 
676
  #: includes/editor.php:7 includes/placeholders.php:352
677
+ #: includes/preview.php:1962 strings.php:239
678
  msgid "Use"
679
  msgstr ""
680
 
683
  msgstr ""
684
 
685
  #: includes/editor.php:9 includes/placeholders.php:354
686
+ #: includes/preview.php:1965 strings.php:202 strings.php:238
687
  msgid "Cancel"
688
  msgstr ""
689
 
769
  "Leave empty unless position is not properly calculated."
770
  msgstr ""
771
 
772
+ #: includes/functions.php:422 settings.php:1201 settings.php:2519
773
  msgid "Open HTML element selector"
774
  msgstr ""
775
 
898
  msgid "Double click to toggle controls in public reports"
899
  msgstr ""
900
 
901
+ #: includes/functions.php:749 settings.php:3205 settings.php:3241
902
+ #: settings.php:3284 strings.php:212
903
  msgid "Loading..."
904
  msgstr ""
905
 
913
  msgid "Auto refresh data for the selected range every 60 seconds"
914
  msgstr ""
915
 
916
+ #: includes/functions.php:777 includes/functions.php:4735
917
  msgid "Load data for last month"
918
  msgstr ""
919
 
920
+ #: includes/functions.php:777 includes/functions.php:4735
921
  msgid "Last Month"
922
  msgstr ""
923
 
924
+ #: includes/functions.php:780 includes/functions.php:4738
925
  msgid "Load data for this month"
926
  msgstr ""
927
 
928
+ #: includes/functions.php:780 includes/functions.php:4738
929
  msgid "This Month"
930
  msgstr ""
931
 
932
+ #: includes/functions.php:783 includes/functions.php:4741
933
  msgid "Load data for this year"
934
  msgstr ""
935
 
936
+ #: includes/functions.php:783 includes/functions.php:4741
937
  msgid "This Year"
938
  msgstr ""
939
 
940
+ #: includes/functions.php:786 includes/functions.php:4744
941
  msgid "Load data for the last 15 days"
942
  msgstr ""
943
 
944
+ #: includes/functions.php:789 includes/functions.php:4747
945
  msgid "Load data for the last 30 days"
946
  msgstr ""
947
 
948
+ #: includes/functions.php:792 includes/functions.php:4750
949
  msgid "Load data for the last 90 days"
950
  msgstr ""
951
 
952
+ #: includes/functions.php:795 includes/functions.php:4753
953
  msgid "Load data for the last 180 days"
954
  msgstr ""
955
 
956
+ #: includes/functions.php:798 includes/functions.php:4756
957
  msgid "Load data for the last 365 days"
958
  msgstr ""
959
 
960
+ #: includes/functions.php:808 includes/functions.php:4766
961
  msgid "Load data for the selected range"
962
  msgstr ""
963
 
1213
  msgstr ""
1214
 
1215
  #: includes/functions.php:2239 includes/preview.php:1974 settings.php:961
1216
+ #: settings.php:2581
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
1305
  msgstr ""
1306
 
1307
  #: includes/functions.php:2526
1308
+ msgid ""
1309
+ "Enable impression and click tracking. You also need to enable tracking for "
1310
+ "each block you want to track."
1311
  msgstr ""
1312
 
1313
  #: includes/functions.php:2533
1318
  msgid "Impression and Click Tracking"
1319
  msgstr ""
1320
 
1321
+ #: includes/functions.php:2542 settings.php:2469
1322
  msgctxt "ad blocking detection"
1323
  msgid "NOT ENABLED"
1324
  msgstr ""
1378
  "to reset to default image."
1379
  msgstr ""
1380
 
1381
+ #: includes/functions.php:2644 strings.php:224
1382
  msgid "Select or upload header image"
1383
  msgstr ""
1384
 
1436
  msgid "Clear all exceptions for all blocks"
1437
  msgstr ""
1438
 
1439
+ #: includes/functions.php:2721 settings.php:3443 settings.php:3781
1440
  msgid "Type"
1441
  msgstr ""
1442
 
1510
  msgid "Main site settings used for all blogs"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions.php:2831 settings.php:2468
1514
  msgid "Ad Blocking Detection"
1515
  msgstr ""
1516
 
1626
  msgstr ""
1627
 
1628
  #. Translators: %s: Ad Inserter Pro
1629
+ #: includes/functions.php:4327 includes/functions.php:4419
1630
+ #: includes/functions.php:4680 strings.php:179
1631
  msgid "%s Report"
1632
  msgstr ""
1633
 
1634
+ #: includes/functions.php:4586
 
 
 
 
 
1635
  msgid "for last month"
1636
  msgstr ""
1637
 
1638
+ #: includes/functions.php:4591
1639
  msgid "for this month"
1640
  msgstr ""
1641
 
1642
+ #: includes/functions.php:4596
1643
  msgid "for this year"
1644
  msgstr ""
1645
 
1646
+ #: includes/functions.php:4601
1647
  msgid "for the last 15 days"
1648
  msgstr ""
1649
 
1650
+ #: includes/functions.php:4606
1651
  msgid "for the last 30 days"
1652
  msgstr ""
1653
 
1654
+ #: includes/functions.php:4611
1655
  msgid "for the last 90 days"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions.php:4616
1659
  msgid "for the last 180 days"
1660
  msgstr ""
1661
 
1662
+ #: includes/functions.php:4621
1663
  msgid "for the last 365 days"
1664
  msgstr ""
1665
 
1687
  msgid "Placeholder"
1688
  msgstr ""
1689
 
1690
+ #: includes/placeholders.php:363 settings.php:808 settings.php:3782
1691
  msgid "Size"
1692
  msgstr ""
1693
 
1795
  msgid "Ad Blocking Detected Message Preview"
1796
  msgstr ""
1797
 
1798
+ #: includes/preview-adb.php:348 settings.php:2594
1799
  msgid "Message CSS"
1800
  msgstr ""
1801
 
1802
+ #: includes/preview-adb.php:353 settings.php:2602
1803
  msgid "Overlay CSS"
1804
  msgstr ""
1805
 
1840
  msgstr ""
1841
 
1842
  #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1148
1843
+ #: settings.php:3708
1844
  msgid "Alignment"
1845
  msgstr ""
1846
 
2046
  msgid "General Settings"
2047
  msgstr ""
2048
 
2049
+ #: settings.php:592 settings.php:2321 settings.php:2388 settings.php:2574
2050
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2051
  msgstr ""
2052
 
2082
  msgid "Clear block"
2083
  msgstr ""
2084
 
2085
+ #: settings.php:658 settings.php:3676
2086
  msgid "Copy block"
2087
  msgstr ""
2088
 
2260
  "editor. Leave blank for no individual post exceptions."
2261
  msgstr ""
2262
 
2263
+ #: settings.php:985 settings.php:3092
2264
  msgid "Posts"
2265
  msgstr ""
2266
 
2271
  "theme)"
2272
  msgstr ""
2273
 
2274
+ #: settings.php:990 settings.php:3094
2275
  msgid "Homepage"
2276
  msgstr ""
2277
 
2279
  msgid "Enable insertion on category blog pages (including sub-pages)"
2280
  msgstr ""
2281
 
2282
+ #: settings.php:995 settings.php:3095
2283
  msgid "Category pages"
2284
  msgstr ""
2285
 
2297
  "page editor. Leave blank for no individual page exceptions."
2298
  msgstr ""
2299
 
2300
+ #: settings.php:1013 settings.php:3093
2301
  msgid "Static pages"
2302
  msgstr ""
2303
 
2305
  msgid "Enable insertion on search blog pages"
2306
  msgstr ""
2307
 
2308
+ #: settings.php:1018 settings.php:3097
2309
  msgid "Search pages"
2310
  msgstr ""
2311
 
2406
  msgid "HTML element selector or comma separated list of selectors"
2407
  msgstr ""
2408
 
2409
+ #: settings.php:1216 settings.php:2479
2410
  msgid "Action"
2411
  msgstr ""
2412
 
2673
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2674
  msgstr ""
2675
 
2676
+ #: settings.php:1643 settings.php:3710
2677
  msgid "Shortcode"
2678
  msgstr ""
2679
 
3069
  msgid "Wrapping div"
3070
  msgstr ""
3071
 
3072
+ #: settings.php:2245 settings.php:2685
3073
  msgid "BLOCK CODE"
3074
  msgstr ""
3075
 
3123
  msgid "Enable insertion of this code into HTML page header"
3124
  msgstr ""
3125
 
3126
+ #: settings.php:2330 settings.php:2397 settings.php:2579
3127
  msgid "Process PHP code"
3128
  msgstr ""
3129
 
3140
  msgid "NOT ENABLED"
3141
  msgstr ""
3142
 
3143
+ #: settings.php:2360 settings.php:2428
3144
  msgid "Use server-side detection to insert code only for"
3145
  msgstr ""
3146
 
3147
+ #: settings.php:2375
3148
  msgid ""
3149
  "Enable insertion of this code into HTML page header on page for Error 404: "
3150
  "Page not found"
3151
  msgstr ""
3152
 
3153
+ #: settings.php:2375 settings.php:2443
3154
  msgid "Insert on Error 404 page"
3155
  msgstr ""
3156
 
3157
+ #: settings.php:2393
3158
  msgid "Enable insertion of this code into HTML page footer"
3159
  msgstr ""
3160
 
3161
+ #: settings.php:2401
3162
  msgid "HTML Page Footer Code"
3163
  msgstr ""
3164
 
3165
  #. translators: %s: HTML tags
3166
+ #: settings.php:2409
3167
  msgid "Code before the %s tag of the the HTML page"
3168
  msgstr ""
3169
 
3170
+ #: settings.php:2410
3171
  msgctxt "code in the footer"
3172
  msgid "NOT ENABLED"
3173
  msgstr ""
3174
 
3175
+ #: settings.php:2443
3176
  msgid ""
3177
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3178
  "Page not found"
3179
  msgstr ""
3180
 
3181
+ #: settings.php:2459
3182
  msgid "Code for ad blocking detection inserted. Click for details."
3183
  msgstr ""
3184
 
3185
+ #: settings.php:2464
3186
  msgid "Enable detection of ad blocking"
3187
  msgstr ""
3188
 
3189
+ #: settings.php:2482
3190
  msgid "Global action when ad blocking is detected"
3191
  msgstr ""
3192
 
3193
+ #: settings.php:2488
3194
  msgid "No action for"
3195
  msgstr ""
3196
 
3197
+ #: settings.php:2489
3198
  msgid "Exceptions for global action when ad blocking is detected."
3199
  msgstr ""
3200
 
3201
+ #: settings.php:2499
3202
  msgid "Delay Action"
3203
  msgstr ""
3204
 
3205
+ #: settings.php:2502
3206
  msgid ""
3207
  "Number of page views to delay action when ad blocking is detected. Leave "
3208
  "empty for no delay (action fires on first page view). Sets cookie."
3209
  msgstr ""
3210
 
3211
+ #: settings.php:2502
3212
  msgctxt "Delay Action for x "
3213
  msgid "page views"
3214
  msgstr ""
3215
 
3216
+ #: settings.php:2507
3217
  msgid "No Action Period"
3218
  msgstr ""
3219
 
3220
+ #: settings.php:2510
3221
  msgid ""
3222
  "Number of days to supress action when ad blocking is detected. Leave empty "
3223
  "for no no-action period (action fires always after defined page view delay). "
3224
  "Sets cookie."
3225
  msgstr ""
3226
 
3227
+ #: settings.php:2510
3228
  msgctxt "no action period"
3229
  msgid "days"
3230
  msgstr ""
3231
 
3232
+ #: settings.php:2515
3233
  msgid "Custom Selectors"
3234
  msgstr ""
3235
 
3236
+ #: settings.php:2518
3237
  msgid ""
3238
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3239
  "blocking detection. Invisible element or element with zero height means ad "
3240
  "blocking is present."
3241
  msgstr ""
3242
 
3243
+ #: settings.php:2530
3244
  msgid "Redirection Page"
3245
  msgstr ""
3246
 
3247
+ #: settings.php:2542
3248
  msgid "Custom Url"
3249
  msgstr ""
3250
 
3251
+ #: settings.php:2547
3252
  msgid ""
3253
  "Static page for redirection when ad blocking is detected. For other pages "
3254
  "select Custom url and set it below."
3255
  msgstr ""
3256
 
3257
+ #: settings.php:2556
3258
  msgid "Custom Redirection Url"
3259
  msgstr ""
3260
 
3261
+ #: settings.php:2568
3262
  msgid "Message HTML code"
3263
  msgstr ""
3264
 
3265
+ #: settings.php:2581
3266
  msgid "Preview message when ad blocking is detected"
3267
  msgstr ""
3268
 
3269
+ #: settings.php:2610
3270
  msgid "Prevent visitors from closing the warning message"
3271
  msgstr ""
3272
 
3273
+ #: settings.php:2610
3274
  msgid "Undismissible Message"
3275
  msgstr ""
3276
 
3277
+ #: settings.php:2616
3278
  msgid "Not undismissible for"
3279
  msgstr ""
3280
 
3281
+ #: settings.php:2617
3282
  msgid "Users which can close the warning message."
3283
  msgstr ""
3284
 
3285
+ #: settings.php:2631
3286
  msgid ""
3287
  "Force showing admin toolbar for administrators when viewing site. Enable "
3288
  "this option when you are logged in as admin and you don't see admin toolbar."
3289
  msgstr ""
3290
 
3291
+ #: settings.php:2639
3292
  msgid "Disable header code (Header tab)"
3293
  msgstr ""
3294
 
3295
+ #: settings.php:2643
3296
  msgid "Disable footer code (Footer tab)"
3297
  msgstr ""
3298
 
3299
  #. translators: %s: Ad Inserter
3300
+ #: settings.php:2647
3301
  msgid "Disable %s JavaScript code"
3302
  msgstr ""
3303
 
3304
  #. translators: %s: Ad Inserter
3305
+ #: settings.php:2651
3306
  msgid "Disable %s CSS code"
3307
  msgstr ""
3308
 
3309
+ #: settings.php:2655
3310
  msgid ""
3311
  "Disable PHP code processing (in all blocks including header and footer code)"
3312
  msgstr ""
3313
 
3314
+ #: settings.php:2659
3315
  msgid "Disable insertion of all blocks"
3316
  msgstr ""
3317
 
3318
+ #: settings.php:2663
3319
  msgid "Disable insertions"
3320
  msgstr ""
3321
 
3322
  #. translators: %s: Ad Inserter
3323
+ #: settings.php:2675
3324
  msgid "%s CSS CODE"
3325
  msgstr ""
3326
 
3327
+ #: settings.php:2678
3328
  msgid "HEADER CODE"
3329
  msgstr ""
3330
 
3331
  #. translators: %s: PHP tags
3332
+ #: settings.php:2684
3333
  msgid "BLOCK PHP CODE"
3334
  msgstr ""
3335
 
3336
  #. translators: %s: Ad Inserter
3337
+ #: settings.php:2690
3338
  msgid "%s JS CODE"
3339
  msgstr ""
3340
 
3341
+ #: settings.php:2693
3342
  msgid "FOOTER CODE"
3343
  msgstr ""
3344
 
3345
+ #: settings.php:2702
3346
  msgid "Force showing admin toolbar when viewing site"
3347
  msgstr ""
3348
 
3349
+ #: settings.php:2709
3350
  msgid "Enable debugging functions in admin toolbar"
3351
  msgstr ""
3352
 
3353
+ #: settings.php:2711
3354
  msgid "Debugging functions in admin toolbar"
3355
  msgstr ""
3356
 
3357
+ #: settings.php:2718
3358
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3359
  msgstr ""
3360
 
3361
+ #: settings.php:2720
3362
  msgid "Debugging functions on mobile screens"
3363
  msgstr ""
3364
 
3365
+ #: settings.php:2727
3366
  msgid ""
3367
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3368
  "tags, processing) by url parameters for non-logged in users. Enable this "
3371
  "administrators debugging is always enabled."
3372
  msgstr ""
3373
 
3374
+ #: settings.php:2729
3375
  msgid "Remote debugging"
3376
  msgstr ""
3377
 
3378
+ #: settings.php:2736
3379
  msgid ""
3380
  "Disable translation to see original texts for the settings and messages in "
3381
  "English"
3382
  msgstr ""
3383
 
3384
+ #: settings.php:2738
3385
  msgid "Disable translation"
3386
  msgstr ""
3387
 
3388
+ #: settings.php:3080
3389
  msgid "Available positions for current theme"
3390
  msgstr ""
3391
 
3392
+ #: settings.php:3081
3393
  msgid "Error checking pages"
3394
  msgstr ""
3395
 
3396
+ #: settings.php:3084
3397
  msgid "Toggle theme checker for available positions for automatic insertion"
3398
  msgstr ""
3399
 
3400
+ #: settings.php:3084
3401
  msgctxt "Button"
3402
  msgid "Check"
3403
  msgstr ""
3404
 
3405
+ #: settings.php:3091
3406
  msgid "Position"
3407
  msgstr ""
3408
 
3409
+ #: settings.php:3096
3410
  msgid "Archive pages"
3411
  msgstr ""
3412
 
3413
+ #: settings.php:3155
3414
  msgid ""
3415
  "Position not available because output buffering (tab [*]) is not enabled"
3416
  msgstr ""
3417
 
3418
+ #: settings.php:3158 strings.php:220
3419
  msgid "Position not checked yet"
3420
  msgstr ""
3421
 
3422
+ #: settings.php:3189
3423
  msgid "Toggle active/all blocks"
3424
  msgstr ""
3425
 
3426
+ #: settings.php:3193 strings.php:207
3427
  msgid "Rearrange block order"
3428
  msgstr ""
3429
 
3430
+ #: settings.php:3198
3431
  msgid "Save new block order"
3432
  msgstr ""
3433
 
3434
+ #: settings.php:3198
3435
  msgid "Save Changes"
3436
  msgstr ""
3437
 
3438
+ #: settings.php:3223
3439
  msgid "Toggle active/all ad units"
3440
  msgstr ""
3441
 
3442
+ #: settings.php:3227
3443
  msgid "Reload AdSense ad units"
3444
  msgstr ""
3445
 
3446
+ #: settings.php:3231
3447
  msgid "Clear authorization to access AdSense account"
3448
  msgstr ""
3449
 
3450
+ #: settings.php:3235 settings.php:3867 settings.php:3934 strings.php:215
3451
  msgid "Google AdSense Homepage"
3452
  msgstr ""
3453
 
3454
+ #: settings.php:3258
3455
  msgid "Reload ads.txt file"
3456
  msgstr ""
3457
 
3458
  #. translators: %s: ads.txt
3459
+ #: settings.php:3262
3460
  msgid "Open %s"
3461
  msgstr ""
3462
 
3463
+ #: settings.php:3266
3464
  msgid "Switch to table view"
3465
  msgstr ""
3466
 
3467
+ #: settings.php:3270
3468
  msgid "Switch to editor"
3469
  msgstr ""
3470
 
3471
+ #: settings.php:3274
3472
  msgid "Save ads.txt file"
3473
  msgstr ""
3474
 
3475
+ #: settings.php:3409 settings.php:3417 strings.php:200
3476
  msgid "Warning"
3477
  msgstr ""
3478
 
3479
+ #: settings.php:3409
3480
  msgid "ads.txt file must be placed on the root domain"
3481
  msgstr ""
3482
 
3483
  #. translators: %s: file path
3484
+ #: settings.php:3410
3485
  msgid "WordPress is installed in %s"
3486
  msgstr ""
3487
 
3488
+ #: settings.php:3411
3489
  msgid "Showing file"
3490
  msgstr ""
3491
 
3492
+ #: settings.php:3417
3493
  msgid "File %s not found"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:3424
3497
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:3441
3501
  msgid "Advertising system"
3502
  msgstr ""
3503
 
3504
+ #: settings.php:3442
3505
  msgid "Account ID"
3506
  msgstr ""
3507
 
3508
+ #: settings.php:3444
3509
  msgid "Certification authority ID"
3510
  msgstr ""
3511
 
3512
+ #: settings.php:3459
3513
  msgid "Account ID found in block and present in ads.txt"
3514
  msgstr ""
3515
 
3516
+ #: settings.php:3463
3517
  msgid "Account ID found in block but not present in ads.txt"
3518
  msgstr ""
3519
 
3520
+ #: settings.php:3679
3521
  msgid "Preview block"
3522
  msgstr ""
3523
 
3524
+ #: settings.php:3688
3525
  msgid "Insertion disabled"
3526
  msgstr ""
3527
 
3528
+ #: settings.php:3712
3529
  msgid "Widget positions"
3530
  msgstr ""
3531
 
3532
+ #: settings.php:3778
3533
  msgid "Ad unit"
3534
  msgstr ""
3535
 
3536
+ #: settings.php:3780
3537
  msgid "Slot ID"
3538
  msgstr ""
3539
 
3540
+ #: settings.php:3806
3541
  msgid "Copy AdSense code"
3542
  msgstr ""
3543
 
3544
+ #: settings.php:3809
3545
  msgid "Preview AdSense ad"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:3812
3549
  msgid "Get AdSense code"
3550
  msgstr ""
3551
 
3552
  #. translators: %s: HTML tags
3553
+ #: settings.php:3844
3554
  msgid ""
3555
  "Please %s clear authorization %s with the button %s above and once again "
3556
  "authorize access to your AdSense account."
3557
  msgstr ""
3558
 
3559
+ #: settings.php:3863
3560
  msgid "AdSense Integration"
3561
  msgstr ""
3562
 
3563
+ #: settings.php:3865
3564
  msgid "AdSense Integration - Step 2"
3565
  msgstr ""
3566
 
3567
  #. translators: %s: HTML tags
3568
+ #: settings.php:3871
3569
  msgid ""
3570
  "Authorize %s to access your AdSense account. Click on the %s Get "
3571
  "Authorization Code %s button to open a new window where you can allow "
3574
  msgstr ""
3575
 
3576
  #. translators: %s: HTML tags
3577
+ #: settings.php:3878
3578
  msgid ""
3579
  "If you get error, can't access ad units or would like to use own Google API "
3580
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3582
  msgstr ""
3583
 
3584
  #. translators: %s: HTML tags
3585
+ #: settings.php:3880
3586
  msgid ""
3587
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3588
  "Authorization Code %s button to open a new window where you can allow "
3591
  msgstr ""
3592
 
3593
  #. translators: %s: HTML tags
3594
+ #: settings.php:3887
3595
  msgid ""
3596
  "If you get error %s invalid client %s click on the button %s Clear and "
3597
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3598
  msgstr ""
3599
 
3600
+ #: settings.php:3898
3601
  msgid "Get Authorization Code"
3602
  msgstr ""
3603
 
3604
+ #: settings.php:3901
3605
  msgid "Enter Authorization Code"
3606
  msgstr ""
3607
 
3608
+ #: settings.php:3911
3609
  msgid "Use own API IDs"
3610
  msgstr ""
3611
 
3612
+ #: settings.php:3913
3613
  msgid "Clear and return to Step 1"
3614
  msgstr ""
3615
 
3616
+ #: settings.php:3917
3617
  msgid "Authorize"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:3933
3621
  msgid "AdSense Integration - Step 1"
3622
  msgstr ""
3623
 
3624
  #. translators: %s: Ad Inserter
3625
+ #: settings.php:3937
3626
  msgid ""
3627
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3628
  "To do this you need to authorize %s to access your AdSense account. The "
3631
  msgstr ""
3632
 
3633
  #. translators: %s: HTML tags
3634
+ #: settings.php:3946
3635
  msgid "Go to %s Google APIs and Services console %s"
3636
  msgstr ""
3637
 
3638
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3639
+ #: settings.php:3947
3640
  msgid ""
3641
  "Create %1$s project - if the project and IDs are already created click on "
3642
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3643
  msgstr ""
3644
 
3645
  #. translators: %s: HTML tags
3646
+ #: settings.php:3948
3647
  msgid ""
3648
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3649
  "create a new project"
3650
  msgstr ""
3651
 
3652
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3653
+ #: settings.php:3949
3654
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3655
  msgstr ""
3656
 
3657
  #. translators: %s: HTML tags
3658
+ #: settings.php:3950
3659
  msgid ""
3660
  "Click on project selection, wait for the project to be created and then and "
3661
  "select %s as the current project"
3662
  msgstr ""
3663
 
3664
  #. translators: %s: HTML tags
3665
+ #: settings.php:3951
3666
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3667
  msgstr ""
3668
 
3669
  #. translators: %s: HTML tags
3670
+ #: settings.php:3952
3671
  msgid "Search for adsense and enable %s"
3672
  msgstr ""
3673
 
3674
  #. translators: %s: HTML tags
3675
+ #: settings.php:3953
3676
  msgid "Click on %s CREATE CREDENTIALS %s"
3677
  msgstr ""
3678
 
3679
  #. translators: %s: HTML tags
3680
+ #: settings.php:3954
3681
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3682
  msgstr ""
3683
 
3684
  #. translators: %s: HTML tags
3685
+ #: settings.php:3955
3686
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3687
  msgstr ""
3688
 
3689
  #. translators: %s: HTML tags
3690
+ #: settings.php:3956
3691
  msgid "Click on %s What credentials do I need? %s"
3692
  msgstr ""
3693
 
3694
  #. translators: %s: HTML tags
3695
+ #: settings.php:3957
3696
  msgid ""
3697
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3698
  "Ad Inserter client %s"
3699
  msgstr ""
3700
 
3701
  #. translators: %s: HTML tags
3702
+ #: settings.php:3958
3703
  msgid ""
3704
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3705
  "enter %s"
3706
  msgstr ""
3707
 
3708
  #. translators: %s: HTML tags
3709
+ #: settings.php:3959
3710
  msgid "Click on %s Continue %s"
3711
  msgstr ""
3712
 
3713
  #. translators: %s: HTML tags
3714
+ #: settings.php:3960
3715
  msgid "Click on %s Done %s"
3716
  msgstr ""
3717
 
3718
  #. translators: %s: HTML tags
3719
+ #: settings.php:3961
3720
  msgid ""
3721
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3722
  "secret %s"
3723
  msgstr ""
3724
 
3725
+ #: settings.php:3962
3726
  msgid "Copy them to the appropriate fields below"
3727
  msgstr ""
3728
 
3729
+ #: settings.php:3968
3730
  msgid "Client ID"
3731
  msgstr ""
3732
 
3733
+ #: settings.php:3971
3734
  msgid "Enter Client ID"
3735
  msgstr ""
3736
 
3737
+ #: settings.php:3976
3738
  msgid "Client secret"
3739
  msgstr ""
3740
 
3741
+ #: settings.php:3979
3742
  msgid "Enter Client secret"
3743
  msgstr ""
3744
 
3745
+ #: settings.php:3989
3746
  msgid "Use default API IDs"
3747
  msgstr ""
3748
 
3749
+ #: settings.php:3994
3750
  msgid "Save"
3751
  msgstr ""
3752
 
3753
+ #: settings.php:4270 settings.php:4283 settings.php:4296 settings.php:4311
3754
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3755
  msgstr ""
3756
 
3757
+ #: settings.php:4275 settings.php:4288 settings.php:4301 settings.php:4316
3758
+ #: settings.php:4496 settings.php:4500 settings.php:4518 settings.php:4522
3759
+ #: settings.php:4530 settings.php:4533 settings.php:4539 settings.php:4551
3760
  msgid "Looking for AdSense alternative?"
3761
  msgstr ""
3762
 
3763
+ #: settings.php:4327
3764
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3765
  msgstr ""
3766
 
3767
+ #: settings.php:4332 settings.php:4498 settings.php:4502 settings.php:4510
3768
+ #: settings.php:4536
3769
  msgid "Use Infolinks ads with Adsense to earn more"
3770
  msgstr ""
3771
 
3772
+ #: settings.php:4351 settings.php:4389
3773
  msgid "Support plugin development"
3774
  msgstr ""
3775
 
3776
+ #: settings.php:4352 settings.php:4390
3777
  msgid ""
3778
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3779
  "reviewing the plugin on WordPres"
3780
  msgstr ""
3781
 
3782
+ #: settings.php:4352
3783
  msgctxt "Review ad Inserter"
3784
  msgid "Review"
3785
  msgstr ""
3786
 
3787
+ #: settings.php:4353
3788
  msgid ""
3789
  "Support free Ad Inserter development. If you are making money with Ad "
3790
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3791
  "you!"
3792
  msgstr ""
3793
 
3794
+ #: settings.php:4353
3795
  msgid "Donate"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:4360 settings.php:4405
3799
  msgid "Average rating of the plugin - Thank you!"
3800
  msgstr ""
3801
 
3802
  #. translators: %s: Ad Inserter, HTML tags
3803
+ #: settings.php:4371
3804
  msgid ""
3805
  "You've been using %s for a while now, and I hope you're happy with it. "
3806
  "Positive %s reviews %s are a great way to show your appreciation for my "
3809
  "your website. %s Thank you!"
3810
  msgstr ""
3811
 
3812
+ #: settings.php:4390
3813
  msgid "Review"
3814
  msgstr ""
3815
 
3816
+ #: settings.php:4394
3817
  msgid "Ad Inserter on Twitter"
3818
  msgstr ""
3819
 
3820
+ #: settings.php:4395
3821
  msgid "Ad Inserter on Facebook"
3822
  msgstr ""
3823
 
3824
+ #: settings.php:4398
3825
  msgid "Follow Ad Inserter"
3826
  msgstr ""
3827
 
3828
  #. translators: %s: HTML tags
3829
+ #: settings.php:4425
3830
  msgid ""
3831
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3832
  "and %s Common Settings %s pages"
3833
  msgstr ""
3834
 
3835
  #. translators: %s: HTML tags
3836
+ #: settings.php:4437
3837
  msgid ""
3838
+ "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
3839
+ "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
3840
+ "code %s"
3841
  msgstr ""
3842
 
3843
  #. translators: %s: HTML tags
3844
+ #: settings.php:4458
3845
  msgid ""
3846
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
3847
  "purchase you refer to us"
3848
  msgstr ""
3849
 
3850
  #. translators: %s: HTML tags
3851
+ #: settings.php:4465
3852
  msgid ""
3853
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3854
  "diagnose and fix the problem."
3855
  msgstr ""
3856
 
3857
  #. translators: %s: HTML tags
3858
+ #: settings.php:4469
3859
  msgid ""
3860
  "If you need any kind of help or support, please do not hesitate to open a "
3861
  "thread on the %s support forum. %s"
3862
  msgstr ""
3863
 
3864
+ #: settings.php:4514 settings.php:4555
3865
  msgid "A/B testing - Track ad impressions and clicks"
3866
  msgstr ""
3867
 
3868
+ #: settings.php:4547 settings.php:4559
3869
  msgid "Code preview with visual CSS editor"
3870
  msgstr ""
3871
 
3872
+ #: settings.php:4567
3873
  msgid "Looking for Pro Ad Management plugin?"
3874
  msgstr ""
3875
 
3876
+ #: settings.php:4568
3877
  msgid "To Optimally Monetize your WordPress website?"
3878
  msgstr ""
3879
 
3880
  #. translators: %s HTML tags
3881
+ #: settings.php:4571
3882
  msgid "%s AdSense Integration %s"
3883
  msgstr ""
3884
 
3885
  #. translators: %s HTML tags
3886
+ #: settings.php:4572
3887
  msgid "Syntax highlighting %s editor %s"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
+ #: settings.php:4573
3892
  msgid "%s Code preview %s with visual CSS editor"
3893
  msgstr ""
3894
 
3895
  #. translators: %s HTML tags
3896
+ #: settings.php:4574
3897
  msgid "Simple user interface - all settings on a single page"
3898
  msgstr ""
3899
 
3900
  #. translators: %s HTML tags
3901
+ #: settings.php:4575
3902
  msgid ""
3903
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3904
  "image / excerpt"
3905
  msgstr ""
3906
 
3907
  #. translators: %s HTML tags
3908
+ #: settings.php:4576
3909
  msgid "%s Automatic insertion %s between posts on blog pages"
3910
  msgstr ""
3911
 
3912
  #. translators: %s HTML tags
3913
+ #: settings.php:4577
3914
  msgid "%s Automatic insertion %s before, between and after comments"
3915
  msgstr ""
3916
 
3917
  #. translators: %s HTML tags
3918
+ #: settings.php:4578
3919
  msgid "%s Automatic insertion %s after %s or before %s tag"
3920
  msgstr ""
3921
 
3922
  #. translators: %s HTML tags
3923
+ #: settings.php:4579
3924
  msgid "Automatic insertion at %s custom hook positions %s"
3925
  msgstr ""
3926
 
3927
  #. translators: %s HTML tags
3928
+ #: settings.php:4580
3929
  msgid ""
3930
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3931
  "selectors)"
3932
  msgstr ""
3933
 
3934
  #. translators: %s HTML tags
3935
+ #: settings.php:4581
3936
  msgid "%s Insertion exceptions %s for individual posts and pages"
3937
  msgstr ""
3938
 
3939
  #. translators: %s HTML tags
3940
+ #: settings.php:4582
3941
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3942
  msgstr ""
3943
 
3944
  #. translators: %s HTML tags
3945
+ #: settings.php:4583
3946
  msgid ""
3947
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3948
  "scrolls)"
3949
  msgstr ""
3950
 
3951
  #. translators: %s HTML tags
3952
+ #: settings.php:4584
3953
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3954
  msgstr ""
3955
 
3956
  #. translators: %s HTML tags
3957
+ #: settings.php:4585
3958
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3959
  msgstr ""
3960
 
3961
  #. translators: %s HTML tags
3962
+ #: settings.php:4586
3963
  msgid ""
3964
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3965
  "visible)"
3966
  msgstr ""
3967
 
3968
  #. translators: %s HTML tags
3969
+ #: settings.php:4587
3970
  msgid ""
3971
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3972
  msgstr ""
3973
 
3974
  #. translators: %s HTML tags
3975
+ #: settings.php:4588
3976
  msgid "Block %s alignment and style %s customizations"
3977
  msgstr ""
3978
 
3979
  #. translators: %s HTML tags
3980
+ #: settings.php:4589
3981
  msgid ""
3982
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3983
  "TOS)"
3984
  msgstr ""
3985
 
3986
  #. translators: %s HTML tags
3987
+ #: settings.php:4590
3988
  msgid ""
3989
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3990
  "feeds"
3991
  msgstr ""
3992
 
3993
  #. translators: %s HTML tags
3994
+ #: settings.php:4591
3995
  msgid "%s Ad rotation %s (works also with caching)"
3996
  msgstr ""
3997
 
3998
  #. translators: %s HTML tags
3999
+ #: settings.php:4592
4000
  msgid "Create, edit and check %s ads.txt %s file"
4001
  msgstr ""
4002
 
4003
  #. translators: %s HTML tags
4004
+ #: settings.php:4593
4005
  msgid ""
4006
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4007
  "AdSense)"
4008
  msgstr ""
4009
 
4010
  #. translators: %s HTML tags
4011
+ #: settings.php:4594
4012
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4013
  msgstr ""
4014
 
4015
  #. translators: %s HTML tags
4016
+ #: settings.php:4595
4017
  msgid "%s Public web reports %s for clients, export to PDF"
4018
  msgstr ""
4019
 
4020
  #. translators: %s HTML tags
4021
+ #: settings.php:4596
4022
  msgid "Support for %s A/B testing %s"
4023
  msgstr ""
4024
 
4025
  #. translators: %s HTML tags
4026
+ #: settings.php:4597
4027
  msgid "Support for %s lazy loading %s"
4028
  msgstr ""
4029
 
4030
  #. translators: %s HTML tags
4031
+ #: settings.php:4598
4032
  msgid "Support for ads on %s AMP pages %s"
4033
  msgstr ""
4034
 
4035
  #. translators: %s HTML tags
4036
+ #: settings.php:4599
4037
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4038
  msgstr ""
4039
 
4040
  #. translators: %s HTML tags
4041
+ #: settings.php:4600
4042
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4043
  msgstr ""
4044
 
4045
  #. translators: %s HTML tags
4046
+ #: settings.php:4601
4047
  msgid "PHP code processing"
4048
  msgstr ""
4049
 
4050
  #. translators: %s HTML tags
4051
+ #: settings.php:4602
4052
  msgid "%s Banner %s code generator"
4053
  msgstr ""
4054
 
4055
  #. translators: %s HTML tags
4056
+ #: settings.php:4603
4057
  msgid "Support for %s header and footer %s code"
4058
  msgstr ""
4059
 
4060
  #. translators: %s HTML tags
4061
+ #: settings.php:4604
4062
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4063
  msgstr ""
4064
 
4065
  #. translators: %s HTML tags
4066
+ #: settings.php:4605
4067
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4068
  msgstr ""
4069
 
4070
  #. translators: %s HTML tags
4071
+ #: settings.php:4606
4072
  msgid "Client-side %s mobile device detection %s (works with caching)"
4073
  msgstr ""
4074
 
4075
  #. translators: %s HTML tags
4076
+ #: settings.php:4607
4077
  msgid ""
4078
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4079
  "protection"
4080
  msgstr ""
4081
 
4082
  #. translators: %s HTML tags
4083
+ #: settings.php:4608
4084
  msgid "%s Ad blocking statistics %s"
4085
  msgstr ""
4086
 
4087
  #. translators: %s HTML tags
4088
+ #: settings.php:4609
4089
  msgid ""
4090
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4091
  "referers"
4092
  msgstr ""
4093
 
4094
  #. translators: %s HTML tags
4095
+ #: settings.php:4610
4096
  msgid ""
4097
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4098
  msgstr ""
4099
 
4100
  #. translators: %s HTML tags
4101
+ #: settings.php:4611
4102
  msgid "%s Multisite options %s to limit settings on the sites"
4103
  msgstr ""
4104
 
4105
  #. translators: %s HTML tags
4106
+ #: settings.php:4612
4107
  msgid "%s Import/Export %s block or plugin settings"
4108
  msgstr ""
4109
 
4110
  #. translators: %s HTML tags
4111
+ #: settings.php:4613
4112
  msgid "%s Insertion scheduling %s with fallback option"
4113
  msgstr ""
4114
 
4115
  #. translators: %s HTML tags
4116
+ #: settings.php:4614
4117
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4118
  msgstr ""
4119
 
4120
  #. translators: %s HTML tags
4121
+ #: settings.php:4615
4122
  msgid "Simple troubleshooting with many %s debugging functions %s"
4123
  msgstr ""
4124
 
4125
  #. translators: %s HTML tags
4126
+ #: settings.php:4616
4127
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4128
  msgstr ""
4129
 
4130
  #. translators: %s HTML tags
4131
+ #: settings.php:4617
4132
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4133
  msgstr ""
4134
 
4135
  #. translators: %s HTML tags
4136
+ #: settings.php:4618
4137
  msgid ""
4138
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4139
  msgstr ""
4140
 
4141
  #. translators: %s HTML tags
4142
+ #: settings.php:4619
4143
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4144
  msgstr ""
4145
 
4146
  #. translators: %s HTML tags
4147
+ #: settings.php:4620
4148
  msgid "No ads on the settings page"
4149
  msgstr ""
4150
 
4151
  #. translators: %s HTML tags
4152
+ #: settings.php:4621
4153
  msgid "Premium support"
4154
  msgstr ""
4155
 
4156
  #. translators: %s HTML tags
4157
+ #: settings.php:4624
4158
  msgid ""
4159
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4160
  "website with many advertising features to automatically insert adverts on "
4169
  msgstr ""
4170
 
4171
  #. translators: %s HTML tags
4172
+ #: settings.php:4637
4173
  msgid "Looking for %s Pro Ad Management plugin? %s"
4174
  msgstr ""
4175
 
4176
  #. translators: %s HTML tags
4177
+ #: settings.php:4642
4178
  msgid "Ads between posts"
4179
  msgstr ""
4180
 
4181
  #. translators: %s HTML tags
4182
+ #: settings.php:4643
4183
  msgid "Ads between comments"
4184
  msgstr ""
4185
 
4186
  #. translators: %s HTML tags
4187
+ #: settings.php:4644
4188
  msgid "Support via email"
4189
  msgstr ""
4190
 
4191
  #. translators: %s HTML tags
4192
+ #: settings.php:4650
4193
  msgid "%s Sticky positions %s"
4194
  msgstr ""
4195
 
4196
  #. translators: %s HTML tags
4197
+ #: settings.php:4651
4198
  msgid "%s Limit insertions %s"
4199
  msgstr ""
4200
 
4201
  #. translators: %s HTML tags
4202
+ #: settings.php:4652
4203
  msgid "%s Clearance %s options"
4204
  msgstr ""
4205
 
4206
  #. translators: %s HTML tags
4207
+ #: settings.php:4658
4208
  msgid "Ad rotation"
4209
  msgstr ""
4210
 
4211
  #. translators: %s HTML tags
4212
+ #: settings.php:4659
4213
  msgid "%s A/B testing %s"
4214
  msgstr ""
4215
 
4216
  #. translators: %s HTML tags
4217
+ #: settings.php:4660
4218
  msgid "%s Ad tracking %s"
4219
  msgstr ""
4220
 
4221
  #. translators: %s HTML tags
4222
+ #: settings.php:4666
4223
  msgid "Support for %s AMP pages %s"
4224
  msgstr ""
4225
 
4226
  #. translators: %s HTML tags
4227
+ #: settings.php:4667
4228
  msgid "%s Ad blocking detection %s"
4229
  msgstr ""
4230
 
4231
  #. translators: %s HTML tags
4232
+ #: settings.php:4668
4233
  msgid "%s Mobile device detection %s"
4234
  msgstr ""
4235
 
4236
  #. translators: %s HTML tags
4237
+ #: settings.php:4675
4238
  msgid "64 code blocks"
4239
  msgstr ""
4240
 
4241
  #. translators: %s HTML tags
4242
+ #: settings.php:4676
4243
  msgid "%s GEO targeting %s"
4244
  msgstr ""
4245
 
4246
  #. translators: %s HTML tags
4247
+ #: settings.php:4677
4248
  msgid "%s Scheduling %s"
4249
  msgstr ""
4250
 
4846
  msgid "Fixed by viewport"
4847
  msgstr ""
4848
 
4849
+ #: strings.php:180
4850
  msgid "Impressions and clicks"
4851
  msgstr ""
4852
 
4853
+ #: strings.php:181
4854
  msgid "Advanced WordPress Ad Management Plugin"
4855
  msgstr ""
4856
 
4857
+ #: strings.php:187
4858
  msgctxt "Button"
4859
  msgid "Hide"
4860
  msgstr ""
4861
 
4862
+ #: strings.php:188
4863
  msgctxt "Button"
4864
  msgid "Show"
4865
  msgstr ""
4866
 
4867
+ #: strings.php:189
4868
  msgid "Insertion expired"
4869
  msgstr ""
4870
 
4871
+ #: strings.php:190
4872
  msgid "Duration"
4873
  msgstr ""
4874
 
4875
+ #: strings.php:191
4876
  msgid "Invalid end date - must be after start date"
4877
  msgstr ""
4878
 
4879
+ #: strings.php:192
4880
  msgid "Invalid start date - only data for 1 year back is available"
4881
  msgstr ""
4882
 
4883
+ #: strings.php:193
4884
  msgid "Invalid date range - only data for 1 year can be displayed"
4885
  msgstr ""
4886
 
4887
+ #: strings.php:194 strings.php:195 strings.php:196 strings.php:197
4888
+ #: strings.php:198 strings.php:199
4889
  msgid "day"
4890
  msgid_plural "days"
4891
  msgstr[0] ""
4892
  msgstr[1] ""
4893
 
4894
+ #: strings.php:201
4895
  msgid "Delete"
4896
  msgstr ""
4897
 
4898
+ #: strings.php:203
4899
  msgid "Delete all statistics data?"
4900
  msgstr ""
4901
 
4902
  #. translators: %s: dates
4903
+ #: strings.php:205
4904
  msgid "Delete statistics data between %s and %s?"
4905
  msgstr ""
4906
 
4907
+ #: strings.php:206
4908
  msgid "Cancel block order rearrangement"
4909
  msgstr ""
4910
 
4911
+ #: strings.php:208
4912
  msgid "downloading..."
4913
  msgstr ""
4914
 
4915
+ #: strings.php:209
4916
  msgid "download error"
4917
  msgstr ""
4918
 
4919
+ #: strings.php:210
4920
  msgid "update error"
4921
  msgstr ""
4922
 
4923
+ #: strings.php:211
4924
  msgid "Updating..."
4925
  msgstr ""
4926
 
4927
+ #: strings.php:213
4928
  msgid "ERROR"
4929
  msgstr ""
4930
 
4931
+ #: strings.php:214
4932
  msgid "Error reloading settings"
4933
  msgstr ""
4934
 
4935
+ #: strings.php:216
4936
  msgctxt "Search field placeholder"
4937
  msgid "Search..."
4938
  msgstr ""
4939
 
4940
+ #: strings.php:217
4941
  msgctxt "Search field placeholder"
4942
  msgid "Filter..."
4943
  msgstr ""
4944
 
4945
+ #: strings.php:218
4946
  msgid "Use filter to limit names in the list"
4947
  msgstr ""
4948
 
4949
+ #: strings.php:219
4950
  msgctxt "Button"
4951
  msgid "Filter"
4952
  msgstr ""
4953
 
4954
+ #: strings.php:221
4955
  msgid "Position not available"
4956
  msgstr ""
4957
 
4958
+ #: strings.php:222
4959
  msgid ""
4960
  "Theme check | Selected position for automatic insertion might not be not "
4961
  "available on this page type"
4962
  msgstr ""
4963
 
4964
+ #: strings.php:223
4965
  msgid "Position available"
4966
  msgstr ""
4967
 
4968
+ #: strings.php:225
4969
  msgid "Select or upload banner image"
4970
  msgstr ""
4971
 
4972
+ #: strings.php:226
4973
  msgid "Use this image"
4974
  msgstr ""
4975
 
4976
+ #: strings.php:240
4977
  msgid "Add"
4978
  msgstr ""
4979
 
4980
+ #: strings.php:241
4981
  msgid "Parent"
4982
  msgstr ""
4983
 
4984
+ #: strings.php:242
4985
  msgid "Cancel element selection"
4986
  msgstr ""
4987
 
4988
+ #: strings.php:243
4989
  msgid "Select parent element"
4990
  msgstr ""
4991
 
4992
+ #: strings.php:244
4993
  msgid "CSS selector"
4994
  msgstr ""
4995
 
4996
+ #: strings.php:245
4997
  msgid "Use current selector"
4998
  msgstr ""
4999
 
5000
+ #: strings.php:246
5001
  msgid "ELEMENT"
5002
  msgstr ""
5003
 
5004
+ #: strings.php:247
5005
  msgid "PATH"
5006
  msgstr ""
5007
 
5008
+ #: strings.php:248
5009
  msgid "SELECTOR"
5010
  msgstr ""
5011
 
5012
+ #: strings.php:249
5013
  msgctxt "Block"
5014
  msgid "VISIBLE"
5015
  msgstr ""
5016
 
5017
+ #: strings.php:250
5018
  msgctxt "Block"
5019
  msgid "HIDDEN"
5020
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.0
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.4.18
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
@@ -301,6 +301,12 @@ If you are not happy to reveal this information and you have opted in, simply di
301
 
302
  == Changelog ==
303
 
 
 
 
 
 
 
304
  = 2.4.18 =
305
  - Added support for full width responsive AdSense code option
306
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -419,6 +425,12 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
419
 
420
  == Upgrade Notice ==
421
 
 
 
 
 
 
 
422
  = 2.4.18 =
423
  Added support for full width responsive AdSense code option;
424
  Few minor bug fixes, cosmetic changes and code improvements
6
  Requires at least: 4.0
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.4.19
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
301
 
302
  == Changelog ==
303
 
304
+ = 2.4.19 =
305
+ - Added support for taxonomy for Yoast primary category
306
+ - Layout changes to accomodate longer translated texts
307
+ - Fix for escape character not saved in header, footer and ad blocking message code
308
+ - Few minor bug fixes, cosmetic changes and code improvements
309
+
310
  = 2.4.18 =
311
  - Added support for full width responsive AdSense code option
312
  - Few minor bug fixes, cosmetic changes and code improvements
425
 
426
  == Upgrade Notice ==
427
 
428
+ = 2.4.19 =
429
+ Added support for taxonomy for Yoast primary category;
430
+ Layout changes to accomodate longer translated texts;
431
+ Fix for escape character not saved in header, footer and ad blocking message code;
432
+ Few minor bug fixes, cosmetic changes and code improvements
433
+
434
  = 2.4.18 =
435
  Added support for full width responsive AdSense code option;
436
  Few minor bug fixes, cosmetic changes and code improvements
settings.php CHANGED
@@ -765,7 +765,7 @@ function generate_settings_form (){
765
 
766
  <table class="ai-settings-table left">
767
  <tr>
768
- <td>
769
  <?php _e ('Comment', 'ad-inserter'); ?>
770
  </td>
771
  <td style="width: 100%; padding-left: 7px;">
@@ -774,7 +774,7 @@ function generate_settings_form (){
774
  </tr>
775
 
776
  <tr>
777
- <td title="Publisher ID">
778
  <?php _ex ('Publisher ID', 'AdSense', 'ad-inserter'); ?>
779
  </td>
780
  <td style="width: 100%; padding-left: 7px;">
@@ -783,7 +783,7 @@ function generate_settings_form (){
783
  </tr>
784
 
785
  <tr>
786
- <td title="Ad Slot ID">
787
  <?php _ex ('Ad Slot ID', 'AdSense', 'ad-inserter'); ?>
788
  </td>
789
  <td style="padding-left: 7px;">
@@ -792,7 +792,7 @@ function generate_settings_form (){
792
  </tr>
793
 
794
  <tr>
795
- <td>
796
  <?php _e ('Ad Type', 'ad-inserter'); ?>
797
  </td>
798
  <td style="padding-left: 7px;">
@@ -816,7 +816,7 @@ function generate_settings_form (){
816
  </tr>
817
 
818
  <tr>
819
- <td>
820
  <?php _e ('AMP Ad', 'ad-inserter'); ?>
821
  </td>
822
  <td style="padding-left: 7px;">
@@ -871,7 +871,7 @@ function generate_settings_form (){
871
  <td style="padding-left: 7px; float: left;">
872
  <span class="adsense-full-width-responsive">
873
  <?php _e ('Full width', 'ad-inserter'); ?>
874
- <select class="adsense-full-width" style="margin-top: -1px;">
875
  <option value="enabled"><?php _ex ('Enabled', 'Full width', 'ad-inserter'); ?></option>
876
  <option value="disabled" selected><?php _ex ('Disabled', 'Full width', 'ad-inserter'); ?></option>
877
  </select>
@@ -984,17 +984,17 @@ function generate_settings_form (){
984
  &nbsp;
985
  <label for="display-posts-<?php echo $block; ?>" title="<?php _e ('Individual post exceptions (if enabled here) can be configured in post editor. Leave blank for no individual post exceptions.', 'ad-inserter'); ?>"><?php _e ('Posts', 'ad-inserter'); ?></label>
986
  </td>
987
- <td class="ai-page-type ai-hp" style="width: 25%; padding-left: 8px;">
988
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
989
  <input id= "display-homepage-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_home(); ?>" <?php if ($obj->get_display_settings_home()==AI_ENABLED) echo 'checked '; ?> />
990
  <label for="display-homepage-<?php echo $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>"><?php _e ('Homepage', 'ad-inserter'); ?></label>
991
  </td>
992
- <td class="ai-page-type ai-cp" style="width: 30%; padding-left: 8px;">
993
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
994
  <input id= "display-category-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_category(); ?>" <?php if ($obj->get_display_settings_category()==AI_ENABLED) echo 'checked '; ?> />
995
  <label for="display-category-<?php echo $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>"><?php _e ('Category pages', 'ad-inserter'); ?></label>
996
  </td>
997
- <td style="padding-left: 20px;">
998
  <span class="page-checker-button checkbox-button dashicons dashicons-editor-justify" title="<?php _e ('Check theme for available positions for automatic insertion', 'ad-inserter'); ?>"></span>
999
  </td>
1000
  </tr>
@@ -1012,17 +1012,17 @@ function generate_settings_form (){
1012
  &nbsp;
1013
  <label for="display-pages-<?php echo $block; ?>" title="<?php _e ('Individual static page exceptions (if enabled here) can be configured in page editor. Leave blank for no individual page exceptions.', 'ad-inserter'); ?>"><?php _e ('Static pages', 'ad-inserter'); ?></label>
1014
  </td>
1015
- <td class="ai-page-type ai-sp" style="padding-left: 8px;">
1016
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1017
  <input id= "display-search-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on search blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_search(); ?>" <?php if ($obj->get_display_settings_search()==AI_ENABLED) echo 'checked '; ?> />
1018
  <label for="display-search-<?php echo $block; ?>" title="<?php _e ('Enable insertion on search blog pages', 'ad-inserter'); ?>"><?php _e ('Search pages', 'ad-inserter'); ?></label>
1019
  </td>
1020
- <td class="ai-page-type ai-ap" style="padding-left: 8px;">
1021
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1022
  <input id= "display-archive-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_archive(); ?>" <?php if ($obj->get_display_settings_archive()==AI_ENABLED) echo 'checked '; ?> />
1023
  <label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
1024
  </td>
1025
- <td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 20px;">
1026
  <?php
1027
  if (!empty ($block_exceptions [$block])) {
1028
  ?>
@@ -1522,7 +1522,7 @@ function generate_settings_form (){
1522
  <button id="id-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: none; outline: transparent; float: right; margin-top: 1px; width: 15px; height: 15px;" title="<?php _e ('Toggle post/page ID editor', 'ad-inserter'); ?>"></button>
1523
  </td>
1524
  <td style="padding-right: 7px;">
1525
- <input id="id-list-<?php echo $block; ?>" class="ai-list-lowercase ai-list-custom" style="width: 100%;" title="<?php _e ('Comma separated post/page IDs', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_ID_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_id_list(); ?>" value="<?php echo $id_list; ?>" size="54" maxlength="500"/>
1526
  </td>
1527
  <td style="padding-right: 7px;">
1528
  <input type="radio" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="id-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_id_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_id_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />
@@ -1548,7 +1548,7 @@ function generate_settings_form (){
1548
  <button id="url-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: none; outline: transparent; float: right; margin-top: 1px; width: 15px; height: 15px;" title="<?php _e ('Toggle url editor', 'ad-inserter'); ?>"></button>
1549
  </td>
1550
  <td style="padding-right: 7px;">
1551
- <input id="url-list-<?php echo $block; ?>" class="ai-list-space ai-clean-protocol ai-clean-domain" style="width: 100%;" type="text" name="<?php echo AI_OPTION_URL_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_url_list(); ?>" value="<?php echo $url_list; ?>" size="54" maxlength="500" title="<?php _e ('Comma separated urls (page addresses) starting with / after domain name (e.g. /permalink-url, use only when you need to taget a specific url not accessible by other means). You can also use partial urls with * (/url-start*. *url-pattern*, *url-end)', 'ad-inserter'); ?>" />
1552
  </td>
1553
  <td style="padding-right: 7px;">
1554
  <input type="radio" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_url_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_url_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />
@@ -1857,7 +1857,7 @@ function generate_settings_form (){
1857
  </span>
1858
  <span style="display: table-cell; padding-left: 10px;">
1859
  <?php _e('using', 'ad-inserter'); ?>
1860
- <select id="filter-type-<?php echo $block; ?>" style="padding-left: 10px; margin: 0 1px;" name="<?php echo AI_OPTION_FILTER_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_filter_type(); ?>">
1861
  <option value="<?php echo AI_FILTER_AUTO; ?>" <?php echo ($filter_type == AI_FILTER_AUTO) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_AUTO_COUNTER; ?></option>
1862
  <option value="<?php echo AI_FILTER_PHP_FUNCTION_CALLS; ?>" <?php echo ($filter_type == AI_FILTER_PHP_FUNCTION_CALLS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHP_FUNCTION_CALLS_COUNTER; ?></option>
1863
  <option value="<?php echo AI_FILTER_CONTENT_PROCESSING; ?>" <?php echo ($filter_type == AI_FILTER_CONTENT_PROCESSING) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CONTENT_PROCESSING_COUNTER; ?></option>
@@ -1889,7 +1889,7 @@ function generate_settings_form (){
1889
  </div>
1890
 
1891
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
1892
- <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
1893
  <option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
1894
  <option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
1895
  <option value="<?php echo AI_SCHEDULING_INSERT_ONLY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_INSERT_ONLY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_ONLY; ?></option>
@@ -2351,23 +2351,32 @@ function generate_settings_form (){
2351
  </div>
2352
 
2353
  <div id="device-detection-settings-h" class="rounded">
2354
- <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" value="0" />
2355
- <input type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" id="server-side-detection-h" style="margin-top: 1px;" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($adH->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2356
- <label for="server-side-detection-h"><?php _e ('Use server-side detection to insert code only for', 'ad-inserter'); ?> </label>
2357
- <select id="display-for-devices-h" name="<?php echo AI_OPTION_DISPLAY_FOR_DEVICES, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" default="<?php echo $default->get_display_for_devices(); ?>" >
2358
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_DEVICES; ?></option>
2359
- <option value="<?php echo AI_INSERT_FOR_MOBILE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_MOBILE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_MOBILE_DEVICES; ?></option>
2360
- <option value="<?php echo AI_INSERT_FOR_TABLET_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TABLET_DEVICES; ?></option>
2361
- <option value="<?php echo AI_INSERT_FOR_PHONE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHONE_DEVICES; ?></option>
2362
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_TABLET_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_TABLET_DEVICES; ?></option>
2363
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_PHONE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_PHONE_DEVICES; ?></option>
2364
- </select>
2365
-
2366
- <span style="float: right; margin-top: 2px;">
2367
- <input type="hidden" name="<?php echo AI_OPTION_ENABLE_404, '_block_h'; ?>" value="0" />
2368
- <input style="margin-left: 10px; margin-top: 1px;" type="checkbox" name="<?php echo AI_OPTION_ENABLE_404, '_block_h'; ?>" id="enable-header-404" value="1" default="<?php echo $default->get_enable_404(); ?>" <?php if ($adH->get_enable_404 () == AI_ENABLED) echo 'checked '; ?> />
2369
- <label for="enable-header-404" title="<?php _e ('Enable insertion of this code into HTML page header on page for Error 404: Page not found', 'ad-inserter'); ?>"><?php _e ('Insert on Error 404 page', 'ad-inserter'); ?></label>
2370
- </span>
 
 
 
 
 
 
 
 
 
2371
  </div>
2372
  </div>
2373
 
@@ -2409,23 +2418,33 @@ function generate_settings_form (){
2409
  </div>
2410
 
2411
  <div id="device-detection-settings-f" class="rounded">
2412
- <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" value="0" />
2413
- <input style="margin-top: 1px;" type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" id="server-side-detection-f" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($adF->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2414
- <label for="server-side-detection-f"><?php _e ('Use server-side detection to insert code only for', 'ad-inserter'); ?> </label>
2415
- <select id="display-for-devices-f" name="<?php echo AI_OPTION_DISPLAY_FOR_DEVICES, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" default="<?php echo $default->get_display_for_devices(); ?>" >
2416
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_DEVICES; ?></option>
2417
- <option value="<?php echo AI_INSERT_FOR_MOBILE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_MOBILE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_MOBILE_DEVICES; ?></option>
2418
- <option value="<?php echo AI_INSERT_FOR_TABLET_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TABLET_DEVICES; ?></option>
2419
- <option value="<?php echo AI_INSERT_FOR_PHONE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHONE_DEVICES; ?></option>
2420
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_TABLET_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_TABLET_DEVICES; ?></option>
2421
- <option value="<?php echo AI_INSERT_FOR_DESKTOP_PHONE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_PHONE_DEVICES; ?></option>
2422
- </select>
2423
 
2424
- <span style="float: right; margin-top: 2px;">
2425
- <input type="hidden" name="<?php echo AI_OPTION_ENABLE_404, '_block_f'; ?>" value="0" />
2426
- <input style="margin-left: 10px; margin-top: 1px;" type="checkbox" name="<?php echo AI_OPTION_ENABLE_404, '_block_f'; ?>" id="enable-footer-404" value="1" default="<?php echo $default->get_enable_404(); ?>" <?php if ($adF->get_enable_404 () == AI_ENABLED) echo 'checked '; ?> />
2427
- <label for="enable-footer-404" title="<?php _e ('Enable insertion of this code into HTML page footer on page for Error 404: Page not found', 'ad-inserter'); ?>"><?php _e ('Insert on Error 404 page', 'ad-inserter'); ?></label>
2428
- </span>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2429
  </div>
2430
  </div>
2431
 
@@ -2811,6 +2830,7 @@ function generate_settings_form (){
2811
 
2812
  $sidebar = 0;
2813
  $number_of_used_blocks = count ($used_blocks);
 
2814
  if (isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL])) {
2815
  if ($ai_wp_data [AI_DAYS_SINCE_INSTAL] > 2)
2816
  $sidebar = 1;
@@ -2828,7 +2848,7 @@ function generate_settings_form (){
2828
  $sidebar = 4;
2829
 
2830
  } else {
2831
- if ($number_of_used_blocks >= 3) $sidebar = 4;
2832
  }
2833
 
2834
  // $sidebar = 0;
@@ -4309,7 +4329,7 @@ function sidebar_addense_alternative () { ?>
4309
  <div style="clear: both;"></div>
4310
  </div>
4311
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4312
- <a href='https://www.infolinks.com/join-us/?kid=3114832' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
4313
  </div>
4314
  <?php
4315
  break;
@@ -4414,20 +4434,22 @@ function sidebar_help () { ?>
4414
  ); ?>
4415
  </div>
4416
  <div>
4417
- <?php /* translators: %s: HTML tags */ printf (__('%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s', 'ad-inserter'),
4418
  '<strong>',
4419
  '<a href="https://adinserter.pro/documentation/adsense-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4420
  '</a>',
4421
  '</strong>',
4422
  '<a href="https://adinserter.pro/documentation/adsense-ads#connect-your-site" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4423
  '</a>',
4424
- '<a href="https://adinserter.pro/documentation/adsense-ads#ad-code" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4425
- '</a>',
4426
  '<a href="https://adinserter.pro/documentation/adsense-ads#in-feed-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4427
  '</a>',
4428
  '<a href="https://adinserter.pro/documentation/adsense-ads#auto-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4429
  '</a>',
4430
  '<a href="https://adinserter.pro/documentation/adsense-ads#amp" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
 
 
 
 
4431
  '</a>'
4432
  ); ?>
4433
 
@@ -4473,11 +4495,11 @@ function sidebar_pro () {
4473
  <!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
4474
  <a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-2.jpg" /></a>
4475
  <?php break; case 1: ?>
4476
- <a href='https://www.infolinks.com/join-us/?kid=3114832' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
4477
  <?php break; case 2: ?>
4478
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>
4479
  <?php break; case 3: ?>
4480
- <a href='https://www.infolinks.com/join-us/?kid=3114832' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
4481
  <?php break;
4482
  } ?>
4483
  </div>
@@ -4485,7 +4507,7 @@ function sidebar_pro () {
4485
  <?php switch ($version) {
4486
  case 0:
4487
  ?>
4488
- <a href='https://www.infolinks.com/join-us/?kid=3114832' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
4489
  <?php break;
4490
  case 1:
4491
  ?>
@@ -4511,7 +4533,7 @@ function sidebar_pro () {
4511
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>
4512
  <?php break; case 2: ?>
4513
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
4514
- <a href='https://www.infolinks.com/join-us/?kid=3114832' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
4515
  <?php break; case 3: ?>
4516
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
4517
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-10" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-10.gif" /></a>
765
 
766
  <table class="ai-settings-table left">
767
  <tr>
768
+ <td class="label">
769
  <?php _e ('Comment', 'ad-inserter'); ?>
770
  </td>
771
  <td style="width: 100%; padding-left: 7px;">
774
  </tr>
775
 
776
  <tr>
777
+ <td class="label" title="Publisher ID">
778
  <?php _ex ('Publisher ID', 'AdSense', 'ad-inserter'); ?>
779
  </td>
780
  <td style="width: 100%; padding-left: 7px;">
783
  </tr>
784
 
785
  <tr>
786
+ <td class="label" title="Ad Slot ID">
787
  <?php _ex ('Ad Slot ID', 'AdSense', 'ad-inserter'); ?>
788
  </td>
789
  <td style="padding-left: 7px;">
792
  </tr>
793
 
794
  <tr>
795
+ <td class="label">
796
  <?php _e ('Ad Type', 'ad-inserter'); ?>
797
  </td>
798
  <td style="padding-left: 7px;">
816
  </tr>
817
 
818
  <tr>
819
+ <td class="label">
820
  <?php _e ('AMP Ad', 'ad-inserter'); ?>
821
  </td>
822
  <td style="padding-left: 7px;">
871
  <td style="padding-left: 7px; float: left;">
872
  <span class="adsense-full-width-responsive">
873
  <?php _e ('Full width', 'ad-inserter'); ?>
874
+ <select class="adsense-full-width" style="margin-top: 1px;">
875
  <option value="enabled"><?php _ex ('Enabled', 'Full width', 'ad-inserter'); ?></option>
876
  <option value="disabled" selected><?php _ex ('Disabled', 'Full width', 'ad-inserter'); ?></option>
877
  </select>
984
  &nbsp;
985
  <label for="display-posts-<?php echo $block; ?>" title="<?php _e ('Individual post exceptions (if enabled here) can be configured in post editor. Leave blank for no individual post exceptions.', 'ad-inserter'); ?>"><?php _e ('Posts', 'ad-inserter'); ?></label>
986
  </td>
987
+ <td class="ai-page-type ai-hp" style="width: 25%; padding-left: 4px;">
988
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
989
  <input id= "display-homepage-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_HOMEPAGE, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_home(); ?>" <?php if ($obj->get_display_settings_home()==AI_ENABLED) echo 'checked '; ?> />
990
  <label for="display-homepage-<?php echo $block; ?>" title="<?php _e ('Enable insertion on homepage: latest posts (including on sub-pages), static page or theme homepage (available positions may depend on hooks used by the theme)', 'ad-inserter'); ?>"><?php _e ('Homepage', 'ad-inserter'); ?></label>
991
  </td>
992
+ <td class="ai-page-type ai-cp" style="width: 30%; padding-left: 4px;">
993
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
994
  <input id= "display-category-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_CATEGORY_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_category(); ?>" <?php if ($obj->get_display_settings_category()==AI_ENABLED) echo 'checked '; ?> />
995
  <label for="display-category-<?php echo $block; ?>" title="<?php _e ('Enable insertion on category blog pages (including sub-pages)', 'ad-inserter'); ?>"><?php _e ('Category pages', 'ad-inserter'); ?></label>
996
  </td>
997
+ <td style="padding-left: 6px;">
998
  <span class="page-checker-button checkbox-button dashicons dashicons-editor-justify" title="<?php _e ('Check theme for available positions for automatic insertion', 'ad-inserter'); ?>"></span>
999
  </td>
1000
  </tr>
1012
  &nbsp;
1013
  <label for="display-pages-<?php echo $block; ?>" title="<?php _e ('Individual static page exceptions (if enabled here) can be configured in page editor. Leave blank for no individual page exceptions.', 'ad-inserter'); ?>"><?php _e ('Static pages', 'ad-inserter'); ?></label>
1014
  </td>
1015
+ <td class="ai-page-type ai-sp" style="padding-left: 4px;">
1016
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1017
  <input id= "display-search-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_SEARCH_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on search blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_search(); ?>" <?php if ($obj->get_display_settings_search()==AI_ENABLED) echo 'checked '; ?> />
1018
  <label for="display-search-<?php echo $block; ?>" title="<?php _e ('Enable insertion on search blog pages', 'ad-inserter'); ?>"><?php _e ('Search pages', 'ad-inserter'); ?></label>
1019
  </td>
1020
+ <td class="ai-page-type ai-ap" style="padding-left: 4px;">
1021
  <input type="hidden" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
1022
  <input id= "display-archive-<?php echo $block; ?>" style="margin-left: 10px;" type="checkbox" name="<?php echo AI_OPTION_DISPLAY_ON_ARCHIVE_PAGES, WP_FORM_FIELD_POSTFIX, $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>" value="1" default="<?php echo $default->get_display_settings_archive(); ?>" <?php if ($obj->get_display_settings_archive()==AI_ENABLED) echo 'checked '; ?> />
1023
  <label for="display-archive-<?php echo $block; ?>" title="<?php _e ('Enable insertion on tag or archive blog pages', 'ad-inserter'); ?>"><?php _e ('Tag / Archive pages', 'ad-inserter'); ?></label>
1024
  </td>
1025
+ <td id="exceptions-button-container-<?php echo $block; ?>" style="padding-left: 6px;">
1026
  <?php
1027
  if (!empty ($block_exceptions [$block])) {
1028
  ?>
1522
  <button id="id-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: none; outline: transparent; float: right; margin-top: 1px; width: 15px; height: 15px;" title="<?php _e ('Toggle post/page ID editor', 'ad-inserter'); ?>"></button>
1523
  </td>
1524
  <td style="padding-right: 7px;">
1525
+ <input id="id-list-<?php echo $block; ?>" class="ai-list-lowercase ai-list-custom" style="width: 100%;" title="<?php _e ('Comma separated post/page IDs', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_ID_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_id_list(); ?>" value="<?php echo $id_list; ?>" size="54" maxlength="2500"/>
1526
  </td>
1527
  <td style="padding-right: 7px;">
1528
  <input type="radio" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="id-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_id_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_id_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />
1548
  <button id="url-button-<?php echo $block; ?>" type="button" class='ai-button' style="display: none; outline: transparent; float: right; margin-top: 1px; width: 15px; height: 15px;" title="<?php _e ('Toggle url editor', 'ad-inserter'); ?>"></button>
1549
  </td>
1550
  <td style="padding-right: 7px;">
1551
+ <input id="url-list-<?php echo $block; ?>" class="ai-list-space ai-clean-protocol ai-clean-domain" style="width: 100%;" type="text" name="<?php echo AI_OPTION_URL_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_ad_url_list(); ?>" value="<?php echo $url_list; ?>" size="54" maxlength="2500" title="<?php _e ('Comma separated urls (page addresses) starting with / after domain name (e.g. /permalink-url, use only when you need to taget a specific url not accessible by other means). You can also use partial urls with * (/url-start*. *url-pattern*, *url-end)', 'ad-inserter'); ?>" />
1552
  </td>
1553
  <td style="padding-right: 7px;">
1554
  <input type="radio" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_url_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_url_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />
1857
  </span>
1858
  <span style="display: table-cell; padding-left: 10px;">
1859
  <?php _e('using', 'ad-inserter'); ?>
1860
+ <select id="filter-type-<?php echo $block; ?>" class="filter-type-select" style="padding-left: 10px; margin: 0 1px;" name="<?php echo AI_OPTION_FILTER_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_filter_type(); ?>">
1861
  <option value="<?php echo AI_FILTER_AUTO; ?>" <?php echo ($filter_type == AI_FILTER_AUTO) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_AUTO_COUNTER; ?></option>
1862
  <option value="<?php echo AI_FILTER_PHP_FUNCTION_CALLS; ?>" <?php echo ($filter_type == AI_FILTER_PHP_FUNCTION_CALLS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHP_FUNCTION_CALLS_COUNTER; ?></option>
1863
  <option value="<?php echo AI_FILTER_CONTENT_PROCESSING; ?>" <?php echo ($filter_type == AI_FILTER_CONTENT_PROCESSING) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_CONTENT_PROCESSING_COUNTER; ?></option>
1889
  </div>
1890
 
1891
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
1892
+ <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 580px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
1893
  <option value="<?php echo AI_SCHEDULING_OFF; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_OFF) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_IMMEDIATELY; ?></option>
1894
  <option value="<?php echo AI_SCHEDULING_DELAY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_DELAY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DELAY_INSERTION; ?></option>
1895
  <option value="<?php echo AI_SCHEDULING_INSERT_ONLY_FOR; ?>" <?php echo ($obj->get_scheduling() == AI_SCHEDULING_INSERT_ONLY_FOR) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_INSERT_ONLY; ?></option>
2351
  </div>
2352
 
2353
  <div id="device-detection-settings-h" class="rounded">
2354
+ <table>
2355
+ <tbody>
2356
+ <tr>
2357
+ <td>
2358
+ <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" value="0" />
2359
+ <input type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" id="server-side-detection-h" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($adH->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2360
+ <label for="server-side-detection-h"><?php _e ('Use server-side detection to insert code only for', 'ad-inserter'); ?> </label>
2361
+ <select id="display-for-devices-h" name="<?php echo AI_OPTION_DISPLAY_FOR_DEVICES, WP_FORM_FIELD_POSTFIX, AI_HEADER_OPTION_NAME; ?>" default="<?php echo $default->get_display_for_devices(); ?>" >
2362
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_DEVICES; ?></option>
2363
+ <option value="<?php echo AI_INSERT_FOR_MOBILE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_MOBILE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_MOBILE_DEVICES; ?></option>
2364
+ <option value="<?php echo AI_INSERT_FOR_TABLET_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TABLET_DEVICES; ?></option>
2365
+ <option value="<?php echo AI_INSERT_FOR_PHONE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHONE_DEVICES; ?></option>
2366
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_TABLET_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_TABLET_DEVICES; ?></option>
2367
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_PHONE_DEVICES; ?>" <?php echo ($adH->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_PHONE_DEVICES; ?></option>
2368
+ </select>
2369
+ </td>
2370
+ </tr>
2371
+ <tr>
2372
+ <td>
2373
+ <input type="hidden" name="<?php echo AI_OPTION_ENABLE_404, '_block_h'; ?>" value="0" />
2374
+ <input type="checkbox" name="<?php echo AI_OPTION_ENABLE_404, '_block_h'; ?>" id="enable-header-404" value="1" default="<?php echo $default->get_enable_404(); ?>" <?php if ($adH->get_enable_404 () == AI_ENABLED) echo 'checked '; ?> />
2375
+ <label for="enable-header-404" title="<?php _e ('Enable insertion of this code into HTML page header on page for Error 404: Page not found', 'ad-inserter'); ?>"><?php _e ('Insert on Error 404 page', 'ad-inserter'); ?></label>
2376
+ </td>
2377
+ </tr>
2378
+ </tbody>
2379
+ </table>
2380
  </div>
2381
  </div>
2382
 
2418
  </div>
2419
 
2420
  <div id="device-detection-settings-f" class="rounded">
 
 
 
 
 
 
 
 
 
 
 
2421
 
2422
+ <table>
2423
+ <tbody>
2424
+ <tr>
2425
+ <td>
2426
+ <input type="hidden" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" value="0" />
2427
+ <input type="checkbox" name="<?php echo AI_OPTION_DETECT_SERVER_SIDE, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" id="server-side-detection-f" value="1" default="<?php echo $default->get_detection_server_side(); ?>" <?php if ($adF->get_detection_server_side ()==AI_ENABLED) echo 'checked '; ?> />
2428
+ <label for="server-side-detection-f"><?php _e ('Use server-side detection to insert code only for', 'ad-inserter'); ?> </label>
2429
+ <select id="display-for-devices-f" name="<?php echo AI_OPTION_DISPLAY_FOR_DEVICES, WP_FORM_FIELD_POSTFIX, AI_FOOTER_OPTION_NAME; ?>" default="<?php echo $default->get_display_for_devices(); ?>" >
2430
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_DEVICES; ?></option>
2431
+ <option value="<?php echo AI_INSERT_FOR_MOBILE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_MOBILE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_MOBILE_DEVICES; ?></option>
2432
+ <option value="<?php echo AI_INSERT_FOR_TABLET_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_TABLET_DEVICES; ?></option>
2433
+ <option value="<?php echo AI_INSERT_FOR_PHONE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_PHONE_DEVICES; ?></option>
2434
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_TABLET_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_TABLET_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_TABLET_DEVICES; ?></option>
2435
+ <option value="<?php echo AI_INSERT_FOR_DESKTOP_PHONE_DEVICES; ?>" <?php echo ($adF->get_display_for_devices() == AI_INSERT_FOR_DESKTOP_PHONE_DEVICES) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DESKTOP_PHONE_DEVICES; ?></option>
2436
+ </select>
2437
+ </td>
2438
+ </tr>
2439
+ <tr>
2440
+ <td>
2441
+ <input type="hidden" name="<?php echo AI_OPTION_ENABLE_404, '_block_f'; ?>" value="0" />
2442
+ <input type="checkbox" name="<?php echo AI_OPTION_ENABLE_404, '_block_f'; ?>" id="enable-footer-404" value="1" default="<?php echo $default->get_enable_404(); ?>" <?php if ($adF->get_enable_404 () == AI_ENABLED) echo 'checked '; ?> />
2443
+ <label for="enable-footer-404" title="<?php _e ('Enable insertion of this code into HTML page footer on page for Error 404: Page not found', 'ad-inserter'); ?>"><?php _e ('Insert on Error 404 page', 'ad-inserter'); ?></label>
2444
+ </td>
2445
+ </tr>
2446
+ </tbody>
2447
+ </table>
2448
  </div>
2449
  </div>
2450
 
2830
 
2831
  $sidebar = 0;
2832
  $number_of_used_blocks = count ($used_blocks);
2833
+
2834
  if (isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL])) {
2835
  if ($ai_wp_data [AI_DAYS_SINCE_INSTAL] > 2)
2836
  $sidebar = 1;
2848
  $sidebar = 4;
2849
 
2850
  } else {
2851
+ if ($number_of_used_blocks >= 1) $sidebar = 4;
2852
  }
2853
 
2854
  // $sidebar = 0;
4329
  <div style="clear: both;"></div>
4330
  </div>
4331
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4332
+ <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-1.jpg" /></a>
4333
  </div>
4334
  <?php
4335
  break;
4434
  ); ?>
4435
  </div>
4436
  <div>
4437
+ <?php /* translators: %s: HTML tags */ printf (__('%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad code %s', 'ad-inserter'),
4438
  '<strong>',
4439
  '<a href="https://adinserter.pro/documentation/adsense-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4440
  '</a>',
4441
  '</strong>',
4442
  '<a href="https://adinserter.pro/documentation/adsense-ads#connect-your-site" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4443
  '</a>',
 
 
4444
  '<a href="https://adinserter.pro/documentation/adsense-ads#in-feed-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4445
  '</a>',
4446
  '<a href="https://adinserter.pro/documentation/adsense-ads#auto-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4447
  '</a>',
4448
  '<a href="https://adinserter.pro/documentation/adsense-ads#amp" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4449
+ '</a>',
4450
+ '<a href="https://adinserter.pro/documentation/infolinks-ads" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4451
+ '<strong>',
4452
+ '</strong>',
4453
  '</a>'
4454
  ); ?>
4455
 
4495
  <!-- <a href="https://adinserter.pro/" class="clear-link" title="Automate ad placement on posts and pages" target="_blank"><img id="ai-pro-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>icon-256x256.jpg" /></a>-->
4496
  <a href="https://www.ezoic.com/?utm_source=ad-inserter&utm_medium=ads&utm_campaign=ad-inserter-ads&utm_term=adinserter&utm_content=ezoic&loc=2" class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-ez-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ez-2.jpg" /></a>
4497
  <?php break; case 1: ?>
4498
+ <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
4499
  <?php break; case 2: ?>
4500
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>
4501
  <?php break; case 3: ?>
4502
+ <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
4503
  <?php break;
4504
  } ?>
4505
  </div>
4507
  <?php switch ($version) {
4508
  case 0:
4509
  ?>
4510
+ <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-3.jpg" /></a>
4511
  <?php break;
4512
  case 1:
4513
  ?>
4533
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-8" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-8.gif" /></a>
4534
  <?php break; case 2: ?>
4535
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
4536
+ <a href='https://www.infolinks.com/publishers/?kid=3114832&loc=2' class="clear-link" title="<?php _e ('Use Infolinks ads with Adsense to earn more', 'ad-inserter'); ?>" target="_blank"><img id="ai-info-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>info-2.jpg" /></a>
4537
  <?php break; case 3: ?>
4538
  <!-- <a href="https://adinserter.pro/documentation/black-and-white-lists#geo-targeting" class="clear-link" title="Geotargeting - black/white-list countries" target="_blank"><img id="ai-pro-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-countries-250.png" /></a>-->
4539
  <a href='https://www.media.net/program?ha=e9Pw4uwo2Uw/5xjjsB3lnYZZWUI+hzRSONzDaYA9EwX+3jg/PJYwFshOFEjop5NH2wRNDfr357ZTY1zlhCk7zw%3D%3D&loc=2' class="clear-link" title="<?php _e ('Looking for AdSense alternative?', 'ad-inserter'); ?>" target="_blank"><img id="ai-media-10" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-10.gif" /></a>
strings.php CHANGED
@@ -175,7 +175,8 @@ define ('AI_TEXT_FIXED', _x('Fixed', 'size', 'ad-inserter'));
175
  define ('AI_TEXT_RESPONSIVE', _x('Responsive', 'size', 'ad-inserter'));
176
  define ('AI_TEXT_FIXED_BY_VIEWPORT', _x('Fixed by viewport', 'size', 'ad-inserter'));
177
 
178
- define ('DEFAULT_REPORT_HEADER_TITLE', __('Ad Inserter Pro Report', 'ad-inserter'));
 
179
  define ('DEFAULT_REPORT_HEADER_DESCRIPTION', __('Impressions and clicks', 'ad-inserter'));
180
  define ('DEFAULT_REPORT_FOOTER', AD_INSERTER_NAME . ' '. __('Advanced WordPress Ad Management Plugin', 'ad-inserter') . ' https://adinserter.pro/');
181
 
175
  define ('AI_TEXT_RESPONSIVE', _x('Responsive', 'size', 'ad-inserter'));
176
  define ('AI_TEXT_FIXED_BY_VIEWPORT', _x('Fixed by viewport', 'size', 'ad-inserter'));
177
 
178
+ // Translators: %s: Ad Inserter Pro
179
+ define ('DEFAULT_REPORT_HEADER_TITLE', sprintf (__('%s Report', 'ad-inserter'), 'Ad Inserter Pro'));
180
  define ('DEFAULT_REPORT_HEADER_DESCRIPTION', __('Impressions and clicks', 'ad-inserter'));
181
  define ('DEFAULT_REPORT_FOOTER', AD_INSERTER_NAME . ' '. __('Advanced WordPress Ad Management Plugin', 'ad-inserter') . ' https://adinserter.pro/');
182