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

Version Description

  • Added support for shortcodes to disable block insertion
  • Added support for child taxonomy list items
  • Added random parameter to Ajax requests for geolocation (Pro only)
  • Added options to define external tracking event category, action and label (Pro only)
  • Number of custom hooks increased to 20
  • Fix to prevent insertion into head section when using Rank Math plugin
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

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

Code changes from version 2.6.2 to 2.6.3

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.6.2
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,15 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.6.2 - 2020-01-20
19
  - Added support to disable caching of block PHP code
20
  - Added support to pause blocks on the blocks list
@@ -642,7 +651,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
642
 
643
  case AI_CHECK_INDIVIDUALLY_DISABLED: $status .= "INDIVIDUALLY DISABLED"; break;
644
  case AI_CHECK_INDIVIDUALLY_ENABLED: $status .= "INDIVIDUALLY ENABLED"; break;
645
- case AI_CHECK_DISABLED_MANUALLY: $status .= "DISABLED BY HTML COMMENT"; break;
646
 
647
  case AI_CHECK_MAX_INSERTIONS: $status .= "MAX INSERTIONS " . $obj->get_maximum_insertions (); break;
648
  case AI_CHECK_MAX_PAGE_BLOCKS: $status .= "MAX PAGE BLOCKS " . get_max_page_blocks (); break;
@@ -769,7 +778,11 @@ function ai_loop_check ($query, $action) {
769
  if ($ai_wp_data [AI_WP_AMP_PAGE]) return true;
770
 
771
  if (isset ($query) && method_exists ($query, 'is_main_query')) {
772
- if ($query->is_main_query()) return true;
 
 
 
 
773
  }
774
 
775
  return false;
@@ -1203,6 +1216,11 @@ function ai_post_check ($post, $action) {
1203
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) return false;
1204
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) return false;
1205
 
 
 
 
 
 
1206
  // in_the_loop () is not used on AMP pages (however, AMP plugin uses it)
1207
  switch ($ai_wp_data [AI_WP_AMP_PAGE]) {
1208
  case true:
@@ -1325,6 +1343,56 @@ function ai_custom_hook_function_9 () {
1325
  ai_custom_hook ($ai_custom_hooks [9]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 9, $ai_custom_hooks [9]['name']);
1326
  }
1327
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1328
  function ai_wp_hook () {
1329
  global $ai_wp_data, $ai_db_options_extract, $ad_inserter_globals, $ai_total_plugin_time, $ai_walker, $ai_custom_hooks;
1330
 
@@ -1347,7 +1415,7 @@ function ai_wp_hook () {
1347
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_ADMIN &&
1348
  ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 &&
1349
  get_admin_toolbar_debugging () &&
1350
- (!is_multisite() || is_main_site () || multisite_settings_page_enabled () || current_user_can ('manage_network_plugins')))
1351
  add_action ('admin_bar_menu', 'ai_toolbar', 9920);
1352
 
1353
  $url_debugging = get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 || defined ('AI_DEBUGGING_DEMO');
@@ -1483,7 +1551,7 @@ function ai_wp_hook () {
1483
 
1484
  // Code for PHP VERSION < 5.3.0
1485
  foreach ($ai_custom_hooks as $index => $custom_hook) {
1486
- if ($index > 9) break;
1487
 
1488
  // Skip custom hooks on standard WP hooks - they will be processed anyway
1489
  switch ($custom_hook ['action']) {
@@ -1759,7 +1827,7 @@ function ai_wp_loaded_hook () {
1759
  function ai_admin_menu_hook () {
1760
  global $ai_settings_page;
1761
 
1762
- if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled () && !current_user_can ('manage_network_plugins')) return;
1763
 
1764
  // translators: %s: Ad Inserter
1765
  $ai_settings_page = add_submenu_page ('options-general.php', sprintf (__('%s Settings', 'ad-inserter'), AD_INSERTER_NAME), AD_INSERTER_NAME, 'manage_options', basename (__FILE__), 'ai_settings');
@@ -1890,6 +1958,14 @@ function ai_admin_remove_scripts ($hook_suffix) {
1890
  wp_dequeue_script ('custom_css_js');
1891
  wp_dequeue_script ('field-creator');
1892
  wp_dequeue_script ('amp_acf_field');
 
 
 
 
 
 
 
 
1893
  }
1894
  }
1895
 
@@ -2275,10 +2351,15 @@ function ai_replace_js_data ($js) {
2275
  $js = str_replace ('AI_HOME_URL', home_url (), $js);
2276
 
2277
  if (defined ('AI_STATISTICS') && AI_STATISTICS) {
2278
- $js = str_replace ('AI_INTERNAL_TRACKING', get_internal_tracking () == AI_ENABLED ? 1 : 0, $js);
2279
- $js = str_replace ('AI_EXTERNAL_TRACKING', get_external_tracking () == AI_ENABLED ? 1 : 0, $js);
2280
- $js = str_replace ('AI_TRACK_PAGEVIEWS', get_track_pageviews () == AI_TRACKING_ENABLED && $ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] ? 1 : 0, $js);
2281
- $js = str_replace ('AI_ADVANCED_CLICK_DETECTION', get_click_detection () == AI_CLICK_DETECTION_ADVANCED ? 1 : 0, $js);
 
 
 
 
 
2282
 
2283
  if (!isset ($ai_wp_data [AI_VIEWPORTS])) {
2284
  $viewports = array ();
@@ -2320,36 +2401,6 @@ function add_footer_inline_scripts () {
2320
 
2321
  $adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]);
2322
 
2323
- // Update also $footer_inline_scripts in ai_wp_enqueue_scripts_hook
2324
- // $footer_inline_scripts =
2325
- // get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW ||
2326
- // get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT ||
2327
- // isset ($ai_wp_data [AI_CLIENT_SIDE_ROTATION]) ||
2328
- // ($ai_wp_data [AI_TRACKING] && !isset ($ai_wp_data [AI_TRACKING_SHORTCODE_DISABLED])) ||
2329
- // $ai_wp_data [AI_STICKY_WIDGETS] ||
2330
- // $ai_wp_data [AI_STICK_TO_THE_CONTENT] ||
2331
- // $ai_wp_data [AI_ANIMATION] ||
2332
- // $ai_wp_data [AI_CLOSE_BUTTONS] ||
2333
- // $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
2334
- // $ai_wp_data [AI_LAZY_LOADING] ||
2335
- // $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
2336
- // $adb_code ||
2337
- // ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 ||
2338
- // $ai_wp_data [AI_FRONTEND_JS_DEBUGGING] ||
2339
- // $ai_wp_data [AI_CHECK_BLOCK] ||
2340
- // $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] != '';
2341
-
2342
- // if ($footer_inline_scripts && !wp_script_is ('jquery', 'done') && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2343
- // // Should not insert as it is forced in the header if jquery needed in the footer
2344
- // echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery.js'), "?ver=", $wp_version, "'></script>\n";
2345
- // echo "<script type='text/javascript' src='", includes_url ('js/jquery/jquery-migrate.min.js'), "?ver=", $wp_version, "'></script>\n";
2346
- // }
2347
-
2348
- // if ($ai_wp_data [AI_STICKY_WIDGETS] && get_sticky_widget_mode() == AI_STICKY_WIDGET_MODE_JS) {
2349
- //// echo "<script type='text/javascript' src='", plugins_url ('includes/js/ResizeSensor.min.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2350
- // echo "<script type='text/javascript' src='", plugins_url ('includes/js/theia-sticky-sidebar.min.js', __FILE__ ), "?ver=", AD_INSERTER_VERSION, "'></script>\n";
2351
- // }
2352
-
2353
  if ($adb_code) {
2354
  if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
2355
  echo '<!-- Code for ad blocking detection -->', "\n";
@@ -2621,7 +2672,7 @@ function ai_admin_notice_hook () {
2621
  }
2622
 
2623
  function ai_plugin_action_links ($links) {
2624
- if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled () && !current_user_can ('manage_network_plugins')) return $links;
2625
 
2626
  $settings_link = '<a href="'.admin_url ('options-general.php?page=ad-inserter.php').'">'._x('Settings', 'Menu item', 'ad-inserter') . '</a>';
2627
  array_unshift ($links, $settings_link);
@@ -3041,6 +3092,8 @@ function ai_wp_head_hook () {
3041
  $start_time = microtime (true);
3042
  }
3043
 
 
 
3044
  if (defined ('AI_BUFFERING')) {
3045
  if (get_output_buffering ()) {
3046
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
@@ -3106,22 +3159,6 @@ function ai_wp_head_hook () {
3106
  }
3107
 
3108
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3109
- // if (!get_disable_js_code () && $ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3110
- // if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= 96) {
3111
- // $obj = $block_object [$_GET ['ai-debug-code']];
3112
- // $block_name = $obj->number . ' &nbsp; ' . $obj->get_ad_name ();
3113
- // if (!$header->get_debug_disable_insertion ()) {
3114
- // $ai_wp_debugging = $ai_wp_data [AI_WP_DEBUGGING];
3115
- // $ai_wp_data [AI_WP_DEBUGGING] = 0;
3116
- // $code_for_insertion = $obj->get_code_for_insertion ();
3117
- // $ai_wp_data [AI_WP_DEBUGGING] = $ai_wp_debugging;
3118
- // } else $code_for_insertion = '';
3119
- // echo "<script>\n";
3120
- // echo " jQuery(document).ready(function($) {
3121
- // $('body').prepend (\"" . get_code_debug_block (' ' . $block_name, '', __('Code for insertion', 'ad-inserter') . ' ' . strlen ($code_for_insertion) . ' ' . _n('character', 'characters', strlen ($code_for_insertion), 'ad-inserter') . ' ', $obj->ai_getCode (), $code_for_insertion, true) . "\");
3122
- // });
3123
- // </script>\n";
3124
- // }
3125
  if ($ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3126
  if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= 96) {
3127
  $obj = $block_object [$_GET ['ai-debug-code']];
@@ -3139,56 +3176,15 @@ function ai_wp_head_hook () {
3139
  }
3140
 
3141
  if (!get_disable_js_code () && $ai_wp_data [AI_IFRAMES]) {
3142
- // echo "<script>\n";
3143
- // echo 'function ai_resize_iframe (iframe) {
3144
- // function getDocHeight (doc) {
3145
- // doc = doc || document;
3146
- // // from http://stackoverflow.com/questions/1145850/get-height-of-entire-document-with-javascript
3147
- // var body = doc.body, html = doc.documentElement;
3148
- // var height = Math.max (body.scrollHeight, body.offsetHeight, html.clientHeight, html.scrollHeight, html.offsetHeight);
3149
- // return height;
3150
- // }
3151
-
3152
- // function resizeIframe (iframe) {
3153
- // var doc = iframe.contentDocument ? iframe.contentDocument : iframe.contentWindow.document;
3154
- // iframe.style.visibility = "hidden";
3155
- // iframe.style.height = "10px"; // reset to minimal height ...
3156
- // // IE opt. for bing/msn needs a bit added or scrollbar appears
3157
- // iframe.style.height = getDocHeight (doc) + "px";
3158
- // iframe.style.visibility = "visible";
3159
- // }
3160
-
3161
- // if (typeof ai_iframe_resize_delay == "undefined") {
3162
- // ai_iframe_resize_delay = 200;
3163
- // }
3164
-
3165
- // setTimeout (function(){resizeIframe (iframe);}, ai_iframe_resize_delay);
3166
- //}
3167
- //';
3168
- // echo "</script>\n";
3169
-
3170
  echo "<script>\n", ai_get_js ('ai-iframes', false), "</script>\n";
3171
  }
3172
 
3173
  if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
3174
- // echo '<script>
3175
- // jQuery(document).ready(function($) {
3176
- // setTimeout (function(){$('body').prepend ("', get_page_type_debug_info (), '");}, 1);
3177
- // });
3178
- //</script>', "\n";
3179
  $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= ' setTimeout (function(){jQuery(\'body\').prepend ("' . get_page_type_debug_info () . '");}, 1);
3180
  ';
3181
  }
3182
 
3183
 
3184
- // if (!get_disable_js_code () && !get_disable_header_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !defined ('AI_DEBUGGING_DEMO')) {
3185
- // echo "<script>\n";
3186
- // echo " jQuery(document).ready(function($) {
3187
- // $('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '&lt;head&gt;...&lt;/head&gt;', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
3188
- // });
3189
- //</script>\n";
3190
- // }
3191
- // if (!get_disable_header_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !defined ('AI_DEBUGGING_DEMO')) {
3192
  if (!get_disable_header_code () && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3193
  $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '&lt;head&gt;...&lt;/head&gt;', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
3194
  ";
@@ -3199,17 +3195,6 @@ function ai_wp_head_hook () {
3199
 
3200
  // After Header code info
3201
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3202
- // if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
3203
- // // No scripts on AMP pages
3204
- // // if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_AD_BLOCKING_STATUS) != 0 && $ai_wp_data [AI_ADB_DETECTION] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3205
- // if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 && $ai_wp_data [AI_ADB_DETECTION] /*&& !$ai_wp_data [AI_WP_AMP_PAGE]*/) {
3206
- // echo "<script>
3207
- // jQuery(document).ready(function($) {
3208
- // $('body').prepend (\"", get_adb_status_debug_info () , "\");
3209
- // });
3210
- // </script>\n";
3211
- // }
3212
- // }
3213
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
3214
  // No scripts on AMP pages
3215
  if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 && $ai_wp_data [AI_ADB_DETECTION]) {
@@ -3219,50 +3204,12 @@ function ai_wp_head_hook () {
3219
  }
3220
  }
3221
 
3222
- // if (!get_disable_js_code () && defined ('AI_ADSENSE_OVERLAY') && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !(isset ($_GET ["hide-debug-labels"]) && $_GET ["hide-debug-labels"] == 1)) {
3223
- // echo "<script>\n";
3224
- // echo ai_get_js ('ai-ads');
3225
- // echo "</script>\n";
3226
- // }
3227
-
3228
- // if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0) {
3229
- // echo "<script>
3230
- //jQuery(window).on ('load', function () {
3231
- // setTimeout (function() {
3232
- //// var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
3233
- // var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
3234
- // google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">",
3235
- // __('Automatically placed by AdSense Auto ads code', 'ad-inserter'),
3236
- // "</section>');
3237
- // }, 50);
3238
- //});
3239
- //</script>\n";
3240
- // }
3241
-
3242
  if (!get_disable_js_code () && $ai_wp_data [AI_CODE_FOR_IFRAME]) {
3243
  echo '<script>', "\n", ai_front_translations_code (), '</script>', "\n";
3244
-
3245
- // $object_name = 'ai_front';
3246
- // $l10n = $ai_front_translations;
3247
-
3248
- // echo '<script type="text/javascript">
3249
- ///* <![CDATA[ */
3250
- //';
3251
-
3252
- // foreach ($l10n as $key => $value) {
3253
- // if (!is_scalar ($value)) continue;
3254
- // $l10n [$key] = html_entity_decode ((string) $value, ENT_QUOTES, 'UTF-8');
3255
- // }
3256
- // echo "var $object_name = " . wp_json_encode ($l10n) . ";\n";
3257
- // echo '/* ]]> */
3258
- //';
3259
- //// if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
3260
- //// echo 'var ai_debugging = true;', "\n";
3261
- //// }
3262
-
3263
- // echo '</script>', "\n";
3264
  }
3265
 
 
 
3266
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
3267
  $ai_total_plugin_time += microtime (true) - $start_time;
3268
  ai_log ("HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
@@ -3279,6 +3226,8 @@ function ai_amp_head_hook () {
3279
  $start_time = microtime (true);
3280
  }
3281
 
 
 
3282
  if (defined ('AI_BUFFERING')) {
3283
  if (get_output_buffering ()) {
3284
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX) {
@@ -3330,6 +3279,8 @@ function ai_amp_head_hook () {
3330
  }
3331
  }
3332
 
 
 
3333
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
3334
  $ai_total_plugin_time += microtime (true) - $start_time;
3335
  ai_log ("AMP HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
@@ -3669,8 +3620,16 @@ function ai_write_debug_info ($write_processing_log = false) {
3669
  switch ($ai_wp_data [AI_WP_PAGE_TYPE]) {
3670
  case AI_PT_STATIC:
3671
  case AI_PT_POST:
 
 
 
 
 
 
3672
  echo 'PUBLISHED: ', date ("Y-m-d H:i:s", get_the_date ('U')), "\n";
3673
- echo 'ID: ', get_the_ID(), "\n";
 
 
3674
  echo 'POST TYPE: ', get_post_type (), "\n";
3675
  $category_data = get_the_category();
3676
  $categories = array ();
@@ -3694,6 +3653,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3694
  $tags []= $tag->name . ' ('.$tag->slug.')';
3695
  }
3696
  echo 'TAGS: ', implode (', ', $tags), "\n";
 
3697
  $taxonomies = array ();
3698
  $taxonomy_names = get_post_taxonomies ();
3699
  foreach ($taxonomy_names as $taxonomy_name) {
@@ -3706,6 +3666,18 @@ function ai_write_debug_info ($write_processing_log = false) {
3706
  }
3707
  echo 'TAXONOMIES: ', implode (', ', $taxonomies), "\n";
3708
 
 
 
 
 
 
 
 
 
 
 
 
 
3709
  $post_meta = get_post_meta (get_the_ID());
3710
  $meta_string = array ();
3711
  foreach ($post_meta as $key => $post_meta_field) {
@@ -3713,7 +3685,6 @@ function ai_write_debug_info ($write_processing_log = false) {
3713
  $meta_string []= $key . ':' . $post_meta_field_item;
3714
  }
3715
  }
3716
- // echo 'POST META: ', implode (', ', $meta_string), "\n";
3717
  echo 'POST META: ', str_replace (array ("<!--", "-->", "\n", "\r"), array ("[!--", "--]", "*n", "*r"), implode (', ', $meta_string)), "\n";
3718
  break;
3719
  case AI_PT_CATEGORY:
@@ -3767,7 +3738,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3767
  $hook = $ai_custom_hook ['index'];
3768
  $enabled_custom_hooks [] = $ai_custom_hook ['action'];
3769
  }
3770
- for ($hook = 1; $hook <= 8; $hook ++) {
3771
  $name = str_replace (array ('&lt;', '&gt;'), array ('<', '>'), get_hook_name ($hook));
3772
  $action = get_hook_action ($hook);
3773
  if (get_hook_enabled ($hook) /*&& $name != '' && $action != ''*/) {
@@ -3824,6 +3795,9 @@ function ai_write_debug_info ($write_processing_log = false) {
3824
  echo 'ADMIN DISABLE CACHING: ', get_disable_caching () ? 'ENABLED' : 'DISABLED', "\n";
3825
  echo 'WAIT FOR JQUERY: ', get_wait_for_jquery () ? 'ENABLED' : 'DISABLED', "\n";
3826
  echo 'DO NOT CACHE CONSTANTS: ', defined ('DONOTCACHEPAGE') ? 'DONOTCACHEPAGE ' : '', defined ('DONOTCACHEOBJECT') ? 'DONOTCACHEOBJECT ' : '', defined ('DONOTCACHEDB') ? 'DONOTCACHEDB ' : '', "\n";
 
 
 
3827
  echo 'HEADER: ', $block_object [AI_HEADER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
3828
  echo 'FOOTER: ', $block_object [AI_FOOTER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
3829
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
@@ -4104,7 +4078,7 @@ function ai_write_debug_info ($write_processing_log = false) {
4104
  case 'the_excerpt':
4105
  case 'loop_start':
4106
  case 'loop_end':
4107
- case 'the_post':
4108
  continue 2;
4109
  }
4110
 
@@ -4144,7 +4118,7 @@ function ai_write_debug_info ($write_processing_log = false) {
4144
  case 'the_excerpt':
4145
  case 'loop_start':
4146
  case 'loop_end':
4147
- case 'the_post':
4148
  continue 2;
4149
  }
4150
 
@@ -4154,6 +4128,8 @@ function ai_write_debug_info ($write_processing_log = false) {
4154
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]))
4155
  echo "HTML ELEMENT: ", implode (", ", $ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]), "\n";
4156
 
 
 
4157
  if ($write_processing_log) {
4158
  echo "\nTIME EVENT\n";
4159
  echo "======================================\n";
@@ -4416,7 +4392,7 @@ function ai_check_plugin_options ($plugin_options = array ()) {
4416
  } else $plugin_options [$viewport_width_option_name] = '';
4417
  }
4418
 
4419
- for ($hook = 1; $hook <= 8; $hook ++) {
4420
  $hook_enabled_settins_name = 'HOOK_ENABLED_' . $hook;
4421
  $hook_name_settins_name = 'HOOK_NAME_' . $hook;
4422
  $hook_action_settins_name = 'HOOK_ACTION_' . $hook;
@@ -4886,6 +4862,7 @@ function multisite_settings_page_enabled () {
4886
  if ($ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] == '') $ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] = DEFAULT_MULTISITE_SETTINGS_PAGE;
4887
 
4888
  if (multisite_main_for_all_blogs ()) $ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] = AI_DISABLED;
 
4889
 
4890
  return ($ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE']);
4891
  }
@@ -5222,6 +5199,9 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5222
  elseif ($option == 'AD_LABEL' ||
5223
  $option == 'REPORT_HEADER_TITLE' ||
5224
  $option == 'REPORT_HEADER_DESCRIPTION' ||
 
 
 
5225
  $option == 'REPORT_FOOTER') {
5226
  $value = str_replace (array ("\\", "?"), "", $value);
5227
  $value = esc_html ($value);
@@ -5308,7 +5288,7 @@ function ai_ajax_backend () {
5308
  // check_ajax_referer ("adinserter_data", "ai_check");
5309
  check_admin_referer ("adinserter_data", "ai_check");
5310
 
5311
- if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled () && !current_user_can ('manage_network_plugins')) {
5312
  wp_die ();
5313
  }
5314
 
@@ -5491,10 +5471,11 @@ function ai_ajax_backend () {
5491
 
5492
  $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
5493
 
5494
- $start = trim ($_GET ["start"]);
5495
- $end = trim ($_GET ["end"]);
 
5496
 
5497
- code_block_list ($start, $end, $search_text, $show_all_blocks);
5498
  }
5499
 
5500
  elseif (isset ($_GET ["adsense-list"])) {
@@ -5603,7 +5584,7 @@ function ai_generate_extract (&$settings) {
5603
  $after_comments_hook_blocks = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5604
  $footer_hook_blocks = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5605
  $custom_hook_blocks = array ();
5606
- for ($custom_hook = 1; $custom_hook <= 8; $custom_hook ++) {
5607
  $custom_hook_blocks [] = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5608
  }
5609
 
@@ -5745,7 +5726,7 @@ function ai_generate_extract (&$settings) {
5745
  $footer_hook_blocks [AI_PT_ANY][]= $block;
5746
  break;
5747
  default:
5748
- if ($automatic_insertion >= AI_AUTOMATIC_INSERTION_CUSTOM_HOOK && $automatic_insertion < AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 8) {
5749
  $hook_index = $automatic_insertion - AI_AUTOMATIC_INSERTION_CUSTOM_HOOK;
5750
  foreach ($page_types as $block_page_type) $custom_hook_blocks [$hook_index][$block_page_type][]= $block;
5751
  $custom_hook_blocks [$hook_index][AI_PT_ANY][]= $block;
@@ -5810,7 +5791,7 @@ function ai_generate_extract (&$settings) {
5810
  $extract [AFTER_COMMENTS_HOOK_BLOCKS] = $after_comments_hook_blocks;
5811
  $extract [FOOTER_HOOK_BLOCKS] = $footer_hook_blocks;
5812
 
5813
- for ($custom_hook = 1; $custom_hook <= 8; $custom_hook ++) {
5814
  $action = get_hook_action ($custom_hook);
5815
 
5816
  if (get_hook_enabled ($custom_hook) && get_hook_name ($custom_hook) != '' && $action != '') {
@@ -5849,7 +5830,7 @@ function ai_load_settings () {
5849
  $extract_ok = ai_load_extract (false);
5850
 
5851
  $ai_custom_hooks = array ();
5852
- for ($hook = 1; $hook <= 8; $hook ++) {
5853
  $name = get_hook_name ($hook);
5854
  $action = get_hook_action ($hook);
5855
 
@@ -6111,6 +6092,8 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
6111
  .ai-debug-block.ai-debug-default {border-color: #e00; outline-color: #e00;}
6112
  .ai-debug-bar.ai-debug-default {background: #e00;}
6113
 
 
 
6114
  .ai-debug-block.ai-debug-viewport-invisible {border-color: #00f; outline-color: #00f;}
6115
  .ai-debug-bar.ai-debug-viewport-invisible {background: #00f;}
6116
 
@@ -6250,7 +6233,7 @@ function generate_selection_css () {
6250
  function ai_settings () {
6251
  global $ai_db_options, $block_object, $wpdb, $ai_db_options_extract;
6252
 
6253
- if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled () && !current_user_can ('manage_network_plugins')) return;
6254
 
6255
  if (!current_user_can ('manage_options')) {
6256
  return;
@@ -6514,7 +6497,7 @@ function ai_settings () {
6514
  if (isset ($_POST ['viewport-width-'.$viewport])) $options ['VIEWPORT_WIDTH_'.$viewport] = filter_option ('viewport_width', $_POST ['viewport-width-'.$viewport]);
6515
  }
6516
 
6517
- for ($hook = 1; $hook <= 8; $hook ++) {
6518
  if (isset ($_POST ['hook-enabled-'.$hook])) $options ['HOOK_ENABLED_'.$hook] = filter_option ('HOOK_ENABLED', $_POST ['hook-enabled-'.$hook]);
6519
  if (isset ($_POST ['hook-name-'.$hook])) $options ['HOOK_NAME_'.$hook] = filter_string_tags ($_POST ['hook-name-'.$hook]);
6520
  if (isset ($_POST ['hook-action-'.$hook])) $options ['HOOK_ACTION_'.$hook] = filter_string ($_POST ['hook-action-'.$hook]);
@@ -6803,6 +6786,9 @@ function ai_adinserter ($block_parameter = '', $ignore = '', &$block) {
6803
  if (!$obj->check_post_page_exceptions ($selected_blocks)) return "";
6804
  }
6805
 
 
 
 
6806
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
6807
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
6808
 
@@ -6938,8 +6924,10 @@ function ai_content_hook ($content = '') {
6938
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
6939
  if (!$obj->check_number_of_words ($content, $content_words)) continue;
6940
 
6941
- // Deprecated
6942
  $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
 
 
 
6943
  if ($obj->display_disabled ($content)) continue;
6944
 
6945
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
@@ -7141,8 +7129,10 @@ function ai_excerpt_hook ($content = '') {
7141
  if (!$obj->check_page_types_lists_users ()) continue;
7142
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
7143
 
7144
- // Deprecated
7145
  $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
 
 
 
7146
  if ($obj->display_disabled ($content)) continue;
7147
 
7148
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
@@ -7310,6 +7300,9 @@ function ai_comment_callback ($comment, $args, $depth) {
7310
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7311
  }
7312
 
 
 
 
7313
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7314
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7315
 
@@ -7427,6 +7420,9 @@ function ai_comment_end_callback ($comment, $args, $depth) {
7427
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7428
  }
7429
 
 
 
 
7430
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7431
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7432
 
@@ -7499,6 +7495,9 @@ function ai_comment_end_callback ($comment, $args, $depth) {
7499
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7500
  }
7501
 
 
 
 
7502
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7503
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7504
 
@@ -7623,6 +7622,9 @@ function ai_custom_hook ($action, $insertion_type, $name, $translated_name = '',
7623
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
7624
  if (!$obj->check_number_of_words ()) continue;
7625
 
 
 
 
7626
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7627
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7628
 
@@ -7704,6 +7706,7 @@ function ai_process_shortcode (&$block, $atts) {
7704
  "name" => "",
7705
  "group" => "",
7706
  "ignore" => "",
 
7707
  "check" => "",
7708
  "viewport" => "",
7709
  "adb" => "",
@@ -7846,6 +7849,19 @@ function ai_process_shortcode (&$block, $atts) {
7846
 
7847
  return '<span data-ai-groups="' . base64_encode (json_encode ($group_names)) . '"></span>';
7848
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
7849
 
7850
  if ($parameters ['custom-field'] != '') {
7851
  $custom_field_name = trim ($parameters ['custom-field']);
@@ -7986,6 +8002,9 @@ function ai_process_shortcode (&$block, $atts) {
7986
  }
7987
  }
7988
 
 
 
 
7989
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7990
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
7991
 
@@ -8178,6 +8197,9 @@ function ai_widget_draw ($args, $instance, &$block) {
8178
  if (!$obj->check_post_page_exceptions ($selected_blocks)) return;
8179
  }
8180
 
 
 
 
8181
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
8182
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return;
8183
 
@@ -8985,12 +9007,12 @@ function ai_strip_w3tc_markers ($code) {
8985
 
8986
  function ai_extract_debug_bar ($ai_code) {
8987
  if (preg_match ('#<section class=["\']ai-debug-bar.*?</section>#s', $ai_code, $match)) {
8988
- $debug_bar = str_replace ('ai-debug-default', '', $match [0]);
 
8989
 
8990
  if (preg_match ('#<pre class=["\']ai-w3tc-debug ai-w3tc-run.*?</pre>#s', $ai_code, $match)) {
8991
  $w3tc_debug = $match [0];
8992
- } else
8993
- $w3tc_debug = '';
8994
 
8995
  return '<section class="ai-debug-block">' . $debug_bar . $w3tc_debug . '</section><!-- AI-W3TC-LOG -->';
8996
  }
@@ -9081,9 +9103,6 @@ function ai_w3tc_execute_php ($code, &$ai_index, &$ai_fallback) {
9081
  preg_match_all ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', $code, $php_codes);
9082
  $html_codes = explode ('[?#?]', preg_replace ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', '[?#?]', $code));
9083
 
9084
- // $initial_ai_index = $ai_index;
9085
- // $initial_ai_fallback = $ai_fallback;
9086
-
9087
  ob_start ();
9088
 
9089
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
@@ -9109,10 +9128,6 @@ function ai_w3tc_execute_php ($code, &$ai_index, &$ai_fallback) {
9109
 
9110
  $html = ob_get_clean();
9111
 
9112
- // if ($ai_fallback === null) {
9113
- // $ai_fallback = $initial_ai_fallback;
9114
- // }
9115
-
9116
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
9117
  ai_w3tc_log_run (' EXECUTE END' . ' ['.(isset ($ai_fallback) ? $ai_fallback : '') . ',' . (isset ($ai_index) ? $ai_index : '').']');
9118
  }
@@ -9122,9 +9137,16 @@ function ai_w3tc_execute_php ($code, &$ai_index, &$ai_fallback) {
9122
 
9123
  function ai_get_post_id () {
9124
  $queried_object = get_queried_object ();
 
 
 
 
 
 
9125
  if ($queried_object) {
9126
- $post_id = $queried_object->ID;
9127
- } else $post_id = get_the_ID ();
 
9128
  return $post_id;
9129
  }
9130
 
@@ -9143,6 +9165,16 @@ function ai_post_is_in_child_categories ($category) {
9143
  return false;
9144
  }
9145
 
 
 
 
 
 
 
 
 
 
 
9146
  function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
9147
  global $ai_wp_data;
9148
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.6.3
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.6.3 - 2020-02-10
19
+ - Added support for shortcodes to disable block insertion
20
+ - Added support for child taxonomy list items
21
+ - Added random parameter to Ajax requests for geolocation (Pro only)
22
+ - Added options to define external tracking event category, action and label (Pro only)
23
+ - Number of custom hooks increased to 20
24
+ - Fix to prevent insertion into head section when using Rank Math plugin
25
+ - Few minor bug fixes, cosmetic changes and code improvements
26
+
27
  Ad Inserter 2.6.2 - 2020-01-20
28
  - Added support to disable caching of block PHP code
29
  - Added support to pause blocks on the blocks list
651
 
652
  case AI_CHECK_INDIVIDUALLY_DISABLED: $status .= "INDIVIDUALLY DISABLED"; break;
653
  case AI_CHECK_INDIVIDUALLY_ENABLED: $status .= "INDIVIDUALLY ENABLED"; break;
654
+ case AI_CHECK_DISABLED_MANUALLY: $status .= "DISABLED BY SHORTCODE"; break;
655
 
656
  case AI_CHECK_MAX_INSERTIONS: $status .= "MAX INSERTIONS " . $obj->get_maximum_insertions (); break;
657
  case AI_CHECK_MAX_PAGE_BLOCKS: $status .= "MAX PAGE BLOCKS " . get_max_page_blocks (); break;
778
  if ($ai_wp_data [AI_WP_AMP_PAGE]) return true;
779
 
780
  if (isset ($query) && method_exists ($query, 'is_main_query')) {
781
+ if ($query->is_main_query()) {
782
+ if (isset ($ai_wp_data [AI_HEAD]) && !$ai_wp_data [AI_HEAD]) {
783
+ return true;
784
+ }
785
+ }
786
  }
787
 
788
  return false;
1216
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_POST) return false;
1217
  if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_STATIC) return false;
1218
 
1219
+ // Don't use the hook before the wp_head hook ends
1220
+ if (!isset ($ai_wp_data [AI_HEAD]) || $ai_wp_data [AI_HEAD]) {
1221
+ return false;
1222
+ }
1223
+
1224
  // in_the_loop () is not used on AMP pages (however, AMP plugin uses it)
1225
  switch ($ai_wp_data [AI_WP_AMP_PAGE]) {
1226
  case true:
1343
  ai_custom_hook ($ai_custom_hooks [9]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 9, $ai_custom_hooks [9]['name']);
1344
  }
1345
 
1346
+ function ai_custom_hook_function_10 () {
1347
+ global $ai_custom_hooks;
1348
+ ai_custom_hook ($ai_custom_hooks [10]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 10, $ai_custom_hooks [10]['name']);
1349
+ }
1350
+
1351
+ function ai_custom_hook_function_11 () {
1352
+ global $ai_custom_hooks;
1353
+ ai_custom_hook ($ai_custom_hooks [11]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 11, $ai_custom_hooks [11]['name']);
1354
+ }
1355
+
1356
+ function ai_custom_hook_function_12 () {
1357
+ global $ai_custom_hooks;
1358
+ ai_custom_hook ($ai_custom_hooks [12]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 12, $ai_custom_hooks [12]['name']);
1359
+ }
1360
+
1361
+ function ai_custom_hook_function_13 () {
1362
+ global $ai_custom_hooks;
1363
+ ai_custom_hook ($ai_custom_hooks [13]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 13, $ai_custom_hooks [13]['name']);
1364
+ }
1365
+
1366
+ function ai_custom_hook_function_14 () {
1367
+ global $ai_custom_hooks;
1368
+ ai_custom_hook ($ai_custom_hooks [14]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 14, $ai_custom_hooks [14]['name']);
1369
+ }
1370
+
1371
+ function ai_custom_hook_function_15 () {
1372
+ global $ai_custom_hooks;
1373
+ ai_custom_hook ($ai_custom_hooks [15]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 15, $ai_custom_hooks [15]['name']);
1374
+ }
1375
+
1376
+ function ai_custom_hook_function_16 () {
1377
+ global $ai_custom_hooks;
1378
+ ai_custom_hook ($ai_custom_hooks [16]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 16, $ai_custom_hooks [16]['name']);
1379
+ }
1380
+
1381
+ function ai_custom_hook_function_17 () {
1382
+ global $ai_custom_hooks;
1383
+ ai_custom_hook ($ai_custom_hooks [17]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 17, $ai_custom_hooks [17]['name']);
1384
+ }
1385
+
1386
+ function ai_custom_hook_function_18 () {
1387
+ global $ai_custom_hooks;
1388
+ ai_custom_hook ($ai_custom_hooks [18]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 18, $ai_custom_hooks [18]['name']);
1389
+ }
1390
+
1391
+ function ai_custom_hook_function_19 () {
1392
+ global $ai_custom_hooks;
1393
+ ai_custom_hook ($ai_custom_hooks [19]['action'], AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 19, $ai_custom_hooks [19]['name']);
1394
+ }
1395
+
1396
  function ai_wp_hook () {
1397
  global $ai_wp_data, $ai_db_options_extract, $ad_inserter_globals, $ai_total_plugin_time, $ai_walker, $ai_custom_hooks;
1398
 
1415
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_ADMIN &&
1416
  ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 &&
1417
  get_admin_toolbar_debugging () &&
1418
+ (!is_multisite() || is_main_site () || multisite_settings_page_enabled ()))
1419
  add_action ('admin_bar_menu', 'ai_toolbar', 9920);
1420
 
1421
  $url_debugging = get_remote_debugging () || ($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0 || defined ('AI_DEBUGGING_DEMO');
1551
 
1552
  // Code for PHP VERSION < 5.3.0
1553
  foreach ($ai_custom_hooks as $index => $custom_hook) {
1554
+ if ($index >= 20) break;
1555
 
1556
  // Skip custom hooks on standard WP hooks - they will be processed anyway
1557
  switch ($custom_hook ['action']) {
1827
  function ai_admin_menu_hook () {
1828
  global $ai_settings_page;
1829
 
1830
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) return;
1831
 
1832
  // translators: %s: Ad Inserter
1833
  $ai_settings_page = add_submenu_page ('options-general.php', sprintf (__('%s Settings', 'ad-inserter'), AD_INSERTER_NAME), AD_INSERTER_NAME, 'manage_options', basename (__FILE__), 'ai_settings');
1958
  wp_dequeue_script ('custom_css_js');
1959
  wp_dequeue_script ('field-creator');
1960
  wp_dequeue_script ('amp_acf_field');
1961
+
1962
+ // Fix for WP Lightbox 2 plugin: remove styles loaded on Ad Inserter admin page
1963
+ wp_dequeue_style ('jquery-ui-style');
1964
+ wp_deregister_style ('jquery-ui-style');
1965
+
1966
+ // Fix for Widget Options plugin: remove styles loaded on Ad Inserter admin page
1967
+ wp_dequeue_style ('widgetopts-jquery-ui');
1968
+ wp_deregister_style ('widgetopts-jquery-ui');
1969
  }
1970
  }
1971
 
2351
  $js = str_replace ('AI_HOME_URL', home_url (), $js);
2352
 
2353
  if (defined ('AI_STATISTICS') && AI_STATISTICS) {
2354
+ $js = str_replace ('AI_INTERNAL_TRACKING', get_internal_tracking () == AI_ENABLED ? 1 : 0, $js);
2355
+ $js = str_replace ('AI_EXTERNAL_TRACKING', get_external_tracking () == AI_ENABLED ? 1 : 0, $js);
2356
+
2357
+ $js = str_replace ('AI_EXT_CATEGORY', get_external_tracking_category (), $js);
2358
+ $js = str_replace ('AI_EXT_ACTION', get_external_tracking_action (), $js);
2359
+ $js = str_replace ('AI_EXT_LABEL', get_external_tracking_label (), $js);
2360
+
2361
+ $js = str_replace ('AI_TRACK_PAGEVIEWS', get_track_pageviews () == AI_TRACKING_ENABLED && $ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] ? 1 : 0, $js);
2362
+ $js = str_replace ('AI_ADVANCED_CLICK_DETECTION', get_click_detection () == AI_CLICK_DETECTION_ADVANCED ? 1 : 0, $js);
2363
 
2364
  if (!isset ($ai_wp_data [AI_VIEWPORTS])) {
2365
  $viewports = array ();
2401
 
2402
  $adb_code = defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]);
2403
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2404
  if ($adb_code) {
2405
  if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
2406
  echo '<!-- Code for ad blocking detection -->', "\n";
2672
  }
2673
 
2674
  function ai_plugin_action_links ($links) {
2675
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) return $links;
2676
 
2677
  $settings_link = '<a href="'.admin_url ('options-general.php?page=ad-inserter.php').'">'._x('Settings', 'Menu item', 'ad-inserter') . '</a>';
2678
  array_unshift ($links, $settings_link);
3092
  $start_time = microtime (true);
3093
  }
3094
 
3095
+ $ai_wp_data [AI_HEAD] = true;
3096
+
3097
  if (defined ('AI_BUFFERING')) {
3098
  if (get_output_buffering ()) {
3099
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3159
  }
3160
 
3161
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3162
  if ($ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3163
  if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= 96) {
3164
  $obj = $block_object [$_GET ['ai-debug-code']];
3176
  }
3177
 
3178
  if (!get_disable_js_code () && $ai_wp_data [AI_IFRAMES]) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3179
  echo "<script>\n", ai_get_js ('ai-iframes', false), "</script>\n";
3180
  }
3181
 
3182
  if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_POSITIONS) != 0) {
 
 
 
 
 
3183
  $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= ' setTimeout (function(){jQuery(\'body\').prepend ("' . get_page_type_debug_info () . '");}, 1);
3184
  ';
3185
  }
3186
 
3187
 
 
 
 
 
 
 
 
 
3188
  if (!get_disable_header_code () && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3189
  $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend (\"" . get_code_debug_block (' ' . __('Header code', 'ad-inserter') . ' ' . ($header->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Header code', 'ad-inserter')), '&lt;head&gt;...&lt;/head&gt;', strlen ($header_code) . ' ' . _n('character inserted', 'characters inserted', strlen ($header_code), 'ad-inserter') . ' ', $header->ai_getCode (), $header_code, true) . "\");
3190
  ";
3195
 
3196
  // After Header code info
3197
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
 
 
 
 
 
 
 
 
 
 
 
3198
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
3199
  // No scripts on AMP pages
3200
  if (($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_AD_BLOCKING_STATUS | AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 && $ai_wp_data [AI_ADB_DETECTION]) {
3204
  }
3205
  }
3206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3207
  if (!get_disable_js_code () && $ai_wp_data [AI_CODE_FOR_IFRAME]) {
3208
  echo '<script>', "\n", ai_front_translations_code (), '</script>', "\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3209
  }
3210
 
3211
+ $ai_wp_data [AI_HEAD] = false;
3212
+
3213
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
3214
  $ai_total_plugin_time += microtime (true) - $start_time;
3215
  ai_log ("HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
3226
  $start_time = microtime (true);
3227
  }
3228
 
3229
+ $ai_wp_data [AI_HEAD] = true;
3230
+
3231
  if (defined ('AI_BUFFERING')) {
3232
  if (get_output_buffering ()) {
3233
  if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX) {
3279
  }
3280
  }
3281
 
3282
+ $ai_wp_data [AI_HEAD] = false;
3283
+
3284
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
3285
  $ai_total_plugin_time += microtime (true) - $start_time;
3286
  ai_log ("AMP HEAD HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
3620
  switch ($ai_wp_data [AI_WP_PAGE_TYPE]) {
3621
  case AI_PT_STATIC:
3622
  case AI_PT_POST:
3623
+ $queried_object_id = '';
3624
+ $queried_object = get_queried_object ();
3625
+ if ($queried_object) {
3626
+ $queried_object_id = $queried_object->ID;
3627
+ }
3628
+
3629
  echo 'PUBLISHED: ', date ("Y-m-d H:i:s", get_the_date ('U')), "\n";
3630
+ echo 'ID: ', ai_get_post_id ();
3631
+ echo " (get_the_ID: ", get_the_ID (), ", get_queried_object: ", $queried_object_id, ")";
3632
+ echo "\n";
3633
  echo 'POST TYPE: ', get_post_type (), "\n";
3634
  $category_data = get_the_category();
3635
  $categories = array ();
3653
  $tags []= $tag->name . ' ('.$tag->slug.')';
3654
  }
3655
  echo 'TAGS: ', implode (', ', $tags), "\n";
3656
+
3657
  $taxonomies = array ();
3658
  $taxonomy_names = get_post_taxonomies ();
3659
  foreach ($taxonomy_names as $taxonomy_name) {
3666
  }
3667
  echo 'TAXONOMIES: ', implode (', ', $taxonomies), "\n";
3668
 
3669
+ $taxonomy_data = get_taxonomies ();
3670
+ $taxonomies = array ();
3671
+ foreach ($taxonomy_data as $taxonomy) {
3672
+ $terms = get_terms ($taxonomy);
3673
+ foreach ($terms as $term) {
3674
+ if (ai_post_is_in_child_taxonomies ($taxonomy, $term->slug)) {
3675
+ $taxonomies []= $term->name . ' ('.$taxonomy.':'.$term->slug.')';
3676
+ }
3677
+ }
3678
+ }
3679
+ echo 'PARENT TAXONOMIES: ', implode (', ', $taxonomies), "\n";
3680
+
3681
  $post_meta = get_post_meta (get_the_ID());
3682
  $meta_string = array ();
3683
  foreach ($post_meta as $key => $post_meta_field) {
3685
  $meta_string []= $key . ':' . $post_meta_field_item;
3686
  }
3687
  }
 
3688
  echo 'POST META: ', str_replace (array ("<!--", "-->", "\n", "\r"), array ("[!--", "--]", "*n", "*r"), implode (', ', $meta_string)), "\n";
3689
  break;
3690
  case AI_PT_CATEGORY:
3738
  $hook = $ai_custom_hook ['index'];
3739
  $enabled_custom_hooks [] = $ai_custom_hook ['action'];
3740
  }
3741
+ for ($hook = 1; $hook <= 20; $hook ++) {
3742
  $name = str_replace (array ('&lt;', '&gt;'), array ('<', '>'), get_hook_name ($hook));
3743
  $action = get_hook_action ($hook);
3744
  if (get_hook_enabled ($hook) /*&& $name != '' && $action != ''*/) {
3795
  echo 'ADMIN DISABLE CACHING: ', get_disable_caching () ? 'ENABLED' : 'DISABLED', "\n";
3796
  echo 'WAIT FOR JQUERY: ', get_wait_for_jquery () ? 'ENABLED' : 'DISABLED', "\n";
3797
  echo 'DO NOT CACHE CONSTANTS: ', defined ('DONOTCACHEPAGE') ? 'DONOTCACHEPAGE ' : '', defined ('DONOTCACHEOBJECT') ? 'DONOTCACHEOBJECT ' : '', defined ('DONOTCACHEDB') ? 'DONOTCACHEDB ' : '', "\n";
3798
+ $virtual_ads_txt = get_option (AI_ADS_TXT_NAME);
3799
+ $virtual_ads_txt_lines = explode ("\n", $virtual_ads_txt);
3800
+ echo 'VIRTUAL ADS.TXT: ', $virtual_ads_txt !== false ? count ($virtual_ads_txt_lines). ' LINES' : 'NOT USED', "\n";
3801
  echo 'HEADER: ', $block_object [AI_HEADER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
3802
  echo 'FOOTER: ', $block_object [AI_FOOTER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
3803
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
4078
  case 'the_excerpt':
4079
  case 'loop_start':
4080
  case 'loop_end':
4081
+ // case 'the_post':
4082
  continue 2;
4083
  }
4084
 
4118
  case 'the_excerpt':
4119
  case 'loop_start':
4120
  case 'loop_end':
4121
+ // case 'the_post':
4122
  continue 2;
4123
  }
4124
 
4128
  if (isset ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]) && count ($ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]))
4129
  echo "HTML ELEMENT: ", implode (", ", $ai_db_options_extract [HTML_ELEMENT_HOOK_BLOCKS][$ai_wp_data [AI_WP_PAGE_TYPE]]), "\n";
4130
 
4131
+ echo "\nDISABLED BLOCKS: ", isset ($ai_wp_data [AI_DISABLED_BLOCKS]) ? implode (', ', $ai_wp_data [AI_DISABLED_BLOCKS]) : '', "\n";
4132
+
4133
  if ($write_processing_log) {
4134
  echo "\nTIME EVENT\n";
4135
  echo "======================================\n";
4392
  } else $plugin_options [$viewport_width_option_name] = '';
4393
  }
4394
 
4395
+ for ($hook = 1; $hook <= 20; $hook ++) {
4396
  $hook_enabled_settins_name = 'HOOK_ENABLED_' . $hook;
4397
  $hook_name_settins_name = 'HOOK_NAME_' . $hook;
4398
  $hook_action_settins_name = 'HOOK_ACTION_' . $hook;
4862
  if ($ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] == '') $ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] = DEFAULT_MULTISITE_SETTINGS_PAGE;
4863
 
4864
  if (multisite_main_for_all_blogs ()) $ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] = AI_DISABLED;
4865
+ elseif (current_user_can ('manage_network_plugins')) $ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE'] = AI_ENABLED;
4866
 
4867
  return ($ai_db_options_multisite ['MULTISITE_SETTINGS_PAGE']);
4868
  }
5199
  elseif ($option == 'AD_LABEL' ||
5200
  $option == 'REPORT_HEADER_TITLE' ||
5201
  $option == 'REPORT_HEADER_DESCRIPTION' ||
5202
+ $option == 'EXTERNAL_TRACKING_CATEGORY' ||
5203
+ $option == 'EXTERNAL_TRACKING_ACTION' ||
5204
+ $option == 'EXTERNAL_TRACKING_LABEL' ||
5205
  $option == 'REPORT_FOOTER') {
5206
  $value = str_replace (array ("\\", "?"), "", $value);
5207
  $value = esc_html ($value);
5288
  // check_ajax_referer ("adinserter_data", "ai_check");
5289
  check_admin_referer ("adinserter_data", "ai_check");
5290
 
5291
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) {
5292
  wp_die ();
5293
  }
5294
 
5471
 
5472
  $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
5473
 
5474
+ $start = trim ($_GET ["start"]);
5475
+ $end = trim ($_GET ["end"]);
5476
+ $active = trim ($_GET ["active"]);
5477
 
5478
+ code_block_list ($start, $end, $search_text, $show_all_blocks, $active);
5479
  }
5480
 
5481
  elseif (isset ($_GET ["adsense-list"])) {
5584
  $after_comments_hook_blocks = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5585
  $footer_hook_blocks = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5586
  $custom_hook_blocks = array ();
5587
+ for ($custom_hook = 1; $custom_hook <= 20; $custom_hook ++) {
5588
  $custom_hook_blocks [] = array (AI_PT_ANY => array (), AI_PT_HOMEPAGE => array(), AI_PT_CATEGORY => array(), AI_PT_SEARCH => array(), AI_PT_ARCHIVE => array(), AI_PT_STATIC => array(), AI_PT_POST => array(), AI_PT_404 => array(), AI_PT_FEED => array(), AI_PT_AJAX => array());
5589
  }
5590
 
5726
  $footer_hook_blocks [AI_PT_ANY][]= $block;
5727
  break;
5728
  default:
5729
+ if ($automatic_insertion >= AI_AUTOMATIC_INSERTION_CUSTOM_HOOK && $automatic_insertion < AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 20) {
5730
  $hook_index = $automatic_insertion - AI_AUTOMATIC_INSERTION_CUSTOM_HOOK;
5731
  foreach ($page_types as $block_page_type) $custom_hook_blocks [$hook_index][$block_page_type][]= $block;
5732
  $custom_hook_blocks [$hook_index][AI_PT_ANY][]= $block;
5791
  $extract [AFTER_COMMENTS_HOOK_BLOCKS] = $after_comments_hook_blocks;
5792
  $extract [FOOTER_HOOK_BLOCKS] = $footer_hook_blocks;
5793
 
5794
+ for ($custom_hook = 1; $custom_hook <= 20; $custom_hook ++) {
5795
  $action = get_hook_action ($custom_hook);
5796
 
5797
  if (get_hook_enabled ($custom_hook) && get_hook_name ($custom_hook) != '' && $action != '') {
5830
  $extract_ok = ai_load_extract (false);
5831
 
5832
  $ai_custom_hooks = array ();
5833
+ for ($hook = 1; $hook <= 20; $hook ++) {
5834
  $name = get_hook_name ($hook);
5835
  $action = get_hook_action ($hook);
5836
 
6092
  .ai-debug-block.ai-debug-default {border-color: #e00; outline-color: #e00;}
6093
  .ai-debug-bar.ai-debug-default {background: #e00;}
6094
 
6095
+ .ai-debug-bar.ai-debug-no-wrapping kbd {color: #ff0;}
6096
+
6097
  .ai-debug-block.ai-debug-viewport-invisible {border-color: #00f; outline-color: #00f;}
6098
  .ai-debug-bar.ai-debug-viewport-invisible {background: #00f;}
6099
 
6233
  function ai_settings () {
6234
  global $ai_db_options, $block_object, $wpdb, $ai_db_options_extract;
6235
 
6236
+ if (is_multisite() && !is_main_site () && !multisite_settings_page_enabled ()) return;
6237
 
6238
  if (!current_user_can ('manage_options')) {
6239
  return;
6497
  if (isset ($_POST ['viewport-width-'.$viewport])) $options ['VIEWPORT_WIDTH_'.$viewport] = filter_option ('viewport_width', $_POST ['viewport-width-'.$viewport]);
6498
  }
6499
 
6500
+ for ($hook = 1; $hook <= 20; $hook ++) {
6501
  if (isset ($_POST ['hook-enabled-'.$hook])) $options ['HOOK_ENABLED_'.$hook] = filter_option ('HOOK_ENABLED', $_POST ['hook-enabled-'.$hook]);
6502
  if (isset ($_POST ['hook-name-'.$hook])) $options ['HOOK_NAME_'.$hook] = filter_string_tags ($_POST ['hook-name-'.$hook]);
6503
  if (isset ($_POST ['hook-action-'.$hook])) $options ['HOOK_ACTION_'.$hook] = filter_string ($_POST ['hook-action-'.$hook]);
6786
  if (!$obj->check_post_page_exceptions ($selected_blocks)) return "";
6787
  }
6788
 
6789
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
6790
+ if (!$obj->check_disabled ()) return "";
6791
+
6792
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
6793
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
6794
 
6924
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
6925
  if (!$obj->check_number_of_words ($content, $content_words)) continue;
6926
 
 
6927
  $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
6928
+ if (!$obj->check_disabled ()) continue;
6929
+
6930
+ // Deprecated
6931
  if ($obj->display_disabled ($content)) continue;
6932
 
6933
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7129
  if (!$obj->check_page_types_lists_users ()) continue;
7130
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
7131
 
 
7132
  $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
7133
+ if (!$obj->check_disabled ()) continue;
7134
+
7135
+ // Deprecated
7136
  if ($obj->display_disabled ($content)) continue;
7137
 
7138
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7300
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7301
  }
7302
 
7303
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
7304
+ if (!$obj->check_disabled ()) continue;
7305
+
7306
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7307
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7308
 
7420
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7421
  }
7422
 
7423
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
7424
+ if (!$obj->check_disabled ()) continue;
7425
+
7426
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7427
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7428
 
7495
  if (!$obj->check_post_page_exceptions ($selected_blocks)) continue;
7496
  }
7497
 
7498
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
7499
+ if (!$obj->check_disabled ()) continue;
7500
+
7501
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7502
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7503
 
7622
  if (!$obj->check_filter ($ad_inserter_globals [$globals_name])) continue;
7623
  if (!$obj->check_number_of_words ()) continue;
7624
 
7625
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
7626
+ if (!$obj->check_disabled ()) continue;
7627
+
7628
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
7629
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) continue;
7630
 
7706
  "name" => "",
7707
  "group" => "",
7708
  "ignore" => "",
7709
+ "disable" => "",
7710
  "check" => "",
7711
  "viewport" => "",
7712
  "adb" => "",
7849
 
7850
  return '<span data-ai-groups="' . base64_encode (json_encode ($group_names)) . '"></span>';
7851
  }
7852
+ if ($parameters ['disable'] != '' || in_array ('DISABLE', $atts) || in_array ('disable', $atts)) {
7853
+ if (!isset ($ai_wp_data [AI_DISABLED_BLOCKS])) $ai_wp_data [AI_DISABLED_BLOCKS] = array ();
7854
+
7855
+ $shortcode_disabled = explode (',', strtolower (str_replace (' ', '', $parameters ['disable'])));
7856
+ $ai_wp_data [AI_DISABLED_BLOCKS] = array_unique (array_merge ($ai_wp_data [AI_DISABLED_BLOCKS], $shortcode_disabled));
7857
+
7858
+ $debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
7859
+ if ($debug_processing) {
7860
+ ai_log ('DISABLED BLOCKS: ' . implode (', ', $ai_wp_data [AI_DISABLED_BLOCKS]));
7861
+ }
7862
+
7863
+ return '';
7864
+ }
7865
 
7866
  if ($parameters ['custom-field'] != '') {
7867
  $custom_field_name = trim ($parameters ['custom-field']);
8002
  }
8003
  }
8004
 
8005
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
8006
+ if (!$obj->check_disabled ()) return "";
8007
+
8008
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
8009
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return "";
8010
 
8197
  if (!$obj->check_post_page_exceptions ($selected_blocks)) return;
8198
  }
8199
 
8200
+ $ai_last_check = AI_CHECK_DISABLED_MANUALLY;
8201
+ if (!$obj->check_disabled ()) return;
8202
+
8203
  $ai_last_check = AI_CHECK_INSERTION_NOT_DISABLED;
8204
  if ($obj->get_disable_insertion () || get_disable_block_insertions ()) return;
8205
 
9007
 
9008
  function ai_extract_debug_bar ($ai_code) {
9009
  if (preg_match ('#<section class=["\']ai-debug-bar.*?</section>#s', $ai_code, $match)) {
9010
+ $debug_bar = str_replace (array ('ai-debug-default', 'debug-viewport-invisible'), '', $match [0]);
9011
+ $debug_bar = preg_replace ('#<kbd class=["\']ai-debug-text-center["\']>(.*?)<kbd#s', '<kbd class="ai-debug-text-center"><kbd', $debug_bar);
9012
 
9013
  if (preg_match ('#<pre class=["\']ai-w3tc-debug ai-w3tc-run.*?</pre>#s', $ai_code, $match)) {
9014
  $w3tc_debug = $match [0];
9015
+ } else $w3tc_debug = '';
 
9016
 
9017
  return '<section class="ai-debug-block">' . $debug_bar . $w3tc_debug . '</section><!-- AI-W3TC-LOG -->';
9018
  }
9103
  preg_match_all ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', $code, $php_codes);
9104
  $html_codes = explode ('[?#?]', preg_replace ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', '[?#?]', $code));
9105
 
 
 
 
9106
  ob_start ();
9107
 
9108
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
9128
 
9129
  $html = ob_get_clean();
9130
 
 
 
 
 
9131
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
9132
  ai_w3tc_log_run (' EXECUTE END' . ' ['.(isset ($ai_fallback) ? $ai_fallback : '') . ',' . (isset ($ai_index) ? $ai_index : '').']');
9133
  }
9137
 
9138
  function ai_get_post_id () {
9139
  $queried_object = get_queried_object ();
9140
+ $post_id = get_the_ID ();
9141
+
9142
+ if ($queried_object && $post_id) {
9143
+ return $post_id;
9144
+ }
9145
+
9146
  if ($queried_object) {
9147
+ return $queried_object->ID;
9148
+ }
9149
+
9150
  return $post_id;
9151
  }
9152
 
9165
  return false;
9166
  }
9167
 
9168
+ function ai_post_is_in_child_taxonomies ($taxonomy, $term) {
9169
+ $taxonomy_to_check = get_term_by ('slug', $term, $taxonomy);
9170
+ if ($taxonomy_to_check) {
9171
+ $post_id = ai_get_post_id ();
9172
+ $children = get_term_children ($taxonomy_to_check->term_id, $taxonomy);
9173
+ if ($children && has_term ($children, $taxonomy, $post_id)) return true;
9174
+ }
9175
+ return false;
9176
+ }
9177
+
9178
  function ai_process_viewport_separators ($code, $viewport_shortcode_data) {
9179
  global $ai_wp_data;
9180
 
class.php CHANGED
@@ -856,7 +856,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
856
  return AI_TEXT_AFTER_HTML_ELEMENT;
857
  break;
858
  default:
859
- if ($automatic_insertion >= AI_AUTOMATIC_INSERTION_CUSTOM_HOOK && $automatic_insertion < AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 8) {
860
  $hook_index = $automatic_insertion - AI_AUTOMATIC_INSERTION_CUSTOM_HOOK;
861
  return get_hook_name ($hook_index + 1);
862
  }
@@ -1125,13 +1125,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1125
 
1126
  $sticky_parameters = '';
1127
 
1128
- // $custom_sticky_css = false;
1129
- // if ($this->get_alignment_type () == AI_ALIGNMENT_CUSTOM_CSS) {
1130
- // $clean_custom_css_code = str_replace (' ', '', $this->get_custom_css ());
1131
- // if (strpos ($clean_custom_css_code, 'position:fixed') !== false && strpos ($clean_custom_css_code, 'z-index:') !== false) $custom_sticky_css = true;
1132
- // }
1133
-
1134
- // if ($this->get_alignment_type () == AI_ALIGNMENT_STICKY || $custom_sticky_css) {
1135
  if ($this->is_sticky ()) {
1136
 
1137
  $stick_to_the_content_class = $this->stick_to_the_content_class ();
@@ -2108,13 +2101,13 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2108
  }
2109
 
2110
  foreach ($ai_custom_hooks as $index => $custom_hook) {
2111
- if ($index > 9) break;
2112
 
2113
  $globals_name = 'AI_' . strtoupper ($custom_hook ['action']) . '_' . (AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + $index) . '_COUNTER';
2114
  if (isset ($ad_inserter_globals [$globals_name]) && $ai_wp_data [AI_CONTEXT] == AI_CONTEXT_CUSTOM_HOOK + $index) {
2115
- $counters .= ' H'.$index.'='.$ad_inserter_globals [$globals_name];
2116
  // Translators: %s: custom hook name
2117
- $title .= ' H'.$index.' = ' . sprintf (__('Custom hook %s call', 'ad-inserter'), $custom_hook ['name']) . ', ';
2118
  }
2119
  }
2120
 
@@ -2167,7 +2160,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2167
  }
2168
 
2169
  if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING) {
2170
- $this->labels->class = '';
2171
  }
2172
 
2173
  $counters = $this->ai_get_counters ($right_title);
@@ -3205,15 +3198,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3205
 
3206
  $this->w3tc_code .= 'if (strpos ($ai_code, $ai_head_separator) !== false) {$codes = explode ($ai_head_separator, $ai_code); $ai_code = trim ($codes [1]);} $ai_enabled = true;';
3207
 
3208
- // if ($additional_code != '') {
3209
- // $this->w3tc_code .= 'if ($ai_code != \'\') $ai_code = base64_decode (\''.base64_encode ($additional_code).'\') . $ai_code;';
3210
- // }
3211
-
3212
- // Lazy loading code for W3TC cases with ROTATE separator
3213
- // if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
3214
- // $this->w3tc_code .= $this->w3tc_code.'$ai_lazy_code = base64_encode ($ai_code); $ai_wrapper_class = \''.base64_encode (get_block_class_name (true)).'\'; $ai_code = \'<div class="ai-lazy" data-code="\'.$ai_lazy_code.\'" data-class="\'.$ai_wrapper_class.\'"></div>\'."\n";';
3215
- // }
3216
-
3217
  $processed_code = $this->generate_html_from_w3tc_code ();
3218
  break;
3219
  }
@@ -3250,9 +3234,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3250
  // LAZY LOADING
3251
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3252
  // Lazy loading code for all cases except W3TC with ROTATE separator
3253
- // if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE] && $this->w3tc_code == '') {
3254
- if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE] /*&& $this->w3tc_code == ''*/) {
3255
- // $lazy_code = base64_encode ($processed_code);
3256
 
3257
  if ($this->w3tc_code != '') {
3258
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
@@ -3334,9 +3316,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3334
  switch ($this->get_scheduling()) {
3335
  case AI_SCHEDULING_BETWEEN_DATES:
3336
  case AI_SCHEDULING_OUTSIDE_DATES:
3337
- $scheduling_start_time_raw = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
3338
  $scheduling_start_time = base64_encode ($scheduling_start_time_raw);
3339
- $scheduling_end_time_raw = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
3340
  $scheduling_end_time = base64_encode ($scheduling_end_time_raw);
3341
  $scheduling_days_in_week_raw = $this->get_schedule_weekdays ();
3342
  $scheduling_days_in_week = base64_encode ($scheduling_days_in_week_raw);
@@ -6557,6 +6539,21 @@ echo '</body>
6557
  return false;
6558
  }
6559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6560
  function check_category ($categories = null, $cat_type = AI_WHITE_LIST) {
6561
  global $ai_wp_data;
6562
 
@@ -6715,8 +6712,6 @@ echo '</body>
6715
  // if ($taxonomies == AD_EMPTY_DATA) return true;
6716
 
6717
  $taxonomies_listed = explode (",", $taxonomies);
6718
- $taxonomy_names = get_post_taxonomies ();
6719
-
6720
  foreach ($taxonomies_listed as $taxonomy_disabled) {
6721
  $taxonomy_disabled = trim ($taxonomy_disabled);
6722
 
@@ -6756,6 +6751,7 @@ echo '</body>
6756
  } else return true;
6757
  }
6758
 
 
6759
  foreach ($taxonomy_names as $taxonomy_name) {
6760
  $terms = get_the_terms (0, $taxonomy_name);
6761
  if (is_array ($terms)) {
@@ -6769,7 +6765,33 @@ echo '</body>
6769
  $post_taxonomy = strtolower ($term->taxonomy);
6770
  if ($post_taxonomy == $taxonomy_disabled) return false;
6771
 
6772
- if ($post_taxonomy . ':' . $post_term_slug == $taxonomy_disabled) return false;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6773
  }
6774
  }
6775
  }
@@ -6782,8 +6804,6 @@ echo '</body>
6782
  // if ($taxonomies == AD_EMPTY_DATA) return false;
6783
 
6784
  $taxonomies_listed = explode (",", $taxonomies);
6785
- $taxonomy_names = get_post_taxonomies ();
6786
-
6787
  foreach ($taxonomies_listed as $taxonomy_enabled) {
6788
  $taxonomy_enabled = trim ($taxonomy_enabled);
6789
 
@@ -6823,6 +6843,7 @@ echo '</body>
6823
  } else return false;
6824
  }
6825
 
 
6826
  foreach ($taxonomy_names as $taxonomy_name) {
6827
  $terms = get_the_terms (0, $taxonomy_name);
6828
  if (is_array ($terms)) {
@@ -6836,7 +6857,33 @@ echo '</body>
6836
  $post_taxonomy = strtolower ($term->taxonomy);
6837
  if ($post_taxonomy == $taxonomy_enabled) return true;
6838
 
6839
- if ($post_taxonomy . ':' . $post_term_slug == $taxonomy_enabled) return true;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6840
  }
6841
  }
6842
  }
@@ -7687,7 +7734,6 @@ class ai_Block extends ai_CodeBlock {
7687
  parent::__construct();
7688
 
7689
  $this->number = $number;
7690
- // $this->wp_options [AI_OPTION_BLOCK_NAME] = DEFAULT_AD_NAME .' ' . $number;
7691
  }
7692
  }
7693
 
856
  return AI_TEXT_AFTER_HTML_ELEMENT;
857
  break;
858
  default:
859
+ if ($automatic_insertion >= AI_AUTOMATIC_INSERTION_CUSTOM_HOOK && $automatic_insertion < AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + 20) {
860
  $hook_index = $automatic_insertion - AI_AUTOMATIC_INSERTION_CUSTOM_HOOK;
861
  return get_hook_name ($hook_index + 1);
862
  }
1125
 
1126
  $sticky_parameters = '';
1127
 
 
 
 
 
 
 
 
1128
  if ($this->is_sticky ()) {
1129
 
1130
  $stick_to_the_content_class = $this->stick_to_the_content_class ();
2101
  }
2102
 
2103
  foreach ($ai_custom_hooks as $index => $custom_hook) {
2104
+ if ($index >= 20) break;
2105
 
2106
  $globals_name = 'AI_' . strtoupper ($custom_hook ['action']) . '_' . (AI_AUTOMATIC_INSERTION_CUSTOM_HOOK + $index) . '_COUNTER';
2107
  if (isset ($ad_inserter_globals [$globals_name]) && $ai_wp_data [AI_CONTEXT] == AI_CONTEXT_CUSTOM_HOOK + $index) {
2108
+ $counters .= ' H'.$custom_hook ['index'].'='.$ad_inserter_globals [$globals_name];
2109
  // Translators: %s: custom hook name
2110
+ $title .= ' H'.$custom_hook ['index'].' = ' . sprintf (__('Custom hook %s call', 'ad-inserter'), $custom_hook ['name']) . ', ';
2111
  }
2112
  }
2113
 
2160
  }
2161
 
2162
  if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING) {
2163
+ $this->labels->class .= ' ai-debug-no-wrapping';
2164
  }
2165
 
2166
  $counters = $this->ai_get_counters ($right_title);
3198
 
3199
  $this->w3tc_code .= 'if (strpos ($ai_code, $ai_head_separator) !== false) {$codes = explode ($ai_head_separator, $ai_code); $ai_code = trim ($codes [1]);} $ai_enabled = true;';
3200
 
 
 
 
 
 
 
 
 
 
3201
  $processed_code = $this->generate_html_from_w3tc_code ();
3202
  break;
3203
  }
3234
  // LAZY LOADING
3235
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3236
  // Lazy loading code for all cases except W3TC with ROTATE separator
3237
+ if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
 
 
3238
 
3239
  if ($this->w3tc_code != '') {
3240
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
3316
  switch ($this->get_scheduling()) {
3317
  case AI_SCHEDULING_BETWEEN_DATES:
3318
  case AI_SCHEDULING_OUTSIDE_DATES:
3319
+ $scheduling_start_time_raw = trim ($this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ());
3320
  $scheduling_start_time = base64_encode ($scheduling_start_time_raw);
3321
+ $scheduling_end_time_raw = trim ($this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ());
3322
  $scheduling_end_time = base64_encode ($scheduling_end_time_raw);
3323
  $scheduling_days_in_week_raw = $this->get_schedule_weekdays ();
3324
  $scheduling_days_in_week = base64_encode ($scheduling_days_in_week_raw);
6539
  return false;
6540
  }
6541
 
6542
+ function check_disabled () {
6543
+ global $ai_wp_data;
6544
+
6545
+ if (isset ($ai_wp_data [AI_DISABLED_BLOCKS])) {
6546
+ if (in_array ($this->number, $ai_wp_data [AI_DISABLED_BLOCKS])) {
6547
+ return false;
6548
+ }
6549
+ if (in_array ('#', $ai_wp_data [AI_DISABLED_BLOCKS])) {
6550
+ return false;
6551
+ }
6552
+ }
6553
+
6554
+ return true;
6555
+ }
6556
+
6557
  function check_category ($categories = null, $cat_type = AI_WHITE_LIST) {
6558
  global $ai_wp_data;
6559
 
6712
  // if ($taxonomies == AD_EMPTY_DATA) return true;
6713
 
6714
  $taxonomies_listed = explode (",", $taxonomies);
 
 
6715
  foreach ($taxonomies_listed as $taxonomy_disabled) {
6716
  $taxonomy_disabled = trim ($taxonomy_disabled);
6717
 
6751
  } else return true;
6752
  }
6753
 
6754
+ $taxonomy_names = get_post_taxonomies ();
6755
  foreach ($taxonomy_names as $taxonomy_name) {
6756
  $terms = get_the_terms (0, $taxonomy_name);
6757
  if (is_array ($terms)) {
6765
  $post_taxonomy = strtolower ($term->taxonomy);
6766
  if ($post_taxonomy == $taxonomy_disabled) return false;
6767
 
6768
+ $check_parent = true;
6769
+ $check_childern = false;
6770
+
6771
+ if (substr ($taxonomy_disabled, - 1) == '*') {
6772
+ $check_childern = true;
6773
+ $taxonomy_disabled = rtrim ($taxonomy_disabled, '*');
6774
+ }
6775
+ elseif (substr ($taxonomy_disabled, - 1) == '+') {
6776
+ $check_parent = false;
6777
+ $check_childern = true;
6778
+ $taxonomy_disabled = rtrim ($taxonomy_disabled, '+');
6779
+ }
6780
+
6781
+ if ($check_parent) {
6782
+ if ($taxonomy_disabled == $post_taxonomy . ':' . $post_term_slug) {
6783
+ return false;
6784
+ }
6785
+ }
6786
+
6787
+ if ($check_childern) {
6788
+ if (strpos ($taxonomy_disabled, ':') !== false) {
6789
+ $taxonomy_data = explode (':', $taxonomy_disabled);
6790
+ if (count ($taxonomy_data) == 2 && ai_post_is_in_child_taxonomies ($taxonomy_data [0], $taxonomy_data [1])) {
6791
+ return false;
6792
+ }
6793
+ }
6794
+ }
6795
  }
6796
  }
6797
  }
6804
  // if ($taxonomies == AD_EMPTY_DATA) return false;
6805
 
6806
  $taxonomies_listed = explode (",", $taxonomies);
 
 
6807
  foreach ($taxonomies_listed as $taxonomy_enabled) {
6808
  $taxonomy_enabled = trim ($taxonomy_enabled);
6809
 
6843
  } else return false;
6844
  }
6845
 
6846
+ $taxonomy_names = get_post_taxonomies ();
6847
  foreach ($taxonomy_names as $taxonomy_name) {
6848
  $terms = get_the_terms (0, $taxonomy_name);
6849
  if (is_array ($terms)) {
6857
  $post_taxonomy = strtolower ($term->taxonomy);
6858
  if ($post_taxonomy == $taxonomy_enabled) return true;
6859
 
6860
+ $check_parent = true;
6861
+ $check_childern = false;
6862
+
6863
+ if (substr ($taxonomy_enabled, - 1) == '*') {
6864
+ $check_childern = true;
6865
+ $taxonomy_enabled = rtrim ($taxonomy_enabled, '*');
6866
+ }
6867
+ elseif (substr ($taxonomy_enabled, - 1) == '+') {
6868
+ $check_parent = false;
6869
+ $check_childern = true;
6870
+ $taxonomy_enabled = rtrim ($taxonomy_enabled, '+');
6871
+ }
6872
+
6873
+ if ($check_parent) {
6874
+ if ($taxonomy_enabled == $post_taxonomy . ':' . $post_term_slug) {
6875
+ return true;
6876
+ }
6877
+ }
6878
+
6879
+ if ($check_childern) {
6880
+ if (strpos ($taxonomy_enabled, ':') !== false) {
6881
+ $taxonomy_data = explode (':', $taxonomy_enabled);
6882
+ if (count ($taxonomy_data) == 2 && ai_post_is_in_child_taxonomies ($taxonomy_data [0], $taxonomy_data [1])) {
6883
+ return true;
6884
+ }
6885
+ }
6886
+ }
6887
  }
6888
  }
6889
  }
7734
  parent::__construct();
7735
 
7736
  $this->number = $number;
 
7737
  }
7738
  }
7739
 
constants.php CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
- define ('AD_INSERTER_VERSION', '2.6.2');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -269,7 +269,7 @@ define('AI_AUTOMATIC_INSERTION_BEFORE_IMAGE', 18);
269
  define('AI_AUTOMATIC_INSERTION_AFTER_IMAGE', 19);
270
 
271
  define('AI_AUTOMATIC_INSERTION_OUTPUT_BUFFERING', 99);
272
- define('AI_AUTOMATIC_INSERTION_CUSTOM_HOOK', 100);
273
 
274
  define('AI_TEXT_ENG_DISABLED', 'Disabled');
275
  define('AI_TEXT_ENG_BEFORE_POST', 'Before post');
@@ -860,7 +860,9 @@ define ('DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION', AI_DISABLED);
860
  define ('DEFAULT_COUNT_INSIDE', AI_DO_NOT_COUNT);
861
  define ('DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN', AI_CONTAIN);
862
  define ('DEFAULT_WEEKDAYS', '0,1,2,3,4,5,6');
863
- define ('DEFAULT_MAXMIND_LICENSE_KEY', '');
 
 
864
 
865
  define ('AI_ADBLOCKING_DETECTION', true);
866
  define ('AI_NORMAL_HEADER_STYLES', true);
@@ -1071,7 +1073,9 @@ define ('AI_FOOTER_INLINE_SCRIPTS', 61);
1071
  define ('AI_NESTING_LEVEL', 62);
1072
  define ('AI_W3TC_DEBUGGING', 63);
1073
  define ('AI_BLOCK_PHP_CODE_CACHING', 64);
1074
- define ('AI_FALLBACK_LEVEL', 62);
 
 
1075
 
1076
  define ('AI_CONTEXT_NONE', 0);
1077
  define ('AI_CONTEXT_CONTENT', 1);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.6.3');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
269
  define('AI_AUTOMATIC_INSERTION_AFTER_IMAGE', 19);
270
 
271
  define('AI_AUTOMATIC_INSERTION_OUTPUT_BUFFERING', 99);
272
+ define('AI_AUTOMATIC_INSERTION_CUSTOM_HOOK', 100); // 100 .. 119
273
 
274
  define('AI_TEXT_ENG_DISABLED', 'Disabled');
275
  define('AI_TEXT_ENG_BEFORE_POST', 'Before post');
860
  define ('DEFAULT_COUNT_INSIDE', AI_DO_NOT_COUNT);
861
  define ('DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN', AI_CONTAIN);
862
  define ('DEFAULT_WEEKDAYS', '0,1,2,3,4,5,6');
863
+ define ('DEFAULT_EXTERNAL_TRACKING_CATEGORY', 'Ad Inserter Pro');
864
+ define ('DEFAULT_EXTERNAL_TRACKING_ACTION', '[EVENT]');
865
+ define ('DEFAULT_EXTERNAL_TRACKING_LABEL', '[BLOCK_NUMBER] - [BLOCK_VERSION_NAME]');
866
 
867
  define ('AI_ADBLOCKING_DETECTION', true);
868
  define ('AI_NORMAL_HEADER_STYLES', true);
1073
  define ('AI_NESTING_LEVEL', 62);
1074
  define ('AI_W3TC_DEBUGGING', 63);
1075
  define ('AI_BLOCK_PHP_CODE_CACHING', 64);
1076
+ define ('AI_FALLBACK_LEVEL', 65);
1077
+ define ('AI_HEAD', 66);
1078
+ define ('AI_DISABLED_BLOCKS', 67);
1079
 
1080
  define ('AI_CONTEXT_NONE', 0);
1081
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.6.2"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -161,13 +161,13 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
161
  .exceptions a {
162
  text-decoration: none;
163
  }
164
- .exceptions th.page {
165
  text-align: left;
166
  }
167
  .exceptions tr.even {
168
  background: #f0f0f0;
169
  }
170
- .exceptions td.page {
171
  padding-right: 20px;
172
  }
173
  .exceptions th.id, .exceptions td.id {
@@ -179,10 +179,10 @@ a.clear-link, a.clear-link:hover, a.clear-link:focus {
179
  padding-right: 10px;
180
  text-align: left;
181
  }
182
- .exceptions th.page, .exceptions td.page {
183
  width: 90%;
184
  overflow: hidden;
185
- max-width: 210px;
186
  }
187
  .exceptions th.page-only, .exceptions td.page-only {
188
  padding-right: 10px;
@@ -1749,5 +1749,20 @@ table.ai-page-types td.ai-page-type.ai-unavailable label {
1749
  font-family: monospace, Courier, 'Courier New';
1750
  }
1751
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1752
 
1753
 
1
  #ai-data {
2
+ font-family: "2.6.3"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
161
  .exceptions a {
162
  text-decoration: none;
163
  }
164
+ .exceptions th.page-title {
165
  text-align: left;
166
  }
167
  .exceptions tr.even {
168
  background: #f0f0f0;
169
  }
170
+ .exceptions td.page-title {
171
  padding-right: 20px;
172
  }
173
  .exceptions th.id, .exceptions td.id {
179
  padding-right: 10px;
180
  text-align: left;
181
  }
182
+ .exceptions th.page-title, .exceptions td.page-title {
183
  width: 90%;
184
  overflow: hidden;
185
+ max-width: 150px;
186
  }
187
  .exceptions th.page-only, .exceptions td.page-only {
188
  padding-right: 10px;
1749
  font-family: monospace, Courier, 'Courier New';
1750
  }
1751
 
1752
+ #ai-list-table tr.odd {
1753
+ background: #fff;
1754
+ }
1755
+
1756
+ #ai-list-table tr.even {
1757
+ background: #eee;
1758
+ }
1759
+
1760
+ #ai-list-table tr.odd.ai-block-active {
1761
+ background: #efe;
1762
+ }
1763
+
1764
+ #ai-list-table tr.even.ai-block-active {
1765
+ background: #ded;
1766
+ }
1767
 
1768
 
images/ai-adb.png ADDED
Binary file
images/ai-amp.png ADDED
Binary file
images/contextual-1.gif DELETED
Binary file
images/contextual-2.jpg DELETED
Binary file
images/contextual-3.png DELETED
Binary file
images/contextual-4.gif DELETED
Binary file
images/contextual-5.png DELETED
Binary file
images/contextual-6.gif DELETED
Binary file
images/contextual-7.gif DELETED
Binary file
images/contextual-8.gif DELETED
Binary file
images/contextual-9.jpg DELETED
Binary file
images/facebook.png DELETED
Binary file
images/manual.png DELETED
Binary file
images/oko-1.jpg DELETED
Binary file
images/oko-2.jpg DELETED
Binary file
images/oko-3.jpg DELETED
Binary file
images/oko-4.jpg DELETED
Binary file
images/twitter.png DELETED
Binary file
includes/js/ai-auto-ads.js CHANGED
@@ -1,7 +1,8 @@
1
  jQuery(window).on ('load', function () {
2
  setTimeout (function() {
3
  // var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
4
- var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
 
5
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
6
  }, 50);
7
  });
1
  jQuery(window).on ('load', function () {
2
  setTimeout (function() {
3
  // var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
4
+ // var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
5
+ var google_auto_placed = jQuery ('.google-auto-placed ins ins ins');
6
  google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
7
  }, 50);
8
  });
includes/js/ai-auto-ads.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(window).on("load",function(){setTimeout(function(){jQuery(".google-auto-placed ins ins ins, .google-auto-placed ins ins iframe").before('<section class="ai-debug-bar ai-debug-adsense ai-adsense-auto-ads">'+ai_front.automatically_placed+"</section>")},50)});
1
+ jQuery(window).on("load",function(){setTimeout(function(){jQuery(".google-auto-placed ins ins ins").before('<section class="ai-debug-bar ai-debug-adsense ai-adsense-auto-ads">'+ai_front.automatically_placed+"</section>")},50)});
includes/js/ai-lists.js CHANGED
@@ -1,5 +1,12 @@
1
  jQuery (function ($) {
2
 
 
 
 
 
 
 
 
3
  function b64e (str) {
4
  // first we use encodeURIComponent to get percent-encoded UTF-8,
5
  // then we convert the percent encodings into raw bytes which
@@ -299,7 +306,7 @@ jQuery (function ($) {
299
  var block_code = b64d ($(this).data ('fallback-code'));
300
  $(this).append (block_code);
301
 
302
- if (ai_debug) console.log ('AI INSERT CODE', $(block_code).attr ('class'));
303
  if (ai_debug) console.log ('');
304
 
305
  ai_process_element (this);
1
  jQuery (function ($) {
2
 
3
+ if (!Array.prototype.includes) {
4
+ //or use Object.defineProperty
5
+ Array.prototype.includes = function(search){
6
+ return !!~this.indexOf(search);
7
+ }
8
+ }
9
+
10
  function b64e (str) {
11
  // first we use encodeURIComponent to get percent-encoded UTF-8,
12
  // then we convert the percent encodings into raw bytes which
306
  var block_code = b64d ($(this).data ('fallback-code'));
307
  $(this).append (block_code);
308
 
309
+ if (ai_debug) console.log ('AI INSERT CODE', $(block_wrapping_div).attr ('class'));
310
  if (ai_debug) console.log ('');
311
 
312
  ai_process_element (this);
includes/js/ai-lists.min.js CHANGED
@@ -1,10 +1,11 @@
1
- jQuery(function(a){function e(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function n(a){a=a.match(h);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function k(a){try{var b=Date.parse(a);isNaN(b)&&(b=null)}catch(w){b=null}return b}var h=/:\/\/(.[^/:]+)/i;ai_process_lists=function(b){b=null==b?a("div.ai-list-data"):b.filter(".ai-list-data");if(b.length){b.removeClass("ai-list-data");
2
- var r=document.cookie.split(";");r.forEach(function(a,c){r[c]=a.trim()});var h=getAllUrlParams(window.location.search);if(null!=h.referrer)var m=h.referrer;else m=document.referrer,""!=m&&(m=n(m));if("undefined"!==typeof MobileDetect)var u=new MobileDetect(window.navigator.userAgent);b.each(function(){var b=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,f=!1,d=a(this).attr("referer-list");if("undefined"!=typeof d){d=e(d).split(",");var g=a(this).attr("referer-list-type");a.each(d,function(a,
3
- b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==b.charAt(b.length-1)){if(b=b.substr(1,b.length-2),-1!=m.indexOf(b))return f=!0,!1}else{if(b=b.substr(1),m.substr(-b.length)==b)return f=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==m.indexOf(b))return f=!0,!1}else if("#"==b){if(""==m)return f=!0,!1}else if(b==m)return f=!0,!1});switch(g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}}d=a(this).attr("client-list");if("undefined"!=typeof d&&"undefined"!==typeof u)switch(d=e(d).split(","),
4
- g=a(this).attr("client-list-type"),a.each(d,function(a,b){if(""==b)return!0;if(u.is(b))return f=!0,!1}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}if(c&&(d=a(this).attr("parameter-list"),"undefined"!=typeof d))switch(d=e(d).split(","),g=a(this).attr("parameter-list-type"),f=!1,a.each(d,function(a,b){if(-1!=b.indexOf("=")){if(-1!=r.indexOf(b))return f=!0,!1}else r.forEach(function(a){a=a.split("=");if(b==a[0])return f=!0,!1})}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}var l=a(this).prevAll(".ai-debug-bar.ai-debug-lists");
5
- d=""==m?"#":m;l.find(".ai-debug-name.ai-list-info").text(d).attr("title",window.navigator.userAgent);l.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);d=!1;if(c){var h=a(this).attr("scheduling-start");l=a(this).attr("scheduling-end");var p=a(this).attr("scheduling-days");if("undefined"!=typeof h&&"undefined"!=typeof l&&"undefined"!=typeof p){d=!0;var n=parseInt(a(this).attr("scheduling-fallback"));g=parseInt(a(this).attr("gmt"));var q=k(e(h))+g;l=k(e(l))+g;h=e(p).split(",");
6
- p=a(this).attr("scheduling-type");var t=(new Date).getTime()+g,v=new Date(t);g=v.getDay();0==g?g=6:g--;q=t>=q&&t<l&&h.includes(g.toString());switch(p){case "B":q=!q}q||(c=!1);p=v.toISOString().split(".")[0].replace("T"," ");l=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");l.find(".ai-debug-name.ai-scheduling-info").text(p+" "+g);l.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==n||(l.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),
7
- l.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+n))}}a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=e(a(this).data("code")),a(this).append(c),ai_process_element(this))):d&&!q&&0!=n?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=
8
- typeof a(this).data("fallback-code")?(c=e(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=b.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&b.attr("data-ai",c))):(a(this).hide(),b.removeAttr("data-ai").removeClass("ai-track"),b.find(".ai-debug-block").length?(b.css({visibility:""}).removeClass("ai-close"),b.hasClass("ai-remove-position")&&b.css({position:""})):b.hide());a(this).attr("data-code",
9
- "");a(this).attr("data-fallback-code","");b.removeClass("ai-list-block")})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data",a))},5)}
 
10
  function getAllUrlParams(a){var e=a?a.split("?")[1]:window.location.search.slice(1);a={};if(e){e=e.split("#")[0];e=e.split("&");for(var n=0;n<e.length;n++){var k=e[n].split("="),h=void 0,b=k[0].replace(/\[\d*\]/,function(a){h=a.slice(1,-1);return""});k="undefined"===typeof k[1]?"":k[1];b=b.toLowerCase();k=k.toLowerCase();a[b]?("string"===typeof a[b]&&(a[b]=[a[b]]),"undefined"===typeof h?a[b].push(k):a[b][h]=k):a[b]=k}}return a};
1
+ jQuery(function(a){function e(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function n(a){a=a.match(h);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function k(a){try{var b=Date.parse(a);isNaN(b)&&(b=null)}catch(w){b=null}return b}Array.prototype.includes||(Array.prototype.includes=function(a){return!!~this.indexOf(a)});var h=/:\/\/(.[^/:]+)/i;ai_process_lists=function(b){b=
2
+ null==b?a("div.ai-list-data"):b.filter(".ai-list-data");if(b.length){b.removeClass("ai-list-data");var r=document.cookie.split(";");r.forEach(function(a,c){r[c]=a.trim()});var h=getAllUrlParams(window.location.search);if(null!=h.referrer)var m=h.referrer;else m=document.referrer,""!=m&&(m=n(m));if("undefined"!==typeof MobileDetect)var u=new MobileDetect(window.navigator.userAgent);b.each(function(){var b=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,f=!1,d=a(this).attr("referer-list");
3
+ if("undefined"!=typeof d){d=e(d).split(",");var g=a(this).attr("referer-list-type");a.each(d,function(a,b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==b.charAt(b.length-1)){if(b=b.substr(1,b.length-2),-1!=m.indexOf(b))return f=!0,!1}else{if(b=b.substr(1),m.substr(-b.length)==b)return f=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==m.indexOf(b))return f=!0,!1}else if("#"==b){if(""==m)return f=!0,!1}else if(b==m)return f=!0,!1});switch(g){case "B":f&&(c=!1);break;case "W":f||
4
+ (c=!1)}}d=a(this).attr("client-list");if("undefined"!=typeof d&&"undefined"!==typeof u)switch(d=e(d).split(","),g=a(this).attr("client-list-type"),a.each(d,function(a,b){if(""==b)return!0;if(u.is(b))return f=!0,!1}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}if(c&&(d=a(this).attr("parameter-list"),"undefined"!=typeof d))switch(d=e(d).split(","),g=a(this).attr("parameter-list-type"),f=!1,a.each(d,function(a,b){if(-1!=b.indexOf("=")){if(-1!=r.indexOf(b))return f=!0,!1}else r.forEach(function(a){a=
5
+ a.split("=");if(b==a[0])return f=!0,!1})}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}var l=a(this).prevAll(".ai-debug-bar.ai-debug-lists");d=""==m?"#":m;l.find(".ai-debug-name.ai-list-info").text(d).attr("title",window.navigator.userAgent);l.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);d=!1;if(c){var h=a(this).attr("scheduling-start");l=a(this).attr("scheduling-end");var p=a(this).attr("scheduling-days");if("undefined"!=typeof h&&"undefined"!=typeof l&&"undefined"!=
6
+ typeof p){d=!0;var n=parseInt(a(this).attr("scheduling-fallback"));g=parseInt(a(this).attr("gmt"));var q=k(e(h))+g;l=k(e(l))+g;h=e(p).split(",");p=a(this).attr("scheduling-type");var t=(new Date).getTime()+g,v=new Date(t);g=v.getDay();0==g?g=6:g--;q=t>=q&&t<l&&h.includes(g.toString());switch(p){case "B":q=!q}q||(c=!1);p=v.toISOString().split(".")[0].replace("T"," ");l=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");l.find(".ai-debug-name.ai-scheduling-info").text(p+" "+g);l.find(".ai-debug-name.ai-scheduling-status").text(c?
7
+ ai_front.visible:ai_front.hidden);c||0==n||(l.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),l.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+n))}}a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=e(a(this).data("code")),a(this).append(c),ai_process_element(this))):d&&!q&&0!=n?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&
8
+ b.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=e(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=b.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&b.attr("data-ai",c))):(a(this).hide(),b.removeAttr("data-ai").removeClass("ai-track"),b.find(".ai-debug-block").length?(b.css({visibility:""}).removeClass("ai-close"),
9
+ b.hasClass("ai-remove-position")&&b.css({position:""})):b.hide());a(this).attr("data-code","");a(this).attr("data-fallback-code","");b.removeClass("ai-list-block")})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});
10
+ function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data",a))},5)}
11
  function getAllUrlParams(a){var e=a?a.split("?")[1]:window.location.search.slice(1);a={};if(e){e=e.split("#")[0];e=e.split("&");for(var n=0;n<e.length;n++){var k=e[n].split("="),h=void 0,b=k[0].replace(/\[\d*\]/,function(a){h=a.slice(1,-1);return""});k="undefined"===typeof k[1]?"":k[1];b=b.toLowerCase();k=k.toLowerCase();a[b]?("string"===typeof a[b]&&(a[b]=[a[b]]),"undefined"===typeof h?a[b].push(k):a[b][h]=k):a[b]=k}}return a};
includes/js/ai-rotate.js CHANGED
@@ -59,7 +59,7 @@ jQuery (function ($) {
59
  if (rotate_options.length == 0) return;
60
 
61
  if (ai_debug) {
62
- console.log ('AI ROTATE process single rotation', );
63
  console.log ('AI ROTATE', 'block', $(rotation_block).attr ('class') + ',', rotate_options.length, 'options');
64
  }
65
 
@@ -253,23 +253,18 @@ jQuery (function ($) {
253
  if (typeof option.data ('code') != 'undefined') {
254
  rotate_options.empty();
255
 
256
- // var option_code = atob (option.data ('code'));
257
  var option_code = b64d (option.data ('code'));
258
 
259
  if (ai_debug) console.log ('AI ROTATE CODE');
260
- if (ai_debug) console.log ('');
261
 
262
  option.append (option_code);
263
 
264
  ai_process_elements ();
265
  }
266
 
267
- var option_name = '';
268
  var debug_block_frame = $(rotation_block).closest ('.ai-debug-block');
269
- // if (typeof debug_block_frame != "undefined") {
270
  if (debug_block_frame.length != 0) {
271
- // var option_name = atob (option.data ('name'));
272
- var option_name = b64d (option.data ('name'));
273
  var name_tag = debug_block_frame.find ('kbd.ai-option-name');
274
  // Do not set option name in nested debug blocks
275
  var nested_debug_block = debug_block_frame.find ('.ai-debug-block');
@@ -286,10 +281,7 @@ jQuery (function ($) {
286
 
287
  var tracking_updated = false;
288
  var adb_show_wrapping_div = $(rotation_block).closest ('.ai-adb-show');
289
- // if (typeof adb_show_wrapping_div != "undefined") {
290
  if (adb_show_wrapping_div.length != 0) {
291
- // if (typeof adb_show_wrapping_div.data ("ai-tracking") != "undefined") {
292
-
293
  if (adb_show_wrapping_div.attr ("data-ai-tracking")) {
294
  var data = JSON.parse (b64d (adb_show_wrapping_div.attr ("data-ai-tracking")));
295
  if (typeof data !== "undefined" && data.constructor === Array) {
@@ -312,6 +304,9 @@ jQuery (function ($) {
312
  data [1] = random_index + 1;
313
  data [3] = option_name;
314
  wrapping_div.attr ("data-ai", b64e (JSON.stringify (data)))
 
 
 
315
  }
316
  }
317
  }
59
  if (rotate_options.length == 0) return;
60
 
61
  if (ai_debug) {
62
+ console.log ('AI ROTATE process single rotation');
63
  console.log ('AI ROTATE', 'block', $(rotation_block).attr ('class') + ',', rotate_options.length, 'options');
64
  }
65
 
253
  if (typeof option.data ('code') != 'undefined') {
254
  rotate_options.empty();
255
 
 
256
  var option_code = b64d (option.data ('code'));
257
 
258
  if (ai_debug) console.log ('AI ROTATE CODE');
 
259
 
260
  option.append (option_code);
261
 
262
  ai_process_elements ();
263
  }
264
 
265
+ var option_name = b64d (option.data ('name'));
266
  var debug_block_frame = $(rotation_block).closest ('.ai-debug-block');
 
267
  if (debug_block_frame.length != 0) {
 
 
268
  var name_tag = debug_block_frame.find ('kbd.ai-option-name');
269
  // Do not set option name in nested debug blocks
270
  var nested_debug_block = debug_block_frame.find ('.ai-debug-block');
281
 
282
  var tracking_updated = false;
283
  var adb_show_wrapping_div = $(rotation_block).closest ('.ai-adb-show');
 
284
  if (adb_show_wrapping_div.length != 0) {
 
 
285
  if (adb_show_wrapping_div.attr ("data-ai-tracking")) {
286
  var data = JSON.parse (b64d (adb_show_wrapping_div.attr ("data-ai-tracking")));
287
  if (typeof data !== "undefined" && data.constructor === Array) {
304
  data [1] = random_index + 1;
305
  data [3] = option_name;
306
  wrapping_div.attr ("data-ai", b64e (JSON.stringify (data)))
307
+
308
+ if (ai_debug) console.log ('AI ROTATE TRACKING DATA ', b64d (wrapping_div.attr ("data-ai")));
309
+
310
  }
311
  }
312
  }
includes/js/ai-rotate.min.js CHANGED
@@ -1,9 +1,9 @@
1
- jQuery(function(a){function r(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,c){return String.fromCharCode("0x"+c)}))}function l(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function t(){a("div.ai-rotate.ai-rotation-groups").each(function(c,k){a(this).addClass("ai-timer");ai_process_rotation(this)})}var m=[];ai_process_rotation=function(c){if(a(c).hasClass("ai-unprocessed")||a(c).hasClass("ai-timer"))if(a(c).removeClass("ai-unprocessed").removeClass("ai-timer"),
2
- m.includes(c.selector)&&m.splice(m.indexOf(c.selector),1),"number"==typeof c.length)for(var k=0;k<c.length;k++)0==k?ai_process_single_rotation(c[k],!0):ai_process_single_rotation(c[k],!1);else ai_process_single_rotation(c,!0)};ai_process_single_rotation=function(c,k){var g=a(c).children(".ai-rotate-option");if(0!=g.length){g.hide();if("undefined"==typeof a(c).data("next"))if("undefined"!=typeof a(g[0]).data("group")){var f=-1,q=[];a("span[data-ai-groups]").each(function(b){(a(this)[0].offsetWidth||
3
- a(this)[0].offsetHeight||a(this)[0].getClientRects().length)&&q.push(this)});1<=q.length&&JSON.parse(l(a(q).first().data("ai-groups"))).forEach(function(b,c){-1==f&&g.each(function(c){if(l(a(this).data("group"))==b)return f=c,!1})})}else{var e=a(c).data("shares");if("string"===typeof e){e=JSON.parse(atob(e));var h=Math.round(100*Math.random());for(var b=0;b<e.length&&(f=b,0>e[b]||!(h<=e[b]));b++);}else f=Math.floor(Math.random()*g.length),(new Date).getMilliseconds()%2&&(f=g.length-f-1)}else f=parseInt(a(c).attr("data-next")),
4
- b=a(g[f]),"undefined"!=typeof b.data("code")&&(b=a(l(b.data("code")))),0!=b.find("span[data-ai-groups]").addBack("span[data-ai-groups]").length&&0!=a(".ai-rotation-groups").length&&setTimeout(function(){t()},5);if(!(0>f||f>=g.length)){b=a(g[f]);e="";if("undefined"!=typeof b.data("time")){h=atob(b.data("time"));if(0==h&&1<g.length){var d=f;do{d++;d>=g.length&&(d=0);var n=a(g[d]);if("undefined"==typeof n.data("time")){f=d;b=a(g[f]);h=0;break}n=atob(n.data("time"))}while(0==n&&d!=f);0!=h&&(f=d,b=a(g[f]),
5
- h=atob(b.data("time")))}if(0<h&&(d=f+1,d>=g.length&&(d=0),"undefined"!=typeof a(c).data("info"))){e=JSON.parse(atob(a(c).data("info")))[0];a(c).attr("data-next",d);var p="div.ai-rotate.ai-"+e;m.includes(p)&&(k=!1);k&&(m.push(p),setTimeout(function(){a(p).addClass("ai-timer");ai_process_rotation(a(p))},1E3*h));e=" ("+h+" s)"}}else"undefined"==typeof b.data("group")&&g.each(function(b){b!=f&&a(this).remove()});b.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");
6
- a(c).css({position:""});"undefined"!=typeof b.data("code")&&(g.empty(),h=l(b.data("code")),b.append(h),ai_process_elements());h="";d=a(c).closest(".ai-debug-block");0!=d.length&&(h=l(b.data("name")),b=d.find("kbd.ai-option-name"),d=d.find(".ai-debug-block"),"undefined"!=typeof d&&(d=d.find("kbd.ai-option-name"),b=b.slice(0,b.length-d.length)),"undefined"!=typeof b&&(d=b.first().data("separator"),"undefined"==typeof d&&(d=""),b.html(d+h+e)));b=!1;d=a(c).closest(".ai-adb-show");0!=d.length&&d.attr("data-ai-tracking")&&
7
- (e=JSON.parse(l(d.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=f+1,e[3]=h,d.attr("data-ai-tracking",r(JSON.stringify(e))),b=!0));b||(b=a(c).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(l(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=f+1,e[3]=h,b.attr("data-ai",r(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=
8
- function(c){a("div.ai-rotate",c).each(function(a,c){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},10)})});ai_process_elements_active=!1;
9
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0};
1
+ jQuery(function(a){function r(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,b){return String.fromCharCode("0x"+b)}))}function l(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function t(){a("div.ai-rotate.ai-rotation-groups").each(function(b,k){a(this).addClass("ai-timer");ai_process_rotation(this)})}var m=[];ai_process_rotation=function(b){if(a(b).hasClass("ai-unprocessed")||a(b).hasClass("ai-timer"))if(a(b).removeClass("ai-unprocessed").removeClass("ai-timer"),
2
+ m.includes(b.selector)&&m.splice(m.indexOf(b.selector),1),"number"==typeof b.length)for(var k=0;k<b.length;k++)0==k?ai_process_single_rotation(b[k],!0):ai_process_single_rotation(b[k],!1);else ai_process_single_rotation(b,!0)};ai_process_single_rotation=function(b,k){var h=a(b).children(".ai-rotate-option");if(0!=h.length){h.hide();if("undefined"==typeof a(b).data("next"))if("undefined"!=typeof a(h[0]).data("group")){var g=-1,q=[];a("span[data-ai-groups]").each(function(b){(a(this)[0].offsetWidth||
3
+ a(this)[0].offsetHeight||a(this)[0].getClientRects().length)&&q.push(this)});1<=q.length&&JSON.parse(l(a(q).first().data("ai-groups"))).forEach(function(b,c){-1==g&&h.each(function(c){if(l(a(this).data("group"))==b)return g=c,!1})})}else{var e=a(b).data("shares");if("string"===typeof e){e=JSON.parse(atob(e));var f=Math.round(100*Math.random());for(var c=0;c<e.length&&(g=c,0>e[c]||!(f<=e[c]));c++);}else g=Math.floor(Math.random()*h.length),(new Date).getMilliseconds()%2&&(g=h.length-g-1)}else g=parseInt(a(b).attr("data-next")),
4
+ f=a(h[g]),"undefined"!=typeof f.data("code")&&(f=a(l(f.data("code")))),0!=f.find("span[data-ai-groups]").addBack("span[data-ai-groups]").length&&0!=a(".ai-rotation-groups").length&&setTimeout(function(){t()},5);if(!(0>g||g>=h.length)){f=a(h[g]);e="";if("undefined"!=typeof f.data("time")){c=atob(f.data("time"));if(0==c&&1<h.length){var d=g;do{d++;d>=h.length&&(d=0);var n=a(h[d]);if("undefined"==typeof n.data("time")){g=d;f=a(h[g]);c=0;break}n=atob(n.data("time"))}while(0==n&&d!=g);0!=c&&(g=d,f=a(h[g]),
5
+ c=atob(f.data("time")))}if(0<c&&(d=g+1,d>=h.length&&(d=0),"undefined"!=typeof a(b).data("info"))){e=JSON.parse(atob(a(b).data("info")))[0];a(b).attr("data-next",d);var p="div.ai-rotate.ai-"+e;m.includes(p)&&(k=!1);k&&(m.push(p),setTimeout(function(){a(p).addClass("ai-timer");ai_process_rotation(a(p))},1E3*c));e=" ("+c+" s)"}}else"undefined"==typeof f.data("group")&&h.each(function(b){b!=g&&a(this).remove()});f.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");
6
+ a(b).css({position:""});"undefined"!=typeof f.data("code")&&(h.empty(),c=l(f.data("code")),f.append(c),ai_process_elements());f=l(f.data("name"));d=a(b).closest(".ai-debug-block");0!=d.length&&(c=d.find("kbd.ai-option-name"),d=d.find(".ai-debug-block"),"undefined"!=typeof d&&(d=d.find("kbd.ai-option-name"),c=c.slice(0,c.length-d.length)),"undefined"!=typeof c&&(d=c.first().data("separator"),"undefined"==typeof d&&(d=""),c.html(d+f+e)));c=!1;d=a(b).closest(".ai-adb-show");0!=d.length&&d.attr("data-ai-tracking")&&
7
+ (e=JSON.parse(l(d.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,d.attr("data-ai-tracking",r(JSON.stringify(e))),c=!0));c||(c=a(b).closest("div[data-ai]"),"undefined"!=typeof c.attr("data-ai")&&(e=JSON.parse(l(c.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,c.attr("data-ai",r(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=
8
+ function(b){a("div.ai-rotate",b).each(function(a,b){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},10)})});ai_process_elements_active=!1;
9
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0};
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.6.2";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -693,66 +693,6 @@ function SyntaxHighlight (id, block, settings) {
693
 
694
  session.setValue(textarea.val());
695
 
696
- // copy back to textarea on form submit...
697
- // form.submit (function () {
698
- // if (!save_enabled) return false;
699
-
700
- // var block = textarea.attr ("id").replace ("block-","");
701
-
702
- //// console.log ('form.submit', block);
703
-
704
- // var editor_disabled = true;
705
- // if (typeof ace != 'undefined') {
706
- // editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
707
- // }
708
- // if (!editor_disabled) {
709
- // textarea.val (session.getValue());
710
- // }
711
-
712
- // var default_value = textarea.attr ("default");
713
- // var current_value = textarea.val ();
714
- // var name = textarea.attr ("name");
715
-
716
- // if (typeof name != 'undefined') {
717
- // if (typeof default_value != 'undefined') {
718
- //// console.log (textarea.attr ("name"), ": default_value: ", default_value, ", current_value: ", current_value);
719
-
720
- // if (current_value == default_value) {
721
- // textarea.removeAttr ("name");
722
- //// console.log ("REMOVED: ", name);
723
- // }
724
- // }
725
- //// else console.log ("NO DEFAULT VALUE: ", textarea.attr ("name"));
726
- // }
727
-
728
- // var textarea_name = textarea.attr ('name');
729
- // if (typeof textarea_name !== typeof undefined && textarea_name !== false) {
730
- // var copy_id = textarea.attr ('id') + '-copy';
731
- // jQuery ('#' + copy_id).remove ();
732
-
733
- // var org_name = textarea.attr ('org-name');
734
- // if (typeof org_name !== typeof undefined && org_name !== false) {
735
- // textarea.attr ("name", org_name);
736
- // } else textarea.attr ("org-name", textarea_name);
737
-
738
- // var textarea_copy = textarea.clone ().attr ('id', copy_id).hide ();
739
- // textarea.removeAttr ("name");
740
- // textarea_copy.val (':AI:' + b64e (textarea.val ()));
741
- // textarea.after (textarea_copy);
742
-
743
- // console.log (':AI:', block);
744
- // }
745
-
746
- // jQuery("#ai-active-tab").attr ("value", '[' + active_tab + ',' + active_tab_0 + ']');
747
-
748
- // var named_parameters = jQuery("#tab-" + block + ' [name]');
749
- // var block_parameters = new Array();
750
- // named_parameters.each (function() {
751
- // block_parameters.push (jQuery (this).attr ('name'));
752
- // });
753
- // jQuery("#block-parameters-" + block).attr ('name', 'block-parameters-' + block).attr ('value', b64e (JSON.stringify (block_parameters)));
754
- // });
755
-
756
  session.setMode ("ace/mode/ai-html");
757
 
758
  this.applySettings();
@@ -4516,6 +4456,10 @@ jQuery(document).ready (function($) {
4516
  } else if (debug) console.log ("AI PASTE FAILED");
4517
  }
4518
 
 
 
 
 
4519
 
4520
  function configure_list () {
4521
  var data_container = $("#ai-list-data");
@@ -4523,6 +4467,10 @@ jQuery(document).ready (function($) {
4523
  $(".ai-tab-link").click (function () {
4524
  var tab = $(this).data ('tab') - start;
4525
  $("#ai-tab-container").tabs ({active: tab});
 
 
 
 
4526
  });
4527
 
4528
  $("label.ai-copy-block").click (function () {
@@ -4558,6 +4506,8 @@ jQuery(document).ready (function($) {
4558
  open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
4559
  });
4560
 
 
 
4561
  data_container.disableSelection();
4562
  }
4563
 
@@ -4593,7 +4543,7 @@ jQuery(document).ready (function($) {
4593
 
4594
  $('#ai-loading').show ();
4595
 
4596
- data_container.load (ajaxurl+"?action=ai_ajax_backend&list=" + list + "&all=" + all + "&start=" + start + "&end=" + end + rearrange_data + safe_mode_url + settings_data + "&ai_check=" + ai_nonce, function (response, status, xhr) {
4597
  $('#ai-loading').hide ();
4598
  if (status == "error") {
4599
  var message = "Error downloading list data: " + xhr.status + " " + xhr.statusText;
@@ -5104,7 +5054,9 @@ jQuery(document).ready (function($) {
5104
  tab_block = parseInt (tab_block.replace ("ai-tab",""));
5105
  active_tab = tab_block;
5106
 
5107
- if (debug) console.log ("active_tab: " + active_tab);
 
 
5108
 
5109
  if (syntax_highlighting) {
5110
  if (!$("#tab-" + tab_block).hasClass ('configured')) {
1
+ var javascript_version = "2.6.3";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
693
 
694
  session.setValue(textarea.val());
695
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
696
  session.setMode ("ace/mode/ai-html");
697
 
698
  this.applySettings();
4456
  } else if (debug) console.log ("AI PASTE FAILED");
4457
  }
4458
 
4459
+ function highlight_active_block () {
4460
+ $('#ai-list-table tr.ai-block-list').removeClass ('ai-block-active');
4461
+ $('#ai-list-table tr.ai-block-' + active_tab).addClass ('ai-block-active');
4462
+ }
4463
 
4464
  function configure_list () {
4465
  var data_container = $("#ai-list-data");
4467
  $(".ai-tab-link").click (function () {
4468
  var tab = $(this).data ('tab') - start;
4469
  $("#ai-tab-container").tabs ({active: tab});
4470
+
4471
+ active_tab = parseInt ($(this).data ('tab'));
4472
+
4473
+ highlight_active_block ();
4474
  });
4475
 
4476
  $("label.ai-copy-block").click (function () {
4506
  open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
4507
  });
4508
 
4509
+ highlight_active_block ();
4510
+
4511
  data_container.disableSelection();
4512
  }
4513
 
4543
 
4544
  $('#ai-loading').show ();
4545
 
4546
+ data_container.load (ajaxurl+"?action=ai_ajax_backend&list=" + list + "&all=" + all + "&start=" + start + "&end=" + end + "&active=" + active_tab + rearrange_data + safe_mode_url + settings_data + "&ai_check=" + ai_nonce, function (response, status, xhr) {
4547
  $('#ai-loading').hide ();
4548
  if (status == "error") {
4549
  var message = "Error downloading list data: " + xhr.status + " " + xhr.statusText;
5054
  tab_block = parseInt (tab_block.replace ("ai-tab",""));
5055
  active_tab = tab_block;
5056
 
5057
+ highlight_active_block ();
5058
+
5059
+ if (debug) console.log ("$('.ai-tab').click" + active_tab);
5060
 
5061
  if (syntax_highlighting) {
5062
  if (!$("#tab-" + tab_block).hasClass ('configured')) {
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,146 +4,146 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-01-15 17:16:55+00:00\n"
8
- "PO-Revision-Date: 2020-01-15 18:19+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 2.2.4\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:353
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:369
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:376
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:461
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:468
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:477
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:484
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:495
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:502
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
- #: ad-inserter.php:1110
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1115
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
- #: ad-inserter.php:1120 strings.php:103
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
- #: ad-inserter.php:1125 strings.php:104
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
- #: ad-inserter.php:1130 strings.php:105
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1135 strings.php:155
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1182
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1186
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1426
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:1761 ad-inserter.php:2853
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2247
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2247
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2248
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2249
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2250
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2251
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2252
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
- #: ad-inserter.php:2548
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
- #: ad-inserter.php:2551
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2555
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2560
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
- #: ad-inserter.php:2563
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
- #: ad-inserter.php:2576
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
@@ -176,7 +176,7 @@ msgstr ""
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
- #: ad-inserter.php:2578
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2584
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
- #: ad-inserter.php:2601 ad-inserter.php:2636
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
- #: ad-inserter.php:2608
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:2618
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:2650
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,78 +213,78 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:2650
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:2745
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:2774 ad-inserter.php:9652 class.php:2123
227
  #: includes/preview.php:2002 includes/preview.php:2045
228
- #: includes/preview.php:2082 settings.php:4188 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:2775 settings.php:4189 settings.php:4274
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
- #: ad-inserter.php:2778 settings.php:1158
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
- #: ad-inserter.php:2781
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
- #: ad-inserter.php:2782
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
- #: ad-inserter.php:2794
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
- #: ad-inserter.php:2797
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
- #: ad-inserter.php:2814 ad-inserter.php:2826 strings.php:161
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
- #: ad-inserter.php:2814 ad-inserter.php:2826
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
- #: includes/functions.php:2458 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
- #: ad-inserter.php:2816
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
- #: ad-inserter.php:2818
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
- #: ad-inserter.php:2846
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
- #: ad-inserter.php:2851
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
@@ -292,11 +292,11 @@ msgstr ""
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
- #: ad-inserter.php:2854 settings.php:1136
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
- #: ad-inserter.php:2856
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
@@ -304,7 +304,7 @@ msgstr ""
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
- #: ad-inserter.php:2857
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
@@ -312,61 +312,61 @@ msgstr ""
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
- #: ad-inserter.php:2859
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
- #: ad-inserter.php:2861
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
- #: ad-inserter.php:2908
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
- #: ad-inserter.php:2911
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
- #: ad-inserter.php:2914
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
- #: ad-inserter.php:2917
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
- #: ad-inserter.php:2920
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
- #: ad-inserter.php:2923
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
- #: ad-inserter.php:2926
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
- #: ad-inserter.php:2929
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
- #: ad-inserter.php:2932
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
- #: ad-inserter.php:2949
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
- #: ad-inserter.php:2950
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
- #: ad-inserter.php:2979
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
@@ -374,11 +374,11 @@ msgstr ""
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
- #: ad-inserter.php:3128
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
- #: ad-inserter.php:3128
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
- #: ad-inserter.php:3185
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
- #: ad-inserter.php:3185
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
- #: ad-inserter.php:3185 ad-inserter.php:3463
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
@@ -403,39 +403,39 @@ msgstr[1] "znaka vstavljena"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
- #: ad-inserter.php:3463
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
- #: ad-inserter.php:3463
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
- #: ad-inserter.php:3469
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
- #: ad-inserter.php:3469
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
- #: ad-inserter.php:3469
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
- #: ad-inserter.php:5856
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
- #: ad-inserter.php:6520
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
- #: ad-inserter.php:6521
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -443,22 +443,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
- #: ad-inserter.php:6574
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
- #: ad-inserter.php:6576
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
- #: ad-inserter.php:6670
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
  #: ad-inserter.php:7036 ad-inserter.php:7038 ad-inserter.php:7061
461
- #: settings.php:2154
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
@@ -466,38 +466,38 @@ msgstr[1] "besedi"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
- #: ad-inserter.php:7075 ad-inserter.php:7194
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
- #: ad-inserter.php:7270
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
- #: ad-inserter.php:7387
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
- #: ad-inserter.php:7459
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
- #: ad-inserter.php:9270
486
  msgid "requires WordPress 4.6 or newer"
487
  msgstr "potrebuje WordPress 4.6 ali novejši"
488
 
489
- #: ad-inserter.php:9270
490
  msgid "Please update!"
491
  msgstr "Prosimo, posodobite!"
492
 
493
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
494
  #. name with HTML tags will be added)
495
- #: ad-inserter.php:9525
496
  msgid "Thank you for installing"
497
  msgstr "Hvala za namestitev vtičnika"
498
 
499
  #. translators: Opt-in message: %s: HTML tags
500
- #: ad-inserter.php:9527
501
  msgid ""
502
  "We would like to %s track its usage %s on your site. This is completely "
503
  "optional and can be disabled at any time."
@@ -505,7 +505,7 @@ msgstr ""
505
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
506
  "izbirno in se lahko izključi kadarkoli."
507
 
508
- #: ad-inserter.php:9529
509
  msgid ""
510
  "We don't record any sensitive data, only information regarding the WordPress "
511
  "environment and plugin usage, which will help us to make improvements to the "
@@ -515,7 +515,7 @@ msgstr ""
515
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
516
 
517
  #. translators: Deactivation message: %s: HTML tags
518
- #: ad-inserter.php:9566
519
  msgid ""
520
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
521
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -526,51 +526,51 @@ msgstr ""
526
  "nam %s in poskušali vam bomo pomagati."
527
 
528
  #. translators: %s: Ad Inserter
529
- #: ad-inserter.php:9610
530
  msgid "%s block."
531
  msgstr "%s blok."
532
 
533
  #. translators: widget title
534
- #: ad-inserter.php:9626 ad-inserter.php:9661
535
  msgid "Processing log"
536
  msgstr "Dnevnik procesiranja"
537
 
538
  #. translators: widget title
539
- #: ad-inserter.php:9628 ad-inserter.php:9662
540
  msgid "Dummy widget"
541
  msgstr "Prazen gradnik"
542
 
543
  #. translators: widget title
544
- #: ad-inserter.php:9630 ad-inserter.php:9660
545
  msgid "Debugging tools"
546
  msgstr "Orodja za razhroščevanje"
547
 
548
  #. translators: block status (widget title)
549
- #: ad-inserter.php:9637
550
  msgctxt "block"
551
  msgid "PAUSED"
552
  msgstr "USTAVLJEN"
553
 
554
- #: ad-inserter.php:9638
555
  msgid "WIDGET DISABLED"
556
  msgstr "GRADNIK ONEMOGOČEN"
557
 
558
- #: ad-inserter.php:9639
559
  msgid "Unknown block"
560
  msgstr "Neznan blok"
561
 
562
- #: ad-inserter.php:9647 includes/functions-check-now.php:3261
563
- #: includes/functions.old.php:3186 includes/functions.php:3333
564
- #: settings.php:1188
565
  msgid "Title"
566
  msgstr "Naslov"
567
 
568
- #: ad-inserter.php:9669
569
  msgctxt "Widget"
570
  msgid "Sticky"
571
  msgstr "Lepljiv"
572
 
573
- #: ad-inserter.php:9718
574
  msgid ""
575
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
576
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -579,7 +579,7 @@ msgstr ""
579
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
580
  "Inserter Pro."
581
 
582
- #: ad-inserter.php:9719
583
  msgid ""
584
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
585
  "will clear all settings that are available only in the Pro version "
@@ -594,166 +594,166 @@ msgstr ""
594
  msgid "PHP error in %s block"
595
  msgstr "PHP napaka v bloku %s"
596
 
597
- #: class.php:2073
598
  msgid "Counters"
599
  msgstr "Števci"
600
 
601
- #: class.php:2077
602
  msgid "Content"
603
  msgstr "Vsebina"
604
 
605
- #: class.php:2082
606
  msgid "Excerpt"
607
  msgstr "Izvleček"
608
 
609
- #: class.php:2087 strings.php:17
610
  msgid "Before post"
611
  msgstr "Pred prispevkom"
612
 
613
- #: class.php:2092 strings.php:18
614
  msgid "After post"
615
  msgstr "Za prispevkom"
616
 
617
- #: class.php:2097 strings.php:25
618
  msgid "Between posts"
619
  msgstr "Med prispevki"
620
 
621
- #: class.php:2102 settings.php:1897 settings.php:4206
622
  msgid "Widget"
623
  msgstr "Gradnik"
624
 
625
- #: class.php:2107 settings.php:4204
626
  msgid "PHP function call"
627
  msgstr "Klic PHP funkcije"
628
 
629
  #. Translators: %s: custom hook name
630
- #: class.php:2117
631
  msgid "Custom hook %s call"
632
  msgstr "Klic ročice po meri %s"
633
 
634
- #: class.php:2153
635
  msgid "AJAX REQUEST"
636
  msgstr "AJAX ZAHTEVEK"
637
 
638
- #: class.php:2156
639
  msgid "Ajax request for block in iframe"
640
  msgstr "Ajax zahtevek za blok v iframe-u"
641
 
642
- #: class.php:2190
643
  msgid "Ajax request url, click to open it in a new tab"
644
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
645
 
646
- #: class.php:2193
647
  msgid "IN THE LOOP"
648
  msgstr "V ZANKI"
649
 
650
- #: class.php:2193
651
  msgid "YES"
652
  msgstr "DA"
653
 
654
- #: class.php:2193
655
  msgid "NO"
656
  msgstr "NE"
657
 
658
- #: class.php:2229
659
  msgid "BLOCK"
660
  msgstr "BLOK"
661
 
662
- #: class.php:2229
663
  msgctxt "block or widget"
664
  msgid "INSERTED BUT NOT VISIBLE"
665
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
666
 
667
- #: class.php:2397
668
  msgctxt "viewports"
669
  msgid "ALL"
670
  msgstr "VSI"
671
 
672
- #: class.php:2430 class.php:2472 class.php:3727 strings.php:267
673
  msgctxt "Block"
674
  msgid "HIDDEN"
675
  msgstr "SKRIT"
676
 
677
- #: class.php:2479 class.php:3730 strings.php:266
678
  msgctxt "Block"
679
  msgid "VISIBLE"
680
  msgstr "VIDEN"
681
 
682
- #: class.php:2984 class.php:3054
683
  msgid "ACTIVE GROUPS"
684
  msgstr "AKTIVNE SKUPINE"
685
 
686
- #: class.php:3426
687
  msgid "start='%s' end='%s' days='%s' type='%s'"
688
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
689
 
690
  #. translators: %s: list parameters and type
691
- #: class.php:3434
692
  msgid "parameters='%s' type='%s'"
693
  msgstr "parametri='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
- #: class.php:3436
697
  msgid "referers='%s' type='%s'"
698
  msgstr "napotitelji='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
- #: class.php:3438
702
  msgid "clients='%s' type='%s'"
703
  msgstr "odjemalci='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
- #: class.php:3610
707
  msgid "countries='%s' type='%s'"
708
  msgstr "države='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
- #: class.php:3612
712
  msgid "ip addresses='%s' type='%s'"
713
  msgstr "ip naslovi='%s' tip='%s'"
714
 
715
- #: class.php:3727 class.php:3730
716
  msgid "viewport='%s' type='%s'"
717
  msgstr "pogled='%s' tip='%s'"
718
 
719
- #: class.php:4113 strings.php:249
720
  msgid "BEFORE"
721
  msgstr "PRED"
722
 
723
- #: class.php:4121 strings.php:251
724
  msgid "PREPEND CONTENT"
725
  msgstr "DODAJ PRED VSEBINO"
726
 
727
- #: class.php:4125 strings.php:252
728
  msgid "APPEND CONTENT"
729
  msgstr "DODAJ ZA VSEBINO"
730
 
731
- #: class.php:4129 strings.php:253
732
  msgid "REPLACE CONTENT"
733
  msgstr "NADOMESTI VSEBINO"
734
 
735
- #: class.php:4133 strings.php:254
736
  msgid "REPLACE ELEMENT"
737
  msgstr "NADOMESTI ELEMENT"
738
 
739
- #: class.php:4144 strings.php:250
740
  msgid "AFTER"
741
  msgstr "ZA"
742
 
743
- #: class.php:4229 includes/preview.php:2045 includes/preview.php:2082
744
  msgid "Code"
745
  msgstr "Koda"
746
 
747
- #: class.php:4232
748
  msgid "for block"
749
  msgstr "za blok"
750
 
751
- #: class.php:7451 class.php:7503
752
  msgctxt "category name"
753
  msgid "Uncategorized"
754
  msgstr "Nekategorizirano"
755
 
756
- #: class.php:8041
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
@@ -771,7 +771,7 @@ msgid "Reset"
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
- #: includes/preview.php:1991 settings.php:3598 strings.php:210 strings.php:255
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
@@ -798,19 +798,19 @@ msgid "PAGE BLOCKED"
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
- #: includes/functions.php:299
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
- #: includes/functions.php:318
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
- #: includes/functions.php:395
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
@@ -819,47 +819,47 @@ msgstr ""
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
- #: includes/functions.php:395
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
- #: includes/functions.php:399
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
- #: includes/functions.php:419
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
- #: includes/functions.php:422
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
- #: includes/functions.php:424
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
- #: includes/functions.php:431
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
- #: includes/functions.php:431
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
- #: includes/functions.php:446
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
- #: includes/functions.php:449
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
@@ -868,90 +868,90 @@ msgstr ""
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
- #: includes/functions.php:450 settings.php:1339 settings.php:2811
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
- #: includes/functions.php:455
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
- #: includes/functions.php:458
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
- #: includes/functions.php:469
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
- #: includes/functions.php:484
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
- #: includes/functions.php:484
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
- #: includes/functions.php:491
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
- #: includes/functions.php:496
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
- #: includes/functions.php:510
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
- #: includes/functions.php:518 includes/functions.php:3107
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
- #: includes/functions-check-now.php:528 includes/functions.php:527
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
- #: includes/functions.php:542
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
- #: includes/functions.php:546
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
- #: includes/functions.php:550
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
- #: includes/functions.php:558 settings.php:1093 settings.php:2255
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
- #: includes/functions.php:618 includes/preview.php:2131
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
- #: includes/functions.php:641
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
@@ -960,12 +960,12 @@ msgstr ""
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
- #: includes/functions.php:649 includes/preview.php:2186
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
- #: includes/functions.php:664
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
@@ -974,17 +974,17 @@ msgstr ""
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
- #: includes/functions.php:689 includes/preview.php:2237
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
- #: includes/functions.php:707
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
- #: includes/functions.php:716
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
@@ -993,64 +993,64 @@ msgstr ""
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
- #: includes/functions.php:720
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
- #: includes/functions.php:720
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
- #: includes/functions.php:724
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
- #: includes/functions.php:724
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
- #: includes/functions.php:728
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
- #: includes/functions.php:730
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
- #: includes/functions.php:772 includes/functions.php:2597
1029
- #: includes/functions.php:2613
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
- #: includes/functions.php:776 includes/functions.php:2601
1037
- #: includes/functions.php:2617
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
- #: includes/functions.php:783
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
- #: includes/functions.php:789 settings.php:3533 settings.php:3569
1048
- #: settings.php:3611 strings.php:220
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
- #: includes/functions.php:810
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
@@ -1059,84 +1059,84 @@ msgstr ""
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
- #: includes/functions.php:814
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
- #: includes/functions.php:817 includes/functions.php:5542
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
- #: includes/functions.php:817 includes/functions.php:5542
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
- #: includes/functions.php:820 includes/functions.php:5545
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
- #: includes/functions.php:820 includes/functions.php:5545
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
- #: includes/functions.php:823 includes/functions.php:5548
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
- #: includes/functions.php:823 includes/functions.php:5548
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
- #: includes/functions.php:826 includes/functions.php:5551
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
- #: includes/functions.php:829 includes/functions.php:5554
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
- #: includes/functions.php:832 includes/functions.php:5557
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
- #: includes/functions.php:835 includes/functions.php:5560
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
- #: includes/functions.php:838 includes/functions.php:5563
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
- #: includes/functions.php:848 includes/functions.php:5573
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
- #: includes/functions.php:864
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
@@ -1145,12 +1145,12 @@ msgstr ""
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
- #: includes/functions.php:864
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
- #: includes/functions.php:868
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
@@ -1161,49 +1161,49 @@ msgstr ""
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
- #: includes/functions.php:868
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
- #: includes/functions.php:872
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
- #: includes/functions.php:885
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
- #: includes/functions.php:895
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
- #: includes/functions.php:897
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
- #: includes/functions.php:927
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
- #: includes/functions.php:933
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
- #: includes/functions.php:936
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
- #: includes/functions.php:939
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1212,61 +1212,61 @@ msgstr ""
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
- #: includes/functions.php:948
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
- #: includes/functions.php:952
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
- #: includes/functions.php:963
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
- #: includes/functions.php:964
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
- #: includes/functions.php:968 includes/functions.php:3072
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
- #: includes/functions.php:971
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
- #: includes/functions.php:975 includes/functions.php:3075
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
- #: includes/functions.php:984
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
- #: includes/functions.php:988
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
- #: includes/functions.php:1423 includes/functions.php:1730
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
- #: includes/functions.php:1429
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
@@ -1275,63 +1275,63 @@ msgstr ""
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
- #: includes/functions-check-now.php:1402 includes/functions.php:1443
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
- #: includes/functions-check-now.php:1404 includes/functions.php:1445
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
- #: includes/functions-check-now.php:1406 includes/functions.php:1447
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
- #: includes/functions.php:1452 includes/functions.php:1739
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
- #: includes/functions.php:1458
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
- #: includes/functions.php:1467
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
- #: includes/functions.php:1468
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
- #: includes/functions.php:1476
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
- #: includes/functions.php:1477
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
- #: includes/functions.php:1477
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
- #: includes/functions.php:1732
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
@@ -1341,13 +1341,13 @@ msgstr ""
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
- #: includes/functions.php:1741
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
- #: includes/functions.php:1757
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1358,7 +1358,7 @@ msgstr ""
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
- #: includes/functions.php:1764
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1367,28 +1367,28 @@ msgstr ""
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
- #: includes/functions.php:1774
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
- #: includes/functions.php:1777
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
- #: includes/functions.php:1791
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
- #: includes/functions.php:1793
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
- #: includes/functions.php:1804
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1399,122 +1399,122 @@ msgstr ""
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
- #: includes/functions.php:1836
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
- #: includes/functions.php:2390
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
- #: includes/functions.php:2394 settings.php:4193
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
- #: includes/functions.php:2399
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
- #: includes/functions.php:2404 settings.php:4199
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
- #: includes/functions.php:2435
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
- #: includes/functions.php:2444
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
- #: includes/functions.php:2448
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
- #: includes/functions.php:2474 settings.php:1421 settings.php:1436
1446
- #: settings.php:1526 settings.php:2152
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
- #: includes/functions.php:2456
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
- #: includes/functions.php:2457
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
- #: includes/functions.php:2494
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
- #: includes/functions.php:2498 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
- #: includes/functions.php:2499
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
- #: includes/functions.php:2505 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
- #: includes/functions.php:2506
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
- #: includes/functions.php:2513
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
- #: includes/functions.php:2518
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
- #: includes/functions.php:2518 includes/preview.php:2000 settings.php:1088
1498
- #: settings.php:2873
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
- #: includes/functions.php:2532 settings.php:4200
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
- #: includes/functions.php:2537 includes/functions.php:4519
1511
- #: includes/functions.php:4582 settings.php:2302
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
- #: includes/functions.php:2546
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
@@ -1525,7 +1525,7 @@ msgstr ""
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
- #: includes/functions.php:2555
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
@@ -1534,18 +1534,18 @@ msgstr ""
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
- #: includes/functions.php:2621
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
- #: includes/functions.php:2625
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
- #: includes/functions.php:2639
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
@@ -1553,8 +1553,8 @@ msgstr "Splošne omejitve"
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
- #: includes/functions.php:2645 includes/functions.php:2657
1557
- #: includes/functions.php:2742
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
@@ -1574,15 +1574,15 @@ msgstr "Trenutna vrednost"
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
- #: includes/functions.php:2664 includes/functions.php:2674
1578
- #: includes/functions.php:2693 includes/functions.php:2703
1579
- #: includes/functions.php:2749 includes/functions.php:2758
1580
- #: includes/functions.php:2776 includes/functions.php:2785 settings.php:2073
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
- #: includes/functions.php:2665
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
@@ -1598,8 +1598,8 @@ msgstr ""
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
- #: includes/functions.php:2667 includes/functions.php:2677
1602
- #: includes/functions.php:2752 includes/functions.php:2761
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
@@ -1608,7 +1608,7 @@ msgstr[2] "prikazi"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
- #: includes/functions.php:2675
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
@@ -1623,14 +1623,14 @@ msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
- #: includes/functions.php:2681 includes/functions.php:2710
1627
- #: includes/functions.php:2765 includes/functions.php:2792
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
- #: includes/functions.php:2682 includes/functions.php:2711
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
@@ -1645,9 +1645,9 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
- #: includes/functions.php:2684 includes/functions.php:2713
1649
- #: includes/functions.php:2768 includes/functions.php:2795
1650
- #: includes/functions.php:2901 includes/functions.php:3233 strings.php:201
1651
  #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1652
  #: strings.php:206
1653
  msgid "day"
@@ -1658,7 +1658,7 @@ msgstr[2] "dni"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
- #: includes/functions.php:2694
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
@@ -1674,9 +1674,9 @@ msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
- #: includes/functions.php:2696 includes/functions.php:2706
1678
- #: includes/functions.php:2779 includes/functions.php:2788
1679
- #: includes/functions.php:4730
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
@@ -1685,20 +1685,20 @@ msgstr[2] "kliki"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
- #: includes/functions.php:2704
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
- #: includes/functions.php:2729
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
- #: includes/functions.php:2733 includes/functions.php:2735
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
@@ -1711,12 +1711,12 @@ msgstr ""
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
- #: includes/functions.php:2735
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
- #: includes/functions.php:2750
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
@@ -1725,7 +1725,7 @@ msgstr ""
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
- #: includes/functions.php:2759
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
@@ -1735,7 +1735,7 @@ msgstr ""
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
- #: includes/functions.php:2766 includes/functions.php:2793
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
@@ -1744,7 +1744,7 @@ msgstr ""
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
- #: includes/functions.php:2777
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
@@ -1753,7 +1753,7 @@ msgstr ""
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
- #: includes/functions.php:2786
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
@@ -1762,39 +1762,39 @@ msgstr ""
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
- #: includes/functions.php:2812
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
- #: includes/functions.php:2821
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
- #: includes/functions.php:2822
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
- #: includes/functions.php:2823
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
- #: includes/functions.php:2840 includes/functions.php:5786
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
- #: includes/functions.php:2892
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
- #: includes/functions.php:2893
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
@@ -1804,12 +1804,12 @@ msgstr ""
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
- #: includes/functions.php:2898
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
- #: includes/functions.php:2899
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1821,12 +1821,12 @@ msgstr ""
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
- #: includes/functions.php:2919
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
- #: includes/functions.php:2920
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
@@ -1838,7 +1838,7 @@ msgstr ""
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
- #: includes/functions.php:2922 includes/functions.php:2929
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
@@ -1848,7 +1848,7 @@ msgstr[3] "ogledov strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
- #: includes/functions.php:2926
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
@@ -1857,7 +1857,7 @@ msgstr[2] "Prikaži vsake"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
- #: includes/functions.php:2927
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
@@ -1866,33 +1866,33 @@ msgstr ""
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
- #: includes/functions.php:2946
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
- #: includes/functions.php:3007
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
- #: includes/functions.php:3018
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
- #: includes/functions.php:3021
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
- #: includes/functions.php:3032
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
- #: includes/functions.php:3035
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
@@ -1901,12 +1901,12 @@ msgstr ""
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
- #: includes/functions.php:3043
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
- #: includes/functions.php:3046
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
@@ -1916,17 +1916,17 @@ msgstr ""
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
- #: includes/functions.php:3064
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
- #: includes/functions.php:3070
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
- #: includes/functions.php:3115
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
@@ -1935,38 +1935,38 @@ msgstr ""
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
- #: includes/functions.php:3122
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
- #: includes/functions.php:3130
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
- #: includes/functions.php:3131 settings.php:2761
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
- #: includes/functions.php:3147
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
- #: includes/functions.php:3151
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
- #: includes/functions.php:3156
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
- #: includes/functions.php:3160
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
@@ -1975,32 +1975,32 @@ msgstr ""
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
- #: includes/functions.php:3165
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
- #: includes/functions.php:3171
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
- #: includes/functions.php:3181
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
- #: includes/functions.php:3187
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
- #: includes/functions.php:3197
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
- #: includes/functions.php:3203
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -2009,22 +2009,22 @@ msgstr ""
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
- #: includes/functions.php:3222
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
- #: includes/functions.php:3226
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
- #: includes/functions.php:3232
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
- #: includes/functions.php:3233
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -2034,12 +2034,12 @@ msgstr ""
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
- #: includes/functions.php:3252
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
- #: includes/functions.php:3255
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -2050,17 +2050,17 @@ msgstr ""
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
- #: includes/functions.php:3256 strings.php:232
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
- #: includes/functions.php:3261
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
- #: includes/functions.php:3264
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
@@ -2069,12 +2069,12 @@ msgstr ""
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
- #: includes/functions.php:3269
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
- #: includes/functions.php:3272
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
@@ -2083,12 +2083,12 @@ msgstr ""
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
- #: includes/functions.php:3277
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
- #: includes/functions.php:3280
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
@@ -2097,139 +2097,139 @@ msgstr ""
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
- #: includes/functions.php:3285
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
- #: includes/functions.php:3288
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
- #: includes/functions.php:3320
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
- #: includes/functions.php:3321 settings.php:1191
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
- #: includes/functions.php:3328
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
- #: includes/functions.php:3328
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
- #: includes/functions.php:3333 settings.php:3842 settings.php:4276
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
- #: includes/functions.php:3351
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
- #: includes/functions.php:3352 includes/functions.php:3359
2145
- #: includes/functions.php:3363 includes/placeholders.php:353
2146
- #: includes/preview.php:2306 settings.php:1325 settings.php:3602
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
- #: includes/functions.php:3382
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
- #: includes/functions.php:3383
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
- #: includes/functions.php:3396
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
- #: includes/functions.php:3407
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
- #: includes/functions.php:3412
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
- #: includes/functions.php:3412
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
- #: includes/functions.php:3417
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
- #: includes/functions.php:3417
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
- #: includes/functions.php:3422
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
- #: includes/functions.php:3422
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
- #: includes/functions.php:3427
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
- #: includes/functions.php:3427
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
- #: includes/functions.php:3432
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
- #: includes/functions.php:3432
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
- #: includes/functions.php:3448 settings.php:2760
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
- #: includes/functions.php:3454
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
@@ -2244,8 +2244,8 @@ msgstr ""
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
- #: includes/functions.php:4151 includes/functions.php:4272
2248
- #: includes/functions.php:4292
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
@@ -2253,86 +2253,86 @@ msgstr "BLOKIRANJE OGLASOV"
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
- #: includes/functions.php:4152 includes/functions.php:4198
2257
- #: includes/functions.php:4266 includes/functions.php:4293
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
- #: includes/functions.php:4155 includes/functions.php:4265
2265
- #: includes/functions.php:4299
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
- #: includes/functions.php:4197 includes/functions.php:4204
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
- #: includes/functions.php:4372 includes/functions.php:4581
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
- #: includes/functions.php:4518
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
- #: includes/functions.php:4518
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
- #: includes/functions.php:4518
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
- #: includes/functions.php:4519
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
- #: includes/functions.php:4581
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
- #: includes/functions.php:4582 includes/functions.php:4583
2313
- #: includes/functions.php:4638
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
- #: includes/functions.php:4583
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
- #: includes/functions.php:4584
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
- #: includes/functions.php:4584 includes/functions.php:4644
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
- #: includes/functions.php:4726
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
@@ -2341,7 +2341,7 @@ msgstr[2] "oglede strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
- #: includes/functions.php:4726
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
@@ -2350,7 +2350,7 @@ msgstr[2] "prikazi"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
- #: includes/functions.php:4730
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
@@ -2359,19 +2359,19 @@ msgstr[2] "dogodki"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
- #: includes/functions.php:4825
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
- #: includes/functions.php:4846
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
- #: includes/functions.php:4870
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
@@ -2380,120 +2380,182 @@ msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
- #: includes/functions.php:5052 includes/functions.php:5144
2384
- #: includes/functions.php:5487 strings.php:186
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
- #: includes/functions.php:5393
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
- #: includes/functions.php:5398
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
- #: includes/functions.php:5403
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
- #: includes/functions.php:5408
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
- #: includes/functions.php:5413
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
- #: includes/functions.php:5418
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
- #: includes/functions.php:5423
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
- #: includes/functions.php:5428
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
- #: includes/functions.php:554
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
- #: includes/functions.php:944 includes/functions.php:980 settings.php:1652
2434
- #: settings.php:1683 settings.php:1714 settings.php:1745 settings.php:1776
2435
- #: settings.php:1807 settings.php:1837 settings.php:1867
2436
  msgid "Click to select black or white list"
2437
  msgstr "Klikni za za izbor črnega ali belega seznama"
2438
 
2439
  #. translators: %s: Ad Inserter Pro
2440
- #: includes/functions.php:1485
2441
  msgid "Invalid %s version."
2442
  msgstr "Neveljavna izdaja %s."
2443
 
2444
- #: includes/functions.php:1486
2445
  msgid "Check license"
2446
  msgstr "Preverite licenco"
2447
 
2448
- #: includes/functions.php:1498
2449
  msgid "License"
2450
  msgstr "Licenca"
2451
 
2452
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2453
- #: includes/functions.php:1816
2454
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2455
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2456
 
2457
- #: includes/functions.php:2472
 
 
 
 
 
 
 
 
 
2458
  msgid "Start date"
2459
  msgstr "Začetni datum"
2460
 
2461
- #: includes/functions.php:2472
2462
  msgid "Enter date in format yyyy-mm-dd"
2463
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2464
 
2465
- #: includes/functions.php:2473
2466
  msgid "Start time"
2467
  msgstr "Začetni čas"
2468
 
2469
- #: includes/functions.php:2473
2470
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2471
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2472
 
2473
- #: includes/functions.php:2475
2474
  msgid "End date"
2475
  msgstr "Končni datum"
2476
 
2477
- #: includes/functions.php:2476
2478
  msgid "End time"
2479
  msgstr "Končni čas"
2480
 
2481
- #: includes/functions.php:2479
2482
  msgid "Select wanted days in week"
2483
  msgstr "Izberite želene dneve v tednu"
2484
 
2485
- #. translators: %s: Ad Inserter Pro
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2486
  #: includes/functions.php:3437
 
 
 
 
 
 
 
 
 
2487
  msgid "Show link to %s settings page for each site on the Sites page"
2488
  msgstr ""
2489
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2490
  "Spletišča"
2491
 
2492
  #. translators: %s: Ad Inserter Pro
2493
- #: includes/functions.php:3437
2494
  msgid "Show link to %s on the Sites page"
2495
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2496
 
 
 
 
 
2497
  #: includes/placeholders.php:20
2498
  msgid "Custom"
2499
  msgstr "Po meri"
@@ -2518,7 +2580,7 @@ msgstr "Zapri urejevalnik polnila"
2518
  msgid "Placeholder"
2519
  msgstr "Polnilo"
2520
 
2521
- #: includes/placeholders.php:363 settings.php:934 settings.php:4277
2522
  msgid "Size"
2523
  msgstr "Velikost"
2524
 
@@ -2651,11 +2713,11 @@ msgstr "Prekliči"
2651
  msgid "Ad Blocking Detected Message Preview"
2652
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2653
 
2654
- #: includes/preview-adb.php:348 settings.php:2886
2655
  msgid "Message CSS"
2656
  msgstr "CSS sporočila"
2657
 
2658
- #: includes/preview-adb.php:353 settings.php:2894
2659
  msgid "Overlay CSS"
2660
  msgstr "CSS prevleke"
2661
 
@@ -2691,7 +2753,7 @@ msgstr "div za ovijanje"
2691
  msgid "background"
2692
  msgstr "ozadje"
2693
 
2694
- #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1286
2695
  msgid "Alignment"
2696
  msgstr "Poravnava"
2697
 
@@ -2836,7 +2898,7 @@ msgstr ""
2836
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2837
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2838
 
2839
- #: settings.php:188 settings.php:1175
2840
  msgid ""
2841
  "Settings for individual exceptions have been updated. Please check all "
2842
  "blocks that have exceptions and and then save settings."
@@ -2848,7 +2910,7 @@ msgstr ""
2848
  msgid "Online documentation"
2849
  msgstr "Spletna Dokumentacija"
2850
 
2851
- #: settings.php:234 settings.php:769 settings.php:2269
2852
  msgid "Show AdSense ad units"
2853
  msgstr "Pokaži oglasne enote AdSense"
2854
 
@@ -2856,7 +2918,7 @@ msgstr "Pokaži oglasne enote AdSense"
2856
  msgid "Edit ads.txt file"
2857
  msgstr "Uredi datoteko ads.txt"
2858
 
2859
- #: settings.php:246 settings.php:1118
2860
  msgid "Check theme for available positions for automatic insertion"
2861
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2862
 
@@ -3004,158 +3066,158 @@ msgstr ""
3004
  msgid "General Settings"
3005
  msgstr "Splošne Nastavitve"
3006
 
3007
- #: settings.php:717 settings.php:2613 settings.php:2680 settings.php:2866
3008
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3009
  msgstr ""
3010
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3011
 
3012
- #: settings.php:724
3013
  msgid "Toggle tools"
3014
  msgstr "Preklopi orodja"
3015
 
3016
- #: settings.php:732
3017
  msgid "Process PHP code in block"
3018
  msgstr "Procesiraj PHP kodo v bloku"
3019
 
3020
- #: settings.php:739
3021
  msgid "Disable insertion of this block"
3022
  msgstr "Onemogoči vstavljanje tega bloka"
3023
 
3024
- #: settings.php:751
3025
  msgid "Toggle code generator"
3026
  msgstr "Preklopi generator kode"
3027
 
3028
- #: settings.php:755
3029
  msgid "Toggle rotation editor"
3030
  msgstr "Preklopi urejevalnik rotacije"
3031
 
3032
- #: settings.php:759
3033
  msgid "Open visual HTML editor"
3034
  msgstr "Odpri vizualni HTML urejevalnik"
3035
 
3036
- #: settings.php:778
3037
  msgid "Clear block"
3038
  msgstr "Počisti blok"
3039
 
3040
- #: settings.php:783 settings.php:4149
3041
  msgid "Copy block"
3042
  msgstr "Kopiraj blok"
3043
 
3044
- #: settings.php:787
3045
  msgid "Paste name"
3046
  msgstr "Prilepi ime"
3047
 
3048
- #: settings.php:791
3049
  msgid "Paste code"
3050
  msgstr "Prilepi kodo"
3051
 
3052
- #: settings.php:795
3053
  msgid "Paste settings"
3054
  msgstr "Prilepi nastavitve"
3055
 
3056
- #: settings.php:799
3057
  msgid "Paste block (name, code and settings)"
3058
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3059
 
3060
- #: settings.php:818
3061
  msgid "Rotation groups"
3062
  msgstr "Skupine za rotacijo"
3063
 
3064
- #: settings.php:822
3065
  msgid "Remove option"
3066
  msgstr "Odstrani različico"
3067
 
3068
- #: settings.php:826
3069
  msgid "Add option"
3070
  msgstr "Dodaj različico"
3071
 
3072
- #: settings.php:841
3073
  msgid "Import code"
3074
  msgstr "Uvozi kodo"
3075
 
3076
- #: settings.php:845
3077
  msgid "Generate code"
3078
  msgstr "Generiraj kodo"
3079
 
3080
- #: settings.php:850
3081
  msgid "Banner"
3082
  msgstr "Pasica"
3083
 
3084
- #: settings.php:861
3085
  msgid "Image"
3086
  msgstr "Slika"
3087
 
3088
- #: settings.php:869
3089
  msgid "Link"
3090
  msgstr "Povezava"
3091
 
3092
- #: settings.php:880
3093
  msgid "Open link in a new tab"
3094
  msgstr "Odpri povezavo v novem zavihku"
3095
 
3096
- #: settings.php:881
3097
  msgid "Select Image"
3098
  msgstr "Izberi Sliko"
3099
 
3100
- #: settings.php:882
3101
  msgid "Select Placeholder"
3102
  msgstr "Izberi Polnilo"
3103
 
3104
- #: settings.php:894
3105
  msgid "Comment"
3106
  msgstr "Komentar"
3107
 
3108
- #: settings.php:903
3109
  msgctxt "AdSense"
3110
  msgid "Publisher ID"
3111
  msgstr "ID založnika"
3112
 
3113
- #: settings.php:912
3114
  msgctxt "AdSense"
3115
  msgid "Ad Slot ID"
3116
  msgstr "ID mesta"
3117
 
3118
- #: settings.php:921
3119
  msgid "Ad Type"
3120
  msgstr "Vrsta"
3121
 
3122
- #: settings.php:946
3123
  msgid "AMP Ad"
3124
  msgstr "AMP Oglas"
3125
 
3126
- #: settings.php:964
3127
  msgid "Show ad units from your AdSense account"
3128
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3129
 
3130
- #: settings.php:964
3131
  msgid "AdSense ad units"
3132
  msgstr "Oglasne enote AdSense"
3133
 
3134
- #: settings.php:981
3135
  msgctxt "AdSense"
3136
  msgid "Layout"
3137
  msgstr "Postavitev"
3138
 
3139
- #: settings.php:990
3140
  msgctxt "AdSense"
3141
  msgid "Layout Key"
3142
  msgstr "Ključ postavitve"
3143
 
3144
- #: settings.php:1000
3145
  msgid "Full width"
3146
  msgstr "Celotna širina"
3147
 
3148
- #: settings.php:1002
3149
  msgctxt "Full width"
3150
  msgid "Enabled"
3151
  msgstr "Omogočena"
3152
 
3153
- #: settings.php:1003
3154
  msgctxt "Full width"
3155
  msgid "Disabled"
3156
  msgstr "Onemogočena"
3157
 
3158
- #: settings.php:1084
3159
  msgid ""
3160
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3161
  "Cookie or Referer (domain)"
@@ -3163,28 +3225,28 @@ msgstr ""
3163
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3164
  "parametrov, Piškotkov ali napotiteljev (domen)"
3165
 
3166
- #: settings.php:1084
3167
  msgid "Lists"
3168
  msgstr "Seznami"
3169
 
3170
- #: settings.php:1085
3171
  msgid "Widget, Shortcode and PHP function call"
3172
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3173
 
3174
- #: settings.php:1085
3175
  msgid "Manual"
3176
  msgstr "Ročno"
3177
 
3178
- #: settings.php:1086
3179
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3180
  msgstr ""
3181
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3182
 
3183
- #: settings.php:1086
3184
  msgid "Devices"
3185
  msgstr "Naprave"
3186
 
3187
- #: settings.php:1087
3188
  msgid ""
3189
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3190
  "feeds), Filter, Scheduling, General tag"
@@ -3192,15 +3254,15 @@ msgstr ""
3192
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3193
  "RSS), Filter, Urnik, Splošna oznaka"
3194
 
3195
- #: settings.php:1087
3196
  msgid "Misc"
3197
  msgstr "Razno"
3198
 
3199
- #: settings.php:1088
3200
  msgid "Preview code and alignment"
3201
  msgstr "Predogled kode in poravnave"
3202
 
3203
- #: settings.php:1091 settings.php:2253
3204
  msgid ""
3205
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3206
  "editor is active before saving settings."
@@ -3208,15 +3270,15 @@ msgstr ""
3208
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3209
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3210
 
3211
- #: settings.php:1104 settings.php:1105
3212
  msgid "Enable insertion on posts"
3213
  msgstr "Omogoči vstavljanje na prispevkih"
3214
 
3215
- #: settings.php:1105 settings.php:3414
3216
  msgid "Posts"
3217
  msgstr "Prispevki"
3218
 
3219
- #: settings.php:1109 settings.php:1110
3220
  msgid ""
3221
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3222
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3226,43 +3288,43 @@ msgstr ""
3226
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3227
  "lahko odvisni od ročic, ki jih tema uporablja)"
3228
 
3229
- #: settings.php:1110 settings.php:3416
3230
  msgid "Homepage"
3231
  msgstr "Domača stran"
3232
 
3233
- #: settings.php:1114 settings.php:1115
3234
  msgid "Enable insertion on category blog pages (including sub-pages)"
3235
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3236
 
3237
- #: settings.php:1115 settings.php:3417
3238
  msgid "Category pages"
3239
  msgstr "Strani kategorij"
3240
 
3241
- #: settings.php:1125 settings.php:1126
3242
  msgid "Enable insertion on static pages"
3243
  msgstr "Omogoči vstavljanje na statičnih straneh"
3244
 
3245
- #: settings.php:1126 settings.php:3415
3246
  msgid "Static pages"
3247
  msgstr "Statične strani"
3248
 
3249
- #: settings.php:1130 settings.php:1131
3250
  msgid "Enable insertion on search blog pages"
3251
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3252
 
3253
- #: settings.php:1131 settings.php:3419
3254
  msgid "Search pages"
3255
  msgstr "Iskalne strani"
3256
 
3257
- #: settings.php:1135 settings.php:1136
3258
  msgid "Enable insertion on tag or archive blog pages"
3259
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3260
 
3261
- #: settings.php:1139
3262
  msgid "Toggle settings for default insertion and list of individual exceptions"
3263
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3264
 
3265
- #: settings.php:1151
3266
  msgid ""
3267
  "Enable individual post/page exceptions for insertion of this block. They can "
3268
  "be configured on the individual post/page editor page (in the settings below "
@@ -3272,7 +3334,7 @@ msgstr ""
3272
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3273
  "nastavitvah pod urejevalnikom)."
3274
 
3275
- #: settings.php:1152
3276
  msgid ""
3277
  "Enable individual post/page exceptions for insertion of this block. When "
3278
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3282,13 +3344,13 @@ msgstr ""
3282
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3283
  "strani (v nastavitvah pod urejevalnikom)."
3284
 
3285
- #: settings.php:1152
3286
  msgid "Use exceptions for individual posts or pages to change insertion"
3287
  msgstr ""
3288
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3289
 
3290
  #. Translators: Enabled means...
3291
- #: settings.php:1160
3292
  msgid ""
3293
  "means the insertion for this block is enabled by default and disabled for "
3294
  "exceptions."
@@ -3297,7 +3359,7 @@ msgstr ""
3297
  "izjeme."
3298
 
3299
  #. Translators: Disabled means...
3300
- #: settings.php:1161
3301
  msgid ""
3302
  "means the insertion for this block is disabled by default and enabled for "
3303
  "exceptions."
@@ -3305,7 +3367,7 @@ msgstr ""
3305
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3306
  "izjeme."
3307
 
3308
- #: settings.php:1162
3309
  msgid ""
3310
  "When individual post/page exceptions are enabled they can be configured on "
3311
  "the individual post/page editor page (in the settings below the editor)."
@@ -3314,27 +3376,27 @@ msgstr ""
3314
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3315
  "urejevalnikom)."
3316
 
3317
- #: settings.php:1170
3318
  msgid ""
3319
  "No exception for post or static page defined. Block will not be inserted."
3320
  msgstr ""
3321
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3322
 
3323
- #: settings.php:1188
3324
  msgctxt "post"
3325
  msgid "Type"
3326
  msgstr "Vrsta"
3327
 
3328
  #. translators: %d: block number
3329
- #: settings.php:1190
3330
  msgid "Are you sure you want to clear all exceptions for block %d?"
3331
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
3332
 
3333
- #: settings.php:1217 settings.php:1365 settings.php:2027
3334
  msgid "Insertion"
3335
  msgstr "Vstavljanje"
3336
 
3337
- #: settings.php:1255
3338
  msgid ""
3339
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3340
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3350,7 +3412,7 @@ msgstr ""
3350
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3351
  "število pomeni štetje z nasprotne smeri"
3352
 
3353
- #: settings.php:1256
3354
  msgid ""
3355
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3356
  "means every N images, empty means all images, 0 means random image, value "
@@ -3365,7 +3427,7 @@ msgstr ""
3365
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3366
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3367
 
3368
- #: settings.php:1269
3369
  msgid ""
3370
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3371
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3374,7 +3436,7 @@ msgstr ""
3374
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3375
  "izvlečki"
3376
 
3377
- #: settings.php:1270
3378
  msgid ""
3379
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3380
  "numbers, %N means every N posts, empty means all posts"
@@ -3383,7 +3445,7 @@ msgstr ""
3383
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3384
  "prispevki"
3385
 
3386
- #: settings.php:1271
3387
  msgid ""
3388
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3389
  "numbers, %N means every N comments, empty means all comments"
@@ -3392,44 +3454,44 @@ msgstr ""
3392
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3393
  "vsi komentarji"
3394
 
3395
- #: settings.php:1278
3396
  msgid "Toggle paragraph counting settings"
3397
  msgstr "Preklopi nastavitve za štetje odstavkov"
3398
 
3399
- #: settings.php:1279
3400
  msgid "Toggle paragraph clearance settings"
3401
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3402
 
3403
- #: settings.php:1282
3404
  msgid "Toggle insertion filter settings"
3405
  msgstr "Preklopi nastavitve filtra vstavljanja"
3406
 
3407
- #: settings.php:1300
3408
  msgid "Toggle insertion and alignment icons"
3409
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3410
 
3411
- #: settings.php:1314
3412
  msgid "Custom CSS code for the wrapping div"
3413
  msgstr "CSS koda po meri za div za ovijanje"
3414
 
3415
- #: settings.php:1317 settings.php:1318 settings.php:1319 settings.php:1320
3416
- #: settings.php:1321 settings.php:1322
3417
  msgid "CSS code for the wrapping div, click to edit"
3418
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3419
 
3420
- #: settings.php:1335
3421
  msgid "HTML element"
3422
  msgstr "HTML element"
3423
 
3424
- #: settings.php:1348
3425
  msgid "HTML element selector or comma separated list of selectors"
3426
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3427
 
3428
- #: settings.php:1354 settings.php:2771
3429
  msgid "Action"
3430
  msgstr "Akcija"
3431
 
3432
- #: settings.php:1366
3433
  msgid ""
3434
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3435
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3439,50 +3501,50 @@ msgstr ""
3439
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3440
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3441
 
3442
- #: settings.php:1375
3443
  msgid "Code position"
3444
  msgstr "Položaj kode"
3445
 
3446
- #: settings.php:1376
3447
  msgid ""
3448
  "Page position where the code for client-side insertion will be inserted."
3449
  msgstr ""
3450
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3451
 
3452
- #: settings.php:1391
3453
  msgid "Count"
3454
  msgstr "Štej"
3455
 
3456
- #: settings.php:1397
3457
  msgid "paragraphs with tags"
3458
  msgstr "odstavke z značkami"
3459
 
3460
- #: settings.php:1403
3461
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3462
  msgstr ""
3463
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3464
 
3465
- #: settings.php:1412
3466
  msgid "that have between"
3467
  msgstr "ki imajo med"
3468
 
3469
- #: settings.php:1418
3470
  msgid "Minimum number of paragraph words, leave empty for no limit"
3471
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3472
 
3473
- #: settings.php:1427
3474
  msgid "Maximum number of paragraph words, leave empty for no limit"
3475
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3476
 
3477
- #: settings.php:1430
3478
  msgid "words"
3479
  msgstr "besed"
3480
 
3481
- #: settings.php:1445 settings.php:1504 settings.php:1574 settings.php:1600
3482
  msgid "Comma separated texts"
3483
  msgstr "Z vejico ločena besedila"
3484
 
3485
- #: settings.php:1458
3486
  msgid ""
3487
  "Count also paragraphs inside these elements - defined on general plugin "
3488
  "settings page - tab [*] / tab General"
@@ -3491,38 +3553,38 @@ msgstr ""
3491
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3492
 
3493
  #. Translators: %s: HTML tags
3494
- #: settings.php:1464
3495
  msgid "Count inside %s elements"
3496
  msgstr "Štej znotraj elementov %s"
3497
 
3498
  #. translators: inside [HTML tags] elements that contain
3499
- #: settings.php:1476
3500
  msgid "inside"
3501
  msgstr "znotraj"
3502
 
3503
- #: settings.php:1482
3504
  msgid "Comma separated HTML tag names of container elements"
3505
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3506
 
3507
  #. translators: inside [HTML tags] elements that contain
3508
- #: settings.php:1491
3509
  msgid "elements that"
3510
  msgstr "elementov, ki"
3511
 
3512
- #: settings.php:1517 settings.php:2150
3513
  msgid "Post/Static page must have between"
3514
  msgstr "Prispevek/Statična stran mora imeti med"
3515
 
3516
- #: settings.php:1523
3517
  msgid "Minimum number of paragraphs, leave empty for no limit"
3518
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3519
 
3520
- #: settings.php:1532
3521
  msgid "Maximum number of paragraphs, leave empty for no limit"
3522
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3523
 
3524
  #. Translators: Post/Static page must have between X and Y paragraphs
3525
- #: settings.php:1535
3526
  msgid "paragraph"
3527
  msgid_plural "paragraphs"
3528
  msgstr[0] "odstavek"
@@ -3530,11 +3592,11 @@ msgstr[1] "odstavka"
3530
  msgstr[2] "odstavke"
3531
  msgstr[3] "odstavkov"
3532
 
3533
- #: settings.php:1543
3534
  msgid "Minimum number of words in paragraphs above"
3535
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3536
 
3537
- #: settings.php:1549
3538
  msgid ""
3539
  "Used only with automatic insertion After paragraph and empty paragraph "
3540
  "numbers"
@@ -3542,128 +3604,128 @@ msgstr ""
3542
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3543
  "številkami odstavkov"
3544
 
3545
- #: settings.php:1559 settings.php:1585
3546
  msgid "In"
3547
  msgstr "V"
3548
 
3549
- #: settings.php:1565
3550
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3551
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3552
 
3553
- #: settings.php:1568
3554
  msgid "paragraphs above avoid"
3555
  msgstr "odstavkih zgoraj se izogni"
3556
 
3557
- #: settings.php:1591
3558
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3559
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3560
 
3561
- #: settings.php:1594
3562
  msgid "paragraphs below avoid"
3563
  msgstr "odstavkih spodaj se izogni"
3564
 
3565
- #: settings.php:1610
3566
  msgid "If text is found"
3567
  msgstr "Če je besedilo najdeno"
3568
 
3569
- #: settings.php:1617
3570
  msgid "check up to"
3571
  msgstr "preveri do"
3572
 
3573
- #: settings.php:1625
3574
  msgctxt "check up to"
3575
  msgid "paragraphs"
3576
  msgstr "odstavkov"
3577
 
3578
- #: settings.php:1641
3579
  msgid "Categories"
3580
  msgstr "Kategorije"
3581
 
3582
- #: settings.php:1644
3583
  msgid "Toggle category editor"
3584
  msgstr "Preklopi urejevalnik kategorij"
3585
 
3586
- #: settings.php:1647
3587
  msgid "Comma separated category slugs"
3588
  msgstr "Z vejico ločeni ključi kategorij"
3589
 
3590
- #: settings.php:1656
3591
  msgid "Blacklist categories"
3592
  msgstr "Črni seznam kategorij"
3593
 
3594
- #: settings.php:1660
3595
  msgid "Whitelist categories"
3596
  msgstr "Beli seznam kategorij"
3597
 
3598
- #: settings.php:1672
3599
  msgid "Tags"
3600
  msgstr "Oznake"
3601
 
3602
- #: settings.php:1675
3603
  msgid "Toggle tag editor"
3604
  msgstr "Preklopi urejevalnik oznak"
3605
 
3606
- #: settings.php:1678
3607
  msgid "Comma separated tag slugs"
3608
  msgstr "Z vejico ločeni ključi oznak"
3609
 
3610
- #: settings.php:1687
3611
  msgid "Blacklist tags"
3612
  msgstr "Črni seznam oznak"
3613
 
3614
- #: settings.php:1691
3615
  msgid "Whitelist tags"
3616
  msgstr "Beli seznam oznak"
3617
 
3618
- #: settings.php:1703
3619
  msgid "Taxonomies"
3620
  msgstr "Taksonomije"
3621
 
3622
- #: settings.php:1706
3623
  msgid "Toggle taxonomy editor"
3624
  msgstr "Preklopi urejevalnik taksonomij"
3625
 
3626
- #: settings.php:1709
3627
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3628
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3629
 
3630
- #: settings.php:1718
3631
  msgid "Blacklist taxonomies"
3632
  msgstr "Črni seznam taksonomij"
3633
 
3634
- #: settings.php:1722
3635
  msgid "Whitelist taxonomies"
3636
  msgstr "Beli seznam taksonomij"
3637
 
3638
- #: settings.php:1734
3639
  msgid "Post IDs"
3640
  msgstr "ID-ji prispevkov"
3641
 
3642
- #: settings.php:1737
3643
  msgid "Toggle post/page ID editor"
3644
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3645
 
3646
- #: settings.php:1740
3647
  msgid "Comma separated post/page IDs"
3648
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3649
 
3650
- #: settings.php:1749
3651
  msgid "Blacklist IDs"
3652
  msgstr "Črni seznam ID-jev"
3653
 
3654
- #: settings.php:1753
3655
  msgid "Whitelist IDs"
3656
  msgstr "Beli seznam ID-jev"
3657
 
3658
- #: settings.php:1765
3659
  msgid "Urls"
3660
  msgstr "Url-ji"
3661
 
3662
- #: settings.php:1768
3663
  msgid "Toggle url editor"
3664
  msgstr "Preklopi urejevalnik url-jev"
3665
 
3666
- #: settings.php:1771
3667
  msgid ""
3668
  "Comma separated urls (page addresses) starting with / after domain name (e."
3669
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3675,23 +3737,23 @@ msgstr ""
3675
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3676
  "začetek*. *url-vzorec*, *url-konec)"
3677
 
3678
- #: settings.php:1780
3679
  msgid "Blacklist urls"
3680
  msgstr "Črni seznam url-jev"
3681
 
3682
- #: settings.php:1784
3683
  msgid "Whitelist urls"
3684
  msgstr "Beli seznam url-jev"
3685
 
3686
- #: settings.php:1795
3687
  msgid "Url parameters"
3688
  msgstr "Url parametri"
3689
 
3690
- #: settings.php:1799
3691
  msgid "Toggle url parameter and cookie editor"
3692
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3693
 
3694
- #: settings.php:1802
3695
  msgid ""
3696
  "Comma separated url query parameters or cookies with optional values (use "
3697
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3700,23 +3762,23 @@ msgstr ""
3700
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3701
  "'piškotek=vrednost')"
3702
 
3703
- #: settings.php:1811
3704
  msgid "Blacklist url parameters"
3705
  msgstr "Črni seznam url parametrov"
3706
 
3707
- #: settings.php:1815
3708
  msgid "Whitelist url parameters"
3709
  msgstr "Beli seznam url parametrov"
3710
 
3711
- #: settings.php:1826
3712
  msgid "Referrers"
3713
  msgstr "Napotitelji"
3714
 
3715
- #: settings.php:1829
3716
  msgid "Toggle referer editor"
3717
  msgstr "Preklopi urejevalnik napotiteljev"
3718
 
3719
- #: settings.php:1832
3720
  msgid ""
3721
  "Comma separated domains, use # for no referrer, you can also use partial "
3722
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3724,48 +3786,48 @@ msgstr ""
3724
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3725
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3726
 
3727
- #: settings.php:1841
3728
  msgid "Blacklist referers"
3729
  msgstr "Črni seznam napotiteljev"
3730
 
3731
- #: settings.php:1845
3732
  msgid "Whitelist referers"
3733
  msgstr "Beli seznam napotiteljev"
3734
 
3735
- #: settings.php:1856
3736
  msgid "Clients"
3737
  msgstr "Odjemalci"
3738
 
3739
- #: settings.php:1859
3740
  msgid "Toggle client editor"
3741
  msgstr "Preklopi urejevalnik odjemalcev"
3742
 
3743
- #: settings.php:1862
3744
  msgid "Comma separated names (operating systems, browsers, devices)"
3745
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3746
 
3747
- #: settings.php:1871
3748
  msgid "Blacklist clients"
3749
  msgstr "Črni seznam odjemalcev"
3750
 
3751
- #: settings.php:1875
3752
  msgid "Whitelist clients"
3753
  msgstr "Beli seznam odjemalcev"
3754
 
3755
- #: settings.php:1896
3756
  msgid "Enable widget for this block"
3757
  msgstr "Omogočite gradnik za ta blok"
3758
 
3759
- #: settings.php:1908
3760
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3761
  msgstr ""
3762
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3763
 
3764
- #: settings.php:1909 settings.php:4205
3765
  msgid "Shortcode"
3766
  msgstr "Kratka koda"
3767
 
3768
- #: settings.php:1924
3769
  msgid ""
3770
  "Enable PHP function call to insert this block at any position in theme file. "
3771
  "If function is disabled for block it will return empty string."
@@ -3774,66 +3836,66 @@ msgstr ""
3774
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3775
  "prazen niz."
3776
 
3777
- #: settings.php:1925
3778
  msgid "PHP function"
3779
  msgstr "PHP funkcija"
3780
 
3781
- #: settings.php:1940
3782
  msgid "Client-side device detection"
3783
  msgstr "Zaznavanje naprave na strani odjemalca"
3784
 
3785
- #: settings.php:1941
3786
  msgid "Server-side device detection"
3787
  msgstr "Zaznavanje naprave na strani strežnika"
3788
 
3789
- #: settings.php:1948
3790
  msgid "Use client-side detection to"
3791
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3792
 
3793
- #: settings.php:1950
3794
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3795
  msgstr ""
3796
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3797
 
3798
  #. Translators: only on (the following devices): viewport names (devices)
3799
  #. listed
3800
- #: settings.php:1955
3801
  msgid "only on"
3802
  msgstr "samo na"
3803
 
3804
- #: settings.php:1983
3805
  msgid "Device min width %s px"
3806
  msgstr "Najmanjša širina naprave %s px"
3807
 
3808
- #: settings.php:2009
3809
  msgid "Use server-side detection to insert block only for"
3810
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3811
 
3812
- #: settings.php:2028
3813
  msgid "Filter"
3814
  msgstr "Filter"
3815
 
3816
- #: settings.php:2029
3817
  msgid "Word Count"
3818
  msgstr "Število Besed"
3819
 
3820
- #: settings.php:2030 settings.php:4195
3821
  msgid "Scheduling"
3822
  msgstr "Urnik"
3823
 
3824
- #: settings.php:2031
3825
  msgid "Display"
3826
  msgstr "Prikaz"
3827
 
3828
- #: settings.php:2033 settings.php:2295
3829
  msgid "General"
3830
  msgstr "Splošno"
3831
 
3832
- #: settings.php:2045
3833
  msgid "Old settings for AMP pages detected"
3834
  msgstr "Zaznane stare nastavitve za AMP strani"
3835
 
3836
- #: settings.php:2045
3837
  msgid ""
3838
  "To insert different codes on normal and AMP pages separate them with "
3839
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3844,44 +3906,44 @@ msgstr ""
3844
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3845
  "separatorja)."
3846
 
3847
- #: settings.php:2045
3848
  msgid "AMP pages"
3849
  msgstr "AMP strani"
3850
 
3851
- #: settings.php:2050
3852
  msgid "Enable insertion for Ajax requests"
3853
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3854
 
3855
- #: settings.php:2050
3856
  msgid "Ajax requests"
3857
  msgstr "Ajax zahteve"
3858
 
3859
- #: settings.php:2055
3860
  msgid "Enable insertion in RSS feeds"
3861
  msgstr "Omogoči vstavljanje v RSS virih"
3862
 
3863
- #: settings.php:2055
3864
  msgid "RSS Feed"
3865
  msgstr "RSS Vir"
3866
 
3867
- #: settings.php:2060
3868
  msgid "Enable insertion on page for Error 404: Page not found"
3869
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3870
 
3871
- #: settings.php:2060
3872
  msgid "Error 404 page"
3873
  msgstr "Stran napake 404"
3874
 
3875
- #: settings.php:2072
3876
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3877
  msgstr ""
3878
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3879
 
3880
- #: settings.php:2073
3881
  msgid "insertions"
3882
  msgstr "vstavljanj"
3883
 
3884
- #: settings.php:2075
3885
  msgid ""
3886
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3887
  "General)"
@@ -3889,15 +3951,15 @@ msgstr ""
3889
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3890
  "zavihek Splošno)"
3891
 
3892
- #: settings.php:2078 settings.php:2475
3893
  msgid "Max blocks per page"
3894
  msgstr "Največ blokov na stran"
3895
 
3896
- #: settings.php:2090
3897
  msgid "Insert for"
3898
  msgstr "Vstavi za"
3899
 
3900
- #: settings.php:2098
3901
  msgid ""
3902
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3903
  "currently active). Might speed up insertion on content pages when "
@@ -3907,26 +3969,26 @@ msgstr ""
3907
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3908
  "filter the_content večkrat klican."
3909
 
3910
- #: settings.php:2101
3911
  msgid "Insert only in the loop"
3912
  msgstr "Vstavi samo v zanki"
3913
 
3914
- #: settings.php:2107
3915
  msgid ""
3916
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3917
  msgstr ""
3918
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3919
  "Rocket"
3920
 
3921
- #: settings.php:2107
3922
  msgid "Disable caching"
3923
  msgstr "Onemogoči predpomnjenje"
3924
 
3925
- #: settings.php:2119
3926
  msgid "Filter insertions"
3927
  msgstr "Filtriraj vstavljanja"
3928
 
3929
- #: settings.php:2122
3930
  msgid ""
3931
  "Filter multiple insertions by specifying wanted insertions for this block - "
3932
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3938,56 +4000,56 @@ msgstr ""
3938
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3939
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3940
 
3941
- #: settings.php:2125
3942
  msgid "using"
3943
  msgstr "z uporabo"
3944
 
3945
- #: settings.php:2144
3946
  msgid "Checked means specified calls are unwanted"
3947
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3948
 
3949
- #: settings.php:2144
3950
  msgid "Invert filter"
3951
  msgstr "Obrni filter"
3952
 
3953
- #: settings.php:2151
3954
  msgid "Minimum number of post/static page words, leave empty for no limit"
3955
  msgstr ""
3956
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3957
  "omejitev"
3958
 
3959
- #: settings.php:2153
3960
  msgid "Maximum number of post/static page words, leave empty for no limit"
3961
  msgstr ""
3962
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3963
  "omejitev"
3964
 
3965
- #: settings.php:2166
3966
  msgid "for"
3967
  msgstr "za"
3968
 
3969
- #: settings.php:2166
3970
  msgid "days after publishing"
3971
  msgstr "dni po objavi"
3972
 
3973
- #: settings.php:2168
3974
  msgid "Not available"
3975
  msgstr "Ni na razpolago"
3976
 
3977
- #: settings.php:2181 settings.php:2467
3978
  msgid "Ad label"
3979
  msgstr "Oznaka oglasa"
3980
 
3981
- #: settings.php:2201
3982
  msgid "General tag"
3983
  msgstr "Splošna oznaka"
3984
 
3985
- #: settings.php:2205
3986
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3987
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3988
 
3989
  #. translators: %s: HTML tags
3990
- #: settings.php:2214
3991
  msgid ""
3992
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3993
  "client-side device detection!"
@@ -3996,7 +4058,7 @@ msgstr ""
3996
  "potrebna za zaznavanje naprave na strani odjemalca!"
3997
 
3998
  #. translators: %s: HTML tags for text and link
3999
- #: settings.php:2228
4000
  msgid ""
4001
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4002
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4005,86 +4067,86 @@ msgstr ""
4005
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4006
  "strežnika%s."
4007
 
4008
- #: settings.php:2244
4009
  msgid "Settings"
4010
  msgstr "Nastavitve"
4011
 
4012
- #: settings.php:2247
4013
  msgid "Settings timestamp"
4014
  msgstr "Časovni žig nastavitev"
4015
 
4016
- #: settings.php:2260
4017
  msgid "Are you sure you want to reset all settings?"
4018
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4019
 
4020
- #: settings.php:2260
4021
  msgid "Reset All Settings"
4022
  msgstr "Ponastavi Vse Nastavitve"
4023
 
4024
- #: settings.php:2296
4025
  msgid "Viewports"
4026
  msgstr "Pogledi"
4027
 
4028
- #: settings.php:2297
4029
  msgid "Hooks"
4030
  msgstr "Ročice"
4031
 
4032
- #: settings.php:2298
4033
  msgid "Header"
4034
  msgstr "Glava"
4035
 
4036
- #: settings.php:2299 strings.php:30
4037
  msgid "Footer"
4038
  msgstr "Noga"
4039
 
4040
- #: settings.php:2304
4041
  msgid "Debugging"
4042
  msgstr "Razhroščevanje"
4043
 
4044
- #: settings.php:2314
4045
  msgid "Plugin priority"
4046
  msgstr "Prednost vtičnika"
4047
 
4048
- #: settings.php:2322
4049
  msgid "Output buffering"
4050
  msgstr "Predpomnjenje izhoda"
4051
 
4052
- #: settings.php:2325
4053
  msgid "Needed for position Above header but may not work with all themes"
4054
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4055
 
4056
- #: settings.php:2333
4057
  msgid "Syntax highlighting theme"
4058
  msgstr "Tema za poudarjanje sintakse"
4059
 
4060
- #: settings.php:2340
4061
  msgctxt "no syntax highlighting themes"
4062
  msgid "None"
4063
  msgstr "Brez"
4064
 
4065
- #: settings.php:2341
4066
  msgid "No Syntax Highlighting"
4067
  msgstr "Brez Poudarjanja Sintakse"
4068
 
4069
- #: settings.php:2343
4070
  msgctxt "syntax highlighting themes"
4071
  msgid "Light"
4072
  msgstr "Svetle"
4073
 
4074
- #: settings.php:2358
4075
  msgctxt "syntax highlighting themes"
4076
  msgid "Dark"
4077
  msgstr "Temne"
4078
 
4079
- #: settings.php:2384
4080
  msgid "Min. user role for ind. exceptions editing"
4081
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4082
 
4083
- #: settings.php:2394
4084
  msgid "Disable caching for logged in administrators"
4085
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4086
 
4087
- #: settings.php:2397
4088
  msgid ""
4089
  "Enabled means that logged in administrators will see non-cached (live) pages "
4090
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4092,11 +4154,11 @@ msgstr ""
4092
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4093
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4094
 
4095
- #: settings.php:2405
4096
  msgid "Wait for jQuery"
4097
  msgstr "Čakaj na jQuery"
4098
 
4099
- #: settings.php:2408
4100
  msgid ""
4101
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4102
  "it will run the scripts that may need it"
@@ -4104,11 +4166,11 @@ msgstr ""
4104
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4105
  "bo pognal svoje skripte, ki jo potrebujejo"
4106
 
4107
- #: settings.php:2416
4108
  msgid "Sticky widget mode"
4109
  msgstr "Način za lepljive gradnike"
4110
 
4111
- #: settings.php:2419
4112
  msgid ""
4113
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4114
  "mode works with most themes but may reload ads on page load."
@@ -4117,19 +4179,19 @@ msgstr ""
4117
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4118
  "nalaganju strani."
4119
 
4120
- #: settings.php:2427
4121
  msgid "Sticky widget top margin"
4122
  msgstr "Zgornji rob za lepljiv gradnik"
4123
 
4124
- #: settings.php:2435
4125
  msgid "Dynamic blocks"
4126
  msgstr "Dinamični bloki"
4127
 
4128
- #: settings.php:2448
4129
  msgid "Functions for paragraph counting"
4130
  msgstr "Funkcije za štetje odstavkov"
4131
 
4132
- #: settings.php:2451
4133
  msgid ""
4134
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4135
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4138,15 +4200,15 @@ msgstr ""
4138
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4139
  "šteti."
4140
 
4141
- #: settings.php:2459
4142
  msgid "No paragraph counting inside"
4143
  msgstr "Ni štetja odstavkov znotraj"
4144
 
4145
- #: settings.php:2470
4146
  msgid "Label text or HTML code"
4147
  msgstr "Besedilo oznake ali HTML koda"
4148
 
4149
- #: settings.php:2478
4150
  msgid ""
4151
  "Maximum number of inserted blocks per page. You need to enable Max page "
4152
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4155,12 +4217,12 @@ msgstr ""
4155
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4156
  "omejitev."
4157
 
4158
- #: settings.php:2492
4159
  msgid "Plugin usage tracking"
4160
  msgstr "Sledenje uporabe vtičnika"
4161
 
4162
  #. translators: %s: Ad Inserter
4163
- #: settings.php:2495
4164
  msgid ""
4165
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4166
  "Only information regarding the WordPress environment and %s usage is "
@@ -4170,125 +4232,125 @@ msgstr ""
4170
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4171
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4172
 
4173
- #: settings.php:2513
4174
  msgid "CSS class name for the wrapping div"
4175
  msgstr "Ime CSS razreda za div za ovijanje"
4176
 
4177
- #: settings.php:2513
4178
  msgid "Block class name"
4179
  msgstr "Ime razreda za blok"
4180
 
4181
- #: settings.php:2519
4182
  msgid "Include block number class"
4183
  msgstr "Vključi razred številke bloka"
4184
 
4185
- #: settings.php:2519
4186
  msgid "Block number class"
4187
  msgstr "Razred številke bloka"
4188
 
4189
- #: settings.php:2524
4190
  msgid "Include block name class"
4191
  msgstr "Vključi razred imena bloka"
4192
 
4193
- #: settings.php:2524
4194
  msgid "Block name class"
4195
  msgstr "Razred imena bloka"
4196
 
4197
- #: settings.php:2529
4198
  msgid ""
4199
  "Instead of alignment classes generate inline alignment styles for blocks"
4200
  msgstr ""
4201
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4202
 
4203
- #: settings.php:2529
4204
  msgid "Inline styles"
4205
  msgstr "Medvrstični slogi"
4206
 
4207
- #: settings.php:2535
4208
  msgid "Preview of the block wrapping code"
4209
  msgstr "Predogled kode za ovijanje blokov"
4210
 
4211
- #: settings.php:2536
4212
  msgid "Wrapping div"
4213
  msgstr "div za ovijanje"
4214
 
4215
- #: settings.php:2537 settings.php:2977
4216
  msgid "BLOCK CODE"
4217
  msgstr "KODA BLOKA"
4218
 
4219
- #: settings.php:2545
4220
  msgid "Viewport Settings used for client-side device detection"
4221
  msgstr ""
4222
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4223
 
4224
  #. Translators: %d: viewport number
4225
- #: settings.php:2553
4226
  msgid "Viewport %d name"
4227
  msgstr "Ime pogleda %d"
4228
 
4229
- #: settings.php:2556
4230
  msgid "min width"
4231
  msgstr "najmanjša širina"
4232
 
4233
- #: settings.php:2567
4234
  msgid "Custom Hooks"
4235
  msgstr "Ročice Po Meri"
4236
 
4237
- #: settings.php:2579 settings.php:2582
4238
  msgid "Enable hook"
4239
  msgstr "Omogoči ročico"
4240
 
4241
  #. translators: %d: hook number
4242
- #: settings.php:2582
4243
  msgid "Hook %d name"
4244
  msgstr "Ime ročice %d"
4245
 
4246
- #: settings.php:2585
4247
  msgid "Hook name for automatic insertion selection"
4248
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4249
 
4250
- #: settings.php:2588
4251
  msgid "action"
4252
  msgstr "akcija"
4253
 
4254
- #: settings.php:2591
4255
  msgid "Action name as used in the do_action () function"
4256
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4257
 
4258
- #: settings.php:2594
4259
  msgid "priority"
4260
  msgstr "prednost"
4261
 
4262
- #: settings.php:2597
4263
  msgid "Priority for the hook (default is 10)"
4264
  msgstr "Prednost za ročico (privzeta je 10)"
4265
 
4266
- #: settings.php:2618
4267
  msgid "Enable insertion of this code into HTML page header"
4268
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4269
 
4270
- #: settings.php:2622 settings.php:2689 settings.php:2871
4271
  msgid "Process PHP code"
4272
  msgstr "Procesiraj PHP kodo"
4273
 
4274
- #: settings.php:2626
4275
  msgid "HTML Page Header Code"
4276
  msgstr "Koda v Glavi HTML Strani"
4277
 
4278
- #: settings.php:2634
4279
  msgid "Code in the %s section of the HTML page"
4280
  msgstr "Koda v %s delu HTML strani"
4281
 
4282
- #: settings.php:2635
4283
  msgctxt "code in the header"
4284
  msgid "NOT ENABLED"
4285
  msgstr "NI OMOGOČENA"
4286
 
4287
- #: settings.php:2652 settings.php:2720
4288
  msgid "Use server-side detection to insert code only for"
4289
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4290
 
4291
- #: settings.php:2667
4292
  msgid ""
4293
  "Enable insertion of this code into HTML page header on page for Error 404: "
4294
  "Page not found"
@@ -4296,29 +4358,29 @@ msgstr ""
4296
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4297
  "obstaja"
4298
 
4299
- #: settings.php:2667 settings.php:2735
4300
  msgid "Insert on Error 404 page"
4301
  msgstr "Vstavi na strani Napake 404"
4302
 
4303
- #: settings.php:2685
4304
  msgid "Enable insertion of this code into HTML page footer"
4305
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4306
 
4307
- #: settings.php:2693
4308
  msgid "HTML Page Footer Code"
4309
  msgstr "Koda v Nogi HTML Strani"
4310
 
4311
  #. translators: %s: HTML tags
4312
- #: settings.php:2701
4313
  msgid "Code before the %s tag of the the HTML page"
4314
  msgstr "Koda pred %s značko HTML strani"
4315
 
4316
- #: settings.php:2702
4317
  msgctxt "code in the footer"
4318
  msgid "NOT ENABLED"
4319
  msgstr "NI OMOGOČENA"
4320
 
4321
- #: settings.php:2735
4322
  msgid ""
4323
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4324
  "Page not found"
@@ -4326,32 +4388,32 @@ msgstr ""
4326
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4327
  "Stran ne obstaja"
4328
 
4329
- #: settings.php:2751
4330
  msgid "Code for ad blocking detection inserted. Click for details."
4331
  msgstr ""
4332
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4333
 
4334
- #: settings.php:2756
4335
  msgid "Enable detection of ad blocking"
4336
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4337
 
4338
- #: settings.php:2774
4339
  msgid "Global action when ad blocking is detected"
4340
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4341
 
4342
- #: settings.php:2780
4343
  msgid "No action for"
4344
  msgstr "Ni akcije za"
4345
 
4346
- #: settings.php:2781
4347
  msgid "Exceptions for global action when ad blocking is detected."
4348
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4349
 
4350
- #: settings.php:2791
4351
  msgid "Delay Action"
4352
  msgstr "Zakasni Akcijo"
4353
 
4354
- #: settings.php:2794
4355
  msgid ""
4356
  "Number of page views to delay action when ad blocking is detected. Leave "
4357
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4360,16 +4422,16 @@ msgstr ""
4360
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4361
  "strani). Nastavi piškotek."
4362
 
4363
- #: settings.php:2794
4364
  msgctxt "Delay Action for x "
4365
  msgid "page views"
4366
  msgstr "ogledov strani"
4367
 
4368
- #: settings.php:2799
4369
  msgid "No Action Period"
4370
  msgstr "Obdobje Brez Akcije"
4371
 
4372
- #: settings.php:2802
4373
  msgid ""
4374
  "Number of days to supress action when ad blocking is detected. Leave empty "
4375
  "for no no-action period (action fires always after defined page view delay). "
@@ -4379,16 +4441,16 @@ msgstr ""
4379
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4380
  "strani). Nastavi piškotek."
4381
 
4382
- #: settings.php:2802
4383
  msgctxt "no action period"
4384
  msgid "days"
4385
  msgstr "dni"
4386
 
4387
- #: settings.php:2807
4388
  msgid "Custom Selectors"
4389
  msgstr "Selektorji Po Meri"
4390
 
4391
- #: settings.php:2810
4392
  msgid ""
4393
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4394
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4398,15 +4460,15 @@ msgstr ""
4398
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4399
  "pomeni prisotnost blokiranja oglasov."
4400
 
4401
- #: settings.php:2822
4402
  msgid "Redirection Page"
4403
  msgstr "Stran za Preusmeritev"
4404
 
4405
- #: settings.php:2834
4406
  msgid "Custom Url"
4407
  msgstr "Url Po Meri"
4408
 
4409
- #: settings.php:2839
4410
  msgid ""
4411
  "Static page for redirection when ad blocking is detected. For other pages "
4412
  "select Custom url and set it below."
@@ -4414,35 +4476,35 @@ msgstr ""
4414
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4415
  "strani izberite Url Po Meri in ga nastavite spodaj."
4416
 
4417
- #: settings.php:2848
4418
  msgid "Custom Redirection Url"
4419
  msgstr "Url za Preusmeritev Po Meri"
4420
 
4421
- #: settings.php:2860
4422
  msgid "Message HTML code"
4423
  msgstr "HTML koda sporočila"
4424
 
4425
- #: settings.php:2873
4426
  msgid "Preview message when ad blocking is detected"
4427
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4428
 
4429
- #: settings.php:2902
4430
  msgid "Prevent visitors from closing the warning message"
4431
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4432
 
4433
- #: settings.php:2902
4434
  msgid "Undismissible Message"
4435
  msgstr "Neodstranljivo Sporočilo"
4436
 
4437
- #: settings.php:2908
4438
  msgid "Not undismissible for"
4439
  msgstr "Ni neodstranljivo za"
4440
 
4441
- #: settings.php:2909
4442
  msgid "Users which can close the warning message."
4443
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4444
 
4445
- #: settings.php:2923
4446
  msgid ""
4447
  "Force showing admin toolbar for administrators when viewing site. Enable "
4448
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4451,84 +4513,84 @@ msgstr ""
4451
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4452
  "skrbnike."
4453
 
4454
- #: settings.php:2931
4455
  msgid "Disable header code (Header tab)"
4456
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4457
 
4458
- #: settings.php:2935
4459
  msgid "Disable footer code (Footer tab)"
4460
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4461
 
4462
  #. translators: %s: Ad Inserter
4463
- #: settings.php:2939
4464
  msgid "Disable %s JavaScript code"
4465
  msgstr "Onemogoči %s JavaScript kodo"
4466
 
4467
  #. translators: %s: Ad Inserter
4468
- #: settings.php:2943
4469
  msgid "Disable %s CSS code"
4470
  msgstr "Onemogoči %s CSS kodo"
4471
 
4472
- #: settings.php:2947
4473
  msgid ""
4474
  "Disable PHP code processing (in all blocks including header and footer code)"
4475
  msgstr ""
4476
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4477
 
4478
- #: settings.php:2951
4479
  msgid "Disable insertion of all blocks"
4480
  msgstr "Onemogoči vstavljanje vseh blokov"
4481
 
4482
- #: settings.php:2955
4483
  msgid "Disable insertions"
4484
  msgstr "Onemogoči vstavljanja"
4485
 
4486
  #. translators: %s: Ad Inserter
4487
- #: settings.php:2967
4488
  msgid "%s CSS CODE"
4489
  msgstr "%s CSS KODA"
4490
 
4491
- #: settings.php:2970
4492
  msgid "HEADER CODE"
4493
  msgstr "KODA GLAVE"
4494
 
4495
  #. translators: %s: PHP tags
4496
- #: settings.php:2976
4497
  msgid "BLOCK PHP CODE"
4498
  msgstr "PHP KODA BLOKA"
4499
 
4500
  #. translators: %s: Ad Inserter
4501
- #: settings.php:2982
4502
  msgid "%s JS CODE"
4503
  msgstr "%s JS KODA"
4504
 
4505
- #: settings.php:2985
4506
  msgid "FOOTER CODE"
4507
  msgstr "KODA NOGE"
4508
 
4509
- #: settings.php:2994
4510
  msgid "Force showing admin toolbar when viewing site"
4511
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4512
 
4513
- #: settings.php:3001
4514
  msgid "Enable debugging functions in admin toolbar"
4515
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4516
 
4517
- #: settings.php:3003
4518
  msgid "Debugging functions in admin toolbar"
4519
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4520
 
4521
- #: settings.php:3010
4522
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4523
  msgstr ""
4524
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4525
  "zaslonih"
4526
 
4527
- #: settings.php:3012
4528
  msgid "Debugging functions on mobile screens"
4529
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4530
 
4531
- #: settings.php:3019
4532
  msgid ""
4533
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4534
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4543,11 +4605,11 @@ msgstr ""
4543
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4544
  "vedno omogočeno."
4545
 
4546
- #: settings.php:3021
4547
  msgid "Remote debugging"
4548
  msgstr "Oddaljeno razhroščevanje"
4549
 
4550
- #: settings.php:3028
4551
  msgid ""
4552
  "Disable translation to see original texts for the settings and messages in "
4553
  "English"
@@ -4555,214 +4617,210 @@ msgstr ""
4555
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4556
  "angleščini"
4557
 
4558
- #: settings.php:3030
4559
  msgid "Disable translation"
4560
  msgstr "Onemogoči prevod"
4561
 
4562
- #: settings.php:3402
4563
  msgid "Available positions for current theme"
4564
  msgstr "Razpoložljivi položaji za trenutno temo"
4565
 
4566
- #: settings.php:3403
4567
  msgid "Error checking pages"
4568
  msgstr "Napaka pri preverjanju strani"
4569
 
4570
- #: settings.php:3406
4571
  msgid "Toggle theme checker for available positions for automatic insertion"
4572
  msgstr ""
4573
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4574
 
4575
- #: settings.php:3406
4576
  msgctxt "Button"
4577
  msgid "Check"
4578
  msgstr "Preveri"
4579
 
4580
- #: settings.php:3413
4581
  msgid "Position"
4582
  msgstr "Položaj"
4583
 
4584
- #: settings.php:3418
4585
  msgid "Archive pages"
4586
  msgstr "Strani arhiva"
4587
 
4588
- #: settings.php:3477
4589
  msgid ""
4590
  "Position not available because output buffering (tab [*]) is not enabled"
4591
  msgstr ""
4592
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4593
 
4594
- #: settings.php:3480 strings.php:228
4595
  msgid "Position not checked yet"
4596
  msgstr "Položaj še ni bil preverjen"
4597
 
4598
- #: settings.php:3516
4599
  msgid "Toggle active/all blocks"
4600
  msgstr "Preklopi aktive/vse bloke"
4601
 
4602
- #: settings.php:3520 strings.php:215
4603
  msgid "Rearrange block order"
4604
  msgstr "Preuredi vrstni red blokov"
4605
 
4606
- #: settings.php:3525
4607
  msgid "Save new block order"
4608
  msgstr "Shrani vrstni red blokov"
4609
 
4610
- #: settings.php:3551
4611
  msgid "Toggle active/all ad units"
4612
  msgstr "Preklopi aktivne/vse oglasne enote"
4613
 
4614
- #: settings.php:3555
4615
  msgid "Reload AdSense ad units"
4616
  msgstr "Ponovno naloži oglasne enote AdSense"
4617
 
4618
- #: settings.php:3559
4619
  msgid "Clear authorization to access AdSense account"
4620
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4621
 
4622
- #: settings.php:3563 settings.php:4362 settings.php:4429 strings.php:223
4623
  msgid "Google AdSense Homepage"
4624
  msgstr "Google AdSense Domača Stran"
4625
 
4626
- #: settings.php:3579
4627
  msgid "Switch to physical ads.txt file"
4628
  msgstr "Preklopi na fizično datoteko ads.txt"
4629
 
4630
- #: settings.php:3580
4631
  msgid "Switch to virtual ads.txt file"
4632
  msgstr "Preklopi na navidezno datoteko ads.txt"
4633
 
4634
  #. translators: %s: ads.txt
4635
- #: settings.php:3590
4636
  msgid "Open %s"
4637
  msgstr "Odpri %s"
4638
 
4639
- #: settings.php:3598
4640
  msgid "Reload ads.txt file"
4641
  msgstr "Ponovno naloži datoteko ads.txt"
4642
 
4643
- #: settings.php:3602 settings.php:4489
4644
  msgid "Save"
4645
  msgstr "Shrani"
4646
 
4647
  #. translators: %s: Ad Inserter
4648
- #: settings.php:3777
4649
  msgid "ads.txt file: %s virtual ads.txt file"
4650
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4651
 
4652
- #: settings.php:3782 settings.php:3802 strings.php:207
4653
  msgid "Warning"
4654
  msgstr "Opozorilo"
4655
 
4656
  #. translators: %s: Ad Inserter
4657
- #: settings.php:3782
4658
  msgid "%s virtual file ads.txt not found"
4659
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4660
 
4661
- #: settings.php:3790
4662
  msgid "IMPORTANT"
4663
  msgstr "POMEMBNO"
4664
 
4665
- #: settings.php:3790
4666
  msgid "ads.txt file must be placed on the root domain"
4667
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4668
 
4669
- #: settings.php:3795
4670
  msgid "ads.txt file"
4671
  msgstr "datoteka ads.txt"
4672
 
4673
- #: settings.php:3795
4674
  msgid "NOT WRITABLE"
4675
  msgstr "NI ZAPISLJIVO"
4676
 
4677
- #: settings.php:3802
4678
  msgid "file %s not found"
4679
  msgstr "datoteka %s ni najdena"
4680
 
4681
- #: settings.php:3812
4682
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4683
  msgstr ""
4684
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4685
 
4686
  #. translators: %s: Ad Inserter
4687
- #: settings.php:3818
4688
  msgid "%s virtual ads.txt file"
4689
  msgstr "%s navidezna datoteka ads.txt"
4690
 
4691
- #: settings.php:3840
4692
  msgid "Advertising system"
4693
  msgstr "Oglaševalski sistem"
4694
 
4695
- #: settings.php:3841
4696
  msgid "Account ID"
4697
  msgstr "ID Računa"
4698
 
4699
- #: settings.php:3843
4700
  msgid "Certification authority ID"
4701
  msgstr "ID organa za potrjevanje"
4702
 
4703
- #: settings.php:3858
4704
  msgid "Account ID found in block and present in ads.txt"
4705
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4706
 
4707
- #: settings.php:3862
4708
  msgid "Account ID found in block but not present in ads.txt"
4709
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4710
 
4711
- #: settings.php:4152
4712
  msgid "Preview block"
4713
  msgstr "Predogled bloka"
4714
 
4715
- #: settings.php:4161
4716
- msgid "Insertion disabled"
4717
- msgstr "Vstavljanje onemogočeno"
4718
 
4719
- #: settings.php:4191
4720
  msgid "Automatic insertion"
4721
  msgstr "Samodejno vstavljanje"
4722
 
4723
  #. translators: %s HTML tags
4724
- #: settings.php:4192 settings.php:5191
4725
  msgid "PHP code processing"
4726
  msgstr "Procesiranje PHP kode"
4727
 
4728
- #: settings.php:4194
4729
  msgid "Device detection"
4730
  msgstr "Zaznavanje naprave"
4731
 
4732
- #: settings.php:4207
4733
- msgid "Widget positions"
4734
- msgstr "Položaji gradnikov"
4735
-
4736
- #: settings.php:4217
4737
- msgid "No active code block"
4738
  msgstr "Noben aktiven blok"
4739
 
4740
- #: settings.php:4218
4741
- msgid "No code block matches search keywords"
4742
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4743
 
4744
- #: settings.php:4273
4745
  msgid "Ad unit"
4746
  msgstr "Enota"
4747
 
4748
- #: settings.php:4275
4749
  msgid "Slot ID"
4750
  msgstr "ID mesta"
4751
 
4752
- #: settings.php:4301
4753
  msgid "Copy AdSense code"
4754
  msgstr "Kopiraj kodo AdSense"
4755
 
4756
- #: settings.php:4304
4757
  msgid "Preview AdSense ad"
4758
  msgstr "Predogled oglasa AdSense"
4759
 
4760
- #: settings.php:4307
4761
  msgid "Get AdSense code"
4762
  msgstr "Pridobi kodo AdSense"
4763
 
4764
  #. translators: %s: HTML tags
4765
- #: settings.php:4339
4766
  msgid ""
4767
  "Please %s clear authorization %s with the button %s above and once again "
4768
  "authorize access to your AdSense account."
@@ -4770,16 +4828,16 @@ msgstr ""
4770
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4771
  "avtorizirajte dostop do vašega računa AdSense."
4772
 
4773
- #: settings.php:4358
4774
  msgid "AdSense Integration"
4775
  msgstr "Integracija AdSense"
4776
 
4777
- #: settings.php:4360
4778
  msgid "AdSense Integration - Step 2"
4779
  msgstr "Integracija AdSense - Korak 2"
4780
 
4781
  #. translators: %s: HTML tags
4782
- #: settings.php:4366
4783
  msgid ""
4784
  "Authorize %s to access your AdSense account. Click on the %s Get "
4785
  "Authorization Code %s button to open a new window where you can allow "
@@ -4792,7 +4850,7 @@ msgstr ""
4792
  "Avtoriziraj. %s"
4793
 
4794
  #. translators: %s: HTML tags
4795
- #: settings.php:4373
4796
  msgid ""
4797
  "If you get error, can't access ad units or would like to use own Google API "
4798
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4803,7 +4861,7 @@ msgstr ""
4803
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4804
 
4805
  #. translators: %s: HTML tags
4806
- #: settings.php:4375
4807
  msgid ""
4808
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4809
  "Authorization Code %s button to open a new window where you can allow "
@@ -4816,7 +4874,7 @@ msgstr ""
4816
  "gumb %s Avtoriziraj. %s"
4817
 
4818
  #. translators: %s: HTML tags
4819
- #: settings.php:4382
4820
  msgid ""
4821
  "If you get error %s invalid client %s click on the button %s Clear and "
4822
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4824,32 +4882,32 @@ msgstr ""
4824
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4825
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4826
 
4827
- #: settings.php:4393
4828
  msgid "Get Authorization Code"
4829
  msgstr "Pridobi Avtoriazcijsko Kodo"
4830
 
4831
- #: settings.php:4396
4832
  msgid "Enter Authorization Code"
4833
  msgstr "Vnesi Avorizacijsko Kodo"
4834
 
4835
- #: settings.php:4406
4836
  msgid "Use own API IDs"
4837
  msgstr "Uporabi lastne API ID-je"
4838
 
4839
- #: settings.php:4408
4840
  msgid "Clear and return to Step 1"
4841
  msgstr "Odstrani in se vrni na Korak 1"
4842
 
4843
- #: settings.php:4412
4844
  msgid "Authorize"
4845
  msgstr "Avtoriziraj"
4846
 
4847
- #: settings.php:4428
4848
  msgid "AdSense Integration - Step 1"
4849
  msgstr "Integracija AdSense - Korak 1"
4850
 
4851
  #. translators: %s: Ad Inserter
4852
- #: settings.php:4432
4853
  msgid ""
4854
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4855
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4862,12 +4920,12 @@ msgstr ""
4862
  "Odjemalca in Skrivnost Odjemalca."
4863
 
4864
  #. translators: %s: HTML tags
4865
- #: settings.php:4441
4866
  msgid "Go to %s Google APIs and Services console %s"
4867
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4868
 
4869
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4870
- #: settings.php:4442
4871
  msgid ""
4872
  "Create %1$s project - if the project and IDs are already created click on "
4873
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4876,7 +4934,7 @@ msgstr ""
4876
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4877
 
4878
  #. translators: %s: HTML tags
4879
- #: settings.php:4443
4880
  msgid ""
4881
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4882
  "create a new project"
@@ -4885,12 +4943,12 @@ msgstr ""
4885
  "ustvaritev novega projekta"
4886
 
4887
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4888
- #: settings.php:4444
4889
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4890
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4891
 
4892
  #. translators: %s: HTML tags
4893
- #: settings.php:4445
4894
  msgid ""
4895
  "Click on project selection, wait for the project to be created and then and "
4896
  "select %s as the current project"
@@ -4899,39 +4957,39 @@ msgstr ""
4899
  "izberite %s kot trenutni projekt"
4900
 
4901
  #. translators: %s: HTML tags
4902
- #: settings.php:4446
4903
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4904
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4905
 
4906
  #. translators: %s: HTML tags
4907
- #: settings.php:4447
4908
  msgid "Search for adsense and enable %s"
4909
  msgstr "Poiščite adsense in omogočite %s"
4910
 
4911
  #. translators: %s: HTML tags
4912
- #: settings.php:4448
4913
  msgid "Click on %s CREATE CREDENTIALS %s"
4914
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4915
 
4916
  #. translators: %s: HTML tags
4917
- #: settings.php:4449
4918
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4919
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4920
 
4921
  #. translators: %s: HTML tags
4922
- #: settings.php:4450
4923
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4924
  msgstr ""
4925
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4926
  "podatki %s"
4927
 
4928
  #. translators: %s: HTML tags
4929
- #: settings.php:4451
4930
  msgid "Click on %s What credentials do I need? %s"
4931
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4932
 
4933
  #. translators: %s: HTML tags
4934
- #: settings.php:4452
4935
  msgid ""
4936
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4937
  "Ad Inserter client %s"
@@ -4940,7 +4998,7 @@ msgstr ""
4940
  "vnestite %s Ad Inserter odjemalec %s"
4941
 
4942
  #. translators: %s: HTML tags
4943
- #: settings.php:4453
4944
  msgid ""
4945
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4946
  "enter %s"
@@ -4949,17 +5007,17 @@ msgstr ""
4949
  "uporabnikom %s vnesite %s"
4950
 
4951
  #. translators: %s: HTML tags
4952
- #: settings.php:4454
4953
  msgid "Click on %s Continue %s"
4954
  msgstr "Kliknite na %s Nadaljuj %s"
4955
 
4956
  #. translators: %s: HTML tags
4957
- #: settings.php:4455
4958
  msgid "Click on %s Done %s"
4959
  msgstr "Kliknite na %s Končaj %s"
4960
 
4961
  #. translators: %s: HTML tags
4962
- #: settings.php:4456
4963
  msgid ""
4964
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4965
  "secret %s"
@@ -4967,67 +5025,63 @@ msgstr ""
4967
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
4968
  "%s Skrivnost odjemalca %s"
4969
 
4970
- #: settings.php:4457
4971
  msgid "Copy them to the appropriate fields below"
4972
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4973
 
4974
- #: settings.php:4463
4975
  msgid "Client ID"
4976
  msgstr "ID odjemalca"
4977
 
4978
- #: settings.php:4466
4979
  msgid "Enter Client ID"
4980
  msgstr "Vnesite ID odjemalca"
4981
 
4982
- #: settings.php:4471
4983
  msgid "Client secret"
4984
  msgstr "Skrivnost odjemalca"
4985
 
4986
- #: settings.php:4474
4987
  msgid "Enter Client secret"
4988
  msgstr "Vnesite Skrivnost odjemalca"
4989
 
4990
- #: settings.php:4484
4991
  msgid "Use default API IDs"
4992
  msgstr "Uporabi privzete API ID-je"
4993
 
4994
- #: settings.php:4648
4995
  msgid "All posts"
4996
  msgstr "Vsi prispevki"
4997
 
4998
- #: settings.php:4649
4999
  msgid "All static pages"
5000
  msgstr "Vse statične strani"
5001
 
5002
- #: settings.php:4804 settings.php:4817 settings.php:4831 settings.php:4847
5003
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5004
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5005
 
5006
- #: settings.php:4809 settings.php:4822 settings.php:4836 settings.php:4852
5007
- #: settings.php:5081 settings.php:5083 settings.php:5100 settings.php:5104
5008
- #: settings.php:5112 settings.php:5113 settings.php:5116 settings.php:5122
5009
- #: settings.php:5132 settings.php:5136
5010
  msgid "Looking for AdSense alternative?"
5011
  msgstr "Iščete alternativo za AdSense?"
5012
 
5013
- #: settings.php:4864
5014
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5015
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5016
 
5017
- #: settings.php:4869 settings.php:5079 settings.php:5091 settings.php:5119
5018
- #: settings.php:5146
5019
  msgid "Use Infolinks ads with Adsense to earn more"
5020
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5021
 
5022
- #: settings.php:4879 settings.php:4894
5023
- msgid "Maximize your revenue!"
5024
- msgstr "Povečajte svoj prihodek!"
5025
-
5026
- #: settings.php:4920 settings.php:4970
5027
  msgid "Support plugin development"
5028
  msgstr "Podprite razvoj vtičnika"
5029
 
5030
- #: settings.php:4925 settings.php:4971
5031
  msgid ""
5032
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5033
  "reviewing the plugin on WordPres"
@@ -5035,12 +5089,12 @@ msgstr ""
5035
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5036
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5037
 
5038
- #: settings.php:4925
5039
  msgctxt "Review Ad Inserter"
5040
  msgid "Review"
5041
  msgstr "Ocenite"
5042
 
5043
- #: settings.php:4930
5044
  msgid ""
5045
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5046
  "rating the plugin on WordPres"
@@ -5048,12 +5102,12 @@ msgstr ""
5048
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5049
  "razširiti novico z oceno vtičnika na WordPress-u"
5050
 
5051
- #: settings.php:4930
5052
  msgctxt "Rate Ad Inserter"
5053
  msgid "Rate"
5054
  msgstr "Ocenite"
5055
 
5056
- #: settings.php:4935
5057
  msgid ""
5058
  "Support free Ad Inserter development. If you are making money with Ad "
5059
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5062,16 +5116,16 @@ msgstr ""
5062
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5063
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5064
 
5065
- #: settings.php:4935
5066
  msgid "Donate"
5067
  msgstr "Donirajte"
5068
 
5069
- #: settings.php:4942 settings.php:4986
5070
  msgid "Average rating of the plugin - Thank you!"
5071
  msgstr "Povprečna ocena vtičnika - Hvala!"
5072
 
5073
  #. translators: %s: Ad Inserter, HTML tags
5074
- #: settings.php:4953
5075
  msgid ""
5076
  "You've been using %s for a while now, and I hope you're happy with it. "
5077
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5086,24 +5140,24 @@ msgstr ""
5086
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5087
  "bi rekli 'Hvala'."
5088
 
5089
- #: settings.php:4971
5090
  msgid "Review"
5091
  msgstr "Ocena"
5092
 
5093
- #: settings.php:4975
5094
  msgid "Ad Inserter on Twitter"
5095
  msgstr "Ad Inserter na Twitter-ju"
5096
 
5097
- #: settings.php:4976
5098
  msgid "Ad Inserter on Facebook"
5099
  msgstr "Ad Inserter na Facebook-u"
5100
 
5101
- #: settings.php:4979
5102
  msgid "Follow Ad Inserter"
5103
  msgstr "Sledi Ad Inserter-ju"
5104
 
5105
  #. translators: %s: HTML tags
5106
- #: settings.php:5006
5107
  msgid ""
5108
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5109
  "and %s Common Settings %s pages"
@@ -5112,7 +5166,7 @@ msgstr ""
5112
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5113
 
5114
  #. translators: %s: HTML tags
5115
- #: settings.php:5018
5116
  msgid ""
5117
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5118
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -5123,7 +5177,7 @@ msgstr ""
5123
  "%s Infolinks %s oglasno kodo %s"
5124
 
5125
  #. translators: %s: HTML tags
5126
- #: settings.php:5039
5127
  msgid ""
5128
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5129
  "purchase you refer to us"
@@ -5132,7 +5186,7 @@ msgstr ""
5132
  "nakup, ki nam ga posredujete"
5133
 
5134
  #. translators: %s: HTML tags
5135
- #: settings.php:5046
5136
  msgid ""
5137
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5138
  "diagnose and fix the problem."
@@ -5141,7 +5195,7 @@ msgstr ""
5141
  "navodili za diagnozo in rešitvami za težave."
5142
 
5143
  #. translators: %s: HTML tags
5144
- #: settings.php:5050
5145
  msgid ""
5146
  "If you need any kind of help or support, please do not hesitate to open a "
5147
  "thread on the %s support forum. %s"
@@ -5149,49 +5203,57 @@ msgstr ""
5149
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5150
  "nit na %s podpornem forumu. %s"
5151
 
5152
- #: settings.php:5076 settings.php:5145
5153
  msgid "Code preview with visual CSS editor"
5154
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5155
 
5156
- #: settings.php:5095 settings.php:5140
5157
  msgid "A/B testing - Track ad impressions and clicks"
5158
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5159
 
5160
- #: settings.php:5154
 
 
 
 
 
 
 
 
5161
  msgid "Looking for Pro Ad Management plugin?"
5162
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5163
 
5164
- #: settings.php:5155
5165
  msgid "To Optimally Monetize your WordPress website?"
5166
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5167
 
5168
  #. Translators: %s: price of Ad Inserter Pro
5169
- #: settings.php:5156
5170
  msgid "Different license types starting from %s"
5171
  msgstr "Različni tipi licenc začenši od %s"
5172
 
5173
  #. translators: %s HTML tags
5174
- #: settings.php:5159
5175
  msgid "%s AdSense Integration %s"
5176
  msgstr "%s Integracija AdSense %s"
5177
 
5178
  #. translators: %s HTML tags
5179
- #: settings.php:5160
5180
  msgid "Syntax highlighting %s editor %s"
5181
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5182
 
5183
  #. translators: %s HTML tags
5184
- #: settings.php:5161
5185
  msgid "%s Code preview %s with visual CSS editor"
5186
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5187
 
5188
  #. translators: %s HTML tags
5189
- #: settings.php:5162
5190
  msgid "Simple user interface - all settings on a single page"
5191
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5192
 
5193
  #. translators: %s HTML tags
5194
- #: settings.php:5163
5195
  msgid ""
5196
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5197
  "image / excerpt"
@@ -5200,27 +5262,27 @@ msgstr ""
5200
  "%s / sliko / izvlečkom"
5201
 
5202
  #. translators: %s HTML tags
5203
- #: settings.php:5164
5204
  msgid "%s Automatic insertion %s between posts on blog pages"
5205
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5206
 
5207
  #. translators: %s HTML tags
5208
- #: settings.php:5165
5209
  msgid "%s Automatic insertion %s before, between and after comments"
5210
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5211
 
5212
  #. translators: %s HTML tags
5213
- #: settings.php:5166
5214
  msgid "%s Automatic insertion %s after %s or before %s tag"
5215
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5216
 
5217
  #. translators: %s HTML tags
5218
- #: settings.php:5167
5219
  msgid "Automatic insertion at %s custom hook positions %s"
5220
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5221
 
5222
  #. translators: %s HTML tags
5223
- #: settings.php:5168
5224
  msgid ""
5225
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5226
  "selectors)"
@@ -5229,17 +5291,17 @@ msgstr ""
5229
  "selektorjev)"
5230
 
5231
  #. translators: %s HTML tags
5232
- #: settings.php:5169
5233
  msgid "%s Insertion exceptions %s for individual posts and pages"
5234
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5235
 
5236
  #. translators: %s HTML tags
5237
- #: settings.php:5170
5238
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5239
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5240
 
5241
  #. translators: %s HTML tags
5242
- #: settings.php:5171
5243
  msgid ""
5244
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5245
  "scrolls)"
@@ -5248,19 +5310,19 @@ msgstr ""
5248
  "se stran pomika)"
5249
 
5250
  #. translators: %s HTML tags
5251
- #: settings.php:5172
5252
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5253
  msgstr ""
5254
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5255
 
5256
  #. translators: %s HTML tags
5257
- #: settings.php:5173
5258
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5259
  msgstr ""
5260
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5261
 
5262
  #. translators: %s HTML tags
5263
- #: settings.php:5174
5264
  msgid ""
5265
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5266
  "visible)"
@@ -5269,7 +5331,7 @@ msgstr ""
5269
  "postane viden)"
5270
 
5271
  #. translators: %s HTML tags
5272
- #: settings.php:5175
5273
  msgid ""
5274
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5275
  msgstr ""
@@ -5277,12 +5339,12 @@ msgstr ""
5277
  "strani)"
5278
 
5279
  #. translators: %s HTML tags
5280
- #: settings.php:5176
5281
  msgid "Block %s alignment and style %s customizations"
5282
  msgstr "%s Poravnave in slogi %s bloka po meri"
5283
 
5284
  #. translators: %s HTML tags
5285
- #: settings.php:5177
5286
  msgid ""
5287
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5288
  "TOS)"
@@ -5290,7 +5352,7 @@ msgstr ""
5290
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5291
 
5292
  #. translators: %s HTML tags
5293
- #: settings.php:5178
5294
  msgid ""
5295
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5296
  "feeds"
@@ -5299,17 +5361,17 @@ msgstr ""
5299
  "virih"
5300
 
5301
  #. translators: %s HTML tags
5302
- #: settings.php:5179
5303
  msgid "%s Ad rotation %s (works also with caching)"
5304
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5305
 
5306
  #. translators: %s HTML tags
5307
- #: settings.php:5180
5308
  msgid "Create, edit and check %s ads.txt %s file"
5309
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5310
 
5311
  #. translators: %s HTML tags
5312
- #: settings.php:5181
5313
  msgid ""
5314
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5315
  "AdSense)"
@@ -5318,81 +5380,81 @@ msgstr ""
5318
  "AdSense)"
5319
 
5320
  #. translators: %s HTML tags
5321
- #: settings.php:5182
5322
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5323
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5324
 
5325
  #. translators: %s HTML tags
5326
- #: settings.php:5183
5327
  msgid "%s Public web reports %s for clients, export to PDF"
5328
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5329
 
5330
  #. translators: %s HTML tags
5331
- #: settings.php:5184
5332
  msgid "Support for %s A/B testing %s"
5333
  msgstr "Podpora za %s A/B testiranje %s"
5334
 
5335
  #. translators: %s HTML tags
5336
- #: settings.php:5185
5337
  msgid "Frequency capping - %s limit impressions or clicks %s"
5338
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5339
 
5340
  #. translators: %s HTML tags
5341
- #: settings.php:5186
5342
  msgid "Click fraud %s protection %s"
5343
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5344
 
5345
  #. translators: %s HTML tags
5346
- #: settings.php:5187
5347
  msgid "Support for %s lazy loading %s"
5348
  msgstr "Podpora za %s leno nalaganje %s"
5349
 
5350
  #. translators: %s HTML tags
5351
- #: settings.php:5188
5352
  msgid "Support for ads on %s AMP pages %s"
5353
  msgstr "Podpora za oglase na %s AMP straneh %s"
5354
 
5355
  #. translators: %s HTML tags
5356
- #: settings.php:5189
5357
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5358
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5359
 
5360
  #. translators: %s HTML tags
5361
- #: settings.php:5190
5362
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5363
  msgstr ""
5364
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5365
 
5366
  #. translators: %s HTML tags
5367
- #: settings.php:5192
5368
  msgid "%s Banner %s code generator"
5369
  msgstr "Generator kode za %s pasice %s"
5370
 
5371
  #. translators: %s HTML tags
5372
- #: settings.php:5193
5373
  msgid "Support for %s header and footer %s code"
5374
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5375
 
5376
  #. translators: %s HTML tags
5377
- #: settings.php:5194
5378
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5379
  msgstr ""
5380
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5381
 
5382
  #. translators: %s HTML tags
5383
- #: settings.php:5195
5384
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5385
  msgstr ""
5386
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5387
  "strežnika"
5388
 
5389
  #. translators: %s HTML tags
5390
- #: settings.php:5196
5391
  msgid "Client-side %s mobile device detection %s (works with caching)"
5392
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5393
 
5394
  #. translators: %s HTML tags
5395
- #: settings.php:5197
5396
  msgid ""
5397
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5398
  "protection"
@@ -5401,12 +5463,12 @@ msgstr ""
5401
  "vsebine"
5402
 
5403
  #. translators: %s HTML tags
5404
- #: settings.php:5198
5405
  msgid "%s Ad blocking statistics %s"
5406
  msgstr "%s Statistika blokiranja oglasov %s"
5407
 
5408
  #. translators: %s HTML tags
5409
- #: settings.php:5199
5410
  msgid ""
5411
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5412
  "referrers, operating systems, browsers"
@@ -5415,75 +5477,75 @@ msgstr ""
5415
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5416
 
5417
  #. translators: %s HTML tags
5418
- #: settings.php:5200
5419
  msgid ""
5420
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5421
  msgstr ""
5422
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5423
 
5424
  #. translators: %s HTML tags
5425
- #: settings.php:5201
5426
  msgid "%s Multisite options %s to limit settings on the sites"
5427
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5428
 
5429
  #. translators: %s HTML tags
5430
- #: settings.php:5202
5431
  msgid "%s Import/Export %s block or plugin settings"
5432
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5433
 
5434
  #. translators: %s HTML tags
5435
- #: settings.php:5203
5436
  msgid "%s Insertion scheduling %s with fallback option"
5437
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5438
 
5439
  #. translators: %s HTML tags
5440
- #: settings.php:5204
5441
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5442
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5443
 
5444
  #. translators: %s HTML tags
5445
- #: settings.php:5205
5446
  msgid "Simple troubleshooting with many %s debugging functions %s"
5447
  msgstr ""
5448
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5449
 
5450
  #. translators: %s HTML tags
5451
- #: settings.php:5206
5452
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5453
  msgstr ""
5454
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5455
 
5456
  #. translators: %s HTML tags
5457
- #: settings.php:5207
5458
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5459
  msgstr ""
5460
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5461
 
5462
  #. translators: %s HTML tags
5463
- #: settings.php:5208
5464
  msgid ""
5465
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5466
  msgstr ""
5467
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5468
 
5469
  #. translators: %s HTML tags
5470
- #: settings.php:5209
5471
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5472
  msgstr ""
5473
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5474
 
5475
  #. translators: %s HTML tags
5476
- #: settings.php:5210
5477
  msgid "No ads on the settings page"
5478
  msgstr "Stran z nastavitvami brez oglasov"
5479
 
5480
  #. translators: %s HTML tags
5481
- #: settings.php:5211
5482
  msgid "Premium support"
5483
  msgstr "Vrhunska podpora"
5484
 
5485
  #. translators: %s HTML tags
5486
- #: settings.php:5214
5487
  msgid ""
5488
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5489
  "website with many advertising features to automatically insert adverts on "
@@ -5510,82 +5572,82 @@ msgstr ""
5510
  "bodo ohranile)."
5511
 
5512
  #. translators: %s HTML tags
5513
- #: settings.php:5227
5514
  msgid "Looking for %s Pro Ad Management plugin? %s"
5515
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5516
 
5517
  #. translators: %s HTML tags
5518
- #: settings.php:5232
5519
  msgid "Ads between posts"
5520
  msgstr "Oglasi med prispevki"
5521
 
5522
  #. translators: %s HTML tags
5523
- #: settings.php:5233
5524
  msgid "Ads between comments"
5525
  msgstr "Oglasi med komentarji"
5526
 
5527
  #. translators: %s HTML tags
5528
- #: settings.php:5234
5529
  msgid "Support via email"
5530
  msgstr "Podpora prek elektronske pošte"
5531
 
5532
  #. translators: %s HTML tags
5533
- #: settings.php:5240
5534
  msgid "%s Sticky positions %s"
5535
  msgstr "%s Lepljivi položaji %s"
5536
 
5537
  #. translators: %s HTML tags
5538
- #: settings.php:5241
5539
  msgid "%s Limit insertions %s"
5540
  msgstr "%s Omeji vstavljanja %s"
5541
 
5542
  #. translators: %s HTML tags
5543
- #: settings.php:5242
5544
  msgid "%s Clearance %s options"
5545
  msgstr "Možnosti %s izogibanja %s"
5546
 
5547
  #. translators: %s HTML tags
5548
- #: settings.php:5248
5549
  msgid "Ad rotation"
5550
  msgstr "Vrtenje oglasov"
5551
 
5552
  #. translators: %s HTML tags
5553
- #: settings.php:5249
5554
  msgid "%s A/B testing %s"
5555
  msgstr "%s A/B testiranje %s"
5556
 
5557
  #. translators: %s HTML tags
5558
- #: settings.php:5250
5559
  msgid "%s Ad tracking %s"
5560
  msgstr "%s Sledenje oglasom %s"
5561
 
5562
  #. translators: %s HTML tags
5563
- #: settings.php:5256
5564
  msgid "Support for %s AMP pages %s"
5565
  msgstr "Podpora za %s AMP strani %s"
5566
 
5567
  #. translators: %s HTML tags
5568
- #: settings.php:5257
5569
  msgid "%s Ad blocking detection %s"
5570
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5571
 
5572
  #. translators: %s HTML tags
5573
- #: settings.php:5258
5574
  msgid "%s Mobile device detection %s"
5575
  msgstr "%s Zaznavanje mobilne naprave %s"
5576
 
5577
  #. translators: %s HTML tags
5578
- #: settings.php:5265
5579
  msgid "64 code blocks"
5580
  msgstr "64 kodnih blokov"
5581
 
5582
  #. translators: %s HTML tags
5583
- #: settings.php:5266
5584
  msgid "%s GEO targeting %s"
5585
  msgstr "%s GEO ciljanje %s"
5586
 
5587
  #. translators: %s HTML tags
5588
- #: settings.php:5267
5589
  msgid "%s Scheduling %s"
5590
  msgstr "%s Urnik %s"
5591
 
@@ -6421,6 +6483,15 @@ msgstr ""
6421
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6422
  "na optimalna mesta"
6423
 
 
 
 
 
 
 
 
 
 
6424
  #~ msgid "I would really appreciate if you could rate the plugin on WordPres."
6425
  #~ msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
6426
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2020-02-10 19:37:36+00:00\n"
8
+ "PO-Revision-Date: 2020-02-10 20:38+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
12
  "MIME-Version: 1.0\n"
13
  "Content-Type: text/plain; charset=UTF-8\n"
14
  "Content-Transfer-Encoding: 8bit\n"
15
+ "X-Generator: Poedit 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:366
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:382
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:389
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:474
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:481
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:490
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:497
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:508
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:515
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
+ #: ad-inserter.php:1127
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1132
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
+ #: ad-inserter.php:1137 strings.php:103
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
+ #: ad-inserter.php:1142 strings.php:104
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
+ #: ad-inserter.php:1147 strings.php:105
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1152 strings.php:155
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1199
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1203
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1498
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:1833 ad-inserter.php:2912
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2331
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2331
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2332
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2333
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2334
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2335
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2336
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
+ #: ad-inserter.php:2607
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
+ #: ad-inserter.php:2610
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2614
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:2619
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
+ #: ad-inserter.php:2622
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
+ #: ad-inserter.php:2635
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
+ #: ad-inserter.php:2637
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
+ #: ad-inserter.php:2643
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
+ #: ad-inserter.php:2660 ad-inserter.php:2695
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
+ #: ad-inserter.php:2667
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:2677
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:2709
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:2709
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:2804
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:2833 ad-inserter.php:9701 class.php:2116
227
  #: includes/preview.php:2002 includes/preview.php:2045
228
+ #: includes/preview.php:2082 settings.php:4243 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:2834 settings.php:4244 settings.php:4329
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
+ #: ad-inserter.php:2837 settings.php:1164
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
+ #: ad-inserter.php:2840
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
+ #: ad-inserter.php:2841
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
+ #: ad-inserter.php:2853
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
+ #: ad-inserter.php:2856
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
+ #: ad-inserter.php:2873 ad-inserter.php:2885 strings.php:161
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
+ #: ad-inserter.php:2873 ad-inserter.php:2885
267
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
268
+ #: includes/functions.php:2562 strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
+ #: ad-inserter.php:2875
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
+ #: ad-inserter.php:2877
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
+ #: ad-inserter.php:2905
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
+ #: ad-inserter.php:2910
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
+ #: ad-inserter.php:2913 settings.php:1142
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
+ #: ad-inserter.php:2915
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
+ #: ad-inserter.php:2916
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
+ #: ad-inserter.php:2918
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
+ #: ad-inserter.php:2920
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
+ #: ad-inserter.php:2967
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
+ #: ad-inserter.php:2970
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
+ #: ad-inserter.php:2973
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
+ #: ad-inserter.php:2976
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
+ #: ad-inserter.php:2979
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
+ #: ad-inserter.php:2982
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
+ #: ad-inserter.php:2985
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
+ #: ad-inserter.php:2988
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
+ #: ad-inserter.php:2991
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
+ #: ad-inserter.php:3008
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
+ #: ad-inserter.php:3009
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
+ #: ad-inserter.php:3038
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
+ #: ad-inserter.php:3173
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
+ #: ad-inserter.php:3173
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
+ #: ad-inserter.php:3189
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
+ #: ad-inserter.php:3189
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
+ #: ad-inserter.php:3189 ad-inserter.php:3422
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
+ #: ad-inserter.php:3422
407
  msgid "Footer code"
408
  msgstr "Koda v nogi"
409
 
410
+ #: ad-inserter.php:3422
411
  msgctxt "Footer code"
412
  msgid "DISABLED"
413
  msgstr "ONEMOGOČENA"
414
 
415
+ #: ad-inserter.php:3428
416
  msgid "JAVASCRIPT NOT WORKING"
417
  msgstr "JAVASCRIPT NE DELA"
418
 
419
+ #: ad-inserter.php:3428
420
  msgid "NO JAVASCRIPT ERRORS"
421
  msgstr "BREZ JAVASCRIPT NAPAK"
422
 
423
+ #: ad-inserter.php:3428
424
  msgid "JAVASCRIPT ERRORS"
425
  msgstr "JAVASCRIPT NAPAKE"
426
 
427
  #. translators: block name (block with default settings)
428
+ #: ad-inserter.php:5849
429
  msgctxt "Block name"
430
  msgid "Default"
431
  msgstr "Privzeti"
432
 
433
  #. translators: %s: Ad Inserter
434
+ #: ad-inserter.php:6515
435
  msgid "Error importing %s settings."
436
  msgstr "Napaka pri uvozu %s nastavitev."
437
 
438
+ #: ad-inserter.php:6516
439
  msgid "Error importing settings for block"
440
  msgid_plural "Error importing settings for blocks:"
441
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
443
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
444
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
445
 
446
+ #: ad-inserter.php:6569
447
  msgid "Settings saved."
448
  msgstr "Nastavitve shranjene."
449
 
450
  #. translators: %s: Ad Inserter
451
+ #: ad-inserter.php:6571
452
  msgid "Invalid data received - %s settings not saved."
453
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
454
 
455
+ #: ad-inserter.php:6665
456
  msgid "Settings cleared."
457
  msgstr "Nastavitve ponastavljene."
458
 
459
  #. Translators: Post/Static page must have between X and Y words
460
  #: ad-inserter.php:7036 ad-inserter.php:7038 ad-inserter.php:7061
461
+ #: settings.php:2160
462
  msgid "word"
463
  msgid_plural "words"
464
  msgstr[0] "besedo"
466
  msgstr[2] "besede"
467
  msgstr[3] "besed"
468
 
469
+ #: ad-inserter.php:7075 ad-inserter.php:7196
470
  msgid "HTML TAGS REMOVED"
471
  msgstr "HTML ZNAČKE ODSTRANJENE"
472
 
473
+ #: ad-inserter.php:7272
474
  msgid "BEFORE COMMENTS"
475
  msgstr "PRED KOMENTARJI"
476
 
477
+ #: ad-inserter.php:7392
478
  msgid "AFTER COMMENTS"
479
  msgstr "PO KOMETARJIH"
480
 
481
+ #: ad-inserter.php:7467
482
  msgid "BETWEEN COMMENTS"
483
  msgstr "MED KOMENTARJI"
484
 
485
+ #: ad-inserter.php:9319
486
  msgid "requires WordPress 4.6 or newer"
487
  msgstr "potrebuje WordPress 4.6 ali novejši"
488
 
489
+ #: ad-inserter.php:9319
490
  msgid "Please update!"
491
  msgstr "Prosimo, posodobite!"
492
 
493
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
494
  #. name with HTML tags will be added)
495
+ #: ad-inserter.php:9574
496
  msgid "Thank you for installing"
497
  msgstr "Hvala za namestitev vtičnika"
498
 
499
  #. translators: Opt-in message: %s: HTML tags
500
+ #: ad-inserter.php:9576
501
  msgid ""
502
  "We would like to %s track its usage %s on your site. This is completely "
503
  "optional and can be disabled at any time."
505
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
506
  "izbirno in se lahko izključi kadarkoli."
507
 
508
+ #: ad-inserter.php:9578
509
  msgid ""
510
  "We don't record any sensitive data, only information regarding the WordPress "
511
  "environment and plugin usage, which will help us to make improvements to the "
515
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
516
 
517
  #. translators: Deactivation message: %s: HTML tags
518
+ #: ad-inserter.php:9615
519
  msgid ""
520
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
521
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
526
  "nam %s in poskušali vam bomo pomagati."
527
 
528
  #. translators: %s: Ad Inserter
529
+ #: ad-inserter.php:9659
530
  msgid "%s block."
531
  msgstr "%s blok."
532
 
533
  #. translators: widget title
534
+ #: ad-inserter.php:9675 ad-inserter.php:9710
535
  msgid "Processing log"
536
  msgstr "Dnevnik procesiranja"
537
 
538
  #. translators: widget title
539
+ #: ad-inserter.php:9677 ad-inserter.php:9711
540
  msgid "Dummy widget"
541
  msgstr "Prazen gradnik"
542
 
543
  #. translators: widget title
544
+ #: ad-inserter.php:9679 ad-inserter.php:9709
545
  msgid "Debugging tools"
546
  msgstr "Orodja za razhroščevanje"
547
 
548
  #. translators: block status (widget title)
549
+ #: ad-inserter.php:9686
550
  msgctxt "block"
551
  msgid "PAUSED"
552
  msgstr "USTAVLJEN"
553
 
554
+ #: ad-inserter.php:9687
555
  msgid "WIDGET DISABLED"
556
  msgstr "GRADNIK ONEMOGOČEN"
557
 
558
+ #: ad-inserter.php:9688
559
  msgid "Unknown block"
560
  msgstr "Neznan blok"
561
 
562
+ #: ad-inserter.php:9696 includes/functions-check-now.php:3261
563
+ #: includes/functions.old.php:3186 includes/functions.php:3479
564
+ #: settings.php:1194
565
  msgid "Title"
566
  msgstr "Naslov"
567
 
568
+ #: ad-inserter.php:9718
569
  msgctxt "Widget"
570
  msgid "Sticky"
571
  msgstr "Lepljiv"
572
 
573
+ #: ad-inserter.php:9767
574
  msgid ""
575
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
576
  "Inserter you need to first deactivate Ad Inserter Pro."
579
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
580
  "Inserter Pro."
581
 
582
+ #: ad-inserter.php:9768
583
  msgid ""
584
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
585
  "will clear all settings that are available only in the Pro version "
594
  msgid "PHP error in %s block"
595
  msgstr "PHP napaka v bloku %s"
596
 
597
+ #: class.php:2066
598
  msgid "Counters"
599
  msgstr "Števci"
600
 
601
+ #: class.php:2070
602
  msgid "Content"
603
  msgstr "Vsebina"
604
 
605
+ #: class.php:2075
606
  msgid "Excerpt"
607
  msgstr "Izvleček"
608
 
609
+ #: class.php:2080 strings.php:17
610
  msgid "Before post"
611
  msgstr "Pred prispevkom"
612
 
613
+ #: class.php:2085 strings.php:18
614
  msgid "After post"
615
  msgstr "Za prispevkom"
616
 
617
+ #: class.php:2090 strings.php:25
618
  msgid "Between posts"
619
  msgstr "Med prispevki"
620
 
621
+ #: class.php:2095 settings.php:1903 settings.php:4261
622
  msgid "Widget"
623
  msgstr "Gradnik"
624
 
625
+ #: class.php:2100 settings.php:4259
626
  msgid "PHP function call"
627
  msgstr "Klic PHP funkcije"
628
 
629
  #. Translators: %s: custom hook name
630
+ #: class.php:2110
631
  msgid "Custom hook %s call"
632
  msgstr "Klic ročice po meri %s"
633
 
634
+ #: class.php:2146
635
  msgid "AJAX REQUEST"
636
  msgstr "AJAX ZAHTEVEK"
637
 
638
+ #: class.php:2149
639
  msgid "Ajax request for block in iframe"
640
  msgstr "Ajax zahtevek za blok v iframe-u"
641
 
642
+ #: class.php:2183
643
  msgid "Ajax request url, click to open it in a new tab"
644
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
645
 
646
+ #: class.php:2186
647
  msgid "IN THE LOOP"
648
  msgstr "V ZANKI"
649
 
650
+ #: class.php:2186
651
  msgid "YES"
652
  msgstr "DA"
653
 
654
+ #: class.php:2186
655
  msgid "NO"
656
  msgstr "NE"
657
 
658
+ #: class.php:2222
659
  msgid "BLOCK"
660
  msgstr "BLOK"
661
 
662
+ #: class.php:2222
663
  msgctxt "block or widget"
664
  msgid "INSERTED BUT NOT VISIBLE"
665
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
666
 
667
+ #: class.php:2390
668
  msgctxt "viewports"
669
  msgid "ALL"
670
  msgstr "VSI"
671
 
672
+ #: class.php:2423 class.php:2465 class.php:3710 strings.php:267
673
  msgctxt "Block"
674
  msgid "HIDDEN"
675
  msgstr "SKRIT"
676
 
677
+ #: class.php:2472 class.php:3713 strings.php:266
678
  msgctxt "Block"
679
  msgid "VISIBLE"
680
  msgstr "VIDEN"
681
 
682
+ #: class.php:2977 class.php:3047
683
  msgid "ACTIVE GROUPS"
684
  msgstr "AKTIVNE SKUPINE"
685
 
686
+ #: class.php:3409
687
  msgid "start='%s' end='%s' days='%s' type='%s'"
688
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
689
 
690
  #. translators: %s: list parameters and type
691
+ #: class.php:3417
692
  msgid "parameters='%s' type='%s'"
693
  msgstr "parametri='%s' tip='%s'"
694
 
695
  #. translators: %s: list parameters and type
696
+ #: class.php:3419
697
  msgid "referers='%s' type='%s'"
698
  msgstr "napotitelji='%s' tip='%s'"
699
 
700
  #. translators: %s: list parameters and type
701
+ #: class.php:3421
702
  msgid "clients='%s' type='%s'"
703
  msgstr "odjemalci='%s' tip='%s'"
704
 
705
  #. translators: %s: list parameters and type
706
+ #: class.php:3593
707
  msgid "countries='%s' type='%s'"
708
  msgstr "države='%s' tip='%s'"
709
 
710
  #. translators: %s: list parameters and type
711
+ #: class.php:3595
712
  msgid "ip addresses='%s' type='%s'"
713
  msgstr "ip naslovi='%s' tip='%s'"
714
 
715
+ #: class.php:3710 class.php:3713
716
  msgid "viewport='%s' type='%s'"
717
  msgstr "pogled='%s' tip='%s'"
718
 
719
+ #: class.php:4067 strings.php:249
720
  msgid "BEFORE"
721
  msgstr "PRED"
722
 
723
+ #: class.php:4075 strings.php:251
724
  msgid "PREPEND CONTENT"
725
  msgstr "DODAJ PRED VSEBINO"
726
 
727
+ #: class.php:4079 strings.php:252
728
  msgid "APPEND CONTENT"
729
  msgstr "DODAJ ZA VSEBINO"
730
 
731
+ #: class.php:4083 strings.php:253
732
  msgid "REPLACE CONTENT"
733
  msgstr "NADOMESTI VSEBINO"
734
 
735
+ #: class.php:4087 strings.php:254
736
  msgid "REPLACE ELEMENT"
737
  msgstr "NADOMESTI ELEMENT"
738
 
739
+ #: class.php:4098 strings.php:250
740
  msgid "AFTER"
741
  msgstr "ZA"
742
 
743
+ #: class.php:4183 includes/preview.php:2045 includes/preview.php:2082
744
  msgid "Code"
745
  msgstr "Koda"
746
 
747
+ #: class.php:4186
748
  msgid "for block"
749
  msgstr "za blok"
750
 
751
+ #: class.php:7499 class.php:7551
752
  msgctxt "category name"
753
  msgid "Uncategorized"
754
  msgstr "Nekategorizirano"
755
 
756
+ #: class.php:8088
757
  msgid ""
758
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
759
  "extension for PHP."
771
  msgstr "Ponastavi"
772
 
773
  #: includes/editor.php:9 includes/placeholders.php:354
774
+ #: includes/preview.php:1991 settings.php:3602 strings.php:210 strings.php:255
775
  msgid "Cancel"
776
  msgstr "Prekliči"
777
 
798
  msgstr "STRAN BLOKIRANA"
799
 
800
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
801
+ #: includes/functions.php:301
802
  msgid "%d of %d names shown"
803
  msgstr "Prikazanih %d od %d imen"
804
 
805
  #. translators: %s: name filter
806
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
807
+ #: includes/functions.php:320
808
  msgid "No name matches filter"
809
  msgstr "Noben podatek ne ustreza filtru"
810
 
811
  #. translators: %s: Ad Inserter Pro
812
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
813
+ #: includes/functions.php:397
814
  msgid ""
815
  "Import %s settings when saving - if checked, the encoded settings below will "
816
  "be imported for all blocks and settings"
819
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
820
 
821
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
822
+ #: includes/functions.php:397
823
  msgid "Import Settings for"
824
  msgstr "Uvozi Nastavitve za"
825
 
826
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
827
+ #: includes/functions.php:401
828
  msgid "Saved settings for"
829
  msgstr "Shranjene nastavitve za"
830
 
831
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
832
+ #: includes/functions.php:421
833
  msgid "License Key"
834
  msgstr "Licenčni Ključ"
835
 
836
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
837
+ #: includes/functions.php:424
838
  msgid "License Key for"
839
  msgstr "Licenčni Ključ za"
840
 
841
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
842
+ #: includes/functions.php:426
843
  msgid "Open license page"
844
  msgstr "Odpri licenčno stran"
845
 
846
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
847
+ #: includes/functions.php:433
848
  msgid "Hide license key"
849
  msgstr "Skrij licenčni ključ"
850
 
851
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
852
+ #: includes/functions.php:433
853
  msgid "Hide key"
854
  msgstr "Skrij ključ"
855
 
856
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
857
+ #: includes/functions.php:448
858
  msgid "Main content element"
859
  msgstr "Glavni element vsebine"
860
 
861
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
862
+ #: includes/functions.php:451
863
  msgid ""
864
  "Main content element (#id or .class) for 'Stick to the content' position. "
865
  "Leave empty unless position is not properly calculated."
868
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
869
 
870
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
871
+ #: includes/functions.php:452 settings.php:1345 settings.php:2817
872
  msgid "Open HTML element selector"
873
  msgstr "Odpri izbirnik HTML elementa"
874
 
875
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
876
+ #: includes/functions.php:457
877
  msgid "Lazy loading offset"
878
  msgstr "Zamik za leno nalaganje"
879
 
880
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
881
+ #: includes/functions.php:460
882
  msgid "Offset of the block from the visible viewport when it should be loaded"
883
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
884
 
885
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
886
+ #: includes/functions.php:471
887
  msgid "Export / Import Block Settings"
888
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
889
 
890
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
891
+ #: includes/functions.php:486
892
  msgid "Track impressions and clicks for this block"
893
  msgstr "Sledi prikazom in klikom za ta blok"
894
 
895
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
896
+ #: includes/functions.php:486
897
  msgid " - global tracking disabled"
898
  msgstr " - globalno sledenje onemogočeno"
899
 
900
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
901
+ #: includes/functions.php:493
902
  msgid "Generate PDF report"
903
  msgstr "Generiraj PDF poročilo"
904
 
905
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
906
+ #: includes/functions.php:498
907
  msgid "Open public report"
908
  msgstr "Odpri javno poročilo"
909
 
910
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
911
+ #: includes/functions.php:512
912
  msgid "Toggle Ad Blocking Statistics"
913
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
914
 
915
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
916
  #: includes/functions.old.php:508 includes/functions.old.php:2960
917
+ #: includes/functions.php:520 includes/functions.php:3222
918
  msgid "Toggle Statistics"
919
  msgstr "Preklopi Statistiko"
920
 
921
+ #: includes/functions-check-now.php:528 includes/functions.php:529
922
  msgid "Pin list"
923
  msgstr "Pripni seznam"
924
 
925
  #. translators: %s: Ad Inserter Pro
926
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
927
+ #: includes/functions.php:544
928
  msgid "%s license key is not set. Continue?"
929
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
930
 
931
  #. translators: %s: Ad Inserter Pro
932
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
933
+ #: includes/functions.php:548
934
  msgid "Invalid %s license key. Continue?"
935
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
936
 
937
  #. translators: %s: Ad Inserter Pro
938
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
939
+ #: includes/functions.php:552
940
  msgid "%s license overused. Continue?"
941
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
942
 
943
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
944
+ #: includes/functions.php:560 settings.php:1099 settings.php:2261
945
  msgid "Save Settings"
946
  msgstr "Shrani Nastavitve"
947
 
948
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
949
+ #: includes/functions.php:620 includes/preview.php:2131
950
  msgid "Horizontal position"
951
  msgstr "Vodoravni položaj"
952
 
953
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
954
+ #: includes/functions.php:643
955
  msgid ""
956
  "Horizontal margin from the content or screen edge, empty means default value "
957
  "from CSS"
960
  "iz CSS"
961
 
962
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
963
+ #: includes/functions.php:651 includes/preview.php:2186
964
  msgid "Vertical position"
965
  msgstr "Navpični položaj"
966
 
967
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
968
+ #: includes/functions.php:666
969
  msgid ""
970
  "Vertical margin from the top or bottom screen edge, empty means default "
971
  "value from CSS"
974
  "iz CSS"
975
 
976
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
977
+ #: includes/functions.php:691 includes/preview.php:2237
978
  msgid "Animation"
979
  msgstr "Animacija"
980
 
981
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
982
+ #: includes/functions.php:709
983
  msgid "Trigger"
984
  msgstr "Sporžilec"
985
 
986
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
987
+ #: includes/functions.php:718
988
  msgid ""
989
  "Trigger value: page scroll in %, page scroll in px or element with selector "
990
  "(#id or .class) becomes visible"
993
  "selektorjem (#id ali .razred) postane viden"
994
 
995
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
996
+ #: includes/functions.php:722
997
  msgid "Offset"
998
  msgstr "Zamik"
999
 
1000
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
1001
+ #: includes/functions.php:722
1002
  msgid "Offset of trigger element"
1003
  msgstr "Zamik sprožilnega elementa"
1004
 
1005
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1006
+ #: includes/functions.php:726
1007
  msgid "Delay"
1008
  msgstr "Zakasnitev"
1009
 
1010
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
1011
+ #: includes/functions.php:726
1012
  msgid "Delay animation after trigger condition"
1013
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
1014
 
1015
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
1016
+ #: includes/functions.php:730
1017
  msgid "Trigger once"
1018
  msgstr "Sproži enkrat"
1019
 
1020
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
1021
+ #: includes/functions.php:732
1022
  msgid "Trigger animation only once"
1023
  msgstr "Sproži animacijo samo enkrat"
1024
 
1025
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1026
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
1027
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
1028
+ #: includes/functions.php:774 includes/functions.php:2701
1029
+ #: includes/functions.php:2717
1030
  msgid "Tracking is globally disabled"
1031
  msgstr "Sledenje je globalno onemogočeno"
1032
 
1033
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1034
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
1035
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
1036
+ #: includes/functions.php:778 includes/functions.php:2705
1037
+ #: includes/functions.php:2721
1038
  msgid "Tracking for this block is disabled"
1039
  msgstr "Sledenje za ta blok je onemogočeno"
1040
 
1041
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
1042
+ #: includes/functions.php:785
1043
  msgid "Double click to toggle controls in public reports"
1044
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1045
 
1046
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
1047
+ #: includes/functions.php:791 settings.php:3537 settings.php:3573
1048
+ #: settings.php:3615 strings.php:220
1049
  msgid "Loading..."
1050
  msgstr "Nalagam..."
1051
 
1052
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
1053
+ #: includes/functions.php:812
1054
  msgid ""
1055
  "Clear statistics data for the selected range - clear both dates to delete "
1056
  "all data for this block"
1059
  "brisanje vseh podatkov za ta blok"
1060
 
1061
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1062
+ #: includes/functions.php:816
1063
  msgid "Auto refresh data for the selected range every 60 seconds"
1064
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1065
 
1066
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1067
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1068
+ #: includes/functions.php:819 includes/functions.php:5690
1069
  msgid "Load data for last month"
1070
  msgstr "Naloži podatke za zadnji mesec"
1071
 
1072
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1073
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1074
+ #: includes/functions.php:819 includes/functions.php:5690
1075
  msgid "Last Month"
1076
  msgstr "Zadnji Mesec"
1077
 
1078
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1079
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1080
+ #: includes/functions.php:822 includes/functions.php:5693
1081
  msgid "Load data for this month"
1082
  msgstr "Naloži podatke za ta mesec"
1083
 
1084
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1085
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1086
+ #: includes/functions.php:822 includes/functions.php:5693
1087
  msgid "This Month"
1088
  msgstr "Ta Mesec"
1089
 
1090
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1091
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1092
+ #: includes/functions.php:825 includes/functions.php:5696
1093
  msgid "Load data for this year"
1094
  msgstr "Naloži podatke za to leto"
1095
 
1096
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1097
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1098
+ #: includes/functions.php:825 includes/functions.php:5696
1099
  msgid "This Year"
1100
  msgstr "To Leto"
1101
 
1102
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1103
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1104
+ #: includes/functions.php:828 includes/functions.php:5699
1105
  msgid "Load data for the last 15 days"
1106
  msgstr "Naloži podatke za zadnjih 15 dni"
1107
 
1108
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1109
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1110
+ #: includes/functions.php:831 includes/functions.php:5702
1111
  msgid "Load data for the last 30 days"
1112
  msgstr "Naloži podatke za zadnjih 30 dni"
1113
 
1114
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1115
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1116
+ #: includes/functions.php:834 includes/functions.php:5705
1117
  msgid "Load data for the last 90 days"
1118
  msgstr "Naloži podatke za zadnjih 90 dni"
1119
 
1120
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1121
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1122
+ #: includes/functions.php:837 includes/functions.php:5708
1123
  msgid "Load data for the last 180 days"
1124
  msgstr "Naloži podatke za zadnjih 180 dni"
1125
 
1126
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1127
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1128
+ #: includes/functions.php:840 includes/functions.php:5711
1129
  msgid "Load data for the last 365 days"
1130
  msgstr "Naloži podatke za zadnjih 365 dni"
1131
 
1132
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1133
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1134
+ #: includes/functions.php:850 includes/functions.php:5721
1135
  msgid "Load data for the selected range"
1136
  msgstr "Naloži podatke za izbrano obdobje"
1137
 
1138
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1139
+ #: includes/functions.php:866
1140
  msgid ""
1141
  "Import settings when saving - if checked, the encoded settings below will be "
1142
  "imported for this block"
1145
  "nastavitve spodaj uvozile za ta blok"
1146
 
1147
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1148
+ #: includes/functions.php:866
1149
  msgid "Import settings for block"
1150
  msgstr "Uvozi nastavitve za blok"
1151
 
1152
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1153
+ #: includes/functions.php:870
1154
  msgid ""
1155
  "Import block name when saving - if checked and 'Import settings for block' "
1156
  "is also checked, the name from encoded settings below will be imported for "
1161
  "uvozilo za ta blok"
1162
 
1163
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1164
+ #: includes/functions.php:870
1165
  msgid "Import block name"
1166
  msgstr "Uvozi ime bloka"
1167
 
1168
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1169
+ #: includes/functions.php:874
1170
  msgid "Saved settings for block"
1171
  msgstr "Shranjene nastavitve za blok"
1172
 
1173
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1174
+ #: includes/functions.php:887
1175
  msgid "Export / Import Ad Inserter Pro Settings"
1176
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1177
 
1178
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1179
+ #: includes/functions.php:897
1180
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1181
  msgstr ""
1182
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1183
  "bloke?"
1184
 
1185
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1186
+ #: includes/functions.php:899
1187
  msgid "Clear All Statistics Data"
1188
  msgstr "Pobriši Vse Podatke o Statistiki"
1189
 
1190
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1191
+ #: includes/functions.php:929
1192
  msgid "Toggle country/city editor"
1193
  msgstr "Preklopi urejevalnik držav/mest"
1194
 
1195
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1196
+ #: includes/functions.php:935
1197
  msgid "IP Addresses"
1198
  msgstr "IP Naslovi"
1199
 
1200
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1201
+ #: includes/functions.php:938
1202
  msgid "Toggle IP address editor"
1203
  msgstr "Preklopi urejevalnik IP nslovov"
1204
 
1205
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1206
+ #: includes/functions.php:941
1207
  msgid ""
1208
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1209
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1212
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1213
 
1214
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1215
+ #: includes/functions.php:950
1216
  msgid "Blacklist IP addresses"
1217
  msgstr "Črni seznam IP naslovov"
1218
 
1219
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1220
+ #: includes/functions.php:954
1221
  msgid "Whitelist IP addresses"
1222
  msgstr "Beli seznam IP naslovov"
1223
 
1224
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1225
+ #: includes/functions.php:965
1226
  msgid "Countries"
1227
  msgstr "Države"
1228
 
1229
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1230
+ #: includes/functions.php:966
1231
  msgid "Cities"
1232
  msgstr "Mesta"
1233
 
1234
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1235
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1236
+ #: includes/functions.php:970 includes/functions.php:3187
1237
  msgid "Toggle country editor"
1238
  msgstr "Preklopi urejevalnik držav"
1239
 
1240
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1241
+ #: includes/functions.php:973
1242
  msgid "Toggle city editor"
1243
  msgstr "Preklopi urejevalnik mest"
1244
 
1245
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1246
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1247
+ #: includes/functions.php:977 includes/functions.php:3190
1248
  msgid "Comma separated country ISO Alpha-2 codes"
1249
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1250
 
1251
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1252
+ #: includes/functions.php:986
1253
  msgid "Blacklist countries"
1254
  msgstr "Črni seznam držav"
1255
 
1256
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1257
+ #: includes/functions.php:990
1258
  msgid "Whitelist countries"
1259
  msgstr "Beli seznam držav"
1260
 
1261
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1262
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1263
+ #: includes/functions.php:1437 includes/functions.php:1747
1264
  msgid "Enter license key"
1265
  msgstr "Vnesite licenčni ključ"
1266
 
1267
  #. translators: %s: Ad Inserter Pro
1268
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1269
+ #: includes/functions.php:1443
1270
  msgid ""
1271
  "%s license key is not set. Plugin functionality is limited and updates are "
1272
  "disabled."
1275
  "posodobitve onemogočene."
1276
 
1277
  #. translators: %s: Ad Inserter Pro
1278
+ #: includes/functions-check-now.php:1402 includes/functions.php:1457
1279
  msgid "Warning: %s plugin update server is not accessible"
1280
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1281
 
1282
  #. translators: updates are not available
1283
+ #: includes/functions-check-now.php:1404 includes/functions.php:1459
1284
  msgid "updates"
1285
  msgstr "posodobitve"
1286
 
1287
  #. translators: updates are not available
1288
+ #: includes/functions-check-now.php:1406 includes/functions.php:1461
1289
  msgid "are not available"
1290
  msgstr "niso na razpolago"
1291
 
1292
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1293
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1294
+ #: includes/functions.php:1466 includes/functions.php:1756
1295
  msgid "Check license key"
1296
  msgstr "Preverite licenčni ključ"
1297
 
1298
  #. translators: %s: Ad Inserter Pro
1299
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1300
+ #: includes/functions.php:1472
1301
  msgid "Invalid %s license key."
1302
  msgstr "Neveljaven %s licenčni ključ."
1303
 
1304
  #. translators: %s: Ad Inserter Pro
1305
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1306
+ #: includes/functions.php:1481
1307
  msgid "%s license expired. Plugin updates are disabled."
1308
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1309
 
1310
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1311
+ #: includes/functions.php:1482
1312
  msgid "Renew license"
1313
  msgstr "Obnovite licenco"
1314
 
1315
  #. translators: %s: Ad Inserter Pro
1316
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1317
+ #: includes/functions.php:1490
1318
  msgid "%s license overused. Plugin updates are disabled."
1319
  msgstr ""
1320
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1321
 
1322
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1323
+ #: includes/functions.php:1491
1324
  msgid "Manage licenses"
1325
  msgstr "Upravljajte z licencami"
1326
 
1327
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1328
+ #: includes/functions.php:1491
1329
  msgid "Upgrade license"
1330
  msgstr "Nadgradite licenco"
1331
 
1332
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1333
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1334
+ #: includes/functions.php:1749
1335
  msgid ""
1336
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1337
  "limited and updates are disabled."
1341
 
1342
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1343
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1344
+ #: includes/functions.php:1758
1345
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1346
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1347
 
1348
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1349
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1350
+ #: includes/functions.php:1774
1351
  msgid ""
1352
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1353
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1358
 
1359
  #. translators: 1, 3: HTML tags, 2: percentage
1360
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1361
+ #: includes/functions.php:1781
1362
  msgid ""
1363
  "During the license period and 30 days after the license has expired we offer "
1364
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1367
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1368
 
1369
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1370
+ #: includes/functions.php:1791
1371
  msgid "No, thank you."
1372
  msgstr "Ne, hvala."
1373
 
1374
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1375
+ #: includes/functions.php:1794
1376
  msgid "Not now, maybe later."
1377
  msgstr "Ne zdaj, mogoče kasneje."
1378
 
1379
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1380
+ #: includes/functions.php:1808
1381
  msgid "Renew the licence"
1382
  msgstr "Obnovi licenco"
1383
 
1384
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1385
+ #: includes/functions.php:1810
1386
  msgid "Update license status"
1387
  msgstr "Posodobi status licence"
1388
 
1389
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1390
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1391
+ #: includes/functions.php:1821
1392
  msgid ""
1393
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1394
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1399
 
1400
  #. Translators: %s: HTML tag
1401
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1402
+ #: includes/functions.php:1873
1403
  msgid "Warning: %s MaxMind IP geolocation database not found."
1404
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1405
 
1406
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1407
+ #: includes/functions.php:2494
1408
  msgid "Geolocation"
1409
  msgstr "Geolokacija"
1410
 
1411
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1412
+ #: includes/functions.php:2498 settings.php:4248
1413
  msgid "Exceptions"
1414
  msgstr "Izjeme"
1415
 
1416
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1417
+ #: includes/functions.php:2503
1418
  msgid "Multisite"
1419
  msgstr "Multisite"
1420
 
1421
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1422
+ #: includes/functions.php:2508 settings.php:4254
1423
  msgid "Tracking"
1424
  msgstr "Sledenje"
1425
 
1426
  #. translators: %d: days, hours, minutes
1427
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1428
+ #: includes/functions.php:2539
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr "Planirano v %d dneh %d urah %d minutah"
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1435
+ #: includes/functions.php:2548
1436
  msgid "Active %s expires in %d days %d hours %d minutes"
1437
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1438
 
1439
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1440
+ #: includes/functions.php:2552
1441
  msgid "Expired"
1442
  msgstr "Poteklo"
1443
 
1444
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1445
+ #: includes/functions.php:2578 settings.php:1427 settings.php:1442
1446
+ #: settings.php:1532 settings.php:2158
1447
  msgid "and"
1448
  msgstr "in"
1449
 
1450
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1451
+ #: includes/functions.php:2560
1452
  msgid "fallback"
1453
  msgstr "rezerva"
1454
 
1455
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1456
+ #: includes/functions.php:2561
1457
  msgid "Block to be used when scheduling expires"
1458
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1459
 
1460
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1461
+ #: includes/functions.php:2598
1462
  msgid "Load in iframe"
1463
  msgstr "Naloži v iframe-u"
1464
 
1465
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1466
+ #: includes/functions.php:2602 includes/placeholders.php:389
1467
  msgid "Width"
1468
  msgstr "Širina"
1469
 
1470
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1471
+ #: includes/functions.php:2603
1472
  msgid "iframe width, empty means full width (100%)"
1473
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1474
 
1475
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1476
+ #: includes/functions.php:2609 includes/placeholders.php:384
1477
  msgid "Height"
1478
  msgstr "Višina"
1479
 
1480
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1481
+ #: includes/functions.php:2610
1482
  msgid "iframe height, empty means adjust it to iframe content height"
1483
  msgstr ""
1484
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1485
 
1486
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1487
+ #: includes/functions.php:2617
1488
  msgid "Ad label in iframe"
1489
  msgstr "Oznaka oglasa v iframe-u"
1490
 
1491
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1492
+ #: includes/functions.php:2622
1493
  msgid "Preview iframe code"
1494
  msgstr "Predpreglej kodo iframe"
1495
 
1496
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1497
+ #: includes/functions.php:2622 includes/preview.php:2000 settings.php:1094
1498
+ #: settings.php:2879
1499
  msgid "Preview"
1500
  msgstr "Predogled"
1501
 
1502
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1503
+ #: includes/functions.php:2636 settings.php:4255
1504
  msgid "Limits"
1505
  msgstr "Omejitve"
1506
 
1507
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1508
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1509
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1510
+ #: includes/functions.php:2641 includes/functions.php:4666
1511
+ #: includes/functions.php:4729 settings.php:2308
1512
  msgid "Ad Blocking"
1513
  msgstr "Blokiranje Oglasov"
1514
 
1515
  #. translators: 1, 2 and 3, 4: HTML tags
1516
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1517
+ #: includes/functions.php:2650
1518
  msgid ""
1519
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1520
  "for tracking!"
1525
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1526
  #. header
1527
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1528
+ #: includes/functions.php:2659
1529
  msgid ""
1530
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1531
  "enabled and automatic insertion %6$s!"
1534
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1535
 
1536
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1537
+ #: includes/functions.php:2725
1538
  msgid "Click fraud protection is globally disabled"
1539
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1540
 
1541
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1542
+ #: includes/functions.php:2729
1543
  msgid "Max clicks per time period are not defined"
1544
  msgstr "Največje število klikov na časovno enoto ni definirano"
1545
 
1546
  #. Translators: Max n impressions
1547
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1548
+ #: includes/functions.php:2743
1549
  msgid "General limits"
1550
  msgstr "Splošne omejitve"
1551
 
1553
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1554
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1555
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1556
+ #: includes/functions.php:2749 includes/functions.php:2761
1557
+ #: includes/functions.php:2846
1558
  msgid "Current value"
1559
  msgstr "Trenutna vrednost"
1560
 
1574
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1575
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1576
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1577
+ #: includes/functions.php:2768 includes/functions.php:2778
1578
+ #: includes/functions.php:2797 includes/functions.php:2807
1579
+ #: includes/functions.php:2853 includes/functions.php:2862
1580
+ #: includes/functions.php:2880 includes/functions.php:2889 settings.php:2079
1581
  msgid "Max"
1582
  msgstr "Največ"
1583
 
1584
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1585
+ #: includes/functions.php:2769
1586
  msgid ""
1587
  "Maximum number of impressions for this block. Empty means no general "
1588
  "impression limit."
1598
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1599
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1600
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1601
+ #: includes/functions.php:2771 includes/functions.php:2781
1602
+ #: includes/functions.php:2856 includes/functions.php:2865
1603
  msgid "impression"
1604
  msgid_plural "impressions"
1605
  msgstr[0] "prikaz"
1608
  msgstr[3] "prikazov"
1609
 
1610
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1611
+ #: includes/functions.php:2779
1612
  msgid ""
1613
  "Maximum number of impressions per time period. Empty means no time limit."
1614
  msgstr ""
1623
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1624
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1625
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1626
+ #: includes/functions.php:2785 includes/functions.php:2814
1627
+ #: includes/functions.php:2869 includes/functions.php:2896
1628
  msgid "per"
1629
  msgstr "na"
1630
 
1631
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1632
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1633
+ #: includes/functions.php:2786 includes/functions.php:2815
1634
  msgid "Time period in days. Empty means no time limit."
1635
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1636
 
1645
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1646
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1647
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1648
+ #: includes/functions.php:2788 includes/functions.php:2817
1649
+ #: includes/functions.php:2872 includes/functions.php:2899
1650
+ #: includes/functions.php:3005 includes/functions.php:3348 strings.php:201
1651
  #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1652
  #: strings.php:206
1653
  msgid "day"
1658
  msgstr[3] "dni"
1659
 
1660
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1661
+ #: includes/functions.php:2798
1662
  msgid ""
1663
  "Maximum number of clicks on this block. Empty means no general click limit."
1664
  msgstr ""
1674
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1675
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1676
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1677
+ #: includes/functions.php:2800 includes/functions.php:2810
1678
+ #: includes/functions.php:2883 includes/functions.php:2892
1679
+ #: includes/functions.php:4877
1680
  msgid "click"
1681
  msgid_plural "clicks"
1682
  msgstr[0] "klik"
1685
  msgstr[3] "klikov"
1686
 
1687
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1688
+ #: includes/functions.php:2808
1689
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1690
  msgstr ""
1691
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1692
  "omejitev."
1693
 
1694
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1695
+ #: includes/functions.php:2833
1696
  msgid "Individual visitor limits"
1697
  msgstr "Omejitve posameznih obiskovalcev"
1698
 
1699
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1700
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1701
+ #: includes/functions.php:2837 includes/functions.php:2839
1702
  msgid ""
1703
  "When specified number of clicks on this block for a visitor will be reached "
1704
  "in the specified time period, all blocks that have click fraud protection "
1711
  "pred goljufijo s kliki."
1712
 
1713
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1714
+ #: includes/functions.php:2839
1715
  msgid "Trigger click fraud protection"
1716
  msgstr "Sproži zaščito pred goljufijo s kliki"
1717
 
1718
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1719
+ #: includes/functions.php:2854
1720
  msgid ""
1721
  "Maximum number of impressions of this block for each visitor. Empty means no "
1722
  "impression limit."
1725
  "pomeni brez omejitev prikazov."
1726
 
1727
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1728
+ #: includes/functions.php:2863
1729
  msgid ""
1730
  "Maximum number of impressions per time period for each visitor. Empty means "
1731
  "no impression limit per time period for visitors."
1735
 
1736
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1737
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1738
+ #: includes/functions.php:2870 includes/functions.php:2897
1739
  msgid ""
1740
  "Time period in days. Use decimal value (with decimal point) for shorter "
1741
  "periods. Empty means no time limit."
1744
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1745
 
1746
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1747
+ #: includes/functions.php:2881
1748
  msgid ""
1749
  "Maximum number of clicks on this block for each visitor. Empty means no "
1750
  "click limit."
1753
  "brez omejitev klikov."
1754
 
1755
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1756
+ #: includes/functions.php:2890
1757
  msgid ""
1758
  "Maximum number of clicks per time period for each visitor. Empty means no "
1759
  "click limit per time period for visitors."
1762
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1763
 
1764
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1765
+ #: includes/functions.php:2916
1766
  msgid "When ad blocking is detected"
1767
  msgstr "Ko je blokiranje oglasov zaznano"
1768
 
1769
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1770
+ #: includes/functions.php:2925
1771
  msgid "replacement"
1772
  msgstr "nadomestek"
1773
 
1774
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1775
+ #: includes/functions.php:2926
1776
  msgid "Block to be shown when ad blocking is detected"
1777
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1778
 
1779
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1780
+ #: includes/functions.php:2927
1781
  msgctxt "replacement"
1782
  msgid "None"
1783
  msgstr "Noben"
1784
 
1785
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1786
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1787
+ #: includes/functions.php:2944 includes/functions.php:5934
1788
  msgid "Close button"
1789
  msgstr "Gumb Zapri"
1790
 
1791
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1792
+ #: includes/functions.php:2996
1793
  msgid "Auto close after"
1794
  msgstr "Ssamodejno zapri po"
1795
 
1796
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1797
+ #: includes/functions.php:2997
1798
  msgid ""
1799
  "Time in seconds in which the ad will automatically close. Leave empty to "
1800
  "disable auto closing."
1804
 
1805
  #. Translators: Don't show for x days
1806
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1807
+ #: includes/functions.php:3002
1808
  msgid "Don't show for"
1809
  msgstr "Ne prikaži"
1810
 
1811
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1812
+ #: includes/functions.php:3003
1813
  msgid ""
1814
  "Time in days in which closed ad will not be shown again. Use decimal value "
1815
  "(with decimal point) for shorter time period or leave empty to show it again "
1821
 
1822
  #. Translators: Delay showing for x pageviews
1823
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1824
+ #: includes/functions.php:3023
1825
  msgid "Delay showing for"
1826
  msgstr "Zakasni prikaz za"
1827
 
1828
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1829
+ #: includes/functions.php:3024
1830
  msgid ""
1831
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1832
  "empty to insert the code for the first pageview."
1838
  #. Translators: Show every x pageviews
1839
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1840
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1841
+ #: includes/functions.php:3026 includes/functions.php:3033
1842
  msgid "pageview"
1843
  msgid_plural "pageviews"
1844
  msgstr[0] "ogled strani"
1848
 
1849
  #. Translators: Show every x pageviews
1850
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1851
+ #: includes/functions.php:3030
1852
  msgid "Show every"
1853
  msgid_plural "Show every"
1854
  msgstr[0] "Prikaži vsak"
1857
  msgstr[3] "Prikaži vsakih"
1858
 
1859
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1860
+ #: includes/functions.php:3031
1861
  msgid ""
1862
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1863
  "for every pageview."
1866
  "vstavljanje kode pri vsakem ogledu strani."
1867
 
1868
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1869
+ #: includes/functions.php:3050
1870
  msgid "Lazy loading"
1871
  msgstr "Leno nalaganje"
1872
 
1873
  #. Translators: %s MaxMind
1874
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1875
+ #: includes/functions.php:3111
1876
  msgid "This product includes GeoLite2 data created by %s"
1877
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1878
 
1879
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1880
+ #: includes/functions.php:3124
1881
  msgid "IP geolocation database"
1882
  msgstr "Podatkovna baza za IP geolokacijo"
1883
 
1884
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1885
+ #: includes/functions.php:3127
1886
  msgid "Select IP geolocation database."
1887
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1888
 
1889
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1890
+ #: includes/functions.php:3138
1891
  msgid "Automatic database updates"
1892
  msgstr "Samodejna posodobitev podatkovne baze"
1893
 
1894
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1895
+ #: includes/functions.php:3141
1896
  msgid ""
1897
  "Automatically download and update free GeoLite2 IP geolocation database by "
1898
  "MaxMind"
1901
  "podatkovno bazo MaxMind"
1902
 
1903
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1904
+ #: includes/functions.php:3158
1905
  msgid "Database"
1906
  msgstr "Podatkovna baza"
1907
 
1908
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1909
+ #: includes/functions.php:3161
1910
  msgid ""
1911
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1912
  "file"
1916
 
1917
  #. translators: %d: group number
1918
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1919
+ #: includes/functions.php:3179
1920
  msgid "Group %d"
1921
  msgstr "Skupina %d"
1922
 
1923
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1924
+ #: includes/functions.php:3185
1925
  msgid "countries"
1926
  msgstr "države"
1927
 
1928
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1929
+ #: includes/functions.php:3230
1930
  msgid ""
1931
  "Enable impression and click tracking. You also need to enable tracking for "
1932
  "each block you want to track."
1935
  "vsak blok, ki bi ga radi sledili."
1936
 
1937
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1938
+ #: includes/functions.php:3237
1939
  msgid "Generate report"
1940
  msgstr "Generiraj poročilo"
1941
 
1942
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1943
+ #: includes/functions.php:3245
1944
  msgid "Impression and Click Tracking"
1945
  msgstr "Sledenje Prikazov in Klikov"
1946
 
1947
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1948
+ #: includes/functions.php:3246 settings.php:2767
1949
  msgctxt "ad blocking detection"
1950
  msgid "NOT ENABLED"
1951
  msgstr "NI OMOGOČENO"
1952
 
1953
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1954
+ #: includes/functions.php:3262
1955
  msgid "Internal"
1956
  msgstr "Notranje"
1957
 
1958
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1959
+ #: includes/functions.php:3266
1960
  msgid "Track impressions and clicks with internal tracking and statistics"
1961
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1962
 
1963
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1964
+ #: includes/functions.php:3271
1965
  msgid "External"
1966
  msgstr "Zunanje"
1967
 
1968
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1969
+ #: includes/functions.php:3275
1970
  msgid ""
1971
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1972
  "code installed)"
1975
  "kodo za sledenje)"
1976
 
1977
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1978
+ #: includes/functions.php:3280
1979
  msgid "Track Pageviews"
1980
  msgstr "Sledi Ogledom Strani"
1981
 
1982
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1983
+ #: includes/functions.php:3286
1984
  msgid "Track Pageviews by Device (as configured for viewports)"
1985
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1986
 
1987
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1988
+ #: includes/functions.php:3296
1989
  msgid "Track for Logged in Users"
1990
  msgstr "Sledi za Prijavljene Upor."
1991
 
1992
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1993
+ #: includes/functions.php:3302
1994
  msgid "Track impressions and clicks from logged in users"
1995
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1996
 
1997
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1998
+ #: includes/functions.php:3312
1999
  msgid "Click Detection"
2000
  msgstr "Zaznavanje klikov"
2001
 
2002
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
2003
+ #: includes/functions.php:3318
2004
  msgid ""
2005
  "Standard method detects clicks only on banners with links, Advanced method "
2006
  "can detect clicks on any kind of ads, but it is slightly less accurate"
2009
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2010
 
2011
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
2012
+ #: includes/functions.php:3337
2013
  msgid "Click fraud protection"
2014
  msgstr "Zaščita pred goljufijo s kliki"
2015
 
2016
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
2017
+ #: includes/functions.php:3341
2018
  msgid "Globally enable click fraud protection for selected blocks."
2019
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2020
 
2021
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
2022
+ #: includes/functions.php:3347
2023
  msgid "Protection time"
2024
  msgstr "Čas zaščite"
2025
 
2026
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
2027
+ #: includes/functions.php:3348
2028
  msgid ""
2029
  "Time period in days in which blocks with enabled click fraud protection will "
2030
  "be hidden. Use decimal value (with decimal point) for shorter periods."
2034
  "za krajša obdobja."
2035
 
2036
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
2037
+ #: includes/functions.php:3367
2038
  msgid "Report header image"
2039
  msgstr "Slika v glavi poročila"
2040
 
2041
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
2042
+ #: includes/functions.php:3370
2043
  msgid ""
2044
  "Image or logo to be displayed in the header of the statistins report. "
2045
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
2050
  "ponastavitev na privzeto sliko."
2051
 
2052
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
2053
+ #: includes/functions.php:3371 strings.php:232
2054
  msgid "Select or upload header image"
2055
  msgstr "Izberi ali naloži sliko glave"
2056
 
2057
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
2058
+ #: includes/functions.php:3376
2059
  msgid "Report header title"
2060
  msgstr "Naslov v glavi poročila"
2061
 
2062
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
2063
+ #: includes/functions.php:3379
2064
  msgid ""
2065
  "Title to be displayed in the header of the statistics report. Text or HTML "
2066
  "code, clear to reset to default text."
2069
  "pobrišite za ponastavitev na privzeto besedilo."
2070
 
2071
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
2072
+ #: includes/functions.php:3384
2073
  msgid "Report header description"
2074
  msgstr "Opis v glavi poročila"
2075
 
2076
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
2077
+ #: includes/functions.php:3387
2078
  msgid ""
2079
  "Description to be displayed in the header of the statistics report. Text or "
2080
  "HTML code, clear to reset to default text."
2083
  "pobrišite za ponastavitev na privzeto besedilo."
2084
 
2085
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
2086
+ #: includes/functions.php:3392
2087
  msgid "Report footer"
2088
  msgstr "Noga poročila"
2089
 
2090
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
2091
+ #: includes/functions.php:3395
2092
  msgid ""
2093
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2094
  "to default text."
2097
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2098
 
2099
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
2100
+ #: includes/functions.php:3400
2101
  msgid "Public report key"
2102
  msgstr "Ključ za javno poročilo"
2103
 
2104
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
2105
+ #: includes/functions.php:3403
2106
  msgid "String to generate unique report IDs. Clear to reset to default value."
2107
  msgstr ""
2108
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2109
  "privzeto vrednost."
2110
 
2111
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
2112
+ #: includes/functions.php:3466
2113
  msgid "Are you sure you want to clear all exceptions for block"
2114
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2115
 
2116
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
2117
+ #: includes/functions.php:3467 settings.php:1197
2118
  msgid "Clear all exceptions for block"
2119
  msgstr "Pobriši vse izjeme za blok"
2120
 
2121
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2122
+ #: includes/functions.php:3474
2123
  msgid "Are you sure you want to clear all exceptions?"
2124
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2125
 
2126
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
2127
+ #: includes/functions.php:3474
2128
  msgid "Clear all exceptions for all blocks"
2129
  msgstr "Pobriši vse izjeme za vse bloke"
2130
 
2131
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
2132
+ #: includes/functions.php:3479 settings.php:3846 settings.php:4331
2133
  msgid "Type"
2134
  msgstr "Vrsta"
2135
 
2136
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
2137
+ #: includes/functions.php:3497
2138
  msgid "View"
2139
  msgstr "Poglej"
2140
 
2141
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2142
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
2143
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
2144
+ #: includes/functions.php:3498 includes/functions.php:3505
2145
+ #: includes/functions.php:3509 includes/placeholders.php:353
2146
+ #: includes/preview.php:2306 settings.php:1331 settings.php:3606
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2151
+ #: includes/functions.php:3528
2152
  msgid "Are you sure you want to clear all exceptions for"
2153
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2154
 
2155
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2156
+ #: includes/functions.php:3529
2157
  msgid "Clear all exceptions for"
2158
  msgstr "Pobriši vse izjeme za"
2159
 
2160
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2161
+ #: includes/functions.php:3542
2162
  msgid "No exceptions"
2163
  msgstr "Brez izjem"
2164
 
2165
  #. translators: %s: Ad Inserter Pro
2166
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2167
+ #: includes/functions.php:3553
2168
  msgid "%s options for network blogs"
2169
  msgstr "%s izbire za omrežne bloge"
2170
 
2171
  #. translators: %s: Ad Inserter Pro
2172
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2173
+ #: includes/functions.php:3558
2174
  msgid "Enable %s widgets for sub-sites"
2175
  msgstr "Omogoči %s gradnik za pod-spletišča"
2176
 
2177
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2178
+ #: includes/functions.php:3558
2179
  msgid "Widgets"
2180
  msgstr "Gradniki"
2181
 
2182
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2183
+ #: includes/functions.php:3563
2184
  msgid "Enable PHP code processing for sub-sites"
2185
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2186
 
2187
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2188
+ #: includes/functions.php:3563
2189
  msgid "PHP Processing"
2190
  msgstr "PHP Procesiranje"
2191
 
2192
  #. translators: %s: Ad Inserter Pro
2193
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2194
+ #: includes/functions.php:3568
2195
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2196
  msgstr ""
2197
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2198
 
2199
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2200
+ #: includes/functions.php:3568
2201
  msgid "Post/Page exceptions"
2202
  msgstr "Izjeme prispevkov/strani"
2203
 
2204
  #. translators: %s: Ad Inserter Pro
2205
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2206
+ #: includes/functions.php:3573
2207
  msgid "Enable %s settings page for sub-sites"
2208
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2209
 
2210
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2211
+ #: includes/functions.php:3573
2212
  msgid "Settings page"
2213
  msgstr "Stran z nastavitvami"
2214
 
2215
  #. translators: %s: Ad Inserter Pro
2216
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2217
+ #: includes/functions.php:3578
2218
  msgid "Enable %s settings of main site to be used for all blogs"
2219
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2220
 
2221
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2222
+ #: includes/functions.php:3578
2223
  msgid "Main site settings used for all blogs"
2224
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2225
 
2226
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2227
+ #: includes/functions.php:3594 settings.php:2766
2228
  msgid "Ad Blocking Detection"
2229
  msgstr "Zaznavanje Blokiranja Oglasov"
2230
 
2231
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2232
+ #: includes/functions.php:3600
2233
  msgid ""
2234
  "Standard method is reliable but should be used only if Advanced method does "
2235
  "not work. Advanced method recreates files used for detection with random "
2244
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2245
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2246
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2247
+ #: includes/functions.php:4297 includes/functions.php:4419
2248
+ #: includes/functions.php:4439
2249
  msgid "AD BLOCKING"
2250
  msgstr "BLOKIRANJE OGLASOV"
2251
 
2253
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2254
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2255
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2256
+ #: includes/functions.php:4298 includes/functions.php:4344
2257
+ #: includes/functions.php:4413 includes/functions.php:4440
2258
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2259
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2260
 
2261
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2262
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2263
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2264
+ #: includes/functions.php:4301 includes/functions.php:4412
2265
+ #: includes/functions.php:4446
2266
  msgid "NO AD BLOCKING"
2267
  msgstr "NI BLOKIRANJA OGLASOV"
2268
 
2269
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2270
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2271
+ #: includes/functions.php:4343 includes/functions.php:4350
2272
  msgid "AD BLOCKING REPLACEMENT"
2273
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2274
 
2275
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2276
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2277
+ #: includes/functions.php:4519 includes/functions.php:4728
2278
  msgid "Pageviews"
2279
  msgstr "Ogledi strani"
2280
 
2281
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2282
+ #: includes/functions.php:4665
2283
  msgctxt "Version"
2284
  msgid "Unknown"
2285
  msgstr "Neznana"
2286
 
2287
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2288
+ #: includes/functions.php:4665
2289
  msgctxt "Times"
2290
  msgid "DISPLAYED"
2291
  msgstr "PRIKAZANO"
2292
 
2293
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2294
+ #: includes/functions.php:4665
2295
  msgid "No version"
2296
  msgstr "Brez različice"
2297
 
2298
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2299
+ #: includes/functions.php:4666
2300
  msgctxt "Times"
2301
  msgid "BLOCKED"
2302
  msgstr "BLOKIRANO"
2303
 
2304
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2305
+ #: includes/functions.php:4728
2306
  msgid "Impressions"
2307
  msgstr "Prikazi"
2308
 
2309
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2310
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2311
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2312
+ #: includes/functions.php:4729 includes/functions.php:4730
2313
+ #: includes/functions.php:4785
2314
  msgid "Clicks"
2315
  msgstr "Kliki"
2316
 
2317
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2318
+ #: includes/functions.php:4730
2319
  msgid "events"
2320
  msgstr "dogodki"
2321
 
2322
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2323
+ #: includes/functions.php:4731
2324
  msgid "Ad Blocking Share"
2325
  msgstr "Delež blokiranja oglasov"
2326
 
2327
  #. translators: CTR as Click Through Rate
2328
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2329
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2330
+ #: includes/functions.php:4731 includes/functions.php:4791
2331
  msgid "CTR"
2332
  msgstr "CTR"
2333
 
2334
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2335
+ #: includes/functions.php:4873
2336
  msgid "pageviews"
2337
  msgid_plural "pageviews"
2338
  msgstr[0] "ogled strani"
2341
  msgstr[3] "ogledov strani"
2342
 
2343
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2344
+ #: includes/functions.php:4873
2345
  msgid "impressions"
2346
  msgid_plural "impressions"
2347
  msgstr[0] "prikaz"
2350
  msgstr[3] "prikazov"
2351
 
2352
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2353
+ #: includes/functions.php:4877
2354
  msgid "event"
2355
  msgid_plural "events"
2356
  msgstr[0] "dogodek"
2359
  msgstr[3] "dogodkov"
2360
 
2361
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2362
+ #: includes/functions.php:4972
2363
  msgctxt "Pageviews / Impressions"
2364
  msgid "Average"
2365
  msgstr "Povprečni"
2366
 
2367
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2368
+ #: includes/functions.php:4993
2369
  msgctxt "Ad Blocking / Clicks"
2370
  msgid "Average"
2371
  msgstr "Povprečno"
2372
 
2373
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2374
+ #: includes/functions.php:5017
2375
  msgctxt "Ad Blocking Share / CTR"
2376
  msgid "Average"
2377
  msgstr "Povprečni"
2380
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2381
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2382
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2383
+ #: includes/functions.php:5200 includes/functions.php:5292
2384
+ #: includes/functions.php:5635 strings.php:186
2385
  msgid "%s Report"
2386
  msgstr "%s Poročilo"
2387
 
2388
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2389
+ #: includes/functions.php:5541
2390
  msgid "for last month"
2391
  msgstr "za zadnji mesec"
2392
 
2393
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2394
+ #: includes/functions.php:5546
2395
  msgid "for this month"
2396
  msgstr "za ta mesec"
2397
 
2398
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2399
+ #: includes/functions.php:5551
2400
  msgid "for this year"
2401
  msgstr "za to leto"
2402
 
2403
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2404
+ #: includes/functions.php:5556
2405
  msgid "for the last 15 days"
2406
  msgstr "za zadnjih 15 dni"
2407
 
2408
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2409
+ #: includes/functions.php:5561
2410
  msgid "for the last 30 days"
2411
  msgstr "za zadnjih 30 dni"
2412
 
2413
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2414
+ #: includes/functions.php:5566
2415
  msgid "for the last 90 days"
2416
  msgstr "za zadnjih 90 dni"
2417
 
2418
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2419
+ #: includes/functions.php:5571
2420
  msgid "for the last 180 days"
2421
  msgstr "za zadnjih 180 dni"
2422
 
2423
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2424
+ #: includes/functions.php:5576
2425
  msgid "for the last 365 days"
2426
  msgstr "za zadnjih 365 dni"
2427
 
2428
  #. translators: %s: Ad Inserter Pro
2429
+ #: includes/functions.php:556
2430
  msgid "Invalid %s version. Continue?"
2431
  msgstr "Neveljavna izdaja %s. Nadaljujem?"
2432
 
2433
+ #: includes/functions.php:946 includes/functions.php:982 settings.php:1658
2434
+ #: settings.php:1689 settings.php:1720 settings.php:1751 settings.php:1782
2435
+ #: settings.php:1813 settings.php:1843 settings.php:1873
2436
  msgid "Click to select black or white list"
2437
  msgstr "Klikni za za izbor črnega ali belega seznama"
2438
 
2439
  #. translators: %s: Ad Inserter Pro
2440
+ #: includes/functions.php:1499
2441
  msgid "Invalid %s version."
2442
  msgstr "Neveljavna izdaja %s."
2443
 
2444
+ #: includes/functions.php:1500
2445
  msgid "Check license"
2446
  msgstr "Preverite licenco"
2447
 
2448
+ #: includes/functions.php:1512
2449
  msgid "License"
2450
  msgstr "Licenca"
2451
 
2452
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2453
+ #: includes/functions.php:1833
2454
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2455
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2456
 
2457
+ #. Translators: %s: HTML tags
2458
+ #: includes/functions.php:1878
2459
+ msgid ""
2460
+ "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2461
+ "account %s and create license key."
2462
+ msgstr ""
2463
+ "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2464
+ "za GeoLite2 račun %s in ustvarite licenčni ključ."
2465
+
2466
+ #: includes/functions.php:2576
2467
  msgid "Start date"
2468
  msgstr "Začetni datum"
2469
 
2470
+ #: includes/functions.php:2576
2471
  msgid "Enter date in format yyyy-mm-dd"
2472
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2473
 
2474
+ #: includes/functions.php:2577
2475
  msgid "Start time"
2476
  msgstr "Začetni čas"
2477
 
2478
+ #: includes/functions.php:2577
2479
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2480
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2481
 
2482
+ #: includes/functions.php:2579
2483
  msgid "End date"
2484
  msgstr "Končni datum"
2485
 
2486
+ #: includes/functions.php:2580
2487
  msgid "End time"
2488
  msgstr "Končni čas"
2489
 
2490
+ #: includes/functions.php:2583
2491
  msgid "Select wanted days in week"
2492
  msgstr "Izberite želene dneve v tednu"
2493
 
2494
+ #. Translators: %s HTML tags
2495
+ #: includes/functions.php:3113
2496
+ msgid "Create and manage %s MaxMind license key %s"
2497
+ msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2498
+
2499
+ #: includes/functions.php:3149
2500
+ msgid "MaxMind license key"
2501
+ msgstr "MaxMind licenčni ključ"
2502
+
2503
+ #: includes/functions.php:3152
2504
+ msgid "Enter license key obtained from MaxMind"
2505
+ msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2506
+
2507
+ #: includes/functions.php:3418
2508
+ msgid "Event category"
2509
+ msgstr "Kategorija dogodka"
2510
+
2511
+ #: includes/functions.php:3421
2512
+ msgid ""
2513
+ "Category name used for external tracking events. You can use tags to get the "
2514
+ "event, the number or the name of the block that caused the event."
2515
+ msgstr ""
2516
+ "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2517
+ "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2518
+
2519
+ #: includes/functions.php:3426
2520
+ msgid "Event action"
2521
+ msgstr "Akcija dogodka"
2522
+
2523
+ #: includes/functions.php:3429
2524
+ msgid ""
2525
+ "Action name used for external tracking events. You can use tags to get the "
2526
+ "event, the number or the name of the block that caused the event."
2527
+ msgstr ""
2528
+ "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2529
+ "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2530
+
2531
+ #: includes/functions.php:3434
2532
+ msgid "Event label"
2533
+ msgstr "Oznaka dogodka"
2534
+
2535
  #: includes/functions.php:3437
2536
+ msgid ""
2537
+ "Label name used for external tracking events. You can use tags to get the "
2538
+ "event, the number or the name of the block that caused the event."
2539
+ msgstr ""
2540
+ "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2541
+ "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2542
+
2543
+ #. translators: %s: Ad Inserter Pro
2544
+ #: includes/functions.php:3583
2545
  msgid "Show link to %s settings page for each site on the Sites page"
2546
  msgstr ""
2547
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2548
  "Spletišča"
2549
 
2550
  #. translators: %s: Ad Inserter Pro
2551
+ #: includes/functions.php:3583
2552
  msgid "Show link to %s on the Sites page"
2553
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2554
 
2555
+ #: includes/functions.php:5147
2556
+ msgid "File %s missing."
2557
+ msgstr "Datoteka %s ni najdena."
2558
+
2559
  #: includes/placeholders.php:20
2560
  msgid "Custom"
2561
  msgstr "Po meri"
2580
  msgid "Placeholder"
2581
  msgstr "Polnilo"
2582
 
2583
+ #: includes/placeholders.php:363 settings.php:940 settings.php:4332
2584
  msgid "Size"
2585
  msgstr "Velikost"
2586
 
2713
  msgid "Ad Blocking Detected Message Preview"
2714
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2715
 
2716
+ #: includes/preview-adb.php:348 settings.php:2892
2717
  msgid "Message CSS"
2718
  msgstr "CSS sporočila"
2719
 
2720
+ #: includes/preview-adb.php:353 settings.php:2900
2721
  msgid "Overlay CSS"
2722
  msgstr "CSS prevleke"
2723
 
2753
  msgid "background"
2754
  msgstr "ozadje"
2755
 
2756
+ #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1292
2757
  msgid "Alignment"
2758
  msgstr "Poravnava"
2759
 
2898
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2899
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2900
 
2901
+ #: settings.php:188 settings.php:1181
2902
  msgid ""
2903
  "Settings for individual exceptions have been updated. Please check all "
2904
  "blocks that have exceptions and and then save settings."
2910
  msgid "Online documentation"
2911
  msgstr "Spletna Dokumentacija"
2912
 
2913
+ #: settings.php:234 settings.php:775 settings.php:2275
2914
  msgid "Show AdSense ad units"
2915
  msgstr "Pokaži oglasne enote AdSense"
2916
 
2918
  msgid "Edit ads.txt file"
2919
  msgstr "Uredi datoteko ads.txt"
2920
 
2921
+ #: settings.php:246 settings.php:1124
2922
  msgid "Check theme for available positions for automatic insertion"
2923
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2924
 
3066
  msgid "General Settings"
3067
  msgstr "Splošne Nastavitve"
3068
 
3069
+ #: settings.php:723 settings.php:2619 settings.php:2686 settings.php:2872
3070
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3071
  msgstr ""
3072
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
3073
 
3074
+ #: settings.php:730
3075
  msgid "Toggle tools"
3076
  msgstr "Preklopi orodja"
3077
 
3078
+ #: settings.php:738
3079
  msgid "Process PHP code in block"
3080
  msgstr "Procesiraj PHP kodo v bloku"
3081
 
3082
+ #: settings.php:745
3083
  msgid "Disable insertion of this block"
3084
  msgstr "Onemogoči vstavljanje tega bloka"
3085
 
3086
+ #: settings.php:757
3087
  msgid "Toggle code generator"
3088
  msgstr "Preklopi generator kode"
3089
 
3090
+ #: settings.php:761
3091
  msgid "Toggle rotation editor"
3092
  msgstr "Preklopi urejevalnik rotacije"
3093
 
3094
+ #: settings.php:765
3095
  msgid "Open visual HTML editor"
3096
  msgstr "Odpri vizualni HTML urejevalnik"
3097
 
3098
+ #: settings.php:784
3099
  msgid "Clear block"
3100
  msgstr "Počisti blok"
3101
 
3102
+ #: settings.php:789 settings.php:4203
3103
  msgid "Copy block"
3104
  msgstr "Kopiraj blok"
3105
 
3106
+ #: settings.php:793
3107
  msgid "Paste name"
3108
  msgstr "Prilepi ime"
3109
 
3110
+ #: settings.php:797
3111
  msgid "Paste code"
3112
  msgstr "Prilepi kodo"
3113
 
3114
+ #: settings.php:801
3115
  msgid "Paste settings"
3116
  msgstr "Prilepi nastavitve"
3117
 
3118
+ #: settings.php:805
3119
  msgid "Paste block (name, code and settings)"
3120
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
3121
 
3122
+ #: settings.php:824
3123
  msgid "Rotation groups"
3124
  msgstr "Skupine za rotacijo"
3125
 
3126
+ #: settings.php:828
3127
  msgid "Remove option"
3128
  msgstr "Odstrani različico"
3129
 
3130
+ #: settings.php:832
3131
  msgid "Add option"
3132
  msgstr "Dodaj različico"
3133
 
3134
+ #: settings.php:847
3135
  msgid "Import code"
3136
  msgstr "Uvozi kodo"
3137
 
3138
+ #: settings.php:851
3139
  msgid "Generate code"
3140
  msgstr "Generiraj kodo"
3141
 
3142
+ #: settings.php:856
3143
  msgid "Banner"
3144
  msgstr "Pasica"
3145
 
3146
+ #: settings.php:867
3147
  msgid "Image"
3148
  msgstr "Slika"
3149
 
3150
+ #: settings.php:875
3151
  msgid "Link"
3152
  msgstr "Povezava"
3153
 
3154
+ #: settings.php:886
3155
  msgid "Open link in a new tab"
3156
  msgstr "Odpri povezavo v novem zavihku"
3157
 
3158
+ #: settings.php:887
3159
  msgid "Select Image"
3160
  msgstr "Izberi Sliko"
3161
 
3162
+ #: settings.php:888
3163
  msgid "Select Placeholder"
3164
  msgstr "Izberi Polnilo"
3165
 
3166
+ #: settings.php:900
3167
  msgid "Comment"
3168
  msgstr "Komentar"
3169
 
3170
+ #: settings.php:909
3171
  msgctxt "AdSense"
3172
  msgid "Publisher ID"
3173
  msgstr "ID založnika"
3174
 
3175
+ #: settings.php:918
3176
  msgctxt "AdSense"
3177
  msgid "Ad Slot ID"
3178
  msgstr "ID mesta"
3179
 
3180
+ #: settings.php:927
3181
  msgid "Ad Type"
3182
  msgstr "Vrsta"
3183
 
3184
+ #: settings.php:952
3185
  msgid "AMP Ad"
3186
  msgstr "AMP Oglas"
3187
 
3188
+ #: settings.php:970
3189
  msgid "Show ad units from your AdSense account"
3190
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3191
 
3192
+ #: settings.php:970
3193
  msgid "AdSense ad units"
3194
  msgstr "Oglasne enote AdSense"
3195
 
3196
+ #: settings.php:987
3197
  msgctxt "AdSense"
3198
  msgid "Layout"
3199
  msgstr "Postavitev"
3200
 
3201
+ #: settings.php:996
3202
  msgctxt "AdSense"
3203
  msgid "Layout Key"
3204
  msgstr "Ključ postavitve"
3205
 
3206
+ #: settings.php:1006
3207
  msgid "Full width"
3208
  msgstr "Celotna širina"
3209
 
3210
+ #: settings.php:1008
3211
  msgctxt "Full width"
3212
  msgid "Enabled"
3213
  msgstr "Omogočena"
3214
 
3215
+ #: settings.php:1009
3216
  msgctxt "Full width"
3217
  msgid "Disabled"
3218
  msgstr "Onemogočena"
3219
 
3220
+ #: settings.php:1090
3221
  msgid ""
3222
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3223
  "Cookie or Referer (domain)"
3225
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3226
  "parametrov, Piškotkov ali napotiteljev (domen)"
3227
 
3228
+ #: settings.php:1090
3229
  msgid "Lists"
3230
  msgstr "Seznami"
3231
 
3232
+ #: settings.php:1091
3233
  msgid "Widget, Shortcode and PHP function call"
3234
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3235
 
3236
+ #: settings.php:1091
3237
  msgid "Manual"
3238
  msgstr "Ročno"
3239
 
3240
+ #: settings.php:1092
3241
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3242
  msgstr ""
3243
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3244
 
3245
+ #: settings.php:1092
3246
  msgid "Devices"
3247
  msgstr "Naprave"
3248
 
3249
+ #: settings.php:1093
3250
  msgid ""
3251
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3252
  "feeds), Filter, Scheduling, General tag"
3254
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3255
  "RSS), Filter, Urnik, Splošna oznaka"
3256
 
3257
+ #: settings.php:1093
3258
  msgid "Misc"
3259
  msgstr "Razno"
3260
 
3261
+ #: settings.php:1094
3262
  msgid "Preview code and alignment"
3263
  msgstr "Predogled kode in poravnave"
3264
 
3265
+ #: settings.php:1097 settings.php:2259
3266
  msgid ""
3267
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3268
  "editor is active before saving settings."
3270
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3271
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3272
 
3273
+ #: settings.php:1110 settings.php:1111
3274
  msgid "Enable insertion on posts"
3275
  msgstr "Omogoči vstavljanje na prispevkih"
3276
 
3277
+ #: settings.php:1111 settings.php:3418
3278
  msgid "Posts"
3279
  msgstr "Prispevki"
3280
 
3281
+ #: settings.php:1115 settings.php:1116
3282
  msgid ""
3283
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3284
  "page or theme homepage (available positions may depend on hooks used by the "
3288
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3289
  "lahko odvisni od ročic, ki jih tema uporablja)"
3290
 
3291
+ #: settings.php:1116 settings.php:3420
3292
  msgid "Homepage"
3293
  msgstr "Domača stran"
3294
 
3295
+ #: settings.php:1120 settings.php:1121
3296
  msgid "Enable insertion on category blog pages (including sub-pages)"
3297
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3298
 
3299
+ #: settings.php:1121 settings.php:3421
3300
  msgid "Category pages"
3301
  msgstr "Strani kategorij"
3302
 
3303
+ #: settings.php:1131 settings.php:1132
3304
  msgid "Enable insertion on static pages"
3305
  msgstr "Omogoči vstavljanje na statičnih straneh"
3306
 
3307
+ #: settings.php:1132 settings.php:3419
3308
  msgid "Static pages"
3309
  msgstr "Statične strani"
3310
 
3311
+ #: settings.php:1136 settings.php:1137
3312
  msgid "Enable insertion on search blog pages"
3313
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3314
 
3315
+ #: settings.php:1137 settings.php:3423
3316
  msgid "Search pages"
3317
  msgstr "Iskalne strani"
3318
 
3319
+ #: settings.php:1141 settings.php:1142
3320
  msgid "Enable insertion on tag or archive blog pages"
3321
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3322
 
3323
+ #: settings.php:1145
3324
  msgid "Toggle settings for default insertion and list of individual exceptions"
3325
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3326
 
3327
+ #: settings.php:1157
3328
  msgid ""
3329
  "Enable individual post/page exceptions for insertion of this block. They can "
3330
  "be configured on the individual post/page editor page (in the settings below "
3334
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3335
  "nastavitvah pod urejevalnikom)."
3336
 
3337
+ #: settings.php:1158
3338
  msgid ""
3339
  "Enable individual post/page exceptions for insertion of this block. When "
3340
  "enabled they can be configured on the individual post/page editor page (in "
3344
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3345
  "strani (v nastavitvah pod urejevalnikom)."
3346
 
3347
+ #: settings.php:1158
3348
  msgid "Use exceptions for individual posts or pages to change insertion"
3349
  msgstr ""
3350
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3351
 
3352
  #. Translators: Enabled means...
3353
+ #: settings.php:1166
3354
  msgid ""
3355
  "means the insertion for this block is enabled by default and disabled for "
3356
  "exceptions."
3359
  "izjeme."
3360
 
3361
  #. Translators: Disabled means...
3362
+ #: settings.php:1167
3363
  msgid ""
3364
  "means the insertion for this block is disabled by default and enabled for "
3365
  "exceptions."
3367
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3368
  "izjeme."
3369
 
3370
+ #: settings.php:1168
3371
  msgid ""
3372
  "When individual post/page exceptions are enabled they can be configured on "
3373
  "the individual post/page editor page (in the settings below the editor)."
3376
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3377
  "urejevalnikom)."
3378
 
3379
+ #: settings.php:1176
3380
  msgid ""
3381
  "No exception for post or static page defined. Block will not be inserted."
3382
  msgstr ""
3383
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3384
 
3385
+ #: settings.php:1194
3386
  msgctxt "post"
3387
  msgid "Type"
3388
  msgstr "Vrsta"
3389
 
3390
  #. translators: %d: block number
3391
+ #: settings.php:1196
3392
  msgid "Are you sure you want to clear all exceptions for block %d?"
3393
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
3394
 
3395
+ #: settings.php:1223 settings.php:1371 settings.php:2033
3396
  msgid "Insertion"
3397
  msgstr "Vstavljanje"
3398
 
3399
+ #: settings.php:1261
3400
  msgid ""
3401
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3402
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3412
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3413
  "število pomeni štetje z nasprotne smeri"
3414
 
3415
+ #: settings.php:1262
3416
  msgid ""
3417
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3418
  "means every N images, empty means all images, 0 means random image, value "
3427
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3428
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3429
 
3430
+ #: settings.php:1275
3431
  msgid ""
3432
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3433
  "numbers, %N means every N excerpts, empty means all excerpts"
3436
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3437
  "izvlečki"
3438
 
3439
+ #: settings.php:1276
3440
  msgid ""
3441
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3442
  "numbers, %N means every N posts, empty means all posts"
3445
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3446
  "prispevki"
3447
 
3448
+ #: settings.php:1277
3449
  msgid ""
3450
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3451
  "numbers, %N means every N comments, empty means all comments"
3454
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3455
  "vsi komentarji"
3456
 
3457
+ #: settings.php:1284
3458
  msgid "Toggle paragraph counting settings"
3459
  msgstr "Preklopi nastavitve za štetje odstavkov"
3460
 
3461
+ #: settings.php:1285
3462
  msgid "Toggle paragraph clearance settings"
3463
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3464
 
3465
+ #: settings.php:1288
3466
  msgid "Toggle insertion filter settings"
3467
  msgstr "Preklopi nastavitve filtra vstavljanja"
3468
 
3469
+ #: settings.php:1306
3470
  msgid "Toggle insertion and alignment icons"
3471
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3472
 
3473
+ #: settings.php:1320
3474
  msgid "Custom CSS code for the wrapping div"
3475
  msgstr "CSS koda po meri za div za ovijanje"
3476
 
3477
+ #: settings.php:1323 settings.php:1324 settings.php:1325 settings.php:1326
3478
+ #: settings.php:1327 settings.php:1328
3479
  msgid "CSS code for the wrapping div, click to edit"
3480
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3481
 
3482
+ #: settings.php:1341
3483
  msgid "HTML element"
3484
  msgstr "HTML element"
3485
 
3486
+ #: settings.php:1354
3487
  msgid "HTML element selector or comma separated list of selectors"
3488
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3489
 
3490
+ #: settings.php:1360 settings.php:2777
3491
  msgid "Action"
3492
  msgstr "Akcija"
3493
 
3494
+ #: settings.php:1372
3495
  msgid ""
3496
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3497
  "Server-side insertion inserts block when the page is generated but needs "
3501
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3502
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3503
 
3504
+ #: settings.php:1381
3505
  msgid "Code position"
3506
  msgstr "Položaj kode"
3507
 
3508
+ #: settings.php:1382
3509
  msgid ""
3510
  "Page position where the code for client-side insertion will be inserted."
3511
  msgstr ""
3512
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3513
 
3514
+ #: settings.php:1397
3515
  msgid "Count"
3516
  msgstr "Štej"
3517
 
3518
+ #: settings.php:1403
3519
  msgid "paragraphs with tags"
3520
  msgstr "odstavke z značkami"
3521
 
3522
+ #: settings.php:1409
3523
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3524
  msgstr ""
3525
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3526
 
3527
+ #: settings.php:1418
3528
  msgid "that have between"
3529
  msgstr "ki imajo med"
3530
 
3531
+ #: settings.php:1424
3532
  msgid "Minimum number of paragraph words, leave empty for no limit"
3533
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3534
 
3535
+ #: settings.php:1433
3536
  msgid "Maximum number of paragraph words, leave empty for no limit"
3537
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3538
 
3539
+ #: settings.php:1436
3540
  msgid "words"
3541
  msgstr "besed"
3542
 
3543
+ #: settings.php:1451 settings.php:1510 settings.php:1580 settings.php:1606
3544
  msgid "Comma separated texts"
3545
  msgstr "Z vejico ločena besedila"
3546
 
3547
+ #: settings.php:1464
3548
  msgid ""
3549
  "Count also paragraphs inside these elements - defined on general plugin "
3550
  "settings page - tab [*] / tab General"
3553
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3554
 
3555
  #. Translators: %s: HTML tags
3556
+ #: settings.php:1470
3557
  msgid "Count inside %s elements"
3558
  msgstr "Štej znotraj elementov %s"
3559
 
3560
  #. translators: inside [HTML tags] elements that contain
3561
+ #: settings.php:1482
3562
  msgid "inside"
3563
  msgstr "znotraj"
3564
 
3565
+ #: settings.php:1488
3566
  msgid "Comma separated HTML tag names of container elements"
3567
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3568
 
3569
  #. translators: inside [HTML tags] elements that contain
3570
+ #: settings.php:1497
3571
  msgid "elements that"
3572
  msgstr "elementov, ki"
3573
 
3574
+ #: settings.php:1523 settings.php:2156
3575
  msgid "Post/Static page must have between"
3576
  msgstr "Prispevek/Statična stran mora imeti med"
3577
 
3578
+ #: settings.php:1529
3579
  msgid "Minimum number of paragraphs, leave empty for no limit"
3580
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3581
 
3582
+ #: settings.php:1538
3583
  msgid "Maximum number of paragraphs, leave empty for no limit"
3584
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3585
 
3586
  #. Translators: Post/Static page must have between X and Y paragraphs
3587
+ #: settings.php:1541
3588
  msgid "paragraph"
3589
  msgid_plural "paragraphs"
3590
  msgstr[0] "odstavek"
3592
  msgstr[2] "odstavke"
3593
  msgstr[3] "odstavkov"
3594
 
3595
+ #: settings.php:1549
3596
  msgid "Minimum number of words in paragraphs above"
3597
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3598
 
3599
+ #: settings.php:1555
3600
  msgid ""
3601
  "Used only with automatic insertion After paragraph and empty paragraph "
3602
  "numbers"
3604
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3605
  "številkami odstavkov"
3606
 
3607
+ #: settings.php:1565 settings.php:1591
3608
  msgid "In"
3609
  msgstr "V"
3610
 
3611
+ #: settings.php:1571
3612
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3613
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3614
 
3615
+ #: settings.php:1574
3616
  msgid "paragraphs above avoid"
3617
  msgstr "odstavkih zgoraj se izogni"
3618
 
3619
+ #: settings.php:1597
3620
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3621
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3622
 
3623
+ #: settings.php:1600
3624
  msgid "paragraphs below avoid"
3625
  msgstr "odstavkih spodaj se izogni"
3626
 
3627
+ #: settings.php:1616
3628
  msgid "If text is found"
3629
  msgstr "Če je besedilo najdeno"
3630
 
3631
+ #: settings.php:1623
3632
  msgid "check up to"
3633
  msgstr "preveri do"
3634
 
3635
+ #: settings.php:1631
3636
  msgctxt "check up to"
3637
  msgid "paragraphs"
3638
  msgstr "odstavkov"
3639
 
3640
+ #: settings.php:1647
3641
  msgid "Categories"
3642
  msgstr "Kategorije"
3643
 
3644
+ #: settings.php:1650
3645
  msgid "Toggle category editor"
3646
  msgstr "Preklopi urejevalnik kategorij"
3647
 
3648
+ #: settings.php:1653
3649
  msgid "Comma separated category slugs"
3650
  msgstr "Z vejico ločeni ključi kategorij"
3651
 
3652
+ #: settings.php:1662
3653
  msgid "Blacklist categories"
3654
  msgstr "Črni seznam kategorij"
3655
 
3656
+ #: settings.php:1666
3657
  msgid "Whitelist categories"
3658
  msgstr "Beli seznam kategorij"
3659
 
3660
+ #: settings.php:1678
3661
  msgid "Tags"
3662
  msgstr "Oznake"
3663
 
3664
+ #: settings.php:1681
3665
  msgid "Toggle tag editor"
3666
  msgstr "Preklopi urejevalnik oznak"
3667
 
3668
+ #: settings.php:1684
3669
  msgid "Comma separated tag slugs"
3670
  msgstr "Z vejico ločeni ključi oznak"
3671
 
3672
+ #: settings.php:1693
3673
  msgid "Blacklist tags"
3674
  msgstr "Črni seznam oznak"
3675
 
3676
+ #: settings.php:1697
3677
  msgid "Whitelist tags"
3678
  msgstr "Beli seznam oznak"
3679
 
3680
+ #: settings.php:1709
3681
  msgid "Taxonomies"
3682
  msgstr "Taksonomije"
3683
 
3684
+ #: settings.php:1712
3685
  msgid "Toggle taxonomy editor"
3686
  msgstr "Preklopi urejevalnik taksonomij"
3687
 
3688
+ #: settings.php:1715
3689
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3690
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3691
 
3692
+ #: settings.php:1724
3693
  msgid "Blacklist taxonomies"
3694
  msgstr "Črni seznam taksonomij"
3695
 
3696
+ #: settings.php:1728
3697
  msgid "Whitelist taxonomies"
3698
  msgstr "Beli seznam taksonomij"
3699
 
3700
+ #: settings.php:1740
3701
  msgid "Post IDs"
3702
  msgstr "ID-ji prispevkov"
3703
 
3704
+ #: settings.php:1743
3705
  msgid "Toggle post/page ID editor"
3706
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3707
 
3708
+ #: settings.php:1746
3709
  msgid "Comma separated post/page IDs"
3710
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3711
 
3712
+ #: settings.php:1755
3713
  msgid "Blacklist IDs"
3714
  msgstr "Črni seznam ID-jev"
3715
 
3716
+ #: settings.php:1759
3717
  msgid "Whitelist IDs"
3718
  msgstr "Beli seznam ID-jev"
3719
 
3720
+ #: settings.php:1771
3721
  msgid "Urls"
3722
  msgstr "Url-ji"
3723
 
3724
+ #: settings.php:1774
3725
  msgid "Toggle url editor"
3726
  msgstr "Preklopi urejevalnik url-jev"
3727
 
3728
+ #: settings.php:1777
3729
  msgid ""
3730
  "Comma separated urls (page addresses) starting with / after domain name (e."
3731
  "g. /permalink-url, use only when you need to taget a specific url not "
3737
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3738
  "začetek*. *url-vzorec*, *url-konec)"
3739
 
3740
+ #: settings.php:1786
3741
  msgid "Blacklist urls"
3742
  msgstr "Črni seznam url-jev"
3743
 
3744
+ #: settings.php:1790
3745
  msgid "Whitelist urls"
3746
  msgstr "Beli seznam url-jev"
3747
 
3748
+ #: settings.php:1801
3749
  msgid "Url parameters"
3750
  msgstr "Url parametri"
3751
 
3752
+ #: settings.php:1805
3753
  msgid "Toggle url parameter and cookie editor"
3754
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3755
 
3756
+ #: settings.php:1808
3757
  msgid ""
3758
  "Comma separated url query parameters or cookies with optional values (use "
3759
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3762
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3763
  "'piškotek=vrednost')"
3764
 
3765
+ #: settings.php:1817
3766
  msgid "Blacklist url parameters"
3767
  msgstr "Črni seznam url parametrov"
3768
 
3769
+ #: settings.php:1821
3770
  msgid "Whitelist url parameters"
3771
  msgstr "Beli seznam url parametrov"
3772
 
3773
+ #: settings.php:1832
3774
  msgid "Referrers"
3775
  msgstr "Napotitelji"
3776
 
3777
+ #: settings.php:1835
3778
  msgid "Toggle referer editor"
3779
  msgstr "Preklopi urejevalnik napotiteljev"
3780
 
3781
+ #: settings.php:1838
3782
  msgid ""
3783
  "Comma separated domains, use # for no referrer, you can also use partial "
3784
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3786
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3787
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3788
 
3789
+ #: settings.php:1847
3790
  msgid "Blacklist referers"
3791
  msgstr "Črni seznam napotiteljev"
3792
 
3793
+ #: settings.php:1851
3794
  msgid "Whitelist referers"
3795
  msgstr "Beli seznam napotiteljev"
3796
 
3797
+ #: settings.php:1862
3798
  msgid "Clients"
3799
  msgstr "Odjemalci"
3800
 
3801
+ #: settings.php:1865
3802
  msgid "Toggle client editor"
3803
  msgstr "Preklopi urejevalnik odjemalcev"
3804
 
3805
+ #: settings.php:1868
3806
  msgid "Comma separated names (operating systems, browsers, devices)"
3807
  msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
3808
 
3809
+ #: settings.php:1877
3810
  msgid "Blacklist clients"
3811
  msgstr "Črni seznam odjemalcev"
3812
 
3813
+ #: settings.php:1881
3814
  msgid "Whitelist clients"
3815
  msgstr "Beli seznam odjemalcev"
3816
 
3817
+ #: settings.php:1902
3818
  msgid "Enable widget for this block"
3819
  msgstr "Omogočite gradnik za ta blok"
3820
 
3821
+ #: settings.php:1914
3822
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3823
  msgstr ""
3824
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3825
 
3826
+ #: settings.php:1915 settings.php:4260
3827
  msgid "Shortcode"
3828
  msgstr "Kratka koda"
3829
 
3830
+ #: settings.php:1930
3831
  msgid ""
3832
  "Enable PHP function call to insert this block at any position in theme file. "
3833
  "If function is disabled for block it will return empty string."
3836
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3837
  "prazen niz."
3838
 
3839
+ #: settings.php:1931
3840
  msgid "PHP function"
3841
  msgstr "PHP funkcija"
3842
 
3843
+ #: settings.php:1946
3844
  msgid "Client-side device detection"
3845
  msgstr "Zaznavanje naprave na strani odjemalca"
3846
 
3847
+ #: settings.php:1947
3848
  msgid "Server-side device detection"
3849
  msgstr "Zaznavanje naprave na strani strežnika"
3850
 
3851
+ #: settings.php:1954
3852
  msgid "Use client-side detection to"
3853
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3854
 
3855
+ #: settings.php:1956
3856
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3857
  msgstr ""
3858
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3859
 
3860
  #. Translators: only on (the following devices): viewport names (devices)
3861
  #. listed
3862
+ #: settings.php:1961
3863
  msgid "only on"
3864
  msgstr "samo na"
3865
 
3866
+ #: settings.php:1989
3867
  msgid "Device min width %s px"
3868
  msgstr "Najmanjša širina naprave %s px"
3869
 
3870
+ #: settings.php:2015
3871
  msgid "Use server-side detection to insert block only for"
3872
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3873
 
3874
+ #: settings.php:2034
3875
  msgid "Filter"
3876
  msgstr "Filter"
3877
 
3878
+ #: settings.php:2035
3879
  msgid "Word Count"
3880
  msgstr "Število Besed"
3881
 
3882
+ #: settings.php:2036 settings.php:4250
3883
  msgid "Scheduling"
3884
  msgstr "Urnik"
3885
 
3886
+ #: settings.php:2037
3887
  msgid "Display"
3888
  msgstr "Prikaz"
3889
 
3890
+ #: settings.php:2039 settings.php:2301
3891
  msgid "General"
3892
  msgstr "Splošno"
3893
 
3894
+ #: settings.php:2051
3895
  msgid "Old settings for AMP pages detected"
3896
  msgstr "Zaznane stare nastavitve za AMP strani"
3897
 
3898
+ #: settings.php:2051
3899
  msgid ""
3900
  "To insert different codes on normal and AMP pages separate them with "
3901
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3906
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3907
  "separatorja)."
3908
 
3909
+ #: settings.php:2051
3910
  msgid "AMP pages"
3911
  msgstr "AMP strani"
3912
 
3913
+ #: settings.php:2056
3914
  msgid "Enable insertion for Ajax requests"
3915
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3916
 
3917
+ #: settings.php:2056
3918
  msgid "Ajax requests"
3919
  msgstr "Ajax zahteve"
3920
 
3921
+ #: settings.php:2061
3922
  msgid "Enable insertion in RSS feeds"
3923
  msgstr "Omogoči vstavljanje v RSS virih"
3924
 
3925
+ #: settings.php:2061
3926
  msgid "RSS Feed"
3927
  msgstr "RSS Vir"
3928
 
3929
+ #: settings.php:2066
3930
  msgid "Enable insertion on page for Error 404: Page not found"
3931
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3932
 
3933
+ #: settings.php:2066
3934
  msgid "Error 404 page"
3935
  msgstr "Stran napake 404"
3936
 
3937
+ #: settings.php:2078
3938
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3939
  msgstr ""
3940
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3941
 
3942
+ #: settings.php:2079
3943
  msgid "insertions"
3944
  msgstr "vstavljanj"
3945
 
3946
+ #: settings.php:2081
3947
  msgid ""
3948
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3949
  "General)"
3951
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3952
  "zavihek Splošno)"
3953
 
3954
+ #: settings.php:2084 settings.php:2481
3955
  msgid "Max blocks per page"
3956
  msgstr "Največ blokov na stran"
3957
 
3958
+ #: settings.php:2096
3959
  msgid "Insert for"
3960
  msgstr "Vstavi za"
3961
 
3962
+ #: settings.php:2104
3963
  msgid ""
3964
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3965
  "currently active). Might speed up insertion on content pages when "
3969
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3970
  "filter the_content večkrat klican."
3971
 
3972
+ #: settings.php:2107
3973
  msgid "Insert only in the loop"
3974
  msgstr "Vstavi samo v zanki"
3975
 
3976
+ #: settings.php:2113
3977
  msgid ""
3978
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3979
  msgstr ""
3980
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3981
  "Rocket"
3982
 
3983
+ #: settings.php:2113
3984
  msgid "Disable caching"
3985
  msgstr "Onemogoči predpomnjenje"
3986
 
3987
+ #: settings.php:2125
3988
  msgid "Filter insertions"
3989
  msgstr "Filtriraj vstavljanja"
3990
 
3991
+ #: settings.php:2128
3992
  msgid ""
3993
  "Filter multiple insertions by specifying wanted insertions for this block - "
3994
  "single number, comma separated numbers or %N for every N insertions - empty "
4000
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4001
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4002
 
4003
+ #: settings.php:2131
4004
  msgid "using"
4005
  msgstr "z uporabo"
4006
 
4007
+ #: settings.php:2150
4008
  msgid "Checked means specified calls are unwanted"
4009
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4010
 
4011
+ #: settings.php:2150
4012
  msgid "Invert filter"
4013
  msgstr "Obrni filter"
4014
 
4015
+ #: settings.php:2157
4016
  msgid "Minimum number of post/static page words, leave empty for no limit"
4017
  msgstr ""
4018
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4019
  "omejitev"
4020
 
4021
+ #: settings.php:2159
4022
  msgid "Maximum number of post/static page words, leave empty for no limit"
4023
  msgstr ""
4024
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4025
  "omejitev"
4026
 
4027
+ #: settings.php:2172
4028
  msgid "for"
4029
  msgstr "za"
4030
 
4031
+ #: settings.php:2172
4032
  msgid "days after publishing"
4033
  msgstr "dni po objavi"
4034
 
4035
+ #: settings.php:2174
4036
  msgid "Not available"
4037
  msgstr "Ni na razpolago"
4038
 
4039
+ #: settings.php:2187 settings.php:2473
4040
  msgid "Ad label"
4041
  msgstr "Oznaka oglasa"
4042
 
4043
+ #: settings.php:2207
4044
  msgid "General tag"
4045
  msgstr "Splošna oznaka"
4046
 
4047
+ #: settings.php:2211
4048
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4049
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4050
 
4051
  #. translators: %s: HTML tags
4052
+ #: settings.php:2220
4053
  msgid ""
4054
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4055
  "client-side device detection!"
4058
  "potrebna za zaznavanje naprave na strani odjemalca!"
4059
 
4060
  #. translators: %s: HTML tags for text and link
4061
+ #: settings.php:2234
4062
  msgid ""
4063
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4064
  "side %s insertion. Use %s Server-side %s insertion."
4067
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4068
  "strežnika%s."
4069
 
4070
+ #: settings.php:2250
4071
  msgid "Settings"
4072
  msgstr "Nastavitve"
4073
 
4074
+ #: settings.php:2253
4075
  msgid "Settings timestamp"
4076
  msgstr "Časovni žig nastavitev"
4077
 
4078
+ #: settings.php:2266
4079
  msgid "Are you sure you want to reset all settings?"
4080
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4081
 
4082
+ #: settings.php:2266
4083
  msgid "Reset All Settings"
4084
  msgstr "Ponastavi Vse Nastavitve"
4085
 
4086
+ #: settings.php:2302
4087
  msgid "Viewports"
4088
  msgstr "Pogledi"
4089
 
4090
+ #: settings.php:2303
4091
  msgid "Hooks"
4092
  msgstr "Ročice"
4093
 
4094
+ #: settings.php:2304
4095
  msgid "Header"
4096
  msgstr "Glava"
4097
 
4098
+ #: settings.php:2305 strings.php:30
4099
  msgid "Footer"
4100
  msgstr "Noga"
4101
 
4102
+ #: settings.php:2310
4103
  msgid "Debugging"
4104
  msgstr "Razhroščevanje"
4105
 
4106
+ #: settings.php:2320
4107
  msgid "Plugin priority"
4108
  msgstr "Prednost vtičnika"
4109
 
4110
+ #: settings.php:2328
4111
  msgid "Output buffering"
4112
  msgstr "Predpomnjenje izhoda"
4113
 
4114
+ #: settings.php:2331
4115
  msgid "Needed for position Above header but may not work with all themes"
4116
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4117
 
4118
+ #: settings.php:2339
4119
  msgid "Syntax highlighting theme"
4120
  msgstr "Tema za poudarjanje sintakse"
4121
 
4122
+ #: settings.php:2346
4123
  msgctxt "no syntax highlighting themes"
4124
  msgid "None"
4125
  msgstr "Brez"
4126
 
4127
+ #: settings.php:2347
4128
  msgid "No Syntax Highlighting"
4129
  msgstr "Brez Poudarjanja Sintakse"
4130
 
4131
+ #: settings.php:2349
4132
  msgctxt "syntax highlighting themes"
4133
  msgid "Light"
4134
  msgstr "Svetle"
4135
 
4136
+ #: settings.php:2364
4137
  msgctxt "syntax highlighting themes"
4138
  msgid "Dark"
4139
  msgstr "Temne"
4140
 
4141
+ #: settings.php:2390
4142
  msgid "Min. user role for ind. exceptions editing"
4143
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4144
 
4145
+ #: settings.php:2400
4146
  msgid "Disable caching for logged in administrators"
4147
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4148
 
4149
+ #: settings.php:2403
4150
  msgid ""
4151
  "Enabled means that logged in administrators will see non-cached (live) pages "
4152
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4154
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4155
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4156
 
4157
+ #: settings.php:2411
4158
  msgid "Wait for jQuery"
4159
  msgstr "Čakaj na jQuery"
4160
 
4161
+ #: settings.php:2414
4162
  msgid ""
4163
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4164
  "it will run the scripts that may need it"
4166
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4167
  "bo pognal svoje skripte, ki jo potrebujejo"
4168
 
4169
+ #: settings.php:2422
4170
  msgid "Sticky widget mode"
4171
  msgstr "Način za lepljive gradnike"
4172
 
4173
+ #: settings.php:2425
4174
  msgid ""
4175
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4176
  "mode works with most themes but may reload ads on page load."
4179
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4180
  "nalaganju strani."
4181
 
4182
+ #: settings.php:2433
4183
  msgid "Sticky widget top margin"
4184
  msgstr "Zgornji rob za lepljiv gradnik"
4185
 
4186
+ #: settings.php:2441
4187
  msgid "Dynamic blocks"
4188
  msgstr "Dinamični bloki"
4189
 
4190
+ #: settings.php:2454
4191
  msgid "Functions for paragraph counting"
4192
  msgstr "Funkcije za štetje odstavkov"
4193
 
4194
+ #: settings.php:2457
4195
  msgid ""
4196
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4197
  "functions if paragraphs are not counted properly on non-english pages."
4200
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4201
  "šteti."
4202
 
4203
+ #: settings.php:2465
4204
  msgid "No paragraph counting inside"
4205
  msgstr "Ni štetja odstavkov znotraj"
4206
 
4207
+ #: settings.php:2476
4208
  msgid "Label text or HTML code"
4209
  msgstr "Besedilo oznake ali HTML koda"
4210
 
4211
+ #: settings.php:2484
4212
  msgid ""
4213
  "Maximum number of inserted blocks per page. You need to enable Max page "
4214
  "insertions (button Misc / tab Insertion) to count block for this limit."
4217
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4218
  "omejitev."
4219
 
4220
+ #: settings.php:2498
4221
  msgid "Plugin usage tracking"
4222
  msgstr "Sledenje uporabe vtičnika"
4223
 
4224
  #. translators: %s: Ad Inserter
4225
+ #: settings.php:2501
4226
  msgid ""
4227
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4228
  "Only information regarding the WordPress environment and %s usage is "
4232
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4233
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4234
 
4235
+ #: settings.php:2519
4236
  msgid "CSS class name for the wrapping div"
4237
  msgstr "Ime CSS razreda za div za ovijanje"
4238
 
4239
+ #: settings.php:2519
4240
  msgid "Block class name"
4241
  msgstr "Ime razreda za blok"
4242
 
4243
+ #: settings.php:2525
4244
  msgid "Include block number class"
4245
  msgstr "Vključi razred številke bloka"
4246
 
4247
+ #: settings.php:2525
4248
  msgid "Block number class"
4249
  msgstr "Razred številke bloka"
4250
 
4251
+ #: settings.php:2530
4252
  msgid "Include block name class"
4253
  msgstr "Vključi razred imena bloka"
4254
 
4255
+ #: settings.php:2530
4256
  msgid "Block name class"
4257
  msgstr "Razred imena bloka"
4258
 
4259
+ #: settings.php:2535
4260
  msgid ""
4261
  "Instead of alignment classes generate inline alignment styles for blocks"
4262
  msgstr ""
4263
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4264
 
4265
+ #: settings.php:2535
4266
  msgid "Inline styles"
4267
  msgstr "Medvrstični slogi"
4268
 
4269
+ #: settings.php:2541
4270
  msgid "Preview of the block wrapping code"
4271
  msgstr "Predogled kode za ovijanje blokov"
4272
 
4273
+ #: settings.php:2542
4274
  msgid "Wrapping div"
4275
  msgstr "div za ovijanje"
4276
 
4277
+ #: settings.php:2543 settings.php:2983
4278
  msgid "BLOCK CODE"
4279
  msgstr "KODA BLOKA"
4280
 
4281
+ #: settings.php:2551
4282
  msgid "Viewport Settings used for client-side device detection"
4283
  msgstr ""
4284
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4285
 
4286
  #. Translators: %d: viewport number
4287
+ #: settings.php:2559
4288
  msgid "Viewport %d name"
4289
  msgstr "Ime pogleda %d"
4290
 
4291
+ #: settings.php:2562
4292
  msgid "min width"
4293
  msgstr "najmanjša širina"
4294
 
4295
+ #: settings.php:2573
4296
  msgid "Custom Hooks"
4297
  msgstr "Ročice Po Meri"
4298
 
4299
+ #: settings.php:2585 settings.php:2588
4300
  msgid "Enable hook"
4301
  msgstr "Omogoči ročico"
4302
 
4303
  #. translators: %d: hook number
4304
+ #: settings.php:2588
4305
  msgid "Hook %d name"
4306
  msgstr "Ime ročice %d"
4307
 
4308
+ #: settings.php:2591
4309
  msgid "Hook name for automatic insertion selection"
4310
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4311
 
4312
+ #: settings.php:2594
4313
  msgid "action"
4314
  msgstr "akcija"
4315
 
4316
+ #: settings.php:2597
4317
  msgid "Action name as used in the do_action () function"
4318
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4319
 
4320
+ #: settings.php:2600
4321
  msgid "priority"
4322
  msgstr "prednost"
4323
 
4324
+ #: settings.php:2603
4325
  msgid "Priority for the hook (default is 10)"
4326
  msgstr "Prednost za ročico (privzeta je 10)"
4327
 
4328
+ #: settings.php:2624
4329
  msgid "Enable insertion of this code into HTML page header"
4330
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4331
 
4332
+ #: settings.php:2628 settings.php:2695 settings.php:2877
4333
  msgid "Process PHP code"
4334
  msgstr "Procesiraj PHP kodo"
4335
 
4336
+ #: settings.php:2632
4337
  msgid "HTML Page Header Code"
4338
  msgstr "Koda v Glavi HTML Strani"
4339
 
4340
+ #: settings.php:2640
4341
  msgid "Code in the %s section of the HTML page"
4342
  msgstr "Koda v %s delu HTML strani"
4343
 
4344
+ #: settings.php:2641
4345
  msgctxt "code in the header"
4346
  msgid "NOT ENABLED"
4347
  msgstr "NI OMOGOČENA"
4348
 
4349
+ #: settings.php:2658 settings.php:2726
4350
  msgid "Use server-side detection to insert code only for"
4351
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4352
 
4353
+ #: settings.php:2673
4354
  msgid ""
4355
  "Enable insertion of this code into HTML page header on page for Error 404: "
4356
  "Page not found"
4358
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4359
  "obstaja"
4360
 
4361
+ #: settings.php:2673 settings.php:2741
4362
  msgid "Insert on Error 404 page"
4363
  msgstr "Vstavi na strani Napake 404"
4364
 
4365
+ #: settings.php:2691
4366
  msgid "Enable insertion of this code into HTML page footer"
4367
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4368
 
4369
+ #: settings.php:2699
4370
  msgid "HTML Page Footer Code"
4371
  msgstr "Koda v Nogi HTML Strani"
4372
 
4373
  #. translators: %s: HTML tags
4374
+ #: settings.php:2707
4375
  msgid "Code before the %s tag of the the HTML page"
4376
  msgstr "Koda pred %s značko HTML strani"
4377
 
4378
+ #: settings.php:2708
4379
  msgctxt "code in the footer"
4380
  msgid "NOT ENABLED"
4381
  msgstr "NI OMOGOČENA"
4382
 
4383
+ #: settings.php:2741
4384
  msgid ""
4385
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4386
  "Page not found"
4388
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4389
  "Stran ne obstaja"
4390
 
4391
+ #: settings.php:2757
4392
  msgid "Code for ad blocking detection inserted. Click for details."
4393
  msgstr ""
4394
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4395
 
4396
+ #: settings.php:2762
4397
  msgid "Enable detection of ad blocking"
4398
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4399
 
4400
+ #: settings.php:2780
4401
  msgid "Global action when ad blocking is detected"
4402
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4403
 
4404
+ #: settings.php:2786
4405
  msgid "No action for"
4406
  msgstr "Ni akcije za"
4407
 
4408
+ #: settings.php:2787
4409
  msgid "Exceptions for global action when ad blocking is detected."
4410
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
4411
 
4412
+ #: settings.php:2797
4413
  msgid "Delay Action"
4414
  msgstr "Zakasni Akcijo"
4415
 
4416
+ #: settings.php:2800
4417
  msgid ""
4418
  "Number of page views to delay action when ad blocking is detected. Leave "
4419
  "empty for no delay (action fires on first page view). Sets cookie."
4422
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4423
  "strani). Nastavi piškotek."
4424
 
4425
+ #: settings.php:2800
4426
  msgctxt "Delay Action for x "
4427
  msgid "page views"
4428
  msgstr "ogledov strani"
4429
 
4430
+ #: settings.php:2805
4431
  msgid "No Action Period"
4432
  msgstr "Obdobje Brez Akcije"
4433
 
4434
+ #: settings.php:2808
4435
  msgid ""
4436
  "Number of days to supress action when ad blocking is detected. Leave empty "
4437
  "for no no-action period (action fires always after defined page view delay). "
4441
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4442
  "strani). Nastavi piškotek."
4443
 
4444
+ #: settings.php:2808
4445
  msgctxt "no action period"
4446
  msgid "days"
4447
  msgstr "dni"
4448
 
4449
+ #: settings.php:2813
4450
  msgid "Custom Selectors"
4451
  msgstr "Selektorji Po Meri"
4452
 
4453
+ #: settings.php:2816
4454
  msgid ""
4455
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4456
  "blocking detection. Invisible element or element with zero height means ad "
4460
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4461
  "pomeni prisotnost blokiranja oglasov."
4462
 
4463
+ #: settings.php:2828
4464
  msgid "Redirection Page"
4465
  msgstr "Stran za Preusmeritev"
4466
 
4467
+ #: settings.php:2840
4468
  msgid "Custom Url"
4469
  msgstr "Url Po Meri"
4470
 
4471
+ #: settings.php:2845
4472
  msgid ""
4473
  "Static page for redirection when ad blocking is detected. For other pages "
4474
  "select Custom url and set it below."
4476
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4477
  "strani izberite Url Po Meri in ga nastavite spodaj."
4478
 
4479
+ #: settings.php:2854
4480
  msgid "Custom Redirection Url"
4481
  msgstr "Url za Preusmeritev Po Meri"
4482
 
4483
+ #: settings.php:2866
4484
  msgid "Message HTML code"
4485
  msgstr "HTML koda sporočila"
4486
 
4487
+ #: settings.php:2879
4488
  msgid "Preview message when ad blocking is detected"
4489
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4490
 
4491
+ #: settings.php:2908
4492
  msgid "Prevent visitors from closing the warning message"
4493
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4494
 
4495
+ #: settings.php:2908
4496
  msgid "Undismissible Message"
4497
  msgstr "Neodstranljivo Sporočilo"
4498
 
4499
+ #: settings.php:2914
4500
  msgid "Not undismissible for"
4501
  msgstr "Ni neodstranljivo za"
4502
 
4503
+ #: settings.php:2915
4504
  msgid "Users which can close the warning message."
4505
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4506
 
4507
+ #: settings.php:2929
4508
  msgid ""
4509
  "Force showing admin toolbar for administrators when viewing site. Enable "
4510
  "this option when you are logged in as admin and you don't see admin toolbar."
4513
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4514
  "skrbnike."
4515
 
4516
+ #: settings.php:2937
4517
  msgid "Disable header code (Header tab)"
4518
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4519
 
4520
+ #: settings.php:2941
4521
  msgid "Disable footer code (Footer tab)"
4522
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4523
 
4524
  #. translators: %s: Ad Inserter
4525
+ #: settings.php:2945
4526
  msgid "Disable %s JavaScript code"
4527
  msgstr "Onemogoči %s JavaScript kodo"
4528
 
4529
  #. translators: %s: Ad Inserter
4530
+ #: settings.php:2949
4531
  msgid "Disable %s CSS code"
4532
  msgstr "Onemogoči %s CSS kodo"
4533
 
4534
+ #: settings.php:2953
4535
  msgid ""
4536
  "Disable PHP code processing (in all blocks including header and footer code)"
4537
  msgstr ""
4538
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4539
 
4540
+ #: settings.php:2957
4541
  msgid "Disable insertion of all blocks"
4542
  msgstr "Onemogoči vstavljanje vseh blokov"
4543
 
4544
+ #: settings.php:2961
4545
  msgid "Disable insertions"
4546
  msgstr "Onemogoči vstavljanja"
4547
 
4548
  #. translators: %s: Ad Inserter
4549
+ #: settings.php:2973
4550
  msgid "%s CSS CODE"
4551
  msgstr "%s CSS KODA"
4552
 
4553
+ #: settings.php:2976
4554
  msgid "HEADER CODE"
4555
  msgstr "KODA GLAVE"
4556
 
4557
  #. translators: %s: PHP tags
4558
+ #: settings.php:2982
4559
  msgid "BLOCK PHP CODE"
4560
  msgstr "PHP KODA BLOKA"
4561
 
4562
  #. translators: %s: Ad Inserter
4563
+ #: settings.php:2988
4564
  msgid "%s JS CODE"
4565
  msgstr "%s JS KODA"
4566
 
4567
+ #: settings.php:2991
4568
  msgid "FOOTER CODE"
4569
  msgstr "KODA NOGE"
4570
 
4571
+ #: settings.php:3000
4572
  msgid "Force showing admin toolbar when viewing site"
4573
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4574
 
4575
+ #: settings.php:3007
4576
  msgid "Enable debugging functions in admin toolbar"
4577
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4578
 
4579
+ #: settings.php:3009
4580
  msgid "Debugging functions in admin toolbar"
4581
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4582
 
4583
+ #: settings.php:3016
4584
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4585
  msgstr ""
4586
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4587
  "zaslonih"
4588
 
4589
+ #: settings.php:3018
4590
  msgid "Debugging functions on mobile screens"
4591
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4592
 
4593
+ #: settings.php:3025
4594
  msgid ""
4595
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4596
  "tags, processing) by url parameters for non-logged in users. Enable this "
4605
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4606
  "vedno omogočeno."
4607
 
4608
+ #: settings.php:3027
4609
  msgid "Remote debugging"
4610
  msgstr "Oddaljeno razhroščevanje"
4611
 
4612
+ #: settings.php:3034
4613
  msgid ""
4614
  "Disable translation to see original texts for the settings and messages in "
4615
  "English"
4617
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4618
  "angleščini"
4619
 
4620
+ #: settings.php:3036
4621
  msgid "Disable translation"
4622
  msgstr "Onemogoči prevod"
4623
 
4624
+ #: settings.php:3406
4625
  msgid "Available positions for current theme"
4626
  msgstr "Razpoložljivi položaji za trenutno temo"
4627
 
4628
+ #: settings.php:3407
4629
  msgid "Error checking pages"
4630
  msgstr "Napaka pri preverjanju strani"
4631
 
4632
+ #: settings.php:3410
4633
  msgid "Toggle theme checker for available positions for automatic insertion"
4634
  msgstr ""
4635
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4636
 
4637
+ #: settings.php:3410
4638
  msgctxt "Button"
4639
  msgid "Check"
4640
  msgstr "Preveri"
4641
 
4642
+ #: settings.php:3417
4643
  msgid "Position"
4644
  msgstr "Položaj"
4645
 
4646
+ #: settings.php:3422
4647
  msgid "Archive pages"
4648
  msgstr "Strani arhiva"
4649
 
4650
+ #: settings.php:3481
4651
  msgid ""
4652
  "Position not available because output buffering (tab [*]) is not enabled"
4653
  msgstr ""
4654
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4655
 
4656
+ #: settings.php:3484 strings.php:228
4657
  msgid "Position not checked yet"
4658
  msgstr "Položaj še ni bil preverjen"
4659
 
4660
+ #: settings.php:3520
4661
  msgid "Toggle active/all blocks"
4662
  msgstr "Preklopi aktive/vse bloke"
4663
 
4664
+ #: settings.php:3524 strings.php:215
4665
  msgid "Rearrange block order"
4666
  msgstr "Preuredi vrstni red blokov"
4667
 
4668
+ #: settings.php:3529
4669
  msgid "Save new block order"
4670
  msgstr "Shrani vrstni red blokov"
4671
 
4672
+ #: settings.php:3555
4673
  msgid "Toggle active/all ad units"
4674
  msgstr "Preklopi aktivne/vse oglasne enote"
4675
 
4676
+ #: settings.php:3559
4677
  msgid "Reload AdSense ad units"
4678
  msgstr "Ponovno naloži oglasne enote AdSense"
4679
 
4680
+ #: settings.php:3563
4681
  msgid "Clear authorization to access AdSense account"
4682
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4683
 
4684
+ #: settings.php:3567 settings.php:4417 settings.php:4484 strings.php:223
4685
  msgid "Google AdSense Homepage"
4686
  msgstr "Google AdSense Domača Stran"
4687
 
4688
+ #: settings.php:3583
4689
  msgid "Switch to physical ads.txt file"
4690
  msgstr "Preklopi na fizično datoteko ads.txt"
4691
 
4692
+ #: settings.php:3584
4693
  msgid "Switch to virtual ads.txt file"
4694
  msgstr "Preklopi na navidezno datoteko ads.txt"
4695
 
4696
  #. translators: %s: ads.txt
4697
+ #: settings.php:3594
4698
  msgid "Open %s"
4699
  msgstr "Odpri %s"
4700
 
4701
+ #: settings.php:3602
4702
  msgid "Reload ads.txt file"
4703
  msgstr "Ponovno naloži datoteko ads.txt"
4704
 
4705
+ #: settings.php:3606 settings.php:4544
4706
  msgid "Save"
4707
  msgstr "Shrani"
4708
 
4709
  #. translators: %s: Ad Inserter
4710
+ #: settings.php:3781
4711
  msgid "ads.txt file: %s virtual ads.txt file"
4712
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4713
 
4714
+ #: settings.php:3786 settings.php:3806 strings.php:207
4715
  msgid "Warning"
4716
  msgstr "Opozorilo"
4717
 
4718
  #. translators: %s: Ad Inserter
4719
+ #: settings.php:3786
4720
  msgid "%s virtual file ads.txt not found"
4721
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4722
 
4723
+ #: settings.php:3794
4724
  msgid "IMPORTANT"
4725
  msgstr "POMEMBNO"
4726
 
4727
+ #: settings.php:3794
4728
  msgid "ads.txt file must be placed on the root domain"
4729
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4730
 
4731
+ #: settings.php:3799
4732
  msgid "ads.txt file"
4733
  msgstr "datoteka ads.txt"
4734
 
4735
+ #: settings.php:3799
4736
  msgid "NOT WRITABLE"
4737
  msgstr "NI ZAPISLJIVO"
4738
 
4739
+ #: settings.php:3806
4740
  msgid "file %s not found"
4741
  msgstr "datoteka %s ni najdena"
4742
 
4743
+ #: settings.php:3816
4744
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4745
  msgstr ""
4746
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4747
 
4748
  #. translators: %s: Ad Inserter
4749
+ #: settings.php:3822
4750
  msgid "%s virtual ads.txt file"
4751
  msgstr "%s navidezna datoteka ads.txt"
4752
 
4753
+ #: settings.php:3844
4754
  msgid "Advertising system"
4755
  msgstr "Oglaševalski sistem"
4756
 
4757
+ #: settings.php:3845
4758
  msgid "Account ID"
4759
  msgstr "ID Računa"
4760
 
4761
+ #: settings.php:3847
4762
  msgid "Certification authority ID"
4763
  msgstr "ID organa za potrjevanje"
4764
 
4765
+ #: settings.php:3862
4766
  msgid "Account ID found in block and present in ads.txt"
4767
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4768
 
4769
+ #: settings.php:3866
4770
  msgid "Account ID found in block but not present in ads.txt"
4771
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4772
 
4773
+ #: settings.php:4200
4774
  msgid "Preview block"
4775
  msgstr "Predogled bloka"
4776
 
4777
+ #: settings.php:4207
4778
+ msgid "Pause block"
4779
+ msgstr "Ustavite blok"
4780
 
4781
+ #: settings.php:4246
4782
  msgid "Automatic insertion"
4783
  msgstr "Samodejno vstavljanje"
4784
 
4785
  #. translators: %s HTML tags
4786
+ #: settings.php:4247 settings.php:5215
4787
  msgid "PHP code processing"
4788
  msgstr "Procesiranje PHP kode"
4789
 
4790
+ #: settings.php:4249
4791
  msgid "Device detection"
4792
  msgstr "Zaznavanje naprave"
4793
 
4794
+ #: settings.php:4272
4795
+ msgid "No active block"
 
 
 
 
4796
  msgstr "Noben aktiven blok"
4797
 
4798
+ #: settings.php:4273
4799
+ msgid "No block matches search keywords"
4800
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4801
 
4802
+ #: settings.php:4328
4803
  msgid "Ad unit"
4804
  msgstr "Enota"
4805
 
4806
+ #: settings.php:4330
4807
  msgid "Slot ID"
4808
  msgstr "ID mesta"
4809
 
4810
+ #: settings.php:4356
4811
  msgid "Copy AdSense code"
4812
  msgstr "Kopiraj kodo AdSense"
4813
 
4814
+ #: settings.php:4359
4815
  msgid "Preview AdSense ad"
4816
  msgstr "Predogled oglasa AdSense"
4817
 
4818
+ #: settings.php:4362
4819
  msgid "Get AdSense code"
4820
  msgstr "Pridobi kodo AdSense"
4821
 
4822
  #. translators: %s: HTML tags
4823
+ #: settings.php:4394
4824
  msgid ""
4825
  "Please %s clear authorization %s with the button %s above and once again "
4826
  "authorize access to your AdSense account."
4828
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4829
  "avtorizirajte dostop do vašega računa AdSense."
4830
 
4831
+ #: settings.php:4413
4832
  msgid "AdSense Integration"
4833
  msgstr "Integracija AdSense"
4834
 
4835
+ #: settings.php:4415
4836
  msgid "AdSense Integration - Step 2"
4837
  msgstr "Integracija AdSense - Korak 2"
4838
 
4839
  #. translators: %s: HTML tags
4840
+ #: settings.php:4421
4841
  msgid ""
4842
  "Authorize %s to access your AdSense account. Click on the %s Get "
4843
  "Authorization Code %s button to open a new window where you can allow "
4850
  "Avtoriziraj. %s"
4851
 
4852
  #. translators: %s: HTML tags
4853
+ #: settings.php:4428
4854
  msgid ""
4855
  "If you get error, can't access ad units or would like to use own Google API "
4856
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4861
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4862
 
4863
  #. translators: %s: HTML tags
4864
+ #: settings.php:4430
4865
  msgid ""
4866
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4867
  "Authorization Code %s button to open a new window where you can allow "
4874
  "gumb %s Avtoriziraj. %s"
4875
 
4876
  #. translators: %s: HTML tags
4877
+ #: settings.php:4437
4878
  msgid ""
4879
  "If you get error %s invalid client %s click on the button %s Clear and "
4880
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4882
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4883
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4884
 
4885
+ #: settings.php:4448
4886
  msgid "Get Authorization Code"
4887
  msgstr "Pridobi Avtoriazcijsko Kodo"
4888
 
4889
+ #: settings.php:4451
4890
  msgid "Enter Authorization Code"
4891
  msgstr "Vnesi Avorizacijsko Kodo"
4892
 
4893
+ #: settings.php:4461
4894
  msgid "Use own API IDs"
4895
  msgstr "Uporabi lastne API ID-je"
4896
 
4897
+ #: settings.php:4463
4898
  msgid "Clear and return to Step 1"
4899
  msgstr "Odstrani in se vrni na Korak 1"
4900
 
4901
+ #: settings.php:4467
4902
  msgid "Authorize"
4903
  msgstr "Avtoriziraj"
4904
 
4905
+ #: settings.php:4483
4906
  msgid "AdSense Integration - Step 1"
4907
  msgstr "Integracija AdSense - Korak 1"
4908
 
4909
  #. translators: %s: Ad Inserter
4910
+ #: settings.php:4487
4911
  msgid ""
4912
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4913
  "To do this you need to authorize %s to access your AdSense account. The "
4920
  "Odjemalca in Skrivnost Odjemalca."
4921
 
4922
  #. translators: %s: HTML tags
4923
+ #: settings.php:4496
4924
  msgid "Go to %s Google APIs and Services console %s"
4925
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4926
 
4927
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4928
+ #: settings.php:4497
4929
  msgid ""
4930
  "Create %1$s project - if the project and IDs are already created click on "
4931
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4934
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4935
 
4936
  #. translators: %s: HTML tags
4937
+ #: settings.php:4498
4938
  msgid ""
4939
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4940
  "create a new project"
4943
  "ustvaritev novega projekta"
4944
 
4945
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4946
+ #: settings.php:4499
4947
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4948
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4949
 
4950
  #. translators: %s: HTML tags
4951
+ #: settings.php:4500
4952
  msgid ""
4953
  "Click on project selection, wait for the project to be created and then and "
4954
  "select %s as the current project"
4957
  "izberite %s kot trenutni projekt"
4958
 
4959
  #. translators: %s: HTML tags
4960
+ #: settings.php:4501
4961
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4962
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4963
 
4964
  #. translators: %s: HTML tags
4965
+ #: settings.php:4502
4966
  msgid "Search for adsense and enable %s"
4967
  msgstr "Poiščite adsense in omogočite %s"
4968
 
4969
  #. translators: %s: HTML tags
4970
+ #: settings.php:4503
4971
  msgid "Click on %s CREATE CREDENTIALS %s"
4972
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4973
 
4974
  #. translators: %s: HTML tags
4975
+ #: settings.php:4504
4976
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4977
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4978
 
4979
  #. translators: %s: HTML tags
4980
+ #: settings.php:4505
4981
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4982
  msgstr ""
4983
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4984
  "podatki %s"
4985
 
4986
  #. translators: %s: HTML tags
4987
+ #: settings.php:4506
4988
  msgid "Click on %s What credentials do I need? %s"
4989
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4990
 
4991
  #. translators: %s: HTML tags
4992
+ #: settings.php:4507
4993
  msgid ""
4994
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4995
  "Ad Inserter client %s"
4998
  "vnestite %s Ad Inserter odjemalec %s"
4999
 
5000
  #. translators: %s: HTML tags
5001
+ #: settings.php:4508
5002
  msgid ""
5003
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5004
  "enter %s"
5007
  "uporabnikom %s vnesite %s"
5008
 
5009
  #. translators: %s: HTML tags
5010
+ #: settings.php:4509
5011
  msgid "Click on %s Continue %s"
5012
  msgstr "Kliknite na %s Nadaljuj %s"
5013
 
5014
  #. translators: %s: HTML tags
5015
+ #: settings.php:4510
5016
  msgid "Click on %s Done %s"
5017
  msgstr "Kliknite na %s Končaj %s"
5018
 
5019
  #. translators: %s: HTML tags
5020
+ #: settings.php:4511
5021
  msgid ""
5022
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5023
  "secret %s"
5025
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5026
  "%s Skrivnost odjemalca %s"
5027
 
5028
+ #: settings.php:4512
5029
  msgid "Copy them to the appropriate fields below"
5030
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5031
 
5032
+ #: settings.php:4518
5033
  msgid "Client ID"
5034
  msgstr "ID odjemalca"
5035
 
5036
+ #: settings.php:4521
5037
  msgid "Enter Client ID"
5038
  msgstr "Vnesite ID odjemalca"
5039
 
5040
+ #: settings.php:4526
5041
  msgid "Client secret"
5042
  msgstr "Skrivnost odjemalca"
5043
 
5044
+ #: settings.php:4529
5045
  msgid "Enter Client secret"
5046
  msgstr "Vnesite Skrivnost odjemalca"
5047
 
5048
+ #: settings.php:4539
5049
  msgid "Use default API IDs"
5050
  msgstr "Uporabi privzete API ID-je"
5051
 
5052
+ #: settings.php:4703
5053
  msgid "All posts"
5054
  msgstr "Vsi prispevki"
5055
 
5056
+ #: settings.php:4704
5057
  msgid "All static pages"
5058
  msgstr "Vse statične strani"
5059
 
5060
+ #: settings.php:4859 settings.php:4872 settings.php:4886 settings.php:4902
5061
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5062
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5063
 
5064
+ #: settings.php:4864 settings.php:4877 settings.php:4891 settings.php:4907
5065
+ #: settings.php:5106 settings.php:5108 settings.php:5124 settings.php:5129
5066
+ #: settings.php:5137 settings.php:5138 settings.php:5141 settings.php:5147
5067
+ #: settings.php:5157 settings.php:5161
5068
  msgid "Looking for AdSense alternative?"
5069
  msgstr "Iščete alternativo za AdSense?"
5070
 
5071
+ #: settings.php:4919
5072
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5073
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5074
 
5075
+ #: settings.php:4924 settings.php:5103 settings.php:5116 settings.php:5144
5076
+ #: settings.php:5170
5077
  msgid "Use Infolinks ads with Adsense to earn more"
5078
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5079
 
5080
+ #: settings.php:4945 settings.php:4995
 
 
 
 
5081
  msgid "Support plugin development"
5082
  msgstr "Podprite razvoj vtičnika"
5083
 
5084
+ #: settings.php:4950 settings.php:4996
5085
  msgid ""
5086
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5087
  "reviewing the plugin on WordPres"
5089
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5090
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5091
 
5092
+ #: settings.php:4950
5093
  msgctxt "Review Ad Inserter"
5094
  msgid "Review"
5095
  msgstr "Ocenite"
5096
 
5097
+ #: settings.php:4955
5098
  msgid ""
5099
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5100
  "rating the plugin on WordPres"
5102
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5103
  "razširiti novico z oceno vtičnika na WordPress-u"
5104
 
5105
+ #: settings.php:4955
5106
  msgctxt "Rate Ad Inserter"
5107
  msgid "Rate"
5108
  msgstr "Ocenite"
5109
 
5110
+ #: settings.php:4960
5111
  msgid ""
5112
  "Support free Ad Inserter development. If you are making money with Ad "
5113
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5116
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5117
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5118
 
5119
+ #: settings.php:4960
5120
  msgid "Donate"
5121
  msgstr "Donirajte"
5122
 
5123
+ #: settings.php:4967 settings.php:5011
5124
  msgid "Average rating of the plugin - Thank you!"
5125
  msgstr "Povprečna ocena vtičnika - Hvala!"
5126
 
5127
  #. translators: %s: Ad Inserter, HTML tags
5128
+ #: settings.php:4978
5129
  msgid ""
5130
  "You've been using %s for a while now, and I hope you're happy with it. "
5131
  "Positive %s reviews %s are a great way to show your appreciation for my "
5140
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5141
  "bi rekli 'Hvala'."
5142
 
5143
+ #: settings.php:4996
5144
  msgid "Review"
5145
  msgstr "Ocena"
5146
 
5147
+ #: settings.php:5000
5148
  msgid "Ad Inserter on Twitter"
5149
  msgstr "Ad Inserter na Twitter-ju"
5150
 
5151
+ #: settings.php:5001
5152
  msgid "Ad Inserter on Facebook"
5153
  msgstr "Ad Inserter na Facebook-u"
5154
 
5155
+ #: settings.php:5004
5156
  msgid "Follow Ad Inserter"
5157
  msgstr "Sledi Ad Inserter-ju"
5158
 
5159
  #. translators: %s: HTML tags
5160
+ #: settings.php:5031
5161
  msgid ""
5162
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5163
  "and %s Common Settings %s pages"
5166
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5167
 
5168
  #. translators: %s: HTML tags
5169
+ #: settings.php:5043
5170
  msgid ""
5171
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5172
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
5177
  "%s Infolinks %s oglasno kodo %s"
5178
 
5179
  #. translators: %s: HTML tags
5180
+ #: settings.php:5064
5181
  msgid ""
5182
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5183
  "purchase you refer to us"
5186
  "nakup, ki nam ga posredujete"
5187
 
5188
  #. translators: %s: HTML tags
5189
+ #: settings.php:5071
5190
  msgid ""
5191
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5192
  "diagnose and fix the problem."
5195
  "navodili za diagnozo in rešitvami za težave."
5196
 
5197
  #. translators: %s: HTML tags
5198
+ #: settings.php:5075
5199
  msgid ""
5200
  "If you need any kind of help or support, please do not hesitate to open a "
5201
  "thread on the %s support forum. %s"
5203
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5204
  "nit na %s podpornem forumu. %s"
5205
 
5206
+ #: settings.php:5101 settings.php:5165 settings.php:5169
5207
  msgid "Code preview with visual CSS editor"
5208
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5209
 
5210
+ #: settings.php:5105 settings.php:5155
5211
  msgid "A/B testing - Track ad impressions and clicks"
5212
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5213
 
5214
+ #: settings.php:5120
5215
+ msgid "Insert ads on AMP pages"
5216
+ msgstr "Vstavite oglase na AMP straneh"
5217
+
5218
+ #: settings.php:5128
5219
+ msgid "Ad blocking detection and content protection"
5220
+ msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5221
+
5222
+ #: settings.php:5178
5223
  msgid "Looking for Pro Ad Management plugin?"
5224
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5225
 
5226
+ #: settings.php:5179
5227
  msgid "To Optimally Monetize your WordPress website?"
5228
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5229
 
5230
  #. Translators: %s: price of Ad Inserter Pro
5231
+ #: settings.php:5180
5232
  msgid "Different license types starting from %s"
5233
  msgstr "Različni tipi licenc začenši od %s"
5234
 
5235
  #. translators: %s HTML tags
5236
+ #: settings.php:5183
5237
  msgid "%s AdSense Integration %s"
5238
  msgstr "%s Integracija AdSense %s"
5239
 
5240
  #. translators: %s HTML tags
5241
+ #: settings.php:5184
5242
  msgid "Syntax highlighting %s editor %s"
5243
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5244
 
5245
  #. translators: %s HTML tags
5246
+ #: settings.php:5185
5247
  msgid "%s Code preview %s with visual CSS editor"
5248
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5249
 
5250
  #. translators: %s HTML tags
5251
+ #: settings.php:5186
5252
  msgid "Simple user interface - all settings on a single page"
5253
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5254
 
5255
  #. translators: %s HTML tags
5256
+ #: settings.php:5187
5257
  msgid ""
5258
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5259
  "image / excerpt"
5262
  "%s / sliko / izvlečkom"
5263
 
5264
  #. translators: %s HTML tags
5265
+ #: settings.php:5188
5266
  msgid "%s Automatic insertion %s between posts on blog pages"
5267
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5268
 
5269
  #. translators: %s HTML tags
5270
+ #: settings.php:5189
5271
  msgid "%s Automatic insertion %s before, between and after comments"
5272
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5273
 
5274
  #. translators: %s HTML tags
5275
+ #: settings.php:5190
5276
  msgid "%s Automatic insertion %s after %s or before %s tag"
5277
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5278
 
5279
  #. translators: %s HTML tags
5280
+ #: settings.php:5191
5281
  msgid "Automatic insertion at %s custom hook positions %s"
5282
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5283
 
5284
  #. translators: %s HTML tags
5285
+ #: settings.php:5192
5286
  msgid ""
5287
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5288
  "selectors)"
5291
  "selektorjev)"
5292
 
5293
  #. translators: %s HTML tags
5294
+ #: settings.php:5193
5295
  msgid "%s Insertion exceptions %s for individual posts and pages"
5296
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5297
 
5298
  #. translators: %s HTML tags
5299
+ #: settings.php:5194
5300
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5301
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5302
 
5303
  #. translators: %s HTML tags
5304
+ #: settings.php:5195
5305
  msgid ""
5306
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5307
  "scrolls)"
5310
  "se stran pomika)"
5311
 
5312
  #. translators: %s HTML tags
5313
+ #: settings.php:5196
5314
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5315
  msgstr ""
5316
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5317
 
5318
  #. translators: %s HTML tags
5319
+ #: settings.php:5197
5320
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5321
  msgstr ""
5322
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5323
 
5324
  #. translators: %s HTML tags
5325
+ #: settings.php:5198
5326
  msgid ""
5327
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5328
  "visible)"
5331
  "postane viden)"
5332
 
5333
  #. translators: %s HTML tags
5334
+ #: settings.php:5199
5335
  msgid ""
5336
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5337
  msgstr ""
5339
  "strani)"
5340
 
5341
  #. translators: %s HTML tags
5342
+ #: settings.php:5200
5343
  msgid "Block %s alignment and style %s customizations"
5344
  msgstr "%s Poravnave in slogi %s bloka po meri"
5345
 
5346
  #. translators: %s HTML tags
5347
+ #: settings.php:5201
5348
  msgid ""
5349
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5350
  "TOS)"
5352
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5353
 
5354
  #. translators: %s HTML tags
5355
+ #: settings.php:5202
5356
  msgid ""
5357
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5358
  "feeds"
5361
  "virih"
5362
 
5363
  #. translators: %s HTML tags
5364
+ #: settings.php:5203
5365
  msgid "%s Ad rotation %s (works also with caching)"
5366
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5367
 
5368
  #. translators: %s HTML tags
5369
+ #: settings.php:5204
5370
  msgid "Create, edit and check %s ads.txt %s file"
5371
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5372
 
5373
  #. translators: %s HTML tags
5374
+ #: settings.php:5205
5375
  msgid ""
5376
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5377
  "AdSense)"
5380
  "AdSense)"
5381
 
5382
  #. translators: %s HTML tags
5383
+ #: settings.php:5206
5384
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5385
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5386
 
5387
  #. translators: %s HTML tags
5388
+ #: settings.php:5207
5389
  msgid "%s Public web reports %s for clients, export to PDF"
5390
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5391
 
5392
  #. translators: %s HTML tags
5393
+ #: settings.php:5208
5394
  msgid "Support for %s A/B testing %s"
5395
  msgstr "Podpora za %s A/B testiranje %s"
5396
 
5397
  #. translators: %s HTML tags
5398
+ #: settings.php:5209
5399
  msgid "Frequency capping - %s limit impressions or clicks %s"
5400
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5401
 
5402
  #. translators: %s HTML tags
5403
+ #: settings.php:5210
5404
  msgid "Click fraud %s protection %s"
5405
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5406
 
5407
  #. translators: %s HTML tags
5408
+ #: settings.php:5211
5409
  msgid "Support for %s lazy loading %s"
5410
  msgstr "Podpora za %s leno nalaganje %s"
5411
 
5412
  #. translators: %s HTML tags
5413
+ #: settings.php:5212
5414
  msgid "Support for ads on %s AMP pages %s"
5415
  msgstr "Podpora za oglase na %s AMP straneh %s"
5416
 
5417
  #. translators: %s HTML tags
5418
+ #: settings.php:5213
5419
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5420
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5421
 
5422
  #. translators: %s HTML tags
5423
+ #: settings.php:5214
5424
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5425
  msgstr ""
5426
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5427
 
5428
  #. translators: %s HTML tags
5429
+ #: settings.php:5216
5430
  msgid "%s Banner %s code generator"
5431
  msgstr "Generator kode za %s pasice %s"
5432
 
5433
  #. translators: %s HTML tags
5434
+ #: settings.php:5217
5435
  msgid "Support for %s header and footer %s code"
5436
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5437
 
5438
  #. translators: %s HTML tags
5439
+ #: settings.php:5218
5440
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5441
  msgstr ""
5442
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5443
 
5444
  #. translators: %s HTML tags
5445
+ #: settings.php:5219
5446
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5447
  msgstr ""
5448
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5449
  "strežnika"
5450
 
5451
  #. translators: %s HTML tags
5452
+ #: settings.php:5220
5453
  msgid "Client-side %s mobile device detection %s (works with caching)"
5454
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5455
 
5456
  #. translators: %s HTML tags
5457
+ #: settings.php:5221
5458
  msgid ""
5459
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5460
  "protection"
5463
  "vsebine"
5464
 
5465
  #. translators: %s HTML tags
5466
+ #: settings.php:5222
5467
  msgid "%s Ad blocking statistics %s"
5468
  msgstr "%s Statistika blokiranja oglasov %s"
5469
 
5470
  #. translators: %s HTML tags
5471
+ #: settings.php:5223
5472
  msgid ""
5473
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5474
  "referrers, operating systems, browsers"
5477
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5478
 
5479
  #. translators: %s HTML tags
5480
+ #: settings.php:5224
5481
  msgid ""
5482
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5483
  msgstr ""
5484
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5485
 
5486
  #. translators: %s HTML tags
5487
+ #: settings.php:5225
5488
  msgid "%s Multisite options %s to limit settings on the sites"
5489
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5490
 
5491
  #. translators: %s HTML tags
5492
+ #: settings.php:5226
5493
  msgid "%s Import/Export %s block or plugin settings"
5494
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5495
 
5496
  #. translators: %s HTML tags
5497
+ #: settings.php:5227
5498
  msgid "%s Insertion scheduling %s with fallback option"
5499
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5500
 
5501
  #. translators: %s HTML tags
5502
+ #: settings.php:5228
5503
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5504
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5505
 
5506
  #. translators: %s HTML tags
5507
+ #: settings.php:5229
5508
  msgid "Simple troubleshooting with many %s debugging functions %s"
5509
  msgstr ""
5510
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5511
 
5512
  #. translators: %s HTML tags
5513
+ #: settings.php:5230
5514
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5515
  msgstr ""
5516
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5517
 
5518
  #. translators: %s HTML tags
5519
+ #: settings.php:5231
5520
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5521
  msgstr ""
5522
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5523
 
5524
  #. translators: %s HTML tags
5525
+ #: settings.php:5232
5526
  msgid ""
5527
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5528
  msgstr ""
5529
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5530
 
5531
  #. translators: %s HTML tags
5532
+ #: settings.php:5233
5533
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5534
  msgstr ""
5535
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5536
 
5537
  #. translators: %s HTML tags
5538
+ #: settings.php:5234
5539
  msgid "No ads on the settings page"
5540
  msgstr "Stran z nastavitvami brez oglasov"
5541
 
5542
  #. translators: %s HTML tags
5543
+ #: settings.php:5235
5544
  msgid "Premium support"
5545
  msgstr "Vrhunska podpora"
5546
 
5547
  #. translators: %s HTML tags
5548
+ #: settings.php:5238
5549
  msgid ""
5550
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5551
  "website with many advertising features to automatically insert adverts on "
5572
  "bodo ohranile)."
5573
 
5574
  #. translators: %s HTML tags
5575
+ #: settings.php:5251
5576
  msgid "Looking for %s Pro Ad Management plugin? %s"
5577
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5578
 
5579
  #. translators: %s HTML tags
5580
+ #: settings.php:5256
5581
  msgid "Ads between posts"
5582
  msgstr "Oglasi med prispevki"
5583
 
5584
  #. translators: %s HTML tags
5585
+ #: settings.php:5257
5586
  msgid "Ads between comments"
5587
  msgstr "Oglasi med komentarji"
5588
 
5589
  #. translators: %s HTML tags
5590
+ #: settings.php:5258
5591
  msgid "Support via email"
5592
  msgstr "Podpora prek elektronske pošte"
5593
 
5594
  #. translators: %s HTML tags
5595
+ #: settings.php:5264
5596
  msgid "%s Sticky positions %s"
5597
  msgstr "%s Lepljivi položaji %s"
5598
 
5599
  #. translators: %s HTML tags
5600
+ #: settings.php:5265
5601
  msgid "%s Limit insertions %s"
5602
  msgstr "%s Omeji vstavljanja %s"
5603
 
5604
  #. translators: %s HTML tags
5605
+ #: settings.php:5266
5606
  msgid "%s Clearance %s options"
5607
  msgstr "Možnosti %s izogibanja %s"
5608
 
5609
  #. translators: %s HTML tags
5610
+ #: settings.php:5272
5611
  msgid "Ad rotation"
5612
  msgstr "Vrtenje oglasov"
5613
 
5614
  #. translators: %s HTML tags
5615
+ #: settings.php:5273
5616
  msgid "%s A/B testing %s"
5617
  msgstr "%s A/B testiranje %s"
5618
 
5619
  #. translators: %s HTML tags
5620
+ #: settings.php:5274
5621
  msgid "%s Ad tracking %s"
5622
  msgstr "%s Sledenje oglasom %s"
5623
 
5624
  #. translators: %s HTML tags
5625
+ #: settings.php:5280
5626
  msgid "Support for %s AMP pages %s"
5627
  msgstr "Podpora za %s AMP strani %s"
5628
 
5629
  #. translators: %s HTML tags
5630
+ #: settings.php:5281
5631
  msgid "%s Ad blocking detection %s"
5632
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5633
 
5634
  #. translators: %s HTML tags
5635
+ #: settings.php:5282
5636
  msgid "%s Mobile device detection %s"
5637
  msgstr "%s Zaznavanje mobilne naprave %s"
5638
 
5639
  #. translators: %s HTML tags
5640
+ #: settings.php:5289
5641
  msgid "64 code blocks"
5642
  msgstr "64 kodnih blokov"
5643
 
5644
  #. translators: %s HTML tags
5645
+ #: settings.php:5290
5646
  msgid "%s GEO targeting %s"
5647
  msgstr "%s GEO ciljanje %s"
5648
 
5649
  #. translators: %s HTML tags
5650
+ #: settings.php:5291
5651
  msgid "%s Scheduling %s"
5652
  msgstr "%s Urnik %s"
5653
 
6483
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6484
  "na optimalna mesta"
6485
 
6486
+ #~ msgid "Maximize your revenue!"
6487
+ #~ msgstr "Povečajte svoj prihodek!"
6488
+
6489
+ #~ msgid "Widget positions"
6490
+ #~ msgstr "Položaji gradnikov"
6491
+
6492
+ #~ msgid "Insertion disabled"
6493
+ #~ msgstr "Vstavljanje onemogočeno"
6494
+
6495
  #~ msgid "I would really appreciate if you could rate the plugin on WordPres."
6496
  #~ msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
6497
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.6.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-01-15 17:16: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,469 +12,469 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:353
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:369
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:376
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:461
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:468
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:477
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:484
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:495
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:502
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1110
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1115
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
- #: ad-inserter.php:1120 strings.php:103
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
- #: ad-inserter.php:1125 strings.php:104
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1130 strings.php:105
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1135 strings.php:155
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1182
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1186
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1426
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:1761 ad-inserter.php:2853
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2247
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2247
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2248
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2249
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2250
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2251
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2252
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2548
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
- #: ad-inserter.php:2551
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2555
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2560
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2563
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2576
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
- #: ad-inserter.php:2578
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
- #: ad-inserter.php:2584
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
- #: ad-inserter.php:2601 ad-inserter.php:2636
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
- #: ad-inserter.php:2608
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:2618
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:2650
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2650
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:2745
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:2774 ad-inserter.php:9652 class.php:2123
214
  #: includes/preview.php:2002 includes/preview.php:2045
215
- #: includes/preview.php:2082 settings.php:4188 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:2775 settings.php:4189 settings.php:4274
220
  msgid "Name"
221
  msgstr ""
222
 
223
- #: ad-inserter.php:2778 settings.php:1158
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
- #: ad-inserter.php:2781
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
- #: ad-inserter.php:2782
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
- #: ad-inserter.php:2794
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
- #: ad-inserter.php:2797
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
- #: ad-inserter.php:2814 ad-inserter.php:2826 strings.php:161
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:2814 ad-inserter.php:2826
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
- #: includes/functions.php:2458 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
- #: ad-inserter.php:2816
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
- #: ad-inserter.php:2818
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:2846
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
- #: ad-inserter.php:2851
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
- #: ad-inserter.php:2854 settings.php:1136
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
- #: ad-inserter.php:2856
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
- #: ad-inserter.php:2857
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
- #: ad-inserter.php:2859
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
- #: ad-inserter.php:2861
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
- #: ad-inserter.php:2908
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
- #: ad-inserter.php:2911
310
  msgid "POST"
311
  msgstr ""
312
 
313
- #: ad-inserter.php:2914
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
- #: ad-inserter.php:2917
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
- #: ad-inserter.php:2920
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
- #: ad-inserter.php:2923
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
- #: ad-inserter.php:2926
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
- #: ad-inserter.php:2929
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
- #: ad-inserter.php:2932
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
- #: ad-inserter.php:2949
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
- #: ad-inserter.php:2950
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
- #: ad-inserter.php:2979
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
- #: ad-inserter.php:3128
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
- #: ad-inserter.php:3128
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
- #: ad-inserter.php:3185
367
  msgid "Header code"
368
  msgstr ""
369
 
370
- #: ad-inserter.php:3185
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3185 ad-inserter.php:3463
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
- #: ad-inserter.php:3463
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
- #: ad-inserter.php:3463
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
- #: ad-inserter.php:3469
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
- #: ad-inserter.php:3469
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
- #: ad-inserter.php:3469
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
- #: ad-inserter.php:5856
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
- #: ad-inserter.php:6520
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
- #: ad-inserter.php:6521
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
- #: ad-inserter.php:6574
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
- #: ad-inserter.php:6576
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
- #: ad-inserter.php:6670
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
  #: ad-inserter.php:7036 ad-inserter.php:7038 ad-inserter.php:7061
434
- #: settings.php:2154
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
- #: ad-inserter.php:7075 ad-inserter.php:7194
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
- #: ad-inserter.php:7270
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:7387
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:7459
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:9270
457
  msgid "requires WordPress 4.6 or newer"
458
  msgstr ""
459
 
460
- #: ad-inserter.php:9270
461
  msgid "Please update!"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
465
  #. name with HTML tags will be added)
466
- #: ad-inserter.php:9525
467
  msgid "Thank you for installing"
468
  msgstr ""
469
 
470
  #. translators: Opt-in message: %s: HTML tags
471
- #: ad-inserter.php:9527
472
  msgid ""
473
  "We would like to %s track its usage %s on your site. This is completely "
474
  "optional and can be disabled at any time."
475
  msgstr ""
476
 
477
- #: ad-inserter.php:9529
478
  msgid ""
479
  "We don't record any sensitive data, only information regarding the WordPress "
480
  "environment and plugin usage, which will help us to make improvements to the "
@@ -482,7 +482,7 @@ msgid ""
482
  msgstr ""
483
 
484
  #. translators: Deactivation message: %s: HTML tags
485
- #: ad-inserter.php:9566
486
  msgid ""
487
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
488
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -490,57 +490,57 @@ msgid ""
490
  msgstr ""
491
 
492
  #. translators: %s: Ad Inserter
493
- #: ad-inserter.php:9610
494
  msgid "%s block."
495
  msgstr ""
496
 
497
  #. translators: widget title
498
- #: ad-inserter.php:9626 ad-inserter.php:9661
499
  msgid "Processing log"
500
  msgstr ""
501
 
502
  #. translators: widget title
503
- #: ad-inserter.php:9628 ad-inserter.php:9662
504
  msgid "Dummy widget"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
- #: ad-inserter.php:9630 ad-inserter.php:9660
509
  msgid "Debugging tools"
510
  msgstr ""
511
 
512
  #. translators: block status (widget title)
513
- #: ad-inserter.php:9637
514
  msgctxt "block"
515
  msgid "PAUSED"
516
  msgstr ""
517
 
518
- #: ad-inserter.php:9638
519
  msgid "WIDGET DISABLED"
520
  msgstr ""
521
 
522
- #: ad-inserter.php:9639
523
  msgid "Unknown block"
524
  msgstr ""
525
 
526
- #: ad-inserter.php:9647 includes/functions-check-now.php:3261
527
- #: includes/functions.old.php:3186 includes/functions.php:3333
528
- #: settings.php:1188
529
  msgid "Title"
530
  msgstr ""
531
 
532
- #: ad-inserter.php:9669
533
  msgctxt "Widget"
534
  msgid "Sticky"
535
  msgstr ""
536
 
537
- #: ad-inserter.php:9718
538
  msgid ""
539
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
540
  "Inserter you need to first deactivate Ad Inserter Pro."
541
  msgstr ""
542
 
543
- #: ad-inserter.php:9719
544
  msgid ""
545
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
546
  "will clear all settings that are available only in the Pro version "
@@ -552,166 +552,166 @@ msgstr ""
552
  msgid "PHP error in %s block"
553
  msgstr ""
554
 
555
- #: class.php:2073
556
  msgid "Counters"
557
  msgstr ""
558
 
559
- #: class.php:2077
560
  msgid "Content"
561
  msgstr ""
562
 
563
- #: class.php:2082
564
  msgid "Excerpt"
565
  msgstr ""
566
 
567
- #: class.php:2087 strings.php:17
568
  msgid "Before post"
569
  msgstr ""
570
 
571
- #: class.php:2092 strings.php:18
572
  msgid "After post"
573
  msgstr ""
574
 
575
- #: class.php:2097 strings.php:25
576
  msgid "Between posts"
577
  msgstr ""
578
 
579
- #: class.php:2102 settings.php:1897 settings.php:4206
580
  msgid "Widget"
581
  msgstr ""
582
 
583
- #: class.php:2107 settings.php:4204
584
  msgid "PHP function call"
585
  msgstr ""
586
 
587
  #. Translators: %s: custom hook name
588
- #: class.php:2117
589
  msgid "Custom hook %s call"
590
  msgstr ""
591
 
592
- #: class.php:2153
593
  msgid "AJAX REQUEST"
594
  msgstr ""
595
 
596
- #: class.php:2156
597
  msgid "Ajax request for block in iframe"
598
  msgstr ""
599
 
600
- #: class.php:2190
601
  msgid "Ajax request url, click to open it in a new tab"
602
  msgstr ""
603
 
604
- #: class.php:2193
605
  msgid "IN THE LOOP"
606
  msgstr ""
607
 
608
- #: class.php:2193
609
  msgid "YES"
610
  msgstr ""
611
 
612
- #: class.php:2193
613
  msgid "NO"
614
  msgstr ""
615
 
616
- #: class.php:2229
617
  msgid "BLOCK"
618
  msgstr ""
619
 
620
- #: class.php:2229
621
  msgctxt "block or widget"
622
  msgid "INSERTED BUT NOT VISIBLE"
623
  msgstr ""
624
 
625
- #: class.php:2397
626
  msgctxt "viewports"
627
  msgid "ALL"
628
  msgstr ""
629
 
630
- #: class.php:2430 class.php:2472 class.php:3727 strings.php:267
631
  msgctxt "Block"
632
  msgid "HIDDEN"
633
  msgstr ""
634
 
635
- #: class.php:2479 class.php:3730 strings.php:266
636
  msgctxt "Block"
637
  msgid "VISIBLE"
638
  msgstr ""
639
 
640
- #: class.php:2984 class.php:3054
641
  msgid "ACTIVE GROUPS"
642
  msgstr ""
643
 
644
- #: class.php:3426
645
  msgid "start='%s' end='%s' days='%s' type='%s'"
646
  msgstr ""
647
 
648
  #. translators: %s: list parameters and type
649
- #: class.php:3434
650
  msgid "parameters='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
- #: class.php:3436
655
  msgid "referers='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
- #: class.php:3438
660
  msgid "clients='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
- #: class.php:3610
665
  msgid "countries='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
- #: class.php:3612
670
  msgid "ip addresses='%s' type='%s'"
671
  msgstr ""
672
 
673
- #: class.php:3727 class.php:3730
674
  msgid "viewport='%s' type='%s'"
675
  msgstr ""
676
 
677
- #: class.php:4113 strings.php:249
678
  msgid "BEFORE"
679
  msgstr ""
680
 
681
- #: class.php:4121 strings.php:251
682
  msgid "PREPEND CONTENT"
683
  msgstr ""
684
 
685
- #: class.php:4125 strings.php:252
686
  msgid "APPEND CONTENT"
687
  msgstr ""
688
 
689
- #: class.php:4129 strings.php:253
690
  msgid "REPLACE CONTENT"
691
  msgstr ""
692
 
693
- #: class.php:4133 strings.php:254
694
  msgid "REPLACE ELEMENT"
695
  msgstr ""
696
 
697
- #: class.php:4144 strings.php:250
698
  msgid "AFTER"
699
  msgstr ""
700
 
701
- #: class.php:4229 includes/preview.php:2045 includes/preview.php:2082
702
  msgid "Code"
703
  msgstr ""
704
 
705
- #: class.php:4232
706
  msgid "for block"
707
  msgstr ""
708
 
709
- #: class.php:7451 class.php:7503
710
  msgctxt "category name"
711
  msgid "Uncategorized"
712
  msgstr ""
713
 
714
- #: class.php:8041
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
@@ -727,7 +727,7 @@ msgid "Reset"
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
- #: includes/preview.php:1991 settings.php:3598 strings.php:210 strings.php:255
731
  msgid "Cancel"
732
  msgstr ""
733
 
@@ -752,345 +752,345 @@ msgid "PAGE BLOCKED"
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
- #: includes/functions.php:299
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
- #: includes/functions.php:318
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
- #: includes/functions.php:395
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
- #: includes/functions.php:395
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
- #: includes/functions.php:399
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
- #: includes/functions.php:419
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
- #: includes/functions.php:422
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
- #: includes/functions.php:424
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
- #: includes/functions.php:431
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
- #: includes/functions.php:431
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
- #: includes/functions.php:446
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
- #: includes/functions.php:449
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
- #: includes/functions.php:450 settings.php:1339 settings.php:2811
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
- #: includes/functions.php:455
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
- #: includes/functions.php:458
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
- #: includes/functions.php:469
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
- #: includes/functions.php:484
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
- #: includes/functions.php:484
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
- #: includes/functions.php:491
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
- #: includes/functions.php:496
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
- #: includes/functions.php:510
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
- #: includes/functions.php:518 includes/functions.php:3107
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
- #: includes/functions-check-now.php:528 includes/functions.php:527
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
- #: includes/functions.php:542
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
- #: includes/functions.php:546
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
- #: includes/functions.php:550
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
- #: includes/functions.php:558 settings.php:1093 settings.php:2255
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
- #: includes/functions.php:618 includes/preview.php:2131
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
- #: includes/functions.php:641
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
- #: includes/functions.php:649 includes/preview.php:2186
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
- #: includes/functions.php:664
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
- #: includes/functions.php:689 includes/preview.php:2237
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
- #: includes/functions.php:707
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
- #: includes/functions.php:716
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
- #: includes/functions.php:720
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
- #: includes/functions.php:720
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
- #: includes/functions.php:724
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
- #: includes/functions.php:724
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
- #: includes/functions.php:728
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
- #: includes/functions.php:730
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
- #: includes/functions.php:772 includes/functions.php:2597
973
- #: includes/functions.php:2613
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
- #: includes/functions.php:776 includes/functions.php:2601
981
- #: includes/functions.php:2617
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
- #: includes/functions.php:783
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
- #: includes/functions.php:789 settings.php:3533 settings.php:3569
992
- #: settings.php:3611 strings.php:220
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
- #: includes/functions.php:810
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
- #: includes/functions.php:814
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
- #: includes/functions.php:817 includes/functions.php:5542
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
- #: includes/functions.php:817 includes/functions.php:5542
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
- #: includes/functions.php:820 includes/functions.php:5545
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
- #: includes/functions.php:820 includes/functions.php:5545
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
- #: includes/functions.php:823 includes/functions.php:5548
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
- #: includes/functions.php:823 includes/functions.php:5548
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
- #: includes/functions.php:826 includes/functions.php:5551
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
- #: includes/functions.php:829 includes/functions.php:5554
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
- #: includes/functions.php:832 includes/functions.php:5557
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
- #: includes/functions.php:835 includes/functions.php:5560
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
- #: includes/functions.php:838 includes/functions.php:5563
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
- #: includes/functions.php:848 includes/functions.php:5573
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
- #: includes/functions.php:864
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
- #: includes/functions.php:864
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
- #: includes/functions.php:868
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
@@ -1098,170 +1098,170 @@ msgid ""
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
- #: includes/functions.php:868
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
- #: includes/functions.php:872
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
- #: includes/functions.php:885
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
- #: includes/functions.php:895
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
- #: includes/functions.php:897
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
- #: includes/functions.php:927
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
- #: includes/functions.php:933
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
- #: includes/functions.php:936
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
- #: includes/functions.php:939
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
- #: includes/functions.php:948
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
- #: includes/functions.php:952
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
- #: includes/functions.php:963
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
- #: includes/functions.php:964
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
- #: includes/functions.php:968 includes/functions.php:3072
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
- #: includes/functions.php:971
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
- #: includes/functions.php:975 includes/functions.php:3075
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
- #: includes/functions.php:984
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
- #: includes/functions.php:988
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
- #: includes/functions.php:1423 includes/functions.php:1730
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
- #: includes/functions.php:1429
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
- #: includes/functions-check-now.php:1402 includes/functions.php:1443
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
- #: includes/functions-check-now.php:1404 includes/functions.php:1445
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
- #: includes/functions-check-now.php:1406 includes/functions.php:1447
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
- #: includes/functions.php:1452 includes/functions.php:1739
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
- #: includes/functions.php:1458
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
- #: includes/functions.php:1467
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
- #: includes/functions.php:1468
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
- #: includes/functions.php:1476
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
- #: includes/functions.php:1477
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
- #: includes/functions.php:1477
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
- #: includes/functions.php:1732
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
@@ -1269,13 +1269,13 @@ msgstr ""
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
- #: includes/functions.php:1741
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
- #: includes/functions.php:1757
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1283,35 +1283,35 @@ msgstr ""
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
- #: includes/functions.php:1764
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
- #: includes/functions.php:1774
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
- #: includes/functions.php:1777
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
- #: includes/functions.php:1791
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
- #: includes/functions.php:1793
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
- #: includes/functions.php:1804
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1319,121 +1319,121 @@ msgstr ""
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
- #: includes/functions.php:1836
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
- #: includes/functions.php:2390
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
- #: includes/functions.php:2394 settings.php:4193
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
- #: includes/functions.php:2399
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
- #: includes/functions.php:2404 settings.php:4199
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
- #: includes/functions.php:2435
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
- #: includes/functions.php:2444
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
- #: includes/functions.php:2448
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
- #: includes/functions.php:2474 settings.php:1421 settings.php:1436
1366
- #: settings.php:1526 settings.php:2152
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
- #: includes/functions.php:2456
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
- #: includes/functions.php:2457
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
- #: includes/functions.php:2494
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
- #: includes/functions.php:2498 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
- #: includes/functions.php:2499
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
- #: includes/functions.php:2505 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
- #: includes/functions.php:2506
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
- #: includes/functions.php:2513
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
- #: includes/functions.php:2518
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
- #: includes/functions.php:2518 includes/preview.php:2000 settings.php:1088
1417
- #: settings.php:2873
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
- #: includes/functions.php:2532 settings.php:4200
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
- #: includes/functions.php:2537 includes/functions.php:4519
1430
- #: includes/functions.php:4582 settings.php:2302
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
- #: includes/functions.php:2546
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
@@ -1442,25 +1442,25 @@ msgstr ""
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
- #: includes/functions.php:2555
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
- #: includes/functions.php:2621
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
- #: includes/functions.php:2625
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
- #: includes/functions.php:2639
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
@@ -1468,8 +1468,8 @@ msgstr ""
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
- #: includes/functions.php:2645 includes/functions.php:2657
1472
- #: includes/functions.php:2742
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
@@ -1489,15 +1489,15 @@ msgstr ""
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
- #: includes/functions.php:2664 includes/functions.php:2674
1493
- #: includes/functions.php:2693 includes/functions.php:2703
1494
- #: includes/functions.php:2749 includes/functions.php:2758
1495
- #: includes/functions.php:2776 includes/functions.php:2785 settings.php:2073
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
- #: includes/functions.php:2665
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
@@ -1511,15 +1511,15 @@ msgstr ""
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
- #: includes/functions.php:2667 includes/functions.php:2677
1515
- #: includes/functions.php:2752 includes/functions.php:2761
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
- #: includes/functions.php:2675
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
@@ -1532,14 +1532,14 @@ msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
- #: includes/functions.php:2681 includes/functions.php:2710
1536
- #: includes/functions.php:2765 includes/functions.php:2792
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
- #: includes/functions.php:2682 includes/functions.php:2711
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
@@ -1554,9 +1554,9 @@ msgstr ""
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
- #: includes/functions.php:2684 includes/functions.php:2713
1558
- #: includes/functions.php:2768 includes/functions.php:2795
1559
- #: includes/functions.php:2901 includes/functions.php:3233 strings.php:201
1560
  #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1561
  #: strings.php:206
1562
  msgid "day"
@@ -1565,7 +1565,7 @@ msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
- #: includes/functions.php:2694
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
@@ -1579,27 +1579,27 @@ msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
- #: includes/functions.php:2696 includes/functions.php:2706
1583
- #: includes/functions.php:2779 includes/functions.php:2788
1584
- #: includes/functions.php:4730
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
- #: includes/functions.php:2704
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
- #: includes/functions.php:2729
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
- #: includes/functions.php:2733 includes/functions.php:2735
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
@@ -1608,19 +1608,19 @@ msgid ""
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
- #: includes/functions.php:2735
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
- #: includes/functions.php:2750
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
- #: includes/functions.php:2759
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
@@ -1628,60 +1628,60 @@ msgstr ""
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
- #: includes/functions.php:2766 includes/functions.php:2793
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
- #: includes/functions.php:2777
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
- #: includes/functions.php:2786
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
- #: includes/functions.php:2812
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
- #: includes/functions.php:2821
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
- #: includes/functions.php:2822
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
- #: includes/functions.php:2823
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
- #: includes/functions.php:2840 includes/functions.php:5786
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
- #: includes/functions.php:2892
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
- #: includes/functions.php:2893
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
@@ -1689,12 +1689,12 @@ msgstr ""
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
- #: includes/functions.php:2898
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
- #: includes/functions.php:2899
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1703,12 +1703,12 @@ msgstr ""
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
- #: includes/functions.php:2919
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
- #: includes/functions.php:2920
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
@@ -1718,7 +1718,7 @@ msgstr ""
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
- #: includes/functions.php:2922 includes/functions.php:2929
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
@@ -1726,59 +1726,59 @@ msgstr[1] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
- #: includes/functions.php:2926
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
- #: includes/functions.php:2927
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
- #: includes/functions.php:2946
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
- #: includes/functions.php:3007
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
- #: includes/functions.php:3018
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
- #: includes/functions.php:3021
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
- #: includes/functions.php:3032
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
- #: includes/functions.php:3035
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
- #: includes/functions.php:3043
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
- #: includes/functions.php:3046
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
@@ -1786,121 +1786,121 @@ msgstr ""
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
- #: includes/functions.php:3064
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
- #: includes/functions.php:3070
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
- #: includes/functions.php:3115
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
- #: includes/functions.php:3122
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
- #: includes/functions.php:3130
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
- #: includes/functions.php:3131 settings.php:2761
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
- #: includes/functions.php:3147
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
- #: includes/functions.php:3151
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
- #: includes/functions.php:3156
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
- #: includes/functions.php:3160
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
- #: includes/functions.php:3165
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
- #: includes/functions.php:3171
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
- #: includes/functions.php:3181
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
- #: includes/functions.php:3187
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
- #: includes/functions.php:3197
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
- #: includes/functions.php:3203
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
- #: includes/functions.php:3222
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
- #: includes/functions.php:3226
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
- #: includes/functions.php:3232
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
- #: includes/functions.php:3233
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
- #: includes/functions.php:3252
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
- #: includes/functions.php:3255
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1908,177 +1908,177 @@ msgid ""
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
- #: includes/functions.php:3256 strings.php:232
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
- #: includes/functions.php:3261
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
- #: includes/functions.php:3264
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
- #: includes/functions.php:3269
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
- #: includes/functions.php:3272
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
- #: includes/functions.php:3277
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
- #: includes/functions.php:3280
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
- #: includes/functions.php:3285
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
- #: includes/functions.php:3288
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
- #: includes/functions.php:3320
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
- #: includes/functions.php:3321 settings.php:1191
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
- #: includes/functions.php:3328
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
- #: includes/functions.php:3328
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
- #: includes/functions.php:3333 settings.php:3842 settings.php:4276
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
- #: includes/functions.php:3351
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
- #: includes/functions.php:3352 includes/functions.php:3359
1995
- #: includes/functions.php:3363 includes/placeholders.php:353
1996
- #: includes/preview.php:2306 settings.php:1325 settings.php:3602
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
- #: includes/functions.php:3382
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
- #: includes/functions.php:3383
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
- #: includes/functions.php:3396
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
- #: includes/functions.php:3407
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
- #: includes/functions.php:3412
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
- #: includes/functions.php:3412
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
- #: includes/functions.php:3417
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
- #: includes/functions.php:3417
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
- #: includes/functions.php:3422
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
- #: includes/functions.php:3422
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
- #: includes/functions.php:3427
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
- #: includes/functions.php:3427
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
- #: includes/functions.php:3432
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
- #: includes/functions.php:3432
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
- #: includes/functions.php:3448 settings.php:2760
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
- #: includes/functions.php:3454
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
@@ -2089,8 +2089,8 @@ msgstr ""
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
- #: includes/functions.php:4151 includes/functions.php:4272
2093
- #: includes/functions.php:4292
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
@@ -2098,119 +2098,119 @@ msgstr ""
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
- #: includes/functions.php:4152 includes/functions.php:4198
2102
- #: includes/functions.php:4266 includes/functions.php:4293
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
- #: includes/functions.php:4155 includes/functions.php:4265
2110
- #: includes/functions.php:4299
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
- #: includes/functions.php:4197 includes/functions.php:4204
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
- #: includes/functions.php:4372 includes/functions.php:4581
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
- #: includes/functions.php:4518
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
- #: includes/functions.php:4518
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
- #: includes/functions.php:4518
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
- #: includes/functions.php:4519
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
- #: includes/functions.php:4581
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
- #: includes/functions.php:4582 includes/functions.php:4583
2158
- #: includes/functions.php:4638
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
- #: includes/functions.php:4583
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
- #: includes/functions.php:4584
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
- #: includes/functions.php:4584 includes/functions.php:4644
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
- #: includes/functions.php:4726
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
- #: includes/functions.php:4726
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
- #: includes/functions.php:4730
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
- #: includes/functions.php:4825
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
- #: includes/functions.php:4846
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
- #: includes/functions.php:4870
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
@@ -2219,118 +2219,172 @@ msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
- #: includes/functions.php:5052 includes/functions.php:5144
2223
- #: includes/functions.php:5487 strings.php:186
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
- #: includes/functions.php:5393
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
- #: includes/functions.php:5398
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
- #: includes/functions.php:5403
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
- #: includes/functions.php:5408
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
- #: includes/functions.php:5413
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
- #: includes/functions.php:5418
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
- #: includes/functions.php:5423
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
- #: includes/functions.php:5428
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
- #: includes/functions.php:554
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
- #: includes/functions.php:944 includes/functions.php:980 settings.php:1652
2273
- #: settings.php:1683 settings.php:1714 settings.php:1745 settings.php:1776
2274
- #: settings.php:1807 settings.php:1837 settings.php:1867
2275
  msgid "Click to select black or white list"
2276
  msgstr ""
2277
 
2278
  #. translators: %s: Ad Inserter Pro
2279
- #: includes/functions.php:1485
2280
  msgid "Invalid %s version."
2281
  msgstr ""
2282
 
2283
- #: includes/functions.php:1486
2284
  msgid "Check license"
2285
  msgstr ""
2286
 
2287
- #: includes/functions.php:1498
2288
  msgid "License"
2289
  msgstr ""
2290
 
2291
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2292
- #: includes/functions.php:1816
2293
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2294
  msgstr ""
2295
 
2296
- #: includes/functions.php:2472
 
 
 
 
 
 
 
2297
  msgid "Start date"
2298
  msgstr ""
2299
 
2300
- #: includes/functions.php:2472
2301
  msgid "Enter date in format yyyy-mm-dd"
2302
  msgstr ""
2303
 
2304
- #: includes/functions.php:2473
2305
  msgid "Start time"
2306
  msgstr ""
2307
 
2308
- #: includes/functions.php:2473
2309
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2310
  msgstr ""
2311
 
2312
- #: includes/functions.php:2475
2313
  msgid "End date"
2314
  msgstr ""
2315
 
2316
- #: includes/functions.php:2476
2317
  msgid "End time"
2318
  msgstr ""
2319
 
2320
- #: includes/functions.php:2479
2321
  msgid "Select wanted days in week"
2322
  msgstr ""
2323
 
2324
- #. translators: %s: Ad Inserter Pro
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2325
  #: includes/functions.php:3437
 
 
 
 
 
 
 
2326
  msgid "Show link to %s settings page for each site on the Sites page"
2327
  msgstr ""
2328
 
2329
  #. translators: %s: Ad Inserter Pro
2330
- #: includes/functions.php:3437
2331
  msgid "Show link to %s on the Sites page"
2332
  msgstr ""
2333
 
 
 
 
 
2334
  #: includes/placeholders.php:20
2335
  msgid "Custom"
2336
  msgstr ""
@@ -2355,7 +2409,7 @@ msgstr ""
2355
  msgid "Placeholder"
2356
  msgstr ""
2357
 
2358
- #: includes/placeholders.php:363 settings.php:934 settings.php:4277
2359
  msgid "Size"
2360
  msgstr ""
2361
 
@@ -2463,11 +2517,11 @@ msgstr ""
2463
  msgid "Ad Blocking Detected Message Preview"
2464
  msgstr ""
2465
 
2466
- #: includes/preview-adb.php:348 settings.php:2886
2467
  msgid "Message CSS"
2468
  msgstr ""
2469
 
2470
- #: includes/preview-adb.php:353 settings.php:2894
2471
  msgid "Overlay CSS"
2472
  msgstr ""
2473
 
@@ -2503,7 +2557,7 @@ msgstr ""
2503
  msgid "background"
2504
  msgstr ""
2505
 
2506
- #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1286
2507
  msgid "Alignment"
2508
  msgstr ""
2509
 
@@ -2601,7 +2655,7 @@ msgid ""
2601
  "the values to those of the current block."
2602
  msgstr ""
2603
 
2604
- #: settings.php:188 settings.php:1175
2605
  msgid ""
2606
  "Settings for individual exceptions have been updated. Please check all "
2607
  "blocks that have exceptions and and then save settings."
@@ -2611,7 +2665,7 @@ msgstr ""
2611
  msgid "Online documentation"
2612
  msgstr ""
2613
 
2614
- #: settings.php:234 settings.php:769 settings.php:2269
2615
  msgid "Show AdSense ad units"
2616
  msgstr ""
2617
 
@@ -2619,7 +2673,7 @@ msgstr ""
2619
  msgid "Edit ads.txt file"
2620
  msgstr ""
2621
 
2622
- #: settings.php:246 settings.php:1118
2623
  msgid "Check theme for available positions for automatic insertion"
2624
  msgstr ""
2625
 
@@ -2744,311 +2798,311 @@ msgstr ""
2744
  msgid "General Settings"
2745
  msgstr ""
2746
 
2747
- #: settings.php:717 settings.php:2613 settings.php:2680 settings.php:2866
2748
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2749
  msgstr ""
2750
 
2751
- #: settings.php:724
2752
  msgid "Toggle tools"
2753
  msgstr ""
2754
 
2755
- #: settings.php:732
2756
  msgid "Process PHP code in block"
2757
  msgstr ""
2758
 
2759
- #: settings.php:739
2760
  msgid "Disable insertion of this block"
2761
  msgstr ""
2762
 
2763
- #: settings.php:751
2764
  msgid "Toggle code generator"
2765
  msgstr ""
2766
 
2767
- #: settings.php:755
2768
  msgid "Toggle rotation editor"
2769
  msgstr ""
2770
 
2771
- #: settings.php:759
2772
  msgid "Open visual HTML editor"
2773
  msgstr ""
2774
 
2775
- #: settings.php:778
2776
  msgid "Clear block"
2777
  msgstr ""
2778
 
2779
- #: settings.php:783 settings.php:4149
2780
  msgid "Copy block"
2781
  msgstr ""
2782
 
2783
- #: settings.php:787
2784
  msgid "Paste name"
2785
  msgstr ""
2786
 
2787
- #: settings.php:791
2788
  msgid "Paste code"
2789
  msgstr ""
2790
 
2791
- #: settings.php:795
2792
  msgid "Paste settings"
2793
  msgstr ""
2794
 
2795
- #: settings.php:799
2796
  msgid "Paste block (name, code and settings)"
2797
  msgstr ""
2798
 
2799
- #: settings.php:818
2800
  msgid "Rotation groups"
2801
  msgstr ""
2802
 
2803
- #: settings.php:822
2804
  msgid "Remove option"
2805
  msgstr ""
2806
 
2807
- #: settings.php:826
2808
  msgid "Add option"
2809
  msgstr ""
2810
 
2811
- #: settings.php:841
2812
  msgid "Import code"
2813
  msgstr ""
2814
 
2815
- #: settings.php:845
2816
  msgid "Generate code"
2817
  msgstr ""
2818
 
2819
- #: settings.php:850
2820
  msgid "Banner"
2821
  msgstr ""
2822
 
2823
- #: settings.php:861
2824
  msgid "Image"
2825
  msgstr ""
2826
 
2827
- #: settings.php:869
2828
  msgid "Link"
2829
  msgstr ""
2830
 
2831
- #: settings.php:880
2832
  msgid "Open link in a new tab"
2833
  msgstr ""
2834
 
2835
- #: settings.php:881
2836
  msgid "Select Image"
2837
  msgstr ""
2838
 
2839
- #: settings.php:882
2840
  msgid "Select Placeholder"
2841
  msgstr ""
2842
 
2843
- #: settings.php:894
2844
  msgid "Comment"
2845
  msgstr ""
2846
 
2847
- #: settings.php:903
2848
  msgctxt "AdSense"
2849
  msgid "Publisher ID"
2850
  msgstr ""
2851
 
2852
- #: settings.php:912
2853
  msgctxt "AdSense"
2854
  msgid "Ad Slot ID"
2855
  msgstr ""
2856
 
2857
- #: settings.php:921
2858
  msgid "Ad Type"
2859
  msgstr ""
2860
 
2861
- #: settings.php:946
2862
  msgid "AMP Ad"
2863
  msgstr ""
2864
 
2865
- #: settings.php:964
2866
  msgid "Show ad units from your AdSense account"
2867
  msgstr ""
2868
 
2869
- #: settings.php:964
2870
  msgid "AdSense ad units"
2871
  msgstr ""
2872
 
2873
- #: settings.php:981
2874
  msgctxt "AdSense"
2875
  msgid "Layout"
2876
  msgstr ""
2877
 
2878
- #: settings.php:990
2879
  msgctxt "AdSense"
2880
  msgid "Layout Key"
2881
  msgstr ""
2882
 
2883
- #: settings.php:1000
2884
  msgid "Full width"
2885
  msgstr ""
2886
 
2887
- #: settings.php:1002
2888
  msgctxt "Full width"
2889
  msgid "Enabled"
2890
  msgstr ""
2891
 
2892
- #: settings.php:1003
2893
  msgctxt "Full width"
2894
  msgid "Disabled"
2895
  msgstr ""
2896
 
2897
- #: settings.php:1084
2898
  msgid ""
2899
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2900
  "Cookie or Referer (domain)"
2901
  msgstr ""
2902
 
2903
- #: settings.php:1084
2904
  msgid "Lists"
2905
  msgstr ""
2906
 
2907
- #: settings.php:1085
2908
  msgid "Widget, Shortcode and PHP function call"
2909
  msgstr ""
2910
 
2911
- #: settings.php:1085
2912
  msgid "Manual"
2913
  msgstr ""
2914
 
2915
- #: settings.php:1086
2916
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2917
  msgstr ""
2918
 
2919
- #: settings.php:1086
2920
  msgid "Devices"
2921
  msgstr ""
2922
 
2923
- #: settings.php:1087
2924
  msgid ""
2925
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2926
  "feeds), Filter, Scheduling, General tag"
2927
  msgstr ""
2928
 
2929
- #: settings.php:1087
2930
  msgid "Misc"
2931
  msgstr ""
2932
 
2933
- #: settings.php:1088
2934
  msgid "Preview code and alignment"
2935
  msgstr ""
2936
 
2937
- #: settings.php:1091 settings.php:2253
2938
  msgid ""
2939
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2940
  "editor is active before saving settings."
2941
  msgstr ""
2942
 
2943
- #: settings.php:1104 settings.php:1105
2944
  msgid "Enable insertion on posts"
2945
  msgstr ""
2946
 
2947
- #: settings.php:1105 settings.php:3414
2948
  msgid "Posts"
2949
  msgstr ""
2950
 
2951
- #: settings.php:1109 settings.php:1110
2952
  msgid ""
2953
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2954
  "page or theme homepage (available positions may depend on hooks used by the "
2955
  "theme)"
2956
  msgstr ""
2957
 
2958
- #: settings.php:1110 settings.php:3416
2959
  msgid "Homepage"
2960
  msgstr ""
2961
 
2962
- #: settings.php:1114 settings.php:1115
2963
  msgid "Enable insertion on category blog pages (including sub-pages)"
2964
  msgstr ""
2965
 
2966
- #: settings.php:1115 settings.php:3417
2967
  msgid "Category pages"
2968
  msgstr ""
2969
 
2970
- #: settings.php:1125 settings.php:1126
2971
  msgid "Enable insertion on static pages"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1126 settings.php:3415
2975
  msgid "Static pages"
2976
  msgstr ""
2977
 
2978
- #: settings.php:1130 settings.php:1131
2979
  msgid "Enable insertion on search blog pages"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1131 settings.php:3419
2983
  msgid "Search pages"
2984
  msgstr ""
2985
 
2986
- #: settings.php:1135 settings.php:1136
2987
  msgid "Enable insertion on tag or archive blog pages"
2988
  msgstr ""
2989
 
2990
- #: settings.php:1139
2991
  msgid "Toggle settings for default insertion and list of individual exceptions"
2992
  msgstr ""
2993
 
2994
- #: settings.php:1151
2995
  msgid ""
2996
  "Enable individual post/page exceptions for insertion of this block. They can "
2997
  "be configured on the individual post/page editor page (in the settings below "
2998
  "the editor)."
2999
  msgstr ""
3000
 
3001
- #: settings.php:1152
3002
  msgid ""
3003
  "Enable individual post/page exceptions for insertion of this block. When "
3004
  "enabled they can be configured on the individual post/page editor page (in "
3005
  "the settings below the editor)."
3006
  msgstr ""
3007
 
3008
- #: settings.php:1152
3009
  msgid "Use exceptions for individual posts or pages to change insertion"
3010
  msgstr ""
3011
 
3012
  #. Translators: Enabled means...
3013
- #: settings.php:1160
3014
  msgid ""
3015
  "means the insertion for this block is enabled by default and disabled for "
3016
  "exceptions."
3017
  msgstr ""
3018
 
3019
  #. Translators: Disabled means...
3020
- #: settings.php:1161
3021
  msgid ""
3022
  "means the insertion for this block is disabled by default and enabled for "
3023
  "exceptions."
3024
  msgstr ""
3025
 
3026
- #: settings.php:1162
3027
  msgid ""
3028
  "When individual post/page exceptions are enabled they can be configured on "
3029
  "the individual post/page editor page (in the settings below the editor)."
3030
  msgstr ""
3031
 
3032
- #: settings.php:1170
3033
  msgid ""
3034
  "No exception for post or static page defined. Block will not be inserted."
3035
  msgstr ""
3036
 
3037
- #: settings.php:1188
3038
  msgctxt "post"
3039
  msgid "Type"
3040
  msgstr ""
3041
 
3042
  #. translators: %d: block number
3043
- #: settings.php:1190
3044
  msgid "Are you sure you want to clear all exceptions for block %d?"
3045
  msgstr ""
3046
 
3047
- #: settings.php:1217 settings.php:1365 settings.php:2027
3048
  msgid "Insertion"
3049
  msgstr ""
3050
 
3051
- #: settings.php:1255
3052
  msgid ""
3053
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3054
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3058,7 +3112,7 @@ msgid ""
3058
  "negative number means counting from the opposite direction"
3059
  msgstr ""
3060
 
3061
- #: settings.php:1256
3062
  msgid ""
3063
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3064
  "means every N images, empty means all images, 0 means random image, value "
@@ -3068,285 +3122,285 @@ msgid ""
3068
  "direction"
3069
  msgstr ""
3070
 
3071
- #: settings.php:1269
3072
  msgid ""
3073
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3074
  "numbers, %N means every N excerpts, empty means all excerpts"
3075
  msgstr ""
3076
 
3077
- #: settings.php:1270
3078
  msgid ""
3079
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3080
  "numbers, %N means every N posts, empty means all posts"
3081
  msgstr ""
3082
 
3083
- #: settings.php:1271
3084
  msgid ""
3085
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3086
  "numbers, %N means every N comments, empty means all comments"
3087
  msgstr ""
3088
 
3089
- #: settings.php:1278
3090
  msgid "Toggle paragraph counting settings"
3091
  msgstr ""
3092
 
3093
- #: settings.php:1279
3094
  msgid "Toggle paragraph clearance settings"
3095
  msgstr ""
3096
 
3097
- #: settings.php:1282
3098
  msgid "Toggle insertion filter settings"
3099
  msgstr ""
3100
 
3101
- #: settings.php:1300
3102
  msgid "Toggle insertion and alignment icons"
3103
  msgstr ""
3104
 
3105
- #: settings.php:1314
3106
  msgid "Custom CSS code for the wrapping div"
3107
  msgstr ""
3108
 
3109
- #: settings.php:1317 settings.php:1318 settings.php:1319 settings.php:1320
3110
- #: settings.php:1321 settings.php:1322
3111
  msgid "CSS code for the wrapping div, click to edit"
3112
  msgstr ""
3113
 
3114
- #: settings.php:1335
3115
  msgid "HTML element"
3116
  msgstr ""
3117
 
3118
- #: settings.php:1348
3119
  msgid "HTML element selector or comma separated list of selectors"
3120
  msgstr ""
3121
 
3122
- #: settings.php:1354 settings.php:2771
3123
  msgid "Action"
3124
  msgstr ""
3125
 
3126
- #: settings.php:1366
3127
  msgid ""
3128
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3129
  "Server-side insertion inserts block when the page is generated but needs "
3130
  "Output buffering enabled."
3131
  msgstr ""
3132
 
3133
- #: settings.php:1375
3134
  msgid "Code position"
3135
  msgstr ""
3136
 
3137
- #: settings.php:1376
3138
  msgid ""
3139
  "Page position where the code for client-side insertion will be inserted."
3140
  msgstr ""
3141
 
3142
- #: settings.php:1391
3143
  msgid "Count"
3144
  msgstr ""
3145
 
3146
- #: settings.php:1397
3147
  msgid "paragraphs with tags"
3148
  msgstr ""
3149
 
3150
- #: settings.php:1403
3151
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3152
  msgstr ""
3153
 
3154
- #: settings.php:1412
3155
  msgid "that have between"
3156
  msgstr ""
3157
 
3158
- #: settings.php:1418
3159
  msgid "Minimum number of paragraph words, leave empty for no limit"
3160
  msgstr ""
3161
 
3162
- #: settings.php:1427
3163
  msgid "Maximum number of paragraph words, leave empty for no limit"
3164
  msgstr ""
3165
 
3166
- #: settings.php:1430
3167
  msgid "words"
3168
  msgstr ""
3169
 
3170
- #: settings.php:1445 settings.php:1504 settings.php:1574 settings.php:1600
3171
  msgid "Comma separated texts"
3172
  msgstr ""
3173
 
3174
- #: settings.php:1458
3175
  msgid ""
3176
  "Count also paragraphs inside these elements - defined on general plugin "
3177
  "settings page - tab [*] / tab General"
3178
  msgstr ""
3179
 
3180
  #. Translators: %s: HTML tags
3181
- #: settings.php:1464
3182
  msgid "Count inside %s elements"
3183
  msgstr ""
3184
 
3185
  #. translators: inside [HTML tags] elements that contain
3186
- #: settings.php:1476
3187
  msgid "inside"
3188
  msgstr ""
3189
 
3190
- #: settings.php:1482
3191
  msgid "Comma separated HTML tag names of container elements"
3192
  msgstr ""
3193
 
3194
  #. translators: inside [HTML tags] elements that contain
3195
- #: settings.php:1491
3196
  msgid "elements that"
3197
  msgstr ""
3198
 
3199
- #: settings.php:1517 settings.php:2150
3200
  msgid "Post/Static page must have between"
3201
  msgstr ""
3202
 
3203
- #: settings.php:1523
3204
  msgid "Minimum number of paragraphs, leave empty for no limit"
3205
  msgstr ""
3206
 
3207
- #: settings.php:1532
3208
  msgid "Maximum number of paragraphs, leave empty for no limit"
3209
  msgstr ""
3210
 
3211
  #. Translators: Post/Static page must have between X and Y paragraphs
3212
- #: settings.php:1535
3213
  msgid "paragraph"
3214
  msgid_plural "paragraphs"
3215
  msgstr[0] ""
3216
  msgstr[1] ""
3217
 
3218
- #: settings.php:1543
3219
  msgid "Minimum number of words in paragraphs above"
3220
  msgstr ""
3221
 
3222
- #: settings.php:1549
3223
  msgid ""
3224
  "Used only with automatic insertion After paragraph and empty paragraph "
3225
  "numbers"
3226
  msgstr ""
3227
 
3228
- #: settings.php:1559 settings.php:1585
3229
  msgid "In"
3230
  msgstr ""
3231
 
3232
- #: settings.php:1565
3233
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3234
  msgstr ""
3235
 
3236
- #: settings.php:1568
3237
  msgid "paragraphs above avoid"
3238
  msgstr ""
3239
 
3240
- #: settings.php:1591
3241
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3242
  msgstr ""
3243
 
3244
- #: settings.php:1594
3245
  msgid "paragraphs below avoid"
3246
  msgstr ""
3247
 
3248
- #: settings.php:1610
3249
  msgid "If text is found"
3250
  msgstr ""
3251
 
3252
- #: settings.php:1617
3253
  msgid "check up to"
3254
  msgstr ""
3255
 
3256
- #: settings.php:1625
3257
  msgctxt "check up to"
3258
  msgid "paragraphs"
3259
  msgstr ""
3260
 
3261
- #: settings.php:1641
3262
  msgid "Categories"
3263
  msgstr ""
3264
 
3265
- #: settings.php:1644
3266
  msgid "Toggle category editor"
3267
  msgstr ""
3268
 
3269
- #: settings.php:1647
3270
  msgid "Comma separated category slugs"
3271
  msgstr ""
3272
 
3273
- #: settings.php:1656
3274
  msgid "Blacklist categories"
3275
  msgstr ""
3276
 
3277
- #: settings.php:1660
3278
  msgid "Whitelist categories"
3279
  msgstr ""
3280
 
3281
- #: settings.php:1672
3282
  msgid "Tags"
3283
  msgstr ""
3284
 
3285
- #: settings.php:1675
3286
  msgid "Toggle tag editor"
3287
  msgstr ""
3288
 
3289
- #: settings.php:1678
3290
  msgid "Comma separated tag slugs"
3291
  msgstr ""
3292
 
3293
- #: settings.php:1687
3294
  msgid "Blacklist tags"
3295
  msgstr ""
3296
 
3297
- #: settings.php:1691
3298
  msgid "Whitelist tags"
3299
  msgstr ""
3300
 
3301
- #: settings.php:1703
3302
  msgid "Taxonomies"
3303
  msgstr ""
3304
 
3305
- #: settings.php:1706
3306
  msgid "Toggle taxonomy editor"
3307
  msgstr ""
3308
 
3309
- #: settings.php:1709
3310
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3311
  msgstr ""
3312
 
3313
- #: settings.php:1718
3314
  msgid "Blacklist taxonomies"
3315
  msgstr ""
3316
 
3317
- #: settings.php:1722
3318
  msgid "Whitelist taxonomies"
3319
  msgstr ""
3320
 
3321
- #: settings.php:1734
3322
  msgid "Post IDs"
3323
  msgstr ""
3324
 
3325
- #: settings.php:1737
3326
  msgid "Toggle post/page ID editor"
3327
  msgstr ""
3328
 
3329
- #: settings.php:1740
3330
  msgid "Comma separated post/page IDs"
3331
  msgstr ""
3332
 
3333
- #: settings.php:1749
3334
  msgid "Blacklist IDs"
3335
  msgstr ""
3336
 
3337
- #: settings.php:1753
3338
  msgid "Whitelist IDs"
3339
  msgstr ""
3340
 
3341
- #: settings.php:1765
3342
  msgid "Urls"
3343
  msgstr ""
3344
 
3345
- #: settings.php:1768
3346
  msgid "Toggle url editor"
3347
  msgstr ""
3348
 
3349
- #: settings.php:1771
3350
  msgid ""
3351
  "Comma separated urls (page addresses) starting with / after domain name (e."
3352
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3354,236 +3408,236 @@ msgid ""
3354
  "start*. *url-pattern*, *url-end)"
3355
  msgstr ""
3356
 
3357
- #: settings.php:1780
3358
  msgid "Blacklist urls"
3359
  msgstr ""
3360
 
3361
- #: settings.php:1784
3362
  msgid "Whitelist urls"
3363
  msgstr ""
3364
 
3365
- #: settings.php:1795
3366
  msgid "Url parameters"
3367
  msgstr ""
3368
 
3369
- #: settings.php:1799
3370
  msgid "Toggle url parameter and cookie editor"
3371
  msgstr ""
3372
 
3373
- #: settings.php:1802
3374
  msgid ""
3375
  "Comma separated url query parameters or cookies with optional values (use "
3376
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3377
  msgstr ""
3378
 
3379
- #: settings.php:1811
3380
  msgid "Blacklist url parameters"
3381
  msgstr ""
3382
 
3383
- #: settings.php:1815
3384
  msgid "Whitelist url parameters"
3385
  msgstr ""
3386
 
3387
- #: settings.php:1826
3388
  msgid "Referrers"
3389
  msgstr ""
3390
 
3391
- #: settings.php:1829
3392
  msgid "Toggle referer editor"
3393
  msgstr ""
3394
 
3395
- #: settings.php:1832
3396
  msgid ""
3397
  "Comma separated domains, use # for no referrer, you can also use partial "
3398
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3399
  msgstr ""
3400
 
3401
- #: settings.php:1841
3402
  msgid "Blacklist referers"
3403
  msgstr ""
3404
 
3405
- #: settings.php:1845
3406
  msgid "Whitelist referers"
3407
  msgstr ""
3408
 
3409
- #: settings.php:1856
3410
  msgid "Clients"
3411
  msgstr ""
3412
 
3413
- #: settings.php:1859
3414
  msgid "Toggle client editor"
3415
  msgstr ""
3416
 
3417
- #: settings.php:1862
3418
  msgid "Comma separated names (operating systems, browsers, devices)"
3419
  msgstr ""
3420
 
3421
- #: settings.php:1871
3422
  msgid "Blacklist clients"
3423
  msgstr ""
3424
 
3425
- #: settings.php:1875
3426
  msgid "Whitelist clients"
3427
  msgstr ""
3428
 
3429
- #: settings.php:1896
3430
  msgid "Enable widget for this block"
3431
  msgstr ""
3432
 
3433
- #: settings.php:1908
3434
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3435
  msgstr ""
3436
 
3437
- #: settings.php:1909 settings.php:4205
3438
  msgid "Shortcode"
3439
  msgstr ""
3440
 
3441
- #: settings.php:1924
3442
  msgid ""
3443
  "Enable PHP function call to insert this block at any position in theme file. "
3444
  "If function is disabled for block it will return empty string."
3445
  msgstr ""
3446
 
3447
- #: settings.php:1925
3448
  msgid "PHP function"
3449
  msgstr ""
3450
 
3451
- #: settings.php:1940
3452
  msgid "Client-side device detection"
3453
  msgstr ""
3454
 
3455
- #: settings.php:1941
3456
  msgid "Server-side device detection"
3457
  msgstr ""
3458
 
3459
- #: settings.php:1948
3460
  msgid "Use client-side detection to"
3461
  msgstr ""
3462
 
3463
- #: settings.php:1950
3464
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3465
  msgstr ""
3466
 
3467
  #. Translators: only on (the following devices): viewport names (devices)
3468
  #. listed
3469
- #: settings.php:1955
3470
  msgid "only on"
3471
  msgstr ""
3472
 
3473
- #: settings.php:1983
3474
  msgid "Device min width %s px"
3475
  msgstr ""
3476
 
3477
- #: settings.php:2009
3478
  msgid "Use server-side detection to insert block only for"
3479
  msgstr ""
3480
 
3481
- #: settings.php:2028
3482
  msgid "Filter"
3483
  msgstr ""
3484
 
3485
- #: settings.php:2029
3486
  msgid "Word Count"
3487
  msgstr ""
3488
 
3489
- #: settings.php:2030 settings.php:4195
3490
  msgid "Scheduling"
3491
  msgstr ""
3492
 
3493
- #: settings.php:2031
3494
  msgid "Display"
3495
  msgstr ""
3496
 
3497
- #: settings.php:2033 settings.php:2295
3498
  msgid "General"
3499
  msgstr ""
3500
 
3501
- #: settings.php:2045
3502
  msgid "Old settings for AMP pages detected"
3503
  msgstr ""
3504
 
3505
- #: settings.php:2045
3506
  msgid ""
3507
  "To insert different codes on normal and AMP pages separate them with "
3508
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3509
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3510
  msgstr ""
3511
 
3512
- #: settings.php:2045
3513
  msgid "AMP pages"
3514
  msgstr ""
3515
 
3516
- #: settings.php:2050
3517
  msgid "Enable insertion for Ajax requests"
3518
  msgstr ""
3519
 
3520
- #: settings.php:2050
3521
  msgid "Ajax requests"
3522
  msgstr ""
3523
 
3524
- #: settings.php:2055
3525
  msgid "Enable insertion in RSS feeds"
3526
  msgstr ""
3527
 
3528
- #: settings.php:2055
3529
  msgid "RSS Feed"
3530
  msgstr ""
3531
 
3532
- #: settings.php:2060
3533
  msgid "Enable insertion on page for Error 404: Page not found"
3534
  msgstr ""
3535
 
3536
- #: settings.php:2060
3537
  msgid "Error 404 page"
3538
  msgstr ""
3539
 
3540
- #: settings.php:2072
3541
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3542
  msgstr ""
3543
 
3544
- #: settings.php:2073
3545
  msgid "insertions"
3546
  msgstr ""
3547
 
3548
- #: settings.php:2075
3549
  msgid ""
3550
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3551
  "General)"
3552
  msgstr ""
3553
 
3554
- #: settings.php:2078 settings.php:2475
3555
  msgid "Max blocks per page"
3556
  msgstr ""
3557
 
3558
- #: settings.php:2090
3559
  msgid "Insert for"
3560
  msgstr ""
3561
 
3562
- #: settings.php:2098
3563
  msgid ""
3564
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3565
  "currently active). Might speed up insertion on content pages when "
3566
  "the_content filter is called multiple times."
3567
  msgstr ""
3568
 
3569
- #: settings.php:2101
3570
  msgid "Insert only in the loop"
3571
  msgstr ""
3572
 
3573
- #: settings.php:2107
3574
  msgid ""
3575
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3576
  msgstr ""
3577
 
3578
- #: settings.php:2107
3579
  msgid "Disable caching"
3580
  msgstr ""
3581
 
3582
- #: settings.php:2119
3583
  msgid "Filter insertions"
3584
  msgstr ""
3585
 
3586
- #: settings.php:2122
3587
  msgid ""
3588
  "Filter multiple insertions by specifying wanted insertions for this block - "
3589
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3591,548 +3645,548 @@ msgid ""
3591
  "using only one insertion type."
3592
  msgstr ""
3593
 
3594
- #: settings.php:2125
3595
  msgid "using"
3596
  msgstr ""
3597
 
3598
- #: settings.php:2144
3599
  msgid "Checked means specified calls are unwanted"
3600
  msgstr ""
3601
 
3602
- #: settings.php:2144
3603
  msgid "Invert filter"
3604
  msgstr ""
3605
 
3606
- #: settings.php:2151
3607
  msgid "Minimum number of post/static page words, leave empty for no limit"
3608
  msgstr ""
3609
 
3610
- #: settings.php:2153
3611
  msgid "Maximum number of post/static page words, leave empty for no limit"
3612
  msgstr ""
3613
 
3614
- #: settings.php:2166
3615
  msgid "for"
3616
  msgstr ""
3617
 
3618
- #: settings.php:2166
3619
  msgid "days after publishing"
3620
  msgstr ""
3621
 
3622
- #: settings.php:2168
3623
  msgid "Not available"
3624
  msgstr ""
3625
 
3626
- #: settings.php:2181 settings.php:2467
3627
  msgid "Ad label"
3628
  msgstr ""
3629
 
3630
- #: settings.php:2201
3631
  msgid "General tag"
3632
  msgstr ""
3633
 
3634
- #: settings.php:2205
3635
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3636
  msgstr ""
3637
 
3638
  #. translators: %s: HTML tags
3639
- #: settings.php:2214
3640
  msgid ""
3641
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3642
  "client-side device detection!"
3643
  msgstr ""
3644
 
3645
  #. translators: %s: HTML tags for text and link
3646
- #: settings.php:2228
3647
  msgid ""
3648
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3649
  "side %s insertion. Use %s Server-side %s insertion."
3650
  msgstr ""
3651
 
3652
- #: settings.php:2244
3653
  msgid "Settings"
3654
  msgstr ""
3655
 
3656
- #: settings.php:2247
3657
  msgid "Settings timestamp"
3658
  msgstr ""
3659
 
3660
- #: settings.php:2260
3661
  msgid "Are you sure you want to reset all settings?"
3662
  msgstr ""
3663
 
3664
- #: settings.php:2260
3665
  msgid "Reset All Settings"
3666
  msgstr ""
3667
 
3668
- #: settings.php:2296
3669
  msgid "Viewports"
3670
  msgstr ""
3671
 
3672
- #: settings.php:2297
3673
  msgid "Hooks"
3674
  msgstr ""
3675
 
3676
- #: settings.php:2298
3677
  msgid "Header"
3678
  msgstr ""
3679
 
3680
- #: settings.php:2299 strings.php:30
3681
  msgid "Footer"
3682
  msgstr ""
3683
 
3684
- #: settings.php:2304
3685
  msgid "Debugging"
3686
  msgstr ""
3687
 
3688
- #: settings.php:2314
3689
  msgid "Plugin priority"
3690
  msgstr ""
3691
 
3692
- #: settings.php:2322
3693
  msgid "Output buffering"
3694
  msgstr ""
3695
 
3696
- #: settings.php:2325
3697
  msgid "Needed for position Above header but may not work with all themes"
3698
  msgstr ""
3699
 
3700
- #: settings.php:2333
3701
  msgid "Syntax highlighting theme"
3702
  msgstr ""
3703
 
3704
- #: settings.php:2340
3705
  msgctxt "no syntax highlighting themes"
3706
  msgid "None"
3707
  msgstr ""
3708
 
3709
- #: settings.php:2341
3710
  msgid "No Syntax Highlighting"
3711
  msgstr ""
3712
 
3713
- #: settings.php:2343
3714
  msgctxt "syntax highlighting themes"
3715
  msgid "Light"
3716
  msgstr ""
3717
 
3718
- #: settings.php:2358
3719
  msgctxt "syntax highlighting themes"
3720
  msgid "Dark"
3721
  msgstr ""
3722
 
3723
- #: settings.php:2384
3724
  msgid "Min. user role for ind. exceptions editing"
3725
  msgstr ""
3726
 
3727
- #: settings.php:2394
3728
  msgid "Disable caching for logged in administrators"
3729
  msgstr ""
3730
 
3731
- #: settings.php:2397
3732
  msgid ""
3733
  "Enabled means that logged in administrators will see non-cached (live) pages "
3734
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3735
  msgstr ""
3736
 
3737
- #: settings.php:2405
3738
  msgid "Wait for jQuery"
3739
  msgstr ""
3740
 
3741
- #: settings.php:2408
3742
  msgid ""
3743
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3744
  "it will run the scripts that may need it"
3745
  msgstr ""
3746
 
3747
- #: settings.php:2416
3748
  msgid "Sticky widget mode"
3749
  msgstr ""
3750
 
3751
- #: settings.php:2419
3752
  msgid ""
3753
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3754
  "mode works with most themes but may reload ads on page load."
3755
  msgstr ""
3756
 
3757
- #: settings.php:2427
3758
  msgid "Sticky widget top margin"
3759
  msgstr ""
3760
 
3761
- #: settings.php:2435
3762
  msgid "Dynamic blocks"
3763
  msgstr ""
3764
 
3765
- #: settings.php:2448
3766
  msgid "Functions for paragraph counting"
3767
  msgstr ""
3768
 
3769
- #: settings.php:2451
3770
  msgid ""
3771
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3772
  "functions if paragraphs are not counted properly on non-english pages."
3773
  msgstr ""
3774
 
3775
- #: settings.php:2459
3776
  msgid "No paragraph counting inside"
3777
  msgstr ""
3778
 
3779
- #: settings.php:2470
3780
  msgid "Label text or HTML code"
3781
  msgstr ""
3782
 
3783
- #: settings.php:2478
3784
  msgid ""
3785
  "Maximum number of inserted blocks per page. You need to enable Max page "
3786
  "insertions (button Misc / tab Insertion) to count block for this limit."
3787
  msgstr ""
3788
 
3789
- #: settings.php:2492
3790
  msgid "Plugin usage tracking"
3791
  msgstr ""
3792
 
3793
  #. translators: %s: Ad Inserter
3794
- #: settings.php:2495
3795
  msgid ""
3796
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3797
  "Only information regarding the WordPress environment and %s usage is "
3798
  "recorded (once per month and on events like plugin activation/deactivation)."
3799
  msgstr ""
3800
 
3801
- #: settings.php:2513
3802
  msgid "CSS class name for the wrapping div"
3803
  msgstr ""
3804
 
3805
- #: settings.php:2513
3806
  msgid "Block class name"
3807
  msgstr ""
3808
 
3809
- #: settings.php:2519
3810
  msgid "Include block number class"
3811
  msgstr ""
3812
 
3813
- #: settings.php:2519
3814
  msgid "Block number class"
3815
  msgstr ""
3816
 
3817
- #: settings.php:2524
3818
  msgid "Include block name class"
3819
  msgstr ""
3820
 
3821
- #: settings.php:2524
3822
  msgid "Block name class"
3823
  msgstr ""
3824
 
3825
- #: settings.php:2529
3826
  msgid ""
3827
  "Instead of alignment classes generate inline alignment styles for blocks"
3828
  msgstr ""
3829
 
3830
- #: settings.php:2529
3831
  msgid "Inline styles"
3832
  msgstr ""
3833
 
3834
- #: settings.php:2535
3835
  msgid "Preview of the block wrapping code"
3836
  msgstr ""
3837
 
3838
- #: settings.php:2536
3839
  msgid "Wrapping div"
3840
  msgstr ""
3841
 
3842
- #: settings.php:2537 settings.php:2977
3843
  msgid "BLOCK CODE"
3844
  msgstr ""
3845
 
3846
- #: settings.php:2545
3847
  msgid "Viewport Settings used for client-side device detection"
3848
  msgstr ""
3849
 
3850
  #. Translators: %d: viewport number
3851
- #: settings.php:2553
3852
  msgid "Viewport %d name"
3853
  msgstr ""
3854
 
3855
- #: settings.php:2556
3856
  msgid "min width"
3857
  msgstr ""
3858
 
3859
- #: settings.php:2567
3860
  msgid "Custom Hooks"
3861
  msgstr ""
3862
 
3863
- #: settings.php:2579 settings.php:2582
3864
  msgid "Enable hook"
3865
  msgstr ""
3866
 
3867
  #. translators: %d: hook number
3868
- #: settings.php:2582
3869
  msgid "Hook %d name"
3870
  msgstr ""
3871
 
3872
- #: settings.php:2585
3873
  msgid "Hook name for automatic insertion selection"
3874
  msgstr ""
3875
 
3876
- #: settings.php:2588
3877
  msgid "action"
3878
  msgstr ""
3879
 
3880
- #: settings.php:2591
3881
  msgid "Action name as used in the do_action () function"
3882
  msgstr ""
3883
 
3884
- #: settings.php:2594
3885
  msgid "priority"
3886
  msgstr ""
3887
 
3888
- #: settings.php:2597
3889
  msgid "Priority for the hook (default is 10)"
3890
  msgstr ""
3891
 
3892
- #: settings.php:2618
3893
  msgid "Enable insertion of this code into HTML page header"
3894
  msgstr ""
3895
 
3896
- #: settings.php:2622 settings.php:2689 settings.php:2871
3897
  msgid "Process PHP code"
3898
  msgstr ""
3899
 
3900
- #: settings.php:2626
3901
  msgid "HTML Page Header Code"
3902
  msgstr ""
3903
 
3904
- #: settings.php:2634
3905
  msgid "Code in the %s section of the HTML page"
3906
  msgstr ""
3907
 
3908
- #: settings.php:2635
3909
  msgctxt "code in the header"
3910
  msgid "NOT ENABLED"
3911
  msgstr ""
3912
 
3913
- #: settings.php:2652 settings.php:2720
3914
  msgid "Use server-side detection to insert code only for"
3915
  msgstr ""
3916
 
3917
- #: settings.php:2667
3918
  msgid ""
3919
  "Enable insertion of this code into HTML page header on page for Error 404: "
3920
  "Page not found"
3921
  msgstr ""
3922
 
3923
- #: settings.php:2667 settings.php:2735
3924
  msgid "Insert on Error 404 page"
3925
  msgstr ""
3926
 
3927
- #: settings.php:2685
3928
  msgid "Enable insertion of this code into HTML page footer"
3929
  msgstr ""
3930
 
3931
- #: settings.php:2693
3932
  msgid "HTML Page Footer Code"
3933
  msgstr ""
3934
 
3935
  #. translators: %s: HTML tags
3936
- #: settings.php:2701
3937
  msgid "Code before the %s tag of the the HTML page"
3938
  msgstr ""
3939
 
3940
- #: settings.php:2702
3941
  msgctxt "code in the footer"
3942
  msgid "NOT ENABLED"
3943
  msgstr ""
3944
 
3945
- #: settings.php:2735
3946
  msgid ""
3947
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3948
  "Page not found"
3949
  msgstr ""
3950
 
3951
- #: settings.php:2751
3952
  msgid "Code for ad blocking detection inserted. Click for details."
3953
  msgstr ""
3954
 
3955
- #: settings.php:2756
3956
  msgid "Enable detection of ad blocking"
3957
  msgstr ""
3958
 
3959
- #: settings.php:2774
3960
  msgid "Global action when ad blocking is detected"
3961
  msgstr ""
3962
 
3963
- #: settings.php:2780
3964
  msgid "No action for"
3965
  msgstr ""
3966
 
3967
- #: settings.php:2781
3968
  msgid "Exceptions for global action when ad blocking is detected."
3969
  msgstr ""
3970
 
3971
- #: settings.php:2791
3972
  msgid "Delay Action"
3973
  msgstr ""
3974
 
3975
- #: settings.php:2794
3976
  msgid ""
3977
  "Number of page views to delay action when ad blocking is detected. Leave "
3978
  "empty for no delay (action fires on first page view). Sets cookie."
3979
  msgstr ""
3980
 
3981
- #: settings.php:2794
3982
  msgctxt "Delay Action for x "
3983
  msgid "page views"
3984
  msgstr ""
3985
 
3986
- #: settings.php:2799
3987
  msgid "No Action Period"
3988
  msgstr ""
3989
 
3990
- #: settings.php:2802
3991
  msgid ""
3992
  "Number of days to supress action when ad blocking is detected. Leave empty "
3993
  "for no no-action period (action fires always after defined page view delay). "
3994
  "Sets cookie."
3995
  msgstr ""
3996
 
3997
- #: settings.php:2802
3998
  msgctxt "no action period"
3999
  msgid "days"
4000
  msgstr ""
4001
 
4002
- #: settings.php:2807
4003
  msgid "Custom Selectors"
4004
  msgstr ""
4005
 
4006
- #: settings.php:2810
4007
  msgid ""
4008
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4009
  "blocking detection. Invisible element or element with zero height means ad "
4010
  "blocking is present."
4011
  msgstr ""
4012
 
4013
- #: settings.php:2822
4014
  msgid "Redirection Page"
4015
  msgstr ""
4016
 
4017
- #: settings.php:2834
4018
  msgid "Custom Url"
4019
  msgstr ""
4020
 
4021
- #: settings.php:2839
4022
  msgid ""
4023
  "Static page for redirection when ad blocking is detected. For other pages "
4024
  "select Custom url and set it below."
4025
  msgstr ""
4026
 
4027
- #: settings.php:2848
4028
  msgid "Custom Redirection Url"
4029
  msgstr ""
4030
 
4031
- #: settings.php:2860
4032
  msgid "Message HTML code"
4033
  msgstr ""
4034
 
4035
- #: settings.php:2873
4036
  msgid "Preview message when ad blocking is detected"
4037
  msgstr ""
4038
 
4039
- #: settings.php:2902
4040
  msgid "Prevent visitors from closing the warning message"
4041
  msgstr ""
4042
 
4043
- #: settings.php:2902
4044
  msgid "Undismissible Message"
4045
  msgstr ""
4046
 
4047
- #: settings.php:2908
4048
  msgid "Not undismissible for"
4049
  msgstr ""
4050
 
4051
- #: settings.php:2909
4052
  msgid "Users which can close the warning message."
4053
  msgstr ""
4054
 
4055
- #: settings.php:2923
4056
  msgid ""
4057
  "Force showing admin toolbar for administrators when viewing site. Enable "
4058
  "this option when you are logged in as admin and you don't see admin toolbar."
4059
  msgstr ""
4060
 
4061
- #: settings.php:2931
4062
  msgid "Disable header code (Header tab)"
4063
  msgstr ""
4064
 
4065
- #: settings.php:2935
4066
  msgid "Disable footer code (Footer tab)"
4067
  msgstr ""
4068
 
4069
  #. translators: %s: Ad Inserter
4070
- #: settings.php:2939
4071
  msgid "Disable %s JavaScript code"
4072
  msgstr ""
4073
 
4074
  #. translators: %s: Ad Inserter
4075
- #: settings.php:2943
4076
  msgid "Disable %s CSS code"
4077
  msgstr ""
4078
 
4079
- #: settings.php:2947
4080
  msgid ""
4081
  "Disable PHP code processing (in all blocks including header and footer code)"
4082
  msgstr ""
4083
 
4084
- #: settings.php:2951
4085
  msgid "Disable insertion of all blocks"
4086
  msgstr ""
4087
 
4088
- #: settings.php:2955
4089
  msgid "Disable insertions"
4090
  msgstr ""
4091
 
4092
  #. translators: %s: Ad Inserter
4093
- #: settings.php:2967
4094
  msgid "%s CSS CODE"
4095
  msgstr ""
4096
 
4097
- #: settings.php:2970
4098
  msgid "HEADER CODE"
4099
  msgstr ""
4100
 
4101
  #. translators: %s: PHP tags
4102
- #: settings.php:2976
4103
  msgid "BLOCK PHP CODE"
4104
  msgstr ""
4105
 
4106
  #. translators: %s: Ad Inserter
4107
- #: settings.php:2982
4108
  msgid "%s JS CODE"
4109
  msgstr ""
4110
 
4111
- #: settings.php:2985
4112
  msgid "FOOTER CODE"
4113
  msgstr ""
4114
 
4115
- #: settings.php:2994
4116
  msgid "Force showing admin toolbar when viewing site"
4117
  msgstr ""
4118
 
4119
- #: settings.php:3001
4120
  msgid "Enable debugging functions in admin toolbar"
4121
  msgstr ""
4122
 
4123
- #: settings.php:3003
4124
  msgid "Debugging functions in admin toolbar"
4125
  msgstr ""
4126
 
4127
- #: settings.php:3010
4128
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4129
  msgstr ""
4130
 
4131
- #: settings.php:3012
4132
  msgid "Debugging functions on mobile screens"
4133
  msgstr ""
4134
 
4135
- #: settings.php:3019
4136
  msgid ""
4137
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4138
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4141,236 +4195,232 @@ msgid ""
4141
  "administrators debugging is always enabled."
4142
  msgstr ""
4143
 
4144
- #: settings.php:3021
4145
  msgid "Remote debugging"
4146
  msgstr ""
4147
 
4148
- #: settings.php:3028
4149
  msgid ""
4150
  "Disable translation to see original texts for the settings and messages in "
4151
  "English"
4152
  msgstr ""
4153
 
4154
- #: settings.php:3030
4155
  msgid "Disable translation"
4156
  msgstr ""
4157
 
4158
- #: settings.php:3402
4159
  msgid "Available positions for current theme"
4160
  msgstr ""
4161
 
4162
- #: settings.php:3403
4163
  msgid "Error checking pages"
4164
  msgstr ""
4165
 
4166
- #: settings.php:3406
4167
  msgid "Toggle theme checker for available positions for automatic insertion"
4168
  msgstr ""
4169
 
4170
- #: settings.php:3406
4171
  msgctxt "Button"
4172
  msgid "Check"
4173
  msgstr ""
4174
 
4175
- #: settings.php:3413
4176
  msgid "Position"
4177
  msgstr ""
4178
 
4179
- #: settings.php:3418
4180
  msgid "Archive pages"
4181
  msgstr ""
4182
 
4183
- #: settings.php:3477
4184
  msgid ""
4185
  "Position not available because output buffering (tab [*]) is not enabled"
4186
  msgstr ""
4187
 
4188
- #: settings.php:3480 strings.php:228
4189
  msgid "Position not checked yet"
4190
  msgstr ""
4191
 
4192
- #: settings.php:3516
4193
  msgid "Toggle active/all blocks"
4194
  msgstr ""
4195
 
4196
- #: settings.php:3520 strings.php:215
4197
  msgid "Rearrange block order"
4198
  msgstr ""
4199
 
4200
- #: settings.php:3525
4201
  msgid "Save new block order"
4202
  msgstr ""
4203
 
4204
- #: settings.php:3551
4205
  msgid "Toggle active/all ad units"
4206
  msgstr ""
4207
 
4208
- #: settings.php:3555
4209
  msgid "Reload AdSense ad units"
4210
  msgstr ""
4211
 
4212
- #: settings.php:3559
4213
  msgid "Clear authorization to access AdSense account"
4214
  msgstr ""
4215
 
4216
- #: settings.php:3563 settings.php:4362 settings.php:4429 strings.php:223
4217
  msgid "Google AdSense Homepage"
4218
  msgstr ""
4219
 
4220
- #: settings.php:3579
4221
  msgid "Switch to physical ads.txt file"
4222
  msgstr ""
4223
 
4224
- #: settings.php:3580
4225
  msgid "Switch to virtual ads.txt file"
4226
  msgstr ""
4227
 
4228
  #. translators: %s: ads.txt
4229
- #: settings.php:3590
4230
  msgid "Open %s"
4231
  msgstr ""
4232
 
4233
- #: settings.php:3598
4234
  msgid "Reload ads.txt file"
4235
  msgstr ""
4236
 
4237
- #: settings.php:3602 settings.php:4489
4238
  msgid "Save"
4239
  msgstr ""
4240
 
4241
  #. translators: %s: Ad Inserter
4242
- #: settings.php:3777
4243
  msgid "ads.txt file: %s virtual ads.txt file"
4244
  msgstr ""
4245
 
4246
- #: settings.php:3782 settings.php:3802 strings.php:207
4247
  msgid "Warning"
4248
  msgstr ""
4249
 
4250
  #. translators: %s: Ad Inserter
4251
- #: settings.php:3782
4252
  msgid "%s virtual file ads.txt not found"
4253
  msgstr ""
4254
 
4255
- #: settings.php:3790
4256
  msgid "IMPORTANT"
4257
  msgstr ""
4258
 
4259
- #: settings.php:3790
4260
  msgid "ads.txt file must be placed on the root domain"
4261
  msgstr ""
4262
 
4263
- #: settings.php:3795
4264
  msgid "ads.txt file"
4265
  msgstr ""
4266
 
4267
- #: settings.php:3795
4268
  msgid "NOT WRITABLE"
4269
  msgstr ""
4270
 
4271
- #: settings.php:3802
4272
  msgid "file %s not found"
4273
  msgstr ""
4274
 
4275
- #: settings.php:3812
4276
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4277
  msgstr ""
4278
 
4279
  #. translators: %s: Ad Inserter
4280
- #: settings.php:3818
4281
  msgid "%s virtual ads.txt file"
4282
  msgstr ""
4283
 
4284
- #: settings.php:3840
4285
  msgid "Advertising system"
4286
  msgstr ""
4287
 
4288
- #: settings.php:3841
4289
  msgid "Account ID"
4290
  msgstr ""
4291
 
4292
- #: settings.php:3843
4293
  msgid "Certification authority ID"
4294
  msgstr ""
4295
 
4296
- #: settings.php:3858
4297
  msgid "Account ID found in block and present in ads.txt"
4298
  msgstr ""
4299
 
4300
- #: settings.php:3862
4301
  msgid "Account ID found in block but not present in ads.txt"
4302
  msgstr ""
4303
 
4304
- #: settings.php:4152
4305
  msgid "Preview block"
4306
  msgstr ""
4307
 
4308
- #: settings.php:4161
4309
- msgid "Insertion disabled"
4310
  msgstr ""
4311
 
4312
- #: settings.php:4191
4313
  msgid "Automatic insertion"
4314
  msgstr ""
4315
 
4316
  #. translators: %s HTML tags
4317
- #: settings.php:4192 settings.php:5191
4318
  msgid "PHP code processing"
4319
  msgstr ""
4320
 
4321
- #: settings.php:4194
4322
  msgid "Device detection"
4323
  msgstr ""
4324
 
4325
- #: settings.php:4207
4326
- msgid "Widget positions"
4327
  msgstr ""
4328
 
4329
- #: settings.php:4217
4330
- msgid "No active code block"
4331
- msgstr ""
4332
-
4333
- #: settings.php:4218
4334
- msgid "No code block matches search keywords"
4335
  msgstr ""
4336
 
4337
- #: settings.php:4273
4338
  msgid "Ad unit"
4339
  msgstr ""
4340
 
4341
- #: settings.php:4275
4342
  msgid "Slot ID"
4343
  msgstr ""
4344
 
4345
- #: settings.php:4301
4346
  msgid "Copy AdSense code"
4347
  msgstr ""
4348
 
4349
- #: settings.php:4304
4350
  msgid "Preview AdSense ad"
4351
  msgstr ""
4352
 
4353
- #: settings.php:4307
4354
  msgid "Get AdSense code"
4355
  msgstr ""
4356
 
4357
  #. translators: %s: HTML tags
4358
- #: settings.php:4339
4359
  msgid ""
4360
  "Please %s clear authorization %s with the button %s above and once again "
4361
  "authorize access to your AdSense account."
4362
  msgstr ""
4363
 
4364
- #: settings.php:4358
4365
  msgid "AdSense Integration"
4366
  msgstr ""
4367
 
4368
- #: settings.php:4360
4369
  msgid "AdSense Integration - Step 2"
4370
  msgstr ""
4371
 
4372
  #. translators: %s: HTML tags
4373
- #: settings.php:4366
4374
  msgid ""
4375
  "Authorize %s to access your AdSense account. Click on the %s Get "
4376
  "Authorization Code %s button to open a new window where you can allow "
@@ -4379,7 +4429,7 @@ msgid ""
4379
  msgstr ""
4380
 
4381
  #. translators: %s: HTML tags
4382
- #: settings.php:4373
4383
  msgid ""
4384
  "If you get error, can't access ad units or would like to use own Google API "
4385
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4387,7 +4437,7 @@ msgid ""
4387
  msgstr ""
4388
 
4389
  #. translators: %s: HTML tags
4390
- #: settings.php:4375
4391
  msgid ""
4392
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4393
  "Authorization Code %s button to open a new window where you can allow "
@@ -4396,38 +4446,38 @@ msgid ""
4396
  msgstr ""
4397
 
4398
  #. translators: %s: HTML tags
4399
- #: settings.php:4382
4400
  msgid ""
4401
  "If you get error %s invalid client %s click on the button %s Clear and "
4402
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4403
  msgstr ""
4404
 
4405
- #: settings.php:4393
4406
  msgid "Get Authorization Code"
4407
  msgstr ""
4408
 
4409
- #: settings.php:4396
4410
  msgid "Enter Authorization Code"
4411
  msgstr ""
4412
 
4413
- #: settings.php:4406
4414
  msgid "Use own API IDs"
4415
  msgstr ""
4416
 
4417
- #: settings.php:4408
4418
  msgid "Clear and return to Step 1"
4419
  msgstr ""
4420
 
4421
- #: settings.php:4412
4422
  msgid "Authorize"
4423
  msgstr ""
4424
 
4425
- #: settings.php:4428
4426
  msgid "AdSense Integration - Step 1"
4427
  msgstr ""
4428
 
4429
  #. translators: %s: Ad Inserter
4430
- #: settings.php:4432
4431
  msgid ""
4432
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4433
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4436,196 +4486,192 @@ msgid ""
4436
  msgstr ""
4437
 
4438
  #. translators: %s: HTML tags
4439
- #: settings.php:4441
4440
  msgid "Go to %s Google APIs and Services console %s"
4441
  msgstr ""
4442
 
4443
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4444
- #: settings.php:4442
4445
  msgid ""
4446
  "Create %1$s project - if the project and IDs are already created click on "
4447
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4448
  msgstr ""
4449
 
4450
  #. translators: %s: HTML tags
4451
- #: settings.php:4443
4452
  msgid ""
4453
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4454
  "create a new project"
4455
  msgstr ""
4456
 
4457
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4458
- #: settings.php:4444
4459
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4460
  msgstr ""
4461
 
4462
  #. translators: %s: HTML tags
4463
- #: settings.php:4445
4464
  msgid ""
4465
  "Click on project selection, wait for the project to be created and then and "
4466
  "select %s as the current project"
4467
  msgstr ""
4468
 
4469
  #. translators: %s: HTML tags
4470
- #: settings.php:4446
4471
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4472
  msgstr ""
4473
 
4474
  #. translators: %s: HTML tags
4475
- #: settings.php:4447
4476
  msgid "Search for adsense and enable %s"
4477
  msgstr ""
4478
 
4479
  #. translators: %s: HTML tags
4480
- #: settings.php:4448
4481
  msgid "Click on %s CREATE CREDENTIALS %s"
4482
  msgstr ""
4483
 
4484
  #. translators: %s: HTML tags
4485
- #: settings.php:4449
4486
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4487
  msgstr ""
4488
 
4489
  #. translators: %s: HTML tags
4490
- #: settings.php:4450
4491
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4492
  msgstr ""
4493
 
4494
  #. translators: %s: HTML tags
4495
- #: settings.php:4451
4496
  msgid "Click on %s What credentials do I need? %s"
4497
  msgstr ""
4498
 
4499
  #. translators: %s: HTML tags
4500
- #: settings.php:4452
4501
  msgid ""
4502
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4503
  "Ad Inserter client %s"
4504
  msgstr ""
4505
 
4506
  #. translators: %s: HTML tags
4507
- #: settings.php:4453
4508
  msgid ""
4509
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4510
  "enter %s"
4511
  msgstr ""
4512
 
4513
  #. translators: %s: HTML tags
4514
- #: settings.php:4454
4515
  msgid "Click on %s Continue %s"
4516
  msgstr ""
4517
 
4518
  #. translators: %s: HTML tags
4519
- #: settings.php:4455
4520
  msgid "Click on %s Done %s"
4521
  msgstr ""
4522
 
4523
  #. translators: %s: HTML tags
4524
- #: settings.php:4456
4525
  msgid ""
4526
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4527
  "secret %s"
4528
  msgstr ""
4529
 
4530
- #: settings.php:4457
4531
  msgid "Copy them to the appropriate fields below"
4532
  msgstr ""
4533
 
4534
- #: settings.php:4463
4535
  msgid "Client ID"
4536
  msgstr ""
4537
 
4538
- #: settings.php:4466
4539
  msgid "Enter Client ID"
4540
  msgstr ""
4541
 
4542
- #: settings.php:4471
4543
  msgid "Client secret"
4544
  msgstr ""
4545
 
4546
- #: settings.php:4474
4547
  msgid "Enter Client secret"
4548
  msgstr ""
4549
 
4550
- #: settings.php:4484
4551
  msgid "Use default API IDs"
4552
  msgstr ""
4553
 
4554
- #: settings.php:4648
4555
  msgid "All posts"
4556
  msgstr ""
4557
 
4558
- #: settings.php:4649
4559
  msgid "All static pages"
4560
  msgstr ""
4561
 
4562
- #: settings.php:4804 settings.php:4817 settings.php:4831 settings.php:4847
4563
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4564
  msgstr ""
4565
 
4566
- #: settings.php:4809 settings.php:4822 settings.php:4836 settings.php:4852
4567
- #: settings.php:5081 settings.php:5083 settings.php:5100 settings.php:5104
4568
- #: settings.php:5112 settings.php:5113 settings.php:5116 settings.php:5122
4569
- #: settings.php:5132 settings.php:5136
4570
  msgid "Looking for AdSense alternative?"
4571
  msgstr ""
4572
 
4573
- #: settings.php:4864
4574
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4575
  msgstr ""
4576
 
4577
- #: settings.php:4869 settings.php:5079 settings.php:5091 settings.php:5119
4578
- #: settings.php:5146
4579
  msgid "Use Infolinks ads with Adsense to earn more"
4580
  msgstr ""
4581
 
4582
- #: settings.php:4879 settings.php:4894
4583
- msgid "Maximize your revenue!"
4584
- msgstr ""
4585
-
4586
- #: settings.php:4920 settings.php:4970
4587
  msgid "Support plugin development"
4588
  msgstr ""
4589
 
4590
- #: settings.php:4925 settings.php:4971
4591
  msgid ""
4592
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4593
  "reviewing the plugin on WordPres"
4594
  msgstr ""
4595
 
4596
- #: settings.php:4925
4597
  msgctxt "Review Ad Inserter"
4598
  msgid "Review"
4599
  msgstr ""
4600
 
4601
- #: settings.php:4930
4602
  msgid ""
4603
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4604
  "rating the plugin on WordPres"
4605
  msgstr ""
4606
 
4607
- #: settings.php:4930
4608
  msgctxt "Rate Ad Inserter"
4609
  msgid "Rate"
4610
  msgstr ""
4611
 
4612
- #: settings.php:4935
4613
  msgid ""
4614
  "Support free Ad Inserter development. If you are making money with Ad "
4615
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4616
  "you!"
4617
  msgstr ""
4618
 
4619
- #: settings.php:4935
4620
  msgid "Donate"
4621
  msgstr ""
4622
 
4623
- #: settings.php:4942 settings.php:4986
4624
  msgid "Average rating of the plugin - Thank you!"
4625
  msgstr ""
4626
 
4627
  #. translators: %s: Ad Inserter, HTML tags
4628
- #: settings.php:4953
4629
  msgid ""
4630
  "You've been using %s for a while now, and I hope you're happy with it. "
4631
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4634,31 +4680,31 @@ msgid ""
4634
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4635
  msgstr ""
4636
 
4637
- #: settings.php:4971
4638
  msgid "Review"
4639
  msgstr ""
4640
 
4641
- #: settings.php:4975
4642
  msgid "Ad Inserter on Twitter"
4643
  msgstr ""
4644
 
4645
- #: settings.php:4976
4646
  msgid "Ad Inserter on Facebook"
4647
  msgstr ""
4648
 
4649
- #: settings.php:4979
4650
  msgid "Follow Ad Inserter"
4651
  msgstr ""
4652
 
4653
  #. translators: %s: HTML tags
4654
- #: settings.php:5006
4655
  msgid ""
4656
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4657
  "and %s Common Settings %s pages"
4658
  msgstr ""
4659
 
4660
  #. translators: %s: HTML tags
4661
- #: settings.php:5018
4662
  msgid ""
4663
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4664
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4666,330 +4712,338 @@ msgid ""
4666
  msgstr ""
4667
 
4668
  #. translators: %s: HTML tags
4669
- #: settings.php:5039
4670
  msgid ""
4671
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4672
  "purchase you refer to us"
4673
  msgstr ""
4674
 
4675
  #. translators: %s: HTML tags
4676
- #: settings.php:5046
4677
  msgid ""
4678
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4679
  "diagnose and fix the problem."
4680
  msgstr ""
4681
 
4682
  #. translators: %s: HTML tags
4683
- #: settings.php:5050
4684
  msgid ""
4685
  "If you need any kind of help or support, please do not hesitate to open a "
4686
  "thread on the %s support forum. %s"
4687
  msgstr ""
4688
 
4689
- #: settings.php:5076 settings.php:5145
4690
  msgid "Code preview with visual CSS editor"
4691
  msgstr ""
4692
 
4693
- #: settings.php:5095 settings.php:5140
4694
  msgid "A/B testing - Track ad impressions and clicks"
4695
  msgstr ""
4696
 
4697
- #: settings.php:5154
 
 
 
 
 
 
 
 
4698
  msgid "Looking for Pro Ad Management plugin?"
4699
  msgstr ""
4700
 
4701
- #: settings.php:5155
4702
  msgid "To Optimally Monetize your WordPress website?"
4703
  msgstr ""
4704
 
4705
  #. Translators: %s: price of Ad Inserter Pro
4706
- #: settings.php:5156
4707
  msgid "Different license types starting from %s"
4708
  msgstr ""
4709
 
4710
  #. translators: %s HTML tags
4711
- #: settings.php:5159
4712
  msgid "%s AdSense Integration %s"
4713
  msgstr ""
4714
 
4715
  #. translators: %s HTML tags
4716
- #: settings.php:5160
4717
  msgid "Syntax highlighting %s editor %s"
4718
  msgstr ""
4719
 
4720
  #. translators: %s HTML tags
4721
- #: settings.php:5161
4722
  msgid "%s Code preview %s with visual CSS editor"
4723
  msgstr ""
4724
 
4725
  #. translators: %s HTML tags
4726
- #: settings.php:5162
4727
  msgid "Simple user interface - all settings on a single page"
4728
  msgstr ""
4729
 
4730
  #. translators: %s HTML tags
4731
- #: settings.php:5163
4732
  msgid ""
4733
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4734
  "image / excerpt"
4735
  msgstr ""
4736
 
4737
  #. translators: %s HTML tags
4738
- #: settings.php:5164
4739
  msgid "%s Automatic insertion %s between posts on blog pages"
4740
  msgstr ""
4741
 
4742
  #. translators: %s HTML tags
4743
- #: settings.php:5165
4744
  msgid "%s Automatic insertion %s before, between and after comments"
4745
  msgstr ""
4746
 
4747
  #. translators: %s HTML tags
4748
- #: settings.php:5166
4749
  msgid "%s Automatic insertion %s after %s or before %s tag"
4750
  msgstr ""
4751
 
4752
  #. translators: %s HTML tags
4753
- #: settings.php:5167
4754
  msgid "Automatic insertion at %s custom hook positions %s"
4755
  msgstr ""
4756
 
4757
  #. translators: %s HTML tags
4758
- #: settings.php:5168
4759
  msgid ""
4760
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4761
  "selectors)"
4762
  msgstr ""
4763
 
4764
  #. translators: %s HTML tags
4765
- #: settings.php:5169
4766
  msgid "%s Insertion exceptions %s for individual posts and pages"
4767
  msgstr ""
4768
 
4769
  #. translators: %s HTML tags
4770
- #: settings.php:5170
4771
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4772
  msgstr ""
4773
 
4774
  #. translators: %s HTML tags
4775
- #: settings.php:5171
4776
  msgid ""
4777
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4778
  "scrolls)"
4779
  msgstr ""
4780
 
4781
  #. translators: %s HTML tags
4782
- #: settings.php:5172
4783
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4784
  msgstr ""
4785
 
4786
  #. translators: %s HTML tags
4787
- #: settings.php:5173
4788
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4789
  msgstr ""
4790
 
4791
  #. translators: %s HTML tags
4792
- #: settings.php:5174
4793
  msgid ""
4794
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4795
  "visible)"
4796
  msgstr ""
4797
 
4798
  #. translators: %s HTML tags
4799
- #: settings.php:5175
4800
  msgid ""
4801
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4802
  msgstr ""
4803
 
4804
  #. translators: %s HTML tags
4805
- #: settings.php:5176
4806
  msgid "Block %s alignment and style %s customizations"
4807
  msgstr ""
4808
 
4809
  #. translators: %s HTML tags
4810
- #: settings.php:5177
4811
  msgid ""
4812
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4813
  "TOS)"
4814
  msgstr ""
4815
 
4816
  #. translators: %s HTML tags
4817
- #: settings.php:5178
4818
  msgid ""
4819
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4820
  "feeds"
4821
  msgstr ""
4822
 
4823
  #. translators: %s HTML tags
4824
- #: settings.php:5179
4825
  msgid "%s Ad rotation %s (works also with caching)"
4826
  msgstr ""
4827
 
4828
  #. translators: %s HTML tags
4829
- #: settings.php:5180
4830
  msgid "Create, edit and check %s ads.txt %s file"
4831
  msgstr ""
4832
 
4833
  #. translators: %s HTML tags
4834
- #: settings.php:5181
4835
  msgid ""
4836
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4837
  "AdSense)"
4838
  msgstr ""
4839
 
4840
  #. translators: %s HTML tags
4841
- #: settings.php:5182
4842
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4843
  msgstr ""
4844
 
4845
  #. translators: %s HTML tags
4846
- #: settings.php:5183
4847
  msgid "%s Public web reports %s for clients, export to PDF"
4848
  msgstr ""
4849
 
4850
  #. translators: %s HTML tags
4851
- #: settings.php:5184
4852
  msgid "Support for %s A/B testing %s"
4853
  msgstr ""
4854
 
4855
  #. translators: %s HTML tags
4856
- #: settings.php:5185
4857
  msgid "Frequency capping - %s limit impressions or clicks %s"
4858
  msgstr ""
4859
 
4860
  #. translators: %s HTML tags
4861
- #: settings.php:5186
4862
  msgid "Click fraud %s protection %s"
4863
  msgstr ""
4864
 
4865
  #. translators: %s HTML tags
4866
- #: settings.php:5187
4867
  msgid "Support for %s lazy loading %s"
4868
  msgstr ""
4869
 
4870
  #. translators: %s HTML tags
4871
- #: settings.php:5188
4872
  msgid "Support for ads on %s AMP pages %s"
4873
  msgstr ""
4874
 
4875
  #. translators: %s HTML tags
4876
- #: settings.php:5189
4877
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4878
  msgstr ""
4879
 
4880
  #. translators: %s HTML tags
4881
- #: settings.php:5190
4882
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4883
  msgstr ""
4884
 
4885
  #. translators: %s HTML tags
4886
- #: settings.php:5192
4887
  msgid "%s Banner %s code generator"
4888
  msgstr ""
4889
 
4890
  #. translators: %s HTML tags
4891
- #: settings.php:5193
4892
  msgid "Support for %s header and footer %s code"
4893
  msgstr ""
4894
 
4895
  #. translators: %s HTML tags
4896
- #: settings.php:5194
4897
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4898
  msgstr ""
4899
 
4900
  #. translators: %s HTML tags
4901
- #: settings.php:5195
4902
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4903
  msgstr ""
4904
 
4905
  #. translators: %s HTML tags
4906
- #: settings.php:5196
4907
  msgid "Client-side %s mobile device detection %s (works with caching)"
4908
  msgstr ""
4909
 
4910
  #. translators: %s HTML tags
4911
- #: settings.php:5197
4912
  msgid ""
4913
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4914
  "protection"
4915
  msgstr ""
4916
 
4917
  #. translators: %s HTML tags
4918
- #: settings.php:5198
4919
  msgid "%s Ad blocking statistics %s"
4920
  msgstr ""
4921
 
4922
  #. translators: %s HTML tags
4923
- #: settings.php:5199
4924
  msgid ""
4925
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4926
  "referrers, operating systems, browsers"
4927
  msgstr ""
4928
 
4929
  #. translators: %s HTML tags
4930
- #: settings.php:5200
4931
  msgid ""
4932
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4933
  msgstr ""
4934
 
4935
  #. translators: %s HTML tags
4936
- #: settings.php:5201
4937
  msgid "%s Multisite options %s to limit settings on the sites"
4938
  msgstr ""
4939
 
4940
  #. translators: %s HTML tags
4941
- #: settings.php:5202
4942
  msgid "%s Import/Export %s block or plugin settings"
4943
  msgstr ""
4944
 
4945
  #. translators: %s HTML tags
4946
- #: settings.php:5203
4947
  msgid "%s Insertion scheduling %s with fallback option"
4948
  msgstr ""
4949
 
4950
  #. translators: %s HTML tags
4951
- #: settings.php:5204
4952
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4953
  msgstr ""
4954
 
4955
  #. translators: %s HTML tags
4956
- #: settings.php:5205
4957
  msgid "Simple troubleshooting with many %s debugging functions %s"
4958
  msgstr ""
4959
 
4960
  #. translators: %s HTML tags
4961
- #: settings.php:5206
4962
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4963
  msgstr ""
4964
 
4965
  #. translators: %s HTML tags
4966
- #: settings.php:5207
4967
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4968
  msgstr ""
4969
 
4970
  #. translators: %s HTML tags
4971
- #: settings.php:5208
4972
  msgid ""
4973
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4974
  msgstr ""
4975
 
4976
  #. translators: %s HTML tags
4977
- #: settings.php:5209
4978
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4979
  msgstr ""
4980
 
4981
  #. translators: %s HTML tags
4982
- #: settings.php:5210
4983
  msgid "No ads on the settings page"
4984
  msgstr ""
4985
 
4986
  #. translators: %s HTML tags
4987
- #: settings.php:5211
4988
  msgid "Premium support"
4989
  msgstr ""
4990
 
4991
  #. translators: %s HTML tags
4992
- #: settings.php:5214
4993
  msgid ""
4994
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4995
  "website with many advertising features to automatically insert adverts on "
@@ -5004,82 +5058,82 @@ msgid ""
5004
  msgstr ""
5005
 
5006
  #. translators: %s HTML tags
5007
- #: settings.php:5227
5008
  msgid "Looking for %s Pro Ad Management plugin? %s"
5009
  msgstr ""
5010
 
5011
  #. translators: %s HTML tags
5012
- #: settings.php:5232
5013
  msgid "Ads between posts"
5014
  msgstr ""
5015
 
5016
  #. translators: %s HTML tags
5017
- #: settings.php:5233
5018
  msgid "Ads between comments"
5019
  msgstr ""
5020
 
5021
  #. translators: %s HTML tags
5022
- #: settings.php:5234
5023
  msgid "Support via email"
5024
  msgstr ""
5025
 
5026
  #. translators: %s HTML tags
5027
- #: settings.php:5240
5028
  msgid "%s Sticky positions %s"
5029
  msgstr ""
5030
 
5031
  #. translators: %s HTML tags
5032
- #: settings.php:5241
5033
  msgid "%s Limit insertions %s"
5034
  msgstr ""
5035
 
5036
  #. translators: %s HTML tags
5037
- #: settings.php:5242
5038
  msgid "%s Clearance %s options"
5039
  msgstr ""
5040
 
5041
  #. translators: %s HTML tags
5042
- #: settings.php:5248
5043
  msgid "Ad rotation"
5044
  msgstr ""
5045
 
5046
  #. translators: %s HTML tags
5047
- #: settings.php:5249
5048
  msgid "%s A/B testing %s"
5049
  msgstr ""
5050
 
5051
  #. translators: %s HTML tags
5052
- #: settings.php:5250
5053
  msgid "%s Ad tracking %s"
5054
  msgstr ""
5055
 
5056
  #. translators: %s HTML tags
5057
- #: settings.php:5256
5058
  msgid "Support for %s AMP pages %s"
5059
  msgstr ""
5060
 
5061
  #. translators: %s HTML tags
5062
- #: settings.php:5257
5063
  msgid "%s Ad blocking detection %s"
5064
  msgstr ""
5065
 
5066
  #. translators: %s HTML tags
5067
- #: settings.php:5258
5068
  msgid "%s Mobile device detection %s"
5069
  msgstr ""
5070
 
5071
  #. translators: %s HTML tags
5072
- #: settings.php:5265
5073
  msgid "64 code blocks"
5074
  msgstr ""
5075
 
5076
  #. translators: %s HTML tags
5077
- #: settings.php:5266
5078
  msgid "%s GEO targeting %s"
5079
  msgstr ""
5080
 
5081
  #. translators: %s HTML tags
5082
- #: settings.php:5267
5083
  msgid "%s Scheduling %s"
5084
  msgstr ""
5085
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.6.3\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2020-02-10 19:37:36+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:366
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:382
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:389
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:474
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:481
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:490
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:497
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:508
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:515
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1127
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1132
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
+ #: ad-inserter.php:1137 strings.php:103
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
+ #: ad-inserter.php:1142 strings.php:104
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1147 strings.php:105
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1152 strings.php:155
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1199
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1203
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1498
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:1833 ad-inserter.php:2912
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2331
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2331
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2332
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2333
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2334
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2335
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2336
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2607
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
+ #: ad-inserter.php:2610
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2614
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:2619
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2622
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:2635
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
+ #: ad-inserter.php:2637
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
+ #: ad-inserter.php:2643
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
+ #: ad-inserter.php:2660 ad-inserter.php:2695
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
+ #: ad-inserter.php:2667
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:2677
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:2709
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2709
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:2804
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:2833 ad-inserter.php:9701 class.php:2116
214
  #: includes/preview.php:2002 includes/preview.php:2045
215
+ #: includes/preview.php:2082 settings.php:4243 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:2834 settings.php:4244 settings.php:4329
220
  msgid "Name"
221
  msgstr ""
222
 
223
+ #: ad-inserter.php:2837 settings.php:1164
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
+ #: ad-inserter.php:2840
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
+ #: ad-inserter.php:2841
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
+ #: ad-inserter.php:2853
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
+ #: ad-inserter.php:2856
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
+ #: ad-inserter.php:2873 ad-inserter.php:2885 strings.php:161
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:2873 ad-inserter.php:2885
254
  #: includes/functions-check-now.php:2401 includes/functions.old.php:2326
255
+ #: includes/functions.php:2562 strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
+ #: ad-inserter.php:2875
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
+ #: ad-inserter.php:2877
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:2905
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
+ #: ad-inserter.php:2910
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
+ #: ad-inserter.php:2913 settings.php:1142
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
+ #: ad-inserter.php:2915
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:2916
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:2918
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
+ #: ad-inserter.php:2920
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
+ #: ad-inserter.php:2967
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
+ #: ad-inserter.php:2970
310
  msgid "POST"
311
  msgstr ""
312
 
313
+ #: ad-inserter.php:2973
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
+ #: ad-inserter.php:2976
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
+ #: ad-inserter.php:2979
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
+ #: ad-inserter.php:2982
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
+ #: ad-inserter.php:2985
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
+ #: ad-inserter.php:2988
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:2991
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:3008
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
+ #: ad-inserter.php:3009
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
+ #: ad-inserter.php:3038
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:3173
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
+ #: ad-inserter.php:3173
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
+ #: ad-inserter.php:3189
367
  msgid "Header code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3189
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3189 ad-inserter.php:3422
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
+ #: ad-inserter.php:3422
382
  msgid "Footer code"
383
  msgstr ""
384
 
385
+ #: ad-inserter.php:3422
386
  msgctxt "Footer code"
387
  msgid "DISABLED"
388
  msgstr ""
389
 
390
+ #: ad-inserter.php:3428
391
  msgid "JAVASCRIPT NOT WORKING"
392
  msgstr ""
393
 
394
+ #: ad-inserter.php:3428
395
  msgid "NO JAVASCRIPT ERRORS"
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:3428
399
  msgid "JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
  #. translators: block name (block with default settings)
403
+ #: ad-inserter.php:5849
404
  msgctxt "Block name"
405
  msgid "Default"
406
  msgstr ""
407
 
408
  #. translators: %s: Ad Inserter
409
+ #: ad-inserter.php:6515
410
  msgid "Error importing %s settings."
411
  msgstr ""
412
 
413
+ #: ad-inserter.php:6516
414
  msgid "Error importing settings for block"
415
  msgid_plural "Error importing settings for blocks:"
416
  msgstr[0] ""
417
  msgstr[1] ""
418
 
419
+ #: ad-inserter.php:6569
420
  msgid "Settings saved."
421
  msgstr ""
422
 
423
  #. translators: %s: Ad Inserter
424
+ #: ad-inserter.php:6571
425
  msgid "Invalid data received - %s settings not saved."
426
  msgstr ""
427
 
428
+ #: ad-inserter.php:6665
429
  msgid "Settings cleared."
430
  msgstr ""
431
 
432
  #. Translators: Post/Static page must have between X and Y words
433
  #: ad-inserter.php:7036 ad-inserter.php:7038 ad-inserter.php:7061
434
+ #: settings.php:2160
435
  msgid "word"
436
  msgid_plural "words"
437
  msgstr[0] ""
438
  msgstr[1] ""
439
 
440
+ #: ad-inserter.php:7075 ad-inserter.php:7196
441
  msgid "HTML TAGS REMOVED"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:7272
445
  msgid "BEFORE COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:7392
449
  msgid "AFTER COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7467
453
  msgid "BETWEEN COMMENTS"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:9319
457
  msgid "requires WordPress 4.6 or newer"
458
  msgstr ""
459
 
460
+ #: ad-inserter.php:9319
461
  msgid "Please update!"
462
  msgstr ""
463
 
464
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
465
  #. name with HTML tags will be added)
466
+ #: ad-inserter.php:9574
467
  msgid "Thank you for installing"
468
  msgstr ""
469
 
470
  #. translators: Opt-in message: %s: HTML tags
471
+ #: ad-inserter.php:9576
472
  msgid ""
473
  "We would like to %s track its usage %s on your site. This is completely "
474
  "optional and can be disabled at any time."
475
  msgstr ""
476
 
477
+ #: ad-inserter.php:9578
478
  msgid ""
479
  "We don't record any sensitive data, only information regarding the WordPress "
480
  "environment and plugin usage, which will help us to make improvements to the "
482
  msgstr ""
483
 
484
  #. translators: Deactivation message: %s: HTML tags
485
+ #: ad-inserter.php:9615
486
  msgid ""
487
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
488
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
490
  msgstr ""
491
 
492
  #. translators: %s: Ad Inserter
493
+ #: ad-inserter.php:9659
494
  msgid "%s block."
495
  msgstr ""
496
 
497
  #. translators: widget title
498
+ #: ad-inserter.php:9675 ad-inserter.php:9710
499
  msgid "Processing log"
500
  msgstr ""
501
 
502
  #. translators: widget title
503
+ #: ad-inserter.php:9677 ad-inserter.php:9711
504
  msgid "Dummy widget"
505
  msgstr ""
506
 
507
  #. translators: widget title
508
+ #: ad-inserter.php:9679 ad-inserter.php:9709
509
  msgid "Debugging tools"
510
  msgstr ""
511
 
512
  #. translators: block status (widget title)
513
+ #: ad-inserter.php:9686
514
  msgctxt "block"
515
  msgid "PAUSED"
516
  msgstr ""
517
 
518
+ #: ad-inserter.php:9687
519
  msgid "WIDGET DISABLED"
520
  msgstr ""
521
 
522
+ #: ad-inserter.php:9688
523
  msgid "Unknown block"
524
  msgstr ""
525
 
526
+ #: ad-inserter.php:9696 includes/functions-check-now.php:3261
527
+ #: includes/functions.old.php:3186 includes/functions.php:3479
528
+ #: settings.php:1194
529
  msgid "Title"
530
  msgstr ""
531
 
532
+ #: ad-inserter.php:9718
533
  msgctxt "Widget"
534
  msgid "Sticky"
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:9767
538
  msgid ""
539
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
540
  "Inserter you need to first deactivate Ad Inserter Pro."
541
  msgstr ""
542
 
543
+ #: ad-inserter.php:9768
544
  msgid ""
545
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
546
  "will clear all settings that are available only in the Pro version "
552
  msgid "PHP error in %s block"
553
  msgstr ""
554
 
555
+ #: class.php:2066
556
  msgid "Counters"
557
  msgstr ""
558
 
559
+ #: class.php:2070
560
  msgid "Content"
561
  msgstr ""
562
 
563
+ #: class.php:2075
564
  msgid "Excerpt"
565
  msgstr ""
566
 
567
+ #: class.php:2080 strings.php:17
568
  msgid "Before post"
569
  msgstr ""
570
 
571
+ #: class.php:2085 strings.php:18
572
  msgid "After post"
573
  msgstr ""
574
 
575
+ #: class.php:2090 strings.php:25
576
  msgid "Between posts"
577
  msgstr ""
578
 
579
+ #: class.php:2095 settings.php:1903 settings.php:4261
580
  msgid "Widget"
581
  msgstr ""
582
 
583
+ #: class.php:2100 settings.php:4259
584
  msgid "PHP function call"
585
  msgstr ""
586
 
587
  #. Translators: %s: custom hook name
588
+ #: class.php:2110
589
  msgid "Custom hook %s call"
590
  msgstr ""
591
 
592
+ #: class.php:2146
593
  msgid "AJAX REQUEST"
594
  msgstr ""
595
 
596
+ #: class.php:2149
597
  msgid "Ajax request for block in iframe"
598
  msgstr ""
599
 
600
+ #: class.php:2183
601
  msgid "Ajax request url, click to open it in a new tab"
602
  msgstr ""
603
 
604
+ #: class.php:2186
605
  msgid "IN THE LOOP"
606
  msgstr ""
607
 
608
+ #: class.php:2186
609
  msgid "YES"
610
  msgstr ""
611
 
612
+ #: class.php:2186
613
  msgid "NO"
614
  msgstr ""
615
 
616
+ #: class.php:2222
617
  msgid "BLOCK"
618
  msgstr ""
619
 
620
+ #: class.php:2222
621
  msgctxt "block or widget"
622
  msgid "INSERTED BUT NOT VISIBLE"
623
  msgstr ""
624
 
625
+ #: class.php:2390
626
  msgctxt "viewports"
627
  msgid "ALL"
628
  msgstr ""
629
 
630
+ #: class.php:2423 class.php:2465 class.php:3710 strings.php:267
631
  msgctxt "Block"
632
  msgid "HIDDEN"
633
  msgstr ""
634
 
635
+ #: class.php:2472 class.php:3713 strings.php:266
636
  msgctxt "Block"
637
  msgid "VISIBLE"
638
  msgstr ""
639
 
640
+ #: class.php:2977 class.php:3047
641
  msgid "ACTIVE GROUPS"
642
  msgstr ""
643
 
644
+ #: class.php:3409
645
  msgid "start='%s' end='%s' days='%s' type='%s'"
646
  msgstr ""
647
 
648
  #. translators: %s: list parameters and type
649
+ #: class.php:3417
650
  msgid "parameters='%s' type='%s'"
651
  msgstr ""
652
 
653
  #. translators: %s: list parameters and type
654
+ #: class.php:3419
655
  msgid "referers='%s' type='%s'"
656
  msgstr ""
657
 
658
  #. translators: %s: list parameters and type
659
+ #: class.php:3421
660
  msgid "clients='%s' type='%s'"
661
  msgstr ""
662
 
663
  #. translators: %s: list parameters and type
664
+ #: class.php:3593
665
  msgid "countries='%s' type='%s'"
666
  msgstr ""
667
 
668
  #. translators: %s: list parameters and type
669
+ #: class.php:3595
670
  msgid "ip addresses='%s' type='%s'"
671
  msgstr ""
672
 
673
+ #: class.php:3710 class.php:3713
674
  msgid "viewport='%s' type='%s'"
675
  msgstr ""
676
 
677
+ #: class.php:4067 strings.php:249
678
  msgid "BEFORE"
679
  msgstr ""
680
 
681
+ #: class.php:4075 strings.php:251
682
  msgid "PREPEND CONTENT"
683
  msgstr ""
684
 
685
+ #: class.php:4079 strings.php:252
686
  msgid "APPEND CONTENT"
687
  msgstr ""
688
 
689
+ #: class.php:4083 strings.php:253
690
  msgid "REPLACE CONTENT"
691
  msgstr ""
692
 
693
+ #: class.php:4087 strings.php:254
694
  msgid "REPLACE ELEMENT"
695
  msgstr ""
696
 
697
+ #: class.php:4098 strings.php:250
698
  msgid "AFTER"
699
  msgstr ""
700
 
701
+ #: class.php:4183 includes/preview.php:2045 includes/preview.php:2082
702
  msgid "Code"
703
  msgstr ""
704
 
705
+ #: class.php:4186
706
  msgid "for block"
707
  msgstr ""
708
 
709
+ #: class.php:7499 class.php:7551
710
  msgctxt "category name"
711
  msgid "Uncategorized"
712
  msgstr ""
713
 
714
+ #: class.php:8088
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
727
  msgstr ""
728
 
729
  #: includes/editor.php:9 includes/placeholders.php:354
730
+ #: includes/preview.php:1991 settings.php:3602 strings.php:210 strings.php:255
731
  msgid "Cancel"
732
  msgstr ""
733
 
752
  msgstr ""
753
 
754
  #: includes/functions-check-now.php:288 includes/functions.old.php:289
755
+ #: includes/functions.php:301
756
  msgid "%d of %d names shown"
757
  msgstr ""
758
 
759
  #. translators: %s: name filter
760
  #: includes/functions-check-now.php:307 includes/functions.old.php:308
761
+ #: includes/functions.php:320
762
  msgid "No name matches filter"
763
  msgstr ""
764
 
765
  #. translators: %s: Ad Inserter Pro
766
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
767
+ #: includes/functions.php:397
768
  msgid ""
769
  "Import %s settings when saving - if checked, the encoded settings below will "
770
  "be imported for all blocks and settings"
771
  msgstr ""
772
 
773
  #: includes/functions-check-now.php:396 includes/functions.old.php:383
774
+ #: includes/functions.php:397
775
  msgid "Import Settings for"
776
  msgstr ""
777
 
778
  #: includes/functions-check-now.php:400 includes/functions.old.php:387
779
+ #: includes/functions.php:401
780
  msgid "Saved settings for"
781
  msgstr ""
782
 
783
  #: includes/functions-check-now.php:420 includes/functions.old.php:407
784
+ #: includes/functions.php:421
785
  msgid "License Key"
786
  msgstr ""
787
 
788
  #: includes/functions-check-now.php:423 includes/functions.old.php:410
789
+ #: includes/functions.php:424
790
  msgid "License Key for"
791
  msgstr ""
792
 
793
  #: includes/functions-check-now.php:425 includes/functions.old.php:413
794
+ #: includes/functions.php:426
795
  msgid "Open license page"
796
  msgstr ""
797
 
798
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
799
+ #: includes/functions.php:433
800
  msgid "Hide license key"
801
  msgstr ""
802
 
803
  #: includes/functions-check-now.php:432 includes/functions.old.php:421
804
+ #: includes/functions.php:433
805
  msgid "Hide key"
806
  msgstr ""
807
 
808
  #: includes/functions-check-now.php:447 includes/functions.old.php:436
809
+ #: includes/functions.php:448
810
  msgid "Main content element"
811
  msgstr ""
812
 
813
  #: includes/functions-check-now.php:450 includes/functions.old.php:439
814
+ #: includes/functions.php:451
815
  msgid ""
816
  "Main content element (#id or .class) for 'Stick to the content' position. "
817
  "Leave empty unless position is not properly calculated."
818
  msgstr ""
819
 
820
  #: includes/functions-check-now.php:451 includes/functions.old.php:440
821
+ #: includes/functions.php:452 settings.php:1345 settings.php:2817
822
  msgid "Open HTML element selector"
823
  msgstr ""
824
 
825
  #: includes/functions-check-now.php:456 includes/functions.old.php:445
826
+ #: includes/functions.php:457
827
  msgid "Lazy loading offset"
828
  msgstr ""
829
 
830
  #: includes/functions-check-now.php:459 includes/functions.old.php:448
831
+ #: includes/functions.php:460
832
  msgid "Offset of the block from the visible viewport when it should be loaded"
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:470 includes/functions.old.php:459
836
+ #: includes/functions.php:471
837
  msgid "Export / Import Block Settings"
838
  msgstr ""
839
 
840
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
841
+ #: includes/functions.php:486
842
  msgid "Track impressions and clicks for this block"
843
  msgstr ""
844
 
845
  #: includes/functions-check-now.php:485 includes/functions.old.php:474
846
+ #: includes/functions.php:486
847
  msgid " - global tracking disabled"
848
  msgstr ""
849
 
850
  #: includes/functions-check-now.php:492 includes/functions.old.php:481
851
+ #: includes/functions.php:493
852
  msgid "Generate PDF report"
853
  msgstr ""
854
 
855
  #: includes/functions-check-now.php:497 includes/functions.old.php:486
856
+ #: includes/functions.php:498
857
  msgid "Open public report"
858
  msgstr ""
859
 
860
  #: includes/functions-check-now.php:511 includes/functions.old.php:500
861
+ #: includes/functions.php:512
862
  msgid "Toggle Ad Blocking Statistics"
863
  msgstr ""
864
 
865
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
866
  #: includes/functions.old.php:508 includes/functions.old.php:2960
867
+ #: includes/functions.php:520 includes/functions.php:3222
868
  msgid "Toggle Statistics"
869
  msgstr ""
870
 
871
+ #: includes/functions-check-now.php:528 includes/functions.php:529
872
  msgid "Pin list"
873
  msgstr ""
874
 
875
  #. translators: %s: Ad Inserter Pro
876
  #: includes/functions-check-now.php:543 includes/functions.old.php:524
877
+ #: includes/functions.php:544
878
  msgid "%s license key is not set. Continue?"
879
  msgstr ""
880
 
881
  #. translators: %s: Ad Inserter Pro
882
  #: includes/functions-check-now.php:547 includes/functions.old.php:528
883
+ #: includes/functions.php:548
884
  msgid "Invalid %s license key. Continue?"
885
  msgstr ""
886
 
887
  #. translators: %s: Ad Inserter Pro
888
  #: includes/functions-check-now.php:551 includes/functions.old.php:532
889
+ #: includes/functions.php:552
890
  msgid "%s license overused. Continue?"
891
  msgstr ""
892
 
893
  #: includes/functions-check-now.php:555 includes/functions.old.php:536
894
+ #: includes/functions.php:560 settings.php:1099 settings.php:2261
895
  msgid "Save Settings"
896
  msgstr ""
897
 
898
  #: includes/functions-check-now.php:615 includes/functions.old.php:596
899
+ #: includes/functions.php:620 includes/preview.php:2131
900
  msgid "Horizontal position"
901
  msgstr ""
902
 
903
  #: includes/functions-check-now.php:638 includes/functions.old.php:619
904
+ #: includes/functions.php:643
905
  msgid ""
906
  "Horizontal margin from the content or screen edge, empty means default value "
907
  "from CSS"
908
  msgstr ""
909
 
910
  #: includes/functions-check-now.php:646 includes/functions.old.php:627
911
+ #: includes/functions.php:651 includes/preview.php:2186
912
  msgid "Vertical position"
913
  msgstr ""
914
 
915
  #: includes/functions-check-now.php:661 includes/functions.old.php:642
916
+ #: includes/functions.php:666
917
  msgid ""
918
  "Vertical margin from the top or bottom screen edge, empty means default "
919
  "value from CSS"
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:686 includes/functions.old.php:667
923
+ #: includes/functions.php:691 includes/preview.php:2237
924
  msgid "Animation"
925
  msgstr ""
926
 
927
  #: includes/functions-check-now.php:704 includes/functions.old.php:685
928
+ #: includes/functions.php:709
929
  msgid "Trigger"
930
  msgstr ""
931
 
932
  #: includes/functions-check-now.php:713 includes/functions.old.php:694
933
+ #: includes/functions.php:718
934
  msgid ""
935
  "Trigger value: page scroll in %, page scroll in px or element with selector "
936
  "(#id or .class) becomes visible"
937
  msgstr ""
938
 
939
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
940
+ #: includes/functions.php:722
941
  msgid "Offset"
942
  msgstr ""
943
 
944
  #: includes/functions-check-now.php:717 includes/functions.old.php:698
945
+ #: includes/functions.php:722
946
  msgid "Offset of trigger element"
947
  msgstr ""
948
 
949
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
950
+ #: includes/functions.php:726
951
  msgid "Delay"
952
  msgstr ""
953
 
954
  #: includes/functions-check-now.php:721 includes/functions.old.php:702
955
+ #: includes/functions.php:726
956
  msgid "Delay animation after trigger condition"
957
  msgstr ""
958
 
959
  #: includes/functions-check-now.php:725 includes/functions.old.php:706
960
+ #: includes/functions.php:730
961
  msgid "Trigger once"
962
  msgstr ""
963
 
964
  #: includes/functions-check-now.php:727 includes/functions.old.php:708
965
+ #: includes/functions.php:732
966
  msgid "Trigger animation only once"
967
  msgstr ""
968
 
969
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
970
  #: includes/functions-check-now.php:2545 includes/functions.old.php:750
971
  #: includes/functions.old.php:2453 includes/functions.old.php:2470
972
+ #: includes/functions.php:774 includes/functions.php:2701
973
+ #: includes/functions.php:2717
974
  msgid "Tracking is globally disabled"
975
  msgstr ""
976
 
977
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
978
  #: includes/functions-check-now.php:2549 includes/functions.old.php:754
979
  #: includes/functions.old.php:2457 includes/functions.old.php:2474
980
+ #: includes/functions.php:778 includes/functions.php:2705
981
+ #: includes/functions.php:2721
982
  msgid "Tracking for this block is disabled"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:780 includes/functions.old.php:761
986
+ #: includes/functions.php:785
987
  msgid "Double click to toggle controls in public reports"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:786 includes/functions.old.php:767
991
+ #: includes/functions.php:791 settings.php:3537 settings.php:3573
992
+ #: settings.php:3615 strings.php:220
993
  msgid "Loading..."
994
  msgstr ""
995
 
996
  #: includes/functions-check-now.php:807 includes/functions.old.php:788
997
+ #: includes/functions.php:812
998
  msgid ""
999
  "Clear statistics data for the selected range - clear both dates to delete "
1000
  "all data for this block"
1001
  msgstr ""
1002
 
1003
  #: includes/functions-check-now.php:811 includes/functions.old.php:792
1004
+ #: includes/functions.php:816
1005
  msgid "Auto refresh data for the selected range every 60 seconds"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1009
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1010
+ #: includes/functions.php:819 includes/functions.php:5690
1011
  msgid "Load data for last month"
1012
  msgstr ""
1013
 
1014
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1015
  #: includes/functions.old.php:795 includes/functions.old.php:5262
1016
+ #: includes/functions.php:819 includes/functions.php:5690
1017
  msgid "Last Month"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1021
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1022
+ #: includes/functions.php:822 includes/functions.php:5693
1023
  msgid "Load data for this month"
1024
  msgstr ""
1025
 
1026
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1027
  #: includes/functions.old.php:798 includes/functions.old.php:5265
1028
+ #: includes/functions.php:822 includes/functions.php:5693
1029
  msgid "This Month"
1030
  msgstr ""
1031
 
1032
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1033
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1034
+ #: includes/functions.php:825 includes/functions.php:5696
1035
  msgid "Load data for this year"
1036
  msgstr ""
1037
 
1038
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1039
  #: includes/functions.old.php:801 includes/functions.old.php:5268
1040
+ #: includes/functions.php:825 includes/functions.php:5696
1041
  msgid "This Year"
1042
  msgstr ""
1043
 
1044
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1045
  #: includes/functions.old.php:804 includes/functions.old.php:5271
1046
+ #: includes/functions.php:828 includes/functions.php:5699
1047
  msgid "Load data for the last 15 days"
1048
  msgstr ""
1049
 
1050
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1051
  #: includes/functions.old.php:807 includes/functions.old.php:5274
1052
+ #: includes/functions.php:831 includes/functions.php:5702
1053
  msgid "Load data for the last 30 days"
1054
  msgstr ""
1055
 
1056
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1057
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1058
+ #: includes/functions.php:834 includes/functions.php:5705
1059
  msgid "Load data for the last 90 days"
1060
  msgstr ""
1061
 
1062
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1063
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1064
+ #: includes/functions.php:837 includes/functions.php:5708
1065
  msgid "Load data for the last 180 days"
1066
  msgstr ""
1067
 
1068
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1069
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1070
+ #: includes/functions.php:840 includes/functions.php:5711
1071
  msgid "Load data for the last 365 days"
1072
  msgstr ""
1073
 
1074
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1075
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1076
+ #: includes/functions.php:850 includes/functions.php:5721
1077
  msgid "Load data for the selected range"
1078
  msgstr ""
1079
 
1080
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1081
+ #: includes/functions.php:866
1082
  msgid ""
1083
  "Import settings when saving - if checked, the encoded settings below will be "
1084
  "imported for this block"
1085
  msgstr ""
1086
 
1087
  #: includes/functions-check-now.php:861 includes/functions.old.php:842
1088
+ #: includes/functions.php:866
1089
  msgid "Import settings for block"
1090
  msgstr ""
1091
 
1092
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1093
+ #: includes/functions.php:870
1094
  msgid ""
1095
  "Import block name when saving - if checked and 'Import settings for block' "
1096
  "is also checked, the name from encoded settings below will be imported for "
1098
  msgstr ""
1099
 
1100
  #: includes/functions-check-now.php:865 includes/functions.old.php:846
1101
+ #: includes/functions.php:870
1102
  msgid "Import block name"
1103
  msgstr ""
1104
 
1105
  #: includes/functions-check-now.php:869 includes/functions.old.php:850
1106
+ #: includes/functions.php:874
1107
  msgid "Saved settings for block"
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:882 includes/functions.old.php:863
1111
+ #: includes/functions.php:887
1112
  msgid "Export / Import Ad Inserter Pro Settings"
1113
  msgstr ""
1114
 
1115
  #: includes/functions-check-now.php:892 includes/functions.old.php:873
1116
+ #: includes/functions.php:897
1117
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1118
  msgstr ""
1119
 
1120
  #: includes/functions-check-now.php:894 includes/functions.old.php:875
1121
+ #: includes/functions.php:899
1122
  msgid "Clear All Statistics Data"
1123
  msgstr ""
1124
 
1125
  #: includes/functions-check-now.php:921 includes/functions.old.php:902
1126
+ #: includes/functions.php:929
1127
  msgid "Toggle country/city editor"
1128
  msgstr ""
1129
 
1130
  #: includes/functions-check-now.php:927 includes/functions.old.php:908
1131
+ #: includes/functions.php:935
1132
  msgid "IP Addresses"
1133
  msgstr ""
1134
 
1135
  #: includes/functions-check-now.php:930 includes/functions.old.php:911
1136
+ #: includes/functions.php:938
1137
  msgid "Toggle IP address editor"
1138
  msgstr ""
1139
 
1140
  #: includes/functions-check-now.php:933 includes/functions.old.php:914
1141
+ #: includes/functions.php:941
1142
  msgid ""
1143
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1144
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1145
  msgstr ""
1146
 
1147
  #: includes/functions-check-now.php:937 includes/functions.old.php:918
1148
+ #: includes/functions.php:950
1149
  msgid "Blacklist IP addresses"
1150
  msgstr ""
1151
 
1152
  #: includes/functions-check-now.php:941 includes/functions.old.php:922
1153
+ #: includes/functions.php:954
1154
  msgid "Whitelist IP addresses"
1155
  msgstr ""
1156
 
1157
  #: includes/functions-check-now.php:952 includes/functions.old.php:933
1158
+ #: includes/functions.php:965
1159
  msgid "Countries"
1160
  msgstr ""
1161
 
1162
  #: includes/functions-check-now.php:953 includes/functions.old.php:934
1163
+ #: includes/functions.php:966
1164
  msgid "Cities"
1165
  msgstr ""
1166
 
1167
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1168
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1169
+ #: includes/functions.php:970 includes/functions.php:3187
1170
  msgid "Toggle country editor"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:960 includes/functions.old.php:941
1174
+ #: includes/functions.php:973
1175
  msgid "Toggle city editor"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1179
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1180
+ #: includes/functions.php:977 includes/functions.php:3190
1181
  msgid "Comma separated country ISO Alpha-2 codes"
1182
  msgstr ""
1183
 
1184
  #: includes/functions-check-now.php:968 includes/functions.old.php:949
1185
+ #: includes/functions.php:986
1186
  msgid "Blacklist countries"
1187
  msgstr ""
1188
 
1189
  #: includes/functions-check-now.php:972 includes/functions.old.php:953
1190
+ #: includes/functions.php:990
1191
  msgid "Whitelist countries"
1192
  msgstr ""
1193
 
1194
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1195
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1196
+ #: includes/functions.php:1437 includes/functions.php:1747
1197
  msgid "Enter license key"
1198
  msgstr ""
1199
 
1200
  #. translators: %s: Ad Inserter Pro
1201
  #: includes/functions-check-now.php:1388 includes/functions.old.php:1367
1202
+ #: includes/functions.php:1443
1203
  msgid ""
1204
  "%s license key is not set. Plugin functionality is limited and updates are "
1205
  "disabled."
1206
  msgstr ""
1207
 
1208
  #. translators: %s: Ad Inserter Pro
1209
+ #: includes/functions-check-now.php:1402 includes/functions.php:1457
1210
  msgid "Warning: %s plugin update server is not accessible"
1211
  msgstr ""
1212
 
1213
  #. translators: updates are not available
1214
+ #: includes/functions-check-now.php:1404 includes/functions.php:1459
1215
  msgid "updates"
1216
  msgstr ""
1217
 
1218
  #. translators: updates are not available
1219
+ #: includes/functions-check-now.php:1406 includes/functions.php:1461
1220
  msgid "are not available"
1221
  msgstr ""
1222
 
1223
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1224
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1225
+ #: includes/functions.php:1466 includes/functions.php:1756
1226
  msgid "Check license key"
1227
  msgstr ""
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
  #: includes/functions-check-now.php:1417 includes/functions.old.php:1385
1231
+ #: includes/functions.php:1472
1232
  msgid "Invalid %s license key."
1233
  msgstr ""
1234
 
1235
  #. translators: %s: Ad Inserter Pro
1236
  #: includes/functions-check-now.php:1426 includes/functions.old.php:1394
1237
+ #: includes/functions.php:1481
1238
  msgid "%s license expired. Plugin updates are disabled."
1239
  msgstr ""
1240
 
1241
  #: includes/functions-check-now.php:1427 includes/functions.old.php:1395
1242
+ #: includes/functions.php:1482
1243
  msgid "Renew license"
1244
  msgstr ""
1245
 
1246
  #. translators: %s: Ad Inserter Pro
1247
  #: includes/functions-check-now.php:1435 includes/functions.old.php:1403
1248
+ #: includes/functions.php:1490
1249
  msgid "%s license overused. Plugin updates are disabled."
1250
  msgstr ""
1251
 
1252
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1253
+ #: includes/functions.php:1491
1254
  msgid "Manage licenses"
1255
  msgstr ""
1256
 
1257
  #: includes/functions-check-now.php:1436 includes/functions.old.php:1404
1258
+ #: includes/functions.php:1491
1259
  msgid "Upgrade license"
1260
  msgstr ""
1261
 
1262
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1263
  #: includes/functions-check-now.php:1683 includes/functions.old.php:1610
1264
+ #: includes/functions.php:1749
1265
  msgid ""
1266
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1267
  "limited and updates are disabled."
1269
 
1270
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1271
  #: includes/functions-check-now.php:1692 includes/functions.old.php:1619
1272
+ #: includes/functions.php:1758
1273
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1274
  msgstr ""
1275
 
1276
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1277
  #: includes/functions-check-now.php:1708 includes/functions.old.php:1635
1278
+ #: includes/functions.php:1774
1279
  msgid ""
1280
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1281
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1283
 
1284
  #. translators: 1, 3: HTML tags, 2: percentage
1285
  #: includes/functions-check-now.php:1715 includes/functions.old.php:1642
1286
+ #: includes/functions.php:1781
1287
  msgid ""
1288
  "During the license period and 30 days after the license has expired we offer "
1289
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1290
  msgstr ""
1291
 
1292
  #: includes/functions-check-now.php:1725 includes/functions.old.php:1652
1293
+ #: includes/functions.php:1791
1294
  msgid "No, thank you."
1295
  msgstr ""
1296
 
1297
  #: includes/functions-check-now.php:1728 includes/functions.old.php:1655
1298
+ #: includes/functions.php:1794
1299
  msgid "Not now, maybe later."
1300
  msgstr ""
1301
 
1302
  #: includes/functions-check-now.php:1742 includes/functions.old.php:1669
1303
+ #: includes/functions.php:1808
1304
  msgid "Renew the licence"
1305
  msgstr ""
1306
 
1307
  #: includes/functions-check-now.php:1744 includes/functions.old.php:1671
1308
+ #: includes/functions.php:1810
1309
  msgid "Update license status"
1310
  msgstr ""
1311
 
1312
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1313
  #: includes/functions-check-now.php:1755 includes/functions.old.php:1682
1314
+ #: includes/functions.php:1821
1315
  msgid ""
1316
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1317
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1319
 
1320
  #. Translators: %s: HTML tag
1321
  #: includes/functions-check-now.php:1777 includes/functions.old.php:1704
1322
+ #: includes/functions.php:1873
1323
  msgid "Warning: %s MaxMind IP geolocation database not found."
1324
  msgstr ""
1325
 
1326
  #: includes/functions-check-now.php:2330 includes/functions.old.php:2255
1327
+ #: includes/functions.php:2494
1328
  msgid "Geolocation"
1329
  msgstr ""
1330
 
1331
  #: includes/functions-check-now.php:2334 includes/functions.old.php:2259
1332
+ #: includes/functions.php:2498 settings.php:4248
1333
  msgid "Exceptions"
1334
  msgstr ""
1335
 
1336
  #: includes/functions-check-now.php:2339 includes/functions.old.php:2264
1337
+ #: includes/functions.php:2503
1338
  msgid "Multisite"
1339
  msgstr ""
1340
 
1341
  #: includes/functions-check-now.php:2344 includes/functions.old.php:2269
1342
+ #: includes/functions.php:2508 settings.php:4254
1343
  msgid "Tracking"
1344
  msgstr ""
1345
 
1346
  #. translators: %d: days, hours, minutes
1347
  #: includes/functions-check-now.php:2375 includes/functions.old.php:2300
1348
+ #: includes/functions.php:2539
1349
  msgid "Scheduled in %d days %d hours %d minutes"
1350
  msgstr ""
1351
 
1352
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1353
  #. HTML code for long dash separator
1354
  #: includes/functions-check-now.php:2384 includes/functions.old.php:2309
1355
+ #: includes/functions.php:2548
1356
  msgid "Active %s expires in %d days %d hours %d minutes"
1357
  msgstr ""
1358
 
1359
  #: includes/functions-check-now.php:2388 includes/functions.old.php:2313
1360
+ #: includes/functions.php:2552
1361
  msgid "Expired"
1362
  msgstr ""
1363
 
1364
  #: includes/functions-check-now.php:2396 includes/functions.old.php:2321
1365
+ #: includes/functions.php:2578 settings.php:1427 settings.php:1442
1366
+ #: settings.php:1532 settings.php:2158
1367
  msgid "and"
1368
  msgstr ""
1369
 
1370
  #: includes/functions-check-now.php:2399 includes/functions.old.php:2324
1371
+ #: includes/functions.php:2560
1372
  msgid "fallback"
1373
  msgstr ""
1374
 
1375
  #: includes/functions-check-now.php:2400 includes/functions.old.php:2325
1376
+ #: includes/functions.php:2561
1377
  msgid "Block to be used when scheduling expires"
1378
  msgstr ""
1379
 
1380
  #: includes/functions-check-now.php:2425 includes/functions.old.php:2350
1381
+ #: includes/functions.php:2598
1382
  msgid "Load in iframe"
1383
  msgstr ""
1384
 
1385
  #: includes/functions-check-now.php:2429 includes/functions.old.php:2354
1386
+ #: includes/functions.php:2602 includes/placeholders.php:389
1387
  msgid "Width"
1388
  msgstr ""
1389
 
1390
  #: includes/functions-check-now.php:2430 includes/functions.old.php:2355
1391
+ #: includes/functions.php:2603
1392
  msgid "iframe width, empty means full width (100%)"
1393
  msgstr ""
1394
 
1395
  #: includes/functions-check-now.php:2436 includes/functions.old.php:2361
1396
+ #: includes/functions.php:2609 includes/placeholders.php:384
1397
  msgid "Height"
1398
  msgstr ""
1399
 
1400
  #: includes/functions-check-now.php:2437 includes/functions.old.php:2362
1401
+ #: includes/functions.php:2610
1402
  msgid "iframe height, empty means adjust it to iframe content height"
1403
  msgstr ""
1404
 
1405
  #: includes/functions-check-now.php:2444 includes/functions.old.php:2369
1406
+ #: includes/functions.php:2617
1407
  msgid "Ad label in iframe"
1408
  msgstr ""
1409
 
1410
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1411
+ #: includes/functions.php:2622
1412
  msgid "Preview iframe code"
1413
  msgstr ""
1414
 
1415
  #: includes/functions-check-now.php:2449 includes/functions.old.php:2374
1416
+ #: includes/functions.php:2622 includes/preview.php:2000 settings.php:1094
1417
+ #: settings.php:2879
1418
  msgid "Preview"
1419
  msgstr ""
1420
 
1421
  #: includes/functions-check-now.php:2463 includes/functions.old.php:2388
1422
+ #: includes/functions.php:2636 settings.php:4255
1423
  msgid "Limits"
1424
  msgstr ""
1425
 
1426
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1427
  #: includes/functions-check-now.php:4429 includes/functions.old.php:2393
1428
  #: includes/functions.old.php:4266 includes/functions.old.php:4329
1429
+ #: includes/functions.php:2641 includes/functions.php:4666
1430
+ #: includes/functions.php:4729 settings.php:2308
1431
  msgid "Ad Blocking"
1432
  msgstr ""
1433
 
1434
  #. translators: 1, 2 and 3, 4: HTML tags
1435
  #: includes/functions-check-now.php:2477 includes/functions.old.php:2402
1436
+ #: includes/functions.php:2650
1437
  msgid ""
1438
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1439
  "for tracking!"
1442
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1443
  #. header
1444
  #: includes/functions-check-now.php:2486 includes/functions.old.php:2411
1445
+ #: includes/functions.php:2659
1446
  msgid ""
1447
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1448
  "enabled and automatic insertion %6$s!"
1449
  msgstr ""
1450
 
1451
  #: includes/functions-check-now.php:2553 includes/functions.old.php:2478
1452
+ #: includes/functions.php:2725
1453
  msgid "Click fraud protection is globally disabled"
1454
  msgstr ""
1455
 
1456
  #: includes/functions-check-now.php:2557 includes/functions.old.php:2482
1457
+ #: includes/functions.php:2729
1458
  msgid "Max clicks per time period are not defined"
1459
  msgstr ""
1460
 
1461
  #. Translators: Max n impressions
1462
  #: includes/functions-check-now.php:2571 includes/functions.old.php:2496
1463
+ #: includes/functions.php:2743
1464
  msgid "General limits"
1465
  msgstr ""
1466
 
1468
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1469
  #: includes/functions-check-now.php:2674 includes/functions.old.php:2502
1470
  #: includes/functions.old.php:2514 includes/functions.old.php:2599
1471
+ #: includes/functions.php:2749 includes/functions.php:2761
1472
+ #: includes/functions.php:2846
1473
  msgid "Current value"
1474
  msgstr ""
1475
 
1489
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1490
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1491
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1492
+ #: includes/functions.php:2768 includes/functions.php:2778
1493
+ #: includes/functions.php:2797 includes/functions.php:2807
1494
+ #: includes/functions.php:2853 includes/functions.php:2862
1495
+ #: includes/functions.php:2880 includes/functions.php:2889 settings.php:2079
1496
  msgid "Max"
1497
  msgstr ""
1498
 
1499
  #: includes/functions-check-now.php:2597 includes/functions.old.php:2522
1500
+ #: includes/functions.php:2769
1501
  msgid ""
1502
  "Maximum number of impressions for this block. Empty means no general "
1503
  "impression limit."
1511
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1512
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1513
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1514
+ #: includes/functions.php:2771 includes/functions.php:2781
1515
+ #: includes/functions.php:2856 includes/functions.php:2865
1516
  msgid "impression"
1517
  msgid_plural "impressions"
1518
  msgstr[0] ""
1519
  msgstr[1] ""
1520
 
1521
  #: includes/functions-check-now.php:2607 includes/functions.old.php:2532
1522
+ #: includes/functions.php:2779
1523
  msgid ""
1524
  "Maximum number of impressions per time period. Empty means no time limit."
1525
  msgstr ""
1532
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1533
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1534
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1535
+ #: includes/functions.php:2785 includes/functions.php:2814
1536
+ #: includes/functions.php:2869 includes/functions.php:2896
1537
  msgid "per"
1538
  msgstr ""
1539
 
1540
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1541
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1542
+ #: includes/functions.php:2786 includes/functions.php:2815
1543
  msgid "Time period in days. Empty means no time limit."
1544
  msgstr ""
1545
 
1554
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1555
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1556
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1557
+ #: includes/functions.php:2788 includes/functions.php:2817
1558
+ #: includes/functions.php:2872 includes/functions.php:2899
1559
+ #: includes/functions.php:3005 includes/functions.php:3348 strings.php:201
1560
  #: strings.php:202 strings.php:203 strings.php:204 strings.php:205
1561
  #: strings.php:206
1562
  msgid "day"
1565
  msgstr[1] ""
1566
 
1567
  #: includes/functions-check-now.php:2626 includes/functions.old.php:2551
1568
+ #: includes/functions.php:2798
1569
  msgid ""
1570
  "Maximum number of clicks on this block. Empty means no general click limit."
1571
  msgstr ""
1579
  #: includes/functions-check-now.php:4577 includes/functions.old.php:2553
1580
  #: includes/functions.old.php:2563 includes/functions.old.php:2636
1581
  #: includes/functions.old.php:2645 includes/functions.old.php:4477
1582
+ #: includes/functions.php:2800 includes/functions.php:2810
1583
+ #: includes/functions.php:2883 includes/functions.php:2892
1584
+ #: includes/functions.php:4877
1585
  msgid "click"
1586
  msgid_plural "clicks"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
  #: includes/functions-check-now.php:2636 includes/functions.old.php:2561
1591
+ #: includes/functions.php:2808
1592
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1593
  msgstr ""
1594
 
1595
  #: includes/functions-check-now.php:2661 includes/functions.old.php:2586
1596
+ #: includes/functions.php:2833
1597
  msgid "Individual visitor limits"
1598
  msgstr ""
1599
 
1600
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1601
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1602
+ #: includes/functions.php:2837 includes/functions.php:2839
1603
  msgid ""
1604
  "When specified number of clicks on this block for a visitor will be reached "
1605
  "in the specified time period, all blocks that have click fraud protection "
1608
  msgstr ""
1609
 
1610
  #: includes/functions-check-now.php:2667 includes/functions.old.php:2592
1611
+ #: includes/functions.php:2839
1612
  msgid "Trigger click fraud protection"
1613
  msgstr ""
1614
 
1615
  #: includes/functions-check-now.php:2682 includes/functions.old.php:2607
1616
+ #: includes/functions.php:2854
1617
  msgid ""
1618
  "Maximum number of impressions of this block for each visitor. Empty means no "
1619
  "impression limit."
1620
  msgstr ""
1621
 
1622
  #: includes/functions-check-now.php:2691 includes/functions.old.php:2616
1623
+ #: includes/functions.php:2863
1624
  msgid ""
1625
  "Maximum number of impressions per time period for each visitor. Empty means "
1626
  "no impression limit per time period for visitors."
1628
 
1629
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1630
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1631
+ #: includes/functions.php:2870 includes/functions.php:2897
1632
  msgid ""
1633
  "Time period in days. Use decimal value (with decimal point) for shorter "
1634
  "periods. Empty means no time limit."
1635
  msgstr ""
1636
 
1637
  #: includes/functions-check-now.php:2709 includes/functions.old.php:2634
1638
+ #: includes/functions.php:2881
1639
  msgid ""
1640
  "Maximum number of clicks on this block for each visitor. Empty means no "
1641
  "click limit."
1642
  msgstr ""
1643
 
1644
  #: includes/functions-check-now.php:2718 includes/functions.old.php:2643
1645
+ #: includes/functions.php:2890
1646
  msgid ""
1647
  "Maximum number of clicks per time period for each visitor. Empty means no "
1648
  "click limit per time period for visitors."
1649
  msgstr ""
1650
 
1651
  #: includes/functions-check-now.php:2744 includes/functions.old.php:2669
1652
+ #: includes/functions.php:2916
1653
  msgid "When ad blocking is detected"
1654
  msgstr ""
1655
 
1656
  #: includes/functions-check-now.php:2753 includes/functions.old.php:2678
1657
+ #: includes/functions.php:2925
1658
  msgid "replacement"
1659
  msgstr ""
1660
 
1661
  #: includes/functions-check-now.php:2754 includes/functions.old.php:2679
1662
+ #: includes/functions.php:2926
1663
  msgid "Block to be shown when ad blocking is detected"
1664
  msgstr ""
1665
 
1666
  #: includes/functions-check-now.php:2755 includes/functions.old.php:2680
1667
+ #: includes/functions.php:2927
1668
  msgctxt "replacement"
1669
  msgid "None"
1670
  msgstr ""
1671
 
1672
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1673
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1674
+ #: includes/functions.php:2944 includes/functions.php:5934
1675
  msgid "Close button"
1676
  msgstr ""
1677
 
1678
  #: includes/functions-check-now.php:2824 includes/functions.old.php:2749
1679
+ #: includes/functions.php:2996
1680
  msgid "Auto close after"
1681
  msgstr ""
1682
 
1683
  #: includes/functions-check-now.php:2825 includes/functions.old.php:2750
1684
+ #: includes/functions.php:2997
1685
  msgid ""
1686
  "Time in seconds in which the ad will automatically close. Leave empty to "
1687
  "disable auto closing."
1689
 
1690
  #. Translators: Don't show for x days
1691
  #: includes/functions-check-now.php:2830 includes/functions.old.php:2755
1692
+ #: includes/functions.php:3002
1693
  msgid "Don't show for"
1694
  msgstr ""
1695
 
1696
  #: includes/functions-check-now.php:2831 includes/functions.old.php:2756
1697
+ #: includes/functions.php:3003
1698
  msgid ""
1699
  "Time in days in which closed ad will not be shown again. Use decimal value "
1700
  "(with decimal point) for shorter time period or leave empty to show it again "
1703
 
1704
  #. Translators: Delay showing for x pageviews
1705
  #: includes/functions-check-now.php:2851 includes/functions.old.php:2776
1706
+ #: includes/functions.php:3023
1707
  msgid "Delay showing for"
1708
  msgstr ""
1709
 
1710
  #: includes/functions-check-now.php:2852 includes/functions.old.php:2777
1711
+ #: includes/functions.php:3024
1712
  msgid ""
1713
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1714
  "empty to insert the code for the first pageview."
1718
  #. Translators: Show every x pageviews
1719
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1720
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1721
+ #: includes/functions.php:3026 includes/functions.php:3033
1722
  msgid "pageview"
1723
  msgid_plural "pageviews"
1724
  msgstr[0] ""
1726
 
1727
  #. Translators: Show every x pageviews
1728
  #: includes/functions-check-now.php:2858 includes/functions.old.php:2783
1729
+ #: includes/functions.php:3030
1730
  msgid "Show every"
1731
  msgid_plural "Show every"
1732
  msgstr[0] ""
1733
  msgstr[1] ""
1734
 
1735
  #: includes/functions-check-now.php:2859 includes/functions.old.php:2784
1736
+ #: includes/functions.php:3031
1737
  msgid ""
1738
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1739
  "for every pageview."
1740
  msgstr ""
1741
 
1742
  #: includes/functions-check-now.php:2878 includes/functions.old.php:2803
1743
+ #: includes/functions.php:3050
1744
  msgid "Lazy loading"
1745
  msgstr ""
1746
 
1747
  #. Translators: %s MaxMind
1748
  #: includes/functions-check-now.php:2935 includes/functions.old.php:2860
1749
+ #: includes/functions.php:3111
1750
  msgid "This product includes GeoLite2 data created by %s"
1751
  msgstr ""
1752
 
1753
  #: includes/functions-check-now.php:2946 includes/functions.old.php:2871
1754
+ #: includes/functions.php:3124
1755
  msgid "IP geolocation database"
1756
  msgstr ""
1757
 
1758
  #: includes/functions-check-now.php:2949 includes/functions.old.php:2874
1759
+ #: includes/functions.php:3127
1760
  msgid "Select IP geolocation database."
1761
  msgstr ""
1762
 
1763
  #: includes/functions-check-now.php:2960 includes/functions.old.php:2885
1764
+ #: includes/functions.php:3138
1765
  msgid "Automatic database updates"
1766
  msgstr ""
1767
 
1768
  #: includes/functions-check-now.php:2963 includes/functions.old.php:2888
1769
+ #: includes/functions.php:3141
1770
  msgid ""
1771
  "Automatically download and update free GeoLite2 IP geolocation database by "
1772
  "MaxMind"
1773
  msgstr ""
1774
 
1775
  #: includes/functions-check-now.php:2971 includes/functions.old.php:2896
1776
+ #: includes/functions.php:3158
1777
  msgid "Database"
1778
  msgstr ""
1779
 
1780
  #: includes/functions-check-now.php:2974 includes/functions.old.php:2899
1781
+ #: includes/functions.php:3161
1782
  msgid ""
1783
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1784
  "file"
1786
 
1787
  #. translators: %d: group number
1788
  #: includes/functions-check-now.php:2992 includes/functions.old.php:2917
1789
+ #: includes/functions.php:3179
1790
  msgid "Group %d"
1791
  msgstr ""
1792
 
1793
  #: includes/functions-check-now.php:2998 includes/functions.old.php:2923
1794
+ #: includes/functions.php:3185
1795
  msgid "countries"
1796
  msgstr ""
1797
 
1798
  #: includes/functions-check-now.php:3043 includes/functions.old.php:2968
1799
+ #: includes/functions.php:3230
1800
  msgid ""
1801
  "Enable impression and click tracking. You also need to enable tracking for "
1802
  "each block you want to track."
1803
  msgstr ""
1804
 
1805
  #: includes/functions-check-now.php:3050 includes/functions.old.php:2975
1806
+ #: includes/functions.php:3237
1807
  msgid "Generate report"
1808
  msgstr ""
1809
 
1810
  #: includes/functions-check-now.php:3058 includes/functions.old.php:2983
1811
+ #: includes/functions.php:3245
1812
  msgid "Impression and Click Tracking"
1813
  msgstr ""
1814
 
1815
  #: includes/functions-check-now.php:3059 includes/functions.old.php:2984
1816
+ #: includes/functions.php:3246 settings.php:2767
1817
  msgctxt "ad blocking detection"
1818
  msgid "NOT ENABLED"
1819
  msgstr ""
1820
 
1821
  #: includes/functions-check-now.php:3075 includes/functions.old.php:3000
1822
+ #: includes/functions.php:3262
1823
  msgid "Internal"
1824
  msgstr ""
1825
 
1826
  #: includes/functions-check-now.php:3079 includes/functions.old.php:3004
1827
+ #: includes/functions.php:3266
1828
  msgid "Track impressions and clicks with internal tracking and statistics"
1829
  msgstr ""
1830
 
1831
  #: includes/functions-check-now.php:3084 includes/functions.old.php:3009
1832
+ #: includes/functions.php:3271
1833
  msgid "External"
1834
  msgstr ""
1835
 
1836
  #: includes/functions-check-now.php:3088 includes/functions.old.php:3013
1837
+ #: includes/functions.php:3275
1838
  msgid ""
1839
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1840
  "code installed)"
1841
  msgstr ""
1842
 
1843
  #: includes/functions-check-now.php:3093 includes/functions.old.php:3018
1844
+ #: includes/functions.php:3280
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
  #: includes/functions-check-now.php:3099 includes/functions.old.php:3024
1849
+ #: includes/functions.php:3286
1850
  msgid "Track Pageviews by Device (as configured for viewports)"
1851
  msgstr ""
1852
 
1853
  #: includes/functions-check-now.php:3109 includes/functions.old.php:3034
1854
+ #: includes/functions.php:3296
1855
  msgid "Track for Logged in Users"
1856
  msgstr ""
1857
 
1858
  #: includes/functions-check-now.php:3115 includes/functions.old.php:3040
1859
+ #: includes/functions.php:3302
1860
  msgid "Track impressions and clicks from logged in users"
1861
  msgstr ""
1862
 
1863
  #: includes/functions-check-now.php:3125 includes/functions.old.php:3050
1864
+ #: includes/functions.php:3312
1865
  msgid "Click Detection"
1866
  msgstr ""
1867
 
1868
  #: includes/functions-check-now.php:3131 includes/functions.old.php:3056
1869
+ #: includes/functions.php:3318
1870
  msgid ""
1871
  "Standard method detects clicks only on banners with links, Advanced method "
1872
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1873
  msgstr ""
1874
 
1875
  #: includes/functions-check-now.php:3150 includes/functions.old.php:3075
1876
+ #: includes/functions.php:3337
1877
  msgid "Click fraud protection"
1878
  msgstr ""
1879
 
1880
  #: includes/functions-check-now.php:3154 includes/functions.old.php:3079
1881
+ #: includes/functions.php:3341
1882
  msgid "Globally enable click fraud protection for selected blocks."
1883
  msgstr ""
1884
 
1885
  #: includes/functions-check-now.php:3160 includes/functions.old.php:3085
1886
+ #: includes/functions.php:3347
1887
  msgid "Protection time"
1888
  msgstr ""
1889
 
1890
  #: includes/functions-check-now.php:3161 includes/functions.old.php:3086
1891
+ #: includes/functions.php:3348
1892
  msgid ""
1893
  "Time period in days in which blocks with enabled click fraud protection will "
1894
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1895
  msgstr ""
1896
 
1897
  #: includes/functions-check-now.php:3180 includes/functions.old.php:3105
1898
+ #: includes/functions.php:3367
1899
  msgid "Report header image"
1900
  msgstr ""
1901
 
1902
  #: includes/functions-check-now.php:3183 includes/functions.old.php:3108
1903
+ #: includes/functions.php:3370
1904
  msgid ""
1905
  "Image or logo to be displayed in the header of the statistins report. "
1906
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1908
  msgstr ""
1909
 
1910
  #: includes/functions-check-now.php:3184 includes/functions.old.php:3109
1911
+ #: includes/functions.php:3371 strings.php:232
1912
  msgid "Select or upload header image"
1913
  msgstr ""
1914
 
1915
  #: includes/functions-check-now.php:3189 includes/functions.old.php:3114
1916
+ #: includes/functions.php:3376
1917
  msgid "Report header title"
1918
  msgstr ""
1919
 
1920
  #: includes/functions-check-now.php:3192 includes/functions.old.php:3117
1921
+ #: includes/functions.php:3379
1922
  msgid ""
1923
  "Title to be displayed in the header of the statistics report. Text or HTML "
1924
  "code, clear to reset to default text."
1925
  msgstr ""
1926
 
1927
  #: includes/functions-check-now.php:3197 includes/functions.old.php:3122
1928
+ #: includes/functions.php:3384
1929
  msgid "Report header description"
1930
  msgstr ""
1931
 
1932
  #: includes/functions-check-now.php:3200 includes/functions.old.php:3125
1933
+ #: includes/functions.php:3387
1934
  msgid ""
1935
  "Description to be displayed in the header of the statistics report. Text or "
1936
  "HTML code, clear to reset to default text."
1937
  msgstr ""
1938
 
1939
  #: includes/functions-check-now.php:3205 includes/functions.old.php:3130
1940
+ #: includes/functions.php:3392
1941
  msgid "Report footer"
1942
  msgstr ""
1943
 
1944
  #: includes/functions-check-now.php:3208 includes/functions.old.php:3133
1945
+ #: includes/functions.php:3395
1946
  msgid ""
1947
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1948
  "to default text."
1949
  msgstr ""
1950
 
1951
  #: includes/functions-check-now.php:3213 includes/functions.old.php:3138
1952
+ #: includes/functions.php:3400
1953
  msgid "Public report key"
1954
  msgstr ""
1955
 
1956
  #: includes/functions-check-now.php:3216 includes/functions.old.php:3141
1957
+ #: includes/functions.php:3403
1958
  msgid "String to generate unique report IDs. Clear to reset to default value."
1959
  msgstr ""
1960
 
1961
  #: includes/functions-check-now.php:3248 includes/functions.old.php:3173
1962
+ #: includes/functions.php:3466
1963
  msgid "Are you sure you want to clear all exceptions for block"
1964
  msgstr ""
1965
 
1966
  #: includes/functions-check-now.php:3249 includes/functions.old.php:3174
1967
+ #: includes/functions.php:3467 settings.php:1197
1968
  msgid "Clear all exceptions for block"
1969
  msgstr ""
1970
 
1971
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1972
+ #: includes/functions.php:3474
1973
  msgid "Are you sure you want to clear all exceptions?"
1974
  msgstr ""
1975
 
1976
  #: includes/functions-check-now.php:3256 includes/functions.old.php:3181
1977
+ #: includes/functions.php:3474
1978
  msgid "Clear all exceptions for all blocks"
1979
  msgstr ""
1980
 
1981
  #: includes/functions-check-now.php:3261 includes/functions.old.php:3186
1982
+ #: includes/functions.php:3479 settings.php:3846 settings.php:4331
1983
  msgid "Type"
1984
  msgstr ""
1985
 
1986
  #: includes/functions-check-now.php:3279 includes/functions.old.php:3204
1987
+ #: includes/functions.php:3497
1988
  msgid "View"
1989
  msgstr ""
1990
 
1991
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1992
  #: includes/functions-check-now.php:3291 includes/functions.old.php:3205
1993
  #: includes/functions.old.php:3212 includes/functions.old.php:3216
1994
+ #: includes/functions.php:3498 includes/functions.php:3505
1995
+ #: includes/functions.php:3509 includes/placeholders.php:353
1996
+ #: includes/preview.php:2306 settings.php:1331 settings.php:3606
1997
  msgid "Edit"
1998
  msgstr ""
1999
 
2000
  #: includes/functions-check-now.php:3310 includes/functions.old.php:3235
2001
+ #: includes/functions.php:3528
2002
  msgid "Are you sure you want to clear all exceptions for"
2003
  msgstr ""
2004
 
2005
  #: includes/functions-check-now.php:3311 includes/functions.old.php:3236
2006
+ #: includes/functions.php:3529
2007
  msgid "Clear all exceptions for"
2008
  msgstr ""
2009
 
2010
  #: includes/functions-check-now.php:3324 includes/functions.old.php:3249
2011
+ #: includes/functions.php:3542
2012
  msgid "No exceptions"
2013
  msgstr ""
2014
 
2015
  #. translators: %s: Ad Inserter Pro
2016
  #: includes/functions-check-now.php:3335 includes/functions.old.php:3260
2017
+ #: includes/functions.php:3553
2018
  msgid "%s options for network blogs"
2019
  msgstr ""
2020
 
2021
  #. translators: %s: Ad Inserter Pro
2022
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2023
+ #: includes/functions.php:3558
2024
  msgid "Enable %s widgets for sub-sites"
2025
  msgstr ""
2026
 
2027
  #: includes/functions-check-now.php:3340 includes/functions.old.php:3265
2028
+ #: includes/functions.php:3558
2029
  msgid "Widgets"
2030
  msgstr ""
2031
 
2032
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2033
+ #: includes/functions.php:3563
2034
  msgid "Enable PHP code processing for sub-sites"
2035
  msgstr ""
2036
 
2037
  #: includes/functions-check-now.php:3345 includes/functions.old.php:3270
2038
+ #: includes/functions.php:3563
2039
  msgid "PHP Processing"
2040
  msgstr ""
2041
 
2042
  #. translators: %s: Ad Inserter Pro
2043
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2044
+ #: includes/functions.php:3568
2045
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2046
  msgstr ""
2047
 
2048
  #: includes/functions-check-now.php:3350 includes/functions.old.php:3275
2049
+ #: includes/functions.php:3568
2050
  msgid "Post/Page exceptions"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Ad Inserter Pro
2054
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2055
+ #: includes/functions.php:3573
2056
  msgid "Enable %s settings page for sub-sites"
2057
  msgstr ""
2058
 
2059
  #: includes/functions-check-now.php:3355 includes/functions.old.php:3280
2060
+ #: includes/functions.php:3573
2061
  msgid "Settings page"
2062
  msgstr ""
2063
 
2064
  #. translators: %s: Ad Inserter Pro
2065
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2066
+ #: includes/functions.php:3578
2067
  msgid "Enable %s settings of main site to be used for all blogs"
2068
  msgstr ""
2069
 
2070
  #: includes/functions-check-now.php:3360 includes/functions.old.php:3285
2071
+ #: includes/functions.php:3578
2072
  msgid "Main site settings used for all blogs"
2073
  msgstr ""
2074
 
2075
  #: includes/functions-check-now.php:3371 includes/functions.old.php:3296
2076
+ #: includes/functions.php:3594 settings.php:2766
2077
  msgid "Ad Blocking Detection"
2078
  msgstr ""
2079
 
2080
  #: includes/functions-check-now.php:3377 includes/functions.old.php:3302
2081
+ #: includes/functions.php:3600
2082
  msgid ""
2083
  "Standard method is reliable but should be used only if Advanced method does "
2084
  "not work. Advanced method recreates files used for detection with random "
2089
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2090
  #: includes/functions-check-now.php:4139 includes/functions.old.php:3929
2091
  #: includes/functions.old.php:4019 includes/functions.old.php:4039
2092
+ #: includes/functions.php:4297 includes/functions.php:4419
2093
+ #: includes/functions.php:4439
2094
  msgid "AD BLOCKING"
2095
  msgstr ""
2096
 
2098
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2099
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
2100
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
2101
+ #: includes/functions.php:4298 includes/functions.php:4344
2102
+ #: includes/functions.php:4413 includes/functions.php:4440
2103
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2104
  msgstr ""
2105
 
2106
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2107
  #: includes/functions-check-now.php:4146 includes/functions.old.php:3933
2108
  #: includes/functions.old.php:4012 includes/functions.old.php:4046
2109
+ #: includes/functions.php:4301 includes/functions.php:4412
2110
+ #: includes/functions.php:4446
2111
  msgid "NO AD BLOCKING"
2112
  msgstr ""
2113
 
2114
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2115
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
2116
+ #: includes/functions.php:4343 includes/functions.php:4350
2117
  msgid "AD BLOCKING REPLACEMENT"
2118
  msgstr ""
2119
 
2120
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2121
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
2122
+ #: includes/functions.php:4519 includes/functions.php:4728
2123
  msgid "Pageviews"
2124
  msgstr ""
2125
 
2126
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2127
+ #: includes/functions.php:4665
2128
  msgctxt "Version"
2129
  msgid "Unknown"
2130
  msgstr ""
2131
 
2132
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2133
+ #: includes/functions.php:4665
2134
  msgctxt "Times"
2135
  msgid "DISPLAYED"
2136
  msgstr ""
2137
 
2138
  #: includes/functions-check-now.php:4365 includes/functions.old.php:4265
2139
+ #: includes/functions.php:4665
2140
  msgid "No version"
2141
  msgstr ""
2142
 
2143
  #: includes/functions-check-now.php:4366 includes/functions.old.php:4266
2144
+ #: includes/functions.php:4666
2145
  msgctxt "Times"
2146
  msgid "BLOCKED"
2147
  msgstr ""
2148
 
2149
  #: includes/functions-check-now.php:4428 includes/functions.old.php:4328
2150
+ #: includes/functions.php:4728
2151
  msgid "Impressions"
2152
  msgstr ""
2153
 
2154
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2155
  #: includes/functions-check-now.php:4485 includes/functions.old.php:4329
2156
  #: includes/functions.old.php:4330 includes/functions.old.php:4385
2157
+ #: includes/functions.php:4729 includes/functions.php:4730
2158
+ #: includes/functions.php:4785
2159
  msgid "Clicks"
2160
  msgstr ""
2161
 
2162
  #: includes/functions-check-now.php:4430 includes/functions.old.php:4330
2163
+ #: includes/functions.php:4730
2164
  msgid "events"
2165
  msgstr ""
2166
 
2167
  #: includes/functions-check-now.php:4431 includes/functions.old.php:4331
2168
+ #: includes/functions.php:4731
2169
  msgid "Ad Blocking Share"
2170
  msgstr ""
2171
 
2172
  #. translators: CTR as Click Through Rate
2173
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2174
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2175
+ #: includes/functions.php:4731 includes/functions.php:4791
2176
  msgid "CTR"
2177
  msgstr ""
2178
 
2179
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2180
+ #: includes/functions.php:4873
2181
  msgid "pageviews"
2182
  msgid_plural "pageviews"
2183
  msgstr[0] ""
2184
  msgstr[1] ""
2185
 
2186
  #: includes/functions-check-now.php:4573 includes/functions.old.php:4473
2187
+ #: includes/functions.php:4873
2188
  msgid "impressions"
2189
  msgid_plural "impressions"
2190
  msgstr[0] ""
2191
  msgstr[1] ""
2192
 
2193
  #: includes/functions-check-now.php:4577 includes/functions.old.php:4477
2194
+ #: includes/functions.php:4877
2195
  msgid "event"
2196
  msgid_plural "events"
2197
  msgstr[0] ""
2198
  msgstr[1] ""
2199
 
2200
  #: includes/functions-check-now.php:4672 includes/functions.old.php:4572
2201
+ #: includes/functions.php:4972
2202
  msgctxt "Pageviews / Impressions"
2203
  msgid "Average"
2204
  msgstr ""
2205
 
2206
  #: includes/functions-check-now.php:4693 includes/functions.old.php:4593
2207
+ #: includes/functions.php:4993
2208
  msgctxt "Ad Blocking / Clicks"
2209
  msgid "Average"
2210
  msgstr ""
2211
 
2212
  #: includes/functions-check-now.php:4717 includes/functions.old.php:4617
2213
+ #: includes/functions.php:5017
2214
  msgctxt "Ad Blocking Share / CTR"
2215
  msgid "Average"
2216
  msgstr ""
2219
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2220
  #: includes/functions-check-now.php:5334 includes/functions.old.php:4799
2221
  #: includes/functions.old.php:4891 includes/functions.old.php:5207
2222
+ #: includes/functions.php:5200 includes/functions.php:5292
2223
+ #: includes/functions.php:5635 strings.php:186
2224
  msgid "%s Report"
2225
  msgstr ""
2226
 
2227
  #: includes/functions-check-now.php:5240 includes/functions.old.php:5113
2228
+ #: includes/functions.php:5541
2229
  msgid "for last month"
2230
  msgstr ""
2231
 
2232
  #: includes/functions-check-now.php:5245 includes/functions.old.php:5118
2233
+ #: includes/functions.php:5546
2234
  msgid "for this month"
2235
  msgstr ""
2236
 
2237
  #: includes/functions-check-now.php:5250 includes/functions.old.php:5123
2238
+ #: includes/functions.php:5551
2239
  msgid "for this year"
2240
  msgstr ""
2241
 
2242
  #: includes/functions-check-now.php:5255 includes/functions.old.php:5128
2243
+ #: includes/functions.php:5556
2244
  msgid "for the last 15 days"
2245
  msgstr ""
2246
 
2247
  #: includes/functions-check-now.php:5260 includes/functions.old.php:5133
2248
+ #: includes/functions.php:5561
2249
  msgid "for the last 30 days"
2250
  msgstr ""
2251
 
2252
  #: includes/functions-check-now.php:5265 includes/functions.old.php:5138
2253
+ #: includes/functions.php:5566
2254
  msgid "for the last 90 days"
2255
  msgstr ""
2256
 
2257
  #: includes/functions-check-now.php:5270 includes/functions.old.php:5143
2258
+ #: includes/functions.php:5571
2259
  msgid "for the last 180 days"
2260
  msgstr ""
2261
 
2262
  #: includes/functions-check-now.php:5275 includes/functions.old.php:5148
2263
+ #: includes/functions.php:5576
2264
  msgid "for the last 365 days"
2265
  msgstr ""
2266
 
2267
  #. translators: %s: Ad Inserter Pro
2268
+ #: includes/functions.php:556
2269
  msgid "Invalid %s version. Continue?"
2270
  msgstr ""
2271
 
2272
+ #: includes/functions.php:946 includes/functions.php:982 settings.php:1658
2273
+ #: settings.php:1689 settings.php:1720 settings.php:1751 settings.php:1782
2274
+ #: settings.php:1813 settings.php:1843 settings.php:1873
2275
  msgid "Click to select black or white list"
2276
  msgstr ""
2277
 
2278
  #. translators: %s: Ad Inserter Pro
2279
+ #: includes/functions.php:1499
2280
  msgid "Invalid %s version."
2281
  msgstr ""
2282
 
2283
+ #: includes/functions.php:1500
2284
  msgid "Check license"
2285
  msgstr ""
2286
 
2287
+ #: includes/functions.php:1512
2288
  msgid "License"
2289
  msgstr ""
2290
 
2291
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2292
+ #: includes/functions.php:1833
2293
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2294
  msgstr ""
2295
 
2296
+ #. Translators: %s: HTML tags
2297
+ #: includes/functions.php:1878
2298
+ msgid ""
2299
+ "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2300
+ "account %s and create license key."
2301
+ msgstr ""
2302
+
2303
+ #: includes/functions.php:2576
2304
  msgid "Start date"
2305
  msgstr ""
2306
 
2307
+ #: includes/functions.php:2576
2308
  msgid "Enter date in format yyyy-mm-dd"
2309
  msgstr ""
2310
 
2311
+ #: includes/functions.php:2577
2312
  msgid "Start time"
2313
  msgstr ""
2314
 
2315
+ #: includes/functions.php:2577
2316
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2317
  msgstr ""
2318
 
2319
+ #: includes/functions.php:2579
2320
  msgid "End date"
2321
  msgstr ""
2322
 
2323
+ #: includes/functions.php:2580
2324
  msgid "End time"
2325
  msgstr ""
2326
 
2327
+ #: includes/functions.php:2583
2328
  msgid "Select wanted days in week"
2329
  msgstr ""
2330
 
2331
+ #. Translators: %s HTML tags
2332
+ #: includes/functions.php:3113
2333
+ msgid "Create and manage %s MaxMind license key %s"
2334
+ msgstr ""
2335
+
2336
+ #: includes/functions.php:3149
2337
+ msgid "MaxMind license key"
2338
+ msgstr ""
2339
+
2340
+ #: includes/functions.php:3152
2341
+ msgid "Enter license key obtained from MaxMind"
2342
+ msgstr ""
2343
+
2344
+ #: includes/functions.php:3418
2345
+ msgid "Event category"
2346
+ msgstr ""
2347
+
2348
+ #: includes/functions.php:3421
2349
+ msgid ""
2350
+ "Category name used for external tracking events. You can use tags to get the "
2351
+ "event, the number or the name of the block that caused the event."
2352
+ msgstr ""
2353
+
2354
+ #: includes/functions.php:3426
2355
+ msgid "Event action"
2356
+ msgstr ""
2357
+
2358
+ #: includes/functions.php:3429
2359
+ msgid ""
2360
+ "Action name used for external tracking events. You can use tags to get the "
2361
+ "event, the number or the name of the block that caused the event."
2362
+ msgstr ""
2363
+
2364
+ #: includes/functions.php:3434
2365
+ msgid "Event label"
2366
+ msgstr ""
2367
+
2368
  #: includes/functions.php:3437
2369
+ msgid ""
2370
+ "Label name used for external tracking events. You can use tags to get the "
2371
+ "event, the number or the name of the block that caused the event."
2372
+ msgstr ""
2373
+
2374
+ #. translators: %s: Ad Inserter Pro
2375
+ #: includes/functions.php:3583
2376
  msgid "Show link to %s settings page for each site on the Sites page"
2377
  msgstr ""
2378
 
2379
  #. translators: %s: Ad Inserter Pro
2380
+ #: includes/functions.php:3583
2381
  msgid "Show link to %s on the Sites page"
2382
  msgstr ""
2383
 
2384
+ #: includes/functions.php:5147
2385
+ msgid "File %s missing."
2386
+ msgstr ""
2387
+
2388
  #: includes/placeholders.php:20
2389
  msgid "Custom"
2390
  msgstr ""
2409
  msgid "Placeholder"
2410
  msgstr ""
2411
 
2412
+ #: includes/placeholders.php:363 settings.php:940 settings.php:4332
2413
  msgid "Size"
2414
  msgstr ""
2415
 
2517
  msgid "Ad Blocking Detected Message Preview"
2518
  msgstr ""
2519
 
2520
+ #: includes/preview-adb.php:348 settings.php:2892
2521
  msgid "Message CSS"
2522
  msgstr ""
2523
 
2524
+ #: includes/preview-adb.php:353 settings.php:2900
2525
  msgid "Overlay CSS"
2526
  msgstr ""
2527
 
2557
  msgid "background"
2558
  msgstr ""
2559
 
2560
+ #: includes/preview.php:2110 includes/preview.php:2261 settings.php:1292
2561
  msgid "Alignment"
2562
  msgstr ""
2563
 
2655
  "the values to those of the current block."
2656
  msgstr ""
2657
 
2658
+ #: settings.php:188 settings.php:1181
2659
  msgid ""
2660
  "Settings for individual exceptions have been updated. Please check all "
2661
  "blocks that have exceptions and and then save settings."
2665
  msgid "Online documentation"
2666
  msgstr ""
2667
 
2668
+ #: settings.php:234 settings.php:775 settings.php:2275
2669
  msgid "Show AdSense ad units"
2670
  msgstr ""
2671
 
2673
  msgid "Edit ads.txt file"
2674
  msgstr ""
2675
 
2676
+ #: settings.php:246 settings.php:1124
2677
  msgid "Check theme for available positions for automatic insertion"
2678
  msgstr ""
2679
 
2798
  msgid "General Settings"
2799
  msgstr ""
2800
 
2801
+ #: settings.php:723 settings.php:2619 settings.php:2686 settings.php:2872
2802
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2803
  msgstr ""
2804
 
2805
+ #: settings.php:730
2806
  msgid "Toggle tools"
2807
  msgstr ""
2808
 
2809
+ #: settings.php:738
2810
  msgid "Process PHP code in block"
2811
  msgstr ""
2812
 
2813
+ #: settings.php:745
2814
  msgid "Disable insertion of this block"
2815
  msgstr ""
2816
 
2817
+ #: settings.php:757
2818
  msgid "Toggle code generator"
2819
  msgstr ""
2820
 
2821
+ #: settings.php:761
2822
  msgid "Toggle rotation editor"
2823
  msgstr ""
2824
 
2825
+ #: settings.php:765
2826
  msgid "Open visual HTML editor"
2827
  msgstr ""
2828
 
2829
+ #: settings.php:784
2830
  msgid "Clear block"
2831
  msgstr ""
2832
 
2833
+ #: settings.php:789 settings.php:4203
2834
  msgid "Copy block"
2835
  msgstr ""
2836
 
2837
+ #: settings.php:793
2838
  msgid "Paste name"
2839
  msgstr ""
2840
 
2841
+ #: settings.php:797
2842
  msgid "Paste code"
2843
  msgstr ""
2844
 
2845
+ #: settings.php:801
2846
  msgid "Paste settings"
2847
  msgstr ""
2848
 
2849
+ #: settings.php:805
2850
  msgid "Paste block (name, code and settings)"
2851
  msgstr ""
2852
 
2853
+ #: settings.php:824
2854
  msgid "Rotation groups"
2855
  msgstr ""
2856
 
2857
+ #: settings.php:828
2858
  msgid "Remove option"
2859
  msgstr ""
2860
 
2861
+ #: settings.php:832
2862
  msgid "Add option"
2863
  msgstr ""
2864
 
2865
+ #: settings.php:847
2866
  msgid "Import code"
2867
  msgstr ""
2868
 
2869
+ #: settings.php:851
2870
  msgid "Generate code"
2871
  msgstr ""
2872
 
2873
+ #: settings.php:856
2874
  msgid "Banner"
2875
  msgstr ""
2876
 
2877
+ #: settings.php:867
2878
  msgid "Image"
2879
  msgstr ""
2880
 
2881
+ #: settings.php:875
2882
  msgid "Link"
2883
  msgstr ""
2884
 
2885
+ #: settings.php:886
2886
  msgid "Open link in a new tab"
2887
  msgstr ""
2888
 
2889
+ #: settings.php:887
2890
  msgid "Select Image"
2891
  msgstr ""
2892
 
2893
+ #: settings.php:888
2894
  msgid "Select Placeholder"
2895
  msgstr ""
2896
 
2897
+ #: settings.php:900
2898
  msgid "Comment"
2899
  msgstr ""
2900
 
2901
+ #: settings.php:909
2902
  msgctxt "AdSense"
2903
  msgid "Publisher ID"
2904
  msgstr ""
2905
 
2906
+ #: settings.php:918
2907
  msgctxt "AdSense"
2908
  msgid "Ad Slot ID"
2909
  msgstr ""
2910
 
2911
+ #: settings.php:927
2912
  msgid "Ad Type"
2913
  msgstr ""
2914
 
2915
+ #: settings.php:952
2916
  msgid "AMP Ad"
2917
  msgstr ""
2918
 
2919
+ #: settings.php:970
2920
  msgid "Show ad units from your AdSense account"
2921
  msgstr ""
2922
 
2923
+ #: settings.php:970
2924
  msgid "AdSense ad units"
2925
  msgstr ""
2926
 
2927
+ #: settings.php:987
2928
  msgctxt "AdSense"
2929
  msgid "Layout"
2930
  msgstr ""
2931
 
2932
+ #: settings.php:996
2933
  msgctxt "AdSense"
2934
  msgid "Layout Key"
2935
  msgstr ""
2936
 
2937
+ #: settings.php:1006
2938
  msgid "Full width"
2939
  msgstr ""
2940
 
2941
+ #: settings.php:1008
2942
  msgctxt "Full width"
2943
  msgid "Enabled"
2944
  msgstr ""
2945
 
2946
+ #: settings.php:1009
2947
  msgctxt "Full width"
2948
  msgid "Disabled"
2949
  msgstr ""
2950
 
2951
+ #: settings.php:1090
2952
  msgid ""
2953
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2954
  "Cookie or Referer (domain)"
2955
  msgstr ""
2956
 
2957
+ #: settings.php:1090
2958
  msgid "Lists"
2959
  msgstr ""
2960
 
2961
+ #: settings.php:1091
2962
  msgid "Widget, Shortcode and PHP function call"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:1091
2966
  msgid "Manual"
2967
  msgstr ""
2968
 
2969
+ #: settings.php:1092
2970
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2971
  msgstr ""
2972
 
2973
+ #: settings.php:1092
2974
  msgid "Devices"
2975
  msgstr ""
2976
 
2977
+ #: settings.php:1093
2978
  msgid ""
2979
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2980
  "feeds), Filter, Scheduling, General tag"
2981
  msgstr ""
2982
 
2983
+ #: settings.php:1093
2984
  msgid "Misc"
2985
  msgstr ""
2986
 
2987
+ #: settings.php:1094
2988
  msgid "Preview code and alignment"
2989
  msgstr ""
2990
 
2991
+ #: settings.php:1097 settings.php:2259
2992
  msgid ""
2993
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2994
  "editor is active before saving settings."
2995
  msgstr ""
2996
 
2997
+ #: settings.php:1110 settings.php:1111
2998
  msgid "Enable insertion on posts"
2999
  msgstr ""
3000
 
3001
+ #: settings.php:1111 settings.php:3418
3002
  msgid "Posts"
3003
  msgstr ""
3004
 
3005
+ #: settings.php:1115 settings.php:1116
3006
  msgid ""
3007
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3008
  "page or theme homepage (available positions may depend on hooks used by the "
3009
  "theme)"
3010
  msgstr ""
3011
 
3012
+ #: settings.php:1116 settings.php:3420
3013
  msgid "Homepage"
3014
  msgstr ""
3015
 
3016
+ #: settings.php:1120 settings.php:1121
3017
  msgid "Enable insertion on category blog pages (including sub-pages)"
3018
  msgstr ""
3019
 
3020
+ #: settings.php:1121 settings.php:3421
3021
  msgid "Category pages"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:1131 settings.php:1132
3025
  msgid "Enable insertion on static pages"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:1132 settings.php:3419
3029
  msgid "Static pages"
3030
  msgstr ""
3031
 
3032
+ #: settings.php:1136 settings.php:1137
3033
  msgid "Enable insertion on search blog pages"
3034
  msgstr ""
3035
 
3036
+ #: settings.php:1137 settings.php:3423
3037
  msgid "Search pages"
3038
  msgstr ""
3039
 
3040
+ #: settings.php:1141 settings.php:1142
3041
  msgid "Enable insertion on tag or archive blog pages"
3042
  msgstr ""
3043
 
3044
+ #: settings.php:1145
3045
  msgid "Toggle settings for default insertion and list of individual exceptions"
3046
  msgstr ""
3047
 
3048
+ #: settings.php:1157
3049
  msgid ""
3050
  "Enable individual post/page exceptions for insertion of this block. They can "
3051
  "be configured on the individual post/page editor page (in the settings below "
3052
  "the editor)."
3053
  msgstr ""
3054
 
3055
+ #: settings.php:1158
3056
  msgid ""
3057
  "Enable individual post/page exceptions for insertion of this block. When "
3058
  "enabled they can be configured on the individual post/page editor page (in "
3059
  "the settings below the editor)."
3060
  msgstr ""
3061
 
3062
+ #: settings.php:1158
3063
  msgid "Use exceptions for individual posts or pages to change insertion"
3064
  msgstr ""
3065
 
3066
  #. Translators: Enabled means...
3067
+ #: settings.php:1166
3068
  msgid ""
3069
  "means the insertion for this block is enabled by default and disabled for "
3070
  "exceptions."
3071
  msgstr ""
3072
 
3073
  #. Translators: Disabled means...
3074
+ #: settings.php:1167
3075
  msgid ""
3076
  "means the insertion for this block is disabled by default and enabled for "
3077
  "exceptions."
3078
  msgstr ""
3079
 
3080
+ #: settings.php:1168
3081
  msgid ""
3082
  "When individual post/page exceptions are enabled they can be configured on "
3083
  "the individual post/page editor page (in the settings below the editor)."
3084
  msgstr ""
3085
 
3086
+ #: settings.php:1176
3087
  msgid ""
3088
  "No exception for post or static page defined. Block will not be inserted."
3089
  msgstr ""
3090
 
3091
+ #: settings.php:1194
3092
  msgctxt "post"
3093
  msgid "Type"
3094
  msgstr ""
3095
 
3096
  #. translators: %d: block number
3097
+ #: settings.php:1196
3098
  msgid "Are you sure you want to clear all exceptions for block %d?"
3099
  msgstr ""
3100
 
3101
+ #: settings.php:1223 settings.php:1371 settings.php:2033
3102
  msgid "Insertion"
3103
  msgstr ""
3104
 
3105
+ #: settings.php:1261
3106
  msgid ""
3107
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3108
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3112
  "negative number means counting from the opposite direction"
3113
  msgstr ""
3114
 
3115
+ #: settings.php:1262
3116
  msgid ""
3117
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3118
  "means every N images, empty means all images, 0 means random image, value "
3122
  "direction"
3123
  msgstr ""
3124
 
3125
+ #: settings.php:1275
3126
  msgid ""
3127
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3128
  "numbers, %N means every N excerpts, empty means all excerpts"
3129
  msgstr ""
3130
 
3131
+ #: settings.php:1276
3132
  msgid ""
3133
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3134
  "numbers, %N means every N posts, empty means all posts"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:1277
3138
  msgid ""
3139
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3140
  "numbers, %N means every N comments, empty means all comments"
3141
  msgstr ""
3142
 
3143
+ #: settings.php:1284
3144
  msgid "Toggle paragraph counting settings"
3145
  msgstr ""
3146
 
3147
+ #: settings.php:1285
3148
  msgid "Toggle paragraph clearance settings"
3149
  msgstr ""
3150
 
3151
+ #: settings.php:1288
3152
  msgid "Toggle insertion filter settings"
3153
  msgstr ""
3154
 
3155
+ #: settings.php:1306
3156
  msgid "Toggle insertion and alignment icons"
3157
  msgstr ""
3158
 
3159
+ #: settings.php:1320
3160
  msgid "Custom CSS code for the wrapping div"
3161
  msgstr ""
3162
 
3163
+ #: settings.php:1323 settings.php:1324 settings.php:1325 settings.php:1326
3164
+ #: settings.php:1327 settings.php:1328
3165
  msgid "CSS code for the wrapping div, click to edit"
3166
  msgstr ""
3167
 
3168
+ #: settings.php:1341
3169
  msgid "HTML element"
3170
  msgstr ""
3171
 
3172
+ #: settings.php:1354
3173
  msgid "HTML element selector or comma separated list of selectors"
3174
  msgstr ""
3175
 
3176
+ #: settings.php:1360 settings.php:2777
3177
  msgid "Action"
3178
  msgstr ""
3179
 
3180
+ #: settings.php:1372
3181
  msgid ""
3182
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3183
  "Server-side insertion inserts block when the page is generated but needs "
3184
  "Output buffering enabled."
3185
  msgstr ""
3186
 
3187
+ #: settings.php:1381
3188
  msgid "Code position"
3189
  msgstr ""
3190
 
3191
+ #: settings.php:1382
3192
  msgid ""
3193
  "Page position where the code for client-side insertion will be inserted."
3194
  msgstr ""
3195
 
3196
+ #: settings.php:1397
3197
  msgid "Count"
3198
  msgstr ""
3199
 
3200
+ #: settings.php:1403
3201
  msgid "paragraphs with tags"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:1409
3205
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3206
  msgstr ""
3207
 
3208
+ #: settings.php:1418
3209
  msgid "that have between"
3210
  msgstr ""
3211
 
3212
+ #: settings.php:1424
3213
  msgid "Minimum number of paragraph words, leave empty for no limit"
3214
  msgstr ""
3215
 
3216
+ #: settings.php:1433
3217
  msgid "Maximum number of paragraph words, leave empty for no limit"
3218
  msgstr ""
3219
 
3220
+ #: settings.php:1436
3221
  msgid "words"
3222
  msgstr ""
3223
 
3224
+ #: settings.php:1451 settings.php:1510 settings.php:1580 settings.php:1606
3225
  msgid "Comma separated texts"
3226
  msgstr ""
3227
 
3228
+ #: settings.php:1464
3229
  msgid ""
3230
  "Count also paragraphs inside these elements - defined on general plugin "
3231
  "settings page - tab [*] / tab General"
3232
  msgstr ""
3233
 
3234
  #. Translators: %s: HTML tags
3235
+ #: settings.php:1470
3236
  msgid "Count inside %s elements"
3237
  msgstr ""
3238
 
3239
  #. translators: inside [HTML tags] elements that contain
3240
+ #: settings.php:1482
3241
  msgid "inside"
3242
  msgstr ""
3243
 
3244
+ #: settings.php:1488
3245
  msgid "Comma separated HTML tag names of container elements"
3246
  msgstr ""
3247
 
3248
  #. translators: inside [HTML tags] elements that contain
3249
+ #: settings.php:1497
3250
  msgid "elements that"
3251
  msgstr ""
3252
 
3253
+ #: settings.php:1523 settings.php:2156
3254
  msgid "Post/Static page must have between"
3255
  msgstr ""
3256
 
3257
+ #: settings.php:1529
3258
  msgid "Minimum number of paragraphs, leave empty for no limit"
3259
  msgstr ""
3260
 
3261
+ #: settings.php:1538
3262
  msgid "Maximum number of paragraphs, leave empty for no limit"
3263
  msgstr ""
3264
 
3265
  #. Translators: Post/Static page must have between X and Y paragraphs
3266
+ #: settings.php:1541
3267
  msgid "paragraph"
3268
  msgid_plural "paragraphs"
3269
  msgstr[0] ""
3270
  msgstr[1] ""
3271
 
3272
+ #: settings.php:1549
3273
  msgid "Minimum number of words in paragraphs above"
3274
  msgstr ""
3275
 
3276
+ #: settings.php:1555
3277
  msgid ""
3278
  "Used only with automatic insertion After paragraph and empty paragraph "
3279
  "numbers"
3280
  msgstr ""
3281
 
3282
+ #: settings.php:1565 settings.php:1591
3283
  msgid "In"
3284
  msgstr ""
3285
 
3286
+ #: settings.php:1571
3287
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3288
  msgstr ""
3289
 
3290
+ #: settings.php:1574
3291
  msgid "paragraphs above avoid"
3292
  msgstr ""
3293
 
3294
+ #: settings.php:1597
3295
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3296
  msgstr ""
3297
 
3298
+ #: settings.php:1600
3299
  msgid "paragraphs below avoid"
3300
  msgstr ""
3301
 
3302
+ #: settings.php:1616
3303
  msgid "If text is found"
3304
  msgstr ""
3305
 
3306
+ #: settings.php:1623
3307
  msgid "check up to"
3308
  msgstr ""
3309
 
3310
+ #: settings.php:1631
3311
  msgctxt "check up to"
3312
  msgid "paragraphs"
3313
  msgstr ""
3314
 
3315
+ #: settings.php:1647
3316
  msgid "Categories"
3317
  msgstr ""
3318
 
3319
+ #: settings.php:1650
3320
  msgid "Toggle category editor"
3321
  msgstr ""
3322
 
3323
+ #: settings.php:1653
3324
  msgid "Comma separated category slugs"
3325
  msgstr ""
3326
 
3327
+ #: settings.php:1662
3328
  msgid "Blacklist categories"
3329
  msgstr ""
3330
 
3331
+ #: settings.php:1666
3332
  msgid "Whitelist categories"
3333
  msgstr ""
3334
 
3335
+ #: settings.php:1678
3336
  msgid "Tags"
3337
  msgstr ""
3338
 
3339
+ #: settings.php:1681
3340
  msgid "Toggle tag editor"
3341
  msgstr ""
3342
 
3343
+ #: settings.php:1684
3344
  msgid "Comma separated tag slugs"
3345
  msgstr ""
3346
 
3347
+ #: settings.php:1693
3348
  msgid "Blacklist tags"
3349
  msgstr ""
3350
 
3351
+ #: settings.php:1697
3352
  msgid "Whitelist tags"
3353
  msgstr ""
3354
 
3355
+ #: settings.php:1709
3356
  msgid "Taxonomies"
3357
  msgstr ""
3358
 
3359
+ #: settings.php:1712
3360
  msgid "Toggle taxonomy editor"
3361
  msgstr ""
3362
 
3363
+ #: settings.php:1715
3364
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3365
  msgstr ""
3366
 
3367
+ #: settings.php:1724
3368
  msgid "Blacklist taxonomies"
3369
  msgstr ""
3370
 
3371
+ #: settings.php:1728
3372
  msgid "Whitelist taxonomies"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:1740
3376
  msgid "Post IDs"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:1743
3380
  msgid "Toggle post/page ID editor"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:1746
3384
  msgid "Comma separated post/page IDs"
3385
  msgstr ""
3386
 
3387
+ #: settings.php:1755
3388
  msgid "Blacklist IDs"
3389
  msgstr ""
3390
 
3391
+ #: settings.php:1759
3392
  msgid "Whitelist IDs"
3393
  msgstr ""
3394
 
3395
+ #: settings.php:1771
3396
  msgid "Urls"
3397
  msgstr ""
3398
 
3399
+ #: settings.php:1774
3400
  msgid "Toggle url editor"
3401
  msgstr ""
3402
 
3403
+ #: settings.php:1777
3404
  msgid ""
3405
  "Comma separated urls (page addresses) starting with / after domain name (e."
3406
  "g. /permalink-url, use only when you need to taget a specific url not "
3408
  "start*. *url-pattern*, *url-end)"
3409
  msgstr ""
3410
 
3411
+ #: settings.php:1786
3412
  msgid "Blacklist urls"
3413
  msgstr ""
3414
 
3415
+ #: settings.php:1790
3416
  msgid "Whitelist urls"
3417
  msgstr ""
3418
 
3419
+ #: settings.php:1801
3420
  msgid "Url parameters"
3421
  msgstr ""
3422
 
3423
+ #: settings.php:1805
3424
  msgid "Toggle url parameter and cookie editor"
3425
  msgstr ""
3426
 
3427
+ #: settings.php:1808
3428
  msgid ""
3429
  "Comma separated url query parameters or cookies with optional values (use "
3430
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3431
  msgstr ""
3432
 
3433
+ #: settings.php:1817
3434
  msgid "Blacklist url parameters"
3435
  msgstr ""
3436
 
3437
+ #: settings.php:1821
3438
  msgid "Whitelist url parameters"
3439
  msgstr ""
3440
 
3441
+ #: settings.php:1832
3442
  msgid "Referrers"
3443
  msgstr ""
3444
 
3445
+ #: settings.php:1835
3446
  msgid "Toggle referer editor"
3447
  msgstr ""
3448
 
3449
+ #: settings.php:1838
3450
  msgid ""
3451
  "Comma separated domains, use # for no referrer, you can also use partial "
3452
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3453
  msgstr ""
3454
 
3455
+ #: settings.php:1847
3456
  msgid "Blacklist referers"
3457
  msgstr ""
3458
 
3459
+ #: settings.php:1851
3460
  msgid "Whitelist referers"
3461
  msgstr ""
3462
 
3463
+ #: settings.php:1862
3464
  msgid "Clients"
3465
  msgstr ""
3466
 
3467
+ #: settings.php:1865
3468
  msgid "Toggle client editor"
3469
  msgstr ""
3470
 
3471
+ #: settings.php:1868
3472
  msgid "Comma separated names (operating systems, browsers, devices)"
3473
  msgstr ""
3474
 
3475
+ #: settings.php:1877
3476
  msgid "Blacklist clients"
3477
  msgstr ""
3478
 
3479
+ #: settings.php:1881
3480
  msgid "Whitelist clients"
3481
  msgstr ""
3482
 
3483
+ #: settings.php:1902
3484
  msgid "Enable widget for this block"
3485
  msgstr ""
3486
 
3487
+ #: settings.php:1914
3488
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3489
  msgstr ""
3490
 
3491
+ #: settings.php:1915 settings.php:4260
3492
  msgid "Shortcode"
3493
  msgstr ""
3494
 
3495
+ #: settings.php:1930
3496
  msgid ""
3497
  "Enable PHP function call to insert this block at any position in theme file. "
3498
  "If function is disabled for block it will return empty string."
3499
  msgstr ""
3500
 
3501
+ #: settings.php:1931
3502
  msgid "PHP function"
3503
  msgstr ""
3504
 
3505
+ #: settings.php:1946
3506
  msgid "Client-side device detection"
3507
  msgstr ""
3508
 
3509
+ #: settings.php:1947
3510
  msgid "Server-side device detection"
3511
  msgstr ""
3512
 
3513
+ #: settings.php:1954
3514
  msgid "Use client-side detection to"
3515
  msgstr ""
3516
 
3517
+ #: settings.php:1956
3518
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3519
  msgstr ""
3520
 
3521
  #. Translators: only on (the following devices): viewport names (devices)
3522
  #. listed
3523
+ #: settings.php:1961
3524
  msgid "only on"
3525
  msgstr ""
3526
 
3527
+ #: settings.php:1989
3528
  msgid "Device min width %s px"
3529
  msgstr ""
3530
 
3531
+ #: settings.php:2015
3532
  msgid "Use server-side detection to insert block only for"
3533
  msgstr ""
3534
 
3535
+ #: settings.php:2034
3536
  msgid "Filter"
3537
  msgstr ""
3538
 
3539
+ #: settings.php:2035
3540
  msgid "Word Count"
3541
  msgstr ""
3542
 
3543
+ #: settings.php:2036 settings.php:4250
3544
  msgid "Scheduling"
3545
  msgstr ""
3546
 
3547
+ #: settings.php:2037
3548
  msgid "Display"
3549
  msgstr ""
3550
 
3551
+ #: settings.php:2039 settings.php:2301
3552
  msgid "General"
3553
  msgstr ""
3554
 
3555
+ #: settings.php:2051
3556
  msgid "Old settings for AMP pages detected"
3557
  msgstr ""
3558
 
3559
+ #: settings.php:2051
3560
  msgid ""
3561
  "To insert different codes on normal and AMP pages separate them with "
3562
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3563
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3564
  msgstr ""
3565
 
3566
+ #: settings.php:2051
3567
  msgid "AMP pages"
3568
  msgstr ""
3569
 
3570
+ #: settings.php:2056
3571
  msgid "Enable insertion for Ajax requests"
3572
  msgstr ""
3573
 
3574
+ #: settings.php:2056
3575
  msgid "Ajax requests"
3576
  msgstr ""
3577
 
3578
+ #: settings.php:2061
3579
  msgid "Enable insertion in RSS feeds"
3580
  msgstr ""
3581
 
3582
+ #: settings.php:2061
3583
  msgid "RSS Feed"
3584
  msgstr ""
3585
 
3586
+ #: settings.php:2066
3587
  msgid "Enable insertion on page for Error 404: Page not found"
3588
  msgstr ""
3589
 
3590
+ #: settings.php:2066
3591
  msgid "Error 404 page"
3592
  msgstr ""
3593
 
3594
+ #: settings.php:2078
3595
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3596
  msgstr ""
3597
 
3598
+ #: settings.php:2079
3599
  msgid "insertions"
3600
  msgstr ""
3601
 
3602
+ #: settings.php:2081
3603
  msgid ""
3604
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3605
  "General)"
3606
  msgstr ""
3607
 
3608
+ #: settings.php:2084 settings.php:2481
3609
  msgid "Max blocks per page"
3610
  msgstr ""
3611
 
3612
+ #: settings.php:2096
3613
  msgid "Insert for"
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2104
3617
  msgid ""
3618
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3619
  "currently active). Might speed up insertion on content pages when "
3620
  "the_content filter is called multiple times."
3621
  msgstr ""
3622
 
3623
+ #: settings.php:2107
3624
  msgid "Insert only in the loop"
3625
  msgstr ""
3626
 
3627
+ #: settings.php:2113
3628
  msgid ""
3629
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3630
  msgstr ""
3631
 
3632
+ #: settings.php:2113
3633
  msgid "Disable caching"
3634
  msgstr ""
3635
 
3636
+ #: settings.php:2125
3637
  msgid "Filter insertions"
3638
  msgstr ""
3639
 
3640
+ #: settings.php:2128
3641
  msgid ""
3642
  "Filter multiple insertions by specifying wanted insertions for this block - "
3643
  "single number, comma separated numbers or %N for every N insertions - empty "
3645
  "using only one insertion type."
3646
  msgstr ""
3647
 
3648
+ #: settings.php:2131
3649
  msgid "using"
3650
  msgstr ""
3651
 
3652
+ #: settings.php:2150
3653
  msgid "Checked means specified calls are unwanted"
3654
  msgstr ""
3655
 
3656
+ #: settings.php:2150
3657
  msgid "Invert filter"
3658
  msgstr ""
3659
 
3660
+ #: settings.php:2157
3661
  msgid "Minimum number of post/static page words, leave empty for no limit"
3662
  msgstr ""
3663
 
3664
+ #: settings.php:2159
3665
  msgid "Maximum number of post/static page words, leave empty for no limit"
3666
  msgstr ""
3667
 
3668
+ #: settings.php:2172
3669
  msgid "for"
3670
  msgstr ""
3671
 
3672
+ #: settings.php:2172
3673
  msgid "days after publishing"
3674
  msgstr ""
3675
 
3676
+ #: settings.php:2174
3677
  msgid "Not available"
3678
  msgstr ""
3679
 
3680
+ #: settings.php:2187 settings.php:2473
3681
  msgid "Ad label"
3682
  msgstr ""
3683
 
3684
+ #: settings.php:2207
3685
  msgid "General tag"
3686
  msgstr ""
3687
 
3688
+ #: settings.php:2211
3689
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3690
  msgstr ""
3691
 
3692
  #. translators: %s: HTML tags
3693
+ #: settings.php:2220
3694
  msgid ""
3695
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3696
  "client-side device detection!"
3697
  msgstr ""
3698
 
3699
  #. translators: %s: HTML tags for text and link
3700
+ #: settings.php:2234
3701
  msgid ""
3702
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3703
  "side %s insertion. Use %s Server-side %s insertion."
3704
  msgstr ""
3705
 
3706
+ #: settings.php:2250
3707
  msgid "Settings"
3708
  msgstr ""
3709
 
3710
+ #: settings.php:2253
3711
  msgid "Settings timestamp"
3712
  msgstr ""
3713
 
3714
+ #: settings.php:2266
3715
  msgid "Are you sure you want to reset all settings?"
3716
  msgstr ""
3717
 
3718
+ #: settings.php:2266
3719
  msgid "Reset All Settings"
3720
  msgstr ""
3721
 
3722
+ #: settings.php:2302
3723
  msgid "Viewports"
3724
  msgstr ""
3725
 
3726
+ #: settings.php:2303
3727
  msgid "Hooks"
3728
  msgstr ""
3729
 
3730
+ #: settings.php:2304
3731
  msgid "Header"
3732
  msgstr ""
3733
 
3734
+ #: settings.php:2305 strings.php:30
3735
  msgid "Footer"
3736
  msgstr ""
3737
 
3738
+ #: settings.php:2310
3739
  msgid "Debugging"
3740
  msgstr ""
3741
 
3742
+ #: settings.php:2320
3743
  msgid "Plugin priority"
3744
  msgstr ""
3745
 
3746
+ #: settings.php:2328
3747
  msgid "Output buffering"
3748
  msgstr ""
3749
 
3750
+ #: settings.php:2331
3751
  msgid "Needed for position Above header but may not work with all themes"
3752
  msgstr ""
3753
 
3754
+ #: settings.php:2339
3755
  msgid "Syntax highlighting theme"
3756
  msgstr ""
3757
 
3758
+ #: settings.php:2346
3759
  msgctxt "no syntax highlighting themes"
3760
  msgid "None"
3761
  msgstr ""
3762
 
3763
+ #: settings.php:2347
3764
  msgid "No Syntax Highlighting"
3765
  msgstr ""
3766
 
3767
+ #: settings.php:2349
3768
  msgctxt "syntax highlighting themes"
3769
  msgid "Light"
3770
  msgstr ""
3771
 
3772
+ #: settings.php:2364
3773
  msgctxt "syntax highlighting themes"
3774
  msgid "Dark"
3775
  msgstr ""
3776
 
3777
+ #: settings.php:2390
3778
  msgid "Min. user role for ind. exceptions editing"
3779
  msgstr ""
3780
 
3781
+ #: settings.php:2400
3782
  msgid "Disable caching for logged in administrators"
3783
  msgstr ""
3784
 
3785
+ #: settings.php:2403
3786
  msgid ""
3787
  "Enabled means that logged in administrators will see non-cached (live) pages "
3788
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3789
  msgstr ""
3790
 
3791
+ #: settings.php:2411
3792
  msgid "Wait for jQuery"
3793
  msgstr ""
3794
 
3795
+ #: settings.php:2414
3796
  msgid ""
3797
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3798
  "it will run the scripts that may need it"
3799
  msgstr ""
3800
 
3801
+ #: settings.php:2422
3802
  msgid "Sticky widget mode"
3803
  msgstr ""
3804
 
3805
+ #: settings.php:2425
3806
  msgid ""
3807
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3808
  "mode works with most themes but may reload ads on page load."
3809
  msgstr ""
3810
 
3811
+ #: settings.php:2433
3812
  msgid "Sticky widget top margin"
3813
  msgstr ""
3814
 
3815
+ #: settings.php:2441
3816
  msgid "Dynamic blocks"
3817
  msgstr ""
3818
 
3819
+ #: settings.php:2454
3820
  msgid "Functions for paragraph counting"
3821
  msgstr ""
3822
 
3823
+ #: settings.php:2457
3824
  msgid ""
3825
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3826
  "functions if paragraphs are not counted properly on non-english pages."
3827
  msgstr ""
3828
 
3829
+ #: settings.php:2465
3830
  msgid "No paragraph counting inside"
3831
  msgstr ""
3832
 
3833
+ #: settings.php:2476
3834
  msgid "Label text or HTML code"
3835
  msgstr ""
3836
 
3837
+ #: settings.php:2484
3838
  msgid ""
3839
  "Maximum number of inserted blocks per page. You need to enable Max page "
3840
  "insertions (button Misc / tab Insertion) to count block for this limit."
3841
  msgstr ""
3842
 
3843
+ #: settings.php:2498
3844
  msgid "Plugin usage tracking"
3845
  msgstr ""
3846
 
3847
  #. translators: %s: Ad Inserter
3848
+ #: settings.php:2501
3849
  msgid ""
3850
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3851
  "Only information regarding the WordPress environment and %s usage is "
3852
  "recorded (once per month and on events like plugin activation/deactivation)."
3853
  msgstr ""
3854
 
3855
+ #: settings.php:2519
3856
  msgid "CSS class name for the wrapping div"
3857
  msgstr ""
3858
 
3859
+ #: settings.php:2519
3860
  msgid "Block class name"
3861
  msgstr ""
3862
 
3863
+ #: settings.php:2525
3864
  msgid "Include block number class"
3865
  msgstr ""
3866
 
3867
+ #: settings.php:2525
3868
  msgid "Block number class"
3869
  msgstr ""
3870
 
3871
+ #: settings.php:2530
3872
  msgid "Include block name class"
3873
  msgstr ""
3874
 
3875
+ #: settings.php:2530
3876
  msgid "Block name class"
3877
  msgstr ""
3878
 
3879
+ #: settings.php:2535
3880
  msgid ""
3881
  "Instead of alignment classes generate inline alignment styles for blocks"
3882
  msgstr ""
3883
 
3884
+ #: settings.php:2535
3885
  msgid "Inline styles"
3886
  msgstr ""
3887
 
3888
+ #: settings.php:2541
3889
  msgid "Preview of the block wrapping code"
3890
  msgstr ""
3891
 
3892
+ #: settings.php:2542
3893
  msgid "Wrapping div"
3894
  msgstr ""
3895
 
3896
+ #: settings.php:2543 settings.php:2983
3897
  msgid "BLOCK CODE"
3898
  msgstr ""
3899
 
3900
+ #: settings.php:2551
3901
  msgid "Viewport Settings used for client-side device detection"
3902
  msgstr ""
3903
 
3904
  #. Translators: %d: viewport number
3905
+ #: settings.php:2559
3906
  msgid "Viewport %d name"
3907
  msgstr ""
3908
 
3909
+ #: settings.php:2562
3910
  msgid "min width"
3911
  msgstr ""
3912
 
3913
+ #: settings.php:2573
3914
  msgid "Custom Hooks"
3915
  msgstr ""
3916
 
3917
+ #: settings.php:2585 settings.php:2588
3918
  msgid "Enable hook"
3919
  msgstr ""
3920
 
3921
  #. translators: %d: hook number
3922
+ #: settings.php:2588
3923
  msgid "Hook %d name"
3924
  msgstr ""
3925
 
3926
+ #: settings.php:2591
3927
  msgid "Hook name for automatic insertion selection"
3928
  msgstr ""
3929
 
3930
+ #: settings.php:2594
3931
  msgid "action"
3932
  msgstr ""
3933
 
3934
+ #: settings.php:2597
3935
  msgid "Action name as used in the do_action () function"
3936
  msgstr ""
3937
 
3938
+ #: settings.php:2600
3939
  msgid "priority"
3940
  msgstr ""
3941
 
3942
+ #: settings.php:2603
3943
  msgid "Priority for the hook (default is 10)"
3944
  msgstr ""
3945
 
3946
+ #: settings.php:2624
3947
  msgid "Enable insertion of this code into HTML page header"
3948
  msgstr ""
3949
 
3950
+ #: settings.php:2628 settings.php:2695 settings.php:2877
3951
  msgid "Process PHP code"
3952
  msgstr ""
3953
 
3954
+ #: settings.php:2632
3955
  msgid "HTML Page Header Code"
3956
  msgstr ""
3957
 
3958
+ #: settings.php:2640
3959
  msgid "Code in the %s section of the HTML page"
3960
  msgstr ""
3961
 
3962
+ #: settings.php:2641
3963
  msgctxt "code in the header"
3964
  msgid "NOT ENABLED"
3965
  msgstr ""
3966
 
3967
+ #: settings.php:2658 settings.php:2726
3968
  msgid "Use server-side detection to insert code only for"
3969
  msgstr ""
3970
 
3971
+ #: settings.php:2673
3972
  msgid ""
3973
  "Enable insertion of this code into HTML page header on page for Error 404: "
3974
  "Page not found"
3975
  msgstr ""
3976
 
3977
+ #: settings.php:2673 settings.php:2741
3978
  msgid "Insert on Error 404 page"
3979
  msgstr ""
3980
 
3981
+ #: settings.php:2691
3982
  msgid "Enable insertion of this code into HTML page footer"
3983
  msgstr ""
3984
 
3985
+ #: settings.php:2699
3986
  msgid "HTML Page Footer Code"
3987
  msgstr ""
3988
 
3989
  #. translators: %s: HTML tags
3990
+ #: settings.php:2707
3991
  msgid "Code before the %s tag of the the HTML page"
3992
  msgstr ""
3993
 
3994
+ #: settings.php:2708
3995
  msgctxt "code in the footer"
3996
  msgid "NOT ENABLED"
3997
  msgstr ""
3998
 
3999
+ #: settings.php:2741
4000
  msgid ""
4001
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4002
  "Page not found"
4003
  msgstr ""
4004
 
4005
+ #: settings.php:2757
4006
  msgid "Code for ad blocking detection inserted. Click for details."
4007
  msgstr ""
4008
 
4009
+ #: settings.php:2762
4010
  msgid "Enable detection of ad blocking"
4011
  msgstr ""
4012
 
4013
+ #: settings.php:2780
4014
  msgid "Global action when ad blocking is detected"
4015
  msgstr ""
4016
 
4017
+ #: settings.php:2786
4018
  msgid "No action for"
4019
  msgstr ""
4020
 
4021
+ #: settings.php:2787
4022
  msgid "Exceptions for global action when ad blocking is detected."
4023
  msgstr ""
4024
 
4025
+ #: settings.php:2797
4026
  msgid "Delay Action"
4027
  msgstr ""
4028
 
4029
+ #: settings.php:2800
4030
  msgid ""
4031
  "Number of page views to delay action when ad blocking is detected. Leave "
4032
  "empty for no delay (action fires on first page view). Sets cookie."
4033
  msgstr ""
4034
 
4035
+ #: settings.php:2800
4036
  msgctxt "Delay Action for x "
4037
  msgid "page views"
4038
  msgstr ""
4039
 
4040
+ #: settings.php:2805
4041
  msgid "No Action Period"
4042
  msgstr ""
4043
 
4044
+ #: settings.php:2808
4045
  msgid ""
4046
  "Number of days to supress action when ad blocking is detected. Leave empty "
4047
  "for no no-action period (action fires always after defined page view delay). "
4048
  "Sets cookie."
4049
  msgstr ""
4050
 
4051
+ #: settings.php:2808
4052
  msgctxt "no action period"
4053
  msgid "days"
4054
  msgstr ""
4055
 
4056
+ #: settings.php:2813
4057
  msgid "Custom Selectors"
4058
  msgstr ""
4059
 
4060
+ #: settings.php:2816
4061
  msgid ""
4062
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4063
  "blocking detection. Invisible element or element with zero height means ad "
4064
  "blocking is present."
4065
  msgstr ""
4066
 
4067
+ #: settings.php:2828
4068
  msgid "Redirection Page"
4069
  msgstr ""
4070
 
4071
+ #: settings.php:2840
4072
  msgid "Custom Url"
4073
  msgstr ""
4074
 
4075
+ #: settings.php:2845
4076
  msgid ""
4077
  "Static page for redirection when ad blocking is detected. For other pages "
4078
  "select Custom url and set it below."
4079
  msgstr ""
4080
 
4081
+ #: settings.php:2854
4082
  msgid "Custom Redirection Url"
4083
  msgstr ""
4084
 
4085
+ #: settings.php:2866
4086
  msgid "Message HTML code"
4087
  msgstr ""
4088
 
4089
+ #: settings.php:2879
4090
  msgid "Preview message when ad blocking is detected"
4091
  msgstr ""
4092
 
4093
+ #: settings.php:2908
4094
  msgid "Prevent visitors from closing the warning message"
4095
  msgstr ""
4096
 
4097
+ #: settings.php:2908
4098
  msgid "Undismissible Message"
4099
  msgstr ""
4100
 
4101
+ #: settings.php:2914
4102
  msgid "Not undismissible for"
4103
  msgstr ""
4104
 
4105
+ #: settings.php:2915
4106
  msgid "Users which can close the warning message."
4107
  msgstr ""
4108
 
4109
+ #: settings.php:2929
4110
  msgid ""
4111
  "Force showing admin toolbar for administrators when viewing site. Enable "
4112
  "this option when you are logged in as admin and you don't see admin toolbar."
4113
  msgstr ""
4114
 
4115
+ #: settings.php:2937
4116
  msgid "Disable header code (Header tab)"
4117
  msgstr ""
4118
 
4119
+ #: settings.php:2941
4120
  msgid "Disable footer code (Footer tab)"
4121
  msgstr ""
4122
 
4123
  #. translators: %s: Ad Inserter
4124
+ #: settings.php:2945
4125
  msgid "Disable %s JavaScript code"
4126
  msgstr ""
4127
 
4128
  #. translators: %s: Ad Inserter
4129
+ #: settings.php:2949
4130
  msgid "Disable %s CSS code"
4131
  msgstr ""
4132
 
4133
+ #: settings.php:2953
4134
  msgid ""
4135
  "Disable PHP code processing (in all blocks including header and footer code)"
4136
  msgstr ""
4137
 
4138
+ #: settings.php:2957
4139
  msgid "Disable insertion of all blocks"
4140
  msgstr ""
4141
 
4142
+ #: settings.php:2961
4143
  msgid "Disable insertions"
4144
  msgstr ""
4145
 
4146
  #. translators: %s: Ad Inserter
4147
+ #: settings.php:2973
4148
  msgid "%s CSS CODE"
4149
  msgstr ""
4150
 
4151
+ #: settings.php:2976
4152
  msgid "HEADER CODE"
4153
  msgstr ""
4154
 
4155
  #. translators: %s: PHP tags
4156
+ #: settings.php:2982
4157
  msgid "BLOCK PHP CODE"
4158
  msgstr ""
4159
 
4160
  #. translators: %s: Ad Inserter
4161
+ #: settings.php:2988
4162
  msgid "%s JS CODE"
4163
  msgstr ""
4164
 
4165
+ #: settings.php:2991
4166
  msgid "FOOTER CODE"
4167
  msgstr ""
4168
 
4169
+ #: settings.php:3000
4170
  msgid "Force showing admin toolbar when viewing site"
4171
  msgstr ""
4172
 
4173
+ #: settings.php:3007
4174
  msgid "Enable debugging functions in admin toolbar"
4175
  msgstr ""
4176
 
4177
+ #: settings.php:3009
4178
  msgid "Debugging functions in admin toolbar"
4179
  msgstr ""
4180
 
4181
+ #: settings.php:3016
4182
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4183
  msgstr ""
4184
 
4185
+ #: settings.php:3018
4186
  msgid "Debugging functions on mobile screens"
4187
  msgstr ""
4188
 
4189
+ #: settings.php:3025
4190
  msgid ""
4191
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4192
  "tags, processing) by url parameters for non-logged in users. Enable this "
4195
  "administrators debugging is always enabled."
4196
  msgstr ""
4197
 
4198
+ #: settings.php:3027
4199
  msgid "Remote debugging"
4200
  msgstr ""
4201
 
4202
+ #: settings.php:3034
4203
  msgid ""
4204
  "Disable translation to see original texts for the settings and messages in "
4205
  "English"
4206
  msgstr ""
4207
 
4208
+ #: settings.php:3036
4209
  msgid "Disable translation"
4210
  msgstr ""
4211
 
4212
+ #: settings.php:3406
4213
  msgid "Available positions for current theme"
4214
  msgstr ""
4215
 
4216
+ #: settings.php:3407
4217
  msgid "Error checking pages"
4218
  msgstr ""
4219
 
4220
+ #: settings.php:3410
4221
  msgid "Toggle theme checker for available positions for automatic insertion"
4222
  msgstr ""
4223
 
4224
+ #: settings.php:3410
4225
  msgctxt "Button"
4226
  msgid "Check"
4227
  msgstr ""
4228
 
4229
+ #: settings.php:3417
4230
  msgid "Position"
4231
  msgstr ""
4232
 
4233
+ #: settings.php:3422
4234
  msgid "Archive pages"
4235
  msgstr ""
4236
 
4237
+ #: settings.php:3481
4238
  msgid ""
4239
  "Position not available because output buffering (tab [*]) is not enabled"
4240
  msgstr ""
4241
 
4242
+ #: settings.php:3484 strings.php:228
4243
  msgid "Position not checked yet"
4244
  msgstr ""
4245
 
4246
+ #: settings.php:3520
4247
  msgid "Toggle active/all blocks"
4248
  msgstr ""
4249
 
4250
+ #: settings.php:3524 strings.php:215
4251
  msgid "Rearrange block order"
4252
  msgstr ""
4253
 
4254
+ #: settings.php:3529
4255
  msgid "Save new block order"
4256
  msgstr ""
4257
 
4258
+ #: settings.php:3555
4259
  msgid "Toggle active/all ad units"
4260
  msgstr ""
4261
 
4262
+ #: settings.php:3559
4263
  msgid "Reload AdSense ad units"
4264
  msgstr ""
4265
 
4266
+ #: settings.php:3563
4267
  msgid "Clear authorization to access AdSense account"
4268
  msgstr ""
4269
 
4270
+ #: settings.php:3567 settings.php:4417 settings.php:4484 strings.php:223
4271
  msgid "Google AdSense Homepage"
4272
  msgstr ""
4273
 
4274
+ #: settings.php:3583
4275
  msgid "Switch to physical ads.txt file"
4276
  msgstr ""
4277
 
4278
+ #: settings.php:3584
4279
  msgid "Switch to virtual ads.txt file"
4280
  msgstr ""
4281
 
4282
  #. translators: %s: ads.txt
4283
+ #: settings.php:3594
4284
  msgid "Open %s"
4285
  msgstr ""
4286
 
4287
+ #: settings.php:3602
4288
  msgid "Reload ads.txt file"
4289
  msgstr ""
4290
 
4291
+ #: settings.php:3606 settings.php:4544
4292
  msgid "Save"
4293
  msgstr ""
4294
 
4295
  #. translators: %s: Ad Inserter
4296
+ #: settings.php:3781
4297
  msgid "ads.txt file: %s virtual ads.txt file"
4298
  msgstr ""
4299
 
4300
+ #: settings.php:3786 settings.php:3806 strings.php:207
4301
  msgid "Warning"
4302
  msgstr ""
4303
 
4304
  #. translators: %s: Ad Inserter
4305
+ #: settings.php:3786
4306
  msgid "%s virtual file ads.txt not found"
4307
  msgstr ""
4308
 
4309
+ #: settings.php:3794
4310
  msgid "IMPORTANT"
4311
  msgstr ""
4312
 
4313
+ #: settings.php:3794
4314
  msgid "ads.txt file must be placed on the root domain"
4315
  msgstr ""
4316
 
4317
+ #: settings.php:3799
4318
  msgid "ads.txt file"
4319
  msgstr ""
4320
 
4321
+ #: settings.php:3799
4322
  msgid "NOT WRITABLE"
4323
  msgstr ""
4324
 
4325
+ #: settings.php:3806
4326
  msgid "file %s not found"
4327
  msgstr ""
4328
 
4329
+ #: settings.php:3816
4330
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4331
  msgstr ""
4332
 
4333
  #. translators: %s: Ad Inserter
4334
+ #: settings.php:3822
4335
  msgid "%s virtual ads.txt file"
4336
  msgstr ""
4337
 
4338
+ #: settings.php:3844
4339
  msgid "Advertising system"
4340
  msgstr ""
4341
 
4342
+ #: settings.php:3845
4343
  msgid "Account ID"
4344
  msgstr ""
4345
 
4346
+ #: settings.php:3847
4347
  msgid "Certification authority ID"
4348
  msgstr ""
4349
 
4350
+ #: settings.php:3862
4351
  msgid "Account ID found in block and present in ads.txt"
4352
  msgstr ""
4353
 
4354
+ #: settings.php:3866
4355
  msgid "Account ID found in block but not present in ads.txt"
4356
  msgstr ""
4357
 
4358
+ #: settings.php:4200
4359
  msgid "Preview block"
4360
  msgstr ""
4361
 
4362
+ #: settings.php:4207
4363
+ msgid "Pause block"
4364
  msgstr ""
4365
 
4366
+ #: settings.php:4246
4367
  msgid "Automatic insertion"
4368
  msgstr ""
4369
 
4370
  #. translators: %s HTML tags
4371
+ #: settings.php:4247 settings.php:5215
4372
  msgid "PHP code processing"
4373
  msgstr ""
4374
 
4375
+ #: settings.php:4249
4376
  msgid "Device detection"
4377
  msgstr ""
4378
 
4379
+ #: settings.php:4272
4380
+ msgid "No active block"
4381
  msgstr ""
4382
 
4383
+ #: settings.php:4273
4384
+ msgid "No block matches search keywords"
 
 
 
 
4385
  msgstr ""
4386
 
4387
+ #: settings.php:4328
4388
  msgid "Ad unit"
4389
  msgstr ""
4390
 
4391
+ #: settings.php:4330
4392
  msgid "Slot ID"
4393
  msgstr ""
4394
 
4395
+ #: settings.php:4356
4396
  msgid "Copy AdSense code"
4397
  msgstr ""
4398
 
4399
+ #: settings.php:4359
4400
  msgid "Preview AdSense ad"
4401
  msgstr ""
4402
 
4403
+ #: settings.php:4362
4404
  msgid "Get AdSense code"
4405
  msgstr ""
4406
 
4407
  #. translators: %s: HTML tags
4408
+ #: settings.php:4394
4409
  msgid ""
4410
  "Please %s clear authorization %s with the button %s above and once again "
4411
  "authorize access to your AdSense account."
4412
  msgstr ""
4413
 
4414
+ #: settings.php:4413
4415
  msgid "AdSense Integration"
4416
  msgstr ""
4417
 
4418
+ #: settings.php:4415
4419
  msgid "AdSense Integration - Step 2"
4420
  msgstr ""
4421
 
4422
  #. translators: %s: HTML tags
4423
+ #: settings.php:4421
4424
  msgid ""
4425
  "Authorize %s to access your AdSense account. Click on the %s Get "
4426
  "Authorization Code %s button to open a new window where you can allow "
4429
  msgstr ""
4430
 
4431
  #. translators: %s: HTML tags
4432
+ #: settings.php:4428
4433
  msgid ""
4434
  "If you get error, can't access ad units or would like to use own Google API "
4435
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4437
  msgstr ""
4438
 
4439
  #. translators: %s: HTML tags
4440
+ #: settings.php:4430
4441
  msgid ""
4442
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4443
  "Authorization Code %s button to open a new window where you can allow "
4446
  msgstr ""
4447
 
4448
  #. translators: %s: HTML tags
4449
+ #: settings.php:4437
4450
  msgid ""
4451
  "If you get error %s invalid client %s click on the button %s Clear and "
4452
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4453
  msgstr ""
4454
 
4455
+ #: settings.php:4448
4456
  msgid "Get Authorization Code"
4457
  msgstr ""
4458
 
4459
+ #: settings.php:4451
4460
  msgid "Enter Authorization Code"
4461
  msgstr ""
4462
 
4463
+ #: settings.php:4461
4464
  msgid "Use own API IDs"
4465
  msgstr ""
4466
 
4467
+ #: settings.php:4463
4468
  msgid "Clear and return to Step 1"
4469
  msgstr ""
4470
 
4471
+ #: settings.php:4467
4472
  msgid "Authorize"
4473
  msgstr ""
4474
 
4475
+ #: settings.php:4483
4476
  msgid "AdSense Integration - Step 1"
4477
  msgstr ""
4478
 
4479
  #. translators: %s: Ad Inserter
4480
+ #: settings.php:4487
4481
  msgid ""
4482
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4483
  "To do this you need to authorize %s to access your AdSense account. The "
4486
  msgstr ""
4487
 
4488
  #. translators: %s: HTML tags
4489
+ #: settings.php:4496
4490
  msgid "Go to %s Google APIs and Services console %s"
4491
  msgstr ""
4492
 
4493
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4494
+ #: settings.php:4497
4495
  msgid ""
4496
  "Create %1$s project - if the project and IDs are already created click on "
4497
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4498
  msgstr ""
4499
 
4500
  #. translators: %s: HTML tags
4501
+ #: settings.php:4498
4502
  msgid ""
4503
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4504
  "create a new project"
4505
  msgstr ""
4506
 
4507
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4508
+ #: settings.php:4499
4509
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4510
  msgstr ""
4511
 
4512
  #. translators: %s: HTML tags
4513
+ #: settings.php:4500
4514
  msgid ""
4515
  "Click on project selection, wait for the project to be created and then and "
4516
  "select %s as the current project"
4517
  msgstr ""
4518
 
4519
  #. translators: %s: HTML tags
4520
+ #: settings.php:4501
4521
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4522
  msgstr ""
4523
 
4524
  #. translators: %s: HTML tags
4525
+ #: settings.php:4502
4526
  msgid "Search for adsense and enable %s"
4527
  msgstr ""
4528
 
4529
  #. translators: %s: HTML tags
4530
+ #: settings.php:4503
4531
  msgid "Click on %s CREATE CREDENTIALS %s"
4532
  msgstr ""
4533
 
4534
  #. translators: %s: HTML tags
4535
+ #: settings.php:4504
4536
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4537
  msgstr ""
4538
 
4539
  #. translators: %s: HTML tags
4540
+ #: settings.php:4505
4541
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4542
  msgstr ""
4543
 
4544
  #. translators: %s: HTML tags
4545
+ #: settings.php:4506
4546
  msgid "Click on %s What credentials do I need? %s"
4547
  msgstr ""
4548
 
4549
  #. translators: %s: HTML tags
4550
+ #: settings.php:4507
4551
  msgid ""
4552
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4553
  "Ad Inserter client %s"
4554
  msgstr ""
4555
 
4556
  #. translators: %s: HTML tags
4557
+ #: settings.php:4508
4558
  msgid ""
4559
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4560
  "enter %s"
4561
  msgstr ""
4562
 
4563
  #. translators: %s: HTML tags
4564
+ #: settings.php:4509
4565
  msgid "Click on %s Continue %s"
4566
  msgstr ""
4567
 
4568
  #. translators: %s: HTML tags
4569
+ #: settings.php:4510
4570
  msgid "Click on %s Done %s"
4571
  msgstr ""
4572
 
4573
  #. translators: %s: HTML tags
4574
+ #: settings.php:4511
4575
  msgid ""
4576
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4577
  "secret %s"
4578
  msgstr ""
4579
 
4580
+ #: settings.php:4512
4581
  msgid "Copy them to the appropriate fields below"
4582
  msgstr ""
4583
 
4584
+ #: settings.php:4518
4585
  msgid "Client ID"
4586
  msgstr ""
4587
 
4588
+ #: settings.php:4521
4589
  msgid "Enter Client ID"
4590
  msgstr ""
4591
 
4592
+ #: settings.php:4526
4593
  msgid "Client secret"
4594
  msgstr ""
4595
 
4596
+ #: settings.php:4529
4597
  msgid "Enter Client secret"
4598
  msgstr ""
4599
 
4600
+ #: settings.php:4539
4601
  msgid "Use default API IDs"
4602
  msgstr ""
4603
 
4604
+ #: settings.php:4703
4605
  msgid "All posts"
4606
  msgstr ""
4607
 
4608
+ #: settings.php:4704
4609
  msgid "All static pages"
4610
  msgstr ""
4611
 
4612
+ #: settings.php:4859 settings.php:4872 settings.php:4886 settings.php:4902
4613
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4614
  msgstr ""
4615
 
4616
+ #: settings.php:4864 settings.php:4877 settings.php:4891 settings.php:4907
4617
+ #: settings.php:5106 settings.php:5108 settings.php:5124 settings.php:5129
4618
+ #: settings.php:5137 settings.php:5138 settings.php:5141 settings.php:5147
4619
+ #: settings.php:5157 settings.php:5161
4620
  msgid "Looking for AdSense alternative?"
4621
  msgstr ""
4622
 
4623
+ #: settings.php:4919
4624
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4625
  msgstr ""
4626
 
4627
+ #: settings.php:4924 settings.php:5103 settings.php:5116 settings.php:5144
4628
+ #: settings.php:5170
4629
  msgid "Use Infolinks ads with Adsense to earn more"
4630
  msgstr ""
4631
 
4632
+ #: settings.php:4945 settings.php:4995
 
 
 
 
4633
  msgid "Support plugin development"
4634
  msgstr ""
4635
 
4636
+ #: settings.php:4950 settings.php:4996
4637
  msgid ""
4638
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4639
  "reviewing the plugin on WordPres"
4640
  msgstr ""
4641
 
4642
+ #: settings.php:4950
4643
  msgctxt "Review Ad Inserter"
4644
  msgid "Review"
4645
  msgstr ""
4646
 
4647
+ #: settings.php:4955
4648
  msgid ""
4649
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4650
  "rating the plugin on WordPres"
4651
  msgstr ""
4652
 
4653
+ #: settings.php:4955
4654
  msgctxt "Rate Ad Inserter"
4655
  msgid "Rate"
4656
  msgstr ""
4657
 
4658
+ #: settings.php:4960
4659
  msgid ""
4660
  "Support free Ad Inserter development. If you are making money with Ad "
4661
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4662
  "you!"
4663
  msgstr ""
4664
 
4665
+ #: settings.php:4960
4666
  msgid "Donate"
4667
  msgstr ""
4668
 
4669
+ #: settings.php:4967 settings.php:5011
4670
  msgid "Average rating of the plugin - Thank you!"
4671
  msgstr ""
4672
 
4673
  #. translators: %s: Ad Inserter, HTML tags
4674
+ #: settings.php:4978
4675
  msgid ""
4676
  "You've been using %s for a while now, and I hope you're happy with it. "
4677
  "Positive %s reviews %s are a great way to show your appreciation for my "
4680
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4681
  msgstr ""
4682
 
4683
+ #: settings.php:4996
4684
  msgid "Review"
4685
  msgstr ""
4686
 
4687
+ #: settings.php:5000
4688
  msgid "Ad Inserter on Twitter"
4689
  msgstr ""
4690
 
4691
+ #: settings.php:5001
4692
  msgid "Ad Inserter on Facebook"
4693
  msgstr ""
4694
 
4695
+ #: settings.php:5004
4696
  msgid "Follow Ad Inserter"
4697
  msgstr ""
4698
 
4699
  #. translators: %s: HTML tags
4700
+ #: settings.php:5031
4701
  msgid ""
4702
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4703
  "and %s Common Settings %s pages"
4704
  msgstr ""
4705
 
4706
  #. translators: %s: HTML tags
4707
+ #: settings.php:5043
4708
  msgid ""
4709
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4710
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4712
  msgstr ""
4713
 
4714
  #. translators: %s: HTML tags
4715
+ #: settings.php:5064
4716
  msgid ""
4717
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4718
  "purchase you refer to us"
4719
  msgstr ""
4720
 
4721
  #. translators: %s: HTML tags
4722
+ #: settings.php:5071
4723
  msgid ""
4724
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4725
  "diagnose and fix the problem."
4726
  msgstr ""
4727
 
4728
  #. translators: %s: HTML tags
4729
+ #: settings.php:5075
4730
  msgid ""
4731
  "If you need any kind of help or support, please do not hesitate to open a "
4732
  "thread on the %s support forum. %s"
4733
  msgstr ""
4734
 
4735
+ #: settings.php:5101 settings.php:5165 settings.php:5169
4736
  msgid "Code preview with visual CSS editor"
4737
  msgstr ""
4738
 
4739
+ #: settings.php:5105 settings.php:5155
4740
  msgid "A/B testing - Track ad impressions and clicks"
4741
  msgstr ""
4742
 
4743
+ #: settings.php:5120
4744
+ msgid "Insert ads on AMP pages"
4745
+ msgstr ""
4746
+
4747
+ #: settings.php:5128
4748
+ msgid "Ad blocking detection and content protection"
4749
+ msgstr ""
4750
+
4751
+ #: settings.php:5178
4752
  msgid "Looking for Pro Ad Management plugin?"
4753
  msgstr ""
4754
 
4755
+ #: settings.php:5179
4756
  msgid "To Optimally Monetize your WordPress website?"
4757
  msgstr ""
4758
 
4759
  #. Translators: %s: price of Ad Inserter Pro
4760
+ #: settings.php:5180
4761
  msgid "Different license types starting from %s"
4762
  msgstr ""
4763
 
4764
  #. translators: %s HTML tags
4765
+ #: settings.php:5183
4766
  msgid "%s AdSense Integration %s"
4767
  msgstr ""
4768
 
4769
  #. translators: %s HTML tags
4770
+ #: settings.php:5184
4771
  msgid "Syntax highlighting %s editor %s"
4772
  msgstr ""
4773
 
4774
  #. translators: %s HTML tags
4775
+ #: settings.php:5185
4776
  msgid "%s Code preview %s with visual CSS editor"
4777
  msgstr ""
4778
 
4779
  #. translators: %s HTML tags
4780
+ #: settings.php:5186
4781
  msgid "Simple user interface - all settings on a single page"
4782
  msgstr ""
4783
 
4784
  #. translators: %s HTML tags
4785
+ #: settings.php:5187
4786
  msgid ""
4787
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4788
  "image / excerpt"
4789
  msgstr ""
4790
 
4791
  #. translators: %s HTML tags
4792
+ #: settings.php:5188
4793
  msgid "%s Automatic insertion %s between posts on blog pages"
4794
  msgstr ""
4795
 
4796
  #. translators: %s HTML tags
4797
+ #: settings.php:5189
4798
  msgid "%s Automatic insertion %s before, between and after comments"
4799
  msgstr ""
4800
 
4801
  #. translators: %s HTML tags
4802
+ #: settings.php:5190
4803
  msgid "%s Automatic insertion %s after %s or before %s tag"
4804
  msgstr ""
4805
 
4806
  #. translators: %s HTML tags
4807
+ #: settings.php:5191
4808
  msgid "Automatic insertion at %s custom hook positions %s"
4809
  msgstr ""
4810
 
4811
  #. translators: %s HTML tags
4812
+ #: settings.php:5192
4813
  msgid ""
4814
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4815
  "selectors)"
4816
  msgstr ""
4817
 
4818
  #. translators: %s HTML tags
4819
+ #: settings.php:5193
4820
  msgid "%s Insertion exceptions %s for individual posts and pages"
4821
  msgstr ""
4822
 
4823
  #. translators: %s HTML tags
4824
+ #: settings.php:5194
4825
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4826
  msgstr ""
4827
 
4828
  #. translators: %s HTML tags
4829
+ #: settings.php:5195
4830
  msgid ""
4831
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4832
  "scrolls)"
4833
  msgstr ""
4834
 
4835
  #. translators: %s HTML tags
4836
+ #: settings.php:5196
4837
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4838
  msgstr ""
4839
 
4840
  #. translators: %s HTML tags
4841
+ #: settings.php:5197
4842
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4843
  msgstr ""
4844
 
4845
  #. translators: %s HTML tags
4846
+ #: settings.php:5198
4847
  msgid ""
4848
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4849
  "visible)"
4850
  msgstr ""
4851
 
4852
  #. translators: %s HTML tags
4853
+ #: settings.php:5199
4854
  msgid ""
4855
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4856
  msgstr ""
4857
 
4858
  #. translators: %s HTML tags
4859
+ #: settings.php:5200
4860
  msgid "Block %s alignment and style %s customizations"
4861
  msgstr ""
4862
 
4863
  #. translators: %s HTML tags
4864
+ #: settings.php:5201
4865
  msgid ""
4866
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4867
  "TOS)"
4868
  msgstr ""
4869
 
4870
  #. translators: %s HTML tags
4871
+ #: settings.php:5202
4872
  msgid ""
4873
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4874
  "feeds"
4875
  msgstr ""
4876
 
4877
  #. translators: %s HTML tags
4878
+ #: settings.php:5203
4879
  msgid "%s Ad rotation %s (works also with caching)"
4880
  msgstr ""
4881
 
4882
  #. translators: %s HTML tags
4883
+ #: settings.php:5204
4884
  msgid "Create, edit and check %s ads.txt %s file"
4885
  msgstr ""
4886
 
4887
  #. translators: %s HTML tags
4888
+ #: settings.php:5205
4889
  msgid ""
4890
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4891
  "AdSense)"
4892
  msgstr ""
4893
 
4894
  #. translators: %s HTML tags
4895
+ #: settings.php:5206
4896
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4897
  msgstr ""
4898
 
4899
  #. translators: %s HTML tags
4900
+ #: settings.php:5207
4901
  msgid "%s Public web reports %s for clients, export to PDF"
4902
  msgstr ""
4903
 
4904
  #. translators: %s HTML tags
4905
+ #: settings.php:5208
4906
  msgid "Support for %s A/B testing %s"
4907
  msgstr ""
4908
 
4909
  #. translators: %s HTML tags
4910
+ #: settings.php:5209
4911
  msgid "Frequency capping - %s limit impressions or clicks %s"
4912
  msgstr ""
4913
 
4914
  #. translators: %s HTML tags
4915
+ #: settings.php:5210
4916
  msgid "Click fraud %s protection %s"
4917
  msgstr ""
4918
 
4919
  #. translators: %s HTML tags
4920
+ #: settings.php:5211
4921
  msgid "Support for %s lazy loading %s"
4922
  msgstr ""
4923
 
4924
  #. translators: %s HTML tags
4925
+ #: settings.php:5212
4926
  msgid "Support for ads on %s AMP pages %s"
4927
  msgstr ""
4928
 
4929
  #. translators: %s HTML tags
4930
+ #: settings.php:5213
4931
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4932
  msgstr ""
4933
 
4934
  #. translators: %s HTML tags
4935
+ #: settings.php:5214
4936
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4937
  msgstr ""
4938
 
4939
  #. translators: %s HTML tags
4940
+ #: settings.php:5216
4941
  msgid "%s Banner %s code generator"
4942
  msgstr ""
4943
 
4944
  #. translators: %s HTML tags
4945
+ #: settings.php:5217
4946
  msgid "Support for %s header and footer %s code"
4947
  msgstr ""
4948
 
4949
  #. translators: %s HTML tags
4950
+ #: settings.php:5218
4951
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4952
  msgstr ""
4953
 
4954
  #. translators: %s HTML tags
4955
+ #: settings.php:5219
4956
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4957
  msgstr ""
4958
 
4959
  #. translators: %s HTML tags
4960
+ #: settings.php:5220
4961
  msgid "Client-side %s mobile device detection %s (works with caching)"
4962
  msgstr ""
4963
 
4964
  #. translators: %s HTML tags
4965
+ #: settings.php:5221
4966
  msgid ""
4967
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4968
  "protection"
4969
  msgstr ""
4970
 
4971
  #. translators: %s HTML tags
4972
+ #: settings.php:5222
4973
  msgid "%s Ad blocking statistics %s"
4974
  msgstr ""
4975
 
4976
  #. translators: %s HTML tags
4977
+ #: settings.php:5223
4978
  msgid ""
4979
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4980
  "referrers, operating systems, browsers"
4981
  msgstr ""
4982
 
4983
  #. translators: %s HTML tags
4984
+ #: settings.php:5224
4985
  msgid ""
4986
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4987
  msgstr ""
4988
 
4989
  #. translators: %s HTML tags
4990
+ #: settings.php:5225
4991
  msgid "%s Multisite options %s to limit settings on the sites"
4992
  msgstr ""
4993
 
4994
  #. translators: %s HTML tags
4995
+ #: settings.php:5226
4996
  msgid "%s Import/Export %s block or plugin settings"
4997
  msgstr ""
4998
 
4999
  #. translators: %s HTML tags
5000
+ #: settings.php:5227
5001
  msgid "%s Insertion scheduling %s with fallback option"
5002
  msgstr ""
5003
 
5004
  #. translators: %s HTML tags
5005
+ #: settings.php:5228
5006
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5007
  msgstr ""
5008
 
5009
  #. translators: %s HTML tags
5010
+ #: settings.php:5229
5011
  msgid "Simple troubleshooting with many %s debugging functions %s"
5012
  msgstr ""
5013
 
5014
  #. translators: %s HTML tags
5015
+ #: settings.php:5230
5016
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5017
  msgstr ""
5018
 
5019
  #. translators: %s HTML tags
5020
+ #: settings.php:5231
5021
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5022
  msgstr ""
5023
 
5024
  #. translators: %s HTML tags
5025
+ #: settings.php:5232
5026
  msgid ""
5027
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5028
  msgstr ""
5029
 
5030
  #. translators: %s HTML tags
5031
+ #: settings.php:5233
5032
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5033
  msgstr ""
5034
 
5035
  #. translators: %s HTML tags
5036
+ #: settings.php:5234
5037
  msgid "No ads on the settings page"
5038
  msgstr ""
5039
 
5040
  #. translators: %s HTML tags
5041
+ #: settings.php:5235
5042
  msgid "Premium support"
5043
  msgstr ""
5044
 
5045
  #. translators: %s HTML tags
5046
+ #: settings.php:5238
5047
  msgid ""
5048
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5049
  "website with many advertising features to automatically insert adverts on "
5058
  msgstr ""
5059
 
5060
  #. translators: %s HTML tags
5061
+ #: settings.php:5251
5062
  msgid "Looking for %s Pro Ad Management plugin? %s"
5063
  msgstr ""
5064
 
5065
  #. translators: %s HTML tags
5066
+ #: settings.php:5256
5067
  msgid "Ads between posts"
5068
  msgstr ""
5069
 
5070
  #. translators: %s HTML tags
5071
+ #: settings.php:5257
5072
  msgid "Ads between comments"
5073
  msgstr ""
5074
 
5075
  #. translators: %s HTML tags
5076
+ #: settings.php:5258
5077
  msgid "Support via email"
5078
  msgstr ""
5079
 
5080
  #. translators: %s HTML tags
5081
+ #: settings.php:5264
5082
  msgid "%s Sticky positions %s"
5083
  msgstr ""
5084
 
5085
  #. translators: %s HTML tags
5086
+ #: settings.php:5265
5087
  msgid "%s Limit insertions %s"
5088
  msgstr ""
5089
 
5090
  #. translators: %s HTML tags
5091
+ #: settings.php:5266
5092
  msgid "%s Clearance %s options"
5093
  msgstr ""
5094
 
5095
  #. translators: %s HTML tags
5096
+ #: settings.php:5272
5097
  msgid "Ad rotation"
5098
  msgstr ""
5099
 
5100
  #. translators: %s HTML tags
5101
+ #: settings.php:5273
5102
  msgid "%s A/B testing %s"
5103
  msgstr ""
5104
 
5105
  #. translators: %s HTML tags
5106
+ #: settings.php:5274
5107
  msgid "%s Ad tracking %s"
5108
  msgstr ""
5109
 
5110
  #. translators: %s HTML tags
5111
+ #: settings.php:5280
5112
  msgid "Support for %s AMP pages %s"
5113
  msgstr ""
5114
 
5115
  #. translators: %s HTML tags
5116
+ #: settings.php:5281
5117
  msgid "%s Ad blocking detection %s"
5118
  msgstr ""
5119
 
5120
  #. translators: %s HTML tags
5121
+ #: settings.php:5282
5122
  msgid "%s Mobile device detection %s"
5123
  msgstr ""
5124
 
5125
  #. translators: %s HTML tags
5126
+ #: settings.php:5289
5127
  msgid "64 code blocks"
5128
  msgstr ""
5129
 
5130
  #. translators: %s HTML tags
5131
+ #: settings.php:5290
5132
  msgid "%s GEO targeting %s"
5133
  msgstr ""
5134
 
5135
  #. translators: %s HTML tags
5136
+ #: settings.php:5291
5137
  msgid "%s Scheduling %s"
5138
  msgstr ""
5139
 
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.6
7
  Tested up to: 5.3
8
  Requires PHP: 5.6
9
- Stable tag: 2.6.2
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
@@ -87,6 +87,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
87
  * [Blacklist/Whitelist](https://adinserter.pro/documentation/black-and-white-lists) categories, tags, taxonomies, post IDs, urls, url query parameters, cookies, referrers, browsers, operating systems
88
  * Easy copying and pasting ads or settings using internal clipboard
89
  * Can wait for jQuery when it is deferred
 
90
  * Simple troubleshooting with many debugging functions
91
  * Function to visualize inserted blocks
92
  * Function to visualize AdSense ads with ad names and IDs
@@ -128,7 +129,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
128
  * [Sticky (floating) ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with animations (fade, slide, turn, flip, zoom)
129
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
130
  * Support for sticky ad bar
131
- * Support for scheduling with fallback option
132
  * Support for ads in iframes
133
  * Ad blocking detection - replace ads, protect content
134
  * Ad blocking statistics
@@ -330,6 +331,15 @@ If you are not happy to reveal this information and you have opted in, simply di
330
 
331
  == Changelog ==
332
 
 
 
 
 
 
 
 
 
 
333
  = 2.6.2 =
334
  - Added support to disable caching of block PHP code
335
  - Added support to pause blocks on the blocks list
@@ -439,6 +449,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
439
 
440
  == Upgrade Notice ==
441
 
 
 
 
 
 
 
 
 
 
442
  = 2.6.2 =
443
  Added support to disable caching of block PHP code;
444
  Added support to pause blocks on the blocks list;
6
  Requires at least: 4.6
7
  Tested up to: 5.3
8
  Requires PHP: 5.6
9
+ Stable tag: 2.6.3
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
87
  * [Blacklist/Whitelist](https://adinserter.pro/documentation/black-and-white-lists) categories, tags, taxonomies, post IDs, urls, url query parameters, cookies, referrers, browsers, operating systems
88
  * Easy copying and pasting ads or settings using internal clipboard
89
  * Can wait for jQuery when it is deferred
90
+ * Use it with Google Site Kit or replace it to have more control over ad placement
91
  * Simple troubleshooting with many debugging functions
92
  * Function to visualize inserted blocks
93
  * Function to visualize AdSense ads with ad names and IDs
129
  * [Sticky (floating) ads](https://adinserter.pro/documentation/alignments-and-styles#sticky-ads) with animations (fade, slide, turn, flip, zoom)
130
  * Animation trigger for sticky ads (page scroll in % or px, HTML element becomes visible)
131
  * Support for sticky ad bar
132
+ * Support for scheduling date and time with fallback option
133
  * Support for ads in iframes
134
  * Ad blocking detection - replace ads, protect content
135
  * Ad blocking statistics
331
 
332
  == Changelog ==
333
 
334
+ = 2.6.3 =
335
+ - Added support for shortcodes to disable block insertion
336
+ - Added support for child taxonomy list items
337
+ - Added random parameter to Ajax requests for geolocation (Pro only)
338
+ - Added options to define external tracking event category, action and label (Pro only)
339
+ - Number of custom hooks increased to 20
340
+ - Fix to prevent insertion into head section when using Rank Math plugin
341
+ - Few minor bug fixes, cosmetic changes and code improvements
342
+
343
  = 2.6.2 =
344
  - Added support to disable caching of block PHP code
345
  - Added support to pause blocks on the blocks list
449
 
450
  == Upgrade Notice ==
451
 
452
+ = 2.6.3 =
453
+ Added support for shortcodes to disable block insertion;
454
+ Added support for child taxonomy list items;
455
+ Added random parameter to Ajax requests for geolocation (Pro only);
456
+ Added options to define external tracking event category, action and label (Pro only);
457
+ Number of custom hooks increased to 20;
458
+ Fix to prevent insertion into head section when using Rank Math plugin;
459
+ Few minor bug fixes, cosmetic changes and code improvements
460
+
461
  = 2.6.2 =
462
  Added support to disable caching of block PHP code;
463
  Added support to pause blocks on the blocks list;
settings.php CHANGED
@@ -666,21 +666,27 @@ function generate_settings_form (){
666
  $page_exceptions = array ();
667
  $post_exceptions = array ();
668
  if (!empty ($block_exceptions [$block])) {
669
- $index = 0;
 
670
  foreach ($block_exceptions [$block] as $id => $exception) {
671
- $row_class = $index % 2 == 0 ? 'even' : 'odd';
 
 
 
 
672
  $exception_line = '<tr class="' . $row_class . '">
673
- <td class="id" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $id . '</a></td>
674
  <td class="type" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $exception ['name'] . '</a></td>
675
- <td class="page page-only" title="Edit"><a href="' . get_edit_post_link ($id) . '" target="_blank" style="margin-left: 2px; color: #222;">' . $exception ['title'] . '</a></td>
676
  <td></td>
677
  </tr>' . "\n";
678
  if ($exception ['type'] == 'page') {
679
  $page_exceptions []= $exception_line;
 
680
  } else {
681
  $post_exceptions []= $exception_line;
 
682
  }
683
- $index ++;
684
  }
685
  }
686
 
@@ -1192,7 +1198,7 @@ function generate_settings_form (){
1192
  name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
1193
  value="&#x274C;"
1194
  type="submit"
1195
- style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44;" /></th>
1196
  </tr>
1197
  <?php
1198
  foreach ($post_exceptions as $exception) {
@@ -2155,7 +2161,7 @@ function generate_settings_form (){
2155
  </div>
2156
 
2157
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
2158
- <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 260px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
2159
  <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>
2160
  <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>
2161
  <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>
@@ -2571,7 +2577,7 @@ function generate_settings_form (){
2571
  <tbody>
2572
  <?php
2573
 
2574
- for ($hook = 1; $hook <= 8; $hook ++) {
2575
  ?>
2576
  <tr>
2577
  <td style="padding: 0 0 2px 0;">
@@ -3183,7 +3189,7 @@ function generate_settings_form (){
3183
  if (defined ('AI_ADSENSE_API')) {
3184
  adsense_list_container ();
3185
  }
3186
- code_block_list_container ($start, $end);
3187
 
3188
  if (function_exists ('ai_settings_side')) {
3189
  ai_settings_side ();
@@ -3286,28 +3292,26 @@ function generate_settings_form (){
3286
  <?php
3287
  if (!function_exists ('ai_settings_side')) {
3288
  ?>
3289
- replace_blocked_image ('ai-media-1', 'contextual-1.gif', 'block');
3290
- replace_blocked_image ('ai-media-2', 'contextual-2.jpg', 'block');
3291
- replace_blocked_image ('ai-media-3', 'contextual-3.png', 'block');
3292
- replace_blocked_image ('ai-media-4', 'contextual-4.gif', 'block');
3293
- replace_blocked_image ('ai-media-5', 'contextual-5.png', 'block');
3294
- replace_blocked_image ('ai-media-6', 'contextual-6.gif', 'block');
3295
- replace_blocked_image ('ai-media-7', 'contextual-7.gif', 'block');
3296
- replace_blocked_image ('ai-media-8', 'contextual-8.gif', 'block');
3297
- replace_blocked_image ('ai-media-9', 'contextual-9.jpg', 'block');
3298
  replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
3299
  replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
3300
  replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
3301
- replace_blocked_image ('ai-oko-1', 'oko-1.jpg', 'block');
3302
- replace_blocked_image ('ai-oko-2', 'oko-2.jpg', 'block');
3303
- replace_blocked_image ('ai-oko-3', 'oko-3.jpg', 'block');
3304
- replace_blocked_image ('ai-oko-4', 'oko-4.jpg', 'block');
3305
  replace_blocked_image ('ai-ez-1', 'ez-1.jpg', 'block');
3306
  replace_blocked_image ('ai-ez-2', 'ez-2.jpg', 'block');
3307
  replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
3308
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3309
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
3310
  replace_blocked_image ('ai-preview', 'ai-preview-250.png', 'block');
 
 
3311
  replace_blocked_image ('ai-stars-img', 'stars.png', 'inline');
3312
  <?php
3313
  } else {
@@ -3499,7 +3503,7 @@ function page_checker_container () {
3499
  <?php
3500
  }
3501
 
3502
- function code_block_list_container ($start, $end) {
3503
  $blocks_sticky = function_exists ('ai_block_list_buttons') ? get_blocks_sticky () : false;
3504
  ?>
3505
  <div id="ai-list-container" class="ai-form rounded" style="background: #fff; <?php echo $blocks_sticky ? '' : 'display: none;'; ?>">
@@ -3530,7 +3534,7 @@ function code_block_list_container ($start, $end) {
3530
  </div>
3531
 
3532
  <div id="ai-list-data"<?php echo $blocks_sticky ? ' class="ai-sticky"' :''; ?>>
3533
- <?php echo $blocks_sticky ? code_block_list ($start, $end, '', false) : __ ('Loading...', 'ad-inserter'); ?>
3534
  </div>
3535
  </div>
3536
  <?php
@@ -3972,7 +3976,7 @@ function ai_change_settings () {
3972
  }
3973
  }
3974
 
3975
- function code_block_list ($start, $end, $search_text, $show_all_blocks) {
3976
  global $block_object, $wpdb, $ai_db_options_extract;
3977
 
3978
  if (defined ('AI_SAFE_MODE') || isset ($_GET ['safe-mode'])) {
@@ -4158,7 +4162,10 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
4158
 
4159
  $blocks []= $block;
4160
  $row_counter ++;
4161
- $row_color = $row_counter % 2 == 0 ? '#eee' : '#fff';
 
 
 
4162
 
4163
  $edit_url = admin_url ('options-general.php?page=ad-inserter.php') . '&start=' . (intval (($block - 1) / 16) * 16 + 1) . '&tab=' . $block . $url_safe_mode;
4164
 
@@ -4187,7 +4194,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
4187
  }
4188
 
4189
  ?>
4190
- <tr style="background: <?php echo $row_color; ?>" data-block="<?php echo $block; ?>">
4191
  <td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
4192
  <span class="ai-list-button">
4193
  <label class="checkbox-button ai-preview-block" style="margin-top: -1px;" title="<?php _e ('Preview block', 'ad-inserter'); ?>"><span class="checkbox-icon size-8 icon-preview"></span></label>
@@ -4205,7 +4212,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
4205
  <?php if ($visible_tab): ?>
4206
  <td class="ai-tab-link" data-tab="<?php echo $block; ?>" style=" min-width: 120px; color: #0073aa; cursor: pointer; text-align: left; padding-left: 5px; max-width: 220px; white-space: nowrap; overflow: hidden;"><?php echo $obj->get_ad_name(); ?></td>
4207
  <?php else: ?>
4208
- <td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 280px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
4209
  <?php endif ?>
4210
  <td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
4211
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
@@ -4223,7 +4230,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
4223
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_php_function ? '#8080ff' : 'transparent'; ?>;">fn</td>
4224
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_shortcode ? '#f66' : 'transparent'; ?>;">[s]</td>
4225
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_widget ? (count ($sidebars_with_widget [$block]) ? '#7cda7c' : '#aaa') : 'transparent'; ?>;">w</td>
4226
- <td style="text-align: left; padding-left: 5px; max-width: 160px; white-space: nowrap; overflow: hidden; color: <?php echo $manual_widget ? '#666' : '#ccc'; ?>;"><?php echo implode (', ', $sidebars_with_widget [$block]); ?></td>
4227
  </tr>
4228
  <?php
4229
  }
@@ -4252,7 +4259,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
4252
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('PHP function call', 'ad-inserter'); ?>">fn</th>
4253
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Shortcode', 'ad-inserter'); ?>">[s]</th>
4254
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Widget', 'ad-inserter'); ?>">W</th>
4255
- <th style="text-align: left; padding-left: 5px; color: #999;"><?php _e ('Widget positions', 'ad-inserter'); ?></th>
4256
  </tr>
4257
  </thead>
4258
  <tbody>
@@ -4844,7 +4851,7 @@ function ai_check_page ($options) {
4844
  function sidebar_addense_alternative () { ?>
4845
 
4846
  <?php
4847
- switch (rand (1, 16)) {
4848
  case 1:
4849
  ?>
4850
  <div class="ai-form header rounded">
@@ -4916,36 +4923,6 @@ function sidebar_addense_alternative () { ?>
4916
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4917
  <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>
4918
  </div>
4919
- <?php
4920
- break;
4921
-
4922
- case 13:
4923
- case 14:
4924
- ?>
4925
- <div class="ai-form header rounded">
4926
- <div style="float: left;">
4927
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize your revenue!', 'ad-inserter'); ?></h2>
4928
- </div>
4929
- <div style="clear: both;"></div>
4930
- </div>
4931
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4932
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=door&utm_term=banner' class="clear-link" target="_blank"><img id="ai-oko-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-2.jpg" /></a>
4933
- </div>
4934
- <?php
4935
- break;
4936
-
4937
- case 15:
4938
- case 16:
4939
- ?>
4940
- <div class="ai-form header rounded">
4941
- <div style="float: left;">
4942
- <h2 style="display: inline-block; margin: 5px 0;"><?php _e ('Maximize your revenue!', 'ad-inserter'); ?></h2>
4943
- </div>
4944
- <div style="clear: both;"></div>
4945
- </div>
4946
- <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4947
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=time&utm_term=banner' class="clear-link" target="_blank"><img id="ai-oko-4" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-4.jpg" /></a>
4948
- </div>
4949
  <?php
4950
  break;
4951
  }
@@ -5121,12 +5098,12 @@ function sidebar_pro () {
5121
  <div class="ai-image-left">
5122
  <?php switch ($version) {
5123
  case 0: ?>
5124
- <!-- <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>-->
5125
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=door&utm_term=mpu' class="clear-link" target="_blank"><img id="ai-oko-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-1.jpg" /></a>
5126
  <?php break; case 1: ?>
5127
  <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>
5128
  <?php break; case 2: ?>
5129
- <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-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>
 
5130
  <?php break; case 3: ?>
5131
  <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>
5132
  <?php break;
@@ -5140,8 +5117,7 @@ function sidebar_pro () {
5140
  <?php break;
5141
  case 1:
5142
  ?>
5143
- <!-- <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>-->
5144
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=time&utm_term=mpu' class="clear-link" target="_blank"><img id="ai-oko-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-3.jpg" /></a>
5145
  <?php break;
5146
  case 2:
5147
  ?>
@@ -5149,7 +5125,8 @@ function sidebar_pro () {
5149
  <?php break;
5150
  case 3:
5151
  ?>
5152
- <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-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>
 
5153
  <?php break;
5154
  } ?>
5155
  </div>
@@ -5160,15 +5137,14 @@ function sidebar_pro () {
5160
  <!-- <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-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.gif" /></a>-->
5161
  <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>
5162
  <?php break; case 1: ?>
5163
- <!-- <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>-->
5164
- <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-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>
5165
  <?php break; case 2: ?>
5166
  <!-- <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>-->
5167
  <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>
5168
  <?php break; case 3: ?>
5169
- <!-- <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>-->
5170
  <!-- <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>-->
5171
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=time&utm_term=mpu' class="clear-link" target="_blank"><img id="ai-oko-3" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-3.jpg" /></a>
5172
  <?php break;
5173
  } ?>
5174
  </div>
@@ -5176,8 +5152,9 @@ function sidebar_pro () {
5176
  <?php switch ($version) {
5177
  case 0:
5178
  ?>
 
5179
  <!-- <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>-->
5180
- <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>
5181
  <?php break;
5182
  case 1:
5183
  ?>
@@ -5185,8 +5162,7 @@ function sidebar_pro () {
5185
  <?php break;
5186
  case 2:
5187
  ?>
5188
- <!-- <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>-->
5189
- <a href='https://oko.uk/?utm_source=adinserterpro&utm_medium=plugin&utm_campaign=door&utm_term=mpu' class="clear-link" target="_blank"><img id="ai-oko-1" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>oko-1.jpg" /></a>
5190
  <?php break;
5191
  case 3:
5192
  ?>
666
  $page_exceptions = array ();
667
  $post_exceptions = array ();
668
  if (!empty ($block_exceptions [$block])) {
669
+ $page_index = 0;
670
+ $post_index = 0;
671
  foreach ($block_exceptions [$block] as $id => $exception) {
672
+ if ($exception ['type'] == 'page') {
673
+ $row_class = $page_index % 2 == 0 ? 'even' : 'odd';
674
+ } else {
675
+ $row_class = $post_index % 2 == 0 ? 'even' : 'odd';
676
+ }
677
  $exception_line = '<tr class="' . $row_class . '">
678
+ <td class="id" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $id .'</a></td>
679
  <td class="type" title="View"><a href="' . get_permalink ($id) . '" target="_blank" style="color: #222;">' . $exception ['name'] . '</a></td>
680
+ <td class="page-title page-only" title="Edit"><a href="' . get_edit_post_link ($id) . '" target="_blank" style="margin-left: 2px; color: #222;">' . $exception ['title'] . '</a></td>
681
  <td></td>
682
  </tr>' . "\n";
683
  if ($exception ['type'] == 'page') {
684
  $page_exceptions []= $exception_line;
685
+ $page_index ++;
686
  } else {
687
  $post_exceptions []= $exception_line;
688
+ $post_index ++;
689
  }
 
690
  }
691
  }
692
 
1198
  name="<?php echo AI_FORM_CLEAR_EXCEPTIONS; ?>"
1199
  value="&#x274C;"
1200
  type="submit"
1201
+ style="padding: 1px 3px; border: 0; background: transparent; font-size: 8px; color: #e44; box-shadow: none; vertical-align: baseline;" /></th>
1202
  </tr>
1203
  <?php
1204
  foreach ($post_exceptions as $exception) {
2161
  </div>
2162
 
2163
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
2164
+ <select id="scheduling-<?php echo $block; ?>" style="margin: 2px 1px; max-width: 340px;" name="<?php echo AI_OPTION_SCHEDULING, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_scheduling(); ?>">
2165
  <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>
2166
  <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>
2167
  <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>
2577
  <tbody>
2578
  <?php
2579
 
2580
+ for ($hook = 1; $hook <= 20; $hook ++) {
2581
  ?>
2582
  <tr>
2583
  <td style="padding: 0 0 2px 0;">
3189
  if (defined ('AI_ADSENSE_API')) {
3190
  adsense_list_container ();
3191
  }
3192
+ code_block_list_container ($start, $end, $active_tab);
3193
 
3194
  if (function_exists ('ai_settings_side')) {
3195
  ai_settings_side ();
3292
  <?php
3293
  if (!function_exists ('ai_settings_side')) {
3294
  ?>
3295
+ // replace_blocked_image ('ai-media-1', 'contextual-1.gif', 'block');
3296
+ // replace_blocked_image ('ai-media-2', 'contextual-2.jpg', 'block');
3297
+ // replace_blocked_image ('ai-media-3', 'contextual-3.png', 'block');
3298
+ // replace_blocked_image ('ai-media-4', 'contextual-4.gif', 'block');
3299
+ // replace_blocked_image ('ai-media-5', 'contextual-5.png', 'block');
3300
+ // replace_blocked_image ('ai-media-6', 'contextual-6.gif', 'block');
3301
+ // replace_blocked_image ('ai-media-7', 'contextual-7.gif', 'block');
3302
+ // replace_blocked_image ('ai-media-8', 'contextual-8.gif', 'block');
3303
+ // replace_blocked_image ('ai-media-9', 'contextual-9.jpg', 'block');
3304
  replace_blocked_image ('ai-info-1', 'info-1.jpg', 'block');
3305
  replace_blocked_image ('ai-info-2', 'info-2.jpg', 'block');
3306
  replace_blocked_image ('ai-info-3', 'info-3.jpg', 'block');
 
 
 
 
3307
  replace_blocked_image ('ai-ez-1', 'ez-1.jpg', 'block');
3308
  replace_blocked_image ('ai-ez-2', 'ez-2.jpg', 'block');
3309
  replace_blocked_image ('ai-pro-1', 'icon-256x256.jpg', 'block');
3310
  replace_blocked_image ('ai-pro-2', 'ai-charts-250.png', 'block');
3311
  replace_blocked_image ('ai-pro-3', 'ai-countries-250.png', 'block');
3312
  replace_blocked_image ('ai-preview', 'ai-preview-250.png', 'block');
3313
+ replace_blocked_image ('ai-adb', 'ai-adb.png', 'block');
3314
+ replace_blocked_image ('ai-amp', 'ai-amp.png', 'block');
3315
  replace_blocked_image ('ai-stars-img', 'stars.png', 'inline');
3316
  <?php
3317
  } else {
3503
  <?php
3504
  }
3505
 
3506
+ function code_block_list_container ($start, $end, $active_block) {
3507
  $blocks_sticky = function_exists ('ai_block_list_buttons') ? get_blocks_sticky () : false;
3508
  ?>
3509
  <div id="ai-list-container" class="ai-form rounded" style="background: #fff; <?php echo $blocks_sticky ? '' : 'display: none;'; ?>">
3534
  </div>
3535
 
3536
  <div id="ai-list-data"<?php echo $blocks_sticky ? ' class="ai-sticky"' :''; ?>>
3537
+ <?php echo $blocks_sticky ? code_block_list ($start, $end, '', false, $active_block) : __ ('Loading...', 'ad-inserter'); ?>
3538
  </div>
3539
  </div>
3540
  <?php
3976
  }
3977
  }
3978
 
3979
+ function code_block_list ($start, $end, $search_text, $show_all_blocks, $active_block) {
3980
  global $block_object, $wpdb, $ai_db_options_extract;
3981
 
3982
  if (defined ('AI_SAFE_MODE') || isset ($_GET ['safe-mode'])) {
4162
 
4163
  $blocks []= $block;
4164
  $row_counter ++;
4165
+ $row_class = $row_counter % 2 == 0 ? 'even' : 'odd';
4166
+ if ($block == $active_block) {
4167
+ $row_class .= ' ai-block-active';
4168
+ }
4169
 
4170
  $edit_url = admin_url ('options-general.php?page=ad-inserter.php') . '&start=' . (intval (($block - 1) / 16) * 16 + 1) . '&tab=' . $block . $url_safe_mode;
4171
 
4194
  }
4195
 
4196
  ?>
4197
+ <tr class="ai-block-list ai-block-<?php echo $block, ' ', $row_class; ?>" data-block="<?php echo $block; ?>">
4198
  <td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
4199
  <span class="ai-list-button">
4200
  <label class="checkbox-button ai-preview-block" style="margin-top: -1px;" title="<?php _e ('Preview block', 'ad-inserter'); ?>"><span class="checkbox-icon size-8 icon-preview"></span></label>
4212
  <?php if ($visible_tab): ?>
4213
  <td class="ai-tab-link" data-tab="<?php echo $block; ?>" style=" min-width: 120px; color: #0073aa; cursor: pointer; text-align: left; padding-left: 5px; max-width: 220px; white-space: nowrap; overflow: hidden;"><?php echo $obj->get_ad_name(); ?></td>
4214
  <?php else: ?>
4215
+ <td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 250px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
4216
  <?php endif ?>
4217
  <td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
4218
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
4230
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_php_function ? '#8080ff' : 'transparent'; ?>;">fn</td>
4231
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_shortcode ? '#f66' : 'transparent'; ?>;">[s]</td>
4232
  <td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; font-weight: bold; color: <?php echo $manual_widget ? (count ($sidebars_with_widget [$block]) ? '#7cda7c' : '#aaa') : 'transparent'; ?>;">w</td>
4233
+ <td style="text-align: left; padding-left: 5px; max-width: 100px; white-space: nowrap; overflow: hidden; color: <?php echo $manual_widget ? '#666' : '#ccc'; ?>;"><?php echo implode (', ', $sidebars_with_widget [$block]); ?></td>
4234
  </tr>
4235
  <?php
4236
  }
4259
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('PHP function call', 'ad-inserter'); ?>">fn</th>
4260
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Shortcode', 'ad-inserter'); ?>">[s]</th>
4261
  <th style="text-align: center; padding-left: 5px; color: #999;" title="<?php _e ('Widget', 'ad-inserter'); ?>">W</th>
4262
+ <th style="text-align: left; padding-left: 5px; color: #999;"><?php //_e ('Widget positions', 'ad-inserter'); ?></th>
4263
  </tr>
4264
  </thead>
4265
  <tbody>
4851
  function sidebar_addense_alternative () { ?>
4852
 
4853
  <?php
4854
+ switch (rand (5, 12)) {
4855
  case 1:
4856
  ?>
4857
  <div class="ai-form header rounded">
4923
  <div class="ai-form rounded" style="height: 90px; padding: 8px 4px 8px 12px;">
4924
  <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>
4925
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4926
  <?php
4927
  break;
4928
  }
5098
  <div class="ai-image-left">
5099
  <?php switch ($version) {
5100
  case 0: ?>
5101
+ <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>
 
5102
  <?php break; case 1: ?>
5103
  <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>
5104
  <?php break; case 2: ?>
5105
+ <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
5106
+ <!-- <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-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.jpg" /></a>-->
5107
  <?php break; case 3: ?>
5108
  <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>
5109
  <?php break;
5117
  <?php break;
5118
  case 1:
5119
  ?>
5120
+ <a href="https://adinserter.pro/documentation/amp-pages" class="clear-link" title="<?php _e ('Insert ads on AMP pages', 'ad-inserter'); ?>" target="_blank"><img id="ai-amp" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-amp.png" /></a>
 
5121
  <?php break;
5122
  case 2:
5123
  ?>
5125
  <?php break;
5126
  case 3:
5127
  ?>
5128
+ <a href='https://adinserter.pro/documentation/ad-blocking-detection' class="clear-link" title="<?php _e ('Ad blocking detection and content protection', 'ad-inserter'); ?>" target="_blank"><img id="ai-adb" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-adb.png" /></a>
5129
+ <!-- <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-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5130
  <?php break;
5131
  } ?>
5132
  </div>
5137
  <!-- <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-9" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-9.gif" /></a>-->
5138
  <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>
5139
  <?php break; case 1: ?>
5140
+ <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>
5141
+ <!-- <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-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>contextual-2.jpg" /></a>-->
5142
  <?php break; case 2: ?>
5143
  <!-- <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>-->
5144
  <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>
5145
  <?php break; case 3: ?>
5146
+ <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>
5147
  <!-- <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>-->
 
5148
  <?php break;
5149
  } ?>
5150
  </div>
5152
  <?php switch ($version) {
5153
  case 0:
5154
  ?>
5155
+ <a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="clear-link" title="<?php _e ('A/B testing - Track ad impressions and clicks', 'ad-inserter'); ?>" target="_blank"><img id="ai-pro-2" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-charts-250.png" /></a>
5156
  <!-- <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>-->
5157
+ <!-- <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>-->
5158
  <?php break;
5159
  case 1:
5160
  ?>
5162
  <?php break;
5163
  case 2:
5164
  ?>
5165
+ <a href='https://adinserter.pro/documentation/code-preview' class="clear-link" title="<?php _e ('Code preview with visual CSS editor', 'ad-inserter'); ?>" target="_blank"><img id="ai-preview" src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ai-preview-250.png" /></a>
 
5166
  <?php break;
5167
  case 3:
5168
  ?>