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

Version Description

  • Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
  • Added support for block shortcode attributes
  • Added support for post ID list to include all posts or static pages
  • Added option for maximum number of paragraphs
  • Added support to check for update server accessibility (Pro only)
  • Added ids to ad blocking popup message and overlay elements
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

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

Code changes from version 2.5.2 to 2.5.3

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.5.2
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,15 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.5.2 - 2019-09-10
19
  - Added options to define paragraph counting inside container elements
20
  - Added support to pin block list (Pro only)
@@ -676,6 +685,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
676
  case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
677
  case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
678
  case AI_CHECK_PARAGRAPHS_MIN_NUMBER: $status .= "PARAGRAPHS MIN NUMBER"; break;
 
679
  case AI_CHECK_PARAGRAPH_NUMBER: $status .= "PARAGRAPH NUMBER " . $obj->get_paragraph_number(); break;
680
  case AI_CHECK_NO_PARAGRAPHS: $status .= "NO PARAGRAPHS"; break;
681
 
@@ -2165,8 +2175,8 @@ function ai_replace_js_data ($js) {
2165
  if (strpos ($js, 'AI_ADB_STATUS_MESSAGE') !== false) {
2166
  $adb = $block_object [AI_ADB_MESSAGE_OPTION_NAME];
2167
 
2168
- $js = str_replace ('AI_ADB_OVERLAY_WINDOW', "jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), AI_BASIC_ADB_OVERLAY_CSS) . get_overlay_css ()) . "')}})", $js);
2169
- $js = str_replace ('AI_ADB_MESSAGE_WINDOW', "jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), AI_BASIC_ADB_MESSAGE_CSS) . get_message_css ()) . "')}, 'html': b64d ('" .
2170
  base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), do_shortcode ($adb->ai_getCode ()))) . "')})", $js);
2171
 
2172
  $js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
@@ -2417,6 +2427,15 @@ function ai_admin_notice_hook () {
2417
  }
2418
  }
2419
  }
 
 
 
 
 
 
 
 
 
2420
  }
2421
 
2422
  function ai_plugin_action_links ($links) {
@@ -2427,6 +2446,24 @@ function ai_plugin_action_links ($links) {
2427
  return $links;
2428
  }
2429
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2430
  function ai_set_plugin_meta ($links, $file) {
2431
  if ($file == plugin_basename (__FILE__)) {
2432
  if (is_multisite() && !is_main_site ()) {
@@ -2729,7 +2766,12 @@ function get_adb_status_debug_info () {
2729
  if ($ai_wp_data [AI_ADB_DETECTION]) {
2730
  $title = __('Click to delete ad blocking detection cokies', 'ad-inserter');
2731
  $status = __('AD BLOCKING STATUS UNKNOWN', 'ad-inserter');
2732
- $page_type = "<section id='ai-adb-bar' class='".AI_DEBUG_STATUS_CLASS.' '.AI_DEBUG_ADB_CLASS."' title='$title'><span id='ai-adb-status'>$status</span></section>";
 
 
 
 
 
2733
  }
2734
  }
2735
 
@@ -4737,6 +4779,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4737
  // $option == AI_OPTION_PARAGRAPH_TEXT_TYPE ||
4738
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
4739
  $option == AI_OPTION_MIN_PARAGRAPHS ||
 
4740
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
4741
  $option == AI_OPTION_AVOID_PARAGRAPHS_ABOVE ||
4742
  $option == AI_OPTION_AVOID_PARAGRAPHS_BELOW ||
@@ -5800,6 +5843,8 @@ function ai_settings () {
5800
  $start = 1;
5801
  $end = 16;
5802
 
 
 
5803
  if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
5804
 
5805
  if (isset ($_GET ['start'])) $start = $_GET ['start']; else $start = 1;
@@ -5819,6 +5864,7 @@ function ai_settings () {
5819
  // Use saved settings
5820
  $ai_options = wp_slash ($ai_db_options);
5821
  $invalid_blocks []= 0;
 
5822
  } else $ai_options = wp_slash ($ai_options);
5823
  } else {
5824
  // Try to import individual settings
@@ -5869,12 +5915,24 @@ function ai_settings () {
5869
  $field_value = $_POST [$form_field_name];
5870
 
5871
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5872
- $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
 
 
 
 
 
 
5873
  }
5874
 
5875
  $ai_options [$block][$key] = filter_option ($key, $field_value);
5876
  }
5877
  }
 
 
 
 
 
 
5878
  }
5879
 
5880
  delete_option (str_replace ("#", $block, AD_ADx_OPTIONS));
@@ -5888,7 +5946,13 @@ function ai_settings () {
5888
  $field_value = $_POST [$form_field_name];
5889
 
5890
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5891
- $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
 
 
 
 
 
 
5892
  }
5893
 
5894
  $wp_options [$key] = filter_option_hf ($key, $field_value);
@@ -5904,7 +5968,14 @@ function ai_settings () {
5904
  $field_value = $_POST [$form_field_name];
5905
 
5906
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5907
- $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
 
 
 
 
 
 
 
5908
  }
5909
 
5910
  $wp_options [$key] = filter_option_hf ($key, $field_value);
@@ -5921,8 +5992,14 @@ function ai_settings () {
5921
  $field_value = $_POST [$form_field_name];
5922
 
5923
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5924
- $field_value = wp_slash (base64_decode (substr ($field_value, 4)));
5925
- }
 
 
 
 
 
 
5926
 
5927
  $wp_options [$key] = filter_option_hf ($key, $field_value);
5928
  }
@@ -5999,57 +6076,61 @@ function ai_settings () {
5999
 
6000
  if (!empty ($invalid_blocks)) {
6001
  if ($invalid_blocks [0] == 0) { // translators: %s: Ad Inserter
6002
- echo '<div class="error" style="margin: 5px 15px 2px 0px; padding: 10px;">', sprintf (__('Error importing %s settings.', 'ad-inserter'), AD_INSERTER_NAME), '</div>';
6003
- } else echo '<div class="error" style="margin: 5px 15px 2px 0px; padding: 10px;">', _n('Error importing settings for block', 'Error importing settings for blocks:', count ($invalid_blocks), 'ad-inserter') , ' ', implode (', ', $invalid_blocks), '.</div>';
6004
  }
6005
 
6006
- // Generate and save extract
6007
- // Save new options as some function may need new settings
6008
- update_option (AI_OPTION_NAME, $ai_options);
6009
- ai_load_settings ();
 
6010
 
6011
- $ai_options [AI_OPTION_EXTRACT] = ai_generate_extract ($ai_options);
6012
- $ai_db_options_extract = $ai_options [AI_OPTION_EXTRACT];
6013
 
6014
- $ai_options [AI_OPTION_GLOBAL]['VIEWPORT_CSS'] = generate_viewport_css ();
6015
- $ai_options [AI_OPTION_GLOBAL]['ALIGNMENT_CSS'] = generate_alignment_css ();
6016
 
6017
- $ai_options [AI_OPTION_GLOBAL]['TIMESTAMP'] = time ();
6018
 
6019
- if (!get_option (AI_INSTALL_NAME)) {
6020
- update_option (AI_INSTALL_NAME, time ());
6021
- }
6022
 
6023
- update_option (AI_OPTION_NAME, $ai_options);
6024
 
6025
- update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
6026
 
6027
- // Multisite
6028
- if (is_multisite () && is_main_site ()) {
6029
- $options = array ();
6030
- if (function_exists ('ai_filter_multisite_settings')) ai_filter_multisite_settings ($options);
6031
- ai_check_multisite_options ($options);
6032
- update_site_option (AI_OPTION_NAME, $options);
6033
- }
6034
 
6035
- ai_load_settings ();
6036
 
6037
- if (function_exists ('ai_load_globals')) ai_load_globals ();
6038
 
6039
- if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
6040
- if (isset ($_POST ['plugin-usage-tracking'])) {
6041
- global $ai_dst;
6042
- if (isset ($ai_dst) && is_object ($ai_dst)) {
6043
- $ai_dst->set_tracking ((bool) $_POST ['plugin-usage-tracking']);
 
6044
  }
6045
  }
6046
- }
6047
 
6048
- delete_option (str_replace ("#", "Header", AD_ADx_OPTIONS));
6049
- delete_option (str_replace ("#", "Footer", AD_ADx_OPTIONS));
6050
- delete_option (AD_OPTIONS);
6051
 
6052
- echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p><strong>' . __('Settings saved.', 'ad-inserter') . '</strong></p></div>';
 
 
 
6053
  } elseif (isset ($_POST [AI_FORM_CLEAR])) {
6054
 
6055
  check_admin_referer ('save_adinserter_settings');
@@ -7393,6 +7474,10 @@ function ai_process_shortcode (&$block, $atts) {
7393
  if (isset ($ai_wp_data [AI_SHORTCODES]['head'])) {
7394
  $saved_head = $ai_wp_data [AI_SHORTCODES]['head'];
7395
  }
 
 
 
 
7396
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'])) {
7397
  $saved_block_number = $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'];
7398
  }
@@ -7414,6 +7499,9 @@ function ai_process_shortcode (&$block, $atts) {
7414
  if (isset ($saved_head)) {
7415
  $ai_wp_data [AI_SHORTCODES]['head'] = $saved_head;
7416
  } else unset ($ai_wp_data [AI_SHORTCODES]['head']);
 
 
 
7417
  if (isset ($saved_block_number)) {
7418
  $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $saved_block_number;
7419
  } else unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
@@ -8108,6 +8196,36 @@ function ai_secret_key () {
8108
  // return $generator . PHP_EOL . '<meta name="generator" content="'.AD_INSERTER_NAME.' '.AD_INSERTER_VERSION.'" />';
8109
  //}
8110
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8111
 
8112
  function ai_yoast_primary_category () {
8113
  $category = get_the_category ();
@@ -8185,8 +8303,8 @@ if (!is_admin()) {
8185
  // Version check
8186
  global $wp_version, $version_string, $subversion_string;
8187
 
8188
- if (version_compare ($wp_version, "4.0", "<")) {
8189
- exit ('Ad Inserter ' . __('requires WordPress 4.0 or newer', 'ad-inserter') . '. <a href="http://codex.wordpress.org/Upgrading_WordPress" target=_blank">'. __('Please update!', 'ad-inserter') . '</a>');
8190
  }
8191
 
8192
  //include required files
@@ -8369,6 +8487,8 @@ add_action ('save_post', 'ai_save_meta_box_data_hook');
8369
  if (function_exists ('ai_hooks')) ai_hooks ();
8370
 
8371
  add_filter ('plugin_action_links_'.plugin_basename (__FILE__), 'ai_plugin_action_links');
 
 
8372
  add_filter ('plugin_row_meta', 'ai_set_plugin_meta', 10, 2);
8373
  //add_filter ('the_generator', 'ai_the_generator');
8374
 
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.5.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.5.3 - 2019-09-24
19
+ - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
20
+ - Added support for block shortcode attributes
21
+ - Added support for post ID list to include all posts or static pages
22
+ - Added option for maximum number of paragraphs
23
+ - Added support to check for update server accessibility (Pro only)
24
+ - Added ids to ad blocking popup message and overlay elements
25
+ - Few minor bug fixes, cosmetic changes and code improvements
26
+
27
  Ad Inserter 2.5.2 - 2019-09-10
28
  - Added options to define paragraph counting inside container elements
29
  - Added support to pin block list (Pro only)
685
  case AI_CHECK_PARAGRAPHS_AFTER_TEXT: $status .= "PARAGRAPHS AFTER TEXT"; break;
686
  case AI_CHECK_PARAGRAPHS_AFTER_CLEARANCE: $status .= "PARAGRAPHS AFTER CLEARANCE"; break;
687
  case AI_CHECK_PARAGRAPHS_MIN_NUMBER: $status .= "PARAGRAPHS MIN NUMBER"; break;
688
+ case AI_CHECK_PARAGRAPHS_MAX_NUMBER: $status .= "PARAGRAPHS MAX NUMBER"; break;
689
  case AI_CHECK_PARAGRAPH_NUMBER: $status .= "PARAGRAPH NUMBER " . $obj->get_paragraph_number(); break;
690
  case AI_CHECK_NO_PARAGRAPHS: $status .= "NO PARAGRAPHS"; break;
691
 
2175
  if (strpos ($js, 'AI_ADB_STATUS_MESSAGE') !== false) {
2176
  $adb = $block_object [AI_ADB_MESSAGE_OPTION_NAME];
2177
 
2178
+ $js = str_replace ('AI_ADB_OVERLAY_WINDOW', "jQuery ('<div>', {attr: {'id': 'ai-adb-overlay', 'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), AI_BASIC_ADB_OVERLAY_CSS) . get_overlay_css ()) . "')}})", $js);
2179
+ $js = str_replace ('AI_ADB_MESSAGE_WINDOW', "jQuery ('<div>', {attr: {'id': 'ai-adb-message', 'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), AI_BASIC_ADB_MESSAGE_CSS) . get_message_css ()) . "')}, 'html': b64d ('" .
2180
  base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), do_shortcode ($adb->ai_getCode ()))) . "')})", $js);
2181
 
2182
  $js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
2427
  }
2428
  }
2429
  }
2430
+
2431
+ if ($hook_suffix == $ai_settings_page) {
2432
+ if (ai_ampforwp_check_disabled ()) {
2433
+ echo '<div class="notice notice-warning is-dismissible" style="margin: 5px 15px 2px 0px;"><p>',
2434
+ /* translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter */
2435
+ sprintf (__('Warning: %1$s %3$s disabled %4$s %2$s on AMP pages.', 'ad-inserter'), 'AMPforWP Plugin Manager', AD_INSERTER_NAME, '<a href="https://adinserter.pro/documentation/amp-pages#ampforwp" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>'),
2436
+ '</p></div>';
2437
+ }
2438
+ }
2439
  }
2440
 
2441
  function ai_plugin_action_links ($links) {
2446
  return $links;
2447
  }
2448
 
2449
+ function ai_after_plugin_row_1 ($plugin_file, $plugin_data, $status) {
2450
+ global $ad_inserter_globals;
2451
+
2452
+ if (ai_ampforwp_check_disabled ()) {
2453
+ $plugins_css = "\n" . '<style>
2454
+ .plugins tr.active[data-slug=ad-inserter] th, .plugins tr.active[data-slug=ad-inserter] td {box-shadow: none;}
2455
+ </style>'."\n";
2456
+
2457
+ echo $plugins_css;
2458
+ echo '<tr class="plugin-update-tr active';
2459
+ if (isset ($plugin_data ['update']) && $plugin_data ['update']) echo ' update';
2460
+ echo '"><td colspan="3" class="plugin-update colspanchange ai-message"><div class="update-message notice inline notice-warning notice-alt"><p> ',
2461
+ /* translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags */
2462
+ sprintf (__('Warning: %1$s %3$s disabled %4$s %2$s on AMP pages.', 'ad-inserter'), 'AMPforWP Plugin Manager', AD_INSERTER_NAME, '<a href="https://adinserter.pro/documentation/amp-pages#ampforwp" target="_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>'),
2463
+ '</p></div></td></tr>';
2464
+ }
2465
+ }
2466
+
2467
  function ai_set_plugin_meta ($links, $file) {
2468
  if ($file == plugin_basename (__FILE__)) {
2469
  if (is_multisite() && !is_main_site ()) {
2766
  if ($ai_wp_data [AI_ADB_DETECTION]) {
2767
  $title = __('Click to delete ad blocking detection cokies', 'ad-inserter');
2768
  $status = __('AD BLOCKING STATUS UNKNOWN', 'ad-inserter');
2769
+
2770
+ $events = '';
2771
+ if (isset ($_GET ['ai-debug-adb-events']) && $_GET ['ai-debug-adb-events']) {
2772
+ $events = "<span id='ai-adb-events'></span>";
2773
+ }
2774
+ $page_type = "<section id='ai-adb-bar' class='".AI_DEBUG_STATUS_CLASS.' '.AI_DEBUG_ADB_CLASS."' title='$title'><span id='ai-adb-status'>$status</span>$events</section>";
2775
  }
2776
  }
2777
 
4779
  // $option == AI_OPTION_PARAGRAPH_TEXT_TYPE ||
4780
  $option == AI_OPTION_PARAGRAPH_NUMBER ||
4781
  $option == AI_OPTION_MIN_PARAGRAPHS ||
4782
+ $option == AI_OPTION_MAX_PARAGRAPHS ||
4783
  $option == AI_OPTION_MIN_WORDS_ABOVE ||
4784
  $option == AI_OPTION_AVOID_PARAGRAPHS_ABOVE ||
4785
  $option == AI_OPTION_AVOID_PARAGRAPHS_BELOW ||
5843
  $start = 1;
5844
  $end = 16;
5845
 
5846
+ $settings_ok = true;
5847
+
5848
  if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
5849
 
5850
  if (isset ($_GET ['start'])) $start = $_GET ['start']; else $start = 1;
5864
  // Use saved settings
5865
  $ai_options = wp_slash ($ai_db_options);
5866
  $invalid_blocks []= 0;
5867
+ $settings_ok = false;
5868
  } else $ai_options = wp_slash ($ai_options);
5869
  } else {
5870
  // Try to import individual settings
5915
  $field_value = $_POST [$form_field_name];
5916
 
5917
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5918
+ $code = base64_decode (substr ($field_value, 4));
5919
+ if ($code !== false) {
5920
+ $field_value = wp_slash ($code);
5921
+ } else {
5922
+ $field_value = '';
5923
+ $settings_ok = false;
5924
+ }
5925
  }
5926
 
5927
  $ai_options [$block][$key] = filter_option ($key, $field_value);
5928
  }
5929
  }
5930
+
5931
+ if (!isset ($ai_options [$block]) || count ($ai_options [$block]) == 0) {
5932
+ if (!isset ($_POST ['block-parameters-' . $block])) {
5933
+ $settings_ok = false;
5934
+ }
5935
+ }
5936
  }
5937
 
5938
  delete_option (str_replace ("#", $block, AD_ADx_OPTIONS));
5946
  $field_value = $_POST [$form_field_name];
5947
 
5948
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5949
+ $code = base64_decode (substr ($field_value, 4));
5950
+ if ($code !== false) {
5951
+ $field_value = wp_slash ($code);
5952
+ } else {
5953
+ $field_value = '';
5954
+ $settings_ok = false;
5955
+ }
5956
  }
5957
 
5958
  $wp_options [$key] = filter_option_hf ($key, $field_value);
5968
  $field_value = $_POST [$form_field_name];
5969
 
5970
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5971
+ $code = base64_decode (substr ($field_value, 4));
5972
+ if ($code !== false) {
5973
+ $field_value = wp_slash ($code);
5974
+ } else {
5975
+ $field_value = '';
5976
+ $settings_ok = false;
5977
+ }
5978
+
5979
  }
5980
 
5981
  $wp_options [$key] = filter_option_hf ($key, $field_value);
5992
  $field_value = $_POST [$form_field_name];
5993
 
5994
  if ($key == AI_OPTION_CODE && strpos ($field_value, ':AI:') === 0) {
5995
+ $code = base64_decode (substr ($field_value, 4));
5996
+ if ($code !== false) {
5997
+ $field_value = wp_slash ($code);
5998
+ } else {
5999
+ $field_value = '';
6000
+ $settings_ok = false;
6001
+ }
6002
+ }
6003
 
6004
  $wp_options [$key] = filter_option_hf ($key, $field_value);
6005
  }
6076
 
6077
  if (!empty ($invalid_blocks)) {
6078
  if ($invalid_blocks [0] == 0) { // translators: %s: Ad Inserter
6079
+ echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>'. sprintf (__('Error importing %s settings.', 'ad-inserter'), AD_INSERTER_NAME) . '</p></div>';
6080
+ } else echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>'. _n('Error importing settings for block', 'Error importing settings for blocks:', count ($invalid_blocks), 'ad-inserter') , ' ', implode (', ', $invalid_blocks) . '</p></div>';
6081
  }
6082
 
6083
+ if ($settings_ok) {
6084
+ // Generate and save extract
6085
+ // Save new options as some function may need new settings
6086
+ update_option (AI_OPTION_NAME, $ai_options);
6087
+ ai_load_settings ();
6088
 
6089
+ $ai_options [AI_OPTION_EXTRACT] = ai_generate_extract ($ai_options);
6090
+ $ai_db_options_extract = $ai_options [AI_OPTION_EXTRACT];
6091
 
6092
+ $ai_options [AI_OPTION_GLOBAL]['VIEWPORT_CSS'] = generate_viewport_css ();
6093
+ $ai_options [AI_OPTION_GLOBAL]['ALIGNMENT_CSS'] = generate_alignment_css ();
6094
 
6095
+ $ai_options [AI_OPTION_GLOBAL]['TIMESTAMP'] = time ();
6096
 
6097
+ if (!get_option (AI_INSTALL_NAME)) {
6098
+ update_option (AI_INSTALL_NAME, time ());
6099
+ }
6100
 
6101
+ update_option (AI_OPTION_NAME, $ai_options);
6102
 
6103
+ update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
6104
 
6105
+ // Multisite
6106
+ if (is_multisite () && is_main_site ()) {
6107
+ $options = array ();
6108
+ if (function_exists ('ai_filter_multisite_settings')) ai_filter_multisite_settings ($options);
6109
+ ai_check_multisite_options ($options);
6110
+ update_site_option (AI_OPTION_NAME, $options);
6111
+ }
6112
 
6113
+ ai_load_settings ();
6114
 
6115
+ if (function_exists ('ai_load_globals')) ai_load_globals ();
6116
 
6117
+ if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
6118
+ if (isset ($_POST ['plugin-usage-tracking'])) {
6119
+ global $ai_dst;
6120
+ if (isset ($ai_dst) && is_object ($ai_dst)) {
6121
+ $ai_dst->set_tracking ((bool) $_POST ['plugin-usage-tracking']);
6122
+ }
6123
  }
6124
  }
 
6125
 
6126
+ delete_option (str_replace ("#", "Header", AD_ADx_OPTIONS));
6127
+ delete_option (str_replace ("#", "Footer", AD_ADx_OPTIONS));
6128
+ delete_option (AD_OPTIONS);
6129
 
6130
+ echo '<div class="notice notice-success is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . __('Settings saved.', 'ad-inserter') . '</p></div>';
6131
+ } else { // translators: %s: Ad Inserter
6132
+ echo '<div class="notice notice-error is-dismissible" style="margin: 5px 15px 2px 0px;"><p>' . sprintf (__('Invalid data received - %s settings not saved.', 'ad-inserter'), AD_INSERTER_NAME) . '</p></div>';
6133
+ }
6134
  } elseif (isset ($_POST [AI_FORM_CLEAR])) {
6135
 
6136
  check_admin_referer ('save_adinserter_settings');
7474
  if (isset ($ai_wp_data [AI_SHORTCODES]['head'])) {
7475
  $saved_head = $ai_wp_data [AI_SHORTCODES]['head'];
7476
  }
7477
+ if (isset ($ai_wp_data [AI_SHORTCODES]['atts'])) {
7478
+ $saved_atts = $ai_wp_data [AI_SHORTCODES]['atts'];
7479
+ }
7480
+ $ai_wp_data [AI_SHORTCODES]['atts'] = $atts;
7481
  if (isset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'])) {
7482
  $saved_block_number = $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'];
7483
  }
7499
  if (isset ($saved_head)) {
7500
  $ai_wp_data [AI_SHORTCODES]['head'] = $saved_head;
7501
  } else unset ($ai_wp_data [AI_SHORTCODES]['head']);
7502
+ if (isset ($saved_atts)) {
7503
+ $ai_wp_data [AI_SHORTCODES]['atts'] = $saved_atts;
7504
+ } else unset ($ai_wp_data [AI_SHORTCODES]['atts']);
7505
  if (isset ($saved_block_number)) {
7506
  $ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $saved_block_number;
7507
  } else unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
8196
  // return $generator . PHP_EOL . '<meta name="generator" content="'.AD_INSERTER_NAME.' '.AD_INSERTER_VERSION.'" />';
8197
  //}
8198
 
8199
+ function ai_ampforwp_check_disabled () {
8200
+ if (is_multisite()) {
8201
+ $option_active_plugins = array_merge (array_flip (get_site_option ('active_sitewide_plugins', array ())), get_option ('active_plugins', array ()));
8202
+ } else $option_active_plugins = get_option ('active_plugins');
8203
+
8204
+ $present = false;
8205
+ foreach ($option_active_plugins as $option_active_plugin) {
8206
+ if ($option_active_plugin == AD_INSERTER_SLUG . '/ad-inserter.php') {
8207
+ $present = true;
8208
+ break;
8209
+ }
8210
+ }
8211
+
8212
+ if (!$present) return false;
8213
+
8214
+ if (function_exists ('ampforwp_api_request_disable_plugin')) {
8215
+ $option_active_plugins = ampforwp_api_request_disable_plugin ($option_active_plugins);
8216
+ }
8217
+
8218
+ $disabled = true;
8219
+ foreach ($option_active_plugins as $option_active_plugin) {
8220
+ if ($option_active_plugin == AD_INSERTER_SLUG . '/ad-inserter.php') {
8221
+ $disabled = false;
8222
+ break;
8223
+ }
8224
+ }
8225
+
8226
+ return $disabled;
8227
+ }
8228
+
8229
 
8230
  function ai_yoast_primary_category () {
8231
  $category = get_the_category ();
8303
  // Version check
8304
  global $wp_version, $version_string, $subversion_string;
8305
 
8306
+ if (version_compare ($wp_version, "4.6", "<")) {
8307
+ exit ('Ad Inserter ' . __('requires WordPress 4.6 or newer', 'ad-inserter') . '. <a href="http://codex.wordpress.org/Upgrading_WordPress" target=_blank">'. __('Please update!', 'ad-inserter') . '</a>');
8308
  }
8309
 
8310
  //include required files
8487
  if (function_exists ('ai_hooks')) ai_hooks ();
8488
 
8489
  add_filter ('plugin_action_links_'.plugin_basename (__FILE__), 'ai_plugin_action_links');
8490
+ add_action ('after_plugin_row_' . AD_INSERTER_SLUG . '/ad-inserter.php', 'ai_after_plugin_row_1', 10, 3);
8491
+
8492
  add_filter ('plugin_row_meta', 'ai_set_plugin_meta', 10, 2);
8493
  //add_filter ('the_generator', 'ai_the_generator');
8494
 
class.php CHANGED
@@ -551,6 +551,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
551
  $this->wp_options [AI_OPTION_INSIDE_ELEMENT] = DEFAULT_INSIDE_ELEMENT;
552
  $this->wp_options [AI_OPTION_PARAGRAPH_NUMBER] = AD_ONE;
553
  $this->wp_options [AI_OPTION_MIN_PARAGRAPHS] = AD_EMPTY_DATA;
 
554
  $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] = AD_EMPTY_DATA;
555
  $this->wp_options [AI_OPTION_MIN_WORDS] = AD_EMPTY_DATA;
556
  $this->wp_options [AI_OPTION_MAX_WORDS] = AD_EMPTY_DATA;
@@ -1412,6 +1413,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
1412
  return $option;
1413
  }
1414
 
 
 
 
 
 
 
1415
  public function get_minimum_words_above (){
1416
  $option = isset ($this->wp_options [AI_OPTION_MIN_WORDS_ABOVE]) ? $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] : "";
1417
  return $option;
@@ -4453,12 +4460,14 @@ echo '</body>
4453
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
4454
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
4455
 
4456
- $direction = $this->get_avoid_direction();
4457
- $max_checks = $this->get_avoid_try_limit();
4458
 
4459
  $failed_clearance_positions = array ();
4460
  foreach ($positions as $position_index => $position) {
4461
 
 
 
4462
  if (($avoid_paragraphs_above != 0 || $avoid_paragraphs_below != 0) && count ($paragraph_positions) > $position) {
4463
 
4464
  if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1));
@@ -4607,6 +4616,8 @@ echo '</body>
4607
  break;
4608
  }
4609
  } else {
 
 
4610
  // Text not found - insert
4611
  $positions [$position_index] = $position;
4612
  break;
@@ -4642,6 +4653,7 @@ echo '</body>
4642
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
4643
 
4644
  $min_paragraphs = intval ($this->get_paragraph_number_minimum());
 
4645
  $max_page_blocks_enabled = $this->get_max_page_blocks_enabled ();
4646
 
4647
  foreach ($paragraph_positions as $counter => $paragraph_position) {
@@ -4663,22 +4675,27 @@ echo '</body>
4663
  $ai_last_check = AI_CHECK_PARAGRAPHS_MIN_NUMBER;
4664
  if (count ($paragraph_positions) >= $min_paragraphs) {
4665
 
4666
- $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
4667
- if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
4668
- $this->increment_block_counter ();
4669
 
4670
- // Increment page block counter
4671
- if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
 
4672
 
4673
- $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
4674
- if (!$this->get_debug_disable_insertion ()) {
4675
- $inserted_code = $this->get_code_for_serverside_insertion ();
4676
- $ai_last_check = AI_CHECK_INSERTED;
4677
- $this->clear_code_cache ();
4678
- $inserted = true;
 
 
 
 
4679
  }
4680
  }
4681
  }
 
4682
  if ($debug_processing) ai_log (ai_log_block_status ($this->number, $ai_last_check));
4683
 
4684
  if (!$inserted) continue;
@@ -5217,12 +5234,14 @@ echo '</body>
5217
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
5218
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
5219
 
5220
- $direction = $this->get_avoid_direction();
5221
- $max_checks = $this->get_avoid_try_limit();
5222
 
5223
  $failed_clearance_positions = array ();
5224
  foreach ($positions as $position_index => $position) {
5225
 
 
 
5226
  if (($avoid_paragraphs_above != 0 || $avoid_paragraphs_below != 0) && count ($paragraph_positions) > $position) {
5227
 
5228
  if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1));
@@ -5372,6 +5391,8 @@ echo '</body>
5372
  break;
5373
  }
5374
  } else {
 
 
5375
  // Text not found - insert
5376
  $positions [$position_index] = $position;
5377
  break;
@@ -5405,6 +5426,7 @@ echo '</body>
5405
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
5406
 
5407
  $min_paragraphs = intval ($this->get_paragraph_number_minimum());
 
5408
  $max_page_blocks_enabled = $this->get_max_page_blocks_enabled ();
5409
 
5410
  foreach ($paragraph_positions as $counter => $paragraph_position) {
@@ -5417,19 +5439,23 @@ echo '</body>
5417
  $ai_last_check = AI_CHECK_PARAGRAPHS_MIN_NUMBER;
5418
  if (count ($paragraph_positions) >= $min_paragraphs) {
5419
 
5420
- $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
5421
- if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
5422
- $this->increment_block_counter ();
 
 
 
5423
 
5424
- // Increment page block counter
5425
- if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
5426
 
5427
- $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
5428
- if (!$this->get_debug_disable_insertion ()) {
5429
- $inserted_code = $this->get_code_for_serverside_insertion ();
5430
- $ai_last_check = AI_CHECK_INSERTED;
5431
- $this->clear_code_cache ();
5432
- $inserted = true;
 
5433
  }
5434
  }
5435
  }
@@ -5764,6 +5790,15 @@ echo '</body>
5764
  foreach ($ids_listed as $index => $id_listed) {
5765
  if (trim ($id_listed) == "") unset ($ids_listed [$index]); else
5766
  $ids_listed [$index] = trim ($id_listed);
 
 
 
 
 
 
 
 
 
5767
  }
5768
 
5769
  // print_r ($ids_listed);
@@ -6273,6 +6308,14 @@ echo '</body>
6273
  function replace_ai_tags ($content){
6274
  global $ai_wp_data;
6275
 
 
 
 
 
 
 
 
 
6276
  if (!isset ($ai_wp_data [AI_TAGS])) {
6277
  $general_tag = str_replace ("&amp;", " and ", $this->get_ad_general_tag());
6278
  $title = $general_tag;
@@ -6454,6 +6497,14 @@ echo '</body>
6454
 
6455
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
6456
 
 
 
 
 
 
 
 
 
6457
  return $ad_data;
6458
  }
6459
 
551
  $this->wp_options [AI_OPTION_INSIDE_ELEMENT] = DEFAULT_INSIDE_ELEMENT;
552
  $this->wp_options [AI_OPTION_PARAGRAPH_NUMBER] = AD_ONE;
553
  $this->wp_options [AI_OPTION_MIN_PARAGRAPHS] = AD_EMPTY_DATA;
554
+ $this->wp_options [AI_OPTION_MAX_PARAGRAPHS] = AD_EMPTY_DATA;
555
  $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] = AD_EMPTY_DATA;
556
  $this->wp_options [AI_OPTION_MIN_WORDS] = AD_EMPTY_DATA;
557
  $this->wp_options [AI_OPTION_MAX_WORDS] = AD_EMPTY_DATA;
1413
  return $option;
1414
  }
1415
 
1416
+ public function get_paragraph_number_maximum(){
1417
+ $option = isset ($this->wp_options [AI_OPTION_MAX_PARAGRAPHS]) ? $this->wp_options [AI_OPTION_MAX_PARAGRAPHS] : "";
1418
+ if ($option == '0') $option = '';
1419
+ return $option;
1420
+ }
1421
+
1422
  public function get_minimum_words_above (){
1423
  $option = isset ($this->wp_options [AI_OPTION_MIN_WORDS_ABOVE]) ? $this->wp_options [AI_OPTION_MIN_WORDS_ABOVE] : "";
1424
  return $option;
4460
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
4461
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
4462
 
4463
+ $check_direction = $this->get_avoid_direction();
4464
+ $max_checks = $this->get_avoid_try_limit();
4465
 
4466
  $failed_clearance_positions = array ();
4467
  foreach ($positions as $position_index => $position) {
4468
 
4469
+ $direction = $check_direction;
4470
+
4471
  if (($avoid_paragraphs_above != 0 || $avoid_paragraphs_below != 0) && count ($paragraph_positions) > $position) {
4472
 
4473
  if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1));
4616
  break;
4617
  }
4618
  } else {
4619
+ if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1) . ' OK');
4620
+
4621
  // Text not found - insert
4622
  $positions [$position_index] = $position;
4623
  break;
4653
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
4654
 
4655
  $min_paragraphs = intval ($this->get_paragraph_number_minimum());
4656
+ $max_paragraphs = intval ($this->get_paragraph_number_maximum());
4657
  $max_page_blocks_enabled = $this->get_max_page_blocks_enabled ();
4658
 
4659
  foreach ($paragraph_positions as $counter => $paragraph_position) {
4675
  $ai_last_check = AI_CHECK_PARAGRAPHS_MIN_NUMBER;
4676
  if (count ($paragraph_positions) >= $min_paragraphs) {
4677
 
4678
+ $ai_last_check = AI_CHECK_PARAGRAPHS_MAX_NUMBER;
4679
+ if ($max_paragraphs <= 0 || count ($paragraph_positions) <= $max_paragraphs) {
 
4680
 
4681
+ $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
4682
+ if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
4683
+ $this->increment_block_counter ();
4684
 
4685
+ // Increment page block counter
4686
+ if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
4687
+
4688
+ $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
4689
+ if (!$this->get_debug_disable_insertion ()) {
4690
+ $inserted_code = $this->get_code_for_serverside_insertion ();
4691
+ $ai_last_check = AI_CHECK_INSERTED;
4692
+ $this->clear_code_cache ();
4693
+ $inserted = true;
4694
+ }
4695
  }
4696
  }
4697
  }
4698
+
4699
  if ($debug_processing) ai_log (ai_log_block_status ($this->number, $ai_last_check));
4700
 
4701
  if (!$inserted) continue;
5234
  $avoid_paragraph_texts_above = explode (",", html_entity_decode (trim ($avoid_text_above)));
5235
  $avoid_paragraph_texts_below = explode (",", html_entity_decode (trim ($avoid_text_below)));
5236
 
5237
+ $check_direction = $this->get_avoid_direction();
5238
+ $max_checks = $this->get_avoid_try_limit();
5239
 
5240
  $failed_clearance_positions = array ();
5241
  foreach ($positions as $position_index => $position) {
5242
 
5243
+ $direction = $check_direction;
5244
+
5245
  if (($avoid_paragraphs_above != 0 || $avoid_paragraphs_below != 0) && count ($paragraph_positions) > $position) {
5246
 
5247
  if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1));
5391
  break;
5392
  }
5393
  } else {
5394
+ if ($debug_processing && $this->number != 0) ai_log ('BLOCK ' . $this->number . ' CLEARANCE CHECK POSITION ' . ($position + 1) . ' OK');
5395
+
5396
  // Text not found - insert
5397
  $positions [$position_index] = $position;
5398
  break;
5426
  if ($debug_processing && $this->number != 0 && count ($real_positions) != 0) ai_log ('BLOCK ' . $this->number . ' INSERTION POSITIONS: ' . implode (', ', $real_positions));
5427
 
5428
  $min_paragraphs = intval ($this->get_paragraph_number_minimum());
5429
+ $max_paragraphs = intval ($this->get_paragraph_number_maximum());
5430
  $max_page_blocks_enabled = $this->get_max_page_blocks_enabled ();
5431
 
5432
  foreach ($paragraph_positions as $counter => $paragraph_position) {
5439
  $ai_last_check = AI_CHECK_PARAGRAPHS_MIN_NUMBER;
5440
  if (count ($paragraph_positions) >= $min_paragraphs) {
5441
 
5442
+ $ai_last_check = AI_CHECK_PARAGRAPHS_MAX_NUMBER;
5443
+ if ($max_paragraphs <= 0 || count ($paragraph_positions) <= $max_paragraphs) {
5444
+
5445
+ $ai_last_check = AI_CHECK_MAX_PAGE_BLOCKS;
5446
+ if (!$max_page_blocks_enabled || $ai_wp_data [AI_PAGE_BLOCKS] < get_max_page_blocks ()) {
5447
+ $this->increment_block_counter ();
5448
 
5449
+ // Increment page block counter
5450
+ if ($max_page_blocks_enabled) $ai_wp_data [AI_PAGE_BLOCKS] ++;
5451
 
5452
+ $ai_last_check = AI_CHECK_DEBUG_NO_INSERTION;
5453
+ if (!$this->get_debug_disable_insertion ()) {
5454
+ $inserted_code = $this->get_code_for_serverside_insertion ();
5455
+ $ai_last_check = AI_CHECK_INSERTED;
5456
+ $this->clear_code_cache ();
5457
+ $inserted = true;
5458
+ }
5459
  }
5460
  }
5461
  }
5790
  foreach ($ids_listed as $index => $id_listed) {
5791
  if (trim ($id_listed) == "") unset ($ids_listed [$index]); else
5792
  $ids_listed [$index] = trim ($id_listed);
5793
+
5794
+ switch ($ai_wp_data [AI_WP_PAGE_TYPE]) {
5795
+ case AI_PT_POST:
5796
+ if ($ids_listed [$index] == 'posts') return $return;
5797
+ break;
5798
+ case AI_PT_STATIC:
5799
+ if ($ids_listed [$index] == 'pages') return $return;
5800
+ break;
5801
+ }
5802
  }
5803
 
5804
  // print_r ($ids_listed);
6308
  function replace_ai_tags ($content){
6309
  global $ai_wp_data;
6310
 
6311
+ if (strpos ($content, '{') === false) return $content;
6312
+
6313
+ if (isset ($ai_wp_data [AI_SHORTCODES]['atts']) && is_array ($ai_wp_data [AI_SHORTCODES]['atts']) && !empty ($ai_wp_data [AI_SHORTCODES]['atts'])) {
6314
+ foreach ($ai_wp_data [AI_SHORTCODES]['atts'] as $name => $value) {
6315
+ $content = preg_replace ("/\{$name(\:[^{}]*?)?\}/i", $value, $content);
6316
+ }
6317
+ }
6318
+
6319
  if (!isset ($ai_wp_data [AI_TAGS])) {
6320
  $general_tag = str_replace ("&amp;", " and ", $this->get_ad_general_tag());
6321
  $title = $general_tag;
6497
 
6498
  if (function_exists ('ai_tags')) ai_tags ($ad_data);
6499
 
6500
+ // Replace default values {tag:default}
6501
+ $default_value_tags = preg_match_all ("/\{[a-zA-Z\-_][a-zA-Z0-9\-_]*?\:([^}]*?)\}/", $ad_data, $matches);
6502
+ if ($default_value_tags) {
6503
+ foreach ($matches [0] as $index => $match) {
6504
+ $ad_data = str_replace ($match, str_replace ('^)', '}', $matches [1][$index]), $ad_data);
6505
+ }
6506
+ }
6507
+
6508
  return $ad_data;
6509
  }
6510
 
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.5.2');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -85,6 +85,7 @@ define ('AI_OPTION_BLOCK_NAME', 'name');
85
  define ('AI_OPTION_AUTOMATIC_INSERTION', 'display_type');
86
  define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
87
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
 
88
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
89
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
90
  define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
@@ -966,6 +967,7 @@ define ('AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD', 58);
966
  define ('AI_CHECK_MAX_CLICKS', 59);
967
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
968
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
 
969
 
970
 
971
  define ('AI_PT_NONE', - 1);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.5.3');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
85
  define ('AI_OPTION_AUTOMATIC_INSERTION', 'display_type');
86
  define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
87
  define ('AI_OPTION_MIN_PARAGRAPHS', 'min_paragraphs');
88
+ define ('AI_OPTION_MAX_PARAGRAPHS', 'max_paragraphs');
89
  define ('AI_OPTION_MIN_WORDS_ABOVE', 'min_words_above');
90
  define ('AI_OPTION_COUNT_INSIDE_BLOCKQUOTE', 'count_inside_blockquote');
91
  define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
967
  define ('AI_CHECK_MAX_CLICKS', 59);
968
  define ('AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD', 60);
969
  define ('AI_CHECK_PARAGRAPHS_AFTER_NO_COUNTING_INSIDE_ELEMENTS', 61);
970
+ define ('AI_CHECK_PARAGRAPHS_MAX_NUMBER', 62);
971
 
972
 
973
  define ('AI_PT_NONE', - 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.5.2"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.5.3"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/ace/mode-ai-html.js CHANGED
@@ -62,6 +62,14 @@ function add_ai_highlighting_rules (highlighter, highlight_rules) {
62
  }
63
  ]);
64
 
 
 
 
 
 
 
 
 
65
  // Add ] to regexp for 'string.unquoted.attribute-value.html'
66
  var arrayLength = highlighter.$rules ['ai-keyword.operator.attribute-equals.xml'].length;
67
  for (var i = 0; i < arrayLength; i++) {
62
  }
63
  ]);
64
 
65
+ //AI {data}
66
+ highlighter.$rules ['start'].unshift (
67
+ {
68
+ token: ["data", "data", "paren", "string", "data"],
69
+ regex: "(\\{)([a-zA-Z][a-zA-Z0-9_-]*)(\\:)?([^\\}]*)?(\\})",
70
+ },
71
+ );
72
+
73
  // Add ] to regexp for 'string.unquoted.attribute-value.html'
74
  var arrayLength = highlighter.$rules ['ai-keyword.operator.attribute-equals.xml'].length;
75
  for (var i = 0; i < arrayLength; i++) {
includes/ace/theme-ad_inserter.js CHANGED
@@ -133,6 +133,9 @@ color: #80ff80;\
133
  //border: 1px solid #FFBBBB;\
134
  //border-radius: 3px;\
135
  }\
 
 
 
136
  .ace-ad-inserter .ace_indent-guide {\
137
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWPQ09NrYAgMjP4PAAtGAwchHMyAAAAAAElFTkSuQmCC) right repeat-y\
138
  }";
133
  //border: 1px solid #FFBBBB;\
134
  //border-radius: 3px;\
135
  }\
136
+ .ace-ad-inserter .ace_data {\
137
+ color: #e0b6ff\
138
+ }\
139
  .ace-ad-inserter .ace_indent-guide {\
140
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWPQ09NrYAgMjP4PAAtGAwchHMyAAAAAAElFTkSuQmCC) right repeat-y\
141
  }";
includes/js/ai-adb.js CHANGED
@@ -121,6 +121,18 @@ function ai_adb_process_content () {
121
  }(jQuery));
122
  }
123
 
 
 
 
 
 
 
 
 
 
 
 
 
124
  ai_adb_detection_type = function (n) {
125
  switch (n) {
126
  case 0:
@@ -168,7 +180,7 @@ var ai_adb_detected = function(n) {
168
  // var ai_adb_debugging = false;
169
 
170
  if (ai_adb_debugging && n == 0) console.log ('');
171
- if (ai_adb_debugging) console.log ("AI AD BLOCKING DETECTED", ai_adb_detection_type (n));
172
 
173
  if (!ai_adb_active) {
174
  ai_adb_active = true;
121
  }(jQuery));
122
  }
123
 
124
+ ai_adb_detection_type_log = function (n) {
125
+ var type = ai_adb_detection_type (n);
126
+ var ai_adb_events = jQuery('#ai-adb-events');
127
+ if (ai_adb_events.count != 0) {
128
+ var message = ai_adb_events.text ();
129
+ if (message != '') message = message + ', '; else message = message + ', EVENTS: ';
130
+ message = message + n;
131
+ ai_adb_events.text (message);
132
+ }
133
+ return type;
134
+ }
135
+
136
  ai_adb_detection_type = function (n) {
137
  switch (n) {
138
  case 0:
180
  // var ai_adb_debugging = false;
181
 
182
  if (ai_adb_debugging && n == 0) console.log ('');
183
+ if (ai_adb_debugging) console.log ("AI AD BLOCKING DETECTED", ai_adb_detection_type_log (n));
184
 
185
  if (!ai_adb_active) {
186
  ai_adb_active = true;
includes/js/ai-adb.min.js CHANGED
@@ -1,10 +1,10 @@
1
  function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,b){return String.fromCharCode("0x"+b)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}
2
  var ai_adb=!1,ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url=
3
  "AI_ADB_REDIRECTION_PAGE";
4
- function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("css");"undefined"==typeof b&&(b="display: none !important;");var c=a(this).data("selectors");if("undefined"==typeof c||""==c)c="p";var e=!1;a(d).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, "+c).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),e=!1;else if(e){var d=
5
- a(this).attr("style");"undefined"==typeof d&&(d="");a(this).attr("style",d+";"+b)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var c=!1;a(d).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, "+b).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),c=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?(a(this).remove(),c=!1):c&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var d=
6
  a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var c=a(this).data("css");"undefined"==typeof c&&(c="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(d).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),f=!1;else if(f){if(0!=b.length){var d=Math.round(a(this).text().length/
7
- (b.length+1));a(this).text(Array(d+1).join(b+" "))}else a(this).text("");d=a(this).attr("style");"undefined"==typeof d&&(d="");a(this).attr("style",d+";"+c)}})})})(jQuery)}
8
  ai_adb_detection_type=function(a){switch(a){case 0:return"0 debugging";case 1:return"1 ads create element";case 2:return"2 sponsors window var";case 3:return"3 banner element";case 4:return"4 custom selectors";case 5:return"5 ga";case 6:return"6 media.net";case 7:return"7 adsense";case 8:return"8 chitika";case 9:return"9 fun adblock 3";case 10:return"10 fun adblock 4";default:return a}};
9
  var ai_adb_detected=function(a){ai_adb_active||(ai_adb_active=!0,function(a){a(window).ready(function(){a(".ai-adb-hide").each(function(){a(this).css({display:"none",visibility:"hidden"});var b=a(this).closest("div[data-ai]");if("undefined"!=typeof b.data("ai")){var c=JSON.parse(b64d(b.data("ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",b.data("ai",b64e(JSON.stringify(c))))}});a(".ai-adb-show").each(function(){a(this).css({display:"block",visibility:"visible"});var b=a(this).data("ai-tracking");
10
  if("undefined"!=typeof b){var c=a(this).closest("div[data-ai]");if("undefined"!=typeof c.data("ai")){if(a(this).hasClass("ai-no-tracking")){var d=JSON.parse(b64d(c.data("ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",b=b64e(JSON.stringify(d)))}c.data("ai",b)}}});setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,
1
  function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,b){return String.fromCharCode("0x"+b)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}
2
  var ai_adb=!1,ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url=
3
  "AI_ADB_REDIRECTION_PAGE";
4
+ function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("css");"undefined"==typeof b&&(b="display: none !important;");var c=a(this).data("selectors");if("undefined"==typeof c||""==c)c="p";var e=!1;a(d).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, "+c).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),e=!1;else if(e){var c=
5
+ a(this).attr("style");"undefined"==typeof c&&(c="");a(this).attr("style",c+";"+b)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var d=a(this).parent(),b=a(this).data("selectors");if("undefined"==typeof b||""==b)b="p";var c=!1;a(d).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, "+b).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),c=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?(a(this).remove(),c=!1):c&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var d=
6
  a(this).parent(),b=a(this).data("text");"undefined"==typeof b&&(b="");var c=a(this).data("css");"undefined"==typeof c&&(c="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(d).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),f=!1;else if(f){if(0!=b.length){var d=Math.round(a(this).text().length/
7
+ (b.length+1));a(this).text(Array(d+1).join(b+" "))}else a(this).text("");d=a(this).attr("style");"undefined"==typeof d&&(d="");a(this).attr("style",d+";"+c)}})})})(jQuery)}ai_adb_detection_type_log=function(a){var d=ai_adb_detection_type(a),b=jQuery("#ai-adb-events");if(0!=b.count){var c=b.text();b.text((""!=c?c+", ":c+", EVENTS: ")+a)}return d};
8
  ai_adb_detection_type=function(a){switch(a){case 0:return"0 debugging";case 1:return"1 ads create element";case 2:return"2 sponsors window var";case 3:return"3 banner element";case 4:return"4 custom selectors";case 5:return"5 ga";case 6:return"6 media.net";case 7:return"7 adsense";case 8:return"8 chitika";case 9:return"9 fun adblock 3";case 10:return"10 fun adblock 4";default:return a}};
9
  var ai_adb_detected=function(a){ai_adb_active||(ai_adb_active=!0,function(a){a(window).ready(function(){a(".ai-adb-hide").each(function(){a(this).css({display:"none",visibility:"hidden"});var b=a(this).closest("div[data-ai]");if("undefined"!=typeof b.data("ai")){var c=JSON.parse(b64d(b.data("ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",b.data("ai",b64e(JSON.stringify(c))))}});a(".ai-adb-show").each(function(){a(this).css({display:"block",visibility:"visible"});var b=a(this).data("ai-tracking");
10
  if("undefined"!=typeof b){var c=a(this).closest("div[data-ai]");if("undefined"!=typeof c.data("ai")){if(a(this).hasClass("ai-no-tracking")){var d=JSON.parse(b64d(c.data("ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",b=b64e(JSON.stringify(d)))}c.data("ai",b)}}});setTimeout(ai_adb_process_content,10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.5.2";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -628,6 +628,9 @@ function SyntaxHighlight (id, block, settings) {
628
  if (!save_enabled) return false;
629
 
630
  var block = textarea.attr ("id").replace ("block-","");
 
 
 
631
  var editor_disabled = true;
632
  if (typeof ace != 'undefined') {
633
  editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
@@ -669,6 +672,10 @@ function SyntaxHighlight (id, block, settings) {
669
  }
670
 
671
  jQuery("#ai-active-tab").attr ("value", '[' + active_tab + ',' + active_tab_0 + ']');
 
 
 
 
672
  });
673
 
674
  session.setMode ("ace/mode/ai-html");
@@ -1187,6 +1194,9 @@ jQuery(document).ready(function($) {
1187
  // var preview_top = (screen.height / 2) - (820 / 2);
1188
 
1189
  function remove_default_values (block) {
 
 
 
1190
  $("#tab-" + block + " input:checkbox").each (function() {
1191
  var default_value = $(this).attr ("default");
1192
  var current_value = $(this).is (':checked');
1
+ var javascript_version = "2.5.3";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
628
  if (!save_enabled) return false;
629
 
630
  var block = textarea.attr ("id").replace ("block-","");
631
+
632
+ // console.log ('form.submit', block);
633
+
634
  var editor_disabled = true;
635
  if (typeof ace != 'undefined') {
636
  editor_disabled = jQuery("#simple-editor-" + block).is(":checked");
672
  }
673
 
674
  jQuery("#ai-active-tab").attr ("value", '[' + active_tab + ',' + active_tab_0 + ']');
675
+
676
+ if (jQuery("#tab-" + block + ' [name]').length == 1) {
677
+ jQuery("#block-parameters-" + block).attr ('name', 'block-parameters-' + block).attr ('value', '1');
678
+ }
679
  });
680
 
681
  session.setMode ("ace/mode/ai-html");
1194
  // var preview_top = (screen.height / 2) - (820 / 2);
1195
 
1196
  function remove_default_values (block) {
1197
+
1198
+ // console.log ('remove_default_values', block);
1199
+
1200
  $("#tab-" + block + " input:checkbox").each (function() {
1201
  var default_value = $(this).attr ("default");
1202
  var current_value = $(this).is (':checked');
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-09-04 18:34:16+00:00\n"
8
- "PO-Revision-Date: 2019-09-04 20:34+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,129 +16,129 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:394
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:410
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:417
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:488
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:495
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:504
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:511
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:521
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1123
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1128
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1133 strings.php:103
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1138 strings.php:104
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1143 strings.php:105
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1148 strings.php:155
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1195
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1199
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1408
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1733 ad-inserter.php:2634
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2180
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2180
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2181
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2182
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2183
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2184
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2185
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2384
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,27 +146,27 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2385 includes/functions.old.php:1652
150
- #: includes/functions.php:1662
151
  msgid "No, thank you."
152
  msgstr "Ne, hvala."
153
 
154
  #. Translators: %s: Ad Inserter
155
- #: ad-inserter.php:2388
156
  msgid ""
157
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
158
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
159
 
160
- #: ad-inserter.php:2389 includes/functions.old.php:1655
161
- #: includes/functions.php:1665
162
  msgid "Not now, maybe later."
163
  msgstr "Ne zdaj, mogoče kasneje."
164
 
165
- #: ad-inserter.php:2399
166
  msgid "I would really appreciate if you could rate the plugin on WordPres."
167
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
168
 
169
- #: ad-inserter.php:2401
170
  msgid ""
171
  "Positive reviews are a great incentive to fix bugs and to add new features "
172
  "for better monetization of your website. Thank you, Igor"
@@ -175,86 +175,92 @@ msgstr ""
175
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
176
 
177
  #. translators: %s: Ad Inserter
178
- #: ad-inserter.php:2407
179
  msgid "Rate %s"
180
  msgstr "Ocenite %s"
181
 
182
- #: ad-inserter.php:2412
183
  msgid "I already did."
184
  msgstr "Sem že."
185
 
186
- #: ad-inserter.php:2425
 
 
 
 
 
 
187
  msgctxt "Menu item"
188
  msgid "Settings"
189
  msgstr "Nastavitve"
190
 
191
  #. translators: %s: Ad Inserter
192
- #: ad-inserter.php:2525
193
  msgctxt "Meta box name"
194
  msgid "%s Individual Exceptions"
195
  msgstr "Posamezne Izjeme za %s"
196
 
197
- #: ad-inserter.php:2554 ad-inserter.php:8555 class.php:2053
198
  #: includes/preview.php:1976 includes/preview.php:2020
199
- #: includes/preview.php:2057 settings.php:4040 strings.php:3
200
  msgid "Block"
201
  msgstr "Blok"
202
 
203
- #: ad-inserter.php:2555 settings.php:4041 settings.php:4126
204
  msgid "Name"
205
  msgstr "Ime"
206
 
207
- #: ad-inserter.php:2558 settings.php:1119
208
  msgid "Default insertion"
209
  msgstr "Privzeto vstavljanje"
210
 
211
  #. translators: For this post or page
212
- #: ad-inserter.php:2561
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr "Za to"
216
 
217
- #: ad-inserter.php:2562
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr "Za ta"
221
 
222
- #: ad-inserter.php:2574
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr "straneh"
226
 
227
- #: ad-inserter.php:2577
228
  msgctxt "Enabled/disabled on all"
229
  msgid "posts"
230
  msgstr "prispevkih"
231
 
232
- #: ad-inserter.php:2595 ad-inserter.php:2607 strings.php:161
233
  msgid "Enabled"
234
  msgstr "Omogočeno"
235
 
236
  #. translators: Menu items
237
- #: ad-inserter.php:2595 ad-inserter.php:2607 includes/functions.old.php:2326
238
- #: includes/functions.php:2338 strings.php:16
239
  msgid "Disabled"
240
  msgstr "Onemogočeno"
241
 
242
- #: ad-inserter.php:2597
243
  msgid "No individual exceptions"
244
  msgstr "Ni posameznih izjem"
245
 
246
  #. translators: Not enabled for pages or posts
247
- #: ad-inserter.php:2599
248
  msgid "Not enabled for"
249
  msgstr "Ni omogočeno za"
250
 
251
  #. translators: No individual exceptions enabled for pages or posts
252
- #: ad-inserter.php:2627
253
  msgid "No block has individual exceptions enabled"
254
  msgstr "Noben blok nima omogočenih posameznih izjem"
255
 
256
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
257
- #: ad-inserter.php:2632
258
  msgid ""
259
  "Default insertion can be configured for each block on %1$s page - button "
260
  "next to %2$s checkbox."
@@ -262,11 +268,11 @@ msgstr ""
262
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
263
  "poleg kljukice za vklop %2$s."
264
 
265
- #: ad-inserter.php:2635 settings.php:1097
266
  msgid "Tag / Archive pages"
267
  msgstr "Strani oznak / arhiva"
268
 
269
- #: ad-inserter.php:2637
270
  msgid ""
271
  "When individual exceptions for a block are enabled, a checkbox will be "
272
  "listed here to change default insertion for this post or page."
@@ -274,7 +280,7 @@ msgstr ""
274
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
275
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
276
 
277
- #: ad-inserter.php:2638
278
  msgid ""
279
  "This way you can individually enable or disable blocks on specific posts or "
280
  "pages."
@@ -282,61 +288,61 @@ msgstr ""
282
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
283
  "prispevku ali strani."
284
 
285
- #: ad-inserter.php:2640
286
  msgid "For more information check page %s"
287
  msgstr "Za več informacij poglejte stran %s"
288
 
289
  #. translators: Ad Inserter Exceptions documentation page
290
- #: ad-inserter.php:2642
291
  msgid "Individual Exceptions"
292
  msgstr "Posamezne Izjeme"
293
 
294
- #: ad-inserter.php:2689
295
  msgid "STATIC PAGE"
296
  msgstr "STATIČNA STRAN"
297
 
298
- #: ad-inserter.php:2692
299
  msgid "POST"
300
  msgstr "PRISPEVEK"
301
 
302
- #: ad-inserter.php:2695
303
  msgid "HOMEPAGE"
304
  msgstr "DOMAČA STRAN"
305
 
306
- #: ad-inserter.php:2698
307
  msgid "CATEGORY PAGE"
308
  msgstr "STRAN KATEGORIJE"
309
 
310
- #: ad-inserter.php:2701
311
  msgid "SEARCH PAGE"
312
  msgstr "STRAN ISKANJE"
313
 
314
- #: ad-inserter.php:2704
315
  msgid "ARCHIVE PAGE"
316
  msgstr "STRAN ARHIVA"
317
 
318
- #: ad-inserter.php:2707
319
  msgid "ERROR 404 PAGE"
320
  msgstr "STRAN NAPAKA 404"
321
 
322
- #: ad-inserter.php:2710
323
  msgid "AJAX CALL"
324
  msgstr "AJAX KLIC"
325
 
326
- #: ad-inserter.php:2713
327
  msgid "UNKNOWN PAGE TYPE"
328
  msgstr "NEZNAN TIP STRANI"
329
 
330
- #: ad-inserter.php:2730
331
  msgid "Click to delete ad blocking detection cokies"
332
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
333
 
334
- #: ad-inserter.php:2731
335
  msgid "AD BLOCKING STATUS UNKNOWN"
336
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
337
 
338
  #. translators: %s: AdSense Auto Ads
339
- #: ad-inserter.php:2755
340
  msgid ""
341
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
342
  "positions"
@@ -344,11 +350,11 @@ msgstr ""
344
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
345
  "položaje"
346
 
347
- #: ad-inserter.php:2894
348
  msgid "Code for insertion"
349
  msgstr "Koda za vstavljanje"
350
 
351
- #: ad-inserter.php:2894
352
  msgid "character"
353
  msgid_plural "characters"
354
  msgstr[0] "znak"
@@ -356,16 +362,16 @@ msgstr[1] "znaka"
356
  msgstr[2] "znaki"
357
  msgstr[3] "znakov"
358
 
359
- #: ad-inserter.php:2937
360
  msgid "Header code"
361
  msgstr "Koda v glavi"
362
 
363
- #: ad-inserter.php:2937
364
  msgctxt "Header code"
365
  msgid "DISABLED"
366
  msgstr "ONEMOGOČENA"
367
 
368
- #: ad-inserter.php:2937 ad-inserter.php:3160
369
  msgid "character inserted"
370
  msgid_plural "characters inserted"
371
  msgstr[0] "znak vstavljen"
@@ -373,43 +379,43 @@ msgstr[1] "znaka vstavljena"
373
  msgstr[2] "znaki vstavljeni"
374
  msgstr[3] "znakov vstavljenih"
375
 
376
- #: ad-inserter.php:2971
377
  msgid "Automatically placed by AdSense Auto ads code"
378
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
379
 
380
- #: ad-inserter.php:3160
381
  msgid "Footer code"
382
  msgstr "Koda v nogi"
383
 
384
- #: ad-inserter.php:3160
385
  msgctxt "Footer code"
386
  msgid "DISABLED"
387
  msgstr "ONEMOGOČENA"
388
 
389
- #: ad-inserter.php:3166
390
  msgid "JAVASCRIPT NOT WORKING"
391
  msgstr "JAVASCRIPT NE DELA"
392
 
393
- #: ad-inserter.php:3166
394
  msgid "NO JAVASCRIPT ERRORS"
395
  msgstr "BREZ JAVASCRIPT NAPAK"
396
 
397
- #: ad-inserter.php:3166
398
  msgid "JAVASCRIPT ERRORS"
399
  msgstr "JAVASCRIPT NAPAKE"
400
 
401
  #. translators: block name (block with default settings)
402
- #: ad-inserter.php:5421
403
  msgctxt "Block name"
404
  msgid "Default"
405
  msgstr "Privzeti"
406
 
407
  #. translators: %s: Ad Inserter
408
- #: ad-inserter.php:6002
409
  msgid "Error importing %s settings."
410
  msgstr "Napaka pri uvozu %s nastavitev."
411
 
412
- #: ad-inserter.php:6003
413
  msgid "Error importing settings for block"
414
  msgid_plural "Error importing settings for blocks:"
415
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -417,54 +423,61 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
417
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
418
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
419
 
420
- #: ad-inserter.php:6052
421
  msgid "Settings saved."
422
  msgstr "Nastavitve shranjene."
423
 
424
- #: ad-inserter.php:6139
 
 
 
 
 
425
  msgid "Settings cleared."
426
  msgstr "Nastavitve ponastavljene."
427
 
428
- #: ad-inserter.php:6484 ad-inserter.php:6486 ad-inserter.php:6509
 
 
429
  msgid "word"
430
  msgid_plural "words"
431
- msgstr[0] "beseda"
432
  msgstr[1] "besedi"
433
  msgstr[2] "besede"
434
  msgstr[3] "besed"
435
 
436
- #: ad-inserter.php:6523 ad-inserter.php:6635
437
  msgid "HTML TAGS REMOVED"
438
  msgstr "HTML ZNAČKE ODSTRANJENE"
439
 
440
- #: ad-inserter.php:6711
441
  msgid "BEFORE COMMENTS"
442
  msgstr "PRED KOMENTARJI"
443
 
444
- #: ad-inserter.php:6819
445
  msgid "AFTER COMMENTS"
446
  msgstr "PO KOMETARJIH"
447
 
448
- #: ad-inserter.php:6882
449
  msgid "BETWEEN COMMENTS"
450
  msgstr "MED KOMENTARJI"
451
 
452
- #: ad-inserter.php:8189
453
- msgid "requires WordPress 4.0 or newer"
454
- msgstr "potrebuje WordPress 4.0 ali novejši"
455
 
456
- #: ad-inserter.php:8189
457
  msgid "Please update!"
458
  msgstr "Prosimo, posodobite!"
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
- #: ad-inserter.php:8428
463
  msgid "Thank you for installing"
464
  msgstr "Hvala za namestitev vtičnika"
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
- #: ad-inserter.php:8430
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
@@ -472,7 +485,7 @@ msgstr ""
472
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
473
  "izbirno in se lahko izključi kadarkoli."
474
 
475
- #: ad-inserter.php:8432
476
  msgid ""
477
  "We don't record any sensitive data, only information regarding the WordPress "
478
  "environment and plugin usage, which will help us to make improvements to the "
@@ -482,7 +495,7 @@ msgstr ""
482
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
483
 
484
  #. translators: Deactivation message: %s: HTML tags
485
- #: ad-inserter.php:8469
486
  msgid ""
487
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
488
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -493,50 +506,50 @@ msgstr ""
493
  "nam %s in poskušali vam bomo pomagati."
494
 
495
  #. translators: %s: Ad Inserter
496
- #: ad-inserter.php:8512
497
  msgid "%s block."
498
  msgstr "%s blok."
499
 
500
  #. translators: widget title
501
- #: ad-inserter.php:8528 ad-inserter.php:8564
502
  msgid "Processing log"
503
  msgstr "Dnevnik procesiranja"
504
 
505
  #. translators: widget title
506
- #: ad-inserter.php:8530 ad-inserter.php:8565
507
  msgid "Dummy widget"
508
  msgstr "Prazen gradnik"
509
 
510
  #. translators: widget title
511
- #: ad-inserter.php:8532 ad-inserter.php:8563
512
  msgid "Debugging tools"
513
  msgstr "Orodja za razhroščevanje"
514
 
515
  #. translators: block status (widget title)
516
- #: ad-inserter.php:8539
517
  msgctxt "block"
518
  msgid "PAUSED"
519
  msgstr "USTAVLJEN"
520
 
521
- #: ad-inserter.php:8540
522
  msgid "WIDGET DISABLED"
523
  msgstr "GRADNIK ONEMOGOČEN"
524
 
525
- #: ad-inserter.php:8541
526
  msgid "Unknown block"
527
  msgstr "Neznan blok"
528
 
529
- #: ad-inserter.php:8550 includes/functions.old.php:3186
530
- #: includes/functions.php:3198 settings.php:1149
531
  msgid "Title"
532
  msgstr "Naslov"
533
 
534
- #: ad-inserter.php:8572
535
  msgctxt "Widget"
536
  msgid "Sticky"
537
  msgstr "Lepljiv"
538
 
539
- #: ad-inserter.php:8621
540
  msgid ""
541
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
542
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -545,7 +558,7 @@ msgstr ""
545
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
546
  "Inserter Pro."
547
 
548
- #: ad-inserter.php:8622
549
  msgid ""
550
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
551
  "will clear all settings that are available only in the Pro version "
@@ -560,130 +573,130 @@ msgstr ""
560
  msgid "PHP error in %s block"
561
  msgstr "PHP napaka v bloku %s"
562
 
563
- #: class.php:2019
564
  msgid "Counters"
565
  msgstr "Števci"
566
 
567
- #: class.php:2023
568
  msgid "Content"
569
  msgstr "Vsebina"
570
 
571
- #: class.php:2028
572
  msgid "Excerpt"
573
  msgstr "Izvleček"
574
 
575
- #: class.php:2033 strings.php:17
576
  msgid "Before post"
577
  msgstr "Pred prispevkom"
578
 
579
- #: class.php:2038 strings.php:18
580
  msgid "After post"
581
  msgstr "Za prispevkom"
582
 
583
- #: class.php:2043 settings.php:1785 settings.php:4058
584
  msgid "Widget"
585
  msgstr "Gradnik"
586
 
587
- #: class.php:2048 settings.php:4056
588
  msgid "PHP function call"
589
  msgstr "Klic PHP funkcije"
590
 
591
- #: class.php:2083
592
  msgid "AJAX REQUEST"
593
  msgstr "AJAX ZAHTEVEK"
594
 
595
- #: class.php:2086
596
  msgid "Ajax request for block in iframe"
597
  msgstr "Ajax zahtevek za blok v iframe-u"
598
 
599
- #: class.php:2116
600
  msgid "Ajax request url, click to open it in a new tab"
601
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
602
 
603
- #: class.php:2119
604
  msgid "IN THE LOOP"
605
  msgstr "V ZANKI"
606
 
607
- #: class.php:2119
608
  msgid "YES"
609
  msgstr "DA"
610
 
611
- #: class.php:2119
612
  msgid "NO"
613
  msgstr "NE"
614
 
615
- #: class.php:2155
616
  msgid "BLOCK"
617
  msgstr "BLOK"
618
 
619
- #: class.php:2155
620
  msgctxt "block or widget"
621
  msgid "INSERTED BUT NOT VISIBLE"
622
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
623
 
624
- #: class.php:2601 class.php:2660
625
  msgid "ACTIVE GROUPS"
626
  msgstr "AKTIVNE SKUPINE"
627
 
628
  #. translators: %s: list parameters and type
629
- #: class.php:2835
630
  msgid "parameters='%s' type='%s'"
631
  msgstr "parametri='%s' tip='%s'"
632
 
633
  #. translators: %s: list parameters and type
634
- #: class.php:2837
635
  msgid "referers='%s' type='%s'"
636
  msgstr "napotitelji='%s' tip='%s'"
637
 
638
  #. translators: %s: list parameters and type
639
- #: class.php:2898
640
  msgid "countries='%s' type='%s'"
641
  msgstr "države='%s' tip='%s'"
642
 
643
  #. translators: %s: list parameters and type
644
- #: class.php:2900
645
  msgid "ip addresses='%s' type='%s'"
646
  msgstr "ip naslovi='%s' tip='%s'"
647
 
648
- #: class.php:3169 strings.php:239
649
  msgid "BEFORE"
650
  msgstr "PRED"
651
 
652
- #: class.php:3177 strings.php:241
653
  msgid "PREPEND CONTENT"
654
  msgstr "DODAJ PRED VSEBINO"
655
 
656
- #: class.php:3181 strings.php:242
657
  msgid "APPEND CONTENT"
658
  msgstr "DODAJ ZA VSEBINO"
659
 
660
- #: class.php:3185 strings.php:243
661
  msgid "REPLACE CONTENT"
662
  msgstr "NADOMESTI VSEBINO"
663
 
664
- #: class.php:3189 strings.php:244
665
  msgid "REPLACE ELEMENT"
666
  msgstr "NADOMESTI ELEMENT"
667
 
668
- #: class.php:3200 strings.php:240
669
  msgid "AFTER"
670
  msgstr "ZA"
671
 
672
- #: class.php:3267
673
  msgctxt "JavaScript"
674
  msgid "script"
675
  msgstr "skripta"
676
 
677
- #: class.php:3270 settings.php:2054
678
  msgid "for"
679
  msgstr "za"
680
 
681
- #: class.php:6277 class.php:6329
682
  msgctxt "category name"
683
  msgid "Uncategorized"
684
  msgstr "Nekategorizirano"
685
 
686
- #: class.php:6822
687
  msgid ""
688
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
689
  "extension for PHP."
@@ -701,7 +714,7 @@ msgid "Reset"
701
  msgstr "Ponastavi"
702
 
703
  #: includes/editor.php:9 includes/placeholders.php:354
704
- #: includes/preview.php:1965 settings.php:3453 strings.php:208 strings.php:245
705
  msgid "Cancel"
706
  msgstr "Prekliči"
707
 
@@ -785,8 +798,8 @@ msgstr ""
785
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
786
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
787
 
788
- #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1300
789
- #: settings.php:2668
790
  msgid "Open HTML element selector"
791
  msgstr "Odpri izbirnik HTML elementa"
792
 
@@ -823,7 +836,7 @@ msgid "Toggle Ad Blocking Statistics"
823
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
824
 
825
  #: includes/functions.old.php:508 includes/functions.old.php:2960
826
- #: includes/functions.php:510 includes/functions.php:2972
827
  msgid "Toggle Statistics"
828
  msgstr "Preklopi Statistiko"
829
 
@@ -842,7 +855,8 @@ msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
842
  msgid "%s license overused. Continue?"
843
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
844
 
845
- #: includes/functions.old.php:536 includes/functions.php:546 settings.php:2125
 
846
  msgid "Save Settings"
847
  msgstr "Shrani Nastavitve"
848
 
@@ -915,13 +929,13 @@ msgstr "Sproži animacijo samo enkrat"
915
 
916
  #: includes/functions.old.php:750 includes/functions.old.php:2453
917
  #: includes/functions.old.php:2470 includes/functions.php:760
918
- #: includes/functions.php:2465 includes/functions.php:2482
919
  msgid "Tracking is globally disabled"
920
  msgstr "Sledenje je globalno onemogočeno"
921
 
922
  #: includes/functions.old.php:754 includes/functions.old.php:2457
923
  #: includes/functions.old.php:2474 includes/functions.php:764
924
- #: includes/functions.php:2469 includes/functions.php:2486
925
  msgid "Tracking for this block is disabled"
926
  msgstr "Sledenje za ta blok je onemogočeno"
927
 
@@ -929,8 +943,8 @@ msgstr "Sledenje za ta blok je onemogočeno"
929
  msgid "Double click to toggle controls in public reports"
930
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
931
 
932
- #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3388
933
- #: settings.php:3424 settings.php:3466 strings.php:218
934
  msgid "Loading..."
935
  msgstr "Nalagam..."
936
 
@@ -947,62 +961,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
947
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
948
 
949
  #: includes/functions.old.php:795 includes/functions.old.php:5262
950
- #: includes/functions.php:805 includes/functions.php:5287
951
  msgid "Load data for last month"
952
  msgstr "Naloži podatke za zadnji mesec"
953
 
954
  #: includes/functions.old.php:795 includes/functions.old.php:5262
955
- #: includes/functions.php:805 includes/functions.php:5287
956
  msgid "Last Month"
957
  msgstr "Zadnji Mesec"
958
 
959
  #: includes/functions.old.php:798 includes/functions.old.php:5265
960
- #: includes/functions.php:808 includes/functions.php:5290
961
  msgid "Load data for this month"
962
  msgstr "Naloži podatke za ta mesec"
963
 
964
  #: includes/functions.old.php:798 includes/functions.old.php:5265
965
- #: includes/functions.php:808 includes/functions.php:5290
966
  msgid "This Month"
967
  msgstr "Ta Mesec"
968
 
969
  #: includes/functions.old.php:801 includes/functions.old.php:5268
970
- #: includes/functions.php:811 includes/functions.php:5293
971
  msgid "Load data for this year"
972
  msgstr "Naloži podatke za to leto"
973
 
974
  #: includes/functions.old.php:801 includes/functions.old.php:5268
975
- #: includes/functions.php:811 includes/functions.php:5293
976
  msgid "This Year"
977
  msgstr "To Leto"
978
 
979
  #: includes/functions.old.php:804 includes/functions.old.php:5271
980
- #: includes/functions.php:814 includes/functions.php:5296
981
  msgid "Load data for the last 15 days"
982
  msgstr "Naloži podatke za zadnjih 15 dni"
983
 
984
  #: includes/functions.old.php:807 includes/functions.old.php:5274
985
- #: includes/functions.php:817 includes/functions.php:5299
986
  msgid "Load data for the last 30 days"
987
  msgstr "Naloži podatke za zadnjih 30 dni"
988
 
989
  #: includes/functions.old.php:810 includes/functions.old.php:5277
990
- #: includes/functions.php:820 includes/functions.php:5302
991
  msgid "Load data for the last 90 days"
992
  msgstr "Naloži podatke za zadnjih 90 dni"
993
 
994
  #: includes/functions.old.php:813 includes/functions.old.php:5280
995
- #: includes/functions.php:823 includes/functions.php:5305
996
  msgid "Load data for the last 180 days"
997
  msgstr "Naloži podatke za zadnjih 180 dni"
998
 
999
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1000
- #: includes/functions.php:826 includes/functions.php:5308
1001
  msgid "Load data for the last 365 days"
1002
  msgstr "Naloži podatke za zadnjih 365 dni"
1003
 
1004
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1005
- #: includes/functions.php:836 includes/functions.php:5318
1006
  msgid "Load data for the selected range"
1007
  msgstr "Naloži podatke za izbrano obdobje"
1008
 
@@ -1087,7 +1101,7 @@ msgid "Cities"
1087
  msgstr "Mesta"
1088
 
1089
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1090
- #: includes/functions.php:948 includes/functions.php:2937
1091
  msgid "Toggle country editor"
1092
  msgstr "Preklopi urejevalnik držav"
1093
 
@@ -1096,7 +1110,7 @@ msgid "Toggle city editor"
1096
  msgstr "Preklopi urejevalnik mest"
1097
 
1098
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1099
- #: includes/functions.php:955 includes/functions.php:2940
1100
  msgid "Comma separated country ISO Alpha-2 codes"
1101
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1102
 
@@ -1109,12 +1123,12 @@ msgid "Whitelist countries"
1109
  msgstr "Beli seznam držav"
1110
 
1111
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1112
- #: includes/functions.php:1371 includes/functions.php:1618
1113
  msgid "Enter license key"
1114
  msgstr "Vnesite licenčni ključ"
1115
 
1116
  #. translators: %s: Ad Inserter Pro
1117
- #: includes/functions.old.php:1367 includes/functions.php:1377
1118
  msgid ""
1119
  "%s license key is not set. Plugin functionality is limited and updates are "
1120
  "disabled."
@@ -1123,40 +1137,40 @@ msgstr ""
1123
  "posodobitve onemogočene."
1124
 
1125
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1126
- #: includes/functions.php:1389 includes/functions.php:1627
1127
  msgid "Check license key"
1128
  msgstr "Preverite licenčni ključ"
1129
 
1130
  #. translators: %s: Ad Inserter Pro
1131
- #: includes/functions.old.php:1385 includes/functions.php:1395
1132
  msgid "Invalid %s license key."
1133
  msgstr "Neveljaven %s licenčni ključ."
1134
 
1135
  #. translators: %s: Ad Inserter Pro
1136
- #: includes/functions.old.php:1394 includes/functions.php:1404
1137
  msgid "%s license expired. Plugin updates are disabled."
1138
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1139
 
1140
- #: includes/functions.old.php:1395 includes/functions.php:1405
1141
  msgid "Renew license"
1142
  msgstr "Obnovite licenco"
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
- #: includes/functions.old.php:1403 includes/functions.php:1413
1146
  msgid "%s license overused. Plugin updates are disabled."
1147
  msgstr ""
1148
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1149
 
1150
- #: includes/functions.old.php:1404 includes/functions.php:1414
1151
  msgid "Manage licenses"
1152
  msgstr "Upravljajte z licencami"
1153
 
1154
- #: includes/functions.old.php:1404 includes/functions.php:1414
1155
  msgid "Upgrade license"
1156
  msgstr "Nadgradite licenco"
1157
 
1158
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1159
- #: includes/functions.old.php:1610 includes/functions.php:1620
1160
  msgid ""
1161
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1162
  "limited and updates are disabled."
@@ -1165,12 +1179,12 @@ msgstr ""
1165
  "so omejene in posodobitve onemogočene."
1166
 
1167
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1168
- #: includes/functions.old.php:1619 includes/functions.php:1629
1169
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1170
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1171
 
1172
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1173
- #: includes/functions.old.php:1635 includes/functions.php:1645
1174
  msgid ""
1175
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1176
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1180,7 +1194,7 @@ msgstr ""
1180
  "pogrešate. %3$s"
1181
 
1182
  #. translators: 1, 3: HTML tags, 2: percentage
1183
- #: includes/functions.old.php:1642 includes/functions.php:1652
1184
  msgid ""
1185
  "During the license period and 30 days after the license has expired we offer "
1186
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1188,16 +1202,16 @@ msgstr ""
1188
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1189
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1190
 
1191
- #: includes/functions.old.php:1669 includes/functions.php:1679
1192
  msgid "Renew the licence"
1193
  msgstr "Obnovi licenco"
1194
 
1195
- #: includes/functions.old.php:1671 includes/functions.php:1681
1196
  msgid "Update license status"
1197
  msgstr "Posodobi status licence"
1198
 
1199
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1200
- #: includes/functions.old.php:1682 includes/functions.php:1692
1201
  msgid ""
1202
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1203
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1207,105 +1221,105 @@ msgstr ""
1207
  "Nadgradite licenco %7$s"
1208
 
1209
  #. Translators: %s: HTML tag
1210
- #: includes/functions.old.php:1704 includes/functions.php:1714
1211
  msgid "Warning: %s MaxMind IP geolocation database not found."
1212
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1213
 
1214
- #: includes/functions.old.php:2255 includes/functions.php:2267
1215
  msgid "Geolocation"
1216
  msgstr "Geolokacija"
1217
 
1218
- #: includes/functions.old.php:2259 includes/functions.php:2271
1219
- #: settings.php:4045
1220
  msgid "Exceptions"
1221
  msgstr "Izjeme"
1222
 
1223
- #: includes/functions.old.php:2264 includes/functions.php:2276
1224
  msgid "Multisite"
1225
  msgstr "Multisite"
1226
 
1227
- #: includes/functions.old.php:2269 includes/functions.php:2281
1228
- #: settings.php:4051
1229
  msgid "Tracking"
1230
  msgstr "Sledenje"
1231
 
1232
  #. translators: %d: days, hours, minutes
1233
- #: includes/functions.old.php:2300 includes/functions.php:2312
1234
  msgid "Scheduled in %d days %d hours %d minutes"
1235
  msgstr "Planirano v %d dneh %d urah %d minutah"
1236
 
1237
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1238
  #. HTML code for long dash separator
1239
- #: includes/functions.old.php:2309 includes/functions.php:2321
1240
  msgid "Active %s expires in %d days %d hours %d minutes"
1241
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1242
 
1243
- #: includes/functions.old.php:2313 includes/functions.php:2325
1244
  msgid "Expired"
1245
  msgstr "Poteklo"
1246
 
1247
- #: includes/functions.old.php:2321 includes/functions.php:2333
1248
- #: settings.php:1383 settings.php:1398 settings.php:2040
1249
  msgid "and"
1250
  msgstr "in"
1251
 
1252
- #: includes/functions.old.php:2324 includes/functions.php:2336
1253
  msgid "fallback"
1254
  msgstr "rezerva"
1255
 
1256
- #: includes/functions.old.php:2325 includes/functions.php:2337
1257
  msgid "Block to be used when scheduling expires"
1258
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1259
 
1260
- #: includes/functions.old.php:2350 includes/functions.php:2362
1261
  msgid "Load in iframe"
1262
  msgstr "Naloži v iframe-u"
1263
 
1264
- #: includes/functions.old.php:2354 includes/functions.php:2366
1265
  #: includes/placeholders.php:389
1266
  msgid "Width"
1267
  msgstr "Širina"
1268
 
1269
- #: includes/functions.old.php:2355 includes/functions.php:2367
1270
  msgid "iframe width, empty means full width (100%)"
1271
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1272
 
1273
- #: includes/functions.old.php:2361 includes/functions.php:2373
1274
  #: includes/placeholders.php:384
1275
  msgid "Height"
1276
  msgstr "Višina"
1277
 
1278
- #: includes/functions.old.php:2362 includes/functions.php:2374
1279
  msgid "iframe height, empty means adjust it to iframe content height"
1280
  msgstr ""
1281
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1282
 
1283
- #: includes/functions.old.php:2369 includes/functions.php:2381
1284
  msgid "Ad label in iframe"
1285
  msgstr "Oznaka oglasa v iframe-u"
1286
 
1287
- #: includes/functions.old.php:2374 includes/functions.php:2386
1288
  msgid "Preview iframe code"
1289
  msgstr "Predpreglej kodo iframe"
1290
 
1291
- #: includes/functions.old.php:2374 includes/functions.php:2386
1292
- #: includes/preview.php:1974 settings.php:1049 settings.php:2730
1293
  msgid "Preview"
1294
  msgstr "Predogled"
1295
 
1296
- #: includes/functions.old.php:2388 includes/functions.php:2400
1297
- #: settings.php:4052
1298
  msgid "Limits"
1299
  msgstr "Omejitve"
1300
 
1301
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1302
- #: includes/functions.old.php:4329 includes/functions.php:2405
1303
- #: includes/functions.php:4278 includes/functions.php:4341 settings.php:2172
1304
  msgid "Ad Blocking"
1305
  msgstr "Blokiranje Oglasov"
1306
 
1307
  #. translators: 1, 2 and 3, 4: HTML tags
1308
- #: includes/functions.old.php:2402 includes/functions.php:2414
1309
  msgid ""
1310
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1311
  "for tracking!"
@@ -1315,7 +1329,7 @@ msgstr ""
1315
 
1316
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1317
  #. header
1318
- #: includes/functions.old.php:2411 includes/functions.php:2423
1319
  msgid ""
1320
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1321
  "enabled and automatic insertion %6$s!"
@@ -1323,23 +1337,23 @@ msgstr ""
1323
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1324
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1325
 
1326
- #: includes/functions.old.php:2478 includes/functions.php:2490
1327
  msgid "Click fraud protection is globally disabled"
1328
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1329
 
1330
- #: includes/functions.old.php:2482 includes/functions.php:2494
1331
  msgid "Max clicks per time period are not defined"
1332
  msgstr "Največje število klikov na časovno enoto ni definirano"
1333
 
1334
  #. Translators: Max n impressions
1335
- #: includes/functions.old.php:2496 includes/functions.php:2508
1336
  msgid "General limits"
1337
  msgstr "Splošne omejitve"
1338
 
1339
  #. Translators: Max n impressions per x days
1340
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1341
- #: includes/functions.old.php:2599 includes/functions.php:2514
1342
- #: includes/functions.php:2526 includes/functions.php:2611
1343
  msgid "Current value"
1344
  msgstr "Trenutna vrednost"
1345
 
@@ -1355,14 +1369,14 @@ msgstr "Trenutna vrednost"
1355
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1356
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1357
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1358
- #: includes/functions.php:2533 includes/functions.php:2543
1359
- #: includes/functions.php:2562 includes/functions.php:2572
1360
- #: includes/functions.php:2618 includes/functions.php:2627
1361
- #: includes/functions.php:2645 includes/functions.php:2654 settings.php:1961
1362
  msgid "Max"
1363
  msgstr "Največ"
1364
 
1365
- #: includes/functions.old.php:2522 includes/functions.php:2534
1366
  msgid ""
1367
  "Maximum number of impressions for this block. Empty means no general "
1368
  "impression limit."
@@ -1376,8 +1390,8 @@ msgstr ""
1376
  #. Translators: Max n impressions per x days
1377
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1378
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1379
- #: includes/functions.php:2536 includes/functions.php:2546
1380
- #: includes/functions.php:2621 includes/functions.php:2630
1381
  msgid "impression"
1382
  msgid_plural "impressions"
1383
  msgstr[0] "prikaz"
@@ -1385,7 +1399,7 @@ msgstr[1] "prikaza"
1385
  msgstr[2] "prikazi"
1386
  msgstr[3] "prikazov"
1387
 
1388
- #: includes/functions.old.php:2532 includes/functions.php:2544
1389
  msgid ""
1390
  "Maximum number of impressions per time period. Empty means no time limit."
1391
  msgstr ""
@@ -1398,13 +1412,13 @@ msgstr ""
1398
  #. Translators: Max n clicks per x days
1399
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1400
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1401
- #: includes/functions.php:2550 includes/functions.php:2579
1402
- #: includes/functions.php:2634 includes/functions.php:2661
1403
  msgid "per"
1404
  msgstr "na"
1405
 
1406
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1407
- #: includes/functions.php:2551 includes/functions.php:2580
1408
  msgid "Time period in days. Empty means no time limit."
1409
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1410
 
@@ -1416,9 +1430,9 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1416
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1417
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1418
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1419
- #: includes/functions.php:2553 includes/functions.php:2582
1420
- #: includes/functions.php:2637 includes/functions.php:2664
1421
- #: includes/functions.php:2770 includes/functions.php:3098 strings.php:199
1422
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1423
  #: strings.php:204
1424
  msgid "day"
@@ -1428,7 +1442,7 @@ msgstr[1] "dni"
1428
  msgstr[2] "dni"
1429
  msgstr[3] "dni"
1430
 
1431
- #: includes/functions.old.php:2551 includes/functions.php:2563
1432
  msgid ""
1433
  "Maximum number of clicks on this block. Empty means no general click limit."
1434
  msgstr ""
@@ -1441,9 +1455,9 @@ msgstr ""
1441
  #. Translators: Max n clicks per x days
1442
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1443
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1444
- #: includes/functions.old.php:4477 includes/functions.php:2565
1445
- #: includes/functions.php:2575 includes/functions.php:2648
1446
- #: includes/functions.php:2657 includes/functions.php:4489
1447
  msgid "click"
1448
  msgid_plural "clicks"
1449
  msgstr[0] "klik"
@@ -1451,18 +1465,18 @@ msgstr[1] "klika"
1451
  msgstr[2] "kliki"
1452
  msgstr[3] "klikov"
1453
 
1454
- #: includes/functions.old.php:2561 includes/functions.php:2573
1455
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1456
  msgstr ""
1457
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1458
  "omejitev."
1459
 
1460
- #: includes/functions.old.php:2586 includes/functions.php:2598
1461
  msgid "Individual visitor limits"
1462
  msgstr "Omejitve posameznih obiskovalcev"
1463
 
1464
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1465
- #: includes/functions.php:2602 includes/functions.php:2604
1466
  msgid ""
1467
  "When specified number of clicks on this block for a visitor will be reached "
1468
  "in the specified time period, all blocks that have click fraud protection "
@@ -1474,11 +1488,11 @@ msgstr ""
1474
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1475
  "pred goljufijo s kliki."
1476
 
1477
- #: includes/functions.old.php:2592 includes/functions.php:2604
1478
  msgid "Trigger click fraud protection"
1479
  msgstr "Sproži zaščito pred goljufijo s kliki"
1480
 
1481
- #: includes/functions.old.php:2607 includes/functions.php:2619
1482
  msgid ""
1483
  "Maximum number of impressions of this block for each visitor. Empty means no "
1484
  "impression limit."
@@ -1486,7 +1500,7 @@ msgstr ""
1486
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1487
  "pomeni brez omejitev prikazov."
1488
 
1489
- #: includes/functions.old.php:2616 includes/functions.php:2628
1490
  msgid ""
1491
  "Maximum number of impressions per time period for each visitor. Empty means "
1492
  "no impression limit per time period for visitors."
@@ -1495,7 +1509,7 @@ msgstr ""
1495
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1496
 
1497
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1498
- #: includes/functions.php:2635 includes/functions.php:2662
1499
  msgid ""
1500
  "Time period in days. Use decimal value (with decimal point) for shorter "
1501
  "periods. Empty means no time limit."
@@ -1503,7 +1517,7 @@ msgstr ""
1503
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1504
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1505
 
1506
- #: includes/functions.old.php:2634 includes/functions.php:2646
1507
  msgid ""
1508
  "Maximum number of clicks on this block for each visitor. Empty means no "
1509
  "click limit."
@@ -1511,7 +1525,7 @@ msgstr ""
1511
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1512
  "brez omejitev klikov."
1513
 
1514
- #: includes/functions.old.php:2643 includes/functions.php:2655
1515
  msgid ""
1516
  "Maximum number of clicks per time period for each visitor. Empty means no "
1517
  "click limit per time period for visitors."
@@ -1519,33 +1533,33 @@ msgstr ""
1519
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1520
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1521
 
1522
- #: includes/functions.old.php:2669 includes/functions.php:2681
1523
  msgid "When ad blocking is detected"
1524
  msgstr "Ko je blokiranje oglasov zaznano"
1525
 
1526
- #: includes/functions.old.php:2678 includes/functions.php:2690
1527
  msgid "replacement"
1528
  msgstr "nadomestek"
1529
 
1530
- #: includes/functions.old.php:2679 includes/functions.php:2691
1531
  msgid "Block to be shown when ad blocking is detected"
1532
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1533
 
1534
- #: includes/functions.old.php:2680 includes/functions.php:2692
1535
  msgctxt "replacement"
1536
  msgid "None"
1537
  msgstr "Noben"
1538
 
1539
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1540
- #: includes/functions.php:2709 includes/functions.php:5509
1541
  msgid "Close button"
1542
  msgstr "Gumb Zapri"
1543
 
1544
- #: includes/functions.old.php:2749 includes/functions.php:2761
1545
  msgid "Auto close after"
1546
  msgstr "Ssamodejno zapri po"
1547
 
1548
- #: includes/functions.old.php:2750 includes/functions.php:2762
1549
  msgid ""
1550
  "Time in seconds in which the ad will automatically close. Leave empty to "
1551
  "disable auto closing."
@@ -1554,11 +1568,11 @@ msgstr ""
1554
  "izključitev samodejnega zapiranja."
1555
 
1556
  #. Translators: Don't show for x days
1557
- #: includes/functions.old.php:2755 includes/functions.php:2767
1558
  msgid "Don't show for"
1559
  msgstr "Ne prikaži"
1560
 
1561
- #: includes/functions.old.php:2756 includes/functions.php:2768
1562
  msgid ""
1563
  "Time in days in which closed ad will not be shown again. Use decimal value "
1564
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1569,11 +1583,11 @@ msgstr ""
1569
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1570
 
1571
  #. Translators: Delay showing for x pageviews
1572
- #: includes/functions.old.php:2776 includes/functions.php:2788
1573
  msgid "Delay showing for"
1574
  msgstr "Zakasni prikaz za"
1575
 
1576
- #: includes/functions.old.php:2777 includes/functions.php:2789
1577
  msgid ""
1578
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1579
  "empty to insert the code for the first pageview."
@@ -1584,7 +1598,7 @@ msgstr ""
1584
  #. Translators: Delay showing for x pageviews
1585
  #. Translators: Show every x pageviews
1586
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1587
- #: includes/functions.php:2791 includes/functions.php:2798
1588
  msgid "pageview"
1589
  msgid_plural "pageviews"
1590
  msgstr[0] "ogled strani"
@@ -1593,7 +1607,7 @@ msgstr[2] "oglede strani"
1593
  msgstr[3] "ogledov strani"
1594
 
1595
  #. Translators: Show every x pageviews
1596
- #: includes/functions.old.php:2783 includes/functions.php:2795
1597
  msgid "Show every"
1598
  msgid_plural "Show every"
1599
  msgstr[0] "Prikaži vsak"
@@ -1601,7 +1615,7 @@ msgstr[1] "Prikaži vsaka"
1601
  msgstr[2] "Prikaži vsake"
1602
  msgstr[3] "Prikaži vsakih"
1603
 
1604
- #: includes/functions.old.php:2784 includes/functions.php:2796
1605
  msgid ""
1606
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1607
  "for every pageview."
@@ -1609,28 +1623,28 @@ msgstr ""
1609
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1610
  "vstavljanje kode pri vsakem ogledu strani."
1611
 
1612
- #: includes/functions.old.php:2803 includes/functions.php:2815
1613
  msgid "Lazy loading"
1614
  msgstr "Leno nalaganje"
1615
 
1616
  #. Translators: %s MaxMind
1617
- #: includes/functions.old.php:2860 includes/functions.php:2872
1618
  msgid "This product includes GeoLite2 data created by %s"
1619
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1620
 
1621
- #: includes/functions.old.php:2871 includes/functions.php:2883
1622
  msgid "IP geolocation database"
1623
  msgstr "Podatkovna baza za IP geolokacijo"
1624
 
1625
- #: includes/functions.old.php:2874 includes/functions.php:2886
1626
  msgid "Select IP geolocation database."
1627
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1628
 
1629
- #: includes/functions.old.php:2885 includes/functions.php:2897
1630
  msgid "Automatic database updates"
1631
  msgstr "Samodejna posodobitev podatkovne baze"
1632
 
1633
- #: includes/functions.old.php:2888 includes/functions.php:2900
1634
  msgid ""
1635
  "Automatically download and update free GeoLite2 IP geolocation database by "
1636
  "MaxMind"
@@ -1638,11 +1652,11 @@ msgstr ""
1638
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1639
  "podatkovno bazo MaxMind"
1640
 
1641
- #: includes/functions.old.php:2896 includes/functions.php:2908
1642
  msgid "Database"
1643
  msgstr "Podatkovna baza"
1644
 
1645
- #: includes/functions.old.php:2899 includes/functions.php:2911
1646
  msgid ""
1647
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1648
  "file"
@@ -1651,15 +1665,15 @@ msgstr ""
1651
  "podatkovne baze"
1652
 
1653
  #. translators: %d: group number
1654
- #: includes/functions.old.php:2917 includes/functions.php:2929
1655
  msgid "Group %d"
1656
  msgstr "Skupina %d"
1657
 
1658
- #: includes/functions.old.php:2923 includes/functions.php:2935
1659
  msgid "countries"
1660
  msgstr "države"
1661
 
1662
- #: includes/functions.old.php:2968 includes/functions.php:2980
1663
  msgid ""
1664
  "Enable impression and click tracking. You also need to enable tracking for "
1665
  "each block you want to track."
@@ -1667,33 +1681,33 @@ msgstr ""
1667
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1668
  "vsak blok, ki bi ga radi sledili."
1669
 
1670
- #: includes/functions.old.php:2975 includes/functions.php:2987
1671
  msgid "Generate report"
1672
  msgstr "Generiraj poročilo"
1673
 
1674
- #: includes/functions.old.php:2983 includes/functions.php:2995
1675
  msgid "Impression and Click Tracking"
1676
  msgstr "Sledenje Prikazov in Klikov"
1677
 
1678
- #: includes/functions.old.php:2984 includes/functions.php:2996
1679
- #: settings.php:2618
1680
  msgctxt "ad blocking detection"
1681
  msgid "NOT ENABLED"
1682
  msgstr "NI OMOGOČENO"
1683
 
1684
- #: includes/functions.old.php:3000 includes/functions.php:3012
1685
  msgid "Internal"
1686
  msgstr "Notranje"
1687
 
1688
- #: includes/functions.old.php:3004 includes/functions.php:3016
1689
  msgid "Track impressions and clicks with internal tracking and statistics"
1690
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1691
 
1692
- #: includes/functions.old.php:3009 includes/functions.php:3021
1693
  msgid "External"
1694
  msgstr "Zunanje"
1695
 
1696
- #: includes/functions.old.php:3013 includes/functions.php:3025
1697
  msgid ""
1698
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1699
  "code installed)"
@@ -1701,27 +1715,27 @@ msgstr ""
1701
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1702
  "kodo za sledenje)"
1703
 
1704
- #: includes/functions.old.php:3018 includes/functions.php:3030
1705
  msgid "Track Pageviews"
1706
  msgstr "Sledi Ogledom Strani"
1707
 
1708
- #: includes/functions.old.php:3024 includes/functions.php:3036
1709
  msgid "Track Pageviews by Device (as configured for viewports)"
1710
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1711
 
1712
- #: includes/functions.old.php:3034 includes/functions.php:3046
1713
  msgid "Track for Logged in Users"
1714
  msgstr "Sledi za Prijavljene Upor."
1715
 
1716
- #: includes/functions.old.php:3040 includes/functions.php:3052
1717
  msgid "Track impressions and clicks from logged in users"
1718
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1719
 
1720
- #: includes/functions.old.php:3050 includes/functions.php:3062
1721
  msgid "Click Detection"
1722
  msgstr "Zaznavanje klikov"
1723
 
1724
- #: includes/functions.old.php:3056 includes/functions.php:3068
1725
  msgid ""
1726
  "Standard method detects clicks only on banners with links, Advanced method "
1727
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1729,19 +1743,19 @@ msgstr ""
1729
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1730
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1731
 
1732
- #: includes/functions.old.php:3075 includes/functions.php:3087
1733
  msgid "Click fraud protection"
1734
  msgstr "Zaščita pred goljufijo s kliki"
1735
 
1736
- #: includes/functions.old.php:3079 includes/functions.php:3091
1737
  msgid "Globally enable click fraud protection for selected blocks."
1738
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1739
 
1740
- #: includes/functions.old.php:3085 includes/functions.php:3097
1741
  msgid "Protection time"
1742
  msgstr "Čas zaščite"
1743
 
1744
- #: includes/functions.old.php:3086 includes/functions.php:3098
1745
  msgid ""
1746
  "Time period in days in which blocks with enabled click fraud protection will "
1747
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -1750,11 +1764,11 @@ msgstr ""
1750
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1751
  "za krajša obdobja."
1752
 
1753
- #: includes/functions.old.php:3105 includes/functions.php:3117
1754
  msgid "Report header image"
1755
  msgstr "Slika v glavi poročila"
1756
 
1757
- #: includes/functions.old.php:3108 includes/functions.php:3120
1758
  msgid ""
1759
  "Image or logo to be displayed in the header of the statistins report. "
1760
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
@@ -1764,15 +1778,15 @@ msgstr ""
1764
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1765
  "ponastavitev na privzeto sliko."
1766
 
1767
- #: includes/functions.old.php:3109 includes/functions.php:3121 strings.php:230
1768
  msgid "Select or upload header image"
1769
  msgstr "Izberi ali naloži sliko glave"
1770
 
1771
- #: includes/functions.old.php:3114 includes/functions.php:3126
1772
  msgid "Report header title"
1773
  msgstr "Naslov v glavi poročila"
1774
 
1775
- #: includes/functions.old.php:3117 includes/functions.php:3129
1776
  msgid ""
1777
  "Title to be displayed in the header of the statistics report. Text or HTML "
1778
  "code, clear to reset to default text."
@@ -1780,11 +1794,11 @@ msgstr ""
1780
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1781
  "pobrišite za ponastavitev na privzeto besedilo."
1782
 
1783
- #: includes/functions.old.php:3122 includes/functions.php:3134
1784
  msgid "Report header description"
1785
  msgstr "Opis v glavi poročila"
1786
 
1787
- #: includes/functions.old.php:3125 includes/functions.php:3137
1788
  msgid ""
1789
  "Description to be displayed in the header of the statistics report. Text or "
1790
  "HTML code, clear to reset to default text."
@@ -1792,11 +1806,11 @@ msgstr ""
1792
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1793
  "pobrišite za ponastavitev na privzeto besedilo."
1794
 
1795
- #: includes/functions.old.php:3130 includes/functions.php:3142
1796
  msgid "Report footer"
1797
  msgstr "Noga poročila"
1798
 
1799
- #: includes/functions.old.php:3133 includes/functions.php:3145
1800
  msgid ""
1801
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1802
  "to default text."
@@ -1804,118 +1818,118 @@ msgstr ""
1804
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1805
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1806
 
1807
- #: includes/functions.old.php:3138 includes/functions.php:3150
1808
  msgid "Public report key"
1809
  msgstr "Ključ za javno poročilo"
1810
 
1811
- #: includes/functions.old.php:3141 includes/functions.php:3153
1812
  msgid "String to generate unique report IDs. Clear to reset to default value."
1813
  msgstr ""
1814
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1815
  "privzeto vrednost."
1816
 
1817
- #: includes/functions.old.php:3173 includes/functions.php:3185
1818
  msgid "Are you sure you want to clear all exceptions for block"
1819
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1820
 
1821
- #: includes/functions.old.php:3174 includes/functions.php:3186
1822
- #: settings.php:1152
1823
  msgid "Clear all exceptions for block"
1824
  msgstr "Pobriši vse izjeme za blok"
1825
 
1826
- #: includes/functions.old.php:3181 includes/functions.php:3193
1827
  msgid "Are you sure you want to clear all exceptions?"
1828
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1829
 
1830
- #: includes/functions.old.php:3181 includes/functions.php:3193
1831
  msgid "Clear all exceptions for all blocks"
1832
  msgstr "Pobriši vse izjeme za vse bloke"
1833
 
1834
- #: includes/functions.old.php:3186 includes/functions.php:3198
1835
- #: settings.php:3697 settings.php:4128
1836
  msgid "Type"
1837
  msgstr "Vrsta"
1838
 
1839
- #: includes/functions.old.php:3204 includes/functions.php:3216
1840
  msgid "View"
1841
  msgstr "Poglej"
1842
 
1843
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1844
- #: includes/functions.old.php:3216 includes/functions.php:3217
1845
- #: includes/functions.php:3224 includes/functions.php:3228
1846
- #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1286
1847
- #: settings.php:3457
1848
  msgid "Edit"
1849
  msgstr "Uredi"
1850
 
1851
- #: includes/functions.old.php:3235 includes/functions.php:3247
1852
  msgid "Are you sure you want to clear all exceptions for"
1853
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1854
 
1855
- #: includes/functions.old.php:3236 includes/functions.php:3248
1856
  msgid "Clear all exceptions for"
1857
  msgstr "Pobriši vse izjeme za"
1858
 
1859
- #: includes/functions.old.php:3249 includes/functions.php:3261
1860
  msgid "No exceptions"
1861
  msgstr "Brez izjem"
1862
 
1863
  #. translators: %s: Ad Inserter Pro
1864
- #: includes/functions.old.php:3260 includes/functions.php:3272
1865
  msgid "%s options for network blogs"
1866
  msgstr "%s izbire za omrežne bloge"
1867
 
1868
  #. translators: %s: Ad Inserter Pro
1869
- #: includes/functions.old.php:3265 includes/functions.php:3277
1870
  msgid "Enable %s widgets for sub-sites"
1871
  msgstr "Omogoči %s gradnik za pod-spletišča"
1872
 
1873
- #: includes/functions.old.php:3265 includes/functions.php:3277
1874
  msgid "Widgets"
1875
  msgstr "Gradniki"
1876
 
1877
- #: includes/functions.old.php:3270 includes/functions.php:3282
1878
  msgid "Enable PHP code processing for sub-sites"
1879
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1880
 
1881
- #: includes/functions.old.php:3270 includes/functions.php:3282
1882
  msgid "PHP Processing"
1883
  msgstr "PHP Procesiranje"
1884
 
1885
  #. translators: %s: Ad Inserter Pro
1886
- #: includes/functions.old.php:3275 includes/functions.php:3287
1887
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1888
  msgstr ""
1889
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1890
 
1891
- #: includes/functions.old.php:3275 includes/functions.php:3287
1892
  msgid "Post/Page exceptions"
1893
  msgstr "Izjeme prispevkov/strani"
1894
 
1895
  #. translators: %s: Ad Inserter Pro
1896
- #: includes/functions.old.php:3280 includes/functions.php:3292
1897
  msgid "Enable %s settings page for sub-sites"
1898
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1899
 
1900
- #: includes/functions.old.php:3280 includes/functions.php:3292
1901
  msgid "Settings page"
1902
  msgstr "Stran z nastavitvami"
1903
 
1904
  #. translators: %s: Ad Inserter Pro
1905
- #: includes/functions.old.php:3285 includes/functions.php:3297
1906
  msgid "Enable %s settings of main site to be used for all blogs"
1907
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1908
 
1909
- #: includes/functions.old.php:3285 includes/functions.php:3297
1910
  msgid "Main site settings used for all blogs"
1911
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1912
 
1913
- #: includes/functions.old.php:3296 includes/functions.php:3308
1914
- #: settings.php:2617
1915
  msgid "Ad Blocking Detection"
1916
  msgstr "Zaznavanje Blokiranja Oglasov"
1917
 
1918
- #: includes/functions.old.php:3302 includes/functions.php:3314
1919
  msgid ""
1920
  "Standard method is reliable but should be used only if Advanced method does "
1921
  "not work. Advanced method recreates files used for detection with random "
@@ -1928,78 +1942,78 @@ msgstr ""
1928
  "dostopna"
1929
 
1930
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1931
- #: includes/functions.old.php:4039 includes/functions.php:3941
1932
- #: includes/functions.php:4031 includes/functions.php:4051
1933
  msgid "AD BLOCKING"
1934
  msgstr "BLOKIRANJE OGLASOV"
1935
 
1936
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1937
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1938
- #: includes/functions.php:3942 includes/functions.php:3982
1939
- #: includes/functions.php:4025 includes/functions.php:4052
1940
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1941
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1942
 
1943
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1944
- #: includes/functions.old.php:4046 includes/functions.php:3945
1945
- #: includes/functions.php:4024 includes/functions.php:4058
1946
  msgid "NO AD BLOCKING"
1947
  msgstr "NI BLOKIRANJA OGLASOV"
1948
 
1949
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1950
- #: includes/functions.php:3981 includes/functions.php:3988
1951
  msgid "AD BLOCKING REPLACEMENT"
1952
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1953
 
1954
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1955
- #: includes/functions.php:4131 includes/functions.php:4340
1956
  msgid "Pageviews"
1957
  msgstr "Ogledi strani"
1958
 
1959
- #: includes/functions.old.php:4265 includes/functions.php:4277
1960
  msgctxt "Version"
1961
  msgid "Unknown"
1962
  msgstr "Neznana"
1963
 
1964
- #: includes/functions.old.php:4265 includes/functions.php:4277
1965
  msgctxt "Times"
1966
  msgid "DISPLAYED"
1967
  msgstr "PRIKAZANO"
1968
 
1969
- #: includes/functions.old.php:4265 includes/functions.php:4277
1970
  msgid "No version"
1971
  msgstr "Brez različice"
1972
 
1973
- #: includes/functions.old.php:4266 includes/functions.php:4278
1974
  msgctxt "Times"
1975
  msgid "BLOCKED"
1976
  msgstr "BLOKIRANO"
1977
 
1978
- #: includes/functions.old.php:4328 includes/functions.php:4340
1979
  msgid "Impressions"
1980
  msgstr "Prikazi"
1981
 
1982
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1983
- #: includes/functions.old.php:4385 includes/functions.php:4341
1984
- #: includes/functions.php:4342 includes/functions.php:4397
1985
  msgid "Clicks"
1986
  msgstr "Kliki"
1987
 
1988
- #: includes/functions.old.php:4330 includes/functions.php:4342
1989
  msgid "events"
1990
  msgstr "dogodki"
1991
 
1992
- #: includes/functions.old.php:4331 includes/functions.php:4343
1993
  msgid "Ad Blocking Share"
1994
  msgstr "Delež blokiranja oglasov"
1995
 
1996
  #. translators: CTR as Click Through Rate
1997
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
1998
- #: includes/functions.php:4343 includes/functions.php:4403
1999
  msgid "CTR"
2000
  msgstr "CTR"
2001
 
2002
- #: includes/functions.old.php:4473 includes/functions.php:4485
2003
  msgid "pageviews"
2004
  msgid_plural "pageviews"
2005
  msgstr[0] "ogled strani"
@@ -2007,7 +2021,7 @@ msgstr[1] "ogleda strani"
2007
  msgstr[2] "oglede strani"
2008
  msgstr[3] "ogledov strani"
2009
 
2010
- #: includes/functions.old.php:4473 includes/functions.php:4485
2011
  msgid "impressions"
2012
  msgid_plural "impressions"
2013
  msgstr[0] "prikaz"
@@ -2015,7 +2029,7 @@ msgstr[1] "prikaza"
2015
  msgstr[2] "prikazi"
2016
  msgstr[3] "prikazov"
2017
 
2018
- #: includes/functions.old.php:4477 includes/functions.php:4489
2019
  msgid "event"
2020
  msgid_plural "events"
2021
  msgstr[0] "dogodek"
@@ -2023,57 +2037,57 @@ msgstr[1] "dogodka"
2023
  msgstr[2] "dogodki"
2024
  msgstr[3] "dogodkov"
2025
 
2026
- #: includes/functions.old.php:4572 includes/functions.php:4584
2027
  msgctxt "Pageviews / Impressions"
2028
  msgid "Average"
2029
  msgstr "Povprečni"
2030
 
2031
- #: includes/functions.old.php:4593 includes/functions.php:4605
2032
  msgctxt "Ad Blocking / Clicks"
2033
  msgid "Average"
2034
  msgstr "Povprečno"
2035
 
2036
- #: includes/functions.old.php:4617 includes/functions.php:4629
2037
  msgctxt "Ad Blocking Share / CTR"
2038
  msgid "Average"
2039
  msgstr "Povprečni"
2040
 
2041
  #. Translators: %s: Ad Inserter Pro
2042
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
2043
- #: includes/functions.old.php:5207 includes/functions.php:4811
2044
- #: includes/functions.php:4903 includes/functions.php:5232 strings.php:184
2045
  msgid "%s Report"
2046
  msgstr "%s Poročilo"
2047
 
2048
- #: includes/functions.old.php:5113 includes/functions.php:5138
2049
  msgid "for last month"
2050
  msgstr "za zadnji mesec"
2051
 
2052
- #: includes/functions.old.php:5118 includes/functions.php:5143
2053
  msgid "for this month"
2054
  msgstr "za ta mesec"
2055
 
2056
- #: includes/functions.old.php:5123 includes/functions.php:5148
2057
  msgid "for this year"
2058
  msgstr "za to leto"
2059
 
2060
- #: includes/functions.old.php:5128 includes/functions.php:5153
2061
  msgid "for the last 15 days"
2062
  msgstr "za zadnjih 15 dni"
2063
 
2064
- #: includes/functions.old.php:5133 includes/functions.php:5158
2065
  msgid "for the last 30 days"
2066
  msgstr "za zadnjih 30 dni"
2067
 
2068
- #: includes/functions.old.php:5138 includes/functions.php:5163
2069
  msgid "for the last 90 days"
2070
  msgstr "za zadnjih 90 dni"
2071
 
2072
- #: includes/functions.old.php:5143 includes/functions.php:5168
2073
  msgid "for the last 180 days"
2074
  msgstr "za zadnjih 180 dni"
2075
 
2076
- #: includes/functions.old.php:5148 includes/functions.php:5173
2077
  msgid "for the last 365 days"
2078
  msgstr "za zadnjih 365 dni"
2079
 
@@ -2081,6 +2095,21 @@ msgstr "za zadnjih 365 dni"
2081
  msgid "Pin list"
2082
  msgstr "Pripni seznam"
2083
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2084
  #: includes/placeholders.php:20
2085
  msgid "Custom"
2086
  msgstr "Po meri"
@@ -2105,7 +2134,7 @@ msgstr "Zapri urejevalnik polnila"
2105
  msgid "Placeholder"
2106
  msgstr "Polnilo"
2107
 
2108
- #: includes/placeholders.php:363 settings.php:896 settings.php:4129
2109
  msgid "Size"
2110
  msgstr "Velikost"
2111
 
@@ -2238,11 +2267,11 @@ msgstr "Prekliči"
2238
  msgid "Ad Blocking Detected Message Preview"
2239
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2240
 
2241
- #: includes/preview-adb.php:348 settings.php:2743
2242
  msgid "Message CSS"
2243
  msgstr "CSS sporočila"
2244
 
2245
- #: includes/preview-adb.php:353 settings.php:2751
2246
  msgid "Overlay CSS"
2247
  msgstr "CSS prevleke"
2248
 
@@ -2282,7 +2311,7 @@ msgstr "div za ovijanje"
2282
  msgid "background"
2283
  msgstr "ozadje"
2284
 
2285
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1247
2286
  msgid "Alignment"
2287
  msgstr "Poravnava"
2288
 
@@ -2427,7 +2456,7 @@ msgstr ""
2427
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2428
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2429
 
2430
- #: settings.php:172 settings.php:1136
2431
  msgid ""
2432
  "Settings for individual exceptions have been updated. Please check all "
2433
  "blocks that have exceptions and and then save settings."
@@ -2439,7 +2468,7 @@ msgstr ""
2439
  msgid "Online documentation"
2440
  msgstr "Spletna Dokumentacija"
2441
 
2442
- #: settings.php:218 settings.php:732 settings.php:2139
2443
  msgid "Show AdSense ad units"
2444
  msgstr "Pokaži oglasne enote AdSense"
2445
 
@@ -2447,7 +2476,7 @@ msgstr "Pokaži oglasne enote AdSense"
2447
  msgid "Edit ads.txt file"
2448
  msgstr "Uredi datoteko ads.txt"
2449
 
2450
- #: settings.php:226 settings.php:1079
2451
  msgid "Check theme for available positions for automatic insertion"
2452
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2453
 
@@ -2586,158 +2615,158 @@ msgstr ""
2586
  msgid "General Settings"
2587
  msgstr "Splošne Nastavitve"
2588
 
2589
- #: settings.php:680 settings.php:2470 settings.php:2537 settings.php:2723
2590
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2591
  msgstr ""
2592
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2593
 
2594
- #: settings.php:687
2595
  msgid "Toggle tools"
2596
  msgstr "Preklopi orodja"
2597
 
2598
- #: settings.php:695
2599
  msgid "Process PHP code in block"
2600
  msgstr "Procesiraj PHP kodo v bloku"
2601
 
2602
- #: settings.php:702
2603
  msgid "Disable insertion of this block"
2604
  msgstr "Onemogoči vstavljanje tega bloka"
2605
 
2606
- #: settings.php:714
2607
  msgid "Toggle code generator"
2608
  msgstr "Preklopi generator kode"
2609
 
2610
- #: settings.php:718
2611
  msgid "Toggle rotation editor"
2612
  msgstr "Preklopi urejevalnik rotacije"
2613
 
2614
- #: settings.php:722
2615
  msgid "Open visual HTML editor"
2616
  msgstr "Odpri vizualni HTML urejevalnik"
2617
 
2618
- #: settings.php:741
2619
  msgid "Clear block"
2620
  msgstr "Počisti blok"
2621
 
2622
- #: settings.php:746 settings.php:4001
2623
  msgid "Copy block"
2624
  msgstr "Kopiraj blok"
2625
 
2626
- #: settings.php:750
2627
  msgid "Paste name"
2628
  msgstr "Prilepi ime"
2629
 
2630
- #: settings.php:754
2631
  msgid "Paste code"
2632
  msgstr "Prilepi kodo"
2633
 
2634
- #: settings.php:758
2635
  msgid "Paste settings"
2636
  msgstr "Prilepi nastavitve"
2637
 
2638
- #: settings.php:762
2639
  msgid "Paste block (name, code and settings)"
2640
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2641
 
2642
- #: settings.php:781
2643
  msgid "Rotation groups"
2644
  msgstr "Skupine za rotacijo"
2645
 
2646
- #: settings.php:785
2647
  msgid "Remove option"
2648
  msgstr "Odstrani različico"
2649
 
2650
- #: settings.php:789
2651
  msgid "Add option"
2652
  msgstr "Dodaj različico"
2653
 
2654
- #: settings.php:804
2655
  msgid "Import code"
2656
  msgstr "Uvozi kodo"
2657
 
2658
- #: settings.php:808
2659
  msgid "Generate code"
2660
  msgstr "Generiraj kodo"
2661
 
2662
- #: settings.php:813
2663
  msgid "Banner"
2664
  msgstr "Pasica"
2665
 
2666
- #: settings.php:824
2667
  msgid "Image"
2668
  msgstr "Slika"
2669
 
2670
- #: settings.php:832
2671
  msgid "Link"
2672
  msgstr "Povezava"
2673
 
2674
- #: settings.php:843
2675
  msgid "Open link in a new tab"
2676
  msgstr "Odpri povezavo v novem zavihku"
2677
 
2678
- #: settings.php:844
2679
  msgid "Select Image"
2680
  msgstr "Izberi Sliko"
2681
 
2682
- #: settings.php:845
2683
  msgid "Select Placeholder"
2684
  msgstr "Izberi Polnilo"
2685
 
2686
- #: settings.php:857
2687
  msgid "Comment"
2688
  msgstr "Komentar"
2689
 
2690
- #: settings.php:866
2691
  msgctxt "AdSense"
2692
  msgid "Publisher ID"
2693
  msgstr "ID založnika"
2694
 
2695
- #: settings.php:875
2696
  msgctxt "AdSense"
2697
  msgid "Ad Slot ID"
2698
  msgstr "ID mesta"
2699
 
2700
- #: settings.php:884
2701
  msgid "Ad Type"
2702
  msgstr "Vrsta"
2703
 
2704
- #: settings.php:908
2705
  msgid "AMP Ad"
2706
  msgstr "AMP Oglas"
2707
 
2708
- #: settings.php:925
2709
  msgid "Show ad units from your AdSense account"
2710
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2711
 
2712
- #: settings.php:925
2713
  msgid "AdSense ad units"
2714
  msgstr "Oglasne enote AdSense"
2715
 
2716
- #: settings.php:942
2717
  msgctxt "AdSense"
2718
  msgid "Layout"
2719
  msgstr "Postavitev"
2720
 
2721
- #: settings.php:951
2722
  msgctxt "AdSense"
2723
  msgid "Layout Key"
2724
  msgstr "Ključ postavitve"
2725
 
2726
- #: settings.php:961
2727
  msgid "Full width"
2728
  msgstr "Celotna širina"
2729
 
2730
- #: settings.php:963
2731
  msgctxt "Full width"
2732
  msgid "Enabled"
2733
  msgstr "Omogočena"
2734
 
2735
- #: settings.php:964
2736
  msgctxt "Full width"
2737
  msgid "Disabled"
2738
  msgstr "Onemogočena"
2739
 
2740
- #: settings.php:1045
2741
  msgid ""
2742
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2743
  "Cookie or Referer (domain)"
@@ -2745,28 +2774,28 @@ msgstr ""
2745
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2746
  "parametrov, Piškotkov ali napotiteljev (domen)"
2747
 
2748
- #: settings.php:1045
2749
  msgid "Lists"
2750
  msgstr "Seznami"
2751
 
2752
- #: settings.php:1046
2753
  msgid "Widget, Shortcode and PHP function call"
2754
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2755
 
2756
- #: settings.php:1046
2757
  msgid "Manual"
2758
  msgstr "Ročno"
2759
 
2760
- #: settings.php:1047
2761
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2762
  msgstr ""
2763
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2764
 
2765
- #: settings.php:1047
2766
  msgid "Devices"
2767
  msgstr "Naprave"
2768
 
2769
- #: settings.php:1048
2770
  msgid ""
2771
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2772
  "feeds), Filter, Scheduling, General tag"
@@ -2774,15 +2803,15 @@ msgstr ""
2774
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2775
  "RSS), Filter, Urnik, Splošna oznaka"
2776
 
2777
- #: settings.php:1048
2778
  msgid "Misc"
2779
  msgstr "Razno"
2780
 
2781
- #: settings.php:1049
2782
  msgid "Preview code and alignment"
2783
  msgstr "Predogled kode in poravnave"
2784
 
2785
- #: settings.php:1052 settings.php:2123
2786
  msgid ""
2787
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2788
  "editor is active before saving settings."
@@ -2790,19 +2819,15 @@ msgstr ""
2790
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2791
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2792
 
2793
- #: settings.php:1054
2794
- msgid "Save All Settings"
2795
- msgstr "Shrani Vse Nastavitve"
2796
-
2797
- #: settings.php:1065 settings.php:1066
2798
  msgid "Enable insertion on posts"
2799
  msgstr "Omogoči vstavljanje na prispevkih"
2800
 
2801
- #: settings.php:1066 settings.php:3269
2802
  msgid "Posts"
2803
  msgstr "Prispevki"
2804
 
2805
- #: settings.php:1070 settings.php:1071
2806
  msgid ""
2807
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2808
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -2812,43 +2837,43 @@ msgstr ""
2812
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2813
  "lahko odvisni od ročic, ki jih tema uporablja)"
2814
 
2815
- #: settings.php:1071 settings.php:3271
2816
  msgid "Homepage"
2817
  msgstr "Domača stran"
2818
 
2819
- #: settings.php:1075 settings.php:1076
2820
  msgid "Enable insertion on category blog pages (including sub-pages)"
2821
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2822
 
2823
- #: settings.php:1076 settings.php:3272
2824
  msgid "Category pages"
2825
  msgstr "Strani kategorij"
2826
 
2827
- #: settings.php:1086 settings.php:1087
2828
  msgid "Enable insertion on static pages"
2829
  msgstr "Omogoči vstavljanje na statičnih straneh"
2830
 
2831
- #: settings.php:1087 settings.php:3270
2832
  msgid "Static pages"
2833
  msgstr "Statične strani"
2834
 
2835
- #: settings.php:1091 settings.php:1092
2836
  msgid "Enable insertion on search blog pages"
2837
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2838
 
2839
- #: settings.php:1092 settings.php:3274
2840
  msgid "Search pages"
2841
  msgstr "Iskalne strani"
2842
 
2843
- #: settings.php:1096 settings.php:1097
2844
  msgid "Enable insertion on tag or archive blog pages"
2845
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2846
 
2847
- #: settings.php:1100
2848
  msgid "Toggle settings for default insertion and list of individual exceptions"
2849
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2850
 
2851
- #: settings.php:1112
2852
  msgid ""
2853
  "Enable individual post/page exceptions for insertion of this block. They can "
2854
  "be configured on the individual post/page editor page (in the settings below "
@@ -2858,7 +2883,7 @@ msgstr ""
2858
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2859
  "nastavitvah pod urejevalnikom)."
2860
 
2861
- #: settings.php:1113
2862
  msgid ""
2863
  "Enable individual post/page exceptions for insertion of this block. When "
2864
  "enabled they can be configured on the individual post/page editor page (in "
@@ -2868,13 +2893,13 @@ msgstr ""
2868
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2869
  "strani (v nastavitvah pod urejevalnikom)."
2870
 
2871
- #: settings.php:1113
2872
  msgid "Use exceptions for individual posts or pages to change insertion"
2873
  msgstr ""
2874
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2875
 
2876
  #. Translators: Enabled means...
2877
- #: settings.php:1121
2878
  msgid ""
2879
  "means the insertion for this block is enabled by default and disabled for "
2880
  "exceptions."
@@ -2883,7 +2908,7 @@ msgstr ""
2883
  "izjeme."
2884
 
2885
  #. Translators: Disabled means...
2886
- #: settings.php:1122
2887
  msgid ""
2888
  "means the insertion for this block is disabled by default and enabled for "
2889
  "exceptions."
@@ -2891,7 +2916,7 @@ msgstr ""
2891
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2892
  "izjeme."
2893
 
2894
- #: settings.php:1123
2895
  msgid ""
2896
  "When individual post/page exceptions are enabled they can be configured on "
2897
  "the individual post/page editor page (in the settings below the editor)."
@@ -2900,27 +2925,27 @@ msgstr ""
2900
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2901
  "urejevalnikom)."
2902
 
2903
- #: settings.php:1131
2904
  msgid ""
2905
  "No exception for post or static page defined. Block will not be inserted."
2906
  msgstr ""
2907
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2908
 
2909
- #: settings.php:1149
2910
  msgctxt "post"
2911
  msgid "Type"
2912
  msgstr "Vrsta"
2913
 
2914
  #. translators: %d: block number
2915
- #: settings.php:1151
2916
  msgid "Are you sure you want to clear all exceptions for block %d?"
2917
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2918
 
2919
- #: settings.php:1178 settings.php:1326 settings.php:1915
2920
  msgid "Insertion"
2921
  msgstr "Vstavljanje"
2922
 
2923
- #: settings.php:1216
2924
  msgid ""
2925
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2926
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2936,7 +2961,7 @@ msgstr ""
2936
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2937
  "število pomeni štetje z nasprotne smeri"
2938
 
2939
- #: settings.php:1217
2940
  msgid ""
2941
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2942
  "means every N images, empty means all images, 0 means random image, value "
@@ -2951,7 +2976,7 @@ msgstr ""
2951
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2952
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2953
 
2954
- #: settings.php:1230
2955
  msgid ""
2956
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2957
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -2960,7 +2985,7 @@ msgstr ""
2960
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2961
  "izvlečki"
2962
 
2963
- #: settings.php:1231
2964
  msgid ""
2965
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2966
  "numbers, %N means every N posts, empty means all posts"
@@ -2969,7 +2994,7 @@ msgstr ""
2969
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2970
  "prispevki"
2971
 
2972
- #: settings.php:1232
2973
  msgid ""
2974
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2975
  "numbers, %N means every N comments, empty means all comments"
@@ -2978,44 +3003,44 @@ msgstr ""
2978
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
2979
  "vsi komentarji"
2980
 
2981
- #: settings.php:1239
2982
  msgid "Toggle paragraph counting settings"
2983
  msgstr "Preklopi nastavitve za štetje odstavkov"
2984
 
2985
- #: settings.php:1240
2986
  msgid "Toggle paragraph clearance settings"
2987
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
2988
 
2989
- #: settings.php:1243
2990
  msgid "Toggle insertion filter settings"
2991
  msgstr "Preklopi nastavitve filtra vstavljanja"
2992
 
2993
- #: settings.php:1261
2994
  msgid "Toggle insertion and alignment icons"
2995
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
2996
 
2997
- #: settings.php:1275
2998
  msgid "Custom CSS code for the wrapping div"
2999
  msgstr "CSS koda po meri za div za ovijanje"
3000
 
3001
- #: settings.php:1278 settings.php:1279 settings.php:1280 settings.php:1281
3002
- #: settings.php:1282 settings.php:1283
3003
  msgid "CSS code for the wrapping div, click to edit"
3004
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3005
 
3006
- #: settings.php:1296
3007
  msgid "HTML element"
3008
  msgstr "HTML element"
3009
 
3010
- #: settings.php:1309
3011
  msgid "HTML element selector or comma separated list of selectors"
3012
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3013
 
3014
- #: settings.php:1315 settings.php:2628
3015
  msgid "Action"
3016
  msgstr "Akcija"
3017
 
3018
- #: settings.php:1327
3019
  msgid ""
3020
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3021
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3025,11 +3050,11 @@ msgstr ""
3025
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3026
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3027
 
3028
- #: settings.php:1337
3029
  msgid "JavaScript code position"
3030
  msgstr "Položaj JavaScript kode"
3031
 
3032
- #: settings.php:1338
3033
  msgid ""
3034
  "Page position where the JavaScript code for client-side insertion will be "
3035
  "inserted. Should be after the HTML element if not waiting for DOM ready."
@@ -3038,40 +3063,40 @@ msgstr ""
3038
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3039
  "DOM."
3040
 
3041
- #: settings.php:1353
3042
  msgid "Count"
3043
  msgstr "Štej"
3044
 
3045
- #: settings.php:1359
3046
  msgid "paragraphs with tags"
3047
  msgstr "odstavke z značkami"
3048
 
3049
- #: settings.php:1365
3050
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3051
  msgstr ""
3052
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3053
 
3054
- #: settings.php:1374
3055
  msgid "that have between"
3056
  msgstr "ki imajo med"
3057
 
3058
- #: settings.php:1380
3059
  msgid "Minimum number of paragraph words, leave empty for no limit"
3060
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3061
 
3062
- #: settings.php:1389
3063
  msgid "Maximum number of paragraph words, leave empty for no limit"
3064
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3065
 
3066
- #: settings.php:1392 settings.php:2042
3067
  msgid "words"
3068
  msgstr "besed"
3069
 
3070
- #: settings.php:1407 settings.php:1465 settings.php:1528 settings.php:1554
3071
  msgid "Comma separated texts"
3072
  msgstr "Z vejico ločena besedila"
3073
 
3074
- #: settings.php:1420
3075
  msgid ""
3076
  "Count also paragraphs inside these elements - defined on general plugin "
3077
  "settings page - tab [*] / tab General"
@@ -3080,33 +3105,50 @@ msgstr ""
3080
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3081
 
3082
  #. Translators: %s: HTML tags
3083
- #: settings.php:1425
3084
  msgid "Count inside %s elements"
3085
  msgstr "Štej znotraj elementov %s"
3086
 
3087
  #. translators: inside [HTML tags] elements that contain
3088
- #: settings.php:1437
3089
  msgid "inside"
3090
  msgstr "znotraj"
3091
 
3092
- #: settings.php:1443
3093
  msgid "Comma separated HTML tag names of container elements"
3094
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3095
 
3096
  #. translators: inside [HTML tags] elements that contain
3097
- #: settings.php:1452
3098
  msgid "elements that"
3099
  msgstr "elementov, ki"
3100
 
3101
- #: settings.php:1478
3102
- msgid "Minimum number of paragraphs"
3103
- msgstr "Najmanjše število odstavkov"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3104
 
3105
- #: settings.php:1496
3106
  msgid "Minimum number of words in paragraphs above"
3107
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3108
 
3109
- #: settings.php:1502
3110
  msgid ""
3111
  "Used only with automatic insertion After paragraph and empty paragraph "
3112
  "numbers"
@@ -3114,128 +3156,128 @@ msgstr ""
3114
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3115
  "številkami odstavkov"
3116
 
3117
- #: settings.php:1513 settings.php:1539
3118
  msgid "In"
3119
  msgstr "V"
3120
 
3121
- #: settings.php:1519
3122
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3123
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3124
 
3125
- #: settings.php:1522
3126
  msgid "paragraphs above avoid"
3127
  msgstr "odstavkih zgoraj se izogni"
3128
 
3129
- #: settings.php:1545
3130
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3131
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3132
 
3133
- #: settings.php:1548
3134
  msgid "paragraphs below avoid"
3135
  msgstr "odstavkih spodaj se izogni"
3136
 
3137
- #: settings.php:1564
3138
  msgid "If text is found"
3139
  msgstr "Če je besedilo najdeno"
3140
 
3141
- #: settings.php:1571
3142
  msgid "check up to"
3143
  msgstr "preveri do"
3144
 
3145
- #: settings.php:1579
3146
  msgctxt "check up to"
3147
  msgid "paragraphs"
3148
  msgstr "odstavkov"
3149
 
3150
- #: settings.php:1595
3151
  msgid "Categories"
3152
  msgstr "Kategorije"
3153
 
3154
- #: settings.php:1598
3155
  msgid "Toggle category editor"
3156
  msgstr "Preklopi urejevalnik kategorij"
3157
 
3158
- #: settings.php:1601
3159
  msgid "Comma separated category slugs"
3160
  msgstr "Z vejico ločeni ključi kategorij"
3161
 
3162
- #: settings.php:1605
3163
  msgid "Blacklist categories"
3164
  msgstr "Črni seznam kategorij"
3165
 
3166
- #: settings.php:1609
3167
  msgid "Whitelist categories"
3168
  msgstr "Beli seznam kategorij"
3169
 
3170
- #: settings.php:1621
3171
  msgid "Tags"
3172
  msgstr "Oznake"
3173
 
3174
- #: settings.php:1624
3175
  msgid "Toggle tag editor"
3176
  msgstr "Preklopi urejevalnik oznak"
3177
 
3178
- #: settings.php:1627
3179
  msgid "Comma separated tag slugs"
3180
  msgstr "Z vejico ločeni ključi oznak"
3181
 
3182
- #: settings.php:1631
3183
  msgid "Blacklist tags"
3184
  msgstr "Črni seznam oznak"
3185
 
3186
- #: settings.php:1635
3187
  msgid "Whitelist tags"
3188
  msgstr "Beli seznam oznak"
3189
 
3190
- #: settings.php:1647
3191
  msgid "Taxonomies"
3192
  msgstr "Taksonomije"
3193
 
3194
- #: settings.php:1650
3195
  msgid "Toggle taxonomy editor"
3196
  msgstr "Preklopi urejevalnik taksonomij"
3197
 
3198
- #: settings.php:1653
3199
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3200
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3201
 
3202
- #: settings.php:1657
3203
  msgid "Blacklist taxonomies"
3204
  msgstr "Črni seznam taksonomij"
3205
 
3206
- #: settings.php:1661
3207
  msgid "Whitelist taxonomies"
3208
  msgstr "Beli seznam taksonomij"
3209
 
3210
- #: settings.php:1673
3211
  msgid "Post IDs"
3212
  msgstr "ID-ji prispevkov"
3213
 
3214
- #: settings.php:1676
3215
  msgid "Toggle post/page ID editor"
3216
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3217
 
3218
- #: settings.php:1679
3219
  msgid "Comma separated post/page IDs"
3220
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3221
 
3222
- #: settings.php:1683
3223
  msgid "Blacklist IDs"
3224
  msgstr "Črni seznam ID-jev"
3225
 
3226
- #: settings.php:1687
3227
  msgid "Whitelist IDs"
3228
  msgstr "Beli seznam ID-jev"
3229
 
3230
- #: settings.php:1699
3231
  msgid "Urls"
3232
  msgstr "Url-ji"
3233
 
3234
- #: settings.php:1702
3235
  msgid "Toggle url editor"
3236
  msgstr "Preklopi urejevalnik url-jev"
3237
 
3238
- #: settings.php:1705
3239
  msgid ""
3240
  "Comma separated urls (page addresses) starting with / after domain name (e."
3241
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3247,23 +3289,23 @@ msgstr ""
3247
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3248
  "začetek*. *url-vzorec*, *url-konec)"
3249
 
3250
- #: settings.php:1709
3251
  msgid "Blacklist urls"
3252
  msgstr "Črni seznam url-jev"
3253
 
3254
- #: settings.php:1713
3255
  msgid "Whitelist urls"
3256
  msgstr "Beli seznam url-jev"
3257
 
3258
- #: settings.php:1724
3259
  msgid "Url parameters"
3260
  msgstr "Url parametri"
3261
 
3262
- #: settings.php:1728
3263
  msgid "Toggle url parameter and cookie editor"
3264
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3265
 
3266
- #: settings.php:1731
3267
  msgid ""
3268
  "Comma separated url query parameters or cookies with optional values (use "
3269
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
@@ -3272,23 +3314,23 @@ msgstr ""
3272
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3273
  "'piškotek=vrednost')"
3274
 
3275
- #: settings.php:1735
3276
  msgid "Blacklist url parameters"
3277
  msgstr "Črni seznam url parametrov"
3278
 
3279
- #: settings.php:1739
3280
  msgid "Whitelist url parameters"
3281
  msgstr "Beli seznam url parametrov"
3282
 
3283
- #: settings.php:1750
3284
  msgid "Referrers"
3285
  msgstr "Napotitelji"
3286
 
3287
- #: settings.php:1753
3288
  msgid "Toggle referer editor"
3289
  msgstr "Preklopi urejevalnik napotiteljev"
3290
 
3291
- #: settings.php:1756
3292
  msgid ""
3293
  "Comma separated domains, use # for no referrer, you can also use partial "
3294
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3296,28 +3338,28 @@ msgstr ""
3296
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3297
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3298
 
3299
- #: settings.php:1760
3300
  msgid "Blacklist referers"
3301
  msgstr "Črni seznam napotiteljev"
3302
 
3303
- #: settings.php:1764
3304
  msgid "Whitelist referers"
3305
  msgstr "Beli seznam napotiteljev"
3306
 
3307
- #: settings.php:1784
3308
  msgid "Enable widget for this block"
3309
  msgstr "Omogočite gradnik za ta blok"
3310
 
3311
- #: settings.php:1796
3312
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3313
  msgstr ""
3314
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3315
 
3316
- #: settings.php:1797 settings.php:4057
3317
  msgid "Shortcode"
3318
  msgstr "Kratka koda"
3319
 
3320
- #: settings.php:1812
3321
  msgid ""
3322
  "Enable PHP function call to insert this block at any position in theme file. "
3323
  "If function is disabled for block it will return empty string."
@@ -3326,66 +3368,66 @@ msgstr ""
3326
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3327
  "prazen niz."
3328
 
3329
- #: settings.php:1813
3330
  msgid "PHP function"
3331
  msgstr "PHP funkcija"
3332
 
3333
- #: settings.php:1828
3334
  msgid "Client-side device detection"
3335
  msgstr "Zaznavanje naprave na strani klienta"
3336
 
3337
- #: settings.php:1829
3338
  msgid "Server-side device detection"
3339
  msgstr "Zaznavanje naprave na strani strežnika"
3340
 
3341
- #: settings.php:1836
3342
  msgid "Use client-side detection to"
3343
  msgstr "Uporabi zaznavanje na strani klienta in"
3344
 
3345
- #: settings.php:1838
3346
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3347
  msgstr ""
3348
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3349
 
3350
  #. Translators: only on (the following devices): viewport names (devices)
3351
  #. listed
3352
- #: settings.php:1843
3353
  msgid "only on"
3354
  msgstr "samo na"
3355
 
3356
- #: settings.php:1871
3357
  msgid "Device min width %s px"
3358
  msgstr "Najmanjša širina naprave %s px"
3359
 
3360
- #: settings.php:1897
3361
  msgid "Use server-side detection to insert block only for"
3362
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3363
 
3364
- #: settings.php:1916
3365
  msgid "Filter"
3366
  msgstr "Filter"
3367
 
3368
- #: settings.php:1917
3369
  msgid "Word Count"
3370
  msgstr "Število Besed"
3371
 
3372
- #: settings.php:1918 settings.php:4047
3373
  msgid "Scheduling"
3374
  msgstr "Urnik"
3375
 
3376
- #: settings.php:1919
3377
  msgid "Display"
3378
  msgstr "Prikaz"
3379
 
3380
- #: settings.php:1921 settings.php:2165
3381
  msgid "General"
3382
  msgstr "Splošno"
3383
 
3384
- #: settings.php:1933
3385
  msgid "Old settings for AMP pages detected"
3386
  msgstr "Zaznane stare nastavitve za AMP strani"
3387
 
3388
- #: settings.php:1933
3389
  msgid ""
3390
  "To insert different codes on normal and AMP pages separate them with "
3391
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3396,44 +3438,44 @@ msgstr ""
3396
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3397
  "separatorja)."
3398
 
3399
- #: settings.php:1933
3400
  msgid "AMP pages"
3401
  msgstr "AMP strani"
3402
 
3403
- #: settings.php:1938
3404
  msgid "Enable insertion for Ajax requests"
3405
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3406
 
3407
- #: settings.php:1938
3408
  msgid "Ajax requests"
3409
  msgstr "Ajax zahteve"
3410
 
3411
- #: settings.php:1943
3412
  msgid "Enable insertion in RSS feeds"
3413
  msgstr "Omogoči vstavljanje v RSS virih"
3414
 
3415
- #: settings.php:1943
3416
  msgid "RSS Feed"
3417
  msgstr "RSS Vir"
3418
 
3419
- #: settings.php:1948
3420
  msgid "Enable insertion on page for Error 404: Page not found"
3421
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3422
 
3423
- #: settings.php:1948
3424
  msgid "Error 404 page"
3425
  msgstr "Stran napake 404"
3426
 
3427
- #: settings.php:1960
3428
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3429
  msgstr ""
3430
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3431
 
3432
- #: settings.php:1961
3433
  msgid "insertions"
3434
  msgstr "vstavljanj"
3435
 
3436
- #: settings.php:1963
3437
  msgid ""
3438
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3439
  "General)"
@@ -3441,15 +3483,15 @@ msgstr ""
3441
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3442
  "zavihek Splošno)"
3443
 
3444
- #: settings.php:1966 settings.php:2334
3445
  msgid "Max blocks per page"
3446
  msgstr "Največ blokov na stran"
3447
 
3448
- #: settings.php:1978
3449
  msgid "Insert for"
3450
  msgstr "Vstavi za"
3451
 
3452
- #: settings.php:1986
3453
  msgid ""
3454
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3455
  "currently active). Might speed up insertion on content pages when "
@@ -3459,26 +3501,26 @@ msgstr ""
3459
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3460
  "filter the_content večkrat klican."
3461
 
3462
- #: settings.php:1989
3463
  msgid "Insert only in the loop"
3464
  msgstr "Vstavi samo v zanki"
3465
 
3466
- #: settings.php:1995
3467
  msgid ""
3468
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3469
  msgstr ""
3470
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3471
  "Rocket"
3472
 
3473
- #: settings.php:1995
3474
  msgid "Disable caching"
3475
  msgstr "Onemogoči predpomnjenje"
3476
 
3477
- #: settings.php:2007
3478
  msgid "Filter insertions"
3479
  msgstr "Filtriraj vstavljanja"
3480
 
3481
- #: settings.php:2010
3482
  msgid ""
3483
  "Filter multiple insertions by specifying wanted insertions for this block - "
3484
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3490,56 +3532,52 @@ msgstr ""
3490
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3491
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3492
 
3493
- #: settings.php:2013
3494
  msgid "using"
3495
  msgstr "z uporabo"
3496
 
3497
- #: settings.php:2032
3498
  msgid "Checked means specified calls are unwanted"
3499
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3500
 
3501
- #: settings.php:2032
3502
  msgid "Invert filter"
3503
  msgstr "Obrni filter"
3504
 
3505
- #: settings.php:2038
3506
- msgid "Post/Static page must have between"
3507
- msgstr "Prispevek/Statična stran mora imeti med"
3508
-
3509
- #: settings.php:2039
3510
  msgid "Minimum number of post/static page words, leave empty for no limit"
3511
  msgstr ""
3512
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3513
  "omejitev"
3514
 
3515
- #: settings.php:2041
3516
  msgid "Maximum number of post/static page words, leave empty for no limit"
3517
  msgstr ""
3518
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3519
  "omejitev"
3520
 
3521
- #: settings.php:2054
3522
  msgid "days after publishing"
3523
  msgstr "dni po objavi"
3524
 
3525
- #: settings.php:2056
3526
  msgid "Not available"
3527
  msgstr "Ni na razpolago"
3528
 
3529
- #: settings.php:2069 settings.php:2326
3530
  msgid "Ad label"
3531
  msgstr "Oznaka oglasa"
3532
 
3533
- #: settings.php:2089
3534
  msgid "General tag"
3535
  msgstr "Splošna oznaka"
3536
 
3537
- #: settings.php:2093
3538
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3539
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3540
 
3541
  #. translators: %s: HTML tags
3542
- #: settings.php:2102
3543
  msgid ""
3544
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3545
  "side device detection!"
@@ -3547,86 +3585,86 @@ msgstr ""
3547
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3548
  "potrebna za zaznavanje naprave na strani klienta!"
3549
 
3550
- #: settings.php:2114
3551
  msgid "Settings"
3552
  msgstr "Nastavitve"
3553
 
3554
- #: settings.php:2117
3555
  msgid "Settings timestamp"
3556
  msgstr "Časovni žig nastavitev"
3557
 
3558
- #: settings.php:2130
3559
  msgid "Are you sure you want to reset all settings?"
3560
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3561
 
3562
- #: settings.php:2130
3563
  msgid "Reset All Settings"
3564
  msgstr "Ponastavi Vse Nastavitve"
3565
 
3566
- #: settings.php:2166
3567
  msgid "Viewports"
3568
  msgstr "Pogledi"
3569
 
3570
- #: settings.php:2167
3571
  msgid "Hooks"
3572
  msgstr "Ročice"
3573
 
3574
- #: settings.php:2168
3575
  msgid "Header"
3576
  msgstr "Glava"
3577
 
3578
- #: settings.php:2169 strings.php:30
3579
  msgid "Footer"
3580
  msgstr "Noga"
3581
 
3582
- #: settings.php:2174
3583
  msgid "Debugging"
3584
  msgstr "Razhroščevanje"
3585
 
3586
- #: settings.php:2184
3587
  msgid "Plugin priority"
3588
  msgstr "Prednost vtičnika"
3589
 
3590
- #: settings.php:2192
3591
  msgid "Output buffering"
3592
  msgstr "Predpomnjenje izhoda"
3593
 
3594
- #: settings.php:2195
3595
  msgid "Needed for position Above header but may not work with all themes"
3596
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3597
 
3598
- #: settings.php:2203
3599
  msgid "Syntax highlighting theme"
3600
  msgstr "Tema za poudarjanje sintakse"
3601
 
3602
- #: settings.php:2210
3603
  msgctxt "no syntax highlighting themes"
3604
  msgid "None"
3605
  msgstr "Brez"
3606
 
3607
- #: settings.php:2211
3608
  msgid "No Syntax Highlighting"
3609
  msgstr "Brez Poudarjanja Sintakse"
3610
 
3611
- #: settings.php:2213
3612
  msgctxt "syntax highlighting themes"
3613
  msgid "Light"
3614
  msgstr "Svetle"
3615
 
3616
- #: settings.php:2228
3617
  msgctxt "syntax highlighting themes"
3618
  msgid "Dark"
3619
  msgstr "Temne"
3620
 
3621
- #: settings.php:2254
3622
  msgid "Min. user role for ind. exceptions editing"
3623
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3624
 
3625
- #: settings.php:2264
3626
  msgid "Disable caching for logged in administrators"
3627
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3628
 
3629
- #: settings.php:2267
3630
  msgid ""
3631
  "Enabled means that logged in administrators will see non-cached (live) pages "
3632
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -3634,11 +3672,11 @@ msgstr ""
3634
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3635
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3636
 
3637
- #: settings.php:2275
3638
  msgid "Sticky widget mode"
3639
  msgstr "Način za lepljive gradnike"
3640
 
3641
- #: settings.php:2278
3642
  msgid ""
3643
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3644
  "mode works with most themes but may reload ads on page load."
@@ -3647,19 +3685,19 @@ msgstr ""
3647
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3648
  "nalaganju strani."
3649
 
3650
- #: settings.php:2286
3651
  msgid "Sticky widget top margin"
3652
  msgstr "Zgornji rob za lepljiv gradnik"
3653
 
3654
- #: settings.php:2294
3655
  msgid "Dynamic blocks"
3656
  msgstr "Dinamični bloki"
3657
 
3658
- #: settings.php:2307
3659
  msgid "Functions for paragraph counting"
3660
  msgstr "Funkcije za štetje odstavkov"
3661
 
3662
- #: settings.php:2310
3663
  msgid ""
3664
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3665
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3668,15 +3706,15 @@ msgstr ""
3668
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3669
  "šteti."
3670
 
3671
- #: settings.php:2318
3672
  msgid "No paragraph counting inside"
3673
  msgstr "Ni štetja odstavkov znotraj"
3674
 
3675
- #: settings.php:2329
3676
  msgid "Label text or HTML code"
3677
  msgstr "Besedilo oznake ali HTML koda"
3678
 
3679
- #: settings.php:2337
3680
  msgid ""
3681
  "Maximum number of inserted blocks per page. You need to enable Max page "
3682
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3685,12 +3723,12 @@ msgstr ""
3685
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3686
  "omejitev."
3687
 
3688
- #: settings.php:2351
3689
  msgid "Plugin usage tracking"
3690
  msgstr "Sledenje uporabe vtičnika"
3691
 
3692
  #. translators: %s: Ad Inserter
3693
- #: settings.php:2354
3694
  msgid ""
3695
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3696
  "Only information regarding the WordPress environment and %s usage is "
@@ -3700,125 +3738,125 @@ msgstr ""
3700
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3701
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3702
 
3703
- #: settings.php:2372
3704
  msgid "CSS class name for the wrapping div"
3705
  msgstr "Ime CSS razreda za div za ovijanje"
3706
 
3707
- #: settings.php:2372
3708
  msgid "Block class name"
3709
  msgstr "Ime razreda za blok"
3710
 
3711
- #: settings.php:2376
3712
  msgid "Include general plugin block class"
3713
  msgstr "Vključi splošni razred vtičnika za blok"
3714
 
3715
- #: settings.php:2376
3716
  msgid "Block class"
3717
  msgstr "Razred bloka"
3718
 
3719
- #: settings.php:2381
3720
  msgid "Include block number class"
3721
  msgstr "Vključi razred številke bloka"
3722
 
3723
- #: settings.php:2381
3724
  msgid "Block number class"
3725
  msgstr "Razred številke bloka"
3726
 
3727
- #: settings.php:2386
3728
  msgid ""
3729
  "Instead of alignment classes generate inline alignment styles for blocks"
3730
  msgstr ""
3731
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3732
 
3733
- #: settings.php:2386
3734
  msgid "Inline styles"
3735
  msgstr "Medvrstični slogi"
3736
 
3737
- #: settings.php:2392
3738
  msgid "Preview of the block wrapping code"
3739
  msgstr "Predogled kode za ovijanje blokov"
3740
 
3741
- #: settings.php:2393
3742
  msgid "Wrapping div"
3743
  msgstr "div za ovijanje"
3744
 
3745
- #: settings.php:2394 settings.php:2834
3746
  msgid "BLOCK CODE"
3747
  msgstr "KODA BLOKA"
3748
 
3749
- #: settings.php:2402
3750
  msgid "Viewport Settings used for client-side device detection"
3751
  msgstr ""
3752
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3753
 
3754
  #. Translators: %d: viewport number
3755
- #: settings.php:2410
3756
  msgid "Viewport %d name"
3757
  msgstr "Ime pogleda %d"
3758
 
3759
- #: settings.php:2413
3760
  msgid "min width"
3761
  msgstr "najmanjša širina"
3762
 
3763
- #: settings.php:2424
3764
  msgid "Custom Hooks"
3765
  msgstr "Ročice Po Meri"
3766
 
3767
- #: settings.php:2436 settings.php:2439
3768
  msgid "Enable hook"
3769
  msgstr "Omogoči ročico"
3770
 
3771
  #. translators: %d: hook number
3772
- #: settings.php:2439
3773
  msgid "Hook %d name"
3774
  msgstr "Ime ročice %d"
3775
 
3776
- #: settings.php:2442
3777
  msgid "Hook name for automatic insertion selection"
3778
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3779
 
3780
- #: settings.php:2445
3781
  msgid "action"
3782
  msgstr "akcija"
3783
 
3784
- #: settings.php:2448
3785
  msgid "Action name as used in the do_action () function"
3786
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3787
 
3788
- #: settings.php:2451
3789
  msgid "priority"
3790
  msgstr "prednost"
3791
 
3792
- #: settings.php:2454
3793
  msgid "Priority for the hook (default is 10)"
3794
  msgstr "Prednost za ročico (privzeta je 10)"
3795
 
3796
- #: settings.php:2475
3797
  msgid "Enable insertion of this code into HTML page header"
3798
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3799
 
3800
- #: settings.php:2479 settings.php:2546 settings.php:2728
3801
  msgid "Process PHP code"
3802
  msgstr "Procesiraj PHP kodo"
3803
 
3804
- #: settings.php:2483
3805
  msgid "HTML Page Header Code"
3806
  msgstr "Koda v Glavi HTML Strani"
3807
 
3808
- #: settings.php:2491
3809
  msgid "Code in the %s section of the HTML page"
3810
  msgstr "Koda v %s delu HTML strani"
3811
 
3812
- #: settings.php:2492
3813
  msgctxt "code in the header"
3814
  msgid "NOT ENABLED"
3815
  msgstr "NI OMOGOČENA"
3816
 
3817
- #: settings.php:2509 settings.php:2577
3818
  msgid "Use server-side detection to insert code only for"
3819
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3820
 
3821
- #: settings.php:2524
3822
  msgid ""
3823
  "Enable insertion of this code into HTML page header on page for Error 404: "
3824
  "Page not found"
@@ -3826,29 +3864,29 @@ msgstr ""
3826
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3827
  "obstaja"
3828
 
3829
- #: settings.php:2524 settings.php:2592
3830
  msgid "Insert on Error 404 page"
3831
  msgstr "Vstavi na strani Napake 404"
3832
 
3833
- #: settings.php:2542
3834
  msgid "Enable insertion of this code into HTML page footer"
3835
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3836
 
3837
- #: settings.php:2550
3838
  msgid "HTML Page Footer Code"
3839
  msgstr "Koda v Nogi HTML Strani"
3840
 
3841
  #. translators: %s: HTML tags
3842
- #: settings.php:2558
3843
  msgid "Code before the %s tag of the the HTML page"
3844
  msgstr "Koda pred %s značko HTML strani"
3845
 
3846
- #: settings.php:2559
3847
  msgctxt "code in the footer"
3848
  msgid "NOT ENABLED"
3849
  msgstr "NI OMOGOČENA"
3850
 
3851
- #: settings.php:2592
3852
  msgid ""
3853
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3854
  "Page not found"
@@ -3856,32 +3894,32 @@ msgstr ""
3856
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3857
  "Stran ne obstaja"
3858
 
3859
- #: settings.php:2608
3860
  msgid "Code for ad blocking detection inserted. Click for details."
3861
  msgstr ""
3862
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3863
 
3864
- #: settings.php:2613
3865
  msgid "Enable detection of ad blocking"
3866
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3867
 
3868
- #: settings.php:2631
3869
  msgid "Global action when ad blocking is detected"
3870
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3871
 
3872
- #: settings.php:2637
3873
  msgid "No action for"
3874
  msgstr "Ni akcije za"
3875
 
3876
- #: settings.php:2638
3877
  msgid "Exceptions for global action when ad blocking is detected."
3878
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3879
 
3880
- #: settings.php:2648
3881
  msgid "Delay Action"
3882
  msgstr "Zakasni Akcijo"
3883
 
3884
- #: settings.php:2651
3885
  msgid ""
3886
  "Number of page views to delay action when ad blocking is detected. Leave "
3887
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3890,16 +3928,16 @@ msgstr ""
3890
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3891
  "strani). Nastavi piškotek."
3892
 
3893
- #: settings.php:2651
3894
  msgctxt "Delay Action for x "
3895
  msgid "page views"
3896
  msgstr "ogledov strani"
3897
 
3898
- #: settings.php:2656
3899
  msgid "No Action Period"
3900
  msgstr "Obdobje Brez Akcije"
3901
 
3902
- #: settings.php:2659
3903
  msgid ""
3904
  "Number of days to supress action when ad blocking is detected. Leave empty "
3905
  "for no no-action period (action fires always after defined page view delay). "
@@ -3909,16 +3947,16 @@ msgstr ""
3909
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3910
  "strani). Nastavi piškotek."
3911
 
3912
- #: settings.php:2659
3913
  msgctxt "no action period"
3914
  msgid "days"
3915
  msgstr "dni"
3916
 
3917
- #: settings.php:2664
3918
  msgid "Custom Selectors"
3919
  msgstr "Selektorji Po Meri"
3920
 
3921
- #: settings.php:2667
3922
  msgid ""
3923
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3924
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3928,15 +3966,15 @@ msgstr ""
3928
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3929
  "pomeni prisotnost blokiranja oglasov."
3930
 
3931
- #: settings.php:2679
3932
  msgid "Redirection Page"
3933
  msgstr "Stran za Preusmeritev"
3934
 
3935
- #: settings.php:2691
3936
  msgid "Custom Url"
3937
  msgstr "Url Po Meri"
3938
 
3939
- #: settings.php:2696
3940
  msgid ""
3941
  "Static page for redirection when ad blocking is detected. For other pages "
3942
  "select Custom url and set it below."
@@ -3944,35 +3982,35 @@ msgstr ""
3944
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3945
  "strani izberite Url Po Meri in ga nastavite spodaj."
3946
 
3947
- #: settings.php:2705
3948
  msgid "Custom Redirection Url"
3949
  msgstr "Url za Preusmeritev Po Meri"
3950
 
3951
- #: settings.php:2717
3952
  msgid "Message HTML code"
3953
  msgstr "HTML koda sporočila"
3954
 
3955
- #: settings.php:2730
3956
  msgid "Preview message when ad blocking is detected"
3957
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3958
 
3959
- #: settings.php:2759
3960
  msgid "Prevent visitors from closing the warning message"
3961
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3962
 
3963
- #: settings.php:2759
3964
  msgid "Undismissible Message"
3965
  msgstr "Neodstranljivo Sporočilo"
3966
 
3967
- #: settings.php:2765
3968
  msgid "Not undismissible for"
3969
  msgstr "Ni neodstranljivo za"
3970
 
3971
- #: settings.php:2766
3972
  msgid "Users which can close the warning message."
3973
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
3974
 
3975
- #: settings.php:2780
3976
  msgid ""
3977
  "Force showing admin toolbar for administrators when viewing site. Enable "
3978
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3981,84 +4019,84 @@ msgstr ""
3981
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3982
  "skrbnike."
3983
 
3984
- #: settings.php:2788
3985
  msgid "Disable header code (Header tab)"
3986
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3987
 
3988
- #: settings.php:2792
3989
  msgid "Disable footer code (Footer tab)"
3990
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3991
 
3992
  #. translators: %s: Ad Inserter
3993
- #: settings.php:2796
3994
  msgid "Disable %s JavaScript code"
3995
  msgstr "Onemogoči %s JavaScript kodo"
3996
 
3997
  #. translators: %s: Ad Inserter
3998
- #: settings.php:2800
3999
  msgid "Disable %s CSS code"
4000
  msgstr "Onemogoči %s CSS kodo"
4001
 
4002
- #: settings.php:2804
4003
  msgid ""
4004
  "Disable PHP code processing (in all blocks including header and footer code)"
4005
  msgstr ""
4006
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4007
 
4008
- #: settings.php:2808
4009
  msgid "Disable insertion of all blocks"
4010
  msgstr "Onemogoči vstavljanje vseh blokov"
4011
 
4012
- #: settings.php:2812
4013
  msgid "Disable insertions"
4014
  msgstr "Onemogoči vstavljanja"
4015
 
4016
  #. translators: %s: Ad Inserter
4017
- #: settings.php:2824
4018
  msgid "%s CSS CODE"
4019
  msgstr "%s CSS KODA"
4020
 
4021
- #: settings.php:2827
4022
  msgid "HEADER CODE"
4023
  msgstr "KODA GLAVE"
4024
 
4025
  #. translators: %s: PHP tags
4026
- #: settings.php:2833
4027
  msgid "BLOCK PHP CODE"
4028
  msgstr "PHP KODA BLOKA"
4029
 
4030
  #. translators: %s: Ad Inserter
4031
- #: settings.php:2839
4032
  msgid "%s JS CODE"
4033
  msgstr "%s JS KODA"
4034
 
4035
- #: settings.php:2842
4036
  msgid "FOOTER CODE"
4037
  msgstr "KODA NOGE"
4038
 
4039
- #: settings.php:2851
4040
  msgid "Force showing admin toolbar when viewing site"
4041
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4042
 
4043
- #: settings.php:2858
4044
  msgid "Enable debugging functions in admin toolbar"
4045
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4046
 
4047
- #: settings.php:2860
4048
  msgid "Debugging functions in admin toolbar"
4049
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4050
 
4051
- #: settings.php:2867
4052
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4053
  msgstr ""
4054
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4055
  "zaslonih"
4056
 
4057
- #: settings.php:2869
4058
  msgid "Debugging functions on mobile screens"
4059
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4060
 
4061
- #: settings.php:2876
4062
  msgid ""
4063
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4064
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4073,11 +4111,11 @@ msgstr ""
4073
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4074
  "vedno omogočeno."
4075
 
4076
- #: settings.php:2878
4077
  msgid "Remote debugging"
4078
  msgstr "Oddaljeno razhroščevanje"
4079
 
4080
- #: settings.php:2885
4081
  msgid ""
4082
  "Disable translation to see original texts for the settings and messages in "
4083
  "English"
@@ -4085,202 +4123,202 @@ msgstr ""
4085
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4086
  "angleščini"
4087
 
4088
- #: settings.php:2887
4089
  msgid "Disable translation"
4090
  msgstr "Onemogoči prevod"
4091
 
4092
- #: settings.php:3257
4093
  msgid "Available positions for current theme"
4094
  msgstr "Razpoložljivi položaji za trenutno temo"
4095
 
4096
- #: settings.php:3258
4097
  msgid "Error checking pages"
4098
  msgstr "Napaka pri preverjanju strani"
4099
 
4100
- #: settings.php:3261
4101
  msgid "Toggle theme checker for available positions for automatic insertion"
4102
  msgstr ""
4103
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4104
 
4105
- #: settings.php:3261
4106
  msgctxt "Button"
4107
  msgid "Check"
4108
  msgstr "Preveri"
4109
 
4110
- #: settings.php:3268
4111
  msgid "Position"
4112
  msgstr "Položaj"
4113
 
4114
- #: settings.php:3273
4115
  msgid "Archive pages"
4116
  msgstr "Strani arhiva"
4117
 
4118
- #: settings.php:3332
4119
  msgid ""
4120
  "Position not available because output buffering (tab [*]) is not enabled"
4121
  msgstr ""
4122
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4123
 
4124
- #: settings.php:3335 strings.php:226
4125
  msgid "Position not checked yet"
4126
  msgstr "Položaj še ni bil preverjen"
4127
 
4128
- #: settings.php:3371
4129
  msgid "Toggle active/all blocks"
4130
  msgstr "Preklopi aktive/vse bloke"
4131
 
4132
- #: settings.php:3375 strings.php:213
4133
  msgid "Rearrange block order"
4134
  msgstr "Preuredi vrstni red blokov"
4135
 
4136
- #: settings.php:3380
4137
  msgid "Save new block order"
4138
  msgstr "Shrani vrstni red blokov"
4139
 
4140
- #: settings.php:3406
4141
  msgid "Toggle active/all ad units"
4142
  msgstr "Preklopi aktivne/vse oglasne enote"
4143
 
4144
- #: settings.php:3410
4145
  msgid "Reload AdSense ad units"
4146
  msgstr "Ponovno naloži oglasne enote AdSense"
4147
 
4148
- #: settings.php:3414
4149
  msgid "Clear authorization to access AdSense account"
4150
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4151
 
4152
- #: settings.php:3418 settings.php:4214 settings.php:4281 strings.php:221
4153
  msgid "Google AdSense Homepage"
4154
  msgstr "Google AdSense Domača Stran"
4155
 
4156
- #: settings.php:3434
4157
  msgid "Switch to physical ads.txt file"
4158
  msgstr "Preklopi na fizično datoteko ads.txt"
4159
 
4160
- #: settings.php:3435
4161
  msgid "Switch to virtual ads.txt file"
4162
  msgstr "Preklopi na navidezno datoteko ads.txt"
4163
 
4164
  #. translators: %s: ads.txt
4165
- #: settings.php:3445
4166
  msgid "Open %s"
4167
  msgstr "Odpri %s"
4168
 
4169
- #: settings.php:3453
4170
  msgid "Reload ads.txt file"
4171
  msgstr "Ponovno naloži datoteko ads.txt"
4172
 
4173
- #: settings.php:3457 settings.php:4341
4174
  msgid "Save"
4175
  msgstr "Shrani"
4176
 
4177
  #. translators: %s: Ad Inserter
4178
- #: settings.php:3632
4179
  msgid "ads.txt file: %s virtual ads.txt file"
4180
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4181
 
4182
- #: settings.php:3637 settings.php:3657 strings.php:205
4183
  msgid "Warning"
4184
  msgstr "Opozorilo"
4185
 
4186
  #. translators: %s: Ad Inserter
4187
- #: settings.php:3637
4188
  msgid "%s virtual file ads.txt not found"
4189
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4190
 
4191
- #: settings.php:3645
4192
  msgid "IMPORTANT"
4193
  msgstr "POMEMBNO"
4194
 
4195
- #: settings.php:3645
4196
  msgid "ads.txt file must be placed on the root domain"
4197
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4198
 
4199
- #: settings.php:3650
4200
  msgid "ads.txt file"
4201
  msgstr "datoteka ads.txt"
4202
 
4203
- #: settings.php:3657
4204
  msgid "file %s not found"
4205
  msgstr "datoteka %s ni najdena"
4206
 
4207
- #: settings.php:3667
4208
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4209
  msgstr ""
4210
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4211
 
4212
  #. translators: %s: Ad Inserter
4213
- #: settings.php:3673
4214
  msgid "%s virtual ads.txt file"
4215
  msgstr "%s navidezna datoteka ads.txt"
4216
 
4217
- #: settings.php:3695
4218
  msgid "Advertising system"
4219
  msgstr "Oglaševalski sistem"
4220
 
4221
- #: settings.php:3696
4222
  msgid "Account ID"
4223
  msgstr "ID Računa"
4224
 
4225
- #: settings.php:3698
4226
  msgid "Certification authority ID"
4227
  msgstr "ID organa za potrjevanje"
4228
 
4229
- #: settings.php:3713
4230
  msgid "Account ID found in block and present in ads.txt"
4231
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4232
 
4233
- #: settings.php:3717
4234
  msgid "Account ID found in block but not present in ads.txt"
4235
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4236
 
4237
- #: settings.php:4004
4238
  msgid "Preview block"
4239
  msgstr "Predogled bloka"
4240
 
4241
- #: settings.php:4013
4242
  msgid "Insertion disabled"
4243
  msgstr "Vstavljanje onemogočeno"
4244
 
4245
- #: settings.php:4043
4246
  msgid "Automatic insertion"
4247
  msgstr "Samodejno vstavljanje"
4248
 
4249
  #. translators: %s HTML tags
4250
- #: settings.php:4044 settings.php:4950
4251
  msgid "PHP code processing"
4252
  msgstr "Procesiranje PHP kode"
4253
 
4254
- #: settings.php:4046
4255
  msgid "Device detection"
4256
  msgstr "Zaznavanje naprave"
4257
 
4258
- #: settings.php:4059
4259
  msgid "Widget positions"
4260
  msgstr "Položaji gradnikov"
4261
 
4262
- #: settings.php:4125
4263
  msgid "Ad unit"
4264
  msgstr "Enota"
4265
 
4266
- #: settings.php:4127
4267
  msgid "Slot ID"
4268
  msgstr "ID mesta"
4269
 
4270
- #: settings.php:4153
4271
  msgid "Copy AdSense code"
4272
  msgstr "Kopiraj kodo AdSense"
4273
 
4274
- #: settings.php:4156
4275
  msgid "Preview AdSense ad"
4276
  msgstr "Predogled oglasa AdSense"
4277
 
4278
- #: settings.php:4159
4279
  msgid "Get AdSense code"
4280
  msgstr "Pridobi kodo AdSense"
4281
 
4282
  #. translators: %s: HTML tags
4283
- #: settings.php:4191
4284
  msgid ""
4285
  "Please %s clear authorization %s with the button %s above and once again "
4286
  "authorize access to your AdSense account."
@@ -4288,16 +4326,16 @@ msgstr ""
4288
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4289
  "avtorizirajte dostop do vašega računa AdSense."
4290
 
4291
- #: settings.php:4210
4292
  msgid "AdSense Integration"
4293
  msgstr "Integracija AdSense"
4294
 
4295
- #: settings.php:4212
4296
  msgid "AdSense Integration - Step 2"
4297
  msgstr "Integracija AdSense - Korak 2"
4298
 
4299
  #. translators: %s: HTML tags
4300
- #: settings.php:4218
4301
  msgid ""
4302
  "Authorize %s to access your AdSense account. Click on the %s Get "
4303
  "Authorization Code %s button to open a new window where you can allow "
@@ -4310,7 +4348,7 @@ msgstr ""
4310
  "Avtoriziraj. %s"
4311
 
4312
  #. translators: %s: HTML tags
4313
- #: settings.php:4225
4314
  msgid ""
4315
  "If you get error, can't access ad units or would like to use own Google API "
4316
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4321,7 +4359,7 @@ msgstr ""
4321
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4322
 
4323
  #. translators: %s: HTML tags
4324
- #: settings.php:4227
4325
  msgid ""
4326
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4327
  "Authorization Code %s button to open a new window where you can allow "
@@ -4334,7 +4372,7 @@ msgstr ""
4334
  "gumb %s Avtoriziraj. %s"
4335
 
4336
  #. translators: %s: HTML tags
4337
- #: settings.php:4234
4338
  msgid ""
4339
  "If you get error %s invalid client %s click on the button %s Clear and "
4340
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4342,32 +4380,32 @@ msgstr ""
4342
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4343
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4344
 
4345
- #: settings.php:4245
4346
  msgid "Get Authorization Code"
4347
  msgstr "Pridobi Avtoriazcijsko Kodo"
4348
 
4349
- #: settings.php:4248
4350
  msgid "Enter Authorization Code"
4351
  msgstr "Vnesi Avorizacijsko Kodo"
4352
 
4353
- #: settings.php:4258
4354
  msgid "Use own API IDs"
4355
  msgstr "Uporabi lastne API ID-je"
4356
 
4357
- #: settings.php:4260
4358
  msgid "Clear and return to Step 1"
4359
  msgstr "Odstrani in se vrni na Korak 1"
4360
 
4361
- #: settings.php:4264
4362
  msgid "Authorize"
4363
  msgstr "Avtoriziraj"
4364
 
4365
- #: settings.php:4280
4366
  msgid "AdSense Integration - Step 1"
4367
  msgstr "Integracija AdSense - Korak 1"
4368
 
4369
  #. translators: %s: Ad Inserter
4370
- #: settings.php:4284
4371
  msgid ""
4372
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4373
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4380,12 +4418,12 @@ msgstr ""
4380
  "Klienta in Skrivnost Klienta."
4381
 
4382
  #. translators: %s: HTML tags
4383
- #: settings.php:4293
4384
  msgid "Go to %s Google APIs and Services console %s"
4385
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4386
 
4387
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4388
- #: settings.php:4294
4389
  msgid ""
4390
  "Create %1$s project - if the project and IDs are already created click on "
4391
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -4394,7 +4432,7 @@ msgstr ""
4394
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4395
 
4396
  #. translators: %s: HTML tags
4397
- #: settings.php:4295
4398
  msgid ""
4399
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4400
  "create a new project"
@@ -4403,12 +4441,12 @@ msgstr ""
4403
  "ustvaritev novega projekta"
4404
 
4405
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4406
- #: settings.php:4296
4407
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4408
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4409
 
4410
  #. translators: %s: HTML tags
4411
- #: settings.php:4297
4412
  msgid ""
4413
  "Click on project selection, wait for the project to be created and then and "
4414
  "select %s as the current project"
@@ -4417,39 +4455,39 @@ msgstr ""
4417
  "izberite %s kot trenutni projekt"
4418
 
4419
  #. translators: %s: HTML tags
4420
- #: settings.php:4298
4421
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4422
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4423
 
4424
  #. translators: %s: HTML tags
4425
- #: settings.php:4299
4426
  msgid "Search for adsense and enable %s"
4427
  msgstr "Poiščite adsense in omogočite %s"
4428
 
4429
  #. translators: %s: HTML tags
4430
- #: settings.php:4300
4431
  msgid "Click on %s CREATE CREDENTIALS %s"
4432
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4433
 
4434
  #. translators: %s: HTML tags
4435
- #: settings.php:4301
4436
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4437
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4438
 
4439
  #. translators: %s: HTML tags
4440
- #: settings.php:4302
4441
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4442
  msgstr ""
4443
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4444
  "podatki %s"
4445
 
4446
  #. translators: %s: HTML tags
4447
- #: settings.php:4303
4448
  msgid "Click on %s What credentials do I need? %s"
4449
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4450
 
4451
  #. translators: %s: HTML tags
4452
- #: settings.php:4304
4453
  msgid ""
4454
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4455
  "Ad Inserter client %s"
@@ -4458,7 +4496,7 @@ msgstr ""
4458
  "%s Ad Inserter klient %s"
4459
 
4460
  #. translators: %s: HTML tags
4461
- #: settings.php:4305
4462
  msgid ""
4463
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4464
  "enter %s"
@@ -4467,17 +4505,17 @@ msgstr ""
4467
  "uporabnikom %s vnesite %s"
4468
 
4469
  #. translators: %s: HTML tags
4470
- #: settings.php:4306
4471
  msgid "Click on %s Continue %s"
4472
  msgstr "Kliknite na %s Nadaljuj %s"
4473
 
4474
  #. translators: %s: HTML tags
4475
- #: settings.php:4307
4476
  msgid "Click on %s Done %s"
4477
  msgstr "Kliknite na %s Končaj %s"
4478
 
4479
  #. translators: %s: HTML tags
4480
- #: settings.php:4308
4481
  msgid ""
4482
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4483
  "secret %s"
@@ -4485,54 +4523,62 @@ msgstr ""
4485
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4486
  "Skrivnost klienta %s"
4487
 
4488
- #: settings.php:4309
4489
  msgid "Copy them to the appropriate fields below"
4490
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4491
 
4492
- #: settings.php:4315
4493
  msgid "Client ID"
4494
  msgstr "ID klienta"
4495
 
4496
- #: settings.php:4318
4497
  msgid "Enter Client ID"
4498
  msgstr "Vnesite ID klienta"
4499
 
4500
- #: settings.php:4323
4501
  msgid "Client secret"
4502
  msgstr "Skrivnost klienta"
4503
 
4504
- #: settings.php:4326
4505
  msgid "Enter Client secret"
4506
  msgstr "Vnesite Skrivnost klienta"
4507
 
4508
- #: settings.php:4336
4509
  msgid "Use default API IDs"
4510
  msgstr "Uporabi privzete API ID-je"
4511
 
4512
- #: settings.php:4617 settings.php:4630 settings.php:4643 settings.php:4658
 
 
 
 
 
 
 
 
4513
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4514
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4515
 
4516
- #: settings.php:4622 settings.php:4635 settings.php:4648 settings.php:4663
4517
- #: settings.php:4843 settings.php:4847 settings.php:4865 settings.php:4869
4518
- #: settings.php:4877 settings.php:4880 settings.php:4886 settings.php:4898
4519
  msgid "Looking for AdSense alternative?"
4520
  msgstr "Iščete alternativo za AdSense?"
4521
 
4522
- #: settings.php:4674
4523
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4524
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4525
 
4526
- #: settings.php:4679 settings.php:4845 settings.php:4849 settings.php:4857
4527
- #: settings.php:4883
4528
  msgid "Use Infolinks ads with Adsense to earn more"
4529
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4530
 
4531
- #: settings.php:4698 settings.php:4736
4532
  msgid "Support plugin development"
4533
  msgstr "Podprite razvoj vtičnika"
4534
 
4535
- #: settings.php:4699 settings.php:4737
4536
  msgid ""
4537
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4538
  "reviewing the plugin on WordPres"
@@ -4540,12 +4586,12 @@ msgstr ""
4540
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4541
  "razširiti novico z oceno vtičnika na WordPress-u"
4542
 
4543
- #: settings.php:4699
4544
  msgctxt "Review ad Inserter"
4545
  msgid "Review"
4546
  msgstr "Oceni"
4547
 
4548
- #: settings.php:4700
4549
  msgid ""
4550
  "Support free Ad Inserter development. If you are making money with Ad "
4551
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4554,16 +4600,16 @@ msgstr ""
4554
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4555
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4556
 
4557
- #: settings.php:4700
4558
  msgid "Donate"
4559
  msgstr "Donirajte"
4560
 
4561
- #: settings.php:4707 settings.php:4752
4562
  msgid "Average rating of the plugin - Thank you!"
4563
  msgstr "Povprečna ocena vtičnika - Hvala!"
4564
 
4565
  #. translators: %s: Ad Inserter, HTML tags
4566
- #: settings.php:4718
4567
  msgid ""
4568
  "You've been using %s for a while now, and I hope you're happy with it. "
4569
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4577,24 +4623,24 @@ msgstr ""
4577
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4578
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4579
 
4580
- #: settings.php:4737
4581
  msgid "Review"
4582
  msgstr "Ocena"
4583
 
4584
- #: settings.php:4741
4585
  msgid "Ad Inserter on Twitter"
4586
  msgstr "Ad Inserter na Twitter-ju"
4587
 
4588
- #: settings.php:4742
4589
  msgid "Ad Inserter on Facebook"
4590
  msgstr "Ad Inserter na Facebook-u"
4591
 
4592
- #: settings.php:4745
4593
  msgid "Follow Ad Inserter"
4594
  msgstr "Sledi Ad Inserter-ju"
4595
 
4596
  #. translators: %s: HTML tags
4597
- #: settings.php:4772
4598
  msgid ""
4599
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4600
  "and %s Common Settings %s pages"
@@ -4603,7 +4649,7 @@ msgstr ""
4603
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4604
 
4605
  #. translators: %s: HTML tags
4606
- #: settings.php:4784
4607
  msgid ""
4608
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4609
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4614,7 +4660,7 @@ msgstr ""
4614
  "%s Infolinks %s oglasno kodo %s"
4615
 
4616
  #. translators: %s: HTML tags
4617
- #: settings.php:4805
4618
  msgid ""
4619
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4620
  "purchase you refer to us"
@@ -4623,7 +4669,7 @@ msgstr ""
4623
  "nakup, ki nam ga posredujete"
4624
 
4625
  #. translators: %s: HTML tags
4626
- #: settings.php:4812
4627
  msgid ""
4628
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4629
  "diagnose and fix the problem."
@@ -4632,7 +4678,7 @@ msgstr ""
4632
  "navodili za diagnozo in rešitvami za težave."
4633
 
4634
  #. translators: %s: HTML tags
4635
- #: settings.php:4816
4636
  msgid ""
4637
  "If you need any kind of help or support, please do not hesitate to open a "
4638
  "thread on the %s support forum. %s"
@@ -4640,44 +4686,44 @@ msgstr ""
4640
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4641
  "nit na %s podpornem forumu. %s"
4642
 
4643
- #: settings.php:4861 settings.php:4902
4644
  msgid "A/B testing - Track ad impressions and clicks"
4645
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4646
 
4647
- #: settings.php:4894 settings.php:4906
4648
  msgid "Code preview with visual CSS editor"
4649
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4650
 
4651
- #: settings.php:4914
4652
  msgid "Looking for Pro Ad Management plugin?"
4653
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4654
 
4655
- #: settings.php:4915
4656
  msgid "To Optimally Monetize your WordPress website?"
4657
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4658
 
4659
  #. translators: %s HTML tags
4660
- #: settings.php:4918
4661
  msgid "%s AdSense Integration %s"
4662
  msgstr "%s Integracija AdSense %s"
4663
 
4664
  #. translators: %s HTML tags
4665
- #: settings.php:4919
4666
  msgid "Syntax highlighting %s editor %s"
4667
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4668
 
4669
  #. translators: %s HTML tags
4670
- #: settings.php:4920
4671
  msgid "%s Code preview %s with visual CSS editor"
4672
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4673
 
4674
  #. translators: %s HTML tags
4675
- #: settings.php:4921
4676
  msgid "Simple user interface - all settings on a single page"
4677
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4678
 
4679
  #. translators: %s HTML tags
4680
- #: settings.php:4922
4681
  msgid ""
4682
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4683
  "image / excerpt"
@@ -4686,27 +4732,27 @@ msgstr ""
4686
  "%s / sliko / izvlečkom"
4687
 
4688
  #. translators: %s HTML tags
4689
- #: settings.php:4923
4690
  msgid "%s Automatic insertion %s between posts on blog pages"
4691
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4692
 
4693
  #. translators: %s HTML tags
4694
- #: settings.php:4924
4695
  msgid "%s Automatic insertion %s before, between and after comments"
4696
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4697
 
4698
  #. translators: %s HTML tags
4699
- #: settings.php:4925
4700
  msgid "%s Automatic insertion %s after %s or before %s tag"
4701
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4702
 
4703
  #. translators: %s HTML tags
4704
- #: settings.php:4926
4705
  msgid "Automatic insertion at %s custom hook positions %s"
4706
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4707
 
4708
  #. translators: %s HTML tags
4709
- #: settings.php:4927
4710
  msgid ""
4711
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4712
  "selectors)"
@@ -4715,17 +4761,17 @@ msgstr ""
4715
  "selektorjev)"
4716
 
4717
  #. translators: %s HTML tags
4718
- #: settings.php:4928
4719
  msgid "%s Insertion exceptions %s for individual posts and pages"
4720
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4721
 
4722
  #. translators: %s HTML tags
4723
- #: settings.php:4929
4724
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4725
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4726
 
4727
  #. translators: %s HTML tags
4728
- #: settings.php:4930
4729
  msgid ""
4730
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4731
  "scrolls)"
@@ -4734,19 +4780,19 @@ msgstr ""
4734
  "se stran pomika)"
4735
 
4736
  #. translators: %s HTML tags
4737
- #: settings.php:4931
4738
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4739
  msgstr ""
4740
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4741
 
4742
  #. translators: %s HTML tags
4743
- #: settings.php:4932
4744
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4745
  msgstr ""
4746
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4747
 
4748
  #. translators: %s HTML tags
4749
- #: settings.php:4933
4750
  msgid ""
4751
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4752
  "visible)"
@@ -4755,7 +4801,7 @@ msgstr ""
4755
  "postane viden)"
4756
 
4757
  #. translators: %s HTML tags
4758
- #: settings.php:4934
4759
  msgid ""
4760
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4761
  msgstr ""
@@ -4763,12 +4809,12 @@ msgstr ""
4763
  "strani)"
4764
 
4765
  #. translators: %s HTML tags
4766
- #: settings.php:4935
4767
  msgid "Block %s alignment and style %s customizations"
4768
  msgstr "%s Poravnave in slogi %s bloka po meri"
4769
 
4770
  #. translators: %s HTML tags
4771
- #: settings.php:4936
4772
  msgid ""
4773
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4774
  "TOS)"
@@ -4776,7 +4822,7 @@ msgstr ""
4776
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4777
 
4778
  #. translators: %s HTML tags
4779
- #: settings.php:4937
4780
  msgid ""
4781
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4782
  "feeds"
@@ -4785,17 +4831,17 @@ msgstr ""
4785
  "virih"
4786
 
4787
  #. translators: %s HTML tags
4788
- #: settings.php:4938
4789
  msgid "%s Ad rotation %s (works also with caching)"
4790
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4791
 
4792
  #. translators: %s HTML tags
4793
- #: settings.php:4939
4794
  msgid "Create, edit and check %s ads.txt %s file"
4795
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4796
 
4797
  #. translators: %s HTML tags
4798
- #: settings.php:4940
4799
  msgid ""
4800
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4801
  "AdSense)"
@@ -4804,81 +4850,81 @@ msgstr ""
4804
  "AdSense)"
4805
 
4806
  #. translators: %s HTML tags
4807
- #: settings.php:4941
4808
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4809
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4810
 
4811
  #. translators: %s HTML tags
4812
- #: settings.php:4942
4813
  msgid "%s Public web reports %s for clients, export to PDF"
4814
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4815
 
4816
  #. translators: %s HTML tags
4817
- #: settings.php:4943
4818
  msgid "Support for %s A/B testing %s"
4819
  msgstr "Podpora za %s A/B testiranje %s"
4820
 
4821
  #. translators: %s HTML tags
4822
- #: settings.php:4944
4823
  msgid "Frequency capping - %s limit impressions or clicks %s"
4824
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
4825
 
4826
  #. translators: %s HTML tags
4827
- #: settings.php:4945
4828
  msgid "Click fraud %s protection %s"
4829
  msgstr "%s Zaščita %s pred goljufijo s kliki"
4830
 
4831
  #. translators: %s HTML tags
4832
- #: settings.php:4946
4833
  msgid "Support for %s lazy loading %s"
4834
  msgstr "Podpora za %s leno nalaganje %s"
4835
 
4836
  #. translators: %s HTML tags
4837
- #: settings.php:4947
4838
  msgid "Support for ads on %s AMP pages %s"
4839
  msgstr "Podpora za oglase na %s AMP straneh %s"
4840
 
4841
  #. translators: %s HTML tags
4842
- #: settings.php:4948
4843
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4844
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4845
 
4846
  #. translators: %s HTML tags
4847
- #: settings.php:4949
4848
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4849
  msgstr ""
4850
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4851
 
4852
  #. translators: %s HTML tags
4853
- #: settings.php:4951
4854
  msgid "%s Banner %s code generator"
4855
  msgstr "Generator kode za %s pasice %s"
4856
 
4857
  #. translators: %s HTML tags
4858
- #: settings.php:4952
4859
  msgid "Support for %s header and footer %s code"
4860
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4861
 
4862
  #. translators: %s HTML tags
4863
- #: settings.php:4953
4864
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4865
  msgstr ""
4866
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4867
 
4868
  #. translators: %s HTML tags
4869
- #: settings.php:4954
4870
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4871
  msgstr ""
4872
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4873
  "strežnika"
4874
 
4875
  #. translators: %s HTML tags
4876
- #: settings.php:4955
4877
  msgid "Client-side %s mobile device detection %s (works with caching)"
4878
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4879
 
4880
  #. translators: %s HTML tags
4881
- #: settings.php:4956
4882
  msgid ""
4883
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4884
  "protection"
@@ -4887,12 +4933,12 @@ msgstr ""
4887
  "vsebine"
4888
 
4889
  #. translators: %s HTML tags
4890
- #: settings.php:4957
4891
  msgid "%s Ad blocking statistics %s"
4892
  msgstr "%s Statistika blokiranja oglasov %s"
4893
 
4894
  #. translators: %s HTML tags
4895
- #: settings.php:4958
4896
  msgid ""
4897
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4898
  "referers"
@@ -4900,75 +4946,75 @@ msgstr ""
4900
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4901
 
4902
  #. translators: %s HTML tags
4903
- #: settings.php:4959
4904
  msgid ""
4905
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4906
  msgstr ""
4907
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4908
 
4909
  #. translators: %s HTML tags
4910
- #: settings.php:4960
4911
  msgid "%s Multisite options %s to limit settings on the sites"
4912
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4913
 
4914
  #. translators: %s HTML tags
4915
- #: settings.php:4961
4916
  msgid "%s Import/Export %s block or plugin settings"
4917
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4918
 
4919
  #. translators: %s HTML tags
4920
- #: settings.php:4962
4921
  msgid "%s Insertion scheduling %s with fallback option"
4922
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4923
 
4924
  #. translators: %s HTML tags
4925
- #: settings.php:4963
4926
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4927
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4928
 
4929
  #. translators: %s HTML tags
4930
- #: settings.php:4964
4931
  msgid "Simple troubleshooting with many %s debugging functions %s"
4932
  msgstr ""
4933
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4934
 
4935
  #. translators: %s HTML tags
4936
- #: settings.php:4965
4937
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4938
  msgstr ""
4939
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4940
 
4941
  #. translators: %s HTML tags
4942
- #: settings.php:4966
4943
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4944
  msgstr ""
4945
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4946
 
4947
  #. translators: %s HTML tags
4948
- #: settings.php:4967
4949
  msgid ""
4950
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4951
  msgstr ""
4952
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4953
 
4954
  #. translators: %s HTML tags
4955
- #: settings.php:4968
4956
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4957
  msgstr ""
4958
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4959
 
4960
  #. translators: %s HTML tags
4961
- #: settings.php:4969
4962
  msgid "No ads on the settings page"
4963
  msgstr "Stran z nastavitvami brez oglasov"
4964
 
4965
  #. translators: %s HTML tags
4966
- #: settings.php:4970
4967
  msgid "Premium support"
4968
  msgstr "Vrhunska podpora"
4969
 
4970
  #. translators: %s HTML tags
4971
- #: settings.php:4973
4972
  msgid ""
4973
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4974
  "website with many advertising features to automatically insert adverts on "
@@ -4995,82 +5041,82 @@ msgstr ""
4995
  "bodo ohranile)."
4996
 
4997
  #. translators: %s HTML tags
4998
- #: settings.php:4986
4999
  msgid "Looking for %s Pro Ad Management plugin? %s"
5000
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5001
 
5002
  #. translators: %s HTML tags
5003
- #: settings.php:4991
5004
  msgid "Ads between posts"
5005
  msgstr "Oglasi med prispevki"
5006
 
5007
  #. translators: %s HTML tags
5008
- #: settings.php:4992
5009
  msgid "Ads between comments"
5010
  msgstr "Oglasi med komentarji"
5011
 
5012
  #. translators: %s HTML tags
5013
- #: settings.php:4993
5014
  msgid "Support via email"
5015
  msgstr "Podpora prek elektronske pošte"
5016
 
5017
  #. translators: %s HTML tags
5018
- #: settings.php:4999
5019
  msgid "%s Sticky positions %s"
5020
  msgstr "%s Lepljivi položaji %s"
5021
 
5022
  #. translators: %s HTML tags
5023
- #: settings.php:5000
5024
  msgid "%s Limit insertions %s"
5025
  msgstr "%s Omeji vstavljanja %s"
5026
 
5027
  #. translators: %s HTML tags
5028
- #: settings.php:5001
5029
  msgid "%s Clearance %s options"
5030
  msgstr "Možnosti %s izogibanja %s"
5031
 
5032
  #. translators: %s HTML tags
5033
- #: settings.php:5007
5034
  msgid "Ad rotation"
5035
  msgstr "Vrtenje oglasov"
5036
 
5037
  #. translators: %s HTML tags
5038
- #: settings.php:5008
5039
  msgid "%s A/B testing %s"
5040
  msgstr "%s A/B testiranje %s"
5041
 
5042
  #. translators: %s HTML tags
5043
- #: settings.php:5009
5044
  msgid "%s Ad tracking %s"
5045
  msgstr "%s Sledenje oglasom %s"
5046
 
5047
  #. translators: %s HTML tags
5048
- #: settings.php:5015
5049
  msgid "Support for %s AMP pages %s"
5050
  msgstr "Podpora za %s AMP strani %s"
5051
 
5052
  #. translators: %s HTML tags
5053
- #: settings.php:5016
5054
  msgid "%s Ad blocking detection %s"
5055
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5056
 
5057
  #. translators: %s HTML tags
5058
- #: settings.php:5017
5059
  msgid "%s Mobile device detection %s"
5060
  msgstr "%s Zaznavanje mobilne naprave %s"
5061
 
5062
  #. translators: %s HTML tags
5063
- #: settings.php:5024
5064
  msgid "64 code blocks"
5065
  msgstr "64 kodnih blokov"
5066
 
5067
  #. translators: %s HTML tags
5068
- #: settings.php:5025
5069
  msgid "%s GEO targeting %s"
5070
  msgstr "%s GEO ciljanje %s"
5071
 
5072
  #. translators: %s HTML tags
5073
- #: settings.php:5026
5074
  msgid "%s Scheduling %s"
5075
  msgstr "%s Urnik %s"
5076
 
@@ -5870,6 +5916,16 @@ msgstr ""
5870
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5871
  "na optimalna mesta"
5872
 
 
 
 
 
 
 
 
 
 
 
5873
  #~ msgid "Individual exceptions for posts"
5874
  #~ msgstr "Posamezne izjeme za prispevke"
5875
 
@@ -6215,12 +6271,6 @@ msgstr ""
6215
  #~ msgid "auto"
6216
  #~ msgstr "samodejni"
6217
 
6218
- #, fuzzy
6219
- #~| msgctxt "Enabled/disabled on all"
6220
- #~| msgid "posts"
6221
- #~ msgid "posts"
6222
- #~ msgstr "prispevkih"
6223
-
6224
  #~ msgid "BEFORE PARAGRAPH"
6225
  #~ msgstr "PRED ODSTAVKOM"
6226
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-22 10:05:32+00:00\n"
8
+ "PO-Revision-Date: 2019-09-22 12:11+0200\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:403
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:419
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:426
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:497
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:504
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:513
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:520
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:530
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1133
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1138
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1143 strings.php:103
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1148 strings.php:104
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1153 strings.php:105
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1158 strings.php:155
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1205
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1209
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1418
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1743 ad-inserter.php:2669
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2190
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2190
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2191
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2192
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2193
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2194
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2195
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2394
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2395 includes/functions.old.php:1652
150
+ #: includes/functions.php:1697
151
  msgid "No, thank you."
152
  msgstr "Ne, hvala."
153
 
154
  #. Translators: %s: Ad Inserter
155
+ #: ad-inserter.php:2398
156
  msgid ""
157
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
158
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
159
 
160
+ #: ad-inserter.php:2399 includes/functions.old.php:1655
161
+ #: includes/functions.php:1700
162
  msgid "Not now, maybe later."
163
  msgstr "Ne zdaj, mogoče kasneje."
164
 
165
+ #: ad-inserter.php:2409
166
  msgid "I would really appreciate if you could rate the plugin on WordPres."
167
  msgstr "Res bi bil vesel, če bi lahko ocenili vtičnik na WordPress-u."
168
 
169
+ #: ad-inserter.php:2411
170
  msgid ""
171
  "Positive reviews are a great incentive to fix bugs and to add new features "
172
  "for better monetization of your website. Thank you, Igor"
175
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
176
 
177
  #. translators: %s: Ad Inserter
178
+ #: ad-inserter.php:2417
179
  msgid "Rate %s"
180
  msgstr "Ocenite %s"
181
 
182
+ #: ad-inserter.php:2422
183
  msgid "I already did."
184
  msgstr "Sem že."
185
 
186
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
187
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
188
+ #: ad-inserter.php:2434 ad-inserter.php:2460
189
+ msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
190
+ msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
191
+
192
+ #: ad-inserter.php:2442
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr "Nastavitve"
196
 
197
  #. translators: %s: Ad Inserter
198
+ #: ad-inserter.php:2560
199
  msgctxt "Meta box name"
200
  msgid "%s Individual Exceptions"
201
  msgstr "Posamezne Izjeme za %s"
202
 
203
+ #: ad-inserter.php:2589 ad-inserter.php:8656 class.php:2060
204
  #: includes/preview.php:1976 includes/preview.php:2020
205
+ #: includes/preview.php:2057 settings.php:4051 strings.php:3
206
  msgid "Block"
207
  msgstr "Blok"
208
 
209
+ #: ad-inserter.php:2590 settings.php:4052 settings.php:4137
210
  msgid "Name"
211
  msgstr "Ime"
212
 
213
+ #: ad-inserter.php:2593 settings.php:1123
214
  msgid "Default insertion"
215
  msgstr "Privzeto vstavljanje"
216
 
217
  #. translators: For this post or page
218
+ #: ad-inserter.php:2596
219
  msgctxt "Page"
220
  msgid "For this"
221
  msgstr "Za to"
222
 
223
+ #: ad-inserter.php:2597
224
  msgctxt "Post"
225
  msgid "For this"
226
  msgstr "Za ta"
227
 
228
+ #: ad-inserter.php:2609
229
  msgctxt "Enabled/disabled on all"
230
  msgid "pages"
231
  msgstr "straneh"
232
 
233
+ #: ad-inserter.php:2612
234
  msgctxt "Enabled/disabled on all"
235
  msgid "posts"
236
  msgstr "prispevkih"
237
 
238
+ #: ad-inserter.php:2630 ad-inserter.php:2642 strings.php:161
239
  msgid "Enabled"
240
  msgstr "Omogočeno"
241
 
242
  #. translators: Menu items
243
+ #: ad-inserter.php:2630 ad-inserter.php:2642 includes/functions.old.php:2326
244
+ #: includes/functions.php:2373 strings.php:16
245
  msgid "Disabled"
246
  msgstr "Onemogočeno"
247
 
248
+ #: ad-inserter.php:2632
249
  msgid "No individual exceptions"
250
  msgstr "Ni posameznih izjem"
251
 
252
  #. translators: Not enabled for pages or posts
253
+ #: ad-inserter.php:2634
254
  msgid "Not enabled for"
255
  msgstr "Ni omogočeno za"
256
 
257
  #. translators: No individual exceptions enabled for pages or posts
258
+ #: ad-inserter.php:2662
259
  msgid "No block has individual exceptions enabled"
260
  msgstr "Noben blok nima omogočenih posameznih izjem"
261
 
262
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
263
+ #: ad-inserter.php:2667
264
  msgid ""
265
  "Default insertion can be configured for each block on %1$s page - button "
266
  "next to %2$s checkbox."
268
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
269
  "poleg kljukice za vklop %2$s."
270
 
271
+ #: ad-inserter.php:2670 settings.php:1101
272
  msgid "Tag / Archive pages"
273
  msgstr "Strani oznak / arhiva"
274
 
275
+ #: ad-inserter.php:2672
276
  msgid ""
277
  "When individual exceptions for a block are enabled, a checkbox will be "
278
  "listed here to change default insertion for this post or page."
280
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
281
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
282
 
283
+ #: ad-inserter.php:2673
284
  msgid ""
285
  "This way you can individually enable or disable blocks on specific posts or "
286
  "pages."
288
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
289
  "prispevku ali strani."
290
 
291
+ #: ad-inserter.php:2675
292
  msgid "For more information check page %s"
293
  msgstr "Za več informacij poglejte stran %s"
294
 
295
  #. translators: Ad Inserter Exceptions documentation page
296
+ #: ad-inserter.php:2677
297
  msgid "Individual Exceptions"
298
  msgstr "Posamezne Izjeme"
299
 
300
+ #: ad-inserter.php:2724
301
  msgid "STATIC PAGE"
302
  msgstr "STATIČNA STRAN"
303
 
304
+ #: ad-inserter.php:2727
305
  msgid "POST"
306
  msgstr "PRISPEVEK"
307
 
308
+ #: ad-inserter.php:2730
309
  msgid "HOMEPAGE"
310
  msgstr "DOMAČA STRAN"
311
 
312
+ #: ad-inserter.php:2733
313
  msgid "CATEGORY PAGE"
314
  msgstr "STRAN KATEGORIJE"
315
 
316
+ #: ad-inserter.php:2736
317
  msgid "SEARCH PAGE"
318
  msgstr "STRAN ISKANJE"
319
 
320
+ #: ad-inserter.php:2739
321
  msgid "ARCHIVE PAGE"
322
  msgstr "STRAN ARHIVA"
323
 
324
+ #: ad-inserter.php:2742
325
  msgid "ERROR 404 PAGE"
326
  msgstr "STRAN NAPAKA 404"
327
 
328
+ #: ad-inserter.php:2745
329
  msgid "AJAX CALL"
330
  msgstr "AJAX KLIC"
331
 
332
+ #: ad-inserter.php:2748
333
  msgid "UNKNOWN PAGE TYPE"
334
  msgstr "NEZNAN TIP STRANI"
335
 
336
+ #: ad-inserter.php:2765
337
  msgid "Click to delete ad blocking detection cokies"
338
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
339
 
340
+ #: ad-inserter.php:2766
341
  msgid "AD BLOCKING STATUS UNKNOWN"
342
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
343
 
344
  #. translators: %s: AdSense Auto Ads
345
+ #: ad-inserter.php:2790
346
  msgid ""
347
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
348
  "positions"
350
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
351
  "položaje"
352
 
353
+ #: ad-inserter.php:2929
354
  msgid "Code for insertion"
355
  msgstr "Koda za vstavljanje"
356
 
357
+ #: ad-inserter.php:2929
358
  msgid "character"
359
  msgid_plural "characters"
360
  msgstr[0] "znak"
362
  msgstr[2] "znaki"
363
  msgstr[3] "znakov"
364
 
365
+ #: ad-inserter.php:2972
366
  msgid "Header code"
367
  msgstr "Koda v glavi"
368
 
369
+ #: ad-inserter.php:2972
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr "ONEMOGOČENA"
373
 
374
+ #: ad-inserter.php:2972 ad-inserter.php:3195
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] "znak vstavljen"
379
  msgstr[2] "znaki vstavljeni"
380
  msgstr[3] "znakov vstavljenih"
381
 
382
+ #: ad-inserter.php:3006
383
  msgid "Automatically placed by AdSense Auto ads code"
384
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
385
 
386
+ #: ad-inserter.php:3195
387
  msgid "Footer code"
388
  msgstr "Koda v nogi"
389
 
390
+ #: ad-inserter.php:3195
391
  msgctxt "Footer code"
392
  msgid "DISABLED"
393
  msgstr "ONEMOGOČENA"
394
 
395
+ #: ad-inserter.php:3201
396
  msgid "JAVASCRIPT NOT WORKING"
397
  msgstr "JAVASCRIPT NE DELA"
398
 
399
+ #: ad-inserter.php:3201
400
  msgid "NO JAVASCRIPT ERRORS"
401
  msgstr "BREZ JAVASCRIPT NAPAK"
402
 
403
+ #: ad-inserter.php:3201
404
  msgid "JAVASCRIPT ERRORS"
405
  msgstr "JAVASCRIPT NAPAKE"
406
 
407
  #. translators: block name (block with default settings)
408
+ #: ad-inserter.php:5457
409
  msgctxt "Block name"
410
  msgid "Default"
411
  msgstr "Privzeti"
412
 
413
  #. translators: %s: Ad Inserter
414
+ #: ad-inserter.php:6072
415
  msgid "Error importing %s settings."
416
  msgstr "Napaka pri uvozu %s nastavitev."
417
 
418
+ #: ad-inserter.php:6073
419
  msgid "Error importing settings for block"
420
  msgid_plural "Error importing settings for blocks:"
421
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
423
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
424
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
425
 
426
+ #: ad-inserter.php:6123
427
  msgid "Settings saved."
428
  msgstr "Nastavitve shranjene."
429
 
430
+ #. translators: %s: Ad Inserter
431
+ #: ad-inserter.php:6125
432
+ msgid "Invalid data received - %s settings not saved."
433
+ msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
434
+
435
+ #: ad-inserter.php:6213
436
  msgid "Settings cleared."
437
  msgstr "Nastavitve ponastavljene."
438
 
439
+ #. Translators: Post/Static page must have between X and Y words
440
+ #: ad-inserter.php:6558 ad-inserter.php:6560 ad-inserter.php:6583
441
+ #: settings.php:2053
442
  msgid "word"
443
  msgid_plural "words"
444
+ msgstr[0] "besedo"
445
  msgstr[1] "besedi"
446
  msgstr[2] "besede"
447
  msgstr[3] "besed"
448
 
449
+ #: ad-inserter.php:6597 ad-inserter.php:6709
450
  msgid "HTML TAGS REMOVED"
451
  msgstr "HTML ZNAČKE ODSTRANJENE"
452
 
453
+ #: ad-inserter.php:6785
454
  msgid "BEFORE COMMENTS"
455
  msgstr "PRED KOMENTARJI"
456
 
457
+ #: ad-inserter.php:6893
458
  msgid "AFTER COMMENTS"
459
  msgstr "PO KOMETARJIH"
460
 
461
+ #: ad-inserter.php:6956
462
  msgid "BETWEEN COMMENTS"
463
  msgstr "MED KOMENTARJI"
464
 
465
+ #: ad-inserter.php:8288
466
+ msgid "requires WordPress 4.6 or newer"
467
+ msgstr "potrebuje WordPress 4.6 ali novejši"
468
 
469
+ #: ad-inserter.php:8288
470
  msgid "Please update!"
471
  msgstr "Prosimo, posodobite!"
472
 
473
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
474
  #. name with HTML tags will be added)
475
+ #: ad-inserter.php:8529
476
  msgid "Thank you for installing"
477
  msgstr "Hvala za namestitev vtičnika"
478
 
479
  #. translators: Opt-in message: %s: HTML tags
480
+ #: ad-inserter.php:8531
481
  msgid ""
482
  "We would like to %s track its usage %s on your site. This is completely "
483
  "optional and can be disabled at any time."
485
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
486
  "izbirno in se lahko izključi kadarkoli."
487
 
488
+ #: ad-inserter.php:8533
489
  msgid ""
490
  "We don't record any sensitive data, only information regarding the WordPress "
491
  "environment and plugin usage, which will help us to make improvements to the "
495
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
496
 
497
  #. translators: Deactivation message: %s: HTML tags
498
+ #: ad-inserter.php:8570
499
  msgid ""
500
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
501
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
506
  "nam %s in poskušali vam bomo pomagati."
507
 
508
  #. translators: %s: Ad Inserter
509
+ #: ad-inserter.php:8613
510
  msgid "%s block."
511
  msgstr "%s blok."
512
 
513
  #. translators: widget title
514
+ #: ad-inserter.php:8629 ad-inserter.php:8665
515
  msgid "Processing log"
516
  msgstr "Dnevnik procesiranja"
517
 
518
  #. translators: widget title
519
+ #: ad-inserter.php:8631 ad-inserter.php:8666
520
  msgid "Dummy widget"
521
  msgstr "Prazen gradnik"
522
 
523
  #. translators: widget title
524
+ #: ad-inserter.php:8633 ad-inserter.php:8664
525
  msgid "Debugging tools"
526
  msgstr "Orodja za razhroščevanje"
527
 
528
  #. translators: block status (widget title)
529
+ #: ad-inserter.php:8640
530
  msgctxt "block"
531
  msgid "PAUSED"
532
  msgstr "USTAVLJEN"
533
 
534
+ #: ad-inserter.php:8641
535
  msgid "WIDGET DISABLED"
536
  msgstr "GRADNIK ONEMOGOČEN"
537
 
538
+ #: ad-inserter.php:8642
539
  msgid "Unknown block"
540
  msgstr "Neznan blok"
541
 
542
+ #: ad-inserter.php:8651 includes/functions.old.php:3186
543
+ #: includes/functions.php:3233 settings.php:1153
544
  msgid "Title"
545
  msgstr "Naslov"
546
 
547
+ #: ad-inserter.php:8673
548
  msgctxt "Widget"
549
  msgid "Sticky"
550
  msgstr "Lepljiv"
551
 
552
+ #: ad-inserter.php:8722
553
  msgid ""
554
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
555
  "Inserter you need to first deactivate Ad Inserter Pro."
558
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
559
  "Inserter Pro."
560
 
561
+ #: ad-inserter.php:8723
562
  msgid ""
563
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
564
  "will clear all settings that are available only in the Pro version "
573
  msgid "PHP error in %s block"
574
  msgstr "PHP napaka v bloku %s"
575
 
576
+ #: class.php:2026
577
  msgid "Counters"
578
  msgstr "Števci"
579
 
580
+ #: class.php:2030
581
  msgid "Content"
582
  msgstr "Vsebina"
583
 
584
+ #: class.php:2035
585
  msgid "Excerpt"
586
  msgstr "Izvleček"
587
 
588
+ #: class.php:2040 strings.php:17
589
  msgid "Before post"
590
  msgstr "Pred prispevkom"
591
 
592
+ #: class.php:2045 strings.php:18
593
  msgid "After post"
594
  msgstr "Za prispevkom"
595
 
596
+ #: class.php:2050 settings.php:1796 settings.php:4069
597
  msgid "Widget"
598
  msgstr "Gradnik"
599
 
600
+ #: class.php:2055 settings.php:4067
601
  msgid "PHP function call"
602
  msgstr "Klic PHP funkcije"
603
 
604
+ #: class.php:2090
605
  msgid "AJAX REQUEST"
606
  msgstr "AJAX ZAHTEVEK"
607
 
608
+ #: class.php:2093
609
  msgid "Ajax request for block in iframe"
610
  msgstr "Ajax zahtevek za blok v iframe-u"
611
 
612
+ #: class.php:2123
613
  msgid "Ajax request url, click to open it in a new tab"
614
  msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
615
 
616
+ #: class.php:2126
617
  msgid "IN THE LOOP"
618
  msgstr "V ZANKI"
619
 
620
+ #: class.php:2126
621
  msgid "YES"
622
  msgstr "DA"
623
 
624
+ #: class.php:2126
625
  msgid "NO"
626
  msgstr "NE"
627
 
628
+ #: class.php:2162
629
  msgid "BLOCK"
630
  msgstr "BLOK"
631
 
632
+ #: class.php:2162
633
  msgctxt "block or widget"
634
  msgid "INSERTED BUT NOT VISIBLE"
635
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
636
 
637
+ #: class.php:2611 class.php:2674
638
  msgid "ACTIVE GROUPS"
639
  msgstr "AKTIVNE SKUPINE"
640
 
641
  #. translators: %s: list parameters and type
642
+ #: class.php:2854
643
  msgid "parameters='%s' type='%s'"
644
  msgstr "parametri='%s' tip='%s'"
645
 
646
  #. translators: %s: list parameters and type
647
+ #: class.php:2856
648
  msgid "referers='%s' type='%s'"
649
  msgstr "napotitelji='%s' tip='%s'"
650
 
651
  #. translators: %s: list parameters and type
652
+ #: class.php:2917
653
  msgid "countries='%s' type='%s'"
654
  msgstr "države='%s' tip='%s'"
655
 
656
  #. translators: %s: list parameters and type
657
+ #: class.php:2919
658
  msgid "ip addresses='%s' type='%s'"
659
  msgstr "ip naslovi='%s' tip='%s'"
660
 
661
+ #: class.php:3188 strings.php:239
662
  msgid "BEFORE"
663
  msgstr "PRED"
664
 
665
+ #: class.php:3196 strings.php:241
666
  msgid "PREPEND CONTENT"
667
  msgstr "DODAJ PRED VSEBINO"
668
 
669
+ #: class.php:3200 strings.php:242
670
  msgid "APPEND CONTENT"
671
  msgstr "DODAJ ZA VSEBINO"
672
 
673
+ #: class.php:3204 strings.php:243
674
  msgid "REPLACE CONTENT"
675
  msgstr "NADOMESTI VSEBINO"
676
 
677
+ #: class.php:3208 strings.php:244
678
  msgid "REPLACE ELEMENT"
679
  msgstr "NADOMESTI ELEMENT"
680
 
681
+ #: class.php:3219 strings.php:240
682
  msgid "AFTER"
683
  msgstr "ZA"
684
 
685
+ #: class.php:3286
686
  msgctxt "JavaScript"
687
  msgid "script"
688
  msgstr "skripta"
689
 
690
+ #: class.php:3289 settings.php:2065
691
  msgid "for"
692
  msgstr "za"
693
 
694
+ #: class.php:6332 class.php:6384
695
  msgctxt "category name"
696
  msgid "Uncategorized"
697
  msgstr "Nekategorizirano"
698
 
699
+ #: class.php:6893
700
  msgid ""
701
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
702
  "extension for PHP."
714
  msgstr "Ponastavi"
715
 
716
  #: includes/editor.php:9 includes/placeholders.php:354
717
+ #: includes/preview.php:1965 settings.php:3464 strings.php:208 strings.php:245
718
  msgid "Cancel"
719
  msgstr "Prekliči"
720
 
798
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
799
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
800
 
801
+ #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1304
802
+ #: settings.php:2679
803
  msgid "Open HTML element selector"
804
  msgstr "Odpri izbirnik HTML elementa"
805
 
836
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
837
 
838
  #: includes/functions.old.php:508 includes/functions.old.php:2960
839
+ #: includes/functions.php:510 includes/functions.php:3007
840
  msgid "Toggle Statistics"
841
  msgstr "Preklopi Statistiko"
842
 
855
  msgid "%s license overused. Continue?"
856
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
857
 
858
+ #: includes/functions.old.php:536 includes/functions.php:546 settings.php:1058
859
+ #: settings.php:2136
860
  msgid "Save Settings"
861
  msgstr "Shrani Nastavitve"
862
 
929
 
930
  #: includes/functions.old.php:750 includes/functions.old.php:2453
931
  #: includes/functions.old.php:2470 includes/functions.php:760
932
+ #: includes/functions.php:2500 includes/functions.php:2517
933
  msgid "Tracking is globally disabled"
934
  msgstr "Sledenje je globalno onemogočeno"
935
 
936
  #: includes/functions.old.php:754 includes/functions.old.php:2457
937
  #: includes/functions.old.php:2474 includes/functions.php:764
938
+ #: includes/functions.php:2504 includes/functions.php:2521
939
  msgid "Tracking for this block is disabled"
940
  msgstr "Sledenje za ta blok je onemogočeno"
941
 
943
  msgid "Double click to toggle controls in public reports"
944
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
945
 
946
+ #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3399
947
+ #: settings.php:3435 settings.php:3477 strings.php:218
948
  msgid "Loading..."
949
  msgstr "Nalagam..."
950
 
961
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
962
 
963
  #: includes/functions.old.php:795 includes/functions.old.php:5262
964
+ #: includes/functions.php:805 includes/functions.php:5322
965
  msgid "Load data for last month"
966
  msgstr "Naloži podatke za zadnji mesec"
967
 
968
  #: includes/functions.old.php:795 includes/functions.old.php:5262
969
+ #: includes/functions.php:805 includes/functions.php:5322
970
  msgid "Last Month"
971
  msgstr "Zadnji Mesec"
972
 
973
  #: includes/functions.old.php:798 includes/functions.old.php:5265
974
+ #: includes/functions.php:808 includes/functions.php:5325
975
  msgid "Load data for this month"
976
  msgstr "Naloži podatke za ta mesec"
977
 
978
  #: includes/functions.old.php:798 includes/functions.old.php:5265
979
+ #: includes/functions.php:808 includes/functions.php:5325
980
  msgid "This Month"
981
  msgstr "Ta Mesec"
982
 
983
  #: includes/functions.old.php:801 includes/functions.old.php:5268
984
+ #: includes/functions.php:811 includes/functions.php:5328
985
  msgid "Load data for this year"
986
  msgstr "Naloži podatke za to leto"
987
 
988
  #: includes/functions.old.php:801 includes/functions.old.php:5268
989
+ #: includes/functions.php:811 includes/functions.php:5328
990
  msgid "This Year"
991
  msgstr "To Leto"
992
 
993
  #: includes/functions.old.php:804 includes/functions.old.php:5271
994
+ #: includes/functions.php:814 includes/functions.php:5331
995
  msgid "Load data for the last 15 days"
996
  msgstr "Naloži podatke za zadnjih 15 dni"
997
 
998
  #: includes/functions.old.php:807 includes/functions.old.php:5274
999
+ #: includes/functions.php:817 includes/functions.php:5334
1000
  msgid "Load data for the last 30 days"
1001
  msgstr "Naloži podatke za zadnjih 30 dni"
1002
 
1003
  #: includes/functions.old.php:810 includes/functions.old.php:5277
1004
+ #: includes/functions.php:820 includes/functions.php:5337
1005
  msgid "Load data for the last 90 days"
1006
  msgstr "Naloži podatke za zadnjih 90 dni"
1007
 
1008
  #: includes/functions.old.php:813 includes/functions.old.php:5280
1009
+ #: includes/functions.php:823 includes/functions.php:5340
1010
  msgid "Load data for the last 180 days"
1011
  msgstr "Naloži podatke za zadnjih 180 dni"
1012
 
1013
  #: includes/functions.old.php:816 includes/functions.old.php:5283
1014
+ #: includes/functions.php:826 includes/functions.php:5343
1015
  msgid "Load data for the last 365 days"
1016
  msgstr "Naloži podatke za zadnjih 365 dni"
1017
 
1018
  #: includes/functions.old.php:826 includes/functions.old.php:5293
1019
+ #: includes/functions.php:836 includes/functions.php:5353
1020
  msgid "Load data for the selected range"
1021
  msgstr "Naloži podatke za izbrano obdobje"
1022
 
1101
  msgstr "Mesta"
1102
 
1103
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1104
+ #: includes/functions.php:948 includes/functions.php:2972
1105
  msgid "Toggle country editor"
1106
  msgstr "Preklopi urejevalnik držav"
1107
 
1110
  msgstr "Preklopi urejevalnik mest"
1111
 
1112
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1113
+ #: includes/functions.php:955 includes/functions.php:2975
1114
  msgid "Comma separated country ISO Alpha-2 codes"
1115
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1116
 
1123
  msgstr "Beli seznam držav"
1124
 
1125
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1126
+ #: includes/functions.php:1373 includes/functions.php:1653
1127
  msgid "Enter license key"
1128
  msgstr "Vnesite licenčni ključ"
1129
 
1130
  #. translators: %s: Ad Inserter Pro
1131
+ #: includes/functions.old.php:1367 includes/functions.php:1379
1132
  msgid ""
1133
  "%s license key is not set. Plugin functionality is limited and updates are "
1134
  "disabled."
1137
  "posodobitve onemogočene."
1138
 
1139
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1140
+ #: includes/functions.php:1402 includes/functions.php:1662
1141
  msgid "Check license key"
1142
  msgstr "Preverite licenčni ključ"
1143
 
1144
  #. translators: %s: Ad Inserter Pro
1145
+ #: includes/functions.old.php:1385 includes/functions.php:1408
1146
  msgid "Invalid %s license key."
1147
  msgstr "Neveljaven %s licenčni ključ."
1148
 
1149
  #. translators: %s: Ad Inserter Pro
1150
+ #: includes/functions.old.php:1394 includes/functions.php:1417
1151
  msgid "%s license expired. Plugin updates are disabled."
1152
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1153
 
1154
+ #: includes/functions.old.php:1395 includes/functions.php:1418
1155
  msgid "Renew license"
1156
  msgstr "Obnovite licenco"
1157
 
1158
  #. translators: %s: Ad Inserter Pro
1159
+ #: includes/functions.old.php:1403 includes/functions.php:1426
1160
  msgid "%s license overused. Plugin updates are disabled."
1161
  msgstr ""
1162
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1163
 
1164
+ #: includes/functions.old.php:1404 includes/functions.php:1427
1165
  msgid "Manage licenses"
1166
  msgstr "Upravljajte z licencami"
1167
 
1168
+ #: includes/functions.old.php:1404 includes/functions.php:1427
1169
  msgid "Upgrade license"
1170
  msgstr "Nadgradite licenco"
1171
 
1172
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1173
+ #: includes/functions.old.php:1610 includes/functions.php:1655
1174
  msgid ""
1175
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1176
  "limited and updates are disabled."
1179
  "so omejene in posodobitve onemogočene."
1180
 
1181
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1182
+ #: includes/functions.old.php:1619 includes/functions.php:1664
1183
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1184
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1185
 
1186
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1187
+ #: includes/functions.old.php:1635 includes/functions.php:1680
1188
  msgid ""
1189
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1190
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1194
  "pogrešate. %3$s"
1195
 
1196
  #. translators: 1, 3: HTML tags, 2: percentage
1197
+ #: includes/functions.old.php:1642 includes/functions.php:1687
1198
  msgid ""
1199
  "During the license period and 30 days after the license has expired we offer "
1200
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1202
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1203
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1204
 
1205
+ #: includes/functions.old.php:1669 includes/functions.php:1714
1206
  msgid "Renew the licence"
1207
  msgstr "Obnovi licenco"
1208
 
1209
+ #: includes/functions.old.php:1671 includes/functions.php:1716
1210
  msgid "Update license status"
1211
  msgstr "Posodobi status licence"
1212
 
1213
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1214
+ #: includes/functions.old.php:1682 includes/functions.php:1727
1215
  msgid ""
1216
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1217
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1221
  "Nadgradite licenco %7$s"
1222
 
1223
  #. Translators: %s: HTML tag
1224
+ #: includes/functions.old.php:1704 includes/functions.php:1749
1225
  msgid "Warning: %s MaxMind IP geolocation database not found."
1226
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1227
 
1228
+ #: includes/functions.old.php:2255 includes/functions.php:2302
1229
  msgid "Geolocation"
1230
  msgstr "Geolokacija"
1231
 
1232
+ #: includes/functions.old.php:2259 includes/functions.php:2306
1233
+ #: settings.php:4056
1234
  msgid "Exceptions"
1235
  msgstr "Izjeme"
1236
 
1237
+ #: includes/functions.old.php:2264 includes/functions.php:2311
1238
  msgid "Multisite"
1239
  msgstr "Multisite"
1240
 
1241
+ #: includes/functions.old.php:2269 includes/functions.php:2316
1242
+ #: settings.php:4062
1243
  msgid "Tracking"
1244
  msgstr "Sledenje"
1245
 
1246
  #. translators: %d: days, hours, minutes
1247
+ #: includes/functions.old.php:2300 includes/functions.php:2347
1248
  msgid "Scheduled in %d days %d hours %d minutes"
1249
  msgstr "Planirano v %d dneh %d urah %d minutah"
1250
 
1251
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1252
  #. HTML code for long dash separator
1253
+ #: includes/functions.old.php:2309 includes/functions.php:2356
1254
  msgid "Active %s expires in %d days %d hours %d minutes"
1255
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1256
 
1257
+ #: includes/functions.old.php:2313 includes/functions.php:2360
1258
  msgid "Expired"
1259
  msgstr "Poteklo"
1260
 
1261
+ #: includes/functions.old.php:2321 includes/functions.php:2368
1262
+ #: settings.php:1387 settings.php:1402 settings.php:1491 settings.php:2051
1263
  msgid "and"
1264
  msgstr "in"
1265
 
1266
+ #: includes/functions.old.php:2324 includes/functions.php:2371
1267
  msgid "fallback"
1268
  msgstr "rezerva"
1269
 
1270
+ #: includes/functions.old.php:2325 includes/functions.php:2372
1271
  msgid "Block to be used when scheduling expires"
1272
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1273
 
1274
+ #: includes/functions.old.php:2350 includes/functions.php:2397
1275
  msgid "Load in iframe"
1276
  msgstr "Naloži v iframe-u"
1277
 
1278
+ #: includes/functions.old.php:2354 includes/functions.php:2401
1279
  #: includes/placeholders.php:389
1280
  msgid "Width"
1281
  msgstr "Širina"
1282
 
1283
+ #: includes/functions.old.php:2355 includes/functions.php:2402
1284
  msgid "iframe width, empty means full width (100%)"
1285
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1286
 
1287
+ #: includes/functions.old.php:2361 includes/functions.php:2408
1288
  #: includes/placeholders.php:384
1289
  msgid "Height"
1290
  msgstr "Višina"
1291
 
1292
+ #: includes/functions.old.php:2362 includes/functions.php:2409
1293
  msgid "iframe height, empty means adjust it to iframe content height"
1294
  msgstr ""
1295
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1296
 
1297
+ #: includes/functions.old.php:2369 includes/functions.php:2416
1298
  msgid "Ad label in iframe"
1299
  msgstr "Oznaka oglasa v iframe-u"
1300
 
1301
+ #: includes/functions.old.php:2374 includes/functions.php:2421
1302
  msgid "Preview iframe code"
1303
  msgstr "Predpreglej kodo iframe"
1304
 
1305
+ #: includes/functions.old.php:2374 includes/functions.php:2421
1306
+ #: includes/preview.php:1974 settings.php:1053 settings.php:2741
1307
  msgid "Preview"
1308
  msgstr "Predogled"
1309
 
1310
+ #: includes/functions.old.php:2388 includes/functions.php:2435
1311
+ #: settings.php:4063
1312
  msgid "Limits"
1313
  msgstr "Omejitve"
1314
 
1315
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1316
+ #: includes/functions.old.php:4329 includes/functions.php:2440
1317
+ #: includes/functions.php:4313 includes/functions.php:4376 settings.php:2183
1318
  msgid "Ad Blocking"
1319
  msgstr "Blokiranje Oglasov"
1320
 
1321
  #. translators: 1, 2 and 3, 4: HTML tags
1322
+ #: includes/functions.old.php:2402 includes/functions.php:2449
1323
  msgid ""
1324
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1325
  "for tracking!"
1329
 
1330
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1331
  #. header
1332
+ #: includes/functions.old.php:2411 includes/functions.php:2458
1333
  msgid ""
1334
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1335
  "enabled and automatic insertion %6$s!"
1337
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1338
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1339
 
1340
+ #: includes/functions.old.php:2478 includes/functions.php:2525
1341
  msgid "Click fraud protection is globally disabled"
1342
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1343
 
1344
+ #: includes/functions.old.php:2482 includes/functions.php:2529
1345
  msgid "Max clicks per time period are not defined"
1346
  msgstr "Največje število klikov na časovno enoto ni definirano"
1347
 
1348
  #. Translators: Max n impressions
1349
+ #: includes/functions.old.php:2496 includes/functions.php:2543
1350
  msgid "General limits"
1351
  msgstr "Splošne omejitve"
1352
 
1353
  #. Translators: Max n impressions per x days
1354
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1355
+ #: includes/functions.old.php:2599 includes/functions.php:2549
1356
+ #: includes/functions.php:2561 includes/functions.php:2646
1357
  msgid "Current value"
1358
  msgstr "Trenutna vrednost"
1359
 
1369
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1370
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1371
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1372
+ #: includes/functions.php:2568 includes/functions.php:2578
1373
+ #: includes/functions.php:2597 includes/functions.php:2607
1374
+ #: includes/functions.php:2653 includes/functions.php:2662
1375
+ #: includes/functions.php:2680 includes/functions.php:2689 settings.php:1972
1376
  msgid "Max"
1377
  msgstr "Največ"
1378
 
1379
+ #: includes/functions.old.php:2522 includes/functions.php:2569
1380
  msgid ""
1381
  "Maximum number of impressions for this block. Empty means no general "
1382
  "impression limit."
1390
  #. Translators: Max n impressions per x days
1391
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1392
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1393
+ #: includes/functions.php:2571 includes/functions.php:2581
1394
+ #: includes/functions.php:2656 includes/functions.php:2665
1395
  msgid "impression"
1396
  msgid_plural "impressions"
1397
  msgstr[0] "prikaz"
1399
  msgstr[2] "prikazi"
1400
  msgstr[3] "prikazov"
1401
 
1402
+ #: includes/functions.old.php:2532 includes/functions.php:2579
1403
  msgid ""
1404
  "Maximum number of impressions per time period. Empty means no time limit."
1405
  msgstr ""
1412
  #. Translators: Max n clicks per x days
1413
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1414
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1415
+ #: includes/functions.php:2585 includes/functions.php:2614
1416
+ #: includes/functions.php:2669 includes/functions.php:2696
1417
  msgid "per"
1418
  msgstr "na"
1419
 
1420
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1421
+ #: includes/functions.php:2586 includes/functions.php:2615
1422
  msgid "Time period in days. Empty means no time limit."
1423
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1424
 
1430
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1431
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1432
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1433
+ #: includes/functions.php:2588 includes/functions.php:2617
1434
+ #: includes/functions.php:2672 includes/functions.php:2699
1435
+ #: includes/functions.php:2805 includes/functions.php:3133 strings.php:199
1436
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1437
  #: strings.php:204
1438
  msgid "day"
1442
  msgstr[2] "dni"
1443
  msgstr[3] "dni"
1444
 
1445
+ #: includes/functions.old.php:2551 includes/functions.php:2598
1446
  msgid ""
1447
  "Maximum number of clicks on this block. Empty means no general click limit."
1448
  msgstr ""
1455
  #. Translators: Max n clicks per x days
1456
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1457
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1458
+ #: includes/functions.old.php:4477 includes/functions.php:2600
1459
+ #: includes/functions.php:2610 includes/functions.php:2683
1460
+ #: includes/functions.php:2692 includes/functions.php:4524
1461
  msgid "click"
1462
  msgid_plural "clicks"
1463
  msgstr[0] "klik"
1465
  msgstr[2] "kliki"
1466
  msgstr[3] "klikov"
1467
 
1468
+ #: includes/functions.old.php:2561 includes/functions.php:2608
1469
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1470
  msgstr ""
1471
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1472
  "omejitev."
1473
 
1474
+ #: includes/functions.old.php:2586 includes/functions.php:2633
1475
  msgid "Individual visitor limits"
1476
  msgstr "Omejitve posameznih obiskovalcev"
1477
 
1478
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1479
+ #: includes/functions.php:2637 includes/functions.php:2639
1480
  msgid ""
1481
  "When specified number of clicks on this block for a visitor will be reached "
1482
  "in the specified time period, all blocks that have click fraud protection "
1488
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1489
  "pred goljufijo s kliki."
1490
 
1491
+ #: includes/functions.old.php:2592 includes/functions.php:2639
1492
  msgid "Trigger click fraud protection"
1493
  msgstr "Sproži zaščito pred goljufijo s kliki"
1494
 
1495
+ #: includes/functions.old.php:2607 includes/functions.php:2654
1496
  msgid ""
1497
  "Maximum number of impressions of this block for each visitor. Empty means no "
1498
  "impression limit."
1500
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1501
  "pomeni brez omejitev prikazov."
1502
 
1503
+ #: includes/functions.old.php:2616 includes/functions.php:2663
1504
  msgid ""
1505
  "Maximum number of impressions per time period for each visitor. Empty means "
1506
  "no impression limit per time period for visitors."
1509
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1510
 
1511
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1512
+ #: includes/functions.php:2670 includes/functions.php:2697
1513
  msgid ""
1514
  "Time period in days. Use decimal value (with decimal point) for shorter "
1515
  "periods. Empty means no time limit."
1517
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1518
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1519
 
1520
+ #: includes/functions.old.php:2634 includes/functions.php:2681
1521
  msgid ""
1522
  "Maximum number of clicks on this block for each visitor. Empty means no "
1523
  "click limit."
1525
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1526
  "brez omejitev klikov."
1527
 
1528
+ #: includes/functions.old.php:2643 includes/functions.php:2690
1529
  msgid ""
1530
  "Maximum number of clicks per time period for each visitor. Empty means no "
1531
  "click limit per time period for visitors."
1533
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1534
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1535
 
1536
+ #: includes/functions.old.php:2669 includes/functions.php:2716
1537
  msgid "When ad blocking is detected"
1538
  msgstr "Ko je blokiranje oglasov zaznano"
1539
 
1540
+ #: includes/functions.old.php:2678 includes/functions.php:2725
1541
  msgid "replacement"
1542
  msgstr "nadomestek"
1543
 
1544
+ #: includes/functions.old.php:2679 includes/functions.php:2726
1545
  msgid "Block to be shown when ad blocking is detected"
1546
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1547
 
1548
+ #: includes/functions.old.php:2680 includes/functions.php:2727
1549
  msgctxt "replacement"
1550
  msgid "None"
1551
  msgstr "Noben"
1552
 
1553
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1554
+ #: includes/functions.php:2744 includes/functions.php:5544
1555
  msgid "Close button"
1556
  msgstr "Gumb Zapri"
1557
 
1558
+ #: includes/functions.old.php:2749 includes/functions.php:2796
1559
  msgid "Auto close after"
1560
  msgstr "Ssamodejno zapri po"
1561
 
1562
+ #: includes/functions.old.php:2750 includes/functions.php:2797
1563
  msgid ""
1564
  "Time in seconds in which the ad will automatically close. Leave empty to "
1565
  "disable auto closing."
1568
  "izključitev samodejnega zapiranja."
1569
 
1570
  #. Translators: Don't show for x days
1571
+ #: includes/functions.old.php:2755 includes/functions.php:2802
1572
  msgid "Don't show for"
1573
  msgstr "Ne prikaži"
1574
 
1575
+ #: includes/functions.old.php:2756 includes/functions.php:2803
1576
  msgid ""
1577
  "Time in days in which closed ad will not be shown again. Use decimal value "
1578
  "(with decimal point) for shorter time period or leave empty to show it again "
1583
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1584
 
1585
  #. Translators: Delay showing for x pageviews
1586
+ #: includes/functions.old.php:2776 includes/functions.php:2823
1587
  msgid "Delay showing for"
1588
  msgstr "Zakasni prikaz za"
1589
 
1590
+ #: includes/functions.old.php:2777 includes/functions.php:2824
1591
  msgid ""
1592
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1593
  "empty to insert the code for the first pageview."
1598
  #. Translators: Delay showing for x pageviews
1599
  #. Translators: Show every x pageviews
1600
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1601
+ #: includes/functions.php:2826 includes/functions.php:2833
1602
  msgid "pageview"
1603
  msgid_plural "pageviews"
1604
  msgstr[0] "ogled strani"
1607
  msgstr[3] "ogledov strani"
1608
 
1609
  #. Translators: Show every x pageviews
1610
+ #: includes/functions.old.php:2783 includes/functions.php:2830
1611
  msgid "Show every"
1612
  msgid_plural "Show every"
1613
  msgstr[0] "Prikaži vsak"
1615
  msgstr[2] "Prikaži vsake"
1616
  msgstr[3] "Prikaži vsakih"
1617
 
1618
+ #: includes/functions.old.php:2784 includes/functions.php:2831
1619
  msgid ""
1620
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1621
  "for every pageview."
1623
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1624
  "vstavljanje kode pri vsakem ogledu strani."
1625
 
1626
+ #: includes/functions.old.php:2803 includes/functions.php:2850
1627
  msgid "Lazy loading"
1628
  msgstr "Leno nalaganje"
1629
 
1630
  #. Translators: %s MaxMind
1631
+ #: includes/functions.old.php:2860 includes/functions.php:2907
1632
  msgid "This product includes GeoLite2 data created by %s"
1633
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1634
 
1635
+ #: includes/functions.old.php:2871 includes/functions.php:2918
1636
  msgid "IP geolocation database"
1637
  msgstr "Podatkovna baza za IP geolokacijo"
1638
 
1639
+ #: includes/functions.old.php:2874 includes/functions.php:2921
1640
  msgid "Select IP geolocation database."
1641
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1642
 
1643
+ #: includes/functions.old.php:2885 includes/functions.php:2932
1644
  msgid "Automatic database updates"
1645
  msgstr "Samodejna posodobitev podatkovne baze"
1646
 
1647
+ #: includes/functions.old.php:2888 includes/functions.php:2935
1648
  msgid ""
1649
  "Automatically download and update free GeoLite2 IP geolocation database by "
1650
  "MaxMind"
1652
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1653
  "podatkovno bazo MaxMind"
1654
 
1655
+ #: includes/functions.old.php:2896 includes/functions.php:2943
1656
  msgid "Database"
1657
  msgstr "Podatkovna baza"
1658
 
1659
+ #: includes/functions.old.php:2899 includes/functions.php:2946
1660
  msgid ""
1661
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1662
  "file"
1665
  "podatkovne baze"
1666
 
1667
  #. translators: %d: group number
1668
+ #: includes/functions.old.php:2917 includes/functions.php:2964
1669
  msgid "Group %d"
1670
  msgstr "Skupina %d"
1671
 
1672
+ #: includes/functions.old.php:2923 includes/functions.php:2970
1673
  msgid "countries"
1674
  msgstr "države"
1675
 
1676
+ #: includes/functions.old.php:2968 includes/functions.php:3015
1677
  msgid ""
1678
  "Enable impression and click tracking. You also need to enable tracking for "
1679
  "each block you want to track."
1681
  "Omogočite sledenje prikazom in klikom. Omogočiti morate tudi sledenje za "
1682
  "vsak blok, ki bi ga radi sledili."
1683
 
1684
+ #: includes/functions.old.php:2975 includes/functions.php:3022
1685
  msgid "Generate report"
1686
  msgstr "Generiraj poročilo"
1687
 
1688
+ #: includes/functions.old.php:2983 includes/functions.php:3030
1689
  msgid "Impression and Click Tracking"
1690
  msgstr "Sledenje Prikazov in Klikov"
1691
 
1692
+ #: includes/functions.old.php:2984 includes/functions.php:3031
1693
+ #: settings.php:2629
1694
  msgctxt "ad blocking detection"
1695
  msgid "NOT ENABLED"
1696
  msgstr "NI OMOGOČENO"
1697
 
1698
+ #: includes/functions.old.php:3000 includes/functions.php:3047
1699
  msgid "Internal"
1700
  msgstr "Notranje"
1701
 
1702
+ #: includes/functions.old.php:3004 includes/functions.php:3051
1703
  msgid "Track impressions and clicks with internal tracking and statistics"
1704
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1705
 
1706
+ #: includes/functions.old.php:3009 includes/functions.php:3056
1707
  msgid "External"
1708
  msgstr "Zunanje"
1709
 
1710
+ #: includes/functions.old.php:3013 includes/functions.php:3060
1711
  msgid ""
1712
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1713
  "code installed)"
1715
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1716
  "kodo za sledenje)"
1717
 
1718
+ #: includes/functions.old.php:3018 includes/functions.php:3065
1719
  msgid "Track Pageviews"
1720
  msgstr "Sledi Ogledom Strani"
1721
 
1722
+ #: includes/functions.old.php:3024 includes/functions.php:3071
1723
  msgid "Track Pageviews by Device (as configured for viewports)"
1724
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1725
 
1726
+ #: includes/functions.old.php:3034 includes/functions.php:3081
1727
  msgid "Track for Logged in Users"
1728
  msgstr "Sledi za Prijavljene Upor."
1729
 
1730
+ #: includes/functions.old.php:3040 includes/functions.php:3087
1731
  msgid "Track impressions and clicks from logged in users"
1732
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1733
 
1734
+ #: includes/functions.old.php:3050 includes/functions.php:3097
1735
  msgid "Click Detection"
1736
  msgstr "Zaznavanje klikov"
1737
 
1738
+ #: includes/functions.old.php:3056 includes/functions.php:3103
1739
  msgid ""
1740
  "Standard method detects clicks only on banners with links, Advanced method "
1741
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1743
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1744
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1745
 
1746
+ #: includes/functions.old.php:3075 includes/functions.php:3122
1747
  msgid "Click fraud protection"
1748
  msgstr "Zaščita pred goljufijo s kliki"
1749
 
1750
+ #: includes/functions.old.php:3079 includes/functions.php:3126
1751
  msgid "Globally enable click fraud protection for selected blocks."
1752
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1753
 
1754
+ #: includes/functions.old.php:3085 includes/functions.php:3132
1755
  msgid "Protection time"
1756
  msgstr "Čas zaščite"
1757
 
1758
+ #: includes/functions.old.php:3086 includes/functions.php:3133
1759
  msgid ""
1760
  "Time period in days in which blocks with enabled click fraud protection will "
1761
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1764
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1765
  "za krajša obdobja."
1766
 
1767
+ #: includes/functions.old.php:3105 includes/functions.php:3152
1768
  msgid "Report header image"
1769
  msgstr "Slika v glavi poročila"
1770
 
1771
+ #: includes/functions.old.php:3108 includes/functions.php:3155
1772
  msgid ""
1773
  "Image or logo to be displayed in the header of the statistins report. "
1774
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1778
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1779
  "ponastavitev na privzeto sliko."
1780
 
1781
+ #: includes/functions.old.php:3109 includes/functions.php:3156 strings.php:230
1782
  msgid "Select or upload header image"
1783
  msgstr "Izberi ali naloži sliko glave"
1784
 
1785
+ #: includes/functions.old.php:3114 includes/functions.php:3161
1786
  msgid "Report header title"
1787
  msgstr "Naslov v glavi poročila"
1788
 
1789
+ #: includes/functions.old.php:3117 includes/functions.php:3164
1790
  msgid ""
1791
  "Title to be displayed in the header of the statistics report. Text or HTML "
1792
  "code, clear to reset to default text."
1794
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1795
  "pobrišite za ponastavitev na privzeto besedilo."
1796
 
1797
+ #: includes/functions.old.php:3122 includes/functions.php:3169
1798
  msgid "Report header description"
1799
  msgstr "Opis v glavi poročila"
1800
 
1801
+ #: includes/functions.old.php:3125 includes/functions.php:3172
1802
  msgid ""
1803
  "Description to be displayed in the header of the statistics report. Text or "
1804
  "HTML code, clear to reset to default text."
1806
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1807
  "pobrišite za ponastavitev na privzeto besedilo."
1808
 
1809
+ #: includes/functions.old.php:3130 includes/functions.php:3177
1810
  msgid "Report footer"
1811
  msgstr "Noga poročila"
1812
 
1813
+ #: includes/functions.old.php:3133 includes/functions.php:3180
1814
  msgid ""
1815
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1816
  "to default text."
1818
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1819
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1820
 
1821
+ #: includes/functions.old.php:3138 includes/functions.php:3185
1822
  msgid "Public report key"
1823
  msgstr "Ključ za javno poročilo"
1824
 
1825
+ #: includes/functions.old.php:3141 includes/functions.php:3188
1826
  msgid "String to generate unique report IDs. Clear to reset to default value."
1827
  msgstr ""
1828
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1829
  "privzeto vrednost."
1830
 
1831
+ #: includes/functions.old.php:3173 includes/functions.php:3220
1832
  msgid "Are you sure you want to clear all exceptions for block"
1833
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1834
 
1835
+ #: includes/functions.old.php:3174 includes/functions.php:3221
1836
+ #: settings.php:1156
1837
  msgid "Clear all exceptions for block"
1838
  msgstr "Pobriši vse izjeme za blok"
1839
 
1840
+ #: includes/functions.old.php:3181 includes/functions.php:3228
1841
  msgid "Are you sure you want to clear all exceptions?"
1842
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1843
 
1844
+ #: includes/functions.old.php:3181 includes/functions.php:3228
1845
  msgid "Clear all exceptions for all blocks"
1846
  msgstr "Pobriši vse izjeme za vse bloke"
1847
 
1848
+ #: includes/functions.old.php:3186 includes/functions.php:3233
1849
+ #: settings.php:3708 settings.php:4139
1850
  msgid "Type"
1851
  msgstr "Vrsta"
1852
 
1853
+ #: includes/functions.old.php:3204 includes/functions.php:3251
1854
  msgid "View"
1855
  msgstr "Poglej"
1856
 
1857
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1858
+ #: includes/functions.old.php:3216 includes/functions.php:3252
1859
+ #: includes/functions.php:3259 includes/functions.php:3263
1860
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1290
1861
+ #: settings.php:3468
1862
  msgid "Edit"
1863
  msgstr "Uredi"
1864
 
1865
+ #: includes/functions.old.php:3235 includes/functions.php:3282
1866
  msgid "Are you sure you want to clear all exceptions for"
1867
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1868
 
1869
+ #: includes/functions.old.php:3236 includes/functions.php:3283
1870
  msgid "Clear all exceptions for"
1871
  msgstr "Pobriši vse izjeme za"
1872
 
1873
+ #: includes/functions.old.php:3249 includes/functions.php:3296
1874
  msgid "No exceptions"
1875
  msgstr "Brez izjem"
1876
 
1877
  #. translators: %s: Ad Inserter Pro
1878
+ #: includes/functions.old.php:3260 includes/functions.php:3307
1879
  msgid "%s options for network blogs"
1880
  msgstr "%s izbire za omrežne bloge"
1881
 
1882
  #. translators: %s: Ad Inserter Pro
1883
+ #: includes/functions.old.php:3265 includes/functions.php:3312
1884
  msgid "Enable %s widgets for sub-sites"
1885
  msgstr "Omogoči %s gradnik za pod-spletišča"
1886
 
1887
+ #: includes/functions.old.php:3265 includes/functions.php:3312
1888
  msgid "Widgets"
1889
  msgstr "Gradniki"
1890
 
1891
+ #: includes/functions.old.php:3270 includes/functions.php:3317
1892
  msgid "Enable PHP code processing for sub-sites"
1893
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1894
 
1895
+ #: includes/functions.old.php:3270 includes/functions.php:3317
1896
  msgid "PHP Processing"
1897
  msgstr "PHP Procesiranje"
1898
 
1899
  #. translators: %s: Ad Inserter Pro
1900
+ #: includes/functions.old.php:3275 includes/functions.php:3322
1901
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1902
  msgstr ""
1903
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1904
 
1905
+ #: includes/functions.old.php:3275 includes/functions.php:3322
1906
  msgid "Post/Page exceptions"
1907
  msgstr "Izjeme prispevkov/strani"
1908
 
1909
  #. translators: %s: Ad Inserter Pro
1910
+ #: includes/functions.old.php:3280 includes/functions.php:3327
1911
  msgid "Enable %s settings page for sub-sites"
1912
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1913
 
1914
+ #: includes/functions.old.php:3280 includes/functions.php:3327
1915
  msgid "Settings page"
1916
  msgstr "Stran z nastavitvami"
1917
 
1918
  #. translators: %s: Ad Inserter Pro
1919
+ #: includes/functions.old.php:3285 includes/functions.php:3332
1920
  msgid "Enable %s settings of main site to be used for all blogs"
1921
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1922
 
1923
+ #: includes/functions.old.php:3285 includes/functions.php:3332
1924
  msgid "Main site settings used for all blogs"
1925
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1926
 
1927
+ #: includes/functions.old.php:3296 includes/functions.php:3343
1928
+ #: settings.php:2628
1929
  msgid "Ad Blocking Detection"
1930
  msgstr "Zaznavanje Blokiranja Oglasov"
1931
 
1932
+ #: includes/functions.old.php:3302 includes/functions.php:3349
1933
  msgid ""
1934
  "Standard method is reliable but should be used only if Advanced method does "
1935
  "not work. Advanced method recreates files used for detection with random "
1942
  "dostopna"
1943
 
1944
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1945
+ #: includes/functions.old.php:4039 includes/functions.php:3976
1946
+ #: includes/functions.php:4066 includes/functions.php:4086
1947
  msgid "AD BLOCKING"
1948
  msgstr "BLOKIRANJE OGLASOV"
1949
 
1950
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1951
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1952
+ #: includes/functions.php:3977 includes/functions.php:4017
1953
+ #: includes/functions.php:4060 includes/functions.php:4087
1954
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1955
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1956
 
1957
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1958
+ #: includes/functions.old.php:4046 includes/functions.php:3980
1959
+ #: includes/functions.php:4059 includes/functions.php:4093
1960
  msgid "NO AD BLOCKING"
1961
  msgstr "NI BLOKIRANJA OGLASOV"
1962
 
1963
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1964
+ #: includes/functions.php:4016 includes/functions.php:4023
1965
  msgid "AD BLOCKING REPLACEMENT"
1966
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1967
 
1968
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1969
+ #: includes/functions.php:4166 includes/functions.php:4375
1970
  msgid "Pageviews"
1971
  msgstr "Ogledi strani"
1972
 
1973
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1974
  msgctxt "Version"
1975
  msgid "Unknown"
1976
  msgstr "Neznana"
1977
 
1978
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1979
  msgctxt "Times"
1980
  msgid "DISPLAYED"
1981
  msgstr "PRIKAZANO"
1982
 
1983
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1984
  msgid "No version"
1985
  msgstr "Brez različice"
1986
 
1987
+ #: includes/functions.old.php:4266 includes/functions.php:4313
1988
  msgctxt "Times"
1989
  msgid "BLOCKED"
1990
  msgstr "BLOKIRANO"
1991
 
1992
+ #: includes/functions.old.php:4328 includes/functions.php:4375
1993
  msgid "Impressions"
1994
  msgstr "Prikazi"
1995
 
1996
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1997
+ #: includes/functions.old.php:4385 includes/functions.php:4376
1998
+ #: includes/functions.php:4377 includes/functions.php:4432
1999
  msgid "Clicks"
2000
  msgstr "Kliki"
2001
 
2002
+ #: includes/functions.old.php:4330 includes/functions.php:4377
2003
  msgid "events"
2004
  msgstr "dogodki"
2005
 
2006
+ #: includes/functions.old.php:4331 includes/functions.php:4378
2007
  msgid "Ad Blocking Share"
2008
  msgstr "Delež blokiranja oglasov"
2009
 
2010
  #. translators: CTR as Click Through Rate
2011
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
2012
+ #: includes/functions.php:4378 includes/functions.php:4438
2013
  msgid "CTR"
2014
  msgstr "CTR"
2015
 
2016
+ #: includes/functions.old.php:4473 includes/functions.php:4520
2017
  msgid "pageviews"
2018
  msgid_plural "pageviews"
2019
  msgstr[0] "ogled strani"
2021
  msgstr[2] "oglede strani"
2022
  msgstr[3] "ogledov strani"
2023
 
2024
+ #: includes/functions.old.php:4473 includes/functions.php:4520
2025
  msgid "impressions"
2026
  msgid_plural "impressions"
2027
  msgstr[0] "prikaz"
2029
  msgstr[2] "prikazi"
2030
  msgstr[3] "prikazov"
2031
 
2032
+ #: includes/functions.old.php:4477 includes/functions.php:4524
2033
  msgid "event"
2034
  msgid_plural "events"
2035
  msgstr[0] "dogodek"
2037
  msgstr[2] "dogodki"
2038
  msgstr[3] "dogodkov"
2039
 
2040
+ #: includes/functions.old.php:4572 includes/functions.php:4619
2041
  msgctxt "Pageviews / Impressions"
2042
  msgid "Average"
2043
  msgstr "Povprečni"
2044
 
2045
+ #: includes/functions.old.php:4593 includes/functions.php:4640
2046
  msgctxt "Ad Blocking / Clicks"
2047
  msgid "Average"
2048
  msgstr "Povprečno"
2049
 
2050
+ #: includes/functions.old.php:4617 includes/functions.php:4664
2051
  msgctxt "Ad Blocking Share / CTR"
2052
  msgid "Average"
2053
  msgstr "Povprečni"
2054
 
2055
  #. Translators: %s: Ad Inserter Pro
2056
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
2057
+ #: includes/functions.old.php:5207 includes/functions.php:4846
2058
+ #: includes/functions.php:4938 includes/functions.php:5267 strings.php:184
2059
  msgid "%s Report"
2060
  msgstr "%s Poročilo"
2061
 
2062
+ #: includes/functions.old.php:5113 includes/functions.php:5173
2063
  msgid "for last month"
2064
  msgstr "za zadnji mesec"
2065
 
2066
+ #: includes/functions.old.php:5118 includes/functions.php:5178
2067
  msgid "for this month"
2068
  msgstr "za ta mesec"
2069
 
2070
+ #: includes/functions.old.php:5123 includes/functions.php:5183
2071
  msgid "for this year"
2072
  msgstr "za to leto"
2073
 
2074
+ #: includes/functions.old.php:5128 includes/functions.php:5188
2075
  msgid "for the last 15 days"
2076
  msgstr "za zadnjih 15 dni"
2077
 
2078
+ #: includes/functions.old.php:5133 includes/functions.php:5193
2079
  msgid "for the last 30 days"
2080
  msgstr "za zadnjih 30 dni"
2081
 
2082
+ #: includes/functions.old.php:5138 includes/functions.php:5198
2083
  msgid "for the last 90 days"
2084
  msgstr "za zadnjih 90 dni"
2085
 
2086
+ #: includes/functions.old.php:5143 includes/functions.php:5203
2087
  msgid "for the last 180 days"
2088
  msgstr "za zadnjih 180 dni"
2089
 
2090
+ #: includes/functions.old.php:5148 includes/functions.php:5208
2091
  msgid "for the last 365 days"
2092
  msgstr "za zadnjih 365 dni"
2093
 
2095
  msgid "Pin list"
2096
  msgstr "Pripni seznam"
2097
 
2098
+ #. translators: %s: Ad Inserter Pro
2099
+ #: includes/functions.php:1393
2100
+ msgid "Warning: %s plugin update server is not accessible"
2101
+ msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
2102
+
2103
+ #. translators: updates are not available
2104
+ #: includes/functions.php:1395
2105
+ msgid "updates"
2106
+ msgstr "posodobitve"
2107
+
2108
+ #. translators: updates are not available
2109
+ #: includes/functions.php:1397
2110
+ msgid "are not available"
2111
+ msgstr "niso na razpolago"
2112
+
2113
  #: includes/placeholders.php:20
2114
  msgid "Custom"
2115
  msgstr "Po meri"
2134
  msgid "Placeholder"
2135
  msgstr "Polnilo"
2136
 
2137
+ #: includes/placeholders.php:363 settings.php:900 settings.php:4140
2138
  msgid "Size"
2139
  msgstr "Velikost"
2140
 
2267
  msgid "Ad Blocking Detected Message Preview"
2268
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2269
 
2270
+ #: includes/preview-adb.php:348 settings.php:2754
2271
  msgid "Message CSS"
2272
  msgstr "CSS sporočila"
2273
 
2274
+ #: includes/preview-adb.php:353 settings.php:2762
2275
  msgid "Overlay CSS"
2276
  msgstr "CSS prevleke"
2277
 
2311
  msgid "background"
2312
  msgstr "ozadje"
2313
 
2314
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1251
2315
  msgid "Alignment"
2316
  msgstr "Poravnava"
2317
 
2456
  "Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
2457
  "Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
2458
 
2459
+ #: settings.php:172 settings.php:1140
2460
  msgid ""
2461
  "Settings for individual exceptions have been updated. Please check all "
2462
  "blocks that have exceptions and and then save settings."
2468
  msgid "Online documentation"
2469
  msgstr "Spletna Dokumentacija"
2470
 
2471
+ #: settings.php:218 settings.php:736 settings.php:2150
2472
  msgid "Show AdSense ad units"
2473
  msgstr "Pokaži oglasne enote AdSense"
2474
 
2476
  msgid "Edit ads.txt file"
2477
  msgstr "Uredi datoteko ads.txt"
2478
 
2479
+ #: settings.php:226 settings.php:1083
2480
  msgid "Check theme for available positions for automatic insertion"
2481
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2482
 
2615
  msgid "General Settings"
2616
  msgstr "Splošne Nastavitve"
2617
 
2618
+ #: settings.php:684 settings.php:2481 settings.php:2548 settings.php:2734
2619
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2620
  msgstr ""
2621
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2622
 
2623
+ #: settings.php:691
2624
  msgid "Toggle tools"
2625
  msgstr "Preklopi orodja"
2626
 
2627
+ #: settings.php:699
2628
  msgid "Process PHP code in block"
2629
  msgstr "Procesiraj PHP kodo v bloku"
2630
 
2631
+ #: settings.php:706
2632
  msgid "Disable insertion of this block"
2633
  msgstr "Onemogoči vstavljanje tega bloka"
2634
 
2635
+ #: settings.php:718
2636
  msgid "Toggle code generator"
2637
  msgstr "Preklopi generator kode"
2638
 
2639
+ #: settings.php:722
2640
  msgid "Toggle rotation editor"
2641
  msgstr "Preklopi urejevalnik rotacije"
2642
 
2643
+ #: settings.php:726
2644
  msgid "Open visual HTML editor"
2645
  msgstr "Odpri vizualni HTML urejevalnik"
2646
 
2647
+ #: settings.php:745
2648
  msgid "Clear block"
2649
  msgstr "Počisti blok"
2650
 
2651
+ #: settings.php:750 settings.php:4012
2652
  msgid "Copy block"
2653
  msgstr "Kopiraj blok"
2654
 
2655
+ #: settings.php:754
2656
  msgid "Paste name"
2657
  msgstr "Prilepi ime"
2658
 
2659
+ #: settings.php:758
2660
  msgid "Paste code"
2661
  msgstr "Prilepi kodo"
2662
 
2663
+ #: settings.php:762
2664
  msgid "Paste settings"
2665
  msgstr "Prilepi nastavitve"
2666
 
2667
+ #: settings.php:766
2668
  msgid "Paste block (name, code and settings)"
2669
  msgstr "Prilepi blok (ime, kodo in nastavitve)"
2670
 
2671
+ #: settings.php:785
2672
  msgid "Rotation groups"
2673
  msgstr "Skupine za rotacijo"
2674
 
2675
+ #: settings.php:789
2676
  msgid "Remove option"
2677
  msgstr "Odstrani različico"
2678
 
2679
+ #: settings.php:793
2680
  msgid "Add option"
2681
  msgstr "Dodaj različico"
2682
 
2683
+ #: settings.php:808
2684
  msgid "Import code"
2685
  msgstr "Uvozi kodo"
2686
 
2687
+ #: settings.php:812
2688
  msgid "Generate code"
2689
  msgstr "Generiraj kodo"
2690
 
2691
+ #: settings.php:817
2692
  msgid "Banner"
2693
  msgstr "Pasica"
2694
 
2695
+ #: settings.php:828
2696
  msgid "Image"
2697
  msgstr "Slika"
2698
 
2699
+ #: settings.php:836
2700
  msgid "Link"
2701
  msgstr "Povezava"
2702
 
2703
+ #: settings.php:847
2704
  msgid "Open link in a new tab"
2705
  msgstr "Odpri povezavo v novem zavihku"
2706
 
2707
+ #: settings.php:848
2708
  msgid "Select Image"
2709
  msgstr "Izberi Sliko"
2710
 
2711
+ #: settings.php:849
2712
  msgid "Select Placeholder"
2713
  msgstr "Izberi Polnilo"
2714
 
2715
+ #: settings.php:861
2716
  msgid "Comment"
2717
  msgstr "Komentar"
2718
 
2719
+ #: settings.php:870
2720
  msgctxt "AdSense"
2721
  msgid "Publisher ID"
2722
  msgstr "ID založnika"
2723
 
2724
+ #: settings.php:879
2725
  msgctxt "AdSense"
2726
  msgid "Ad Slot ID"
2727
  msgstr "ID mesta"
2728
 
2729
+ #: settings.php:888
2730
  msgid "Ad Type"
2731
  msgstr "Vrsta"
2732
 
2733
+ #: settings.php:912
2734
  msgid "AMP Ad"
2735
  msgstr "AMP Oglas"
2736
 
2737
+ #: settings.php:929
2738
  msgid "Show ad units from your AdSense account"
2739
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
2740
 
2741
+ #: settings.php:929
2742
  msgid "AdSense ad units"
2743
  msgstr "Oglasne enote AdSense"
2744
 
2745
+ #: settings.php:946
2746
  msgctxt "AdSense"
2747
  msgid "Layout"
2748
  msgstr "Postavitev"
2749
 
2750
+ #: settings.php:955
2751
  msgctxt "AdSense"
2752
  msgid "Layout Key"
2753
  msgstr "Ključ postavitve"
2754
 
2755
+ #: settings.php:965
2756
  msgid "Full width"
2757
  msgstr "Celotna širina"
2758
 
2759
+ #: settings.php:967
2760
  msgctxt "Full width"
2761
  msgid "Enabled"
2762
  msgstr "Omogočena"
2763
 
2764
+ #: settings.php:968
2765
  msgctxt "Full width"
2766
  msgid "Disabled"
2767
  msgstr "Onemogočena"
2768
 
2769
+ #: settings.php:1049
2770
  msgid ""
2771
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2772
  "Cookie or Referer (domain)"
2774
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
2775
  "parametrov, Piškotkov ali napotiteljev (domen)"
2776
 
2777
+ #: settings.php:1049
2778
  msgid "Lists"
2779
  msgstr "Seznami"
2780
 
2781
+ #: settings.php:1050
2782
  msgid "Widget, Shortcode and PHP function call"
2783
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
2784
 
2785
+ #: settings.php:1050
2786
  msgid "Manual"
2787
  msgstr "Ročno"
2788
 
2789
+ #: settings.php:1051
2790
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2791
  msgstr ""
2792
  "Zaznavanje Naprave na strani Strežnika/Klienta (Namizni, Tablica, Telefon)"
2793
 
2794
+ #: settings.php:1051
2795
  msgid "Devices"
2796
  msgstr "Naprave"
2797
 
2798
+ #: settings.php:1052
2799
  msgid ""
2800
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2801
  "feeds), Filter, Scheduling, General tag"
2803
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
2804
  "RSS), Filter, Urnik, Splošna oznaka"
2805
 
2806
+ #: settings.php:1052
2807
  msgid "Misc"
2808
  msgstr "Razno"
2809
 
2810
+ #: settings.php:1053
2811
  msgid "Preview code and alignment"
2812
  msgstr "Predogled kode in poravnave"
2813
 
2814
+ #: settings.php:1056 settings.php:2134
2815
  msgid ""
2816
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2817
  "editor is active before saving settings."
2819
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
2820
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
2821
 
2822
+ #: settings.php:1069 settings.php:1070
 
 
 
 
2823
  msgid "Enable insertion on posts"
2824
  msgstr "Omogoči vstavljanje na prispevkih"
2825
 
2826
+ #: settings.php:1070 settings.php:3280
2827
  msgid "Posts"
2828
  msgstr "Prispevki"
2829
 
2830
+ #: settings.php:1074 settings.php:1075
2831
  msgid ""
2832
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2833
  "page or theme homepage (available positions may depend on hooks used by the "
2837
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2838
  "lahko odvisni od ročic, ki jih tema uporablja)"
2839
 
2840
+ #: settings.php:1075 settings.php:3282
2841
  msgid "Homepage"
2842
  msgstr "Domača stran"
2843
 
2844
+ #: settings.php:1079 settings.php:1080
2845
  msgid "Enable insertion on category blog pages (including sub-pages)"
2846
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2847
 
2848
+ #: settings.php:1080 settings.php:3283
2849
  msgid "Category pages"
2850
  msgstr "Strani kategorij"
2851
 
2852
+ #: settings.php:1090 settings.php:1091
2853
  msgid "Enable insertion on static pages"
2854
  msgstr "Omogoči vstavljanje na statičnih straneh"
2855
 
2856
+ #: settings.php:1091 settings.php:3281
2857
  msgid "Static pages"
2858
  msgstr "Statične strani"
2859
 
2860
+ #: settings.php:1095 settings.php:1096
2861
  msgid "Enable insertion on search blog pages"
2862
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2863
 
2864
+ #: settings.php:1096 settings.php:3285
2865
  msgid "Search pages"
2866
  msgstr "Iskalne strani"
2867
 
2868
+ #: settings.php:1100 settings.php:1101
2869
  msgid "Enable insertion on tag or archive blog pages"
2870
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
2871
 
2872
+ #: settings.php:1104
2873
  msgid "Toggle settings for default insertion and list of individual exceptions"
2874
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
2875
 
2876
+ #: settings.php:1116
2877
  msgid ""
2878
  "Enable individual post/page exceptions for insertion of this block. They can "
2879
  "be configured on the individual post/page editor page (in the settings below "
2883
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
2884
  "nastavitvah pod urejevalnikom)."
2885
 
2886
+ #: settings.php:1117
2887
  msgid ""
2888
  "Enable individual post/page exceptions for insertion of this block. When "
2889
  "enabled they can be configured on the individual post/page editor page (in "
2893
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
2894
  "strani (v nastavitvah pod urejevalnikom)."
2895
 
2896
+ #: settings.php:1117
2897
  msgid "Use exceptions for individual posts or pages to change insertion"
2898
  msgstr ""
2899
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
2900
 
2901
  #. Translators: Enabled means...
2902
+ #: settings.php:1125
2903
  msgid ""
2904
  "means the insertion for this block is enabled by default and disabled for "
2905
  "exceptions."
2908
  "izjeme."
2909
 
2910
  #. Translators: Disabled means...
2911
+ #: settings.php:1126
2912
  msgid ""
2913
  "means the insertion for this block is disabled by default and enabled for "
2914
  "exceptions."
2916
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
2917
  "izjeme."
2918
 
2919
+ #: settings.php:1127
2920
  msgid ""
2921
  "When individual post/page exceptions are enabled they can be configured on "
2922
  "the individual post/page editor page (in the settings below the editor)."
2925
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
2926
  "urejevalnikom)."
2927
 
2928
+ #: settings.php:1135
2929
  msgid ""
2930
  "No exception for post or static page defined. Block will not be inserted."
2931
  msgstr ""
2932
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
2933
 
2934
+ #: settings.php:1153
2935
  msgctxt "post"
2936
  msgid "Type"
2937
  msgstr "Vrsta"
2938
 
2939
  #. translators: %d: block number
2940
+ #: settings.php:1155
2941
  msgid "Are you sure you want to clear all exceptions for block %d?"
2942
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
2943
 
2944
+ #: settings.php:1182 settings.php:1330 settings.php:1926
2945
  msgid "Insertion"
2946
  msgstr "Vstavljanje"
2947
 
2948
+ #: settings.php:1220
2949
  msgid ""
2950
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2951
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2961
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
2962
  "število pomeni štetje z nasprotne smeri"
2963
 
2964
+ #: settings.php:1221
2965
  msgid ""
2966
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2967
  "means every N images, empty means all images, 0 means random image, value "
2976
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
2977
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
2978
 
2979
+ #: settings.php:1234
2980
  msgid ""
2981
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2982
  "numbers, %N means every N excerpts, empty means all excerpts"
2985
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
2986
  "izvlečki"
2987
 
2988
+ #: settings.php:1235
2989
  msgid ""
2990
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2991
  "numbers, %N means every N posts, empty means all posts"
2994
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
2995
  "prispevki"
2996
 
2997
+ #: settings.php:1236
2998
  msgid ""
2999
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3000
  "numbers, %N means every N comments, empty means all comments"
3003
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3004
  "vsi komentarji"
3005
 
3006
+ #: settings.php:1243
3007
  msgid "Toggle paragraph counting settings"
3008
  msgstr "Preklopi nastavitve za štetje odstavkov"
3009
 
3010
+ #: settings.php:1244
3011
  msgid "Toggle paragraph clearance settings"
3012
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3013
 
3014
+ #: settings.php:1247
3015
  msgid "Toggle insertion filter settings"
3016
  msgstr "Preklopi nastavitve filtra vstavljanja"
3017
 
3018
+ #: settings.php:1265
3019
  msgid "Toggle insertion and alignment icons"
3020
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3021
 
3022
+ #: settings.php:1279
3023
  msgid "Custom CSS code for the wrapping div"
3024
  msgstr "CSS koda po meri za div za ovijanje"
3025
 
3026
+ #: settings.php:1282 settings.php:1283 settings.php:1284 settings.php:1285
3027
+ #: settings.php:1286 settings.php:1287
3028
  msgid "CSS code for the wrapping div, click to edit"
3029
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3030
 
3031
+ #: settings.php:1300
3032
  msgid "HTML element"
3033
  msgstr "HTML element"
3034
 
3035
+ #: settings.php:1313
3036
  msgid "HTML element selector or comma separated list of selectors"
3037
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3038
 
3039
+ #: settings.php:1319 settings.php:2639
3040
  msgid "Action"
3041
  msgstr "Akcija"
3042
 
3043
+ #: settings.php:1331
3044
  msgid ""
3045
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3046
  "Server-side insertion inserts block when the page is generated but needs "
3050
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3051
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3052
 
3053
+ #: settings.php:1341
3054
  msgid "JavaScript code position"
3055
  msgstr "Položaj JavaScript kode"
3056
 
3057
+ #: settings.php:1342
3058
  msgid ""
3059
  "Page position where the JavaScript code for client-side insertion will be "
3060
  "inserted. Should be after the HTML element if not waiting for DOM ready."
3063
  "strani klienta. Biti mora za HTML elementom, če se ne čaka na pripravljen "
3064
  "DOM."
3065
 
3066
+ #: settings.php:1357
3067
  msgid "Count"
3068
  msgstr "Štej"
3069
 
3070
+ #: settings.php:1363
3071
  msgid "paragraphs with tags"
3072
  msgstr "odstavke z značkami"
3073
 
3074
+ #: settings.php:1369
3075
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3076
  msgstr ""
3077
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3078
 
3079
+ #: settings.php:1378
3080
  msgid "that have between"
3081
  msgstr "ki imajo med"
3082
 
3083
+ #: settings.php:1384
3084
  msgid "Minimum number of paragraph words, leave empty for no limit"
3085
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3086
 
3087
+ #: settings.php:1393
3088
  msgid "Maximum number of paragraph words, leave empty for no limit"
3089
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3090
 
3091
+ #: settings.php:1396
3092
  msgid "words"
3093
  msgstr "besed"
3094
 
3095
+ #: settings.php:1411 settings.php:1469 settings.php:1539 settings.php:1565
3096
  msgid "Comma separated texts"
3097
  msgstr "Z vejico ločena besedila"
3098
 
3099
+ #: settings.php:1424
3100
  msgid ""
3101
  "Count also paragraphs inside these elements - defined on general plugin "
3102
  "settings page - tab [*] / tab General"
3105
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3106
 
3107
  #. Translators: %s: HTML tags
3108
+ #: settings.php:1429
3109
  msgid "Count inside %s elements"
3110
  msgstr "Štej znotraj elementov %s"
3111
 
3112
  #. translators: inside [HTML tags] elements that contain
3113
+ #: settings.php:1441
3114
  msgid "inside"
3115
  msgstr "znotraj"
3116
 
3117
+ #: settings.php:1447
3118
  msgid "Comma separated HTML tag names of container elements"
3119
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3120
 
3121
  #. translators: inside [HTML tags] elements that contain
3122
+ #: settings.php:1456
3123
  msgid "elements that"
3124
  msgstr "elementov, ki"
3125
 
3126
+ #: settings.php:1482 settings.php:2049
3127
+ msgid "Post/Static page must have between"
3128
+ msgstr "Prispevek/Statična stran mora imeti med"
3129
+
3130
+ #: settings.php:1488
3131
+ msgid "Minimum number of paragraphs, leave empty for no limit"
3132
+ msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3133
+
3134
+ #: settings.php:1497
3135
+ msgid "Maximum number of paragraphs, leave empty for no limit"
3136
+ msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3137
+
3138
+ #. Translators: Post/Static page must have between X and Y paragraphs
3139
+ #: settings.php:1500
3140
+ msgid "paragraph"
3141
+ msgid_plural "paragraphs"
3142
+ msgstr[0] "odstavek"
3143
+ msgstr[1] "odstavka"
3144
+ msgstr[2] "odstavke"
3145
+ msgstr[3] "odstavkov"
3146
 
3147
+ #: settings.php:1508
3148
  msgid "Minimum number of words in paragraphs above"
3149
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3150
 
3151
+ #: settings.php:1514
3152
  msgid ""
3153
  "Used only with automatic insertion After paragraph and empty paragraph "
3154
  "numbers"
3156
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3157
  "številkami odstavkov"
3158
 
3159
+ #: settings.php:1524 settings.php:1550
3160
  msgid "In"
3161
  msgstr "V"
3162
 
3163
+ #: settings.php:1530
3164
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3165
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3166
 
3167
+ #: settings.php:1533
3168
  msgid "paragraphs above avoid"
3169
  msgstr "odstavkih zgoraj se izogni"
3170
 
3171
+ #: settings.php:1556
3172
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3173
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3174
 
3175
+ #: settings.php:1559
3176
  msgid "paragraphs below avoid"
3177
  msgstr "odstavkih spodaj se izogni"
3178
 
3179
+ #: settings.php:1575
3180
  msgid "If text is found"
3181
  msgstr "Če je besedilo najdeno"
3182
 
3183
+ #: settings.php:1582
3184
  msgid "check up to"
3185
  msgstr "preveri do"
3186
 
3187
+ #: settings.php:1590
3188
  msgctxt "check up to"
3189
  msgid "paragraphs"
3190
  msgstr "odstavkov"
3191
 
3192
+ #: settings.php:1606
3193
  msgid "Categories"
3194
  msgstr "Kategorije"
3195
 
3196
+ #: settings.php:1609
3197
  msgid "Toggle category editor"
3198
  msgstr "Preklopi urejevalnik kategorij"
3199
 
3200
+ #: settings.php:1612
3201
  msgid "Comma separated category slugs"
3202
  msgstr "Z vejico ločeni ključi kategorij"
3203
 
3204
+ #: settings.php:1616
3205
  msgid "Blacklist categories"
3206
  msgstr "Črni seznam kategorij"
3207
 
3208
+ #: settings.php:1620
3209
  msgid "Whitelist categories"
3210
  msgstr "Beli seznam kategorij"
3211
 
3212
+ #: settings.php:1632
3213
  msgid "Tags"
3214
  msgstr "Oznake"
3215
 
3216
+ #: settings.php:1635
3217
  msgid "Toggle tag editor"
3218
  msgstr "Preklopi urejevalnik oznak"
3219
 
3220
+ #: settings.php:1638
3221
  msgid "Comma separated tag slugs"
3222
  msgstr "Z vejico ločeni ključi oznak"
3223
 
3224
+ #: settings.php:1642
3225
  msgid "Blacklist tags"
3226
  msgstr "Črni seznam oznak"
3227
 
3228
+ #: settings.php:1646
3229
  msgid "Whitelist tags"
3230
  msgstr "Beli seznam oznak"
3231
 
3232
+ #: settings.php:1658
3233
  msgid "Taxonomies"
3234
  msgstr "Taksonomije"
3235
 
3236
+ #: settings.php:1661
3237
  msgid "Toggle taxonomy editor"
3238
  msgstr "Preklopi urejevalnik taksonomij"
3239
 
3240
+ #: settings.php:1664
3241
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3242
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3243
 
3244
+ #: settings.php:1668
3245
  msgid "Blacklist taxonomies"
3246
  msgstr "Črni seznam taksonomij"
3247
 
3248
+ #: settings.php:1672
3249
  msgid "Whitelist taxonomies"
3250
  msgstr "Beli seznam taksonomij"
3251
 
3252
+ #: settings.php:1684
3253
  msgid "Post IDs"
3254
  msgstr "ID-ji prispevkov"
3255
 
3256
+ #: settings.php:1687
3257
  msgid "Toggle post/page ID editor"
3258
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3259
 
3260
+ #: settings.php:1690
3261
  msgid "Comma separated post/page IDs"
3262
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3263
 
3264
+ #: settings.php:1694
3265
  msgid "Blacklist IDs"
3266
  msgstr "Črni seznam ID-jev"
3267
 
3268
+ #: settings.php:1698
3269
  msgid "Whitelist IDs"
3270
  msgstr "Beli seznam ID-jev"
3271
 
3272
+ #: settings.php:1710
3273
  msgid "Urls"
3274
  msgstr "Url-ji"
3275
 
3276
+ #: settings.php:1713
3277
  msgid "Toggle url editor"
3278
  msgstr "Preklopi urejevalnik url-jev"
3279
 
3280
+ #: settings.php:1716
3281
  msgid ""
3282
  "Comma separated urls (page addresses) starting with / after domain name (e."
3283
  "g. /permalink-url, use only when you need to taget a specific url not "
3289
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3290
  "začetek*. *url-vzorec*, *url-konec)"
3291
 
3292
+ #: settings.php:1720
3293
  msgid "Blacklist urls"
3294
  msgstr "Črni seznam url-jev"
3295
 
3296
+ #: settings.php:1724
3297
  msgid "Whitelist urls"
3298
  msgstr "Beli seznam url-jev"
3299
 
3300
+ #: settings.php:1735
3301
  msgid "Url parameters"
3302
  msgstr "Url parametri"
3303
 
3304
+ #: settings.php:1739
3305
  msgid "Toggle url parameter and cookie editor"
3306
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3307
 
3308
+ #: settings.php:1742
3309
  msgid ""
3310
  "Comma separated url query parameters or cookies with optional values (use "
3311
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
3314
  "vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
3315
  "'piškotek=vrednost')"
3316
 
3317
+ #: settings.php:1746
3318
  msgid "Blacklist url parameters"
3319
  msgstr "Črni seznam url parametrov"
3320
 
3321
+ #: settings.php:1750
3322
  msgid "Whitelist url parameters"
3323
  msgstr "Beli seznam url parametrov"
3324
 
3325
+ #: settings.php:1761
3326
  msgid "Referrers"
3327
  msgstr "Napotitelji"
3328
 
3329
+ #: settings.php:1764
3330
  msgid "Toggle referer editor"
3331
  msgstr "Preklopi urejevalnik napotiteljev"
3332
 
3333
+ #: settings.php:1767
3334
  msgid ""
3335
  "Comma separated domains, use # for no referrer, you can also use partial "
3336
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3338
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3339
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3340
 
3341
+ #: settings.php:1771
3342
  msgid "Blacklist referers"
3343
  msgstr "Črni seznam napotiteljev"
3344
 
3345
+ #: settings.php:1775
3346
  msgid "Whitelist referers"
3347
  msgstr "Beli seznam napotiteljev"
3348
 
3349
+ #: settings.php:1795
3350
  msgid "Enable widget for this block"
3351
  msgstr "Omogočite gradnik za ta blok"
3352
 
3353
+ #: settings.php:1807
3354
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3355
  msgstr ""
3356
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3357
 
3358
+ #: settings.php:1808 settings.php:4068
3359
  msgid "Shortcode"
3360
  msgstr "Kratka koda"
3361
 
3362
+ #: settings.php:1823
3363
  msgid ""
3364
  "Enable PHP function call to insert this block at any position in theme file. "
3365
  "If function is disabled for block it will return empty string."
3368
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3369
  "prazen niz."
3370
 
3371
+ #: settings.php:1824
3372
  msgid "PHP function"
3373
  msgstr "PHP funkcija"
3374
 
3375
+ #: settings.php:1839
3376
  msgid "Client-side device detection"
3377
  msgstr "Zaznavanje naprave na strani klienta"
3378
 
3379
+ #: settings.php:1840
3380
  msgid "Server-side device detection"
3381
  msgstr "Zaznavanje naprave na strani strežnika"
3382
 
3383
+ #: settings.php:1847
3384
  msgid "Use client-side detection to"
3385
  msgstr "Uporabi zaznavanje na strani klienta in"
3386
 
3387
+ #: settings.php:1849
3388
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3389
  msgstr ""
3390
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3391
 
3392
  #. Translators: only on (the following devices): viewport names (devices)
3393
  #. listed
3394
+ #: settings.php:1854
3395
  msgid "only on"
3396
  msgstr "samo na"
3397
 
3398
+ #: settings.php:1882
3399
  msgid "Device min width %s px"
3400
  msgstr "Najmanjša širina naprave %s px"
3401
 
3402
+ #: settings.php:1908
3403
  msgid "Use server-side detection to insert block only for"
3404
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3405
 
3406
+ #: settings.php:1927
3407
  msgid "Filter"
3408
  msgstr "Filter"
3409
 
3410
+ #: settings.php:1928
3411
  msgid "Word Count"
3412
  msgstr "Število Besed"
3413
 
3414
+ #: settings.php:1929 settings.php:4058
3415
  msgid "Scheduling"
3416
  msgstr "Urnik"
3417
 
3418
+ #: settings.php:1930
3419
  msgid "Display"
3420
  msgstr "Prikaz"
3421
 
3422
+ #: settings.php:1932 settings.php:2176
3423
  msgid "General"
3424
  msgstr "Splošno"
3425
 
3426
+ #: settings.php:1944
3427
  msgid "Old settings for AMP pages detected"
3428
  msgstr "Zaznane stare nastavitve za AMP strani"
3429
 
3430
+ #: settings.php:1944
3431
  msgid ""
3432
  "To insert different codes on normal and AMP pages separate them with "
3433
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3438
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3439
  "separatorja)."
3440
 
3441
+ #: settings.php:1944
3442
  msgid "AMP pages"
3443
  msgstr "AMP strani"
3444
 
3445
+ #: settings.php:1949
3446
  msgid "Enable insertion for Ajax requests"
3447
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3448
 
3449
+ #: settings.php:1949
3450
  msgid "Ajax requests"
3451
  msgstr "Ajax zahteve"
3452
 
3453
+ #: settings.php:1954
3454
  msgid "Enable insertion in RSS feeds"
3455
  msgstr "Omogoči vstavljanje v RSS virih"
3456
 
3457
+ #: settings.php:1954
3458
  msgid "RSS Feed"
3459
  msgstr "RSS Vir"
3460
 
3461
+ #: settings.php:1959
3462
  msgid "Enable insertion on page for Error 404: Page not found"
3463
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3464
 
3465
+ #: settings.php:1959
3466
  msgid "Error 404 page"
3467
  msgstr "Stran napake 404"
3468
 
3469
+ #: settings.php:1971
3470
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3471
  msgstr ""
3472
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3473
 
3474
+ #: settings.php:1972
3475
  msgid "insertions"
3476
  msgstr "vstavljanj"
3477
 
3478
+ #: settings.php:1974
3479
  msgid ""
3480
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3481
  "General)"
3483
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3484
  "zavihek Splošno)"
3485
 
3486
+ #: settings.php:1977 settings.php:2345
3487
  msgid "Max blocks per page"
3488
  msgstr "Največ blokov na stran"
3489
 
3490
+ #: settings.php:1989
3491
  msgid "Insert for"
3492
  msgstr "Vstavi za"
3493
 
3494
+ #: settings.php:1997
3495
  msgid ""
3496
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3497
  "currently active). Might speed up insertion on content pages when "
3501
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3502
  "filter the_content večkrat klican."
3503
 
3504
+ #: settings.php:2000
3505
  msgid "Insert only in the loop"
3506
  msgstr "Vstavi samo v zanki"
3507
 
3508
+ #: settings.php:2006
3509
  msgid ""
3510
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3511
  msgstr ""
3512
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3513
  "Rocket"
3514
 
3515
+ #: settings.php:2006
3516
  msgid "Disable caching"
3517
  msgstr "Onemogoči predpomnjenje"
3518
 
3519
+ #: settings.php:2018
3520
  msgid "Filter insertions"
3521
  msgstr "Filtriraj vstavljanja"
3522
 
3523
+ #: settings.php:2021
3524
  msgid ""
3525
  "Filter multiple insertions by specifying wanted insertions for this block - "
3526
  "single number, comma separated numbers or %N for every N insertions - empty "
3532
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3533
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3534
 
3535
+ #: settings.php:2024
3536
  msgid "using"
3537
  msgstr "z uporabo"
3538
 
3539
+ #: settings.php:2043
3540
  msgid "Checked means specified calls are unwanted"
3541
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3542
 
3543
+ #: settings.php:2043
3544
  msgid "Invert filter"
3545
  msgstr "Obrni filter"
3546
 
3547
+ #: settings.php:2050
 
 
 
 
3548
  msgid "Minimum number of post/static page words, leave empty for no limit"
3549
  msgstr ""
3550
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3551
  "omejitev"
3552
 
3553
+ #: settings.php:2052
3554
  msgid "Maximum number of post/static page words, leave empty for no limit"
3555
  msgstr ""
3556
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3557
  "omejitev"
3558
 
3559
+ #: settings.php:2065
3560
  msgid "days after publishing"
3561
  msgstr "dni po objavi"
3562
 
3563
+ #: settings.php:2067
3564
  msgid "Not available"
3565
  msgstr "Ni na razpolago"
3566
 
3567
+ #: settings.php:2080 settings.php:2337
3568
  msgid "Ad label"
3569
  msgstr "Oznaka oglasa"
3570
 
3571
+ #: settings.php:2100
3572
  msgid "General tag"
3573
  msgstr "Splošna oznaka"
3574
 
3575
+ #: settings.php:2104
3576
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3577
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3578
 
3579
  #. translators: %s: HTML tags
3580
+ #: settings.php:2113
3581
  msgid ""
3582
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3583
  "side device detection!"
3585
  "%s OPOZORILO: slog %s Brez Ovijanja %s nima kode za ovijanje , ki je "
3586
  "potrebna za zaznavanje naprave na strani klienta!"
3587
 
3588
+ #: settings.php:2125
3589
  msgid "Settings"
3590
  msgstr "Nastavitve"
3591
 
3592
+ #: settings.php:2128
3593
  msgid "Settings timestamp"
3594
  msgstr "Časovni žig nastavitev"
3595
 
3596
+ #: settings.php:2141
3597
  msgid "Are you sure you want to reset all settings?"
3598
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
3599
 
3600
+ #: settings.php:2141
3601
  msgid "Reset All Settings"
3602
  msgstr "Ponastavi Vse Nastavitve"
3603
 
3604
+ #: settings.php:2177
3605
  msgid "Viewports"
3606
  msgstr "Pogledi"
3607
 
3608
+ #: settings.php:2178
3609
  msgid "Hooks"
3610
  msgstr "Ročice"
3611
 
3612
+ #: settings.php:2179
3613
  msgid "Header"
3614
  msgstr "Glava"
3615
 
3616
+ #: settings.php:2180 strings.php:30
3617
  msgid "Footer"
3618
  msgstr "Noga"
3619
 
3620
+ #: settings.php:2185
3621
  msgid "Debugging"
3622
  msgstr "Razhroščevanje"
3623
 
3624
+ #: settings.php:2195
3625
  msgid "Plugin priority"
3626
  msgstr "Prednost vtičnika"
3627
 
3628
+ #: settings.php:2203
3629
  msgid "Output buffering"
3630
  msgstr "Predpomnjenje izhoda"
3631
 
3632
+ #: settings.php:2206
3633
  msgid "Needed for position Above header but may not work with all themes"
3634
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3635
 
3636
+ #: settings.php:2214
3637
  msgid "Syntax highlighting theme"
3638
  msgstr "Tema za poudarjanje sintakse"
3639
 
3640
+ #: settings.php:2221
3641
  msgctxt "no syntax highlighting themes"
3642
  msgid "None"
3643
  msgstr "Brez"
3644
 
3645
+ #: settings.php:2222
3646
  msgid "No Syntax Highlighting"
3647
  msgstr "Brez Poudarjanja Sintakse"
3648
 
3649
+ #: settings.php:2224
3650
  msgctxt "syntax highlighting themes"
3651
  msgid "Light"
3652
  msgstr "Svetle"
3653
 
3654
+ #: settings.php:2239
3655
  msgctxt "syntax highlighting themes"
3656
  msgid "Dark"
3657
  msgstr "Temne"
3658
 
3659
+ #: settings.php:2265
3660
  msgid "Min. user role for ind. exceptions editing"
3661
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3662
 
3663
+ #: settings.php:2275
3664
  msgid "Disable caching for logged in administrators"
3665
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3666
 
3667
+ #: settings.php:2278
3668
  msgid ""
3669
  "Enabled means that logged in administrators will see non-cached (live) pages "
3670
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3672
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3673
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3674
 
3675
+ #: settings.php:2286
3676
  msgid "Sticky widget mode"
3677
  msgstr "Način za lepljive gradnike"
3678
 
3679
+ #: settings.php:2289
3680
  msgid ""
3681
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3682
  "mode works with most themes but may reload ads on page load."
3685
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3686
  "nalaganju strani."
3687
 
3688
+ #: settings.php:2297
3689
  msgid "Sticky widget top margin"
3690
  msgstr "Zgornji rob za lepljiv gradnik"
3691
 
3692
+ #: settings.php:2305
3693
  msgid "Dynamic blocks"
3694
  msgstr "Dinamični bloki"
3695
 
3696
+ #: settings.php:2318
3697
  msgid "Functions for paragraph counting"
3698
  msgstr "Funkcije za štetje odstavkov"
3699
 
3700
+ #: settings.php:2321
3701
  msgid ""
3702
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3703
  "functions if paragraphs are not counted properly on non-english pages."
3706
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3707
  "šteti."
3708
 
3709
+ #: settings.php:2329
3710
  msgid "No paragraph counting inside"
3711
  msgstr "Ni štetja odstavkov znotraj"
3712
 
3713
+ #: settings.php:2340
3714
  msgid "Label text or HTML code"
3715
  msgstr "Besedilo oznake ali HTML koda"
3716
 
3717
+ #: settings.php:2348
3718
  msgid ""
3719
  "Maximum number of inserted blocks per page. You need to enable Max page "
3720
  "insertions (button Misc / tab Insertion) to count block for this limit."
3723
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3724
  "omejitev."
3725
 
3726
+ #: settings.php:2362
3727
  msgid "Plugin usage tracking"
3728
  msgstr "Sledenje uporabe vtičnika"
3729
 
3730
  #. translators: %s: Ad Inserter
3731
+ #: settings.php:2365
3732
  msgid ""
3733
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3734
  "Only information regarding the WordPress environment and %s usage is "
3738
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3739
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3740
 
3741
+ #: settings.php:2383
3742
  msgid "CSS class name for the wrapping div"
3743
  msgstr "Ime CSS razreda za div za ovijanje"
3744
 
3745
+ #: settings.php:2383
3746
  msgid "Block class name"
3747
  msgstr "Ime razreda za blok"
3748
 
3749
+ #: settings.php:2387
3750
  msgid "Include general plugin block class"
3751
  msgstr "Vključi splošni razred vtičnika za blok"
3752
 
3753
+ #: settings.php:2387
3754
  msgid "Block class"
3755
  msgstr "Razred bloka"
3756
 
3757
+ #: settings.php:2392
3758
  msgid "Include block number class"
3759
  msgstr "Vključi razred številke bloka"
3760
 
3761
+ #: settings.php:2392
3762
  msgid "Block number class"
3763
  msgstr "Razred številke bloka"
3764
 
3765
+ #: settings.php:2397
3766
  msgid ""
3767
  "Instead of alignment classes generate inline alignment styles for blocks"
3768
  msgstr ""
3769
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3770
 
3771
+ #: settings.php:2397
3772
  msgid "Inline styles"
3773
  msgstr "Medvrstični slogi"
3774
 
3775
+ #: settings.php:2403
3776
  msgid "Preview of the block wrapping code"
3777
  msgstr "Predogled kode za ovijanje blokov"
3778
 
3779
+ #: settings.php:2404
3780
  msgid "Wrapping div"
3781
  msgstr "div za ovijanje"
3782
 
3783
+ #: settings.php:2405 settings.php:2845
3784
  msgid "BLOCK CODE"
3785
  msgstr "KODA BLOKA"
3786
 
3787
+ #: settings.php:2413
3788
  msgid "Viewport Settings used for client-side device detection"
3789
  msgstr ""
3790
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3791
 
3792
  #. Translators: %d: viewport number
3793
+ #: settings.php:2421
3794
  msgid "Viewport %d name"
3795
  msgstr "Ime pogleda %d"
3796
 
3797
+ #: settings.php:2424
3798
  msgid "min width"
3799
  msgstr "najmanjša širina"
3800
 
3801
+ #: settings.php:2435
3802
  msgid "Custom Hooks"
3803
  msgstr "Ročice Po Meri"
3804
 
3805
+ #: settings.php:2447 settings.php:2450
3806
  msgid "Enable hook"
3807
  msgstr "Omogoči ročico"
3808
 
3809
  #. translators: %d: hook number
3810
+ #: settings.php:2450
3811
  msgid "Hook %d name"
3812
  msgstr "Ime ročice %d"
3813
 
3814
+ #: settings.php:2453
3815
  msgid "Hook name for automatic insertion selection"
3816
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3817
 
3818
+ #: settings.php:2456
3819
  msgid "action"
3820
  msgstr "akcija"
3821
 
3822
+ #: settings.php:2459
3823
  msgid "Action name as used in the do_action () function"
3824
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3825
 
3826
+ #: settings.php:2462
3827
  msgid "priority"
3828
  msgstr "prednost"
3829
 
3830
+ #: settings.php:2465
3831
  msgid "Priority for the hook (default is 10)"
3832
  msgstr "Prednost za ročico (privzeta je 10)"
3833
 
3834
+ #: settings.php:2486
3835
  msgid "Enable insertion of this code into HTML page header"
3836
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3837
 
3838
+ #: settings.php:2490 settings.php:2557 settings.php:2739
3839
  msgid "Process PHP code"
3840
  msgstr "Procesiraj PHP kodo"
3841
 
3842
+ #: settings.php:2494
3843
  msgid "HTML Page Header Code"
3844
  msgstr "Koda v Glavi HTML Strani"
3845
 
3846
+ #: settings.php:2502
3847
  msgid "Code in the %s section of the HTML page"
3848
  msgstr "Koda v %s delu HTML strani"
3849
 
3850
+ #: settings.php:2503
3851
  msgctxt "code in the header"
3852
  msgid "NOT ENABLED"
3853
  msgstr "NI OMOGOČENA"
3854
 
3855
+ #: settings.php:2520 settings.php:2588
3856
  msgid "Use server-side detection to insert code only for"
3857
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3858
 
3859
+ #: settings.php:2535
3860
  msgid ""
3861
  "Enable insertion of this code into HTML page header on page for Error 404: "
3862
  "Page not found"
3864
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3865
  "obstaja"
3866
 
3867
+ #: settings.php:2535 settings.php:2603
3868
  msgid "Insert on Error 404 page"
3869
  msgstr "Vstavi na strani Napake 404"
3870
 
3871
+ #: settings.php:2553
3872
  msgid "Enable insertion of this code into HTML page footer"
3873
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3874
 
3875
+ #: settings.php:2561
3876
  msgid "HTML Page Footer Code"
3877
  msgstr "Koda v Nogi HTML Strani"
3878
 
3879
  #. translators: %s: HTML tags
3880
+ #: settings.php:2569
3881
  msgid "Code before the %s tag of the the HTML page"
3882
  msgstr "Koda pred %s značko HTML strani"
3883
 
3884
+ #: settings.php:2570
3885
  msgctxt "code in the footer"
3886
  msgid "NOT ENABLED"
3887
  msgstr "NI OMOGOČENA"
3888
 
3889
+ #: settings.php:2603
3890
  msgid ""
3891
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3892
  "Page not found"
3894
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3895
  "Stran ne obstaja"
3896
 
3897
+ #: settings.php:2619
3898
  msgid "Code for ad blocking detection inserted. Click for details."
3899
  msgstr ""
3900
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3901
 
3902
+ #: settings.php:2624
3903
  msgid "Enable detection of ad blocking"
3904
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3905
 
3906
+ #: settings.php:2642
3907
  msgid "Global action when ad blocking is detected"
3908
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3909
 
3910
+ #: settings.php:2648
3911
  msgid "No action for"
3912
  msgstr "Ni akcije za"
3913
 
3914
+ #: settings.php:2649
3915
  msgid "Exceptions for global action when ad blocking is detected."
3916
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3917
 
3918
+ #: settings.php:2659
3919
  msgid "Delay Action"
3920
  msgstr "Zakasni Akcijo"
3921
 
3922
+ #: settings.php:2662
3923
  msgid ""
3924
  "Number of page views to delay action when ad blocking is detected. Leave "
3925
  "empty for no delay (action fires on first page view). Sets cookie."
3928
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3929
  "strani). Nastavi piškotek."
3930
 
3931
+ #: settings.php:2662
3932
  msgctxt "Delay Action for x "
3933
  msgid "page views"
3934
  msgstr "ogledov strani"
3935
 
3936
+ #: settings.php:2667
3937
  msgid "No Action Period"
3938
  msgstr "Obdobje Brez Akcije"
3939
 
3940
+ #: settings.php:2670
3941
  msgid ""
3942
  "Number of days to supress action when ad blocking is detected. Leave empty "
3943
  "for no no-action period (action fires always after defined page view delay). "
3947
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3948
  "strani). Nastavi piškotek."
3949
 
3950
+ #: settings.php:2670
3951
  msgctxt "no action period"
3952
  msgid "days"
3953
  msgstr "dni"
3954
 
3955
+ #: settings.php:2675
3956
  msgid "Custom Selectors"
3957
  msgstr "Selektorji Po Meri"
3958
 
3959
+ #: settings.php:2678
3960
  msgid ""
3961
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3962
  "blocking detection. Invisible element or element with zero height means ad "
3966
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3967
  "pomeni prisotnost blokiranja oglasov."
3968
 
3969
+ #: settings.php:2690
3970
  msgid "Redirection Page"
3971
  msgstr "Stran za Preusmeritev"
3972
 
3973
+ #: settings.php:2702
3974
  msgid "Custom Url"
3975
  msgstr "Url Po Meri"
3976
 
3977
+ #: settings.php:2707
3978
  msgid ""
3979
  "Static page for redirection when ad blocking is detected. For other pages "
3980
  "select Custom url and set it below."
3982
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3983
  "strani izberite Url Po Meri in ga nastavite spodaj."
3984
 
3985
+ #: settings.php:2716
3986
  msgid "Custom Redirection Url"
3987
  msgstr "Url za Preusmeritev Po Meri"
3988
 
3989
+ #: settings.php:2728
3990
  msgid "Message HTML code"
3991
  msgstr "HTML koda sporočila"
3992
 
3993
+ #: settings.php:2741
3994
  msgid "Preview message when ad blocking is detected"
3995
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3996
 
3997
+ #: settings.php:2770
3998
  msgid "Prevent visitors from closing the warning message"
3999
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4000
 
4001
+ #: settings.php:2770
4002
  msgid "Undismissible Message"
4003
  msgstr "Neodstranljivo Sporočilo"
4004
 
4005
+ #: settings.php:2776
4006
  msgid "Not undismissible for"
4007
  msgstr "Ni neodstranljivo za"
4008
 
4009
+ #: settings.php:2777
4010
  msgid "Users which can close the warning message."
4011
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4012
 
4013
+ #: settings.php:2791
4014
  msgid ""
4015
  "Force showing admin toolbar for administrators when viewing site. Enable "
4016
  "this option when you are logged in as admin and you don't see admin toolbar."
4019
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4020
  "skrbnike."
4021
 
4022
+ #: settings.php:2799
4023
  msgid "Disable header code (Header tab)"
4024
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4025
 
4026
+ #: settings.php:2803
4027
  msgid "Disable footer code (Footer tab)"
4028
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4029
 
4030
  #. translators: %s: Ad Inserter
4031
+ #: settings.php:2807
4032
  msgid "Disable %s JavaScript code"
4033
  msgstr "Onemogoči %s JavaScript kodo"
4034
 
4035
  #. translators: %s: Ad Inserter
4036
+ #: settings.php:2811
4037
  msgid "Disable %s CSS code"
4038
  msgstr "Onemogoči %s CSS kodo"
4039
 
4040
+ #: settings.php:2815
4041
  msgid ""
4042
  "Disable PHP code processing (in all blocks including header and footer code)"
4043
  msgstr ""
4044
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4045
 
4046
+ #: settings.php:2819
4047
  msgid "Disable insertion of all blocks"
4048
  msgstr "Onemogoči vstavljanje vseh blokov"
4049
 
4050
+ #: settings.php:2823
4051
  msgid "Disable insertions"
4052
  msgstr "Onemogoči vstavljanja"
4053
 
4054
  #. translators: %s: Ad Inserter
4055
+ #: settings.php:2835
4056
  msgid "%s CSS CODE"
4057
  msgstr "%s CSS KODA"
4058
 
4059
+ #: settings.php:2838
4060
  msgid "HEADER CODE"
4061
  msgstr "KODA GLAVE"
4062
 
4063
  #. translators: %s: PHP tags
4064
+ #: settings.php:2844
4065
  msgid "BLOCK PHP CODE"
4066
  msgstr "PHP KODA BLOKA"
4067
 
4068
  #. translators: %s: Ad Inserter
4069
+ #: settings.php:2850
4070
  msgid "%s JS CODE"
4071
  msgstr "%s JS KODA"
4072
 
4073
+ #: settings.php:2853
4074
  msgid "FOOTER CODE"
4075
  msgstr "KODA NOGE"
4076
 
4077
+ #: settings.php:2862
4078
  msgid "Force showing admin toolbar when viewing site"
4079
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4080
 
4081
+ #: settings.php:2869
4082
  msgid "Enable debugging functions in admin toolbar"
4083
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4084
 
4085
+ #: settings.php:2871
4086
  msgid "Debugging functions in admin toolbar"
4087
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4088
 
4089
+ #: settings.php:2878
4090
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4091
  msgstr ""
4092
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4093
  "zaslonih"
4094
 
4095
+ #: settings.php:2880
4096
  msgid "Debugging functions on mobile screens"
4097
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4098
 
4099
+ #: settings.php:2887
4100
  msgid ""
4101
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4102
  "tags, processing) by url parameters for non-logged in users. Enable this "
4111
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4112
  "vedno omogočeno."
4113
 
4114
+ #: settings.php:2889
4115
  msgid "Remote debugging"
4116
  msgstr "Oddaljeno razhroščevanje"
4117
 
4118
+ #: settings.php:2896
4119
  msgid ""
4120
  "Disable translation to see original texts for the settings and messages in "
4121
  "English"
4123
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4124
  "angleščini"
4125
 
4126
+ #: settings.php:2898
4127
  msgid "Disable translation"
4128
  msgstr "Onemogoči prevod"
4129
 
4130
+ #: settings.php:3268
4131
  msgid "Available positions for current theme"
4132
  msgstr "Razpoložljivi položaji za trenutno temo"
4133
 
4134
+ #: settings.php:3269
4135
  msgid "Error checking pages"
4136
  msgstr "Napaka pri preverjanju strani"
4137
 
4138
+ #: settings.php:3272
4139
  msgid "Toggle theme checker for available positions for automatic insertion"
4140
  msgstr ""
4141
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4142
 
4143
+ #: settings.php:3272
4144
  msgctxt "Button"
4145
  msgid "Check"
4146
  msgstr "Preveri"
4147
 
4148
+ #: settings.php:3279
4149
  msgid "Position"
4150
  msgstr "Položaj"
4151
 
4152
+ #: settings.php:3284
4153
  msgid "Archive pages"
4154
  msgstr "Strani arhiva"
4155
 
4156
+ #: settings.php:3343
4157
  msgid ""
4158
  "Position not available because output buffering (tab [*]) is not enabled"
4159
  msgstr ""
4160
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4161
 
4162
+ #: settings.php:3346 strings.php:226
4163
  msgid "Position not checked yet"
4164
  msgstr "Položaj še ni bil preverjen"
4165
 
4166
+ #: settings.php:3382
4167
  msgid "Toggle active/all blocks"
4168
  msgstr "Preklopi aktive/vse bloke"
4169
 
4170
+ #: settings.php:3386 strings.php:213
4171
  msgid "Rearrange block order"
4172
  msgstr "Preuredi vrstni red blokov"
4173
 
4174
+ #: settings.php:3391
4175
  msgid "Save new block order"
4176
  msgstr "Shrani vrstni red blokov"
4177
 
4178
+ #: settings.php:3417
4179
  msgid "Toggle active/all ad units"
4180
  msgstr "Preklopi aktivne/vse oglasne enote"
4181
 
4182
+ #: settings.php:3421
4183
  msgid "Reload AdSense ad units"
4184
  msgstr "Ponovno naloži oglasne enote AdSense"
4185
 
4186
+ #: settings.php:3425
4187
  msgid "Clear authorization to access AdSense account"
4188
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4189
 
4190
+ #: settings.php:3429 settings.php:4225 settings.php:4292 strings.php:221
4191
  msgid "Google AdSense Homepage"
4192
  msgstr "Google AdSense Domača Stran"
4193
 
4194
+ #: settings.php:3445
4195
  msgid "Switch to physical ads.txt file"
4196
  msgstr "Preklopi na fizično datoteko ads.txt"
4197
 
4198
+ #: settings.php:3446
4199
  msgid "Switch to virtual ads.txt file"
4200
  msgstr "Preklopi na navidezno datoteko ads.txt"
4201
 
4202
  #. translators: %s: ads.txt
4203
+ #: settings.php:3456
4204
  msgid "Open %s"
4205
  msgstr "Odpri %s"
4206
 
4207
+ #: settings.php:3464
4208
  msgid "Reload ads.txt file"
4209
  msgstr "Ponovno naloži datoteko ads.txt"
4210
 
4211
+ #: settings.php:3468 settings.php:4352
4212
  msgid "Save"
4213
  msgstr "Shrani"
4214
 
4215
  #. translators: %s: Ad Inserter
4216
+ #: settings.php:3643
4217
  msgid "ads.txt file: %s virtual ads.txt file"
4218
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4219
 
4220
+ #: settings.php:3648 settings.php:3668 strings.php:205
4221
  msgid "Warning"
4222
  msgstr "Opozorilo"
4223
 
4224
  #. translators: %s: Ad Inserter
4225
+ #: settings.php:3648
4226
  msgid "%s virtual file ads.txt not found"
4227
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4228
 
4229
+ #: settings.php:3656
4230
  msgid "IMPORTANT"
4231
  msgstr "POMEMBNO"
4232
 
4233
+ #: settings.php:3656
4234
  msgid "ads.txt file must be placed on the root domain"
4235
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4236
 
4237
+ #: settings.php:3661
4238
  msgid "ads.txt file"
4239
  msgstr "datoteka ads.txt"
4240
 
4241
+ #: settings.php:3668
4242
  msgid "file %s not found"
4243
  msgstr "datoteka %s ni najdena"
4244
 
4245
+ #: settings.php:3678
4246
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4247
  msgstr ""
4248
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4249
 
4250
  #. translators: %s: Ad Inserter
4251
+ #: settings.php:3684
4252
  msgid "%s virtual ads.txt file"
4253
  msgstr "%s navidezna datoteka ads.txt"
4254
 
4255
+ #: settings.php:3706
4256
  msgid "Advertising system"
4257
  msgstr "Oglaševalski sistem"
4258
 
4259
+ #: settings.php:3707
4260
  msgid "Account ID"
4261
  msgstr "ID Računa"
4262
 
4263
+ #: settings.php:3709
4264
  msgid "Certification authority ID"
4265
  msgstr "ID organa za potrjevanje"
4266
 
4267
+ #: settings.php:3724
4268
  msgid "Account ID found in block and present in ads.txt"
4269
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4270
 
4271
+ #: settings.php:3728
4272
  msgid "Account ID found in block but not present in ads.txt"
4273
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4274
 
4275
+ #: settings.php:4015
4276
  msgid "Preview block"
4277
  msgstr "Predogled bloka"
4278
 
4279
+ #: settings.php:4024
4280
  msgid "Insertion disabled"
4281
  msgstr "Vstavljanje onemogočeno"
4282
 
4283
+ #: settings.php:4054
4284
  msgid "Automatic insertion"
4285
  msgstr "Samodejno vstavljanje"
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4055 settings.php:4968
4289
  msgid "PHP code processing"
4290
  msgstr "Procesiranje PHP kode"
4291
 
4292
+ #: settings.php:4057
4293
  msgid "Device detection"
4294
  msgstr "Zaznavanje naprave"
4295
 
4296
+ #: settings.php:4070
4297
  msgid "Widget positions"
4298
  msgstr "Položaji gradnikov"
4299
 
4300
+ #: settings.php:4136
4301
  msgid "Ad unit"
4302
  msgstr "Enota"
4303
 
4304
+ #: settings.php:4138
4305
  msgid "Slot ID"
4306
  msgstr "ID mesta"
4307
 
4308
+ #: settings.php:4164
4309
  msgid "Copy AdSense code"
4310
  msgstr "Kopiraj kodo AdSense"
4311
 
4312
+ #: settings.php:4167
4313
  msgid "Preview AdSense ad"
4314
  msgstr "Predogled oglasa AdSense"
4315
 
4316
+ #: settings.php:4170
4317
  msgid "Get AdSense code"
4318
  msgstr "Pridobi kodo AdSense"
4319
 
4320
  #. translators: %s: HTML tags
4321
+ #: settings.php:4202
4322
  msgid ""
4323
  "Please %s clear authorization %s with the button %s above and once again "
4324
  "authorize access to your AdSense account."
4326
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4327
  "avtorizirajte dostop do vašega računa AdSense."
4328
 
4329
+ #: settings.php:4221
4330
  msgid "AdSense Integration"
4331
  msgstr "Integracija AdSense"
4332
 
4333
+ #: settings.php:4223
4334
  msgid "AdSense Integration - Step 2"
4335
  msgstr "Integracija AdSense - Korak 2"
4336
 
4337
  #. translators: %s: HTML tags
4338
+ #: settings.php:4229
4339
  msgid ""
4340
  "Authorize %s to access your AdSense account. Click on the %s Get "
4341
  "Authorization Code %s button to open a new window where you can allow "
4348
  "Avtoriziraj. %s"
4349
 
4350
  #. translators: %s: HTML tags
4351
+ #: settings.php:4236
4352
  msgid ""
4353
  "If you get error, can't access ad units or would like to use own Google API "
4354
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4359
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
4360
 
4361
  #. translators: %s: HTML tags
4362
+ #: settings.php:4238
4363
  msgid ""
4364
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4365
  "Authorization Code %s button to open a new window where you can allow "
4372
  "gumb %s Avtoriziraj. %s"
4373
 
4374
  #. translators: %s: HTML tags
4375
+ #: settings.php:4245
4376
  msgid ""
4377
  "If you get error %s invalid client %s click on the button %s Clear and "
4378
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4380
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
4381
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
4382
 
4383
+ #: settings.php:4256
4384
  msgid "Get Authorization Code"
4385
  msgstr "Pridobi Avtoriazcijsko Kodo"
4386
 
4387
+ #: settings.php:4259
4388
  msgid "Enter Authorization Code"
4389
  msgstr "Vnesi Avorizacijsko Kodo"
4390
 
4391
+ #: settings.php:4269
4392
  msgid "Use own API IDs"
4393
  msgstr "Uporabi lastne API ID-je"
4394
 
4395
+ #: settings.php:4271
4396
  msgid "Clear and return to Step 1"
4397
  msgstr "Odstrani in se vrni na Korak 1"
4398
 
4399
+ #: settings.php:4275
4400
  msgid "Authorize"
4401
  msgstr "Avtoriziraj"
4402
 
4403
+ #: settings.php:4291
4404
  msgid "AdSense Integration - Step 1"
4405
  msgstr "Integracija AdSense - Korak 1"
4406
 
4407
  #. translators: %s: Ad Inserter
4408
+ #: settings.php:4295
4409
  msgid ""
4410
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4411
  "To do this you need to authorize %s to access your AdSense account. The "
4418
  "Klienta in Skrivnost Klienta."
4419
 
4420
  #. translators: %s: HTML tags
4421
+ #: settings.php:4304
4422
  msgid "Go to %s Google APIs and Services console %s"
4423
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4424
 
4425
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4426
+ #: settings.php:4305
4427
  msgid ""
4428
  "Create %1$s project - if the project and IDs are already created click on "
4429
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4432
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
4433
 
4434
  #. translators: %s: HTML tags
4435
+ #: settings.php:4306
4436
  msgid ""
4437
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4438
  "create a new project"
4441
  "ustvaritev novega projekta"
4442
 
4443
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4444
+ #: settings.php:4307
4445
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4446
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4447
 
4448
  #. translators: %s: HTML tags
4449
+ #: settings.php:4308
4450
  msgid ""
4451
  "Click on project selection, wait for the project to be created and then and "
4452
  "select %s as the current project"
4455
  "izberite %s kot trenutni projekt"
4456
 
4457
  #. translators: %s: HTML tags
4458
+ #: settings.php:4309
4459
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4460
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4461
 
4462
  #. translators: %s: HTML tags
4463
+ #: settings.php:4310
4464
  msgid "Search for adsense and enable %s"
4465
  msgstr "Poiščite adsense in omogočite %s"
4466
 
4467
  #. translators: %s: HTML tags
4468
+ #: settings.php:4311
4469
  msgid "Click on %s CREATE CREDENTIALS %s"
4470
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4471
 
4472
  #. translators: %s: HTML tags
4473
+ #: settings.php:4312
4474
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4475
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4476
 
4477
  #. translators: %s: HTML tags
4478
+ #: settings.php:4313
4479
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4480
  msgstr ""
4481
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4482
  "podatki %s"
4483
 
4484
  #. translators: %s: HTML tags
4485
+ #: settings.php:4314
4486
  msgid "Click on %s What credentials do I need? %s"
4487
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4488
 
4489
  #. translators: %s: HTML tags
4490
+ #: settings.php:4315
4491
  msgid ""
4492
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4493
  "Ad Inserter client %s"
4496
  "%s Ad Inserter klient %s"
4497
 
4498
  #. translators: %s: HTML tags
4499
+ #: settings.php:4316
4500
  msgid ""
4501
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4502
  "enter %s"
4505
  "uporabnikom %s vnesite %s"
4506
 
4507
  #. translators: %s: HTML tags
4508
+ #: settings.php:4317
4509
  msgid "Click on %s Continue %s"
4510
  msgstr "Kliknite na %s Nadaljuj %s"
4511
 
4512
  #. translators: %s: HTML tags
4513
+ #: settings.php:4318
4514
  msgid "Click on %s Done %s"
4515
  msgstr "Kliknite na %s Končaj %s"
4516
 
4517
  #. translators: %s: HTML tags
4518
+ #: settings.php:4319
4519
  msgid ""
4520
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4521
  "secret %s"
4523
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4524
  "Skrivnost klienta %s"
4525
 
4526
+ #: settings.php:4320
4527
  msgid "Copy them to the appropriate fields below"
4528
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4529
 
4530
+ #: settings.php:4326
4531
  msgid "Client ID"
4532
  msgstr "ID klienta"
4533
 
4534
+ #: settings.php:4329
4535
  msgid "Enter Client ID"
4536
  msgstr "Vnesite ID klienta"
4537
 
4538
+ #: settings.php:4334
4539
  msgid "Client secret"
4540
  msgstr "Skrivnost klienta"
4541
 
4542
+ #: settings.php:4337
4543
  msgid "Enter Client secret"
4544
  msgstr "Vnesite Skrivnost klienta"
4545
 
4546
+ #: settings.php:4347
4547
  msgid "Use default API IDs"
4548
  msgstr "Uporabi privzete API ID-je"
4549
 
4550
+ #: settings.php:4500
4551
+ msgid "All posts"
4552
+ msgstr "Vsi prispevki"
4553
+
4554
+ #: settings.php:4501
4555
+ msgid "All static pages"
4556
+ msgstr "Vse statične strani"
4557
+
4558
+ #: settings.php:4635 settings.php:4648 settings.php:4661 settings.php:4676
4559
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4560
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4561
 
4562
+ #: settings.php:4640 settings.php:4653 settings.php:4666 settings.php:4681
4563
+ #: settings.php:4861 settings.php:4865 settings.php:4883 settings.php:4887
4564
+ #: settings.php:4895 settings.php:4898 settings.php:4904 settings.php:4916
4565
  msgid "Looking for AdSense alternative?"
4566
  msgstr "Iščete alternativo za AdSense?"
4567
 
4568
+ #: settings.php:4692
4569
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4570
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4571
 
4572
+ #: settings.php:4697 settings.php:4863 settings.php:4867 settings.php:4875
4573
+ #: settings.php:4901
4574
  msgid "Use Infolinks ads with Adsense to earn more"
4575
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4576
 
4577
+ #: settings.php:4716 settings.php:4754
4578
  msgid "Support plugin development"
4579
  msgstr "Podprite razvoj vtičnika"
4580
 
4581
+ #: settings.php:4717 settings.php:4755
4582
  msgid ""
4583
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4584
  "reviewing the plugin on WordPres"
4586
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4587
  "razširiti novico z oceno vtičnika na WordPress-u"
4588
 
4589
+ #: settings.php:4717
4590
  msgctxt "Review ad Inserter"
4591
  msgid "Review"
4592
  msgstr "Oceni"
4593
 
4594
+ #: settings.php:4718
4595
  msgid ""
4596
  "Support free Ad Inserter development. If you are making money with Ad "
4597
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4600
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4601
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4602
 
4603
+ #: settings.php:4718
4604
  msgid "Donate"
4605
  msgstr "Donirajte"
4606
 
4607
+ #: settings.php:4725 settings.php:4770
4608
  msgid "Average rating of the plugin - Thank you!"
4609
  msgstr "Povprečna ocena vtičnika - Hvala!"
4610
 
4611
  #. translators: %s: Ad Inserter, HTML tags
4612
+ #: settings.php:4736
4613
  msgid ""
4614
  "You've been using %s for a while now, and I hope you're happy with it. "
4615
  "Positive %s reviews %s are a great way to show your appreciation for my "
4623
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4624
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4625
 
4626
+ #: settings.php:4755
4627
  msgid "Review"
4628
  msgstr "Ocena"
4629
 
4630
+ #: settings.php:4759
4631
  msgid "Ad Inserter on Twitter"
4632
  msgstr "Ad Inserter na Twitter-ju"
4633
 
4634
+ #: settings.php:4760
4635
  msgid "Ad Inserter on Facebook"
4636
  msgstr "Ad Inserter na Facebook-u"
4637
 
4638
+ #: settings.php:4763
4639
  msgid "Follow Ad Inserter"
4640
  msgstr "Sledi Ad Inserter-ju"
4641
 
4642
  #. translators: %s: HTML tags
4643
+ #: settings.php:4790
4644
  msgid ""
4645
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4646
  "and %s Common Settings %s pages"
4649
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4650
 
4651
  #. translators: %s: HTML tags
4652
+ #: settings.php:4802
4653
  msgid ""
4654
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4655
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4660
  "%s Infolinks %s oglasno kodo %s"
4661
 
4662
  #. translators: %s: HTML tags
4663
+ #: settings.php:4823
4664
  msgid ""
4665
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4666
  "purchase you refer to us"
4669
  "nakup, ki nam ga posredujete"
4670
 
4671
  #. translators: %s: HTML tags
4672
+ #: settings.php:4830
4673
  msgid ""
4674
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4675
  "diagnose and fix the problem."
4678
  "navodili za diagnozo in rešitvami za težave."
4679
 
4680
  #. translators: %s: HTML tags
4681
+ #: settings.php:4834
4682
  msgid ""
4683
  "If you need any kind of help or support, please do not hesitate to open a "
4684
  "thread on the %s support forum. %s"
4686
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4687
  "nit na %s podpornem forumu. %s"
4688
 
4689
+ #: settings.php:4879 settings.php:4920
4690
  msgid "A/B testing - Track ad impressions and clicks"
4691
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4692
 
4693
+ #: settings.php:4912 settings.php:4924
4694
  msgid "Code preview with visual CSS editor"
4695
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4696
 
4697
+ #: settings.php:4932
4698
  msgid "Looking for Pro Ad Management plugin?"
4699
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4700
 
4701
+ #: settings.php:4933
4702
  msgid "To Optimally Monetize your WordPress website?"
4703
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4704
 
4705
  #. translators: %s HTML tags
4706
+ #: settings.php:4936
4707
  msgid "%s AdSense Integration %s"
4708
  msgstr "%s Integracija AdSense %s"
4709
 
4710
  #. translators: %s HTML tags
4711
+ #: settings.php:4937
4712
  msgid "Syntax highlighting %s editor %s"
4713
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4714
 
4715
  #. translators: %s HTML tags
4716
+ #: settings.php:4938
4717
  msgid "%s Code preview %s with visual CSS editor"
4718
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4719
 
4720
  #. translators: %s HTML tags
4721
+ #: settings.php:4939
4722
  msgid "Simple user interface - all settings on a single page"
4723
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4724
 
4725
  #. translators: %s HTML tags
4726
+ #: settings.php:4940
4727
  msgid ""
4728
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4729
  "image / excerpt"
4732
  "%s / sliko / izvlečkom"
4733
 
4734
  #. translators: %s HTML tags
4735
+ #: settings.php:4941
4736
  msgid "%s Automatic insertion %s between posts on blog pages"
4737
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4738
 
4739
  #. translators: %s HTML tags
4740
+ #: settings.php:4942
4741
  msgid "%s Automatic insertion %s before, between and after comments"
4742
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4743
 
4744
  #. translators: %s HTML tags
4745
+ #: settings.php:4943
4746
  msgid "%s Automatic insertion %s after %s or before %s tag"
4747
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4748
 
4749
  #. translators: %s HTML tags
4750
+ #: settings.php:4944
4751
  msgid "Automatic insertion at %s custom hook positions %s"
4752
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4753
 
4754
  #. translators: %s HTML tags
4755
+ #: settings.php:4945
4756
  msgid ""
4757
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4758
  "selectors)"
4761
  "selektorjev)"
4762
 
4763
  #. translators: %s HTML tags
4764
+ #: settings.php:4946
4765
  msgid "%s Insertion exceptions %s for individual posts and pages"
4766
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4767
 
4768
  #. translators: %s HTML tags
4769
+ #: settings.php:4947
4770
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4771
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4772
 
4773
  #. translators: %s HTML tags
4774
+ #: settings.php:4948
4775
  msgid ""
4776
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4777
  "scrolls)"
4780
  "se stran pomika)"
4781
 
4782
  #. translators: %s HTML tags
4783
+ #: settings.php:4949
4784
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4785
  msgstr ""
4786
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4787
 
4788
  #. translators: %s HTML tags
4789
+ #: settings.php:4950
4790
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4791
  msgstr ""
4792
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4793
 
4794
  #. translators: %s HTML tags
4795
+ #: settings.php:4951
4796
  msgid ""
4797
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4798
  "visible)"
4801
  "postane viden)"
4802
 
4803
  #. translators: %s HTML tags
4804
+ #: settings.php:4952
4805
  msgid ""
4806
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4807
  msgstr ""
4809
  "strani)"
4810
 
4811
  #. translators: %s HTML tags
4812
+ #: settings.php:4953
4813
  msgid "Block %s alignment and style %s customizations"
4814
  msgstr "%s Poravnave in slogi %s bloka po meri"
4815
 
4816
  #. translators: %s HTML tags
4817
+ #: settings.php:4954
4818
  msgid ""
4819
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4820
  "TOS)"
4822
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4823
 
4824
  #. translators: %s HTML tags
4825
+ #: settings.php:4955
4826
  msgid ""
4827
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4828
  "feeds"
4831
  "virih"
4832
 
4833
  #. translators: %s HTML tags
4834
+ #: settings.php:4956
4835
  msgid "%s Ad rotation %s (works also with caching)"
4836
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4837
 
4838
  #. translators: %s HTML tags
4839
+ #: settings.php:4957
4840
  msgid "Create, edit and check %s ads.txt %s file"
4841
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4842
 
4843
  #. translators: %s HTML tags
4844
+ #: settings.php:4958
4845
  msgid ""
4846
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4847
  "AdSense)"
4850
  "AdSense)"
4851
 
4852
  #. translators: %s HTML tags
4853
+ #: settings.php:4959
4854
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4855
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4856
 
4857
  #. translators: %s HTML tags
4858
+ #: settings.php:4960
4859
  msgid "%s Public web reports %s for clients, export to PDF"
4860
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4861
 
4862
  #. translators: %s HTML tags
4863
+ #: settings.php:4961
4864
  msgid "Support for %s A/B testing %s"
4865
  msgstr "Podpora za %s A/B testiranje %s"
4866
 
4867
  #. translators: %s HTML tags
4868
+ #: settings.php:4962
4869
  msgid "Frequency capping - %s limit impressions or clicks %s"
4870
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
4871
 
4872
  #. translators: %s HTML tags
4873
+ #: settings.php:4963
4874
  msgid "Click fraud %s protection %s"
4875
  msgstr "%s Zaščita %s pred goljufijo s kliki"
4876
 
4877
  #. translators: %s HTML tags
4878
+ #: settings.php:4964
4879
  msgid "Support for %s lazy loading %s"
4880
  msgstr "Podpora za %s leno nalaganje %s"
4881
 
4882
  #. translators: %s HTML tags
4883
+ #: settings.php:4965
4884
  msgid "Support for ads on %s AMP pages %s"
4885
  msgstr "Podpora za oglase na %s AMP straneh %s"
4886
 
4887
  #. translators: %s HTML tags
4888
+ #: settings.php:4966
4889
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4890
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4891
 
4892
  #. translators: %s HTML tags
4893
+ #: settings.php:4967
4894
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4895
  msgstr ""
4896
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4897
 
4898
  #. translators: %s HTML tags
4899
+ #: settings.php:4969
4900
  msgid "%s Banner %s code generator"
4901
  msgstr "Generator kode za %s pasice %s"
4902
 
4903
  #. translators: %s HTML tags
4904
+ #: settings.php:4970
4905
  msgid "Support for %s header and footer %s code"
4906
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4907
 
4908
  #. translators: %s HTML tags
4909
+ #: settings.php:4971
4910
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4911
  msgstr ""
4912
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4913
 
4914
  #. translators: %s HTML tags
4915
+ #: settings.php:4972
4916
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4917
  msgstr ""
4918
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4919
  "strežnika"
4920
 
4921
  #. translators: %s HTML tags
4922
+ #: settings.php:4973
4923
  msgid "Client-side %s mobile device detection %s (works with caching)"
4924
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4925
 
4926
  #. translators: %s HTML tags
4927
+ #: settings.php:4974
4928
  msgid ""
4929
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4930
  "protection"
4933
  "vsebine"
4934
 
4935
  #. translators: %s HTML tags
4936
+ #: settings.php:4975
4937
  msgid "%s Ad blocking statistics %s"
4938
  msgstr "%s Statistika blokiranja oglasov %s"
4939
 
4940
  #. translators: %s HTML tags
4941
+ #: settings.php:4976
4942
  msgid ""
4943
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4944
  "referers"
4946
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4947
 
4948
  #. translators: %s HTML tags
4949
+ #: settings.php:4977
4950
  msgid ""
4951
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4952
  msgstr ""
4953
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4954
 
4955
  #. translators: %s HTML tags
4956
+ #: settings.php:4978
4957
  msgid "%s Multisite options %s to limit settings on the sites"
4958
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4959
 
4960
  #. translators: %s HTML tags
4961
+ #: settings.php:4979
4962
  msgid "%s Import/Export %s block or plugin settings"
4963
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4964
 
4965
  #. translators: %s HTML tags
4966
+ #: settings.php:4980
4967
  msgid "%s Insertion scheduling %s with fallback option"
4968
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4969
 
4970
  #. translators: %s HTML tags
4971
+ #: settings.php:4981
4972
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4973
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4974
 
4975
  #. translators: %s HTML tags
4976
+ #: settings.php:4982
4977
  msgid "Simple troubleshooting with many %s debugging functions %s"
4978
  msgstr ""
4979
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4980
 
4981
  #. translators: %s HTML tags
4982
+ #: settings.php:4983
4983
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4984
  msgstr ""
4985
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4986
 
4987
  #. translators: %s HTML tags
4988
+ #: settings.php:4984
4989
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4990
  msgstr ""
4991
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4992
 
4993
  #. translators: %s HTML tags
4994
+ #: settings.php:4985
4995
  msgid ""
4996
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4997
  msgstr ""
4998
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4999
 
5000
  #. translators: %s HTML tags
5001
+ #: settings.php:4986
5002
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5003
  msgstr ""
5004
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5005
 
5006
  #. translators: %s HTML tags
5007
+ #: settings.php:4987
5008
  msgid "No ads on the settings page"
5009
  msgstr "Stran z nastavitvami brez oglasov"
5010
 
5011
  #. translators: %s HTML tags
5012
+ #: settings.php:4988
5013
  msgid "Premium support"
5014
  msgstr "Vrhunska podpora"
5015
 
5016
  #. translators: %s HTML tags
5017
+ #: settings.php:4991
5018
  msgid ""
5019
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5020
  "website with many advertising features to automatically insert adverts on "
5041
  "bodo ohranile)."
5042
 
5043
  #. translators: %s HTML tags
5044
+ #: settings.php:5004
5045
  msgid "Looking for %s Pro Ad Management plugin? %s"
5046
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5047
 
5048
  #. translators: %s HTML tags
5049
+ #: settings.php:5009
5050
  msgid "Ads between posts"
5051
  msgstr "Oglasi med prispevki"
5052
 
5053
  #. translators: %s HTML tags
5054
+ #: settings.php:5010
5055
  msgid "Ads between comments"
5056
  msgstr "Oglasi med komentarji"
5057
 
5058
  #. translators: %s HTML tags
5059
+ #: settings.php:5011
5060
  msgid "Support via email"
5061
  msgstr "Podpora prek elektronske pošte"
5062
 
5063
  #. translators: %s HTML tags
5064
+ #: settings.php:5017
5065
  msgid "%s Sticky positions %s"
5066
  msgstr "%s Lepljivi položaji %s"
5067
 
5068
  #. translators: %s HTML tags
5069
+ #: settings.php:5018
5070
  msgid "%s Limit insertions %s"
5071
  msgstr "%s Omeji vstavljanja %s"
5072
 
5073
  #. translators: %s HTML tags
5074
+ #: settings.php:5019
5075
  msgid "%s Clearance %s options"
5076
  msgstr "Možnosti %s izogibanja %s"
5077
 
5078
  #. translators: %s HTML tags
5079
+ #: settings.php:5025
5080
  msgid "Ad rotation"
5081
  msgstr "Vrtenje oglasov"
5082
 
5083
  #. translators: %s HTML tags
5084
+ #: settings.php:5026
5085
  msgid "%s A/B testing %s"
5086
  msgstr "%s A/B testiranje %s"
5087
 
5088
  #. translators: %s HTML tags
5089
+ #: settings.php:5027
5090
  msgid "%s Ad tracking %s"
5091
  msgstr "%s Sledenje oglasom %s"
5092
 
5093
  #. translators: %s HTML tags
5094
+ #: settings.php:5033
5095
  msgid "Support for %s AMP pages %s"
5096
  msgstr "Podpora za %s AMP strani %s"
5097
 
5098
  #. translators: %s HTML tags
5099
+ #: settings.php:5034
5100
  msgid "%s Ad blocking detection %s"
5101
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5102
 
5103
  #. translators: %s HTML tags
5104
+ #: settings.php:5035
5105
  msgid "%s Mobile device detection %s"
5106
  msgstr "%s Zaznavanje mobilne naprave %s"
5107
 
5108
  #. translators: %s HTML tags
5109
+ #: settings.php:5042
5110
  msgid "64 code blocks"
5111
  msgstr "64 kodnih blokov"
5112
 
5113
  #. translators: %s HTML tags
5114
+ #: settings.php:5043
5115
  msgid "%s GEO targeting %s"
5116
  msgstr "%s GEO ciljanje %s"
5117
 
5118
  #. translators: %s HTML tags
5119
+ #: settings.php:5044
5120
  msgid "%s Scheduling %s"
5121
  msgstr "%s Urnik %s"
5122
 
5916
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5917
  "na optimalna mesta"
5918
 
5919
+ #~ msgid "Warning: %1$s disabled %2$s on AMP pages - %3$s explanation %4$s"
5920
+ #~ msgstr ""
5921
+ #~ "Opozorilo: %1$s je onemogočil %2$s na AMP straneh - %3$s pojasnilo %4$s"
5922
+
5923
+ #~ msgid "Save All Settings"
5924
+ #~ msgstr "Shrani Vse Nastavitve"
5925
+
5926
+ #~ msgid "Minimum number of paragraphs"
5927
+ #~ msgstr "Najmanjše število odstavkov"
5928
+
5929
  #~ msgid "Individual exceptions for posts"
5930
  #~ msgstr "Posamezne izjeme za prispevke"
5931
 
6271
  #~ msgid "auto"
6272
  #~ msgstr "samodejni"
6273
 
 
 
 
 
 
 
6274
  #~ msgid "BEFORE PARAGRAPH"
6275
  #~ msgstr "PRED ODSTAVKOM"
6276
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.5.1\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-09-04 18:34:16+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,441 +12,454 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:394
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:410
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:417
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:488
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:495
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:504
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:511
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:521
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1123
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1128
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1133 strings.php:103
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1138 strings.php:104
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1143 strings.php:105
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1148 strings.php:155
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1195
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1199
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1408
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1733 ad-inserter.php:2634
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2180
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2180
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2181
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2182
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2183
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2184
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2185
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2384
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2385 includes/functions.old.php:1652
144
- #: includes/functions.php:1662
145
  msgid "No, thank you."
146
  msgstr ""
147
 
148
  #. Translators: %s: Ad Inserter
149
- #: ad-inserter.php:2388
150
  msgid ""
151
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
152
  msgstr ""
153
 
154
- #: ad-inserter.php:2389 includes/functions.old.php:1655
155
- #: includes/functions.php:1665
156
  msgid "Not now, maybe later."
157
  msgstr ""
158
 
159
- #: ad-inserter.php:2399
160
  msgid "I would really appreciate if you could rate the plugin on WordPres."
161
  msgstr ""
162
 
163
- #: ad-inserter.php:2401
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
- #: ad-inserter.php:2407
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
- #: ad-inserter.php:2412
175
  msgid "I already did."
176
  msgstr ""
177
 
178
- #: ad-inserter.php:2425
 
 
 
 
 
 
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
- #: ad-inserter.php:2525
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
- #: ad-inserter.php:2554 ad-inserter.php:8555 class.php:2053
190
  #: includes/preview.php:1976 includes/preview.php:2020
191
- #: includes/preview.php:2057 settings.php:4040 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
- #: ad-inserter.php:2555 settings.php:4041 settings.php:4126
196
  msgid "Name"
197
  msgstr ""
198
 
199
- #: ad-inserter.php:2558 settings.php:1119
200
  msgid "Default insertion"
201
  msgstr ""
202
 
203
  #. translators: For this post or page
204
- #: ad-inserter.php:2561
205
  msgctxt "Page"
206
  msgid "For this"
207
  msgstr ""
208
 
209
- #: ad-inserter.php:2562
210
  msgctxt "Post"
211
  msgid "For this"
212
  msgstr ""
213
 
214
- #: ad-inserter.php:2574
215
  msgctxt "Enabled/disabled on all"
216
  msgid "pages"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:2577
220
  msgctxt "Enabled/disabled on all"
221
  msgid "posts"
222
  msgstr ""
223
 
224
- #: ad-inserter.php:2595 ad-inserter.php:2607 strings.php:161
225
  msgid "Enabled"
226
  msgstr ""
227
 
228
  #. translators: Menu items
229
- #: ad-inserter.php:2595 ad-inserter.php:2607 includes/functions.old.php:2326
230
- #: includes/functions.php:2338 strings.php:16
231
  msgid "Disabled"
232
  msgstr ""
233
 
234
- #: ad-inserter.php:2597
235
  msgid "No individual exceptions"
236
  msgstr ""
237
 
238
  #. translators: Not enabled for pages or posts
239
- #: ad-inserter.php:2599
240
  msgid "Not enabled for"
241
  msgstr ""
242
 
243
  #. translators: No individual exceptions enabled for pages or posts
244
- #: ad-inserter.php:2627
245
  msgid "No block has individual exceptions enabled"
246
  msgstr ""
247
 
248
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
249
- #: ad-inserter.php:2632
250
  msgid ""
251
  "Default insertion can be configured for each block on %1$s page - button "
252
  "next to %2$s checkbox."
253
  msgstr ""
254
 
255
- #: ad-inserter.php:2635 settings.php:1097
256
  msgid "Tag / Archive pages"
257
  msgstr ""
258
 
259
- #: ad-inserter.php:2637
260
  msgid ""
261
  "When individual exceptions for a block are enabled, a checkbox will be "
262
  "listed here to change default insertion for this post or page."
263
  msgstr ""
264
 
265
- #: ad-inserter.php:2638
266
  msgid ""
267
  "This way you can individually enable or disable blocks on specific posts or "
268
  "pages."
269
  msgstr ""
270
 
271
- #: ad-inserter.php:2640
272
  msgid "For more information check page %s"
273
  msgstr ""
274
 
275
  #. translators: Ad Inserter Exceptions documentation page
276
- #: ad-inserter.php:2642
277
  msgid "Individual Exceptions"
278
  msgstr ""
279
 
280
- #: ad-inserter.php:2689
281
  msgid "STATIC PAGE"
282
  msgstr ""
283
 
284
- #: ad-inserter.php:2692
285
  msgid "POST"
286
  msgstr ""
287
 
288
- #: ad-inserter.php:2695
289
  msgid "HOMEPAGE"
290
  msgstr ""
291
 
292
- #: ad-inserter.php:2698
293
  msgid "CATEGORY PAGE"
294
  msgstr ""
295
 
296
- #: ad-inserter.php:2701
297
  msgid "SEARCH PAGE"
298
  msgstr ""
299
 
300
- #: ad-inserter.php:2704
301
  msgid "ARCHIVE PAGE"
302
  msgstr ""
303
 
304
- #: ad-inserter.php:2707
305
  msgid "ERROR 404 PAGE"
306
  msgstr ""
307
 
308
- #: ad-inserter.php:2710
309
  msgid "AJAX CALL"
310
  msgstr ""
311
 
312
- #: ad-inserter.php:2713
313
  msgid "UNKNOWN PAGE TYPE"
314
  msgstr ""
315
 
316
- #: ad-inserter.php:2730
317
  msgid "Click to delete ad blocking detection cokies"
318
  msgstr ""
319
 
320
- #: ad-inserter.php:2731
321
  msgid "AD BLOCKING STATUS UNKNOWN"
322
  msgstr ""
323
 
324
  #. translators: %s: AdSense Auto Ads
325
- #: ad-inserter.php:2755
326
  msgid ""
327
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
328
  "positions"
329
  msgstr ""
330
 
331
- #: ad-inserter.php:2894
332
  msgid "Code for insertion"
333
  msgstr ""
334
 
335
- #: ad-inserter.php:2894
336
  msgid "character"
337
  msgid_plural "characters"
338
  msgstr[0] ""
339
  msgstr[1] ""
340
 
341
- #: ad-inserter.php:2937
342
  msgid "Header code"
343
  msgstr ""
344
 
345
- #: ad-inserter.php:2937
346
  msgctxt "Header code"
347
  msgid "DISABLED"
348
  msgstr ""
349
 
350
- #: ad-inserter.php:2937 ad-inserter.php:3160
351
  msgid "character inserted"
352
  msgid_plural "characters inserted"
353
  msgstr[0] ""
354
  msgstr[1] ""
355
 
356
- #: ad-inserter.php:2971
357
  msgid "Automatically placed by AdSense Auto ads code"
358
  msgstr ""
359
 
360
- #: ad-inserter.php:3160
361
  msgid "Footer code"
362
  msgstr ""
363
 
364
- #: ad-inserter.php:3160
365
  msgctxt "Footer code"
366
  msgid "DISABLED"
367
  msgstr ""
368
 
369
- #: ad-inserter.php:3166
370
  msgid "JAVASCRIPT NOT WORKING"
371
  msgstr ""
372
 
373
- #: ad-inserter.php:3166
374
  msgid "NO JAVASCRIPT ERRORS"
375
  msgstr ""
376
 
377
- #: ad-inserter.php:3166
378
  msgid "JAVASCRIPT ERRORS"
379
  msgstr ""
380
 
381
  #. translators: block name (block with default settings)
382
- #: ad-inserter.php:5421
383
  msgctxt "Block name"
384
  msgid "Default"
385
  msgstr ""
386
 
387
  #. translators: %s: Ad Inserter
388
- #: ad-inserter.php:6002
389
  msgid "Error importing %s settings."
390
  msgstr ""
391
 
392
- #: ad-inserter.php:6003
393
  msgid "Error importing settings for block"
394
  msgid_plural "Error importing settings for blocks:"
395
  msgstr[0] ""
396
  msgstr[1] ""
397
 
398
- #: ad-inserter.php:6052
399
  msgid "Settings saved."
400
  msgstr ""
401
 
402
- #: ad-inserter.php:6139
 
 
 
 
 
403
  msgid "Settings cleared."
404
  msgstr ""
405
 
406
- #: ad-inserter.php:6484 ad-inserter.php:6486 ad-inserter.php:6509
 
 
407
  msgid "word"
408
  msgid_plural "words"
409
  msgstr[0] ""
410
  msgstr[1] ""
411
 
412
- #: ad-inserter.php:6523 ad-inserter.php:6635
413
  msgid "HTML TAGS REMOVED"
414
  msgstr ""
415
 
416
- #: ad-inserter.php:6711
417
  msgid "BEFORE COMMENTS"
418
  msgstr ""
419
 
420
- #: ad-inserter.php:6819
421
  msgid "AFTER COMMENTS"
422
  msgstr ""
423
 
424
- #: ad-inserter.php:6882
425
  msgid "BETWEEN COMMENTS"
426
  msgstr ""
427
 
428
- #: ad-inserter.php:8189
429
- msgid "requires WordPress 4.0 or newer"
430
  msgstr ""
431
 
432
- #: ad-inserter.php:8189
433
  msgid "Please update!"
434
  msgstr ""
435
 
436
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
437
  #. name with HTML tags will be added)
438
- #: ad-inserter.php:8428
439
  msgid "Thank you for installing"
440
  msgstr ""
441
 
442
  #. translators: Opt-in message: %s: HTML tags
443
- #: ad-inserter.php:8430
444
  msgid ""
445
  "We would like to %s track its usage %s on your site. This is completely "
446
  "optional and can be disabled at any time."
447
  msgstr ""
448
 
449
- #: ad-inserter.php:8432
450
  msgid ""
451
  "We don't record any sensitive data, only information regarding the WordPress "
452
  "environment and plugin usage, which will help us to make improvements to the "
@@ -454,7 +467,7 @@ msgid ""
454
  msgstr ""
455
 
456
  #. translators: Deactivation message: %s: HTML tags
457
- #: ad-inserter.php:8469
458
  msgid ""
459
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
460
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -462,56 +475,56 @@ msgid ""
462
  msgstr ""
463
 
464
  #. translators: %s: Ad Inserter
465
- #: ad-inserter.php:8512
466
  msgid "%s block."
467
  msgstr ""
468
 
469
  #. translators: widget title
470
- #: ad-inserter.php:8528 ad-inserter.php:8564
471
  msgid "Processing log"
472
  msgstr ""
473
 
474
  #. translators: widget title
475
- #: ad-inserter.php:8530 ad-inserter.php:8565
476
  msgid "Dummy widget"
477
  msgstr ""
478
 
479
  #. translators: widget title
480
- #: ad-inserter.php:8532 ad-inserter.php:8563
481
  msgid "Debugging tools"
482
  msgstr ""
483
 
484
  #. translators: block status (widget title)
485
- #: ad-inserter.php:8539
486
  msgctxt "block"
487
  msgid "PAUSED"
488
  msgstr ""
489
 
490
- #: ad-inserter.php:8540
491
  msgid "WIDGET DISABLED"
492
  msgstr ""
493
 
494
- #: ad-inserter.php:8541
495
  msgid "Unknown block"
496
  msgstr ""
497
 
498
- #: ad-inserter.php:8550 includes/functions.old.php:3186
499
- #: includes/functions.php:3198 settings.php:1149
500
  msgid "Title"
501
  msgstr ""
502
 
503
- #: ad-inserter.php:8572
504
  msgctxt "Widget"
505
  msgid "Sticky"
506
  msgstr ""
507
 
508
- #: ad-inserter.php:8621
509
  msgid ""
510
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
511
  "Inserter you need to first deactivate Ad Inserter Pro."
512
  msgstr ""
513
 
514
- #: ad-inserter.php:8622
515
  msgid ""
516
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
517
  "will clear all settings that are available only in the Pro version "
@@ -523,130 +536,130 @@ msgstr ""
523
  msgid "PHP error in %s block"
524
  msgstr ""
525
 
526
- #: class.php:2019
527
  msgid "Counters"
528
  msgstr ""
529
 
530
- #: class.php:2023
531
  msgid "Content"
532
  msgstr ""
533
 
534
- #: class.php:2028
535
  msgid "Excerpt"
536
  msgstr ""
537
 
538
- #: class.php:2033 strings.php:17
539
  msgid "Before post"
540
  msgstr ""
541
 
542
- #: class.php:2038 strings.php:18
543
  msgid "After post"
544
  msgstr ""
545
 
546
- #: class.php:2043 settings.php:1785 settings.php:4058
547
  msgid "Widget"
548
  msgstr ""
549
 
550
- #: class.php:2048 settings.php:4056
551
  msgid "PHP function call"
552
  msgstr ""
553
 
554
- #: class.php:2083
555
  msgid "AJAX REQUEST"
556
  msgstr ""
557
 
558
- #: class.php:2086
559
  msgid "Ajax request for block in iframe"
560
  msgstr ""
561
 
562
- #: class.php:2116
563
  msgid "Ajax request url, click to open it in a new tab"
564
  msgstr ""
565
 
566
- #: class.php:2119
567
  msgid "IN THE LOOP"
568
  msgstr ""
569
 
570
- #: class.php:2119
571
  msgid "YES"
572
  msgstr ""
573
 
574
- #: class.php:2119
575
  msgid "NO"
576
  msgstr ""
577
 
578
- #: class.php:2155
579
  msgid "BLOCK"
580
  msgstr ""
581
 
582
- #: class.php:2155
583
  msgctxt "block or widget"
584
  msgid "INSERTED BUT NOT VISIBLE"
585
  msgstr ""
586
 
587
- #: class.php:2601 class.php:2660
588
  msgid "ACTIVE GROUPS"
589
  msgstr ""
590
 
591
  #. translators: %s: list parameters and type
592
- #: class.php:2835
593
  msgid "parameters='%s' type='%s'"
594
  msgstr ""
595
 
596
  #. translators: %s: list parameters and type
597
- #: class.php:2837
598
  msgid "referers='%s' type='%s'"
599
  msgstr ""
600
 
601
  #. translators: %s: list parameters and type
602
- #: class.php:2898
603
  msgid "countries='%s' type='%s'"
604
  msgstr ""
605
 
606
  #. translators: %s: list parameters and type
607
- #: class.php:2900
608
  msgid "ip addresses='%s' type='%s'"
609
  msgstr ""
610
 
611
- #: class.php:3169 strings.php:239
612
  msgid "BEFORE"
613
  msgstr ""
614
 
615
- #: class.php:3177 strings.php:241
616
  msgid "PREPEND CONTENT"
617
  msgstr ""
618
 
619
- #: class.php:3181 strings.php:242
620
  msgid "APPEND CONTENT"
621
  msgstr ""
622
 
623
- #: class.php:3185 strings.php:243
624
  msgid "REPLACE CONTENT"
625
  msgstr ""
626
 
627
- #: class.php:3189 strings.php:244
628
  msgid "REPLACE ELEMENT"
629
  msgstr ""
630
 
631
- #: class.php:3200 strings.php:240
632
  msgid "AFTER"
633
  msgstr ""
634
 
635
- #: class.php:3267
636
  msgctxt "JavaScript"
637
  msgid "script"
638
  msgstr ""
639
 
640
- #: class.php:3270 settings.php:2054
641
  msgid "for"
642
  msgstr ""
643
 
644
- #: class.php:6277 class.php:6329
645
  msgctxt "category name"
646
  msgid "Uncategorized"
647
  msgstr ""
648
 
649
- #: class.php:6822
650
  msgid ""
651
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
652
  "extension for PHP."
@@ -662,7 +675,7 @@ msgid "Reset"
662
  msgstr ""
663
 
664
  #: includes/editor.php:9 includes/placeholders.php:354
665
- #: includes/preview.php:1965 settings.php:3453 strings.php:208 strings.php:245
666
  msgid "Cancel"
667
  msgstr ""
668
 
@@ -740,8 +753,8 @@ msgid ""
740
  "Leave empty unless position is not properly calculated."
741
  msgstr ""
742
 
743
- #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1300
744
- #: settings.php:2668
745
  msgid "Open HTML element selector"
746
  msgstr ""
747
 
@@ -778,7 +791,7 @@ msgid "Toggle Ad Blocking Statistics"
778
  msgstr ""
779
 
780
  #: includes/functions.old.php:508 includes/functions.old.php:2960
781
- #: includes/functions.php:510 includes/functions.php:2972
782
  msgid "Toggle Statistics"
783
  msgstr ""
784
 
@@ -797,7 +810,8 @@ msgstr ""
797
  msgid "%s license overused. Continue?"
798
  msgstr ""
799
 
800
- #: includes/functions.old.php:536 includes/functions.php:546 settings.php:2125
 
801
  msgid "Save Settings"
802
  msgstr ""
803
 
@@ -864,13 +878,13 @@ msgstr ""
864
 
865
  #: includes/functions.old.php:750 includes/functions.old.php:2453
866
  #: includes/functions.old.php:2470 includes/functions.php:760
867
- #: includes/functions.php:2465 includes/functions.php:2482
868
  msgid "Tracking is globally disabled"
869
  msgstr ""
870
 
871
  #: includes/functions.old.php:754 includes/functions.old.php:2457
872
  #: includes/functions.old.php:2474 includes/functions.php:764
873
- #: includes/functions.php:2469 includes/functions.php:2486
874
  msgid "Tracking for this block is disabled"
875
  msgstr ""
876
 
@@ -878,8 +892,8 @@ msgstr ""
878
  msgid "Double click to toggle controls in public reports"
879
  msgstr ""
880
 
881
- #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3388
882
- #: settings.php:3424 settings.php:3466 strings.php:218
883
  msgid "Loading..."
884
  msgstr ""
885
 
@@ -894,62 +908,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
894
  msgstr ""
895
 
896
  #: includes/functions.old.php:795 includes/functions.old.php:5262
897
- #: includes/functions.php:805 includes/functions.php:5287
898
  msgid "Load data for last month"
899
  msgstr ""
900
 
901
  #: includes/functions.old.php:795 includes/functions.old.php:5262
902
- #: includes/functions.php:805 includes/functions.php:5287
903
  msgid "Last Month"
904
  msgstr ""
905
 
906
  #: includes/functions.old.php:798 includes/functions.old.php:5265
907
- #: includes/functions.php:808 includes/functions.php:5290
908
  msgid "Load data for this month"
909
  msgstr ""
910
 
911
  #: includes/functions.old.php:798 includes/functions.old.php:5265
912
- #: includes/functions.php:808 includes/functions.php:5290
913
  msgid "This Month"
914
  msgstr ""
915
 
916
  #: includes/functions.old.php:801 includes/functions.old.php:5268
917
- #: includes/functions.php:811 includes/functions.php:5293
918
  msgid "Load data for this year"
919
  msgstr ""
920
 
921
  #: includes/functions.old.php:801 includes/functions.old.php:5268
922
- #: includes/functions.php:811 includes/functions.php:5293
923
  msgid "This Year"
924
  msgstr ""
925
 
926
  #: includes/functions.old.php:804 includes/functions.old.php:5271
927
- #: includes/functions.php:814 includes/functions.php:5296
928
  msgid "Load data for the last 15 days"
929
  msgstr ""
930
 
931
  #: includes/functions.old.php:807 includes/functions.old.php:5274
932
- #: includes/functions.php:817 includes/functions.php:5299
933
  msgid "Load data for the last 30 days"
934
  msgstr ""
935
 
936
  #: includes/functions.old.php:810 includes/functions.old.php:5277
937
- #: includes/functions.php:820 includes/functions.php:5302
938
  msgid "Load data for the last 90 days"
939
  msgstr ""
940
 
941
  #: includes/functions.old.php:813 includes/functions.old.php:5280
942
- #: includes/functions.php:823 includes/functions.php:5305
943
  msgid "Load data for the last 180 days"
944
  msgstr ""
945
 
946
  #: includes/functions.old.php:816 includes/functions.old.php:5283
947
- #: includes/functions.php:826 includes/functions.php:5308
948
  msgid "Load data for the last 365 days"
949
  msgstr ""
950
 
951
  #: includes/functions.old.php:826 includes/functions.old.php:5293
952
- #: includes/functions.php:836 includes/functions.php:5318
953
  msgid "Load data for the selected range"
954
  msgstr ""
955
 
@@ -1025,7 +1039,7 @@ msgid "Cities"
1025
  msgstr ""
1026
 
1027
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1028
- #: includes/functions.php:948 includes/functions.php:2937
1029
  msgid "Toggle country editor"
1030
  msgstr ""
1031
 
@@ -1034,7 +1048,7 @@ msgid "Toggle city editor"
1034
  msgstr ""
1035
 
1036
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1037
- #: includes/functions.php:955 includes/functions.php:2940
1038
  msgid "Comma separated country ISO Alpha-2 codes"
1039
  msgstr ""
1040
 
@@ -1047,189 +1061,189 @@ msgid "Whitelist countries"
1047
  msgstr ""
1048
 
1049
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1050
- #: includes/functions.php:1371 includes/functions.php:1618
1051
  msgid "Enter license key"
1052
  msgstr ""
1053
 
1054
  #. translators: %s: Ad Inserter Pro
1055
- #: includes/functions.old.php:1367 includes/functions.php:1377
1056
  msgid ""
1057
  "%s license key is not set. Plugin functionality is limited and updates are "
1058
  "disabled."
1059
  msgstr ""
1060
 
1061
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1062
- #: includes/functions.php:1389 includes/functions.php:1627
1063
  msgid "Check license key"
1064
  msgstr ""
1065
 
1066
  #. translators: %s: Ad Inserter Pro
1067
- #: includes/functions.old.php:1385 includes/functions.php:1395
1068
  msgid "Invalid %s license key."
1069
  msgstr ""
1070
 
1071
  #. translators: %s: Ad Inserter Pro
1072
- #: includes/functions.old.php:1394 includes/functions.php:1404
1073
  msgid "%s license expired. Plugin updates are disabled."
1074
  msgstr ""
1075
 
1076
- #: includes/functions.old.php:1395 includes/functions.php:1405
1077
  msgid "Renew license"
1078
  msgstr ""
1079
 
1080
  #. translators: %s: Ad Inserter Pro
1081
- #: includes/functions.old.php:1403 includes/functions.php:1413
1082
  msgid "%s license overused. Plugin updates are disabled."
1083
  msgstr ""
1084
 
1085
- #: includes/functions.old.php:1404 includes/functions.php:1414
1086
  msgid "Manage licenses"
1087
  msgstr ""
1088
 
1089
- #: includes/functions.old.php:1404 includes/functions.php:1414
1090
  msgid "Upgrade license"
1091
  msgstr ""
1092
 
1093
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1094
- #: includes/functions.old.php:1610 includes/functions.php:1620
1095
  msgid ""
1096
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1097
  "limited and updates are disabled."
1098
  msgstr ""
1099
 
1100
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1101
- #: includes/functions.old.php:1619 includes/functions.php:1629
1102
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1103
  msgstr ""
1104
 
1105
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1106
- #: includes/functions.old.php:1635 includes/functions.php:1645
1107
  msgid ""
1108
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1109
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1110
  msgstr ""
1111
 
1112
  #. translators: 1, 3: HTML tags, 2: percentage
1113
- #: includes/functions.old.php:1642 includes/functions.php:1652
1114
  msgid ""
1115
  "During the license period and 30 days after the license has expired we offer "
1116
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1117
  msgstr ""
1118
 
1119
- #: includes/functions.old.php:1669 includes/functions.php:1679
1120
  msgid "Renew the licence"
1121
  msgstr ""
1122
 
1123
- #: includes/functions.old.php:1671 includes/functions.php:1681
1124
  msgid "Update license status"
1125
  msgstr ""
1126
 
1127
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1128
- #: includes/functions.old.php:1682 includes/functions.php:1692
1129
  msgid ""
1130
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1131
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1132
  msgstr ""
1133
 
1134
  #. Translators: %s: HTML tag
1135
- #: includes/functions.old.php:1704 includes/functions.php:1714
1136
  msgid "Warning: %s MaxMind IP geolocation database not found."
1137
  msgstr ""
1138
 
1139
- #: includes/functions.old.php:2255 includes/functions.php:2267
1140
  msgid "Geolocation"
1141
  msgstr ""
1142
 
1143
- #: includes/functions.old.php:2259 includes/functions.php:2271
1144
- #: settings.php:4045
1145
  msgid "Exceptions"
1146
  msgstr ""
1147
 
1148
- #: includes/functions.old.php:2264 includes/functions.php:2276
1149
  msgid "Multisite"
1150
  msgstr ""
1151
 
1152
- #: includes/functions.old.php:2269 includes/functions.php:2281
1153
- #: settings.php:4051
1154
  msgid "Tracking"
1155
  msgstr ""
1156
 
1157
  #. translators: %d: days, hours, minutes
1158
- #: includes/functions.old.php:2300 includes/functions.php:2312
1159
  msgid "Scheduled in %d days %d hours %d minutes"
1160
  msgstr ""
1161
 
1162
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1163
  #. HTML code for long dash separator
1164
- #: includes/functions.old.php:2309 includes/functions.php:2321
1165
  msgid "Active %s expires in %d days %d hours %d minutes"
1166
  msgstr ""
1167
 
1168
- #: includes/functions.old.php:2313 includes/functions.php:2325
1169
  msgid "Expired"
1170
  msgstr ""
1171
 
1172
- #: includes/functions.old.php:2321 includes/functions.php:2333
1173
- #: settings.php:1383 settings.php:1398 settings.php:2040
1174
  msgid "and"
1175
  msgstr ""
1176
 
1177
- #: includes/functions.old.php:2324 includes/functions.php:2336
1178
  msgid "fallback"
1179
  msgstr ""
1180
 
1181
- #: includes/functions.old.php:2325 includes/functions.php:2337
1182
  msgid "Block to be used when scheduling expires"
1183
  msgstr ""
1184
 
1185
- #: includes/functions.old.php:2350 includes/functions.php:2362
1186
  msgid "Load in iframe"
1187
  msgstr ""
1188
 
1189
- #: includes/functions.old.php:2354 includes/functions.php:2366
1190
  #: includes/placeholders.php:389
1191
  msgid "Width"
1192
  msgstr ""
1193
 
1194
- #: includes/functions.old.php:2355 includes/functions.php:2367
1195
  msgid "iframe width, empty means full width (100%)"
1196
  msgstr ""
1197
 
1198
- #: includes/functions.old.php:2361 includes/functions.php:2373
1199
  #: includes/placeholders.php:384
1200
  msgid "Height"
1201
  msgstr ""
1202
 
1203
- #: includes/functions.old.php:2362 includes/functions.php:2374
1204
  msgid "iframe height, empty means adjust it to iframe content height"
1205
  msgstr ""
1206
 
1207
- #: includes/functions.old.php:2369 includes/functions.php:2381
1208
  msgid "Ad label in iframe"
1209
  msgstr ""
1210
 
1211
- #: includes/functions.old.php:2374 includes/functions.php:2386
1212
  msgid "Preview iframe code"
1213
  msgstr ""
1214
 
1215
- #: includes/functions.old.php:2374 includes/functions.php:2386
1216
- #: includes/preview.php:1974 settings.php:1049 settings.php:2730
1217
  msgid "Preview"
1218
  msgstr ""
1219
 
1220
- #: includes/functions.old.php:2388 includes/functions.php:2400
1221
- #: settings.php:4052
1222
  msgid "Limits"
1223
  msgstr ""
1224
 
1225
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1226
- #: includes/functions.old.php:4329 includes/functions.php:2405
1227
- #: includes/functions.php:4278 includes/functions.php:4341 settings.php:2172
1228
  msgid "Ad Blocking"
1229
  msgstr ""
1230
 
1231
  #. translators: 1, 2 and 3, 4: HTML tags
1232
- #: includes/functions.old.php:2402 includes/functions.php:2414
1233
  msgid ""
1234
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1235
  "for tracking!"
@@ -1237,29 +1251,29 @@ msgstr ""
1237
 
1238
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1239
  #. header
1240
- #: includes/functions.old.php:2411 includes/functions.php:2423
1241
  msgid ""
1242
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1243
  "enabled and automatic insertion %6$s!"
1244
  msgstr ""
1245
 
1246
- #: includes/functions.old.php:2478 includes/functions.php:2490
1247
  msgid "Click fraud protection is globally disabled"
1248
  msgstr ""
1249
 
1250
- #: includes/functions.old.php:2482 includes/functions.php:2494
1251
  msgid "Max clicks per time period are not defined"
1252
  msgstr ""
1253
 
1254
  #. Translators: Max n impressions
1255
- #: includes/functions.old.php:2496 includes/functions.php:2508
1256
  msgid "General limits"
1257
  msgstr ""
1258
 
1259
  #. Translators: Max n impressions per x days
1260
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1261
- #: includes/functions.old.php:2599 includes/functions.php:2514
1262
- #: includes/functions.php:2526 includes/functions.php:2611
1263
  msgid "Current value"
1264
  msgstr ""
1265
 
@@ -1275,14 +1289,14 @@ msgstr ""
1275
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1276
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1277
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1278
- #: includes/functions.php:2533 includes/functions.php:2543
1279
- #: includes/functions.php:2562 includes/functions.php:2572
1280
- #: includes/functions.php:2618 includes/functions.php:2627
1281
- #: includes/functions.php:2645 includes/functions.php:2654 settings.php:1961
1282
  msgid "Max"
1283
  msgstr ""
1284
 
1285
- #: includes/functions.old.php:2522 includes/functions.php:2534
1286
  msgid ""
1287
  "Maximum number of impressions for this block. Empty means no general "
1288
  "impression limit."
@@ -1294,14 +1308,14 @@ msgstr ""
1294
  #. Translators: Max n impressions per x days
1295
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1296
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1297
- #: includes/functions.php:2536 includes/functions.php:2546
1298
- #: includes/functions.php:2621 includes/functions.php:2630
1299
  msgid "impression"
1300
  msgid_plural "impressions"
1301
  msgstr[0] ""
1302
  msgstr[1] ""
1303
 
1304
- #: includes/functions.old.php:2532 includes/functions.php:2544
1305
  msgid ""
1306
  "Maximum number of impressions per time period. Empty means no time limit."
1307
  msgstr ""
@@ -1312,13 +1326,13 @@ msgstr ""
1312
  #. Translators: Max n clicks per x days
1313
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1314
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1315
- #: includes/functions.php:2550 includes/functions.php:2579
1316
- #: includes/functions.php:2634 includes/functions.php:2661
1317
  msgid "per"
1318
  msgstr ""
1319
 
1320
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1321
- #: includes/functions.php:2551 includes/functions.php:2580
1322
  msgid "Time period in days. Empty means no time limit."
1323
  msgstr ""
1324
 
@@ -1330,9 +1344,9 @@ msgstr ""
1330
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1331
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1332
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1333
- #: includes/functions.php:2553 includes/functions.php:2582
1334
- #: includes/functions.php:2637 includes/functions.php:2664
1335
- #: includes/functions.php:2770 includes/functions.php:3098 strings.php:199
1336
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1337
  #: strings.php:204
1338
  msgid "day"
@@ -1340,7 +1354,7 @@ msgid_plural "days"
1340
  msgstr[0] ""
1341
  msgstr[1] ""
1342
 
1343
- #: includes/functions.old.php:2551 includes/functions.php:2563
1344
  msgid ""
1345
  "Maximum number of clicks on this block. Empty means no general click limit."
1346
  msgstr ""
@@ -1351,24 +1365,24 @@ msgstr ""
1351
  #. Translators: Max n clicks per x days
1352
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1353
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1354
- #: includes/functions.old.php:4477 includes/functions.php:2565
1355
- #: includes/functions.php:2575 includes/functions.php:2648
1356
- #: includes/functions.php:2657 includes/functions.php:4489
1357
  msgid "click"
1358
  msgid_plural "clicks"
1359
  msgstr[0] ""
1360
  msgstr[1] ""
1361
 
1362
- #: includes/functions.old.php:2561 includes/functions.php:2573
1363
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1364
  msgstr ""
1365
 
1366
- #: includes/functions.old.php:2586 includes/functions.php:2598
1367
  msgid "Individual visitor limits"
1368
  msgstr ""
1369
 
1370
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1371
- #: includes/functions.php:2602 includes/functions.php:2604
1372
  msgid ""
1373
  "When specified number of clicks on this block for a visitor will be reached "
1374
  "in the specified time period, all blocks that have click fraud protection "
@@ -1376,79 +1390,79 @@ msgid ""
1376
  "general plugin settings."
1377
  msgstr ""
1378
 
1379
- #: includes/functions.old.php:2592 includes/functions.php:2604
1380
  msgid "Trigger click fraud protection"
1381
  msgstr ""
1382
 
1383
- #: includes/functions.old.php:2607 includes/functions.php:2619
1384
  msgid ""
1385
  "Maximum number of impressions of this block for each visitor. Empty means no "
1386
  "impression limit."
1387
  msgstr ""
1388
 
1389
- #: includes/functions.old.php:2616 includes/functions.php:2628
1390
  msgid ""
1391
  "Maximum number of impressions per time period for each visitor. Empty means "
1392
  "no impression limit per time period for visitors."
1393
  msgstr ""
1394
 
1395
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1396
- #: includes/functions.php:2635 includes/functions.php:2662
1397
  msgid ""
1398
  "Time period in days. Use decimal value (with decimal point) for shorter "
1399
  "periods. Empty means no time limit."
1400
  msgstr ""
1401
 
1402
- #: includes/functions.old.php:2634 includes/functions.php:2646
1403
  msgid ""
1404
  "Maximum number of clicks on this block for each visitor. Empty means no "
1405
  "click limit."
1406
  msgstr ""
1407
 
1408
- #: includes/functions.old.php:2643 includes/functions.php:2655
1409
  msgid ""
1410
  "Maximum number of clicks per time period for each visitor. Empty means no "
1411
  "click limit per time period for visitors."
1412
  msgstr ""
1413
 
1414
- #: includes/functions.old.php:2669 includes/functions.php:2681
1415
  msgid "When ad blocking is detected"
1416
  msgstr ""
1417
 
1418
- #: includes/functions.old.php:2678 includes/functions.php:2690
1419
  msgid "replacement"
1420
  msgstr ""
1421
 
1422
- #: includes/functions.old.php:2679 includes/functions.php:2691
1423
  msgid "Block to be shown when ad blocking is detected"
1424
  msgstr ""
1425
 
1426
- #: includes/functions.old.php:2680 includes/functions.php:2692
1427
  msgctxt "replacement"
1428
  msgid "None"
1429
  msgstr ""
1430
 
1431
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1432
- #: includes/functions.php:2709 includes/functions.php:5509
1433
  msgid "Close button"
1434
  msgstr ""
1435
 
1436
- #: includes/functions.old.php:2749 includes/functions.php:2761
1437
  msgid "Auto close after"
1438
  msgstr ""
1439
 
1440
- #: includes/functions.old.php:2750 includes/functions.php:2762
1441
  msgid ""
1442
  "Time in seconds in which the ad will automatically close. Leave empty to "
1443
  "disable auto closing."
1444
  msgstr ""
1445
 
1446
  #. Translators: Don't show for x days
1447
- #: includes/functions.old.php:2755 includes/functions.php:2767
1448
  msgid "Don't show for"
1449
  msgstr ""
1450
 
1451
- #: includes/functions.old.php:2756 includes/functions.php:2768
1452
  msgid ""
1453
  "Time in days in which closed ad will not be shown again. Use decimal value "
1454
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1456,11 +1470,11 @@ msgid ""
1456
  msgstr ""
1457
 
1458
  #. Translators: Delay showing for x pageviews
1459
- #: includes/functions.old.php:2776 includes/functions.php:2788
1460
  msgid "Delay showing for"
1461
  msgstr ""
1462
 
1463
- #: includes/functions.old.php:2777 includes/functions.php:2789
1464
  msgid ""
1465
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1466
  "empty to insert the code for the first pageview."
@@ -1469,307 +1483,307 @@ msgstr ""
1469
  #. Translators: Delay showing for x pageviews
1470
  #. Translators: Show every x pageviews
1471
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1472
- #: includes/functions.php:2791 includes/functions.php:2798
1473
  msgid "pageview"
1474
  msgid_plural "pageviews"
1475
  msgstr[0] ""
1476
  msgstr[1] ""
1477
 
1478
  #. Translators: Show every x pageviews
1479
- #: includes/functions.old.php:2783 includes/functions.php:2795
1480
  msgid "Show every"
1481
  msgid_plural "Show every"
1482
  msgstr[0] ""
1483
  msgstr[1] ""
1484
 
1485
- #: includes/functions.old.php:2784 includes/functions.php:2796
1486
  msgid ""
1487
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1488
  "for every pageview."
1489
  msgstr ""
1490
 
1491
- #: includes/functions.old.php:2803 includes/functions.php:2815
1492
  msgid "Lazy loading"
1493
  msgstr ""
1494
 
1495
  #. Translators: %s MaxMind
1496
- #: includes/functions.old.php:2860 includes/functions.php:2872
1497
  msgid "This product includes GeoLite2 data created by %s"
1498
  msgstr ""
1499
 
1500
- #: includes/functions.old.php:2871 includes/functions.php:2883
1501
  msgid "IP geolocation database"
1502
  msgstr ""
1503
 
1504
- #: includes/functions.old.php:2874 includes/functions.php:2886
1505
  msgid "Select IP geolocation database."
1506
  msgstr ""
1507
 
1508
- #: includes/functions.old.php:2885 includes/functions.php:2897
1509
  msgid "Automatic database updates"
1510
  msgstr ""
1511
 
1512
- #: includes/functions.old.php:2888 includes/functions.php:2900
1513
  msgid ""
1514
  "Automatically download and update free GeoLite2 IP geolocation database by "
1515
  "MaxMind"
1516
  msgstr ""
1517
 
1518
- #: includes/functions.old.php:2896 includes/functions.php:2908
1519
  msgid "Database"
1520
  msgstr ""
1521
 
1522
- #: includes/functions.old.php:2899 includes/functions.php:2911
1523
  msgid ""
1524
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1525
  "file"
1526
  msgstr ""
1527
 
1528
  #. translators: %d: group number
1529
- #: includes/functions.old.php:2917 includes/functions.php:2929
1530
  msgid "Group %d"
1531
  msgstr ""
1532
 
1533
- #: includes/functions.old.php:2923 includes/functions.php:2935
1534
  msgid "countries"
1535
  msgstr ""
1536
 
1537
- #: includes/functions.old.php:2968 includes/functions.php:2980
1538
  msgid ""
1539
  "Enable impression and click tracking. You also need to enable tracking for "
1540
  "each block you want to track."
1541
  msgstr ""
1542
 
1543
- #: includes/functions.old.php:2975 includes/functions.php:2987
1544
  msgid "Generate report"
1545
  msgstr ""
1546
 
1547
- #: includes/functions.old.php:2983 includes/functions.php:2995
1548
  msgid "Impression and Click Tracking"
1549
  msgstr ""
1550
 
1551
- #: includes/functions.old.php:2984 includes/functions.php:2996
1552
- #: settings.php:2618
1553
  msgctxt "ad blocking detection"
1554
  msgid "NOT ENABLED"
1555
  msgstr ""
1556
 
1557
- #: includes/functions.old.php:3000 includes/functions.php:3012
1558
  msgid "Internal"
1559
  msgstr ""
1560
 
1561
- #: includes/functions.old.php:3004 includes/functions.php:3016
1562
  msgid "Track impressions and clicks with internal tracking and statistics"
1563
  msgstr ""
1564
 
1565
- #: includes/functions.old.php:3009 includes/functions.php:3021
1566
  msgid "External"
1567
  msgstr ""
1568
 
1569
- #: includes/functions.old.php:3013 includes/functions.php:3025
1570
  msgid ""
1571
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1572
  "code installed)"
1573
  msgstr ""
1574
 
1575
- #: includes/functions.old.php:3018 includes/functions.php:3030
1576
  msgid "Track Pageviews"
1577
  msgstr ""
1578
 
1579
- #: includes/functions.old.php:3024 includes/functions.php:3036
1580
  msgid "Track Pageviews by Device (as configured for viewports)"
1581
  msgstr ""
1582
 
1583
- #: includes/functions.old.php:3034 includes/functions.php:3046
1584
  msgid "Track for Logged in Users"
1585
  msgstr ""
1586
 
1587
- #: includes/functions.old.php:3040 includes/functions.php:3052
1588
  msgid "Track impressions and clicks from logged in users"
1589
  msgstr ""
1590
 
1591
- #: includes/functions.old.php:3050 includes/functions.php:3062
1592
  msgid "Click Detection"
1593
  msgstr ""
1594
 
1595
- #: includes/functions.old.php:3056 includes/functions.php:3068
1596
  msgid ""
1597
  "Standard method detects clicks only on banners with links, Advanced method "
1598
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1599
  msgstr ""
1600
 
1601
- #: includes/functions.old.php:3075 includes/functions.php:3087
1602
  msgid "Click fraud protection"
1603
  msgstr ""
1604
 
1605
- #: includes/functions.old.php:3079 includes/functions.php:3091
1606
  msgid "Globally enable click fraud protection for selected blocks."
1607
  msgstr ""
1608
 
1609
- #: includes/functions.old.php:3085 includes/functions.php:3097
1610
  msgid "Protection time"
1611
  msgstr ""
1612
 
1613
- #: includes/functions.old.php:3086 includes/functions.php:3098
1614
  msgid ""
1615
  "Time period in days in which blocks with enabled click fraud protection will "
1616
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1617
  msgstr ""
1618
 
1619
- #: includes/functions.old.php:3105 includes/functions.php:3117
1620
  msgid "Report header image"
1621
  msgstr ""
1622
 
1623
- #: includes/functions.old.php:3108 includes/functions.php:3120
1624
  msgid ""
1625
  "Image or logo to be displayed in the header of the statistins report. "
1626
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1627
  "to reset to default image."
1628
  msgstr ""
1629
 
1630
- #: includes/functions.old.php:3109 includes/functions.php:3121 strings.php:230
1631
  msgid "Select or upload header image"
1632
  msgstr ""
1633
 
1634
- #: includes/functions.old.php:3114 includes/functions.php:3126
1635
  msgid "Report header title"
1636
  msgstr ""
1637
 
1638
- #: includes/functions.old.php:3117 includes/functions.php:3129
1639
  msgid ""
1640
  "Title to be displayed in the header of the statistics report. Text or HTML "
1641
  "code, clear to reset to default text."
1642
  msgstr ""
1643
 
1644
- #: includes/functions.old.php:3122 includes/functions.php:3134
1645
  msgid "Report header description"
1646
  msgstr ""
1647
 
1648
- #: includes/functions.old.php:3125 includes/functions.php:3137
1649
  msgid ""
1650
  "Description to be displayed in the header of the statistics report. Text or "
1651
  "HTML code, clear to reset to default text."
1652
  msgstr ""
1653
 
1654
- #: includes/functions.old.php:3130 includes/functions.php:3142
1655
  msgid "Report footer"
1656
  msgstr ""
1657
 
1658
- #: includes/functions.old.php:3133 includes/functions.php:3145
1659
  msgid ""
1660
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1661
  "to default text."
1662
  msgstr ""
1663
 
1664
- #: includes/functions.old.php:3138 includes/functions.php:3150
1665
  msgid "Public report key"
1666
  msgstr ""
1667
 
1668
- #: includes/functions.old.php:3141 includes/functions.php:3153
1669
  msgid "String to generate unique report IDs. Clear to reset to default value."
1670
  msgstr ""
1671
 
1672
- #: includes/functions.old.php:3173 includes/functions.php:3185
1673
  msgid "Are you sure you want to clear all exceptions for block"
1674
  msgstr ""
1675
 
1676
- #: includes/functions.old.php:3174 includes/functions.php:3186
1677
- #: settings.php:1152
1678
  msgid "Clear all exceptions for block"
1679
  msgstr ""
1680
 
1681
- #: includes/functions.old.php:3181 includes/functions.php:3193
1682
  msgid "Are you sure you want to clear all exceptions?"
1683
  msgstr ""
1684
 
1685
- #: includes/functions.old.php:3181 includes/functions.php:3193
1686
  msgid "Clear all exceptions for all blocks"
1687
  msgstr ""
1688
 
1689
- #: includes/functions.old.php:3186 includes/functions.php:3198
1690
- #: settings.php:3697 settings.php:4128
1691
  msgid "Type"
1692
  msgstr ""
1693
 
1694
- #: includes/functions.old.php:3204 includes/functions.php:3216
1695
  msgid "View"
1696
  msgstr ""
1697
 
1698
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1699
- #: includes/functions.old.php:3216 includes/functions.php:3217
1700
- #: includes/functions.php:3224 includes/functions.php:3228
1701
- #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1286
1702
- #: settings.php:3457
1703
  msgid "Edit"
1704
  msgstr ""
1705
 
1706
- #: includes/functions.old.php:3235 includes/functions.php:3247
1707
  msgid "Are you sure you want to clear all exceptions for"
1708
  msgstr ""
1709
 
1710
- #: includes/functions.old.php:3236 includes/functions.php:3248
1711
  msgid "Clear all exceptions for"
1712
  msgstr ""
1713
 
1714
- #: includes/functions.old.php:3249 includes/functions.php:3261
1715
  msgid "No exceptions"
1716
  msgstr ""
1717
 
1718
  #. translators: %s: Ad Inserter Pro
1719
- #: includes/functions.old.php:3260 includes/functions.php:3272
1720
  msgid "%s options for network blogs"
1721
  msgstr ""
1722
 
1723
  #. translators: %s: Ad Inserter Pro
1724
- #: includes/functions.old.php:3265 includes/functions.php:3277
1725
  msgid "Enable %s widgets for sub-sites"
1726
  msgstr ""
1727
 
1728
- #: includes/functions.old.php:3265 includes/functions.php:3277
1729
  msgid "Widgets"
1730
  msgstr ""
1731
 
1732
- #: includes/functions.old.php:3270 includes/functions.php:3282
1733
  msgid "Enable PHP code processing for sub-sites"
1734
  msgstr ""
1735
 
1736
- #: includes/functions.old.php:3270 includes/functions.php:3282
1737
  msgid "PHP Processing"
1738
  msgstr ""
1739
 
1740
  #. translators: %s: Ad Inserter Pro
1741
- #: includes/functions.old.php:3275 includes/functions.php:3287
1742
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1743
  msgstr ""
1744
 
1745
- #: includes/functions.old.php:3275 includes/functions.php:3287
1746
  msgid "Post/Page exceptions"
1747
  msgstr ""
1748
 
1749
  #. translators: %s: Ad Inserter Pro
1750
- #: includes/functions.old.php:3280 includes/functions.php:3292
1751
  msgid "Enable %s settings page for sub-sites"
1752
  msgstr ""
1753
 
1754
- #: includes/functions.old.php:3280 includes/functions.php:3292
1755
  msgid "Settings page"
1756
  msgstr ""
1757
 
1758
  #. translators: %s: Ad Inserter Pro
1759
- #: includes/functions.old.php:3285 includes/functions.php:3297
1760
  msgid "Enable %s settings of main site to be used for all blogs"
1761
  msgstr ""
1762
 
1763
- #: includes/functions.old.php:3285 includes/functions.php:3297
1764
  msgid "Main site settings used for all blogs"
1765
  msgstr ""
1766
 
1767
- #: includes/functions.old.php:3296 includes/functions.php:3308
1768
- #: settings.php:2617
1769
  msgid "Ad Blocking Detection"
1770
  msgstr ""
1771
 
1772
- #: includes/functions.old.php:3302 includes/functions.php:3314
1773
  msgid ""
1774
  "Standard method is reliable but should be used only if Advanced method does "
1775
  "not work. Advanced method recreates files used for detection with random "
@@ -1778,146 +1792,146 @@ msgid ""
1778
  msgstr ""
1779
 
1780
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1781
- #: includes/functions.old.php:4039 includes/functions.php:3941
1782
- #: includes/functions.php:4031 includes/functions.php:4051
1783
  msgid "AD BLOCKING"
1784
  msgstr ""
1785
 
1786
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1787
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1788
- #: includes/functions.php:3942 includes/functions.php:3982
1789
- #: includes/functions.php:4025 includes/functions.php:4052
1790
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1791
  msgstr ""
1792
 
1793
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1794
- #: includes/functions.old.php:4046 includes/functions.php:3945
1795
- #: includes/functions.php:4024 includes/functions.php:4058
1796
  msgid "NO AD BLOCKING"
1797
  msgstr ""
1798
 
1799
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1800
- #: includes/functions.php:3981 includes/functions.php:3988
1801
  msgid "AD BLOCKING REPLACEMENT"
1802
  msgstr ""
1803
 
1804
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1805
- #: includes/functions.php:4131 includes/functions.php:4340
1806
  msgid "Pageviews"
1807
  msgstr ""
1808
 
1809
- #: includes/functions.old.php:4265 includes/functions.php:4277
1810
  msgctxt "Version"
1811
  msgid "Unknown"
1812
  msgstr ""
1813
 
1814
- #: includes/functions.old.php:4265 includes/functions.php:4277
1815
  msgctxt "Times"
1816
  msgid "DISPLAYED"
1817
  msgstr ""
1818
 
1819
- #: includes/functions.old.php:4265 includes/functions.php:4277
1820
  msgid "No version"
1821
  msgstr ""
1822
 
1823
- #: includes/functions.old.php:4266 includes/functions.php:4278
1824
  msgctxt "Times"
1825
  msgid "BLOCKED"
1826
  msgstr ""
1827
 
1828
- #: includes/functions.old.php:4328 includes/functions.php:4340
1829
  msgid "Impressions"
1830
  msgstr ""
1831
 
1832
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1833
- #: includes/functions.old.php:4385 includes/functions.php:4341
1834
- #: includes/functions.php:4342 includes/functions.php:4397
1835
  msgid "Clicks"
1836
  msgstr ""
1837
 
1838
- #: includes/functions.old.php:4330 includes/functions.php:4342
1839
  msgid "events"
1840
  msgstr ""
1841
 
1842
- #: includes/functions.old.php:4331 includes/functions.php:4343
1843
  msgid "Ad Blocking Share"
1844
  msgstr ""
1845
 
1846
  #. translators: CTR as Click Through Rate
1847
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
1848
- #: includes/functions.php:4343 includes/functions.php:4403
1849
  msgid "CTR"
1850
  msgstr ""
1851
 
1852
- #: includes/functions.old.php:4473 includes/functions.php:4485
1853
  msgid "pageviews"
1854
  msgid_plural "pageviews"
1855
  msgstr[0] ""
1856
  msgstr[1] ""
1857
 
1858
- #: includes/functions.old.php:4473 includes/functions.php:4485
1859
  msgid "impressions"
1860
  msgid_plural "impressions"
1861
  msgstr[0] ""
1862
  msgstr[1] ""
1863
 
1864
- #: includes/functions.old.php:4477 includes/functions.php:4489
1865
  msgid "event"
1866
  msgid_plural "events"
1867
  msgstr[0] ""
1868
  msgstr[1] ""
1869
 
1870
- #: includes/functions.old.php:4572 includes/functions.php:4584
1871
  msgctxt "Pageviews / Impressions"
1872
  msgid "Average"
1873
  msgstr ""
1874
 
1875
- #: includes/functions.old.php:4593 includes/functions.php:4605
1876
  msgctxt "Ad Blocking / Clicks"
1877
  msgid "Average"
1878
  msgstr ""
1879
 
1880
- #: includes/functions.old.php:4617 includes/functions.php:4629
1881
  msgctxt "Ad Blocking Share / CTR"
1882
  msgid "Average"
1883
  msgstr ""
1884
 
1885
  #. Translators: %s: Ad Inserter Pro
1886
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
1887
- #: includes/functions.old.php:5207 includes/functions.php:4811
1888
- #: includes/functions.php:4903 includes/functions.php:5232 strings.php:184
1889
  msgid "%s Report"
1890
  msgstr ""
1891
 
1892
- #: includes/functions.old.php:5113 includes/functions.php:5138
1893
  msgid "for last month"
1894
  msgstr ""
1895
 
1896
- #: includes/functions.old.php:5118 includes/functions.php:5143
1897
  msgid "for this month"
1898
  msgstr ""
1899
 
1900
- #: includes/functions.old.php:5123 includes/functions.php:5148
1901
  msgid "for this year"
1902
  msgstr ""
1903
 
1904
- #: includes/functions.old.php:5128 includes/functions.php:5153
1905
  msgid "for the last 15 days"
1906
  msgstr ""
1907
 
1908
- #: includes/functions.old.php:5133 includes/functions.php:5158
1909
  msgid "for the last 30 days"
1910
  msgstr ""
1911
 
1912
- #: includes/functions.old.php:5138 includes/functions.php:5163
1913
  msgid "for the last 90 days"
1914
  msgstr ""
1915
 
1916
- #: includes/functions.old.php:5143 includes/functions.php:5168
1917
  msgid "for the last 180 days"
1918
  msgstr ""
1919
 
1920
- #: includes/functions.old.php:5148 includes/functions.php:5173
1921
  msgid "for the last 365 days"
1922
  msgstr ""
1923
 
@@ -1925,6 +1939,21 @@ msgstr ""
1925
  msgid "Pin list"
1926
  msgstr ""
1927
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1928
  #: includes/placeholders.php:20
1929
  msgid "Custom"
1930
  msgstr ""
@@ -1949,7 +1978,7 @@ msgstr ""
1949
  msgid "Placeholder"
1950
  msgstr ""
1951
 
1952
- #: includes/placeholders.php:363 settings.php:896 settings.php:4129
1953
  msgid "Size"
1954
  msgstr ""
1955
 
@@ -2057,11 +2086,11 @@ msgstr ""
2057
  msgid "Ad Blocking Detected Message Preview"
2058
  msgstr ""
2059
 
2060
- #: includes/preview-adb.php:348 settings.php:2743
2061
  msgid "Message CSS"
2062
  msgstr ""
2063
 
2064
- #: includes/preview-adb.php:353 settings.php:2751
2065
  msgid "Overlay CSS"
2066
  msgstr ""
2067
 
@@ -2101,7 +2130,7 @@ msgstr ""
2101
  msgid "background"
2102
  msgstr ""
2103
 
2104
- #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1247
2105
  msgid "Alignment"
2106
  msgstr ""
2107
 
@@ -2199,7 +2228,7 @@ msgid ""
2199
  "the values to those of the current block."
2200
  msgstr ""
2201
 
2202
- #: settings.php:172 settings.php:1136
2203
  msgid ""
2204
  "Settings for individual exceptions have been updated. Please check all "
2205
  "blocks that have exceptions and and then save settings."
@@ -2209,7 +2238,7 @@ msgstr ""
2209
  msgid "Online documentation"
2210
  msgstr ""
2211
 
2212
- #: settings.php:218 settings.php:732 settings.php:2139
2213
  msgid "Show AdSense ad units"
2214
  msgstr ""
2215
 
@@ -2217,7 +2246,7 @@ msgstr ""
2217
  msgid "Edit ads.txt file"
2218
  msgstr ""
2219
 
2220
- #: settings.php:226 settings.php:1079
2221
  msgid "Check theme for available positions for automatic insertion"
2222
  msgstr ""
2223
 
@@ -2333,315 +2362,311 @@ msgstr ""
2333
  msgid "General Settings"
2334
  msgstr ""
2335
 
2336
- #: settings.php:680 settings.php:2470 settings.php:2537 settings.php:2723
2337
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2338
  msgstr ""
2339
 
2340
- #: settings.php:687
2341
  msgid "Toggle tools"
2342
  msgstr ""
2343
 
2344
- #: settings.php:695
2345
  msgid "Process PHP code in block"
2346
  msgstr ""
2347
 
2348
- #: settings.php:702
2349
  msgid "Disable insertion of this block"
2350
  msgstr ""
2351
 
2352
- #: settings.php:714
2353
  msgid "Toggle code generator"
2354
  msgstr ""
2355
 
2356
- #: settings.php:718
2357
  msgid "Toggle rotation editor"
2358
  msgstr ""
2359
 
2360
- #: settings.php:722
2361
  msgid "Open visual HTML editor"
2362
  msgstr ""
2363
 
2364
- #: settings.php:741
2365
  msgid "Clear block"
2366
  msgstr ""
2367
 
2368
- #: settings.php:746 settings.php:4001
2369
  msgid "Copy block"
2370
  msgstr ""
2371
 
2372
- #: settings.php:750
2373
  msgid "Paste name"
2374
  msgstr ""
2375
 
2376
- #: settings.php:754
2377
  msgid "Paste code"
2378
  msgstr ""
2379
 
2380
- #: settings.php:758
2381
  msgid "Paste settings"
2382
  msgstr ""
2383
 
2384
- #: settings.php:762
2385
  msgid "Paste block (name, code and settings)"
2386
  msgstr ""
2387
 
2388
- #: settings.php:781
2389
  msgid "Rotation groups"
2390
  msgstr ""
2391
 
2392
- #: settings.php:785
2393
  msgid "Remove option"
2394
  msgstr ""
2395
 
2396
- #: settings.php:789
2397
  msgid "Add option"
2398
  msgstr ""
2399
 
2400
- #: settings.php:804
2401
  msgid "Import code"
2402
  msgstr ""
2403
 
2404
- #: settings.php:808
2405
  msgid "Generate code"
2406
  msgstr ""
2407
 
2408
- #: settings.php:813
2409
  msgid "Banner"
2410
  msgstr ""
2411
 
2412
- #: settings.php:824
2413
  msgid "Image"
2414
  msgstr ""
2415
 
2416
- #: settings.php:832
2417
  msgid "Link"
2418
  msgstr ""
2419
 
2420
- #: settings.php:843
2421
  msgid "Open link in a new tab"
2422
  msgstr ""
2423
 
2424
- #: settings.php:844
2425
  msgid "Select Image"
2426
  msgstr ""
2427
 
2428
- #: settings.php:845
2429
  msgid "Select Placeholder"
2430
  msgstr ""
2431
 
2432
- #: settings.php:857
2433
  msgid "Comment"
2434
  msgstr ""
2435
 
2436
- #: settings.php:866
2437
  msgctxt "AdSense"
2438
  msgid "Publisher ID"
2439
  msgstr ""
2440
 
2441
- #: settings.php:875
2442
  msgctxt "AdSense"
2443
  msgid "Ad Slot ID"
2444
  msgstr ""
2445
 
2446
- #: settings.php:884
2447
  msgid "Ad Type"
2448
  msgstr ""
2449
 
2450
- #: settings.php:908
2451
  msgid "AMP Ad"
2452
  msgstr ""
2453
 
2454
- #: settings.php:925
2455
  msgid "Show ad units from your AdSense account"
2456
  msgstr ""
2457
 
2458
- #: settings.php:925
2459
  msgid "AdSense ad units"
2460
  msgstr ""
2461
 
2462
- #: settings.php:942
2463
  msgctxt "AdSense"
2464
  msgid "Layout"
2465
  msgstr ""
2466
 
2467
- #: settings.php:951
2468
  msgctxt "AdSense"
2469
  msgid "Layout Key"
2470
  msgstr ""
2471
 
2472
- #: settings.php:961
2473
  msgid "Full width"
2474
  msgstr ""
2475
 
2476
- #: settings.php:963
2477
  msgctxt "Full width"
2478
  msgid "Enabled"
2479
  msgstr ""
2480
 
2481
- #: settings.php:964
2482
  msgctxt "Full width"
2483
  msgid "Disabled"
2484
  msgstr ""
2485
 
2486
- #: settings.php:1045
2487
  msgid ""
2488
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2489
  "Cookie or Referer (domain)"
2490
  msgstr ""
2491
 
2492
- #: settings.php:1045
2493
  msgid "Lists"
2494
  msgstr ""
2495
 
2496
- #: settings.php:1046
2497
  msgid "Widget, Shortcode and PHP function call"
2498
  msgstr ""
2499
 
2500
- #: settings.php:1046
2501
  msgid "Manual"
2502
  msgstr ""
2503
 
2504
- #: settings.php:1047
2505
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2506
  msgstr ""
2507
 
2508
- #: settings.php:1047
2509
  msgid "Devices"
2510
  msgstr ""
2511
 
2512
- #: settings.php:1048
2513
  msgid ""
2514
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2515
  "feeds), Filter, Scheduling, General tag"
2516
  msgstr ""
2517
 
2518
- #: settings.php:1048
2519
  msgid "Misc"
2520
  msgstr ""
2521
 
2522
- #: settings.php:1049
2523
  msgid "Preview code and alignment"
2524
  msgstr ""
2525
 
2526
- #: settings.php:1052 settings.php:2123
2527
  msgid ""
2528
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2529
  "editor is active before saving settings."
2530
  msgstr ""
2531
 
2532
- #: settings.php:1054
2533
- msgid "Save All Settings"
2534
- msgstr ""
2535
-
2536
- #: settings.php:1065 settings.php:1066
2537
  msgid "Enable insertion on posts"
2538
  msgstr ""
2539
 
2540
- #: settings.php:1066 settings.php:3269
2541
  msgid "Posts"
2542
  msgstr ""
2543
 
2544
- #: settings.php:1070 settings.php:1071
2545
  msgid ""
2546
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2547
  "page or theme homepage (available positions may depend on hooks used by the "
2548
  "theme)"
2549
  msgstr ""
2550
 
2551
- #: settings.php:1071 settings.php:3271
2552
  msgid "Homepage"
2553
  msgstr ""
2554
 
2555
- #: settings.php:1075 settings.php:1076
2556
  msgid "Enable insertion on category blog pages (including sub-pages)"
2557
  msgstr ""
2558
 
2559
- #: settings.php:1076 settings.php:3272
2560
  msgid "Category pages"
2561
  msgstr ""
2562
 
2563
- #: settings.php:1086 settings.php:1087
2564
  msgid "Enable insertion on static pages"
2565
  msgstr ""
2566
 
2567
- #: settings.php:1087 settings.php:3270
2568
  msgid "Static pages"
2569
  msgstr ""
2570
 
2571
- #: settings.php:1091 settings.php:1092
2572
  msgid "Enable insertion on search blog pages"
2573
  msgstr ""
2574
 
2575
- #: settings.php:1092 settings.php:3274
2576
  msgid "Search pages"
2577
  msgstr ""
2578
 
2579
- #: settings.php:1096 settings.php:1097
2580
  msgid "Enable insertion on tag or archive blog pages"
2581
  msgstr ""
2582
 
2583
- #: settings.php:1100
2584
  msgid "Toggle settings for default insertion and list of individual exceptions"
2585
  msgstr ""
2586
 
2587
- #: settings.php:1112
2588
  msgid ""
2589
  "Enable individual post/page exceptions for insertion of this block. They can "
2590
  "be configured on the individual post/page editor page (in the settings below "
2591
  "the editor)."
2592
  msgstr ""
2593
 
2594
- #: settings.php:1113
2595
  msgid ""
2596
  "Enable individual post/page exceptions for insertion of this block. When "
2597
  "enabled they can be configured on the individual post/page editor page (in "
2598
  "the settings below the editor)."
2599
  msgstr ""
2600
 
2601
- #: settings.php:1113
2602
  msgid "Use exceptions for individual posts or pages to change insertion"
2603
  msgstr ""
2604
 
2605
  #. Translators: Enabled means...
2606
- #: settings.php:1121
2607
  msgid ""
2608
  "means the insertion for this block is enabled by default and disabled for "
2609
  "exceptions."
2610
  msgstr ""
2611
 
2612
  #. Translators: Disabled means...
2613
- #: settings.php:1122
2614
  msgid ""
2615
  "means the insertion for this block is disabled by default and enabled for "
2616
  "exceptions."
2617
  msgstr ""
2618
 
2619
- #: settings.php:1123
2620
  msgid ""
2621
  "When individual post/page exceptions are enabled they can be configured on "
2622
  "the individual post/page editor page (in the settings below the editor)."
2623
  msgstr ""
2624
 
2625
- #: settings.php:1131
2626
  msgid ""
2627
  "No exception for post or static page defined. Block will not be inserted."
2628
  msgstr ""
2629
 
2630
- #: settings.php:1149
2631
  msgctxt "post"
2632
  msgid "Type"
2633
  msgstr ""
2634
 
2635
  #. translators: %d: block number
2636
- #: settings.php:1151
2637
  msgid "Are you sure you want to clear all exceptions for block %d?"
2638
  msgstr ""
2639
 
2640
- #: settings.php:1178 settings.php:1326 settings.php:1915
2641
  msgid "Insertion"
2642
  msgstr ""
2643
 
2644
- #: settings.php:1216
2645
  msgid ""
2646
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2647
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -2651,7 +2676,7 @@ msgid ""
2651
  "negative number means counting from the opposite direction"
2652
  msgstr ""
2653
 
2654
- #: settings.php:1217
2655
  msgid ""
2656
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2657
  "means every N images, empty means all images, 0 means random image, value "
@@ -2661,271 +2686,286 @@ msgid ""
2661
  "direction"
2662
  msgstr ""
2663
 
2664
- #: settings.php:1230
2665
  msgid ""
2666
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2667
  "numbers, %N means every N excerpts, empty means all excerpts"
2668
  msgstr ""
2669
 
2670
- #: settings.php:1231
2671
  msgid ""
2672
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2673
  "numbers, %N means every N posts, empty means all posts"
2674
  msgstr ""
2675
 
2676
- #: settings.php:1232
2677
  msgid ""
2678
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2679
  "numbers, %N means every N comments, empty means all comments"
2680
  msgstr ""
2681
 
2682
- #: settings.php:1239
2683
  msgid "Toggle paragraph counting settings"
2684
  msgstr ""
2685
 
2686
- #: settings.php:1240
2687
  msgid "Toggle paragraph clearance settings"
2688
  msgstr ""
2689
 
2690
- #: settings.php:1243
2691
  msgid "Toggle insertion filter settings"
2692
  msgstr ""
2693
 
2694
- #: settings.php:1261
2695
  msgid "Toggle insertion and alignment icons"
2696
  msgstr ""
2697
 
2698
- #: settings.php:1275
2699
  msgid "Custom CSS code for the wrapping div"
2700
  msgstr ""
2701
 
2702
- #: settings.php:1278 settings.php:1279 settings.php:1280 settings.php:1281
2703
- #: settings.php:1282 settings.php:1283
2704
  msgid "CSS code for the wrapping div, click to edit"
2705
  msgstr ""
2706
 
2707
- #: settings.php:1296
2708
  msgid "HTML element"
2709
  msgstr ""
2710
 
2711
- #: settings.php:1309
2712
  msgid "HTML element selector or comma separated list of selectors"
2713
  msgstr ""
2714
 
2715
- #: settings.php:1315 settings.php:2628
2716
  msgid "Action"
2717
  msgstr ""
2718
 
2719
- #: settings.php:1327
2720
  msgid ""
2721
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2722
  "Server-side insertion inserts block when the page is generated but needs "
2723
  "Output buffering enabled."
2724
  msgstr ""
2725
 
2726
- #: settings.php:1337
2727
  msgid "JavaScript code position"
2728
  msgstr ""
2729
 
2730
- #: settings.php:1338
2731
  msgid ""
2732
  "Page position where the JavaScript code for client-side insertion will be "
2733
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2734
  msgstr ""
2735
 
2736
- #: settings.php:1353
2737
  msgid "Count"
2738
  msgstr ""
2739
 
2740
- #: settings.php:1359
2741
  msgid "paragraphs with tags"
2742
  msgstr ""
2743
 
2744
- #: settings.php:1365
2745
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2746
  msgstr ""
2747
 
2748
- #: settings.php:1374
2749
  msgid "that have between"
2750
  msgstr ""
2751
 
2752
- #: settings.php:1380
2753
  msgid "Minimum number of paragraph words, leave empty for no limit"
2754
  msgstr ""
2755
 
2756
- #: settings.php:1389
2757
  msgid "Maximum number of paragraph words, leave empty for no limit"
2758
  msgstr ""
2759
 
2760
- #: settings.php:1392 settings.php:2042
2761
  msgid "words"
2762
  msgstr ""
2763
 
2764
- #: settings.php:1407 settings.php:1465 settings.php:1528 settings.php:1554
2765
  msgid "Comma separated texts"
2766
  msgstr ""
2767
 
2768
- #: settings.php:1420
2769
  msgid ""
2770
  "Count also paragraphs inside these elements - defined on general plugin "
2771
  "settings page - tab [*] / tab General"
2772
  msgstr ""
2773
 
2774
  #. Translators: %s: HTML tags
2775
- #: settings.php:1425
2776
  msgid "Count inside %s elements"
2777
  msgstr ""
2778
 
2779
  #. translators: inside [HTML tags] elements that contain
2780
- #: settings.php:1437
2781
  msgid "inside"
2782
  msgstr ""
2783
 
2784
- #: settings.php:1443
2785
  msgid "Comma separated HTML tag names of container elements"
2786
  msgstr ""
2787
 
2788
  #. translators: inside [HTML tags] elements that contain
2789
- #: settings.php:1452
2790
  msgid "elements that"
2791
  msgstr ""
2792
 
2793
- #: settings.php:1478
2794
- msgid "Minimum number of paragraphs"
 
 
 
 
2795
  msgstr ""
2796
 
2797
- #: settings.php:1496
 
 
 
 
 
 
 
 
 
 
 
2798
  msgid "Minimum number of words in paragraphs above"
2799
  msgstr ""
2800
 
2801
- #: settings.php:1502
2802
  msgid ""
2803
  "Used only with automatic insertion After paragraph and empty paragraph "
2804
  "numbers"
2805
  msgstr ""
2806
 
2807
- #: settings.php:1513 settings.php:1539
2808
  msgid "In"
2809
  msgstr ""
2810
 
2811
- #: settings.php:1519
2812
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2813
  msgstr ""
2814
 
2815
- #: settings.php:1522
2816
  msgid "paragraphs above avoid"
2817
  msgstr ""
2818
 
2819
- #: settings.php:1545
2820
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2821
  msgstr ""
2822
 
2823
- #: settings.php:1548
2824
  msgid "paragraphs below avoid"
2825
  msgstr ""
2826
 
2827
- #: settings.php:1564
2828
  msgid "If text is found"
2829
  msgstr ""
2830
 
2831
- #: settings.php:1571
2832
  msgid "check up to"
2833
  msgstr ""
2834
 
2835
- #: settings.php:1579
2836
  msgctxt "check up to"
2837
  msgid "paragraphs"
2838
  msgstr ""
2839
 
2840
- #: settings.php:1595
2841
  msgid "Categories"
2842
  msgstr ""
2843
 
2844
- #: settings.php:1598
2845
  msgid "Toggle category editor"
2846
  msgstr ""
2847
 
2848
- #: settings.php:1601
2849
  msgid "Comma separated category slugs"
2850
  msgstr ""
2851
 
2852
- #: settings.php:1605
2853
  msgid "Blacklist categories"
2854
  msgstr ""
2855
 
2856
- #: settings.php:1609
2857
  msgid "Whitelist categories"
2858
  msgstr ""
2859
 
2860
- #: settings.php:1621
2861
  msgid "Tags"
2862
  msgstr ""
2863
 
2864
- #: settings.php:1624
2865
  msgid "Toggle tag editor"
2866
  msgstr ""
2867
 
2868
- #: settings.php:1627
2869
  msgid "Comma separated tag slugs"
2870
  msgstr ""
2871
 
2872
- #: settings.php:1631
2873
  msgid "Blacklist tags"
2874
  msgstr ""
2875
 
2876
- #: settings.php:1635
2877
  msgid "Whitelist tags"
2878
  msgstr ""
2879
 
2880
- #: settings.php:1647
2881
  msgid "Taxonomies"
2882
  msgstr ""
2883
 
2884
- #: settings.php:1650
2885
  msgid "Toggle taxonomy editor"
2886
  msgstr ""
2887
 
2888
- #: settings.php:1653
2889
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2890
  msgstr ""
2891
 
2892
- #: settings.php:1657
2893
  msgid "Blacklist taxonomies"
2894
  msgstr ""
2895
 
2896
- #: settings.php:1661
2897
  msgid "Whitelist taxonomies"
2898
  msgstr ""
2899
 
2900
- #: settings.php:1673
2901
  msgid "Post IDs"
2902
  msgstr ""
2903
 
2904
- #: settings.php:1676
2905
  msgid "Toggle post/page ID editor"
2906
  msgstr ""
2907
 
2908
- #: settings.php:1679
2909
  msgid "Comma separated post/page IDs"
2910
  msgstr ""
2911
 
2912
- #: settings.php:1683
2913
  msgid "Blacklist IDs"
2914
  msgstr ""
2915
 
2916
- #: settings.php:1687
2917
  msgid "Whitelist IDs"
2918
  msgstr ""
2919
 
2920
- #: settings.php:1699
2921
  msgid "Urls"
2922
  msgstr ""
2923
 
2924
- #: settings.php:1702
2925
  msgid "Toggle url editor"
2926
  msgstr ""
2927
 
2928
- #: settings.php:1705
2929
  msgid ""
2930
  "Comma separated urls (page addresses) starting with / after domain name (e."
2931
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -2933,216 +2973,216 @@ msgid ""
2933
  "start*. *url-pattern*, *url-end)"
2934
  msgstr ""
2935
 
2936
- #: settings.php:1709
2937
  msgid "Blacklist urls"
2938
  msgstr ""
2939
 
2940
- #: settings.php:1713
2941
  msgid "Whitelist urls"
2942
  msgstr ""
2943
 
2944
- #: settings.php:1724
2945
  msgid "Url parameters"
2946
  msgstr ""
2947
 
2948
- #: settings.php:1728
2949
  msgid "Toggle url parameter and cookie editor"
2950
  msgstr ""
2951
 
2952
- #: settings.php:1731
2953
  msgid ""
2954
  "Comma separated url query parameters or cookies with optional values (use "
2955
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2956
  msgstr ""
2957
 
2958
- #: settings.php:1735
2959
  msgid "Blacklist url parameters"
2960
  msgstr ""
2961
 
2962
- #: settings.php:1739
2963
  msgid "Whitelist url parameters"
2964
  msgstr ""
2965
 
2966
- #: settings.php:1750
2967
  msgid "Referrers"
2968
  msgstr ""
2969
 
2970
- #: settings.php:1753
2971
  msgid "Toggle referer editor"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1756
2975
  msgid ""
2976
  "Comma separated domains, use # for no referrer, you can also use partial "
2977
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
2978
  msgstr ""
2979
 
2980
- #: settings.php:1760
2981
  msgid "Blacklist referers"
2982
  msgstr ""
2983
 
2984
- #: settings.php:1764
2985
  msgid "Whitelist referers"
2986
  msgstr ""
2987
 
2988
- #: settings.php:1784
2989
  msgid "Enable widget for this block"
2990
  msgstr ""
2991
 
2992
- #: settings.php:1796
2993
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2994
  msgstr ""
2995
 
2996
- #: settings.php:1797 settings.php:4057
2997
  msgid "Shortcode"
2998
  msgstr ""
2999
 
3000
- #: settings.php:1812
3001
  msgid ""
3002
  "Enable PHP function call to insert this block at any position in theme file. "
3003
  "If function is disabled for block it will return empty string."
3004
  msgstr ""
3005
 
3006
- #: settings.php:1813
3007
  msgid "PHP function"
3008
  msgstr ""
3009
 
3010
- #: settings.php:1828
3011
  msgid "Client-side device detection"
3012
  msgstr ""
3013
 
3014
- #: settings.php:1829
3015
  msgid "Server-side device detection"
3016
  msgstr ""
3017
 
3018
- #: settings.php:1836
3019
  msgid "Use client-side detection to"
3020
  msgstr ""
3021
 
3022
- #: settings.php:1838
3023
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3024
  msgstr ""
3025
 
3026
  #. Translators: only on (the following devices): viewport names (devices)
3027
  #. listed
3028
- #: settings.php:1843
3029
  msgid "only on"
3030
  msgstr ""
3031
 
3032
- #: settings.php:1871
3033
  msgid "Device min width %s px"
3034
  msgstr ""
3035
 
3036
- #: settings.php:1897
3037
  msgid "Use server-side detection to insert block only for"
3038
  msgstr ""
3039
 
3040
- #: settings.php:1916
3041
  msgid "Filter"
3042
  msgstr ""
3043
 
3044
- #: settings.php:1917
3045
  msgid "Word Count"
3046
  msgstr ""
3047
 
3048
- #: settings.php:1918 settings.php:4047
3049
  msgid "Scheduling"
3050
  msgstr ""
3051
 
3052
- #: settings.php:1919
3053
  msgid "Display"
3054
  msgstr ""
3055
 
3056
- #: settings.php:1921 settings.php:2165
3057
  msgid "General"
3058
  msgstr ""
3059
 
3060
- #: settings.php:1933
3061
  msgid "Old settings for AMP pages detected"
3062
  msgstr ""
3063
 
3064
- #: settings.php:1933
3065
  msgid ""
3066
  "To insert different codes on normal and AMP pages separate them with "
3067
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3068
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3069
  msgstr ""
3070
 
3071
- #: settings.php:1933
3072
  msgid "AMP pages"
3073
  msgstr ""
3074
 
3075
- #: settings.php:1938
3076
  msgid "Enable insertion for Ajax requests"
3077
  msgstr ""
3078
 
3079
- #: settings.php:1938
3080
  msgid "Ajax requests"
3081
  msgstr ""
3082
 
3083
- #: settings.php:1943
3084
  msgid "Enable insertion in RSS feeds"
3085
  msgstr ""
3086
 
3087
- #: settings.php:1943
3088
  msgid "RSS Feed"
3089
  msgstr ""
3090
 
3091
- #: settings.php:1948
3092
  msgid "Enable insertion on page for Error 404: Page not found"
3093
  msgstr ""
3094
 
3095
- #: settings.php:1948
3096
  msgid "Error 404 page"
3097
  msgstr ""
3098
 
3099
- #: settings.php:1960
3100
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3101
  msgstr ""
3102
 
3103
- #: settings.php:1961
3104
  msgid "insertions"
3105
  msgstr ""
3106
 
3107
- #: settings.php:1963
3108
  msgid ""
3109
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3110
  "General)"
3111
  msgstr ""
3112
 
3113
- #: settings.php:1966 settings.php:2334
3114
  msgid "Max blocks per page"
3115
  msgstr ""
3116
 
3117
- #: settings.php:1978
3118
  msgid "Insert for"
3119
  msgstr ""
3120
 
3121
- #: settings.php:1986
3122
  msgid ""
3123
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3124
  "currently active). Might speed up insertion on content pages when "
3125
  "the_content filter is called multiple times."
3126
  msgstr ""
3127
 
3128
- #: settings.php:1989
3129
  msgid "Insert only in the loop"
3130
  msgstr ""
3131
 
3132
- #: settings.php:1995
3133
  msgid ""
3134
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3135
  msgstr ""
3136
 
3137
- #: settings.php:1995
3138
  msgid "Disable caching"
3139
  msgstr ""
3140
 
3141
- #: settings.php:2007
3142
  msgid "Filter insertions"
3143
  msgstr ""
3144
 
3145
- #: settings.php:2010
3146
  msgid ""
3147
  "Filter multiple insertions by specifying wanted insertions for this block - "
3148
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3150,531 +3190,527 @@ msgid ""
3150
  "using only one insertion type."
3151
  msgstr ""
3152
 
3153
- #: settings.php:2013
3154
  msgid "using"
3155
  msgstr ""
3156
 
3157
- #: settings.php:2032
3158
  msgid "Checked means specified calls are unwanted"
3159
  msgstr ""
3160
 
3161
- #: settings.php:2032
3162
  msgid "Invert filter"
3163
  msgstr ""
3164
 
3165
- #: settings.php:2038
3166
- msgid "Post/Static page must have between"
3167
- msgstr ""
3168
-
3169
- #: settings.php:2039
3170
  msgid "Minimum number of post/static page words, leave empty for no limit"
3171
  msgstr ""
3172
 
3173
- #: settings.php:2041
3174
  msgid "Maximum number of post/static page words, leave empty for no limit"
3175
  msgstr ""
3176
 
3177
- #: settings.php:2054
3178
  msgid "days after publishing"
3179
  msgstr ""
3180
 
3181
- #: settings.php:2056
3182
  msgid "Not available"
3183
  msgstr ""
3184
 
3185
- #: settings.php:2069 settings.php:2326
3186
  msgid "Ad label"
3187
  msgstr ""
3188
 
3189
- #: settings.php:2089
3190
  msgid "General tag"
3191
  msgstr ""
3192
 
3193
- #: settings.php:2093
3194
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3195
  msgstr ""
3196
 
3197
  #. translators: %s: HTML tags
3198
- #: settings.php:2102
3199
  msgid ""
3200
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3201
  "side device detection!"
3202
  msgstr ""
3203
 
3204
- #: settings.php:2114
3205
  msgid "Settings"
3206
  msgstr ""
3207
 
3208
- #: settings.php:2117
3209
  msgid "Settings timestamp"
3210
  msgstr ""
3211
 
3212
- #: settings.php:2130
3213
  msgid "Are you sure you want to reset all settings?"
3214
  msgstr ""
3215
 
3216
- #: settings.php:2130
3217
  msgid "Reset All Settings"
3218
  msgstr ""
3219
 
3220
- #: settings.php:2166
3221
  msgid "Viewports"
3222
  msgstr ""
3223
 
3224
- #: settings.php:2167
3225
  msgid "Hooks"
3226
  msgstr ""
3227
 
3228
- #: settings.php:2168
3229
  msgid "Header"
3230
  msgstr ""
3231
 
3232
- #: settings.php:2169 strings.php:30
3233
  msgid "Footer"
3234
  msgstr ""
3235
 
3236
- #: settings.php:2174
3237
  msgid "Debugging"
3238
  msgstr ""
3239
 
3240
- #: settings.php:2184
3241
  msgid "Plugin priority"
3242
  msgstr ""
3243
 
3244
- #: settings.php:2192
3245
  msgid "Output buffering"
3246
  msgstr ""
3247
 
3248
- #: settings.php:2195
3249
  msgid "Needed for position Above header but may not work with all themes"
3250
  msgstr ""
3251
 
3252
- #: settings.php:2203
3253
  msgid "Syntax highlighting theme"
3254
  msgstr ""
3255
 
3256
- #: settings.php:2210
3257
  msgctxt "no syntax highlighting themes"
3258
  msgid "None"
3259
  msgstr ""
3260
 
3261
- #: settings.php:2211
3262
  msgid "No Syntax Highlighting"
3263
  msgstr ""
3264
 
3265
- #: settings.php:2213
3266
  msgctxt "syntax highlighting themes"
3267
  msgid "Light"
3268
  msgstr ""
3269
 
3270
- #: settings.php:2228
3271
  msgctxt "syntax highlighting themes"
3272
  msgid "Dark"
3273
  msgstr ""
3274
 
3275
- #: settings.php:2254
3276
  msgid "Min. user role for ind. exceptions editing"
3277
  msgstr ""
3278
 
3279
- #: settings.php:2264
3280
  msgid "Disable caching for logged in administrators"
3281
  msgstr ""
3282
 
3283
- #: settings.php:2267
3284
  msgid ""
3285
  "Enabled means that logged in administrators will see non-cached (live) pages "
3286
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3287
  msgstr ""
3288
 
3289
- #: settings.php:2275
3290
  msgid "Sticky widget mode"
3291
  msgstr ""
3292
 
3293
- #: settings.php:2278
3294
  msgid ""
3295
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3296
  "mode works with most themes but may reload ads on page load."
3297
  msgstr ""
3298
 
3299
- #: settings.php:2286
3300
  msgid "Sticky widget top margin"
3301
  msgstr ""
3302
 
3303
- #: settings.php:2294
3304
  msgid "Dynamic blocks"
3305
  msgstr ""
3306
 
3307
- #: settings.php:2307
3308
  msgid "Functions for paragraph counting"
3309
  msgstr ""
3310
 
3311
- #: settings.php:2310
3312
  msgid ""
3313
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3314
  "functions if paragraphs are not counted properly on non-english pages."
3315
  msgstr ""
3316
 
3317
- #: settings.php:2318
3318
  msgid "No paragraph counting inside"
3319
  msgstr ""
3320
 
3321
- #: settings.php:2329
3322
  msgid "Label text or HTML code"
3323
  msgstr ""
3324
 
3325
- #: settings.php:2337
3326
  msgid ""
3327
  "Maximum number of inserted blocks per page. You need to enable Max page "
3328
  "insertions (button Misc / tab Insertion) to count block for this limit."
3329
  msgstr ""
3330
 
3331
- #: settings.php:2351
3332
  msgid "Plugin usage tracking"
3333
  msgstr ""
3334
 
3335
  #. translators: %s: Ad Inserter
3336
- #: settings.php:2354
3337
  msgid ""
3338
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3339
  "Only information regarding the WordPress environment and %s usage is "
3340
  "recorded (once per month and on events like plugin activation/deactivation)."
3341
  msgstr ""
3342
 
3343
- #: settings.php:2372
3344
  msgid "CSS class name for the wrapping div"
3345
  msgstr ""
3346
 
3347
- #: settings.php:2372
3348
  msgid "Block class name"
3349
  msgstr ""
3350
 
3351
- #: settings.php:2376
3352
  msgid "Include general plugin block class"
3353
  msgstr ""
3354
 
3355
- #: settings.php:2376
3356
  msgid "Block class"
3357
  msgstr ""
3358
 
3359
- #: settings.php:2381
3360
  msgid "Include block number class"
3361
  msgstr ""
3362
 
3363
- #: settings.php:2381
3364
  msgid "Block number class"
3365
  msgstr ""
3366
 
3367
- #: settings.php:2386
3368
  msgid ""
3369
  "Instead of alignment classes generate inline alignment styles for blocks"
3370
  msgstr ""
3371
 
3372
- #: settings.php:2386
3373
  msgid "Inline styles"
3374
  msgstr ""
3375
 
3376
- #: settings.php:2392
3377
  msgid "Preview of the block wrapping code"
3378
  msgstr ""
3379
 
3380
- #: settings.php:2393
3381
  msgid "Wrapping div"
3382
  msgstr ""
3383
 
3384
- #: settings.php:2394 settings.php:2834
3385
  msgid "BLOCK CODE"
3386
  msgstr ""
3387
 
3388
- #: settings.php:2402
3389
  msgid "Viewport Settings used for client-side device detection"
3390
  msgstr ""
3391
 
3392
  #. Translators: %d: viewport number
3393
- #: settings.php:2410
3394
  msgid "Viewport %d name"
3395
  msgstr ""
3396
 
3397
- #: settings.php:2413
3398
  msgid "min width"
3399
  msgstr ""
3400
 
3401
- #: settings.php:2424
3402
  msgid "Custom Hooks"
3403
  msgstr ""
3404
 
3405
- #: settings.php:2436 settings.php:2439
3406
  msgid "Enable hook"
3407
  msgstr ""
3408
 
3409
  #. translators: %d: hook number
3410
- #: settings.php:2439
3411
  msgid "Hook %d name"
3412
  msgstr ""
3413
 
3414
- #: settings.php:2442
3415
  msgid "Hook name for automatic insertion selection"
3416
  msgstr ""
3417
 
3418
- #: settings.php:2445
3419
  msgid "action"
3420
  msgstr ""
3421
 
3422
- #: settings.php:2448
3423
  msgid "Action name as used in the do_action () function"
3424
  msgstr ""
3425
 
3426
- #: settings.php:2451
3427
  msgid "priority"
3428
  msgstr ""
3429
 
3430
- #: settings.php:2454
3431
  msgid "Priority for the hook (default is 10)"
3432
  msgstr ""
3433
 
3434
- #: settings.php:2475
3435
  msgid "Enable insertion of this code into HTML page header"
3436
  msgstr ""
3437
 
3438
- #: settings.php:2479 settings.php:2546 settings.php:2728
3439
  msgid "Process PHP code"
3440
  msgstr ""
3441
 
3442
- #: settings.php:2483
3443
  msgid "HTML Page Header Code"
3444
  msgstr ""
3445
 
3446
- #: settings.php:2491
3447
  msgid "Code in the %s section of the HTML page"
3448
  msgstr ""
3449
 
3450
- #: settings.php:2492
3451
  msgctxt "code in the header"
3452
  msgid "NOT ENABLED"
3453
  msgstr ""
3454
 
3455
- #: settings.php:2509 settings.php:2577
3456
  msgid "Use server-side detection to insert code only for"
3457
  msgstr ""
3458
 
3459
- #: settings.php:2524
3460
  msgid ""
3461
  "Enable insertion of this code into HTML page header on page for Error 404: "
3462
  "Page not found"
3463
  msgstr ""
3464
 
3465
- #: settings.php:2524 settings.php:2592
3466
  msgid "Insert on Error 404 page"
3467
  msgstr ""
3468
 
3469
- #: settings.php:2542
3470
  msgid "Enable insertion of this code into HTML page footer"
3471
  msgstr ""
3472
 
3473
- #: settings.php:2550
3474
  msgid "HTML Page Footer Code"
3475
  msgstr ""
3476
 
3477
  #. translators: %s: HTML tags
3478
- #: settings.php:2558
3479
  msgid "Code before the %s tag of the the HTML page"
3480
  msgstr ""
3481
 
3482
- #: settings.php:2559
3483
  msgctxt "code in the footer"
3484
  msgid "NOT ENABLED"
3485
  msgstr ""
3486
 
3487
- #: settings.php:2592
3488
  msgid ""
3489
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3490
  "Page not found"
3491
  msgstr ""
3492
 
3493
- #: settings.php:2608
3494
  msgid "Code for ad blocking detection inserted. Click for details."
3495
  msgstr ""
3496
 
3497
- #: settings.php:2613
3498
  msgid "Enable detection of ad blocking"
3499
  msgstr ""
3500
 
3501
- #: settings.php:2631
3502
  msgid "Global action when ad blocking is detected"
3503
  msgstr ""
3504
 
3505
- #: settings.php:2637
3506
  msgid "No action for"
3507
  msgstr ""
3508
 
3509
- #: settings.php:2638
3510
  msgid "Exceptions for global action when ad blocking is detected."
3511
  msgstr ""
3512
 
3513
- #: settings.php:2648
3514
  msgid "Delay Action"
3515
  msgstr ""
3516
 
3517
- #: settings.php:2651
3518
  msgid ""
3519
  "Number of page views to delay action when ad blocking is detected. Leave "
3520
  "empty for no delay (action fires on first page view). Sets cookie."
3521
  msgstr ""
3522
 
3523
- #: settings.php:2651
3524
  msgctxt "Delay Action for x "
3525
  msgid "page views"
3526
  msgstr ""
3527
 
3528
- #: settings.php:2656
3529
  msgid "No Action Period"
3530
  msgstr ""
3531
 
3532
- #: settings.php:2659
3533
  msgid ""
3534
  "Number of days to supress action when ad blocking is detected. Leave empty "
3535
  "for no no-action period (action fires always after defined page view delay). "
3536
  "Sets cookie."
3537
  msgstr ""
3538
 
3539
- #: settings.php:2659
3540
  msgctxt "no action period"
3541
  msgid "days"
3542
  msgstr ""
3543
 
3544
- #: settings.php:2664
3545
  msgid "Custom Selectors"
3546
  msgstr ""
3547
 
3548
- #: settings.php:2667
3549
  msgid ""
3550
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3551
  "blocking detection. Invisible element or element with zero height means ad "
3552
  "blocking is present."
3553
  msgstr ""
3554
 
3555
- #: settings.php:2679
3556
  msgid "Redirection Page"
3557
  msgstr ""
3558
 
3559
- #: settings.php:2691
3560
  msgid "Custom Url"
3561
  msgstr ""
3562
 
3563
- #: settings.php:2696
3564
  msgid ""
3565
  "Static page for redirection when ad blocking is detected. For other pages "
3566
  "select Custom url and set it below."
3567
  msgstr ""
3568
 
3569
- #: settings.php:2705
3570
  msgid "Custom Redirection Url"
3571
  msgstr ""
3572
 
3573
- #: settings.php:2717
3574
  msgid "Message HTML code"
3575
  msgstr ""
3576
 
3577
- #: settings.php:2730
3578
  msgid "Preview message when ad blocking is detected"
3579
  msgstr ""
3580
 
3581
- #: settings.php:2759
3582
  msgid "Prevent visitors from closing the warning message"
3583
  msgstr ""
3584
 
3585
- #: settings.php:2759
3586
  msgid "Undismissible Message"
3587
  msgstr ""
3588
 
3589
- #: settings.php:2765
3590
  msgid "Not undismissible for"
3591
  msgstr ""
3592
 
3593
- #: settings.php:2766
3594
  msgid "Users which can close the warning message."
3595
  msgstr ""
3596
 
3597
- #: settings.php:2780
3598
  msgid ""
3599
  "Force showing admin toolbar for administrators when viewing site. Enable "
3600
  "this option when you are logged in as admin and you don't see admin toolbar."
3601
  msgstr ""
3602
 
3603
- #: settings.php:2788
3604
  msgid "Disable header code (Header tab)"
3605
  msgstr ""
3606
 
3607
- #: settings.php:2792
3608
  msgid "Disable footer code (Footer tab)"
3609
  msgstr ""
3610
 
3611
  #. translators: %s: Ad Inserter
3612
- #: settings.php:2796
3613
  msgid "Disable %s JavaScript code"
3614
  msgstr ""
3615
 
3616
  #. translators: %s: Ad Inserter
3617
- #: settings.php:2800
3618
  msgid "Disable %s CSS code"
3619
  msgstr ""
3620
 
3621
- #: settings.php:2804
3622
  msgid ""
3623
  "Disable PHP code processing (in all blocks including header and footer code)"
3624
  msgstr ""
3625
 
3626
- #: settings.php:2808
3627
  msgid "Disable insertion of all blocks"
3628
  msgstr ""
3629
 
3630
- #: settings.php:2812
3631
  msgid "Disable insertions"
3632
  msgstr ""
3633
 
3634
  #. translators: %s: Ad Inserter
3635
- #: settings.php:2824
3636
  msgid "%s CSS CODE"
3637
  msgstr ""
3638
 
3639
- #: settings.php:2827
3640
  msgid "HEADER CODE"
3641
  msgstr ""
3642
 
3643
  #. translators: %s: PHP tags
3644
- #: settings.php:2833
3645
  msgid "BLOCK PHP CODE"
3646
  msgstr ""
3647
 
3648
  #. translators: %s: Ad Inserter
3649
- #: settings.php:2839
3650
  msgid "%s JS CODE"
3651
  msgstr ""
3652
 
3653
- #: settings.php:2842
3654
  msgid "FOOTER CODE"
3655
  msgstr ""
3656
 
3657
- #: settings.php:2851
3658
  msgid "Force showing admin toolbar when viewing site"
3659
  msgstr ""
3660
 
3661
- #: settings.php:2858
3662
  msgid "Enable debugging functions in admin toolbar"
3663
  msgstr ""
3664
 
3665
- #: settings.php:2860
3666
  msgid "Debugging functions in admin toolbar"
3667
  msgstr ""
3668
 
3669
- #: settings.php:2867
3670
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3671
  msgstr ""
3672
 
3673
- #: settings.php:2869
3674
  msgid "Debugging functions on mobile screens"
3675
  msgstr ""
3676
 
3677
- #: settings.php:2876
3678
  msgid ""
3679
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3680
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3683,224 +3719,224 @@ msgid ""
3683
  "administrators debugging is always enabled."
3684
  msgstr ""
3685
 
3686
- #: settings.php:2878
3687
  msgid "Remote debugging"
3688
  msgstr ""
3689
 
3690
- #: settings.php:2885
3691
  msgid ""
3692
  "Disable translation to see original texts for the settings and messages in "
3693
  "English"
3694
  msgstr ""
3695
 
3696
- #: settings.php:2887
3697
  msgid "Disable translation"
3698
  msgstr ""
3699
 
3700
- #: settings.php:3257
3701
  msgid "Available positions for current theme"
3702
  msgstr ""
3703
 
3704
- #: settings.php:3258
3705
  msgid "Error checking pages"
3706
  msgstr ""
3707
 
3708
- #: settings.php:3261
3709
  msgid "Toggle theme checker for available positions for automatic insertion"
3710
  msgstr ""
3711
 
3712
- #: settings.php:3261
3713
  msgctxt "Button"
3714
  msgid "Check"
3715
  msgstr ""
3716
 
3717
- #: settings.php:3268
3718
  msgid "Position"
3719
  msgstr ""
3720
 
3721
- #: settings.php:3273
3722
  msgid "Archive pages"
3723
  msgstr ""
3724
 
3725
- #: settings.php:3332
3726
  msgid ""
3727
  "Position not available because output buffering (tab [*]) is not enabled"
3728
  msgstr ""
3729
 
3730
- #: settings.php:3335 strings.php:226
3731
  msgid "Position not checked yet"
3732
  msgstr ""
3733
 
3734
- #: settings.php:3371
3735
  msgid "Toggle active/all blocks"
3736
  msgstr ""
3737
 
3738
- #: settings.php:3375 strings.php:213
3739
  msgid "Rearrange block order"
3740
  msgstr ""
3741
 
3742
- #: settings.php:3380
3743
  msgid "Save new block order"
3744
  msgstr ""
3745
 
3746
- #: settings.php:3406
3747
  msgid "Toggle active/all ad units"
3748
  msgstr ""
3749
 
3750
- #: settings.php:3410
3751
  msgid "Reload AdSense ad units"
3752
  msgstr ""
3753
 
3754
- #: settings.php:3414
3755
  msgid "Clear authorization to access AdSense account"
3756
  msgstr ""
3757
 
3758
- #: settings.php:3418 settings.php:4214 settings.php:4281 strings.php:221
3759
  msgid "Google AdSense Homepage"
3760
  msgstr ""
3761
 
3762
- #: settings.php:3434
3763
  msgid "Switch to physical ads.txt file"
3764
  msgstr ""
3765
 
3766
- #: settings.php:3435
3767
  msgid "Switch to virtual ads.txt file"
3768
  msgstr ""
3769
 
3770
  #. translators: %s: ads.txt
3771
- #: settings.php:3445
3772
  msgid "Open %s"
3773
  msgstr ""
3774
 
3775
- #: settings.php:3453
3776
  msgid "Reload ads.txt file"
3777
  msgstr ""
3778
 
3779
- #: settings.php:3457 settings.php:4341
3780
  msgid "Save"
3781
  msgstr ""
3782
 
3783
  #. translators: %s: Ad Inserter
3784
- #: settings.php:3632
3785
  msgid "ads.txt file: %s virtual ads.txt file"
3786
  msgstr ""
3787
 
3788
- #: settings.php:3637 settings.php:3657 strings.php:205
3789
  msgid "Warning"
3790
  msgstr ""
3791
 
3792
  #. translators: %s: Ad Inserter
3793
- #: settings.php:3637
3794
  msgid "%s virtual file ads.txt not found"
3795
  msgstr ""
3796
 
3797
- #: settings.php:3645
3798
  msgid "IMPORTANT"
3799
  msgstr ""
3800
 
3801
- #: settings.php:3645
3802
  msgid "ads.txt file must be placed on the root domain"
3803
  msgstr ""
3804
 
3805
- #: settings.php:3650
3806
  msgid "ads.txt file"
3807
  msgstr ""
3808
 
3809
- #: settings.php:3657
3810
  msgid "file %s not found"
3811
  msgstr ""
3812
 
3813
- #: settings.php:3667
3814
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3815
  msgstr ""
3816
 
3817
  #. translators: %s: Ad Inserter
3818
- #: settings.php:3673
3819
  msgid "%s virtual ads.txt file"
3820
  msgstr ""
3821
 
3822
- #: settings.php:3695
3823
  msgid "Advertising system"
3824
  msgstr ""
3825
 
3826
- #: settings.php:3696
3827
  msgid "Account ID"
3828
  msgstr ""
3829
 
3830
- #: settings.php:3698
3831
  msgid "Certification authority ID"
3832
  msgstr ""
3833
 
3834
- #: settings.php:3713
3835
  msgid "Account ID found in block and present in ads.txt"
3836
  msgstr ""
3837
 
3838
- #: settings.php:3717
3839
  msgid "Account ID found in block but not present in ads.txt"
3840
  msgstr ""
3841
 
3842
- #: settings.php:4004
3843
  msgid "Preview block"
3844
  msgstr ""
3845
 
3846
- #: settings.php:4013
3847
  msgid "Insertion disabled"
3848
  msgstr ""
3849
 
3850
- #: settings.php:4043
3851
  msgid "Automatic insertion"
3852
  msgstr ""
3853
 
3854
  #. translators: %s HTML tags
3855
- #: settings.php:4044 settings.php:4950
3856
  msgid "PHP code processing"
3857
  msgstr ""
3858
 
3859
- #: settings.php:4046
3860
  msgid "Device detection"
3861
  msgstr ""
3862
 
3863
- #: settings.php:4059
3864
  msgid "Widget positions"
3865
  msgstr ""
3866
 
3867
- #: settings.php:4125
3868
  msgid "Ad unit"
3869
  msgstr ""
3870
 
3871
- #: settings.php:4127
3872
  msgid "Slot ID"
3873
  msgstr ""
3874
 
3875
- #: settings.php:4153
3876
  msgid "Copy AdSense code"
3877
  msgstr ""
3878
 
3879
- #: settings.php:4156
3880
  msgid "Preview AdSense ad"
3881
  msgstr ""
3882
 
3883
- #: settings.php:4159
3884
  msgid "Get AdSense code"
3885
  msgstr ""
3886
 
3887
  #. translators: %s: HTML tags
3888
- #: settings.php:4191
3889
  msgid ""
3890
  "Please %s clear authorization %s with the button %s above and once again "
3891
  "authorize access to your AdSense account."
3892
  msgstr ""
3893
 
3894
- #: settings.php:4210
3895
  msgid "AdSense Integration"
3896
  msgstr ""
3897
 
3898
- #: settings.php:4212
3899
  msgid "AdSense Integration - Step 2"
3900
  msgstr ""
3901
 
3902
  #. translators: %s: HTML tags
3903
- #: settings.php:4218
3904
  msgid ""
3905
  "Authorize %s to access your AdSense account. Click on the %s Get "
3906
  "Authorization Code %s button to open a new window where you can allow "
@@ -3909,7 +3945,7 @@ msgid ""
3909
  msgstr ""
3910
 
3911
  #. translators: %s: HTML tags
3912
- #: settings.php:4225
3913
  msgid ""
3914
  "If you get error, can't access ad units or would like to use own Google API "
3915
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3917,7 +3953,7 @@ msgid ""
3917
  msgstr ""
3918
 
3919
  #. translators: %s: HTML tags
3920
- #: settings.php:4227
3921
  msgid ""
3922
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3923
  "Authorization Code %s button to open a new window where you can allow "
@@ -3926,38 +3962,38 @@ msgid ""
3926
  msgstr ""
3927
 
3928
  #. translators: %s: HTML tags
3929
- #: settings.php:4234
3930
  msgid ""
3931
  "If you get error %s invalid client %s click on the button %s Clear and "
3932
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3933
  msgstr ""
3934
 
3935
- #: settings.php:4245
3936
  msgid "Get Authorization Code"
3937
  msgstr ""
3938
 
3939
- #: settings.php:4248
3940
  msgid "Enter Authorization Code"
3941
  msgstr ""
3942
 
3943
- #: settings.php:4258
3944
  msgid "Use own API IDs"
3945
  msgstr ""
3946
 
3947
- #: settings.php:4260
3948
  msgid "Clear and return to Step 1"
3949
  msgstr ""
3950
 
3951
- #: settings.php:4264
3952
  msgid "Authorize"
3953
  msgstr ""
3954
 
3955
- #: settings.php:4280
3956
  msgid "AdSense Integration - Step 1"
3957
  msgstr ""
3958
 
3959
  #. translators: %s: Ad Inserter
3960
- #: settings.php:4284
3961
  msgid ""
3962
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3963
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3966,172 +4002,180 @@ msgid ""
3966
  msgstr ""
3967
 
3968
  #. translators: %s: HTML tags
3969
- #: settings.php:4293
3970
  msgid "Go to %s Google APIs and Services console %s"
3971
  msgstr ""
3972
 
3973
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3974
- #: settings.php:4294
3975
  msgid ""
3976
  "Create %1$s project - if the project and IDs are already created click on "
3977
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3978
  msgstr ""
3979
 
3980
  #. translators: %s: HTML tags
3981
- #: settings.php:4295
3982
  msgid ""
3983
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3984
  "create a new project"
3985
  msgstr ""
3986
 
3987
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3988
- #: settings.php:4296
3989
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3990
  msgstr ""
3991
 
3992
  #. translators: %s: HTML tags
3993
- #: settings.php:4297
3994
  msgid ""
3995
  "Click on project selection, wait for the project to be created and then and "
3996
  "select %s as the current project"
3997
  msgstr ""
3998
 
3999
  #. translators: %s: HTML tags
4000
- #: settings.php:4298
4001
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4002
  msgstr ""
4003
 
4004
  #. translators: %s: HTML tags
4005
- #: settings.php:4299
4006
  msgid "Search for adsense and enable %s"
4007
  msgstr ""
4008
 
4009
  #. translators: %s: HTML tags
4010
- #: settings.php:4300
4011
  msgid "Click on %s CREATE CREDENTIALS %s"
4012
  msgstr ""
4013
 
4014
  #. translators: %s: HTML tags
4015
- #: settings.php:4301
4016
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4017
  msgstr ""
4018
 
4019
  #. translators: %s: HTML tags
4020
- #: settings.php:4302
4021
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4022
  msgstr ""
4023
 
4024
  #. translators: %s: HTML tags
4025
- #: settings.php:4303
4026
  msgid "Click on %s What credentials do I need? %s"
4027
  msgstr ""
4028
 
4029
  #. translators: %s: HTML tags
4030
- #: settings.php:4304
4031
  msgid ""
4032
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4033
  "Ad Inserter client %s"
4034
  msgstr ""
4035
 
4036
  #. translators: %s: HTML tags
4037
- #: settings.php:4305
4038
  msgid ""
4039
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4040
  "enter %s"
4041
  msgstr ""
4042
 
4043
  #. translators: %s: HTML tags
4044
- #: settings.php:4306
4045
  msgid "Click on %s Continue %s"
4046
  msgstr ""
4047
 
4048
  #. translators: %s: HTML tags
4049
- #: settings.php:4307
4050
  msgid "Click on %s Done %s"
4051
  msgstr ""
4052
 
4053
  #. translators: %s: HTML tags
4054
- #: settings.php:4308
4055
  msgid ""
4056
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4057
  "secret %s"
4058
  msgstr ""
4059
 
4060
- #: settings.php:4309
4061
  msgid "Copy them to the appropriate fields below"
4062
  msgstr ""
4063
 
4064
- #: settings.php:4315
4065
  msgid "Client ID"
4066
  msgstr ""
4067
 
4068
- #: settings.php:4318
4069
  msgid "Enter Client ID"
4070
  msgstr ""
4071
 
4072
- #: settings.php:4323
4073
  msgid "Client secret"
4074
  msgstr ""
4075
 
4076
- #: settings.php:4326
4077
  msgid "Enter Client secret"
4078
  msgstr ""
4079
 
4080
- #: settings.php:4336
4081
  msgid "Use default API IDs"
4082
  msgstr ""
4083
 
4084
- #: settings.php:4617 settings.php:4630 settings.php:4643 settings.php:4658
 
 
 
 
 
 
 
 
4085
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4086
  msgstr ""
4087
 
4088
- #: settings.php:4622 settings.php:4635 settings.php:4648 settings.php:4663
4089
- #: settings.php:4843 settings.php:4847 settings.php:4865 settings.php:4869
4090
- #: settings.php:4877 settings.php:4880 settings.php:4886 settings.php:4898
4091
  msgid "Looking for AdSense alternative?"
4092
  msgstr ""
4093
 
4094
- #: settings.php:4674
4095
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4096
  msgstr ""
4097
 
4098
- #: settings.php:4679 settings.php:4845 settings.php:4849 settings.php:4857
4099
- #: settings.php:4883
4100
  msgid "Use Infolinks ads with Adsense to earn more"
4101
  msgstr ""
4102
 
4103
- #: settings.php:4698 settings.php:4736
4104
  msgid "Support plugin development"
4105
  msgstr ""
4106
 
4107
- #: settings.php:4699 settings.php:4737
4108
  msgid ""
4109
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4110
  "reviewing the plugin on WordPres"
4111
  msgstr ""
4112
 
4113
- #: settings.php:4699
4114
  msgctxt "Review ad Inserter"
4115
  msgid "Review"
4116
  msgstr ""
4117
 
4118
- #: settings.php:4700
4119
  msgid ""
4120
  "Support free Ad Inserter development. If you are making money with Ad "
4121
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4122
  "you!"
4123
  msgstr ""
4124
 
4125
- #: settings.php:4700
4126
  msgid "Donate"
4127
  msgstr ""
4128
 
4129
- #: settings.php:4707 settings.php:4752
4130
  msgid "Average rating of the plugin - Thank you!"
4131
  msgstr ""
4132
 
4133
  #. translators: %s: Ad Inserter, HTML tags
4134
- #: settings.php:4718
4135
  msgid ""
4136
  "You've been using %s for a while now, and I hope you're happy with it. "
4137
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4140,31 +4184,31 @@ msgid ""
4140
  "your website. %s Thank you!"
4141
  msgstr ""
4142
 
4143
- #: settings.php:4737
4144
  msgid "Review"
4145
  msgstr ""
4146
 
4147
- #: settings.php:4741
4148
  msgid "Ad Inserter on Twitter"
4149
  msgstr ""
4150
 
4151
- #: settings.php:4742
4152
  msgid "Ad Inserter on Facebook"
4153
  msgstr ""
4154
 
4155
- #: settings.php:4745
4156
  msgid "Follow Ad Inserter"
4157
  msgstr ""
4158
 
4159
  #. translators: %s: HTML tags
4160
- #: settings.php:4772
4161
  msgid ""
4162
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4163
  "and %s Common Settings %s pages"
4164
  msgstr ""
4165
 
4166
  #. translators: %s: HTML tags
4167
- #: settings.php:4784
4168
  msgid ""
4169
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4170
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
@@ -4172,325 +4216,325 @@ msgid ""
4172
  msgstr ""
4173
 
4174
  #. translators: %s: HTML tags
4175
- #: settings.php:4805
4176
  msgid ""
4177
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4178
  "purchase you refer to us"
4179
  msgstr ""
4180
 
4181
  #. translators: %s: HTML tags
4182
- #: settings.php:4812
4183
  msgid ""
4184
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4185
  "diagnose and fix the problem."
4186
  msgstr ""
4187
 
4188
  #. translators: %s: HTML tags
4189
- #: settings.php:4816
4190
  msgid ""
4191
  "If you need any kind of help or support, please do not hesitate to open a "
4192
  "thread on the %s support forum. %s"
4193
  msgstr ""
4194
 
4195
- #: settings.php:4861 settings.php:4902
4196
  msgid "A/B testing - Track ad impressions and clicks"
4197
  msgstr ""
4198
 
4199
- #: settings.php:4894 settings.php:4906
4200
  msgid "Code preview with visual CSS editor"
4201
  msgstr ""
4202
 
4203
- #: settings.php:4914
4204
  msgid "Looking for Pro Ad Management plugin?"
4205
  msgstr ""
4206
 
4207
- #: settings.php:4915
4208
  msgid "To Optimally Monetize your WordPress website?"
4209
  msgstr ""
4210
 
4211
  #. translators: %s HTML tags
4212
- #: settings.php:4918
4213
  msgid "%s AdSense Integration %s"
4214
  msgstr ""
4215
 
4216
  #. translators: %s HTML tags
4217
- #: settings.php:4919
4218
  msgid "Syntax highlighting %s editor %s"
4219
  msgstr ""
4220
 
4221
  #. translators: %s HTML tags
4222
- #: settings.php:4920
4223
  msgid "%s Code preview %s with visual CSS editor"
4224
  msgstr ""
4225
 
4226
  #. translators: %s HTML tags
4227
- #: settings.php:4921
4228
  msgid "Simple user interface - all settings on a single page"
4229
  msgstr ""
4230
 
4231
  #. translators: %s HTML tags
4232
- #: settings.php:4922
4233
  msgid ""
4234
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4235
  "image / excerpt"
4236
  msgstr ""
4237
 
4238
  #. translators: %s HTML tags
4239
- #: settings.php:4923
4240
  msgid "%s Automatic insertion %s between posts on blog pages"
4241
  msgstr ""
4242
 
4243
  #. translators: %s HTML tags
4244
- #: settings.php:4924
4245
  msgid "%s Automatic insertion %s before, between and after comments"
4246
  msgstr ""
4247
 
4248
  #. translators: %s HTML tags
4249
- #: settings.php:4925
4250
  msgid "%s Automatic insertion %s after %s or before %s tag"
4251
  msgstr ""
4252
 
4253
  #. translators: %s HTML tags
4254
- #: settings.php:4926
4255
  msgid "Automatic insertion at %s custom hook positions %s"
4256
  msgstr ""
4257
 
4258
  #. translators: %s HTML tags
4259
- #: settings.php:4927
4260
  msgid ""
4261
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4262
  "selectors)"
4263
  msgstr ""
4264
 
4265
  #. translators: %s HTML tags
4266
- #: settings.php:4928
4267
  msgid "%s Insertion exceptions %s for individual posts and pages"
4268
  msgstr ""
4269
 
4270
  #. translators: %s HTML tags
4271
- #: settings.php:4929
4272
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4273
  msgstr ""
4274
 
4275
  #. translators: %s HTML tags
4276
- #: settings.php:4930
4277
  msgid ""
4278
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4279
  "scrolls)"
4280
  msgstr ""
4281
 
4282
  #. translators: %s HTML tags
4283
- #: settings.php:4931
4284
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4285
  msgstr ""
4286
 
4287
  #. translators: %s HTML tags
4288
- #: settings.php:4932
4289
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4290
  msgstr ""
4291
 
4292
  #. translators: %s HTML tags
4293
- #: settings.php:4933
4294
  msgid ""
4295
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4296
  "visible)"
4297
  msgstr ""
4298
 
4299
  #. translators: %s HTML tags
4300
- #: settings.php:4934
4301
  msgid ""
4302
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4303
  msgstr ""
4304
 
4305
  #. translators: %s HTML tags
4306
- #: settings.php:4935
4307
  msgid "Block %s alignment and style %s customizations"
4308
  msgstr ""
4309
 
4310
  #. translators: %s HTML tags
4311
- #: settings.php:4936
4312
  msgid ""
4313
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4314
  "TOS)"
4315
  msgstr ""
4316
 
4317
  #. translators: %s HTML tags
4318
- #: settings.php:4937
4319
  msgid ""
4320
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4321
  "feeds"
4322
  msgstr ""
4323
 
4324
  #. translators: %s HTML tags
4325
- #: settings.php:4938
4326
  msgid "%s Ad rotation %s (works also with caching)"
4327
  msgstr ""
4328
 
4329
  #. translators: %s HTML tags
4330
- #: settings.php:4939
4331
  msgid "Create, edit and check %s ads.txt %s file"
4332
  msgstr ""
4333
 
4334
  #. translators: %s HTML tags
4335
- #: settings.php:4940
4336
  msgid ""
4337
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4338
  "AdSense)"
4339
  msgstr ""
4340
 
4341
  #. translators: %s HTML tags
4342
- #: settings.php:4941
4343
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4344
  msgstr ""
4345
 
4346
  #. translators: %s HTML tags
4347
- #: settings.php:4942
4348
  msgid "%s Public web reports %s for clients, export to PDF"
4349
  msgstr ""
4350
 
4351
  #. translators: %s HTML tags
4352
- #: settings.php:4943
4353
  msgid "Support for %s A/B testing %s"
4354
  msgstr ""
4355
 
4356
  #. translators: %s HTML tags
4357
- #: settings.php:4944
4358
  msgid "Frequency capping - %s limit impressions or clicks %s"
4359
  msgstr ""
4360
 
4361
  #. translators: %s HTML tags
4362
- #: settings.php:4945
4363
  msgid "Click fraud %s protection %s"
4364
  msgstr ""
4365
 
4366
  #. translators: %s HTML tags
4367
- #: settings.php:4946
4368
  msgid "Support for %s lazy loading %s"
4369
  msgstr ""
4370
 
4371
  #. translators: %s HTML tags
4372
- #: settings.php:4947
4373
  msgid "Support for ads on %s AMP pages %s"
4374
  msgstr ""
4375
 
4376
  #. translators: %s HTML tags
4377
- #: settings.php:4948
4378
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4379
  msgstr ""
4380
 
4381
  #. translators: %s HTML tags
4382
- #: settings.php:4949
4383
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4384
  msgstr ""
4385
 
4386
  #. translators: %s HTML tags
4387
- #: settings.php:4951
4388
  msgid "%s Banner %s code generator"
4389
  msgstr ""
4390
 
4391
  #. translators: %s HTML tags
4392
- #: settings.php:4952
4393
  msgid "Support for %s header and footer %s code"
4394
  msgstr ""
4395
 
4396
  #. translators: %s HTML tags
4397
- #: settings.php:4953
4398
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4399
  msgstr ""
4400
 
4401
  #. translators: %s HTML tags
4402
- #: settings.php:4954
4403
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4404
  msgstr ""
4405
 
4406
  #. translators: %s HTML tags
4407
- #: settings.php:4955
4408
  msgid "Client-side %s mobile device detection %s (works with caching)"
4409
  msgstr ""
4410
 
4411
  #. translators: %s HTML tags
4412
- #: settings.php:4956
4413
  msgid ""
4414
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4415
  "protection"
4416
  msgstr ""
4417
 
4418
  #. translators: %s HTML tags
4419
- #: settings.php:4957
4420
  msgid "%s Ad blocking statistics %s"
4421
  msgstr ""
4422
 
4423
  #. translators: %s HTML tags
4424
- #: settings.php:4958
4425
  msgid ""
4426
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4427
  "referers"
4428
  msgstr ""
4429
 
4430
  #. translators: %s HTML tags
4431
- #: settings.php:4959
4432
  msgid ""
4433
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4434
  msgstr ""
4435
 
4436
  #. translators: %s HTML tags
4437
- #: settings.php:4960
4438
  msgid "%s Multisite options %s to limit settings on the sites"
4439
  msgstr ""
4440
 
4441
  #. translators: %s HTML tags
4442
- #: settings.php:4961
4443
  msgid "%s Import/Export %s block or plugin settings"
4444
  msgstr ""
4445
 
4446
  #. translators: %s HTML tags
4447
- #: settings.php:4962
4448
  msgid "%s Insertion scheduling %s with fallback option"
4449
  msgstr ""
4450
 
4451
  #. translators: %s HTML tags
4452
- #: settings.php:4963
4453
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4454
  msgstr ""
4455
 
4456
  #. translators: %s HTML tags
4457
- #: settings.php:4964
4458
  msgid "Simple troubleshooting with many %s debugging functions %s"
4459
  msgstr ""
4460
 
4461
  #. translators: %s HTML tags
4462
- #: settings.php:4965
4463
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4464
  msgstr ""
4465
 
4466
  #. translators: %s HTML tags
4467
- #: settings.php:4966
4468
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4469
  msgstr ""
4470
 
4471
  #. translators: %s HTML tags
4472
- #: settings.php:4967
4473
  msgid ""
4474
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4475
  msgstr ""
4476
 
4477
  #. translators: %s HTML tags
4478
- #: settings.php:4968
4479
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4480
  msgstr ""
4481
 
4482
  #. translators: %s HTML tags
4483
- #: settings.php:4969
4484
  msgid "No ads on the settings page"
4485
  msgstr ""
4486
 
4487
  #. translators: %s HTML tags
4488
- #: settings.php:4970
4489
  msgid "Premium support"
4490
  msgstr ""
4491
 
4492
  #. translators: %s HTML tags
4493
- #: settings.php:4973
4494
  msgid ""
4495
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4496
  "website with many advertising features to automatically insert adverts on "
@@ -4505,82 +4549,82 @@ msgid ""
4505
  msgstr ""
4506
 
4507
  #. translators: %s HTML tags
4508
- #: settings.php:4986
4509
  msgid "Looking for %s Pro Ad Management plugin? %s"
4510
  msgstr ""
4511
 
4512
  #. translators: %s HTML tags
4513
- #: settings.php:4991
4514
  msgid "Ads between posts"
4515
  msgstr ""
4516
 
4517
  #. translators: %s HTML tags
4518
- #: settings.php:4992
4519
  msgid "Ads between comments"
4520
  msgstr ""
4521
 
4522
  #. translators: %s HTML tags
4523
- #: settings.php:4993
4524
  msgid "Support via email"
4525
  msgstr ""
4526
 
4527
  #. translators: %s HTML tags
4528
- #: settings.php:4999
4529
  msgid "%s Sticky positions %s"
4530
  msgstr ""
4531
 
4532
  #. translators: %s HTML tags
4533
- #: settings.php:5000
4534
  msgid "%s Limit insertions %s"
4535
  msgstr ""
4536
 
4537
  #. translators: %s HTML tags
4538
- #: settings.php:5001
4539
  msgid "%s Clearance %s options"
4540
  msgstr ""
4541
 
4542
  #. translators: %s HTML tags
4543
- #: settings.php:5007
4544
  msgid "Ad rotation"
4545
  msgstr ""
4546
 
4547
  #. translators: %s HTML tags
4548
- #: settings.php:5008
4549
  msgid "%s A/B testing %s"
4550
  msgstr ""
4551
 
4552
  #. translators: %s HTML tags
4553
- #: settings.php:5009
4554
  msgid "%s Ad tracking %s"
4555
  msgstr ""
4556
 
4557
  #. translators: %s HTML tags
4558
- #: settings.php:5015
4559
  msgid "Support for %s AMP pages %s"
4560
  msgstr ""
4561
 
4562
  #. translators: %s HTML tags
4563
- #: settings.php:5016
4564
  msgid "%s Ad blocking detection %s"
4565
  msgstr ""
4566
 
4567
  #. translators: %s HTML tags
4568
- #: settings.php:5017
4569
  msgid "%s Mobile device detection %s"
4570
  msgstr ""
4571
 
4572
  #. translators: %s HTML tags
4573
- #: settings.php:5024
4574
  msgid "64 code blocks"
4575
  msgstr ""
4576
 
4577
  #. translators: %s HTML tags
4578
- #: settings.php:5025
4579
  msgid "%s GEO targeting %s"
4580
  msgstr ""
4581
 
4582
  #. translators: %s HTML tags
4583
- #: settings.php:5026
4584
  msgid "%s Scheduling %s"
4585
  msgstr ""
4586
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-09-22 10:05:32+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:403
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:419
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:426
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:497
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:504
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:513
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:520
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:530
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1133
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1138
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1143 strings.php:103
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1148 strings.php:104
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1153 strings.php:105
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1158 strings.php:155
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1205
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1209
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1418
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1743 ad-inserter.php:2669
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2190
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2190
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2191
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2192
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2193
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2194
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2195
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2394
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2395 includes/functions.old.php:1652
144
+ #: includes/functions.php:1697
145
  msgid "No, thank you."
146
  msgstr ""
147
 
148
  #. Translators: %s: Ad Inserter
149
+ #: ad-inserter.php:2398
150
  msgid ""
151
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
152
  msgstr ""
153
 
154
+ #: ad-inserter.php:2399 includes/functions.old.php:1655
155
+ #: includes/functions.php:1700
156
  msgid "Not now, maybe later."
157
  msgstr ""
158
 
159
+ #: ad-inserter.php:2409
160
  msgid "I would really appreciate if you could rate the plugin on WordPres."
161
  msgstr ""
162
 
163
+ #: ad-inserter.php:2411
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
+ #: ad-inserter.php:2417
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2422
175
  msgid "I already did."
176
  msgstr ""
177
 
178
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
179
+ #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
180
+ #: ad-inserter.php:2434 ad-inserter.php:2460
181
+ msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
182
+ msgstr ""
183
+
184
+ #: ad-inserter.php:2442
185
  msgctxt "Menu item"
186
  msgid "Settings"
187
  msgstr ""
188
 
189
  #. translators: %s: Ad Inserter
190
+ #: ad-inserter.php:2560
191
  msgctxt "Meta box name"
192
  msgid "%s Individual Exceptions"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2589 ad-inserter.php:8656 class.php:2060
196
  #: includes/preview.php:1976 includes/preview.php:2020
197
+ #: includes/preview.php:2057 settings.php:4051 strings.php:3
198
  msgid "Block"
199
  msgstr ""
200
 
201
+ #: ad-inserter.php:2590 settings.php:4052 settings.php:4137
202
  msgid "Name"
203
  msgstr ""
204
 
205
+ #: ad-inserter.php:2593 settings.php:1123
206
  msgid "Default insertion"
207
  msgstr ""
208
 
209
  #. translators: For this post or page
210
+ #: ad-inserter.php:2596
211
  msgctxt "Page"
212
  msgid "For this"
213
  msgstr ""
214
 
215
+ #: ad-inserter.php:2597
216
  msgctxt "Post"
217
  msgid "For this"
218
  msgstr ""
219
 
220
+ #: ad-inserter.php:2609
221
  msgctxt "Enabled/disabled on all"
222
  msgid "pages"
223
  msgstr ""
224
 
225
+ #: ad-inserter.php:2612
226
  msgctxt "Enabled/disabled on all"
227
  msgid "posts"
228
  msgstr ""
229
 
230
+ #: ad-inserter.php:2630 ad-inserter.php:2642 strings.php:161
231
  msgid "Enabled"
232
  msgstr ""
233
 
234
  #. translators: Menu items
235
+ #: ad-inserter.php:2630 ad-inserter.php:2642 includes/functions.old.php:2326
236
+ #: includes/functions.php:2373 strings.php:16
237
  msgid "Disabled"
238
  msgstr ""
239
 
240
+ #: ad-inserter.php:2632
241
  msgid "No individual exceptions"
242
  msgstr ""
243
 
244
  #. translators: Not enabled for pages or posts
245
+ #: ad-inserter.php:2634
246
  msgid "Not enabled for"
247
  msgstr ""
248
 
249
  #. translators: No individual exceptions enabled for pages or posts
250
+ #: ad-inserter.php:2662
251
  msgid "No block has individual exceptions enabled"
252
  msgstr ""
253
 
254
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
255
+ #: ad-inserter.php:2667
256
  msgid ""
257
  "Default insertion can be configured for each block on %1$s page - button "
258
  "next to %2$s checkbox."
259
  msgstr ""
260
 
261
+ #: ad-inserter.php:2670 settings.php:1101
262
  msgid "Tag / Archive pages"
263
  msgstr ""
264
 
265
+ #: ad-inserter.php:2672
266
  msgid ""
267
  "When individual exceptions for a block are enabled, a checkbox will be "
268
  "listed here to change default insertion for this post or page."
269
  msgstr ""
270
 
271
+ #: ad-inserter.php:2673
272
  msgid ""
273
  "This way you can individually enable or disable blocks on specific posts or "
274
  "pages."
275
  msgstr ""
276
 
277
+ #: ad-inserter.php:2675
278
  msgid "For more information check page %s"
279
  msgstr ""
280
 
281
  #. translators: Ad Inserter Exceptions documentation page
282
+ #: ad-inserter.php:2677
283
  msgid "Individual Exceptions"
284
  msgstr ""
285
 
286
+ #: ad-inserter.php:2724
287
  msgid "STATIC PAGE"
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:2727
291
  msgid "POST"
292
  msgstr ""
293
 
294
+ #: ad-inserter.php:2730
295
  msgid "HOMEPAGE"
296
  msgstr ""
297
 
298
+ #: ad-inserter.php:2733
299
  msgid "CATEGORY PAGE"
300
  msgstr ""
301
 
302
+ #: ad-inserter.php:2736
303
  msgid "SEARCH PAGE"
304
  msgstr ""
305
 
306
+ #: ad-inserter.php:2739
307
  msgid "ARCHIVE PAGE"
308
  msgstr ""
309
 
310
+ #: ad-inserter.php:2742
311
  msgid "ERROR 404 PAGE"
312
  msgstr ""
313
 
314
+ #: ad-inserter.php:2745
315
  msgid "AJAX CALL"
316
  msgstr ""
317
 
318
+ #: ad-inserter.php:2748
319
  msgid "UNKNOWN PAGE TYPE"
320
  msgstr ""
321
 
322
+ #: ad-inserter.php:2765
323
  msgid "Click to delete ad blocking detection cokies"
324
  msgstr ""
325
 
326
+ #: ad-inserter.php:2766
327
  msgid "AD BLOCKING STATUS UNKNOWN"
328
  msgstr ""
329
 
330
  #. translators: %s: AdSense Auto Ads
331
+ #: ad-inserter.php:2790
332
  msgid ""
333
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
334
  "positions"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:2929
338
  msgid "Code for insertion"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:2929
342
  msgid "character"
343
  msgid_plural "characters"
344
  msgstr[0] ""
345
  msgstr[1] ""
346
 
347
+ #: ad-inserter.php:2972
348
  msgid "Header code"
349
  msgstr ""
350
 
351
+ #: ad-inserter.php:2972
352
  msgctxt "Header code"
353
  msgid "DISABLED"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:2972 ad-inserter.php:3195
357
  msgid "character inserted"
358
  msgid_plural "characters inserted"
359
  msgstr[0] ""
360
  msgstr[1] ""
361
 
362
+ #: ad-inserter.php:3006
363
  msgid "Automatically placed by AdSense Auto ads code"
364
  msgstr ""
365
 
366
+ #: ad-inserter.php:3195
367
  msgid "Footer code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3195
371
  msgctxt "Footer code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3201
376
  msgid "JAVASCRIPT NOT WORKING"
377
  msgstr ""
378
 
379
+ #: ad-inserter.php:3201
380
  msgid "NO JAVASCRIPT ERRORS"
381
  msgstr ""
382
 
383
+ #: ad-inserter.php:3201
384
  msgid "JAVASCRIPT ERRORS"
385
  msgstr ""
386
 
387
  #. translators: block name (block with default settings)
388
+ #: ad-inserter.php:5457
389
  msgctxt "Block name"
390
  msgid "Default"
391
  msgstr ""
392
 
393
  #. translators: %s: Ad Inserter
394
+ #: ad-inserter.php:6072
395
  msgid "Error importing %s settings."
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:6073
399
  msgid "Error importing settings for block"
400
  msgid_plural "Error importing settings for blocks:"
401
  msgstr[0] ""
402
  msgstr[1] ""
403
 
404
+ #: ad-inserter.php:6123
405
  msgid "Settings saved."
406
  msgstr ""
407
 
408
+ #. translators: %s: Ad Inserter
409
+ #: ad-inserter.php:6125
410
+ msgid "Invalid data received - %s settings not saved."
411
+ msgstr ""
412
+
413
+ #: ad-inserter.php:6213
414
  msgid "Settings cleared."
415
  msgstr ""
416
 
417
+ #. Translators: Post/Static page must have between X and Y words
418
+ #: ad-inserter.php:6558 ad-inserter.php:6560 ad-inserter.php:6583
419
+ #: settings.php:2053
420
  msgid "word"
421
  msgid_plural "words"
422
  msgstr[0] ""
423
  msgstr[1] ""
424
 
425
+ #: ad-inserter.php:6597 ad-inserter.php:6709
426
  msgid "HTML TAGS REMOVED"
427
  msgstr ""
428
 
429
+ #: ad-inserter.php:6785
430
  msgid "BEFORE COMMENTS"
431
  msgstr ""
432
 
433
+ #: ad-inserter.php:6893
434
  msgid "AFTER COMMENTS"
435
  msgstr ""
436
 
437
+ #: ad-inserter.php:6956
438
  msgid "BETWEEN COMMENTS"
439
  msgstr ""
440
 
441
+ #: ad-inserter.php:8288
442
+ msgid "requires WordPress 4.6 or newer"
443
  msgstr ""
444
 
445
+ #: ad-inserter.php:8288
446
  msgid "Please update!"
447
  msgstr ""
448
 
449
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
450
  #. name with HTML tags will be added)
451
+ #: ad-inserter.php:8529
452
  msgid "Thank you for installing"
453
  msgstr ""
454
 
455
  #. translators: Opt-in message: %s: HTML tags
456
+ #: ad-inserter.php:8531
457
  msgid ""
458
  "We would like to %s track its usage %s on your site. This is completely "
459
  "optional and can be disabled at any time."
460
  msgstr ""
461
 
462
+ #: ad-inserter.php:8533
463
  msgid ""
464
  "We don't record any sensitive data, only information regarding the WordPress "
465
  "environment and plugin usage, which will help us to make improvements to the "
467
  msgstr ""
468
 
469
  #. translators: Deactivation message: %s: HTML tags
470
+ #: ad-inserter.php:8570
471
  msgid ""
472
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
473
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
475
  msgstr ""
476
 
477
  #. translators: %s: Ad Inserter
478
+ #: ad-inserter.php:8613
479
  msgid "%s block."
480
  msgstr ""
481
 
482
  #. translators: widget title
483
+ #: ad-inserter.php:8629 ad-inserter.php:8665
484
  msgid "Processing log"
485
  msgstr ""
486
 
487
  #. translators: widget title
488
+ #: ad-inserter.php:8631 ad-inserter.php:8666
489
  msgid "Dummy widget"
490
  msgstr ""
491
 
492
  #. translators: widget title
493
+ #: ad-inserter.php:8633 ad-inserter.php:8664
494
  msgid "Debugging tools"
495
  msgstr ""
496
 
497
  #. translators: block status (widget title)
498
+ #: ad-inserter.php:8640
499
  msgctxt "block"
500
  msgid "PAUSED"
501
  msgstr ""
502
 
503
+ #: ad-inserter.php:8641
504
  msgid "WIDGET DISABLED"
505
  msgstr ""
506
 
507
+ #: ad-inserter.php:8642
508
  msgid "Unknown block"
509
  msgstr ""
510
 
511
+ #: ad-inserter.php:8651 includes/functions.old.php:3186
512
+ #: includes/functions.php:3233 settings.php:1153
513
  msgid "Title"
514
  msgstr ""
515
 
516
+ #: ad-inserter.php:8673
517
  msgctxt "Widget"
518
  msgid "Sticky"
519
  msgstr ""
520
 
521
+ #: ad-inserter.php:8722
522
  msgid ""
523
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
524
  "Inserter you need to first deactivate Ad Inserter Pro."
525
  msgstr ""
526
 
527
+ #: ad-inserter.php:8723
528
  msgid ""
529
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
530
  "will clear all settings that are available only in the Pro version "
536
  msgid "PHP error in %s block"
537
  msgstr ""
538
 
539
+ #: class.php:2026
540
  msgid "Counters"
541
  msgstr ""
542
 
543
+ #: class.php:2030
544
  msgid "Content"
545
  msgstr ""
546
 
547
+ #: class.php:2035
548
  msgid "Excerpt"
549
  msgstr ""
550
 
551
+ #: class.php:2040 strings.php:17
552
  msgid "Before post"
553
  msgstr ""
554
 
555
+ #: class.php:2045 strings.php:18
556
  msgid "After post"
557
  msgstr ""
558
 
559
+ #: class.php:2050 settings.php:1796 settings.php:4069
560
  msgid "Widget"
561
  msgstr ""
562
 
563
+ #: class.php:2055 settings.php:4067
564
  msgid "PHP function call"
565
  msgstr ""
566
 
567
+ #: class.php:2090
568
  msgid "AJAX REQUEST"
569
  msgstr ""
570
 
571
+ #: class.php:2093
572
  msgid "Ajax request for block in iframe"
573
  msgstr ""
574
 
575
+ #: class.php:2123
576
  msgid "Ajax request url, click to open it in a new tab"
577
  msgstr ""
578
 
579
+ #: class.php:2126
580
  msgid "IN THE LOOP"
581
  msgstr ""
582
 
583
+ #: class.php:2126
584
  msgid "YES"
585
  msgstr ""
586
 
587
+ #: class.php:2126
588
  msgid "NO"
589
  msgstr ""
590
 
591
+ #: class.php:2162
592
  msgid "BLOCK"
593
  msgstr ""
594
 
595
+ #: class.php:2162
596
  msgctxt "block or widget"
597
  msgid "INSERTED BUT NOT VISIBLE"
598
  msgstr ""
599
 
600
+ #: class.php:2611 class.php:2674
601
  msgid "ACTIVE GROUPS"
602
  msgstr ""
603
 
604
  #. translators: %s: list parameters and type
605
+ #: class.php:2854
606
  msgid "parameters='%s' type='%s'"
607
  msgstr ""
608
 
609
  #. translators: %s: list parameters and type
610
+ #: class.php:2856
611
  msgid "referers='%s' type='%s'"
612
  msgstr ""
613
 
614
  #. translators: %s: list parameters and type
615
+ #: class.php:2917
616
  msgid "countries='%s' type='%s'"
617
  msgstr ""
618
 
619
  #. translators: %s: list parameters and type
620
+ #: class.php:2919
621
  msgid "ip addresses='%s' type='%s'"
622
  msgstr ""
623
 
624
+ #: class.php:3188 strings.php:239
625
  msgid "BEFORE"
626
  msgstr ""
627
 
628
+ #: class.php:3196 strings.php:241
629
  msgid "PREPEND CONTENT"
630
  msgstr ""
631
 
632
+ #: class.php:3200 strings.php:242
633
  msgid "APPEND CONTENT"
634
  msgstr ""
635
 
636
+ #: class.php:3204 strings.php:243
637
  msgid "REPLACE CONTENT"
638
  msgstr ""
639
 
640
+ #: class.php:3208 strings.php:244
641
  msgid "REPLACE ELEMENT"
642
  msgstr ""
643
 
644
+ #: class.php:3219 strings.php:240
645
  msgid "AFTER"
646
  msgstr ""
647
 
648
+ #: class.php:3286
649
  msgctxt "JavaScript"
650
  msgid "script"
651
  msgstr ""
652
 
653
+ #: class.php:3289 settings.php:2065
654
  msgid "for"
655
  msgstr ""
656
 
657
+ #: class.php:6332 class.php:6384
658
  msgctxt "category name"
659
  msgid "Uncategorized"
660
  msgstr ""
661
 
662
+ #: class.php:6893
663
  msgid ""
664
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
665
  "extension for PHP."
675
  msgstr ""
676
 
677
  #: includes/editor.php:9 includes/placeholders.php:354
678
+ #: includes/preview.php:1965 settings.php:3464 strings.php:208 strings.php:245
679
  msgid "Cancel"
680
  msgstr ""
681
 
753
  "Leave empty unless position is not properly calculated."
754
  msgstr ""
755
 
756
+ #: includes/functions.old.php:440 includes/functions.php:442 settings.php:1304
757
+ #: settings.php:2679
758
  msgid "Open HTML element selector"
759
  msgstr ""
760
 
791
  msgstr ""
792
 
793
  #: includes/functions.old.php:508 includes/functions.old.php:2960
794
+ #: includes/functions.php:510 includes/functions.php:3007
795
  msgid "Toggle Statistics"
796
  msgstr ""
797
 
810
  msgid "%s license overused. Continue?"
811
  msgstr ""
812
 
813
+ #: includes/functions.old.php:536 includes/functions.php:546 settings.php:1058
814
+ #: settings.php:2136
815
  msgid "Save Settings"
816
  msgstr ""
817
 
878
 
879
  #: includes/functions.old.php:750 includes/functions.old.php:2453
880
  #: includes/functions.old.php:2470 includes/functions.php:760
881
+ #: includes/functions.php:2500 includes/functions.php:2517
882
  msgid "Tracking is globally disabled"
883
  msgstr ""
884
 
885
  #: includes/functions.old.php:754 includes/functions.old.php:2457
886
  #: includes/functions.old.php:2474 includes/functions.php:764
887
+ #: includes/functions.php:2504 includes/functions.php:2521
888
  msgid "Tracking for this block is disabled"
889
  msgstr ""
890
 
892
  msgid "Double click to toggle controls in public reports"
893
  msgstr ""
894
 
895
+ #: includes/functions.old.php:767 includes/functions.php:777 settings.php:3399
896
+ #: settings.php:3435 settings.php:3477 strings.php:218
897
  msgid "Loading..."
898
  msgstr ""
899
 
908
  msgstr ""
909
 
910
  #: includes/functions.old.php:795 includes/functions.old.php:5262
911
+ #: includes/functions.php:805 includes/functions.php:5322
912
  msgid "Load data for last month"
913
  msgstr ""
914
 
915
  #: includes/functions.old.php:795 includes/functions.old.php:5262
916
+ #: includes/functions.php:805 includes/functions.php:5322
917
  msgid "Last Month"
918
  msgstr ""
919
 
920
  #: includes/functions.old.php:798 includes/functions.old.php:5265
921
+ #: includes/functions.php:808 includes/functions.php:5325
922
  msgid "Load data for this month"
923
  msgstr ""
924
 
925
  #: includes/functions.old.php:798 includes/functions.old.php:5265
926
+ #: includes/functions.php:808 includes/functions.php:5325
927
  msgid "This Month"
928
  msgstr ""
929
 
930
  #: includes/functions.old.php:801 includes/functions.old.php:5268
931
+ #: includes/functions.php:811 includes/functions.php:5328
932
  msgid "Load data for this year"
933
  msgstr ""
934
 
935
  #: includes/functions.old.php:801 includes/functions.old.php:5268
936
+ #: includes/functions.php:811 includes/functions.php:5328
937
  msgid "This Year"
938
  msgstr ""
939
 
940
  #: includes/functions.old.php:804 includes/functions.old.php:5271
941
+ #: includes/functions.php:814 includes/functions.php:5331
942
  msgid "Load data for the last 15 days"
943
  msgstr ""
944
 
945
  #: includes/functions.old.php:807 includes/functions.old.php:5274
946
+ #: includes/functions.php:817 includes/functions.php:5334
947
  msgid "Load data for the last 30 days"
948
  msgstr ""
949
 
950
  #: includes/functions.old.php:810 includes/functions.old.php:5277
951
+ #: includes/functions.php:820 includes/functions.php:5337
952
  msgid "Load data for the last 90 days"
953
  msgstr ""
954
 
955
  #: includes/functions.old.php:813 includes/functions.old.php:5280
956
+ #: includes/functions.php:823 includes/functions.php:5340
957
  msgid "Load data for the last 180 days"
958
  msgstr ""
959
 
960
  #: includes/functions.old.php:816 includes/functions.old.php:5283
961
+ #: includes/functions.php:826 includes/functions.php:5343
962
  msgid "Load data for the last 365 days"
963
  msgstr ""
964
 
965
  #: includes/functions.old.php:826 includes/functions.old.php:5293
966
+ #: includes/functions.php:836 includes/functions.php:5353
967
  msgid "Load data for the selected range"
968
  msgstr ""
969
 
1039
  msgstr ""
1040
 
1041
  #: includes/functions.old.php:938 includes/functions.old.php:2925
1042
+ #: includes/functions.php:948 includes/functions.php:2972
1043
  msgid "Toggle country editor"
1044
  msgstr ""
1045
 
1048
  msgstr ""
1049
 
1050
  #: includes/functions.old.php:945 includes/functions.old.php:2928
1051
+ #: includes/functions.php:955 includes/functions.php:2975
1052
  msgid "Comma separated country ISO Alpha-2 codes"
1053
  msgstr ""
1054
 
1061
  msgstr ""
1062
 
1063
  #: includes/functions.old.php:1361 includes/functions.old.php:1608
1064
+ #: includes/functions.php:1373 includes/functions.php:1653
1065
  msgid "Enter license key"
1066
  msgstr ""
1067
 
1068
  #. translators: %s: Ad Inserter Pro
1069
+ #: includes/functions.old.php:1367 includes/functions.php:1379
1070
  msgid ""
1071
  "%s license key is not set. Plugin functionality is limited and updates are "
1072
  "disabled."
1073
  msgstr ""
1074
 
1075
  #: includes/functions.old.php:1379 includes/functions.old.php:1617
1076
+ #: includes/functions.php:1402 includes/functions.php:1662
1077
  msgid "Check license key"
1078
  msgstr ""
1079
 
1080
  #. translators: %s: Ad Inserter Pro
1081
+ #: includes/functions.old.php:1385 includes/functions.php:1408
1082
  msgid "Invalid %s license key."
1083
  msgstr ""
1084
 
1085
  #. translators: %s: Ad Inserter Pro
1086
+ #: includes/functions.old.php:1394 includes/functions.php:1417
1087
  msgid "%s license expired. Plugin updates are disabled."
1088
  msgstr ""
1089
 
1090
+ #: includes/functions.old.php:1395 includes/functions.php:1418
1091
  msgid "Renew license"
1092
  msgstr ""
1093
 
1094
  #. translators: %s: Ad Inserter Pro
1095
+ #: includes/functions.old.php:1403 includes/functions.php:1426
1096
  msgid "%s license overused. Plugin updates are disabled."
1097
  msgstr ""
1098
 
1099
+ #: includes/functions.old.php:1404 includes/functions.php:1427
1100
  msgid "Manage licenses"
1101
  msgstr ""
1102
 
1103
+ #: includes/functions.old.php:1404 includes/functions.php:1427
1104
  msgid "Upgrade license"
1105
  msgstr ""
1106
 
1107
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1108
+ #: includes/functions.old.php:1610 includes/functions.php:1655
1109
  msgid ""
1110
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1111
  "limited and updates are disabled."
1112
  msgstr ""
1113
 
1114
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1115
+ #: includes/functions.old.php:1619 includes/functions.php:1664
1116
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1117
  msgstr ""
1118
 
1119
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1120
+ #: includes/functions.old.php:1635 includes/functions.php:1680
1121
  msgid ""
1122
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1123
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1124
  msgstr ""
1125
 
1126
  #. translators: 1, 3: HTML tags, 2: percentage
1127
+ #: includes/functions.old.php:1642 includes/functions.php:1687
1128
  msgid ""
1129
  "During the license period and 30 days after the license has expired we offer "
1130
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1131
  msgstr ""
1132
 
1133
+ #: includes/functions.old.php:1669 includes/functions.php:1714
1134
  msgid "Renew the licence"
1135
  msgstr ""
1136
 
1137
+ #: includes/functions.old.php:1671 includes/functions.php:1716
1138
  msgid "Update license status"
1139
  msgstr ""
1140
 
1141
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1142
+ #: includes/functions.old.php:1682 includes/functions.php:1727
1143
  msgid ""
1144
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1145
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1146
  msgstr ""
1147
 
1148
  #. Translators: %s: HTML tag
1149
+ #: includes/functions.old.php:1704 includes/functions.php:1749
1150
  msgid "Warning: %s MaxMind IP geolocation database not found."
1151
  msgstr ""
1152
 
1153
+ #: includes/functions.old.php:2255 includes/functions.php:2302
1154
  msgid "Geolocation"
1155
  msgstr ""
1156
 
1157
+ #: includes/functions.old.php:2259 includes/functions.php:2306
1158
+ #: settings.php:4056
1159
  msgid "Exceptions"
1160
  msgstr ""
1161
 
1162
+ #: includes/functions.old.php:2264 includes/functions.php:2311
1163
  msgid "Multisite"
1164
  msgstr ""
1165
 
1166
+ #: includes/functions.old.php:2269 includes/functions.php:2316
1167
+ #: settings.php:4062
1168
  msgid "Tracking"
1169
  msgstr ""
1170
 
1171
  #. translators: %d: days, hours, minutes
1172
+ #: includes/functions.old.php:2300 includes/functions.php:2347
1173
  msgid "Scheduled in %d days %d hours %d minutes"
1174
  msgstr ""
1175
 
1176
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1177
  #. HTML code for long dash separator
1178
+ #: includes/functions.old.php:2309 includes/functions.php:2356
1179
  msgid "Active %s expires in %d days %d hours %d minutes"
1180
  msgstr ""
1181
 
1182
+ #: includes/functions.old.php:2313 includes/functions.php:2360
1183
  msgid "Expired"
1184
  msgstr ""
1185
 
1186
+ #: includes/functions.old.php:2321 includes/functions.php:2368
1187
+ #: settings.php:1387 settings.php:1402 settings.php:1491 settings.php:2051
1188
  msgid "and"
1189
  msgstr ""
1190
 
1191
+ #: includes/functions.old.php:2324 includes/functions.php:2371
1192
  msgid "fallback"
1193
  msgstr ""
1194
 
1195
+ #: includes/functions.old.php:2325 includes/functions.php:2372
1196
  msgid "Block to be used when scheduling expires"
1197
  msgstr ""
1198
 
1199
+ #: includes/functions.old.php:2350 includes/functions.php:2397
1200
  msgid "Load in iframe"
1201
  msgstr ""
1202
 
1203
+ #: includes/functions.old.php:2354 includes/functions.php:2401
1204
  #: includes/placeholders.php:389
1205
  msgid "Width"
1206
  msgstr ""
1207
 
1208
+ #: includes/functions.old.php:2355 includes/functions.php:2402
1209
  msgid "iframe width, empty means full width (100%)"
1210
  msgstr ""
1211
 
1212
+ #: includes/functions.old.php:2361 includes/functions.php:2408
1213
  #: includes/placeholders.php:384
1214
  msgid "Height"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions.old.php:2362 includes/functions.php:2409
1218
  msgid "iframe height, empty means adjust it to iframe content height"
1219
  msgstr ""
1220
 
1221
+ #: includes/functions.old.php:2369 includes/functions.php:2416
1222
  msgid "Ad label in iframe"
1223
  msgstr ""
1224
 
1225
+ #: includes/functions.old.php:2374 includes/functions.php:2421
1226
  msgid "Preview iframe code"
1227
  msgstr ""
1228
 
1229
+ #: includes/functions.old.php:2374 includes/functions.php:2421
1230
+ #: includes/preview.php:1974 settings.php:1053 settings.php:2741
1231
  msgid "Preview"
1232
  msgstr ""
1233
 
1234
+ #: includes/functions.old.php:2388 includes/functions.php:2435
1235
+ #: settings.php:4063
1236
  msgid "Limits"
1237
  msgstr ""
1238
 
1239
  #: includes/functions.old.php:2393 includes/functions.old.php:4266
1240
+ #: includes/functions.old.php:4329 includes/functions.php:2440
1241
+ #: includes/functions.php:4313 includes/functions.php:4376 settings.php:2183
1242
  msgid "Ad Blocking"
1243
  msgstr ""
1244
 
1245
  #. translators: 1, 2 and 3, 4: HTML tags
1246
+ #: includes/functions.old.php:2402 includes/functions.php:2449
1247
  msgid ""
1248
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1249
  "for tracking!"
1251
 
1252
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1253
  #. header
1254
+ #: includes/functions.old.php:2411 includes/functions.php:2458
1255
  msgid ""
1256
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1257
  "enabled and automatic insertion %6$s!"
1258
  msgstr ""
1259
 
1260
+ #: includes/functions.old.php:2478 includes/functions.php:2525
1261
  msgid "Click fraud protection is globally disabled"
1262
  msgstr ""
1263
 
1264
+ #: includes/functions.old.php:2482 includes/functions.php:2529
1265
  msgid "Max clicks per time period are not defined"
1266
  msgstr ""
1267
 
1268
  #. Translators: Max n impressions
1269
+ #: includes/functions.old.php:2496 includes/functions.php:2543
1270
  msgid "General limits"
1271
  msgstr ""
1272
 
1273
  #. Translators: Max n impressions per x days
1274
  #: includes/functions.old.php:2502 includes/functions.old.php:2514
1275
+ #: includes/functions.old.php:2599 includes/functions.php:2549
1276
+ #: includes/functions.php:2561 includes/functions.php:2646
1277
  msgid "Current value"
1278
  msgstr ""
1279
 
1289
  #: includes/functions.old.php:2550 includes/functions.old.php:2560
1290
  #: includes/functions.old.php:2606 includes/functions.old.php:2615
1291
  #: includes/functions.old.php:2633 includes/functions.old.php:2642
1292
+ #: includes/functions.php:2568 includes/functions.php:2578
1293
+ #: includes/functions.php:2597 includes/functions.php:2607
1294
+ #: includes/functions.php:2653 includes/functions.php:2662
1295
+ #: includes/functions.php:2680 includes/functions.php:2689 settings.php:1972
1296
  msgid "Max"
1297
  msgstr ""
1298
 
1299
+ #: includes/functions.old.php:2522 includes/functions.php:2569
1300
  msgid ""
1301
  "Maximum number of impressions for this block. Empty means no general "
1302
  "impression limit."
1308
  #. Translators: Max n impressions per x days
1309
  #: includes/functions.old.php:2524 includes/functions.old.php:2534
1310
  #: includes/functions.old.php:2609 includes/functions.old.php:2618
1311
+ #: includes/functions.php:2571 includes/functions.php:2581
1312
+ #: includes/functions.php:2656 includes/functions.php:2665
1313
  msgid "impression"
1314
  msgid_plural "impressions"
1315
  msgstr[0] ""
1316
  msgstr[1] ""
1317
 
1318
+ #: includes/functions.old.php:2532 includes/functions.php:2579
1319
  msgid ""
1320
  "Maximum number of impressions per time period. Empty means no time limit."
1321
  msgstr ""
1326
  #. Translators: Max n clicks per x days
1327
  #: includes/functions.old.php:2538 includes/functions.old.php:2567
1328
  #: includes/functions.old.php:2622 includes/functions.old.php:2649
1329
+ #: includes/functions.php:2585 includes/functions.php:2614
1330
+ #: includes/functions.php:2669 includes/functions.php:2696
1331
  msgid "per"
1332
  msgstr ""
1333
 
1334
  #: includes/functions.old.php:2539 includes/functions.old.php:2568
1335
+ #: includes/functions.php:2586 includes/functions.php:2615
1336
  msgid "Time period in days. Empty means no time limit."
1337
  msgstr ""
1338
 
1344
  #: includes/functions.old.php:2541 includes/functions.old.php:2570
1345
  #: includes/functions.old.php:2625 includes/functions.old.php:2652
1346
  #: includes/functions.old.php:2758 includes/functions.old.php:3086
1347
+ #: includes/functions.php:2588 includes/functions.php:2617
1348
+ #: includes/functions.php:2672 includes/functions.php:2699
1349
+ #: includes/functions.php:2805 includes/functions.php:3133 strings.php:199
1350
  #: strings.php:200 strings.php:201 strings.php:202 strings.php:203
1351
  #: strings.php:204
1352
  msgid "day"
1354
  msgstr[0] ""
1355
  msgstr[1] ""
1356
 
1357
+ #: includes/functions.old.php:2551 includes/functions.php:2598
1358
  msgid ""
1359
  "Maximum number of clicks on this block. Empty means no general click limit."
1360
  msgstr ""
1365
  #. Translators: Max n clicks per x days
1366
  #: includes/functions.old.php:2553 includes/functions.old.php:2563
1367
  #: includes/functions.old.php:2636 includes/functions.old.php:2645
1368
+ #: includes/functions.old.php:4477 includes/functions.php:2600
1369
+ #: includes/functions.php:2610 includes/functions.php:2683
1370
+ #: includes/functions.php:2692 includes/functions.php:4524
1371
  msgid "click"
1372
  msgid_plural "clicks"
1373
  msgstr[0] ""
1374
  msgstr[1] ""
1375
 
1376
+ #: includes/functions.old.php:2561 includes/functions.php:2608
1377
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1378
  msgstr ""
1379
 
1380
+ #: includes/functions.old.php:2586 includes/functions.php:2633
1381
  msgid "Individual visitor limits"
1382
  msgstr ""
1383
 
1384
  #: includes/functions.old.php:2590 includes/functions.old.php:2592
1385
+ #: includes/functions.php:2637 includes/functions.php:2639
1386
  msgid ""
1387
  "When specified number of clicks on this block for a visitor will be reached "
1388
  "in the specified time period, all blocks that have click fraud protection "
1390
  "general plugin settings."
1391
  msgstr ""
1392
 
1393
+ #: includes/functions.old.php:2592 includes/functions.php:2639
1394
  msgid "Trigger click fraud protection"
1395
  msgstr ""
1396
 
1397
+ #: includes/functions.old.php:2607 includes/functions.php:2654
1398
  msgid ""
1399
  "Maximum number of impressions of this block for each visitor. Empty means no "
1400
  "impression limit."
1401
  msgstr ""
1402
 
1403
+ #: includes/functions.old.php:2616 includes/functions.php:2663
1404
  msgid ""
1405
  "Maximum number of impressions per time period for each visitor. Empty means "
1406
  "no impression limit per time period for visitors."
1407
  msgstr ""
1408
 
1409
  #: includes/functions.old.php:2623 includes/functions.old.php:2650
1410
+ #: includes/functions.php:2670 includes/functions.php:2697
1411
  msgid ""
1412
  "Time period in days. Use decimal value (with decimal point) for shorter "
1413
  "periods. Empty means no time limit."
1414
  msgstr ""
1415
 
1416
+ #: includes/functions.old.php:2634 includes/functions.php:2681
1417
  msgid ""
1418
  "Maximum number of clicks on this block for each visitor. Empty means no "
1419
  "click limit."
1420
  msgstr ""
1421
 
1422
+ #: includes/functions.old.php:2643 includes/functions.php:2690
1423
  msgid ""
1424
  "Maximum number of clicks per time period for each visitor. Empty means no "
1425
  "click limit per time period for visitors."
1426
  msgstr ""
1427
 
1428
+ #: includes/functions.old.php:2669 includes/functions.php:2716
1429
  msgid "When ad blocking is detected"
1430
  msgstr ""
1431
 
1432
+ #: includes/functions.old.php:2678 includes/functions.php:2725
1433
  msgid "replacement"
1434
  msgstr ""
1435
 
1436
+ #: includes/functions.old.php:2679 includes/functions.php:2726
1437
  msgid "Block to be shown when ad blocking is detected"
1438
  msgstr ""
1439
 
1440
+ #: includes/functions.old.php:2680 includes/functions.php:2727
1441
  msgctxt "replacement"
1442
  msgid "None"
1443
  msgstr ""
1444
 
1445
  #: includes/functions.old.php:2697 includes/functions.old.php:5484
1446
+ #: includes/functions.php:2744 includes/functions.php:5544
1447
  msgid "Close button"
1448
  msgstr ""
1449
 
1450
+ #: includes/functions.old.php:2749 includes/functions.php:2796
1451
  msgid "Auto close after"
1452
  msgstr ""
1453
 
1454
+ #: includes/functions.old.php:2750 includes/functions.php:2797
1455
  msgid ""
1456
  "Time in seconds in which the ad will automatically close. Leave empty to "
1457
  "disable auto closing."
1458
  msgstr ""
1459
 
1460
  #. Translators: Don't show for x days
1461
+ #: includes/functions.old.php:2755 includes/functions.php:2802
1462
  msgid "Don't show for"
1463
  msgstr ""
1464
 
1465
+ #: includes/functions.old.php:2756 includes/functions.php:2803
1466
  msgid ""
1467
  "Time in days in which closed ad will not be shown again. Use decimal value "
1468
  "(with decimal point) for shorter time period or leave empty to show it again "
1470
  msgstr ""
1471
 
1472
  #. Translators: Delay showing for x pageviews
1473
+ #: includes/functions.old.php:2776 includes/functions.php:2823
1474
  msgid "Delay showing for"
1475
  msgstr ""
1476
 
1477
+ #: includes/functions.old.php:2777 includes/functions.php:2824
1478
  msgid ""
1479
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1480
  "empty to insert the code for the first pageview."
1483
  #. Translators: Delay showing for x pageviews
1484
  #. Translators: Show every x pageviews
1485
  #: includes/functions.old.php:2779 includes/functions.old.php:2786
1486
+ #: includes/functions.php:2826 includes/functions.php:2833
1487
  msgid "pageview"
1488
  msgid_plural "pageviews"
1489
  msgstr[0] ""
1490
  msgstr[1] ""
1491
 
1492
  #. Translators: Show every x pageviews
1493
+ #: includes/functions.old.php:2783 includes/functions.php:2830
1494
  msgid "Show every"
1495
  msgid_plural "Show every"
1496
  msgstr[0] ""
1497
  msgstr[1] ""
1498
 
1499
+ #: includes/functions.old.php:2784 includes/functions.php:2831
1500
  msgid ""
1501
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1502
  "for every pageview."
1503
  msgstr ""
1504
 
1505
+ #: includes/functions.old.php:2803 includes/functions.php:2850
1506
  msgid "Lazy loading"
1507
  msgstr ""
1508
 
1509
  #. Translators: %s MaxMind
1510
+ #: includes/functions.old.php:2860 includes/functions.php:2907
1511
  msgid "This product includes GeoLite2 data created by %s"
1512
  msgstr ""
1513
 
1514
+ #: includes/functions.old.php:2871 includes/functions.php:2918
1515
  msgid "IP geolocation database"
1516
  msgstr ""
1517
 
1518
+ #: includes/functions.old.php:2874 includes/functions.php:2921
1519
  msgid "Select IP geolocation database."
1520
  msgstr ""
1521
 
1522
+ #: includes/functions.old.php:2885 includes/functions.php:2932
1523
  msgid "Automatic database updates"
1524
  msgstr ""
1525
 
1526
+ #: includes/functions.old.php:2888 includes/functions.php:2935
1527
  msgid ""
1528
  "Automatically download and update free GeoLite2 IP geolocation database by "
1529
  "MaxMind"
1530
  msgstr ""
1531
 
1532
+ #: includes/functions.old.php:2896 includes/functions.php:2943
1533
  msgid "Database"
1534
  msgstr ""
1535
 
1536
+ #: includes/functions.old.php:2899 includes/functions.php:2946
1537
  msgid ""
1538
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1539
  "file"
1540
  msgstr ""
1541
 
1542
  #. translators: %d: group number
1543
+ #: includes/functions.old.php:2917 includes/functions.php:2964
1544
  msgid "Group %d"
1545
  msgstr ""
1546
 
1547
+ #: includes/functions.old.php:2923 includes/functions.php:2970
1548
  msgid "countries"
1549
  msgstr ""
1550
 
1551
+ #: includes/functions.old.php:2968 includes/functions.php:3015
1552
  msgid ""
1553
  "Enable impression and click tracking. You also need to enable tracking for "
1554
  "each block you want to track."
1555
  msgstr ""
1556
 
1557
+ #: includes/functions.old.php:2975 includes/functions.php:3022
1558
  msgid "Generate report"
1559
  msgstr ""
1560
 
1561
+ #: includes/functions.old.php:2983 includes/functions.php:3030
1562
  msgid "Impression and Click Tracking"
1563
  msgstr ""
1564
 
1565
+ #: includes/functions.old.php:2984 includes/functions.php:3031
1566
+ #: settings.php:2629
1567
  msgctxt "ad blocking detection"
1568
  msgid "NOT ENABLED"
1569
  msgstr ""
1570
 
1571
+ #: includes/functions.old.php:3000 includes/functions.php:3047
1572
  msgid "Internal"
1573
  msgstr ""
1574
 
1575
+ #: includes/functions.old.php:3004 includes/functions.php:3051
1576
  msgid "Track impressions and clicks with internal tracking and statistics"
1577
  msgstr ""
1578
 
1579
+ #: includes/functions.old.php:3009 includes/functions.php:3056
1580
  msgid "External"
1581
  msgstr ""
1582
 
1583
+ #: includes/functions.old.php:3013 includes/functions.php:3060
1584
  msgid ""
1585
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1586
  "code installed)"
1587
  msgstr ""
1588
 
1589
+ #: includes/functions.old.php:3018 includes/functions.php:3065
1590
  msgid "Track Pageviews"
1591
  msgstr ""
1592
 
1593
+ #: includes/functions.old.php:3024 includes/functions.php:3071
1594
  msgid "Track Pageviews by Device (as configured for viewports)"
1595
  msgstr ""
1596
 
1597
+ #: includes/functions.old.php:3034 includes/functions.php:3081
1598
  msgid "Track for Logged in Users"
1599
  msgstr ""
1600
 
1601
+ #: includes/functions.old.php:3040 includes/functions.php:3087
1602
  msgid "Track impressions and clicks from logged in users"
1603
  msgstr ""
1604
 
1605
+ #: includes/functions.old.php:3050 includes/functions.php:3097
1606
  msgid "Click Detection"
1607
  msgstr ""
1608
 
1609
+ #: includes/functions.old.php:3056 includes/functions.php:3103
1610
  msgid ""
1611
  "Standard method detects clicks only on banners with links, Advanced method "
1612
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1613
  msgstr ""
1614
 
1615
+ #: includes/functions.old.php:3075 includes/functions.php:3122
1616
  msgid "Click fraud protection"
1617
  msgstr ""
1618
 
1619
+ #: includes/functions.old.php:3079 includes/functions.php:3126
1620
  msgid "Globally enable click fraud protection for selected blocks."
1621
  msgstr ""
1622
 
1623
+ #: includes/functions.old.php:3085 includes/functions.php:3132
1624
  msgid "Protection time"
1625
  msgstr ""
1626
 
1627
+ #: includes/functions.old.php:3086 includes/functions.php:3133
1628
  msgid ""
1629
  "Time period in days in which blocks with enabled click fraud protection will "
1630
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1631
  msgstr ""
1632
 
1633
+ #: includes/functions.old.php:3105 includes/functions.php:3152
1634
  msgid "Report header image"
1635
  msgstr ""
1636
 
1637
+ #: includes/functions.old.php:3108 includes/functions.php:3155
1638
  msgid ""
1639
  "Image or logo to be displayed in the header of the statistins report. "
1640
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1641
  "to reset to default image."
1642
  msgstr ""
1643
 
1644
+ #: includes/functions.old.php:3109 includes/functions.php:3156 strings.php:230
1645
  msgid "Select or upload header image"
1646
  msgstr ""
1647
 
1648
+ #: includes/functions.old.php:3114 includes/functions.php:3161
1649
  msgid "Report header title"
1650
  msgstr ""
1651
 
1652
+ #: includes/functions.old.php:3117 includes/functions.php:3164
1653
  msgid ""
1654
  "Title to be displayed in the header of the statistics report. Text or HTML "
1655
  "code, clear to reset to default text."
1656
  msgstr ""
1657
 
1658
+ #: includes/functions.old.php:3122 includes/functions.php:3169
1659
  msgid "Report header description"
1660
  msgstr ""
1661
 
1662
+ #: includes/functions.old.php:3125 includes/functions.php:3172
1663
  msgid ""
1664
  "Description to be displayed in the header of the statistics report. Text or "
1665
  "HTML code, clear to reset to default text."
1666
  msgstr ""
1667
 
1668
+ #: includes/functions.old.php:3130 includes/functions.php:3177
1669
  msgid "Report footer"
1670
  msgstr ""
1671
 
1672
+ #: includes/functions.old.php:3133 includes/functions.php:3180
1673
  msgid ""
1674
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1675
  "to default text."
1676
  msgstr ""
1677
 
1678
+ #: includes/functions.old.php:3138 includes/functions.php:3185
1679
  msgid "Public report key"
1680
  msgstr ""
1681
 
1682
+ #: includes/functions.old.php:3141 includes/functions.php:3188
1683
  msgid "String to generate unique report IDs. Clear to reset to default value."
1684
  msgstr ""
1685
 
1686
+ #: includes/functions.old.php:3173 includes/functions.php:3220
1687
  msgid "Are you sure you want to clear all exceptions for block"
1688
  msgstr ""
1689
 
1690
+ #: includes/functions.old.php:3174 includes/functions.php:3221
1691
+ #: settings.php:1156
1692
  msgid "Clear all exceptions for block"
1693
  msgstr ""
1694
 
1695
+ #: includes/functions.old.php:3181 includes/functions.php:3228
1696
  msgid "Are you sure you want to clear all exceptions?"
1697
  msgstr ""
1698
 
1699
+ #: includes/functions.old.php:3181 includes/functions.php:3228
1700
  msgid "Clear all exceptions for all blocks"
1701
  msgstr ""
1702
 
1703
+ #: includes/functions.old.php:3186 includes/functions.php:3233
1704
+ #: settings.php:3708 settings.php:4139
1705
  msgid "Type"
1706
  msgstr ""
1707
 
1708
+ #: includes/functions.old.php:3204 includes/functions.php:3251
1709
  msgid "View"
1710
  msgstr ""
1711
 
1712
  #: includes/functions.old.php:3205 includes/functions.old.php:3212
1713
+ #: includes/functions.old.php:3216 includes/functions.php:3252
1714
+ #: includes/functions.php:3259 includes/functions.php:3263
1715
+ #: includes/placeholders.php:353 includes/preview.php:2281 settings.php:1290
1716
+ #: settings.php:3468
1717
  msgid "Edit"
1718
  msgstr ""
1719
 
1720
+ #: includes/functions.old.php:3235 includes/functions.php:3282
1721
  msgid "Are you sure you want to clear all exceptions for"
1722
  msgstr ""
1723
 
1724
+ #: includes/functions.old.php:3236 includes/functions.php:3283
1725
  msgid "Clear all exceptions for"
1726
  msgstr ""
1727
 
1728
+ #: includes/functions.old.php:3249 includes/functions.php:3296
1729
  msgid "No exceptions"
1730
  msgstr ""
1731
 
1732
  #. translators: %s: Ad Inserter Pro
1733
+ #: includes/functions.old.php:3260 includes/functions.php:3307
1734
  msgid "%s options for network blogs"
1735
  msgstr ""
1736
 
1737
  #. translators: %s: Ad Inserter Pro
1738
+ #: includes/functions.old.php:3265 includes/functions.php:3312
1739
  msgid "Enable %s widgets for sub-sites"
1740
  msgstr ""
1741
 
1742
+ #: includes/functions.old.php:3265 includes/functions.php:3312
1743
  msgid "Widgets"
1744
  msgstr ""
1745
 
1746
+ #: includes/functions.old.php:3270 includes/functions.php:3317
1747
  msgid "Enable PHP code processing for sub-sites"
1748
  msgstr ""
1749
 
1750
+ #: includes/functions.old.php:3270 includes/functions.php:3317
1751
  msgid "PHP Processing"
1752
  msgstr ""
1753
 
1754
  #. translators: %s: Ad Inserter Pro
1755
+ #: includes/functions.old.php:3275 includes/functions.php:3322
1756
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1757
  msgstr ""
1758
 
1759
+ #: includes/functions.old.php:3275 includes/functions.php:3322
1760
  msgid "Post/Page exceptions"
1761
  msgstr ""
1762
 
1763
  #. translators: %s: Ad Inserter Pro
1764
+ #: includes/functions.old.php:3280 includes/functions.php:3327
1765
  msgid "Enable %s settings page for sub-sites"
1766
  msgstr ""
1767
 
1768
+ #: includes/functions.old.php:3280 includes/functions.php:3327
1769
  msgid "Settings page"
1770
  msgstr ""
1771
 
1772
  #. translators: %s: Ad Inserter Pro
1773
+ #: includes/functions.old.php:3285 includes/functions.php:3332
1774
  msgid "Enable %s settings of main site to be used for all blogs"
1775
  msgstr ""
1776
 
1777
+ #: includes/functions.old.php:3285 includes/functions.php:3332
1778
  msgid "Main site settings used for all blogs"
1779
  msgstr ""
1780
 
1781
+ #: includes/functions.old.php:3296 includes/functions.php:3343
1782
+ #: settings.php:2628
1783
  msgid "Ad Blocking Detection"
1784
  msgstr ""
1785
 
1786
+ #: includes/functions.old.php:3302 includes/functions.php:3349
1787
  msgid ""
1788
  "Standard method is reliable but should be used only if Advanced method does "
1789
  "not work. Advanced method recreates files used for detection with random "
1792
  msgstr ""
1793
 
1794
  #: includes/functions.old.php:3929 includes/functions.old.php:4019
1795
+ #: includes/functions.old.php:4039 includes/functions.php:3976
1796
+ #: includes/functions.php:4066 includes/functions.php:4086
1797
  msgid "AD BLOCKING"
1798
  msgstr ""
1799
 
1800
  #: includes/functions.old.php:3930 includes/functions.old.php:3970
1801
  #: includes/functions.old.php:4013 includes/functions.old.php:4040
1802
+ #: includes/functions.php:3977 includes/functions.php:4017
1803
+ #: includes/functions.php:4060 includes/functions.php:4087
1804
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1805
  msgstr ""
1806
 
1807
  #: includes/functions.old.php:3933 includes/functions.old.php:4012
1808
+ #: includes/functions.old.php:4046 includes/functions.php:3980
1809
+ #: includes/functions.php:4059 includes/functions.php:4093
1810
  msgid "NO AD BLOCKING"
1811
  msgstr ""
1812
 
1813
  #: includes/functions.old.php:3969 includes/functions.old.php:3976
1814
+ #: includes/functions.php:4016 includes/functions.php:4023
1815
  msgid "AD BLOCKING REPLACEMENT"
1816
  msgstr ""
1817
 
1818
  #: includes/functions.old.php:4119 includes/functions.old.php:4328
1819
+ #: includes/functions.php:4166 includes/functions.php:4375
1820
  msgid "Pageviews"
1821
  msgstr ""
1822
 
1823
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1824
  msgctxt "Version"
1825
  msgid "Unknown"
1826
  msgstr ""
1827
 
1828
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1829
  msgctxt "Times"
1830
  msgid "DISPLAYED"
1831
  msgstr ""
1832
 
1833
+ #: includes/functions.old.php:4265 includes/functions.php:4312
1834
  msgid "No version"
1835
  msgstr ""
1836
 
1837
+ #: includes/functions.old.php:4266 includes/functions.php:4313
1838
  msgctxt "Times"
1839
  msgid "BLOCKED"
1840
  msgstr ""
1841
 
1842
+ #: includes/functions.old.php:4328 includes/functions.php:4375
1843
  msgid "Impressions"
1844
  msgstr ""
1845
 
1846
  #: includes/functions.old.php:4329 includes/functions.old.php:4330
1847
+ #: includes/functions.old.php:4385 includes/functions.php:4376
1848
+ #: includes/functions.php:4377 includes/functions.php:4432
1849
  msgid "Clicks"
1850
  msgstr ""
1851
 
1852
+ #: includes/functions.old.php:4330 includes/functions.php:4377
1853
  msgid "events"
1854
  msgstr ""
1855
 
1856
+ #: includes/functions.old.php:4331 includes/functions.php:4378
1857
  msgid "Ad Blocking Share"
1858
  msgstr ""
1859
 
1860
  #. translators: CTR as Click Through Rate
1861
  #: includes/functions.old.php:4331 includes/functions.old.php:4391
1862
+ #: includes/functions.php:4378 includes/functions.php:4438
1863
  msgid "CTR"
1864
  msgstr ""
1865
 
1866
+ #: includes/functions.old.php:4473 includes/functions.php:4520
1867
  msgid "pageviews"
1868
  msgid_plural "pageviews"
1869
  msgstr[0] ""
1870
  msgstr[1] ""
1871
 
1872
+ #: includes/functions.old.php:4473 includes/functions.php:4520
1873
  msgid "impressions"
1874
  msgid_plural "impressions"
1875
  msgstr[0] ""
1876
  msgstr[1] ""
1877
 
1878
+ #: includes/functions.old.php:4477 includes/functions.php:4524
1879
  msgid "event"
1880
  msgid_plural "events"
1881
  msgstr[0] ""
1882
  msgstr[1] ""
1883
 
1884
+ #: includes/functions.old.php:4572 includes/functions.php:4619
1885
  msgctxt "Pageviews / Impressions"
1886
  msgid "Average"
1887
  msgstr ""
1888
 
1889
+ #: includes/functions.old.php:4593 includes/functions.php:4640
1890
  msgctxt "Ad Blocking / Clicks"
1891
  msgid "Average"
1892
  msgstr ""
1893
 
1894
+ #: includes/functions.old.php:4617 includes/functions.php:4664
1895
  msgctxt "Ad Blocking Share / CTR"
1896
  msgid "Average"
1897
  msgstr ""
1898
 
1899
  #. Translators: %s: Ad Inserter Pro
1900
  #: includes/functions.old.php:4799 includes/functions.old.php:4891
1901
+ #: includes/functions.old.php:5207 includes/functions.php:4846
1902
+ #: includes/functions.php:4938 includes/functions.php:5267 strings.php:184
1903
  msgid "%s Report"
1904
  msgstr ""
1905
 
1906
+ #: includes/functions.old.php:5113 includes/functions.php:5173
1907
  msgid "for last month"
1908
  msgstr ""
1909
 
1910
+ #: includes/functions.old.php:5118 includes/functions.php:5178
1911
  msgid "for this month"
1912
  msgstr ""
1913
 
1914
+ #: includes/functions.old.php:5123 includes/functions.php:5183
1915
  msgid "for this year"
1916
  msgstr ""
1917
 
1918
+ #: includes/functions.old.php:5128 includes/functions.php:5188
1919
  msgid "for the last 15 days"
1920
  msgstr ""
1921
 
1922
+ #: includes/functions.old.php:5133 includes/functions.php:5193
1923
  msgid "for the last 30 days"
1924
  msgstr ""
1925
 
1926
+ #: includes/functions.old.php:5138 includes/functions.php:5198
1927
  msgid "for the last 90 days"
1928
  msgstr ""
1929
 
1930
+ #: includes/functions.old.php:5143 includes/functions.php:5203
1931
  msgid "for the last 180 days"
1932
  msgstr ""
1933
 
1934
+ #: includes/functions.old.php:5148 includes/functions.php:5208
1935
  msgid "for the last 365 days"
1936
  msgstr ""
1937
 
1939
  msgid "Pin list"
1940
  msgstr ""
1941
 
1942
+ #. translators: %s: Ad Inserter Pro
1943
+ #: includes/functions.php:1393
1944
+ msgid "Warning: %s plugin update server is not accessible"
1945
+ msgstr ""
1946
+
1947
+ #. translators: updates are not available
1948
+ #: includes/functions.php:1395
1949
+ msgid "updates"
1950
+ msgstr ""
1951
+
1952
+ #. translators: updates are not available
1953
+ #: includes/functions.php:1397
1954
+ msgid "are not available"
1955
+ msgstr ""
1956
+
1957
  #: includes/placeholders.php:20
1958
  msgid "Custom"
1959
  msgstr ""
1978
  msgid "Placeholder"
1979
  msgstr ""
1980
 
1981
+ #: includes/placeholders.php:363 settings.php:900 settings.php:4140
1982
  msgid "Size"
1983
  msgstr ""
1984
 
2086
  msgid "Ad Blocking Detected Message Preview"
2087
  msgstr ""
2088
 
2089
+ #: includes/preview-adb.php:348 settings.php:2754
2090
  msgid "Message CSS"
2091
  msgstr ""
2092
 
2093
+ #: includes/preview-adb.php:353 settings.php:2762
2094
  msgid "Overlay CSS"
2095
  msgstr ""
2096
 
2130
  msgid "background"
2131
  msgstr ""
2132
 
2133
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1251
2134
  msgid "Alignment"
2135
  msgstr ""
2136
 
2228
  "the values to those of the current block."
2229
  msgstr ""
2230
 
2231
+ #: settings.php:172 settings.php:1140
2232
  msgid ""
2233
  "Settings for individual exceptions have been updated. Please check all "
2234
  "blocks that have exceptions and and then save settings."
2238
  msgid "Online documentation"
2239
  msgstr ""
2240
 
2241
+ #: settings.php:218 settings.php:736 settings.php:2150
2242
  msgid "Show AdSense ad units"
2243
  msgstr ""
2244
 
2246
  msgid "Edit ads.txt file"
2247
  msgstr ""
2248
 
2249
+ #: settings.php:226 settings.php:1083
2250
  msgid "Check theme for available positions for automatic insertion"
2251
  msgstr ""
2252
 
2362
  msgid "General Settings"
2363
  msgstr ""
2364
 
2365
+ #: settings.php:684 settings.php:2481 settings.php:2548 settings.php:2734
2366
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2367
  msgstr ""
2368
 
2369
+ #: settings.php:691
2370
  msgid "Toggle tools"
2371
  msgstr ""
2372
 
2373
+ #: settings.php:699
2374
  msgid "Process PHP code in block"
2375
  msgstr ""
2376
 
2377
+ #: settings.php:706
2378
  msgid "Disable insertion of this block"
2379
  msgstr ""
2380
 
2381
+ #: settings.php:718
2382
  msgid "Toggle code generator"
2383
  msgstr ""
2384
 
2385
+ #: settings.php:722
2386
  msgid "Toggle rotation editor"
2387
  msgstr ""
2388
 
2389
+ #: settings.php:726
2390
  msgid "Open visual HTML editor"
2391
  msgstr ""
2392
 
2393
+ #: settings.php:745
2394
  msgid "Clear block"
2395
  msgstr ""
2396
 
2397
+ #: settings.php:750 settings.php:4012
2398
  msgid "Copy block"
2399
  msgstr ""
2400
 
2401
+ #: settings.php:754
2402
  msgid "Paste name"
2403
  msgstr ""
2404
 
2405
+ #: settings.php:758
2406
  msgid "Paste code"
2407
  msgstr ""
2408
 
2409
+ #: settings.php:762
2410
  msgid "Paste settings"
2411
  msgstr ""
2412
 
2413
+ #: settings.php:766
2414
  msgid "Paste block (name, code and settings)"
2415
  msgstr ""
2416
 
2417
+ #: settings.php:785
2418
  msgid "Rotation groups"
2419
  msgstr ""
2420
 
2421
+ #: settings.php:789
2422
  msgid "Remove option"
2423
  msgstr ""
2424
 
2425
+ #: settings.php:793
2426
  msgid "Add option"
2427
  msgstr ""
2428
 
2429
+ #: settings.php:808
2430
  msgid "Import code"
2431
  msgstr ""
2432
 
2433
+ #: settings.php:812
2434
  msgid "Generate code"
2435
  msgstr ""
2436
 
2437
+ #: settings.php:817
2438
  msgid "Banner"
2439
  msgstr ""
2440
 
2441
+ #: settings.php:828
2442
  msgid "Image"
2443
  msgstr ""
2444
 
2445
+ #: settings.php:836
2446
  msgid "Link"
2447
  msgstr ""
2448
 
2449
+ #: settings.php:847
2450
  msgid "Open link in a new tab"
2451
  msgstr ""
2452
 
2453
+ #: settings.php:848
2454
  msgid "Select Image"
2455
  msgstr ""
2456
 
2457
+ #: settings.php:849
2458
  msgid "Select Placeholder"
2459
  msgstr ""
2460
 
2461
+ #: settings.php:861
2462
  msgid "Comment"
2463
  msgstr ""
2464
 
2465
+ #: settings.php:870
2466
  msgctxt "AdSense"
2467
  msgid "Publisher ID"
2468
  msgstr ""
2469
 
2470
+ #: settings.php:879
2471
  msgctxt "AdSense"
2472
  msgid "Ad Slot ID"
2473
  msgstr ""
2474
 
2475
+ #: settings.php:888
2476
  msgid "Ad Type"
2477
  msgstr ""
2478
 
2479
+ #: settings.php:912
2480
  msgid "AMP Ad"
2481
  msgstr ""
2482
 
2483
+ #: settings.php:929
2484
  msgid "Show ad units from your AdSense account"
2485
  msgstr ""
2486
 
2487
+ #: settings.php:929
2488
  msgid "AdSense ad units"
2489
  msgstr ""
2490
 
2491
+ #: settings.php:946
2492
  msgctxt "AdSense"
2493
  msgid "Layout"
2494
  msgstr ""
2495
 
2496
+ #: settings.php:955
2497
  msgctxt "AdSense"
2498
  msgid "Layout Key"
2499
  msgstr ""
2500
 
2501
+ #: settings.php:965
2502
  msgid "Full width"
2503
  msgstr ""
2504
 
2505
+ #: settings.php:967
2506
  msgctxt "Full width"
2507
  msgid "Enabled"
2508
  msgstr ""
2509
 
2510
+ #: settings.php:968
2511
  msgctxt "Full width"
2512
  msgid "Disabled"
2513
  msgstr ""
2514
 
2515
+ #: settings.php:1049
2516
  msgid ""
2517
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2518
  "Cookie or Referer (domain)"
2519
  msgstr ""
2520
 
2521
+ #: settings.php:1049
2522
  msgid "Lists"
2523
  msgstr ""
2524
 
2525
+ #: settings.php:1050
2526
  msgid "Widget, Shortcode and PHP function call"
2527
  msgstr ""
2528
 
2529
+ #: settings.php:1050
2530
  msgid "Manual"
2531
  msgstr ""
2532
 
2533
+ #: settings.php:1051
2534
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2535
  msgstr ""
2536
 
2537
+ #: settings.php:1051
2538
  msgid "Devices"
2539
  msgstr ""
2540
 
2541
+ #: settings.php:1052
2542
  msgid ""
2543
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2544
  "feeds), Filter, Scheduling, General tag"
2545
  msgstr ""
2546
 
2547
+ #: settings.php:1052
2548
  msgid "Misc"
2549
  msgstr ""
2550
 
2551
+ #: settings.php:1053
2552
  msgid "Preview code and alignment"
2553
  msgstr ""
2554
 
2555
+ #: settings.php:1056 settings.php:2134
2556
  msgid ""
2557
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2558
  "editor is active before saving settings."
2559
  msgstr ""
2560
 
2561
+ #: settings.php:1069 settings.php:1070
 
 
 
 
2562
  msgid "Enable insertion on posts"
2563
  msgstr ""
2564
 
2565
+ #: settings.php:1070 settings.php:3280
2566
  msgid "Posts"
2567
  msgstr ""
2568
 
2569
+ #: settings.php:1074 settings.php:1075
2570
  msgid ""
2571
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2572
  "page or theme homepage (available positions may depend on hooks used by the "
2573
  "theme)"
2574
  msgstr ""
2575
 
2576
+ #: settings.php:1075 settings.php:3282
2577
  msgid "Homepage"
2578
  msgstr ""
2579
 
2580
+ #: settings.php:1079 settings.php:1080
2581
  msgid "Enable insertion on category blog pages (including sub-pages)"
2582
  msgstr ""
2583
 
2584
+ #: settings.php:1080 settings.php:3283
2585
  msgid "Category pages"
2586
  msgstr ""
2587
 
2588
+ #: settings.php:1090 settings.php:1091
2589
  msgid "Enable insertion on static pages"
2590
  msgstr ""
2591
 
2592
+ #: settings.php:1091 settings.php:3281
2593
  msgid "Static pages"
2594
  msgstr ""
2595
 
2596
+ #: settings.php:1095 settings.php:1096
2597
  msgid "Enable insertion on search blog pages"
2598
  msgstr ""
2599
 
2600
+ #: settings.php:1096 settings.php:3285
2601
  msgid "Search pages"
2602
  msgstr ""
2603
 
2604
+ #: settings.php:1100 settings.php:1101
2605
  msgid "Enable insertion on tag or archive blog pages"
2606
  msgstr ""
2607
 
2608
+ #: settings.php:1104
2609
  msgid "Toggle settings for default insertion and list of individual exceptions"
2610
  msgstr ""
2611
 
2612
+ #: settings.php:1116
2613
  msgid ""
2614
  "Enable individual post/page exceptions for insertion of this block. They can "
2615
  "be configured on the individual post/page editor page (in the settings below "
2616
  "the editor)."
2617
  msgstr ""
2618
 
2619
+ #: settings.php:1117
2620
  msgid ""
2621
  "Enable individual post/page exceptions for insertion of this block. When "
2622
  "enabled they can be configured on the individual post/page editor page (in "
2623
  "the settings below the editor)."
2624
  msgstr ""
2625
 
2626
+ #: settings.php:1117
2627
  msgid "Use exceptions for individual posts or pages to change insertion"
2628
  msgstr ""
2629
 
2630
  #. Translators: Enabled means...
2631
+ #: settings.php:1125
2632
  msgid ""
2633
  "means the insertion for this block is enabled by default and disabled for "
2634
  "exceptions."
2635
  msgstr ""
2636
 
2637
  #. Translators: Disabled means...
2638
+ #: settings.php:1126
2639
  msgid ""
2640
  "means the insertion for this block is disabled by default and enabled for "
2641
  "exceptions."
2642
  msgstr ""
2643
 
2644
+ #: settings.php:1127
2645
  msgid ""
2646
  "When individual post/page exceptions are enabled they can be configured on "
2647
  "the individual post/page editor page (in the settings below the editor)."
2648
  msgstr ""
2649
 
2650
+ #: settings.php:1135
2651
  msgid ""
2652
  "No exception for post or static page defined. Block will not be inserted."
2653
  msgstr ""
2654
 
2655
+ #: settings.php:1153
2656
  msgctxt "post"
2657
  msgid "Type"
2658
  msgstr ""
2659
 
2660
  #. translators: %d: block number
2661
+ #: settings.php:1155
2662
  msgid "Are you sure you want to clear all exceptions for block %d?"
2663
  msgstr ""
2664
 
2665
+ #: settings.php:1182 settings.php:1330 settings.php:1926
2666
  msgid "Insertion"
2667
  msgstr ""
2668
 
2669
+ #: settings.php:1220
2670
  msgid ""
2671
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2672
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
2676
  "negative number means counting from the opposite direction"
2677
  msgstr ""
2678
 
2679
+ #: settings.php:1221
2680
  msgid ""
2681
  "Image number or comma separated image numbers: 1 to N means image number, %N "
2682
  "means every N images, empty means all images, 0 means random image, value "
2686
  "direction"
2687
  msgstr ""
2688
 
2689
+ #: settings.php:1234
2690
  msgid ""
2691
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
2692
  "numbers, %N means every N excerpts, empty means all excerpts"
2693
  msgstr ""
2694
 
2695
+ #: settings.php:1235
2696
  msgid ""
2697
  "Insertion Filter Mirror Setting | Post number or comma separated post "
2698
  "numbers, %N means every N posts, empty means all posts"
2699
  msgstr ""
2700
 
2701
+ #: settings.php:1236
2702
  msgid ""
2703
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
2704
  "numbers, %N means every N comments, empty means all comments"
2705
  msgstr ""
2706
 
2707
+ #: settings.php:1243
2708
  msgid "Toggle paragraph counting settings"
2709
  msgstr ""
2710
 
2711
+ #: settings.php:1244
2712
  msgid "Toggle paragraph clearance settings"
2713
  msgstr ""
2714
 
2715
+ #: settings.php:1247
2716
  msgid "Toggle insertion filter settings"
2717
  msgstr ""
2718
 
2719
+ #: settings.php:1265
2720
  msgid "Toggle insertion and alignment icons"
2721
  msgstr ""
2722
 
2723
+ #: settings.php:1279
2724
  msgid "Custom CSS code for the wrapping div"
2725
  msgstr ""
2726
 
2727
+ #: settings.php:1282 settings.php:1283 settings.php:1284 settings.php:1285
2728
+ #: settings.php:1286 settings.php:1287
2729
  msgid "CSS code for the wrapping div, click to edit"
2730
  msgstr ""
2731
 
2732
+ #: settings.php:1300
2733
  msgid "HTML element"
2734
  msgstr ""
2735
 
2736
+ #: settings.php:1313
2737
  msgid "HTML element selector or comma separated list of selectors"
2738
  msgstr ""
2739
 
2740
+ #: settings.php:1319 settings.php:2639
2741
  msgid "Action"
2742
  msgstr ""
2743
 
2744
+ #: settings.php:1331
2745
  msgid ""
2746
  "Client-side insertion uses JavaScript to insert block when the page loads. "
2747
  "Server-side insertion inserts block when the page is generated but needs "
2748
  "Output buffering enabled."
2749
  msgstr ""
2750
 
2751
+ #: settings.php:1341
2752
  msgid "JavaScript code position"
2753
  msgstr ""
2754
 
2755
+ #: settings.php:1342
2756
  msgid ""
2757
  "Page position where the JavaScript code for client-side insertion will be "
2758
  "inserted. Should be after the HTML element if not waiting for DOM ready."
2759
  msgstr ""
2760
 
2761
+ #: settings.php:1357
2762
  msgid "Count"
2763
  msgstr ""
2764
 
2765
+ #: settings.php:1363
2766
  msgid "paragraphs with tags"
2767
  msgstr ""
2768
 
2769
+ #: settings.php:1369
2770
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
2771
  msgstr ""
2772
 
2773
+ #: settings.php:1378
2774
  msgid "that have between"
2775
  msgstr ""
2776
 
2777
+ #: settings.php:1384
2778
  msgid "Minimum number of paragraph words, leave empty for no limit"
2779
  msgstr ""
2780
 
2781
+ #: settings.php:1393
2782
  msgid "Maximum number of paragraph words, leave empty for no limit"
2783
  msgstr ""
2784
 
2785
+ #: settings.php:1396
2786
  msgid "words"
2787
  msgstr ""
2788
 
2789
+ #: settings.php:1411 settings.php:1469 settings.php:1539 settings.php:1565
2790
  msgid "Comma separated texts"
2791
  msgstr ""
2792
 
2793
+ #: settings.php:1424
2794
  msgid ""
2795
  "Count also paragraphs inside these elements - defined on general plugin "
2796
  "settings page - tab [*] / tab General"
2797
  msgstr ""
2798
 
2799
  #. Translators: %s: HTML tags
2800
+ #: settings.php:1429
2801
  msgid "Count inside %s elements"
2802
  msgstr ""
2803
 
2804
  #. translators: inside [HTML tags] elements that contain
2805
+ #: settings.php:1441
2806
  msgid "inside"
2807
  msgstr ""
2808
 
2809
+ #: settings.php:1447
2810
  msgid "Comma separated HTML tag names of container elements"
2811
  msgstr ""
2812
 
2813
  #. translators: inside [HTML tags] elements that contain
2814
+ #: settings.php:1456
2815
  msgid "elements that"
2816
  msgstr ""
2817
 
2818
+ #: settings.php:1482 settings.php:2049
2819
+ msgid "Post/Static page must have between"
2820
+ msgstr ""
2821
+
2822
+ #: settings.php:1488
2823
+ msgid "Minimum number of paragraphs, leave empty for no limit"
2824
  msgstr ""
2825
 
2826
+ #: settings.php:1497
2827
+ msgid "Maximum number of paragraphs, leave empty for no limit"
2828
+ msgstr ""
2829
+
2830
+ #. Translators: Post/Static page must have between X and Y paragraphs
2831
+ #: settings.php:1500
2832
+ msgid "paragraph"
2833
+ msgid_plural "paragraphs"
2834
+ msgstr[0] ""
2835
+ msgstr[1] ""
2836
+
2837
+ #: settings.php:1508
2838
  msgid "Minimum number of words in paragraphs above"
2839
  msgstr ""
2840
 
2841
+ #: settings.php:1514
2842
  msgid ""
2843
  "Used only with automatic insertion After paragraph and empty paragraph "
2844
  "numbers"
2845
  msgstr ""
2846
 
2847
+ #: settings.php:1524 settings.php:1550
2848
  msgid "In"
2849
  msgstr ""
2850
 
2851
+ #: settings.php:1530
2852
  msgid "Number of paragraphs above to check, leave empty to disable checking"
2853
  msgstr ""
2854
 
2855
+ #: settings.php:1533
2856
  msgid "paragraphs above avoid"
2857
  msgstr ""
2858
 
2859
+ #: settings.php:1556
2860
  msgid "Number of paragraphs below to check, leave empty to disable checking"
2861
  msgstr ""
2862
 
2863
+ #: settings.php:1559
2864
  msgid "paragraphs below avoid"
2865
  msgstr ""
2866
 
2867
+ #: settings.php:1575
2868
  msgid "If text is found"
2869
  msgstr ""
2870
 
2871
+ #: settings.php:1582
2872
  msgid "check up to"
2873
  msgstr ""
2874
 
2875
+ #: settings.php:1590
2876
  msgctxt "check up to"
2877
  msgid "paragraphs"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:1606
2881
  msgid "Categories"
2882
  msgstr ""
2883
 
2884
+ #: settings.php:1609
2885
  msgid "Toggle category editor"
2886
  msgstr ""
2887
 
2888
+ #: settings.php:1612
2889
  msgid "Comma separated category slugs"
2890
  msgstr ""
2891
 
2892
+ #: settings.php:1616
2893
  msgid "Blacklist categories"
2894
  msgstr ""
2895
 
2896
+ #: settings.php:1620
2897
  msgid "Whitelist categories"
2898
  msgstr ""
2899
 
2900
+ #: settings.php:1632
2901
  msgid "Tags"
2902
  msgstr ""
2903
 
2904
+ #: settings.php:1635
2905
  msgid "Toggle tag editor"
2906
  msgstr ""
2907
 
2908
+ #: settings.php:1638
2909
  msgid "Comma separated tag slugs"
2910
  msgstr ""
2911
 
2912
+ #: settings.php:1642
2913
  msgid "Blacklist tags"
2914
  msgstr ""
2915
 
2916
+ #: settings.php:1646
2917
  msgid "Whitelist tags"
2918
  msgstr ""
2919
 
2920
+ #: settings.php:1658
2921
  msgid "Taxonomies"
2922
  msgstr ""
2923
 
2924
+ #: settings.php:1661
2925
  msgid "Toggle taxonomy editor"
2926
  msgstr ""
2927
 
2928
+ #: settings.php:1664
2929
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
2930
  msgstr ""
2931
 
2932
+ #: settings.php:1668
2933
  msgid "Blacklist taxonomies"
2934
  msgstr ""
2935
 
2936
+ #: settings.php:1672
2937
  msgid "Whitelist taxonomies"
2938
  msgstr ""
2939
 
2940
+ #: settings.php:1684
2941
  msgid "Post IDs"
2942
  msgstr ""
2943
 
2944
+ #: settings.php:1687
2945
  msgid "Toggle post/page ID editor"
2946
  msgstr ""
2947
 
2948
+ #: settings.php:1690
2949
  msgid "Comma separated post/page IDs"
2950
  msgstr ""
2951
 
2952
+ #: settings.php:1694
2953
  msgid "Blacklist IDs"
2954
  msgstr ""
2955
 
2956
+ #: settings.php:1698
2957
  msgid "Whitelist IDs"
2958
  msgstr ""
2959
 
2960
+ #: settings.php:1710
2961
  msgid "Urls"
2962
  msgstr ""
2963
 
2964
+ #: settings.php:1713
2965
  msgid "Toggle url editor"
2966
  msgstr ""
2967
 
2968
+ #: settings.php:1716
2969
  msgid ""
2970
  "Comma separated urls (page addresses) starting with / after domain name (e."
2971
  "g. /permalink-url, use only when you need to taget a specific url not "
2973
  "start*. *url-pattern*, *url-end)"
2974
  msgstr ""
2975
 
2976
+ #: settings.php:1720
2977
  msgid "Blacklist urls"
2978
  msgstr ""
2979
 
2980
+ #: settings.php:1724
2981
  msgid "Whitelist urls"
2982
  msgstr ""
2983
 
2984
+ #: settings.php:1735
2985
  msgid "Url parameters"
2986
  msgstr ""
2987
 
2988
+ #: settings.php:1739
2989
  msgid "Toggle url parameter and cookie editor"
2990
  msgstr ""
2991
 
2992
+ #: settings.php:1742
2993
  msgid ""
2994
  "Comma separated url query parameters or cookies with optional values (use "
2995
  "'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
2996
  msgstr ""
2997
 
2998
+ #: settings.php:1746
2999
  msgid "Blacklist url parameters"
3000
  msgstr ""
3001
 
3002
+ #: settings.php:1750
3003
  msgid "Whitelist url parameters"
3004
  msgstr ""
3005
 
3006
+ #: settings.php:1761
3007
  msgid "Referrers"
3008
  msgstr ""
3009
 
3010
+ #: settings.php:1764
3011
  msgid "Toggle referer editor"
3012
  msgstr ""
3013
 
3014
+ #: settings.php:1767
3015
  msgid ""
3016
  "Comma separated domains, use # for no referrer, you can also use partial "
3017
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3018
  msgstr ""
3019
 
3020
+ #: settings.php:1771
3021
  msgid "Blacklist referers"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:1775
3025
  msgid "Whitelist referers"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:1795
3029
  msgid "Enable widget for this block"
3030
  msgstr ""
3031
 
3032
+ #: settings.php:1807
3033
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3034
  msgstr ""
3035
 
3036
+ #: settings.php:1808 settings.php:4068
3037
  msgid "Shortcode"
3038
  msgstr ""
3039
 
3040
+ #: settings.php:1823
3041
  msgid ""
3042
  "Enable PHP function call to insert this block at any position in theme file. "
3043
  "If function is disabled for block it will return empty string."
3044
  msgstr ""
3045
 
3046
+ #: settings.php:1824
3047
  msgid "PHP function"
3048
  msgstr ""
3049
 
3050
+ #: settings.php:1839
3051
  msgid "Client-side device detection"
3052
  msgstr ""
3053
 
3054
+ #: settings.php:1840
3055
  msgid "Server-side device detection"
3056
  msgstr ""
3057
 
3058
+ #: settings.php:1847
3059
  msgid "Use client-side detection to"
3060
  msgstr ""
3061
 
3062
+ #: settings.php:1849
3063
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3064
  msgstr ""
3065
 
3066
  #. Translators: only on (the following devices): viewport names (devices)
3067
  #. listed
3068
+ #: settings.php:1854
3069
  msgid "only on"
3070
  msgstr ""
3071
 
3072
+ #: settings.php:1882
3073
  msgid "Device min width %s px"
3074
  msgstr ""
3075
 
3076
+ #: settings.php:1908
3077
  msgid "Use server-side detection to insert block only for"
3078
  msgstr ""
3079
 
3080
+ #: settings.php:1927
3081
  msgid "Filter"
3082
  msgstr ""
3083
 
3084
+ #: settings.php:1928
3085
  msgid "Word Count"
3086
  msgstr ""
3087
 
3088
+ #: settings.php:1929 settings.php:4058
3089
  msgid "Scheduling"
3090
  msgstr ""
3091
 
3092
+ #: settings.php:1930
3093
  msgid "Display"
3094
  msgstr ""
3095
 
3096
+ #: settings.php:1932 settings.php:2176
3097
  msgid "General"
3098
  msgstr ""
3099
 
3100
+ #: settings.php:1944
3101
  msgid "Old settings for AMP pages detected"
3102
  msgstr ""
3103
 
3104
+ #: settings.php:1944
3105
  msgid ""
3106
  "To insert different codes on normal and AMP pages separate them with "
3107
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3108
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3109
  msgstr ""
3110
 
3111
+ #: settings.php:1944
3112
  msgid "AMP pages"
3113
  msgstr ""
3114
 
3115
+ #: settings.php:1949
3116
  msgid "Enable insertion for Ajax requests"
3117
  msgstr ""
3118
 
3119
+ #: settings.php:1949
3120
  msgid "Ajax requests"
3121
  msgstr ""
3122
 
3123
+ #: settings.php:1954
3124
  msgid "Enable insertion in RSS feeds"
3125
  msgstr ""
3126
 
3127
+ #: settings.php:1954
3128
  msgid "RSS Feed"
3129
  msgstr ""
3130
 
3131
+ #: settings.php:1959
3132
  msgid "Enable insertion on page for Error 404: Page not found"
3133
  msgstr ""
3134
 
3135
+ #: settings.php:1959
3136
  msgid "Error 404 page"
3137
  msgstr ""
3138
 
3139
+ #: settings.php:1971
3140
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3141
  msgstr ""
3142
 
3143
+ #: settings.php:1972
3144
  msgid "insertions"
3145
  msgstr ""
3146
 
3147
+ #: settings.php:1974
3148
  msgid ""
3149
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3150
  "General)"
3151
  msgstr ""
3152
 
3153
+ #: settings.php:1977 settings.php:2345
3154
  msgid "Max blocks per page"
3155
  msgstr ""
3156
 
3157
+ #: settings.php:1989
3158
  msgid "Insert for"
3159
  msgstr ""
3160
 
3161
+ #: settings.php:1997
3162
  msgid ""
3163
  "Insert block only when WP function in_the_loop () returns true (WP loop is "
3164
  "currently active). Might speed up insertion on content pages when "
3165
  "the_content filter is called multiple times."
3166
  msgstr ""
3167
 
3168
+ #: settings.php:2000
3169
  msgid "Insert only in the loop"
3170
  msgstr ""
3171
 
3172
+ #: settings.php:2006
3173
  msgid ""
3174
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3175
  msgstr ""
3176
 
3177
+ #: settings.php:2006
3178
  msgid "Disable caching"
3179
  msgstr ""
3180
 
3181
+ #: settings.php:2018
3182
  msgid "Filter insertions"
3183
  msgstr ""
3184
 
3185
+ #: settings.php:2021
3186
  msgid ""
3187
  "Filter multiple insertions by specifying wanted insertions for this block - "
3188
  "single number, comma separated numbers or %N for every N insertions - empty "
3190
  "using only one insertion type."
3191
  msgstr ""
3192
 
3193
+ #: settings.php:2024
3194
  msgid "using"
3195
  msgstr ""
3196
 
3197
+ #: settings.php:2043
3198
  msgid "Checked means specified calls are unwanted"
3199
  msgstr ""
3200
 
3201
+ #: settings.php:2043
3202
  msgid "Invert filter"
3203
  msgstr ""
3204
 
3205
+ #: settings.php:2050
 
 
 
 
3206
  msgid "Minimum number of post/static page words, leave empty for no limit"
3207
  msgstr ""
3208
 
3209
+ #: settings.php:2052
3210
  msgid "Maximum number of post/static page words, leave empty for no limit"
3211
  msgstr ""
3212
 
3213
+ #: settings.php:2065
3214
  msgid "days after publishing"
3215
  msgstr ""
3216
 
3217
+ #: settings.php:2067
3218
  msgid "Not available"
3219
  msgstr ""
3220
 
3221
+ #: settings.php:2080 settings.php:2337
3222
  msgid "Ad label"
3223
  msgstr ""
3224
 
3225
+ #: settings.php:2100
3226
  msgid "General tag"
3227
  msgstr ""
3228
 
3229
+ #: settings.php:2104
3230
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3231
  msgstr ""
3232
 
3233
  #. translators: %s: HTML tags
3234
+ #: settings.php:2113
3235
  msgid ""
3236
  "%s WARNING: %s No Wrapping %s style has no wrapping code needed for client-"
3237
  "side device detection!"
3238
  msgstr ""
3239
 
3240
+ #: settings.php:2125
3241
  msgid "Settings"
3242
  msgstr ""
3243
 
3244
+ #: settings.php:2128
3245
  msgid "Settings timestamp"
3246
  msgstr ""
3247
 
3248
+ #: settings.php:2141
3249
  msgid "Are you sure you want to reset all settings?"
3250
  msgstr ""
3251
 
3252
+ #: settings.php:2141
3253
  msgid "Reset All Settings"
3254
  msgstr ""
3255
 
3256
+ #: settings.php:2177
3257
  msgid "Viewports"
3258
  msgstr ""
3259
 
3260
+ #: settings.php:2178
3261
  msgid "Hooks"
3262
  msgstr ""
3263
 
3264
+ #: settings.php:2179
3265
  msgid "Header"
3266
  msgstr ""
3267
 
3268
+ #: settings.php:2180 strings.php:30
3269
  msgid "Footer"
3270
  msgstr ""
3271
 
3272
+ #: settings.php:2185
3273
  msgid "Debugging"
3274
  msgstr ""
3275
 
3276
+ #: settings.php:2195
3277
  msgid "Plugin priority"
3278
  msgstr ""
3279
 
3280
+ #: settings.php:2203
3281
  msgid "Output buffering"
3282
  msgstr ""
3283
 
3284
+ #: settings.php:2206
3285
  msgid "Needed for position Above header but may not work with all themes"
3286
  msgstr ""
3287
 
3288
+ #: settings.php:2214
3289
  msgid "Syntax highlighting theme"
3290
  msgstr ""
3291
 
3292
+ #: settings.php:2221
3293
  msgctxt "no syntax highlighting themes"
3294
  msgid "None"
3295
  msgstr ""
3296
 
3297
+ #: settings.php:2222
3298
  msgid "No Syntax Highlighting"
3299
  msgstr ""
3300
 
3301
+ #: settings.php:2224
3302
  msgctxt "syntax highlighting themes"
3303
  msgid "Light"
3304
  msgstr ""
3305
 
3306
+ #: settings.php:2239
3307
  msgctxt "syntax highlighting themes"
3308
  msgid "Dark"
3309
  msgstr ""
3310
 
3311
+ #: settings.php:2265
3312
  msgid "Min. user role for ind. exceptions editing"
3313
  msgstr ""
3314
 
3315
+ #: settings.php:2275
3316
  msgid "Disable caching for logged in administrators"
3317
  msgstr ""
3318
 
3319
+ #: settings.php:2278
3320
  msgid ""
3321
  "Enabled means that logged in administrators will see non-cached (live) pages "
3322
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3323
  msgstr ""
3324
 
3325
+ #: settings.php:2286
3326
  msgid "Sticky widget mode"
3327
  msgstr ""
3328
 
3329
+ #: settings.php:2289
3330
  msgid ""
3331
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3332
  "mode works with most themes but may reload ads on page load."
3333
  msgstr ""
3334
 
3335
+ #: settings.php:2297
3336
  msgid "Sticky widget top margin"
3337
  msgstr ""
3338
 
3339
+ #: settings.php:2305
3340
  msgid "Dynamic blocks"
3341
  msgstr ""
3342
 
3343
+ #: settings.php:2318
3344
  msgid "Functions for paragraph counting"
3345
  msgstr ""
3346
 
3347
+ #: settings.php:2321
3348
  msgid ""
3349
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3350
  "functions if paragraphs are not counted properly on non-english pages."
3351
  msgstr ""
3352
 
3353
+ #: settings.php:2329
3354
  msgid "No paragraph counting inside"
3355
  msgstr ""
3356
 
3357
+ #: settings.php:2340
3358
  msgid "Label text or HTML code"
3359
  msgstr ""
3360
 
3361
+ #: settings.php:2348
3362
  msgid ""
3363
  "Maximum number of inserted blocks per page. You need to enable Max page "
3364
  "insertions (button Misc / tab Insertion) to count block for this limit."
3365
  msgstr ""
3366
 
3367
+ #: settings.php:2362
3368
  msgid "Plugin usage tracking"
3369
  msgstr ""
3370
 
3371
  #. translators: %s: Ad Inserter
3372
+ #: settings.php:2365
3373
  msgid ""
3374
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3375
  "Only information regarding the WordPress environment and %s usage is "
3376
  "recorded (once per month and on events like plugin activation/deactivation)."
3377
  msgstr ""
3378
 
3379
+ #: settings.php:2383
3380
  msgid "CSS class name for the wrapping div"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:2383
3384
  msgid "Block class name"
3385
  msgstr ""
3386
 
3387
+ #: settings.php:2387
3388
  msgid "Include general plugin block class"
3389
  msgstr ""
3390
 
3391
+ #: settings.php:2387
3392
  msgid "Block class"
3393
  msgstr ""
3394
 
3395
+ #: settings.php:2392
3396
  msgid "Include block number class"
3397
  msgstr ""
3398
 
3399
+ #: settings.php:2392
3400
  msgid "Block number class"
3401
  msgstr ""
3402
 
3403
+ #: settings.php:2397
3404
  msgid ""
3405
  "Instead of alignment classes generate inline alignment styles for blocks"
3406
  msgstr ""
3407
 
3408
+ #: settings.php:2397
3409
  msgid "Inline styles"
3410
  msgstr ""
3411
 
3412
+ #: settings.php:2403
3413
  msgid "Preview of the block wrapping code"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:2404
3417
  msgid "Wrapping div"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:2405 settings.php:2845
3421
  msgid "BLOCK CODE"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:2413
3425
  msgid "Viewport Settings used for client-side device detection"
3426
  msgstr ""
3427
 
3428
  #. Translators: %d: viewport number
3429
+ #: settings.php:2421
3430
  msgid "Viewport %d name"
3431
  msgstr ""
3432
 
3433
+ #: settings.php:2424
3434
  msgid "min width"
3435
  msgstr ""
3436
 
3437
+ #: settings.php:2435
3438
  msgid "Custom Hooks"
3439
  msgstr ""
3440
 
3441
+ #: settings.php:2447 settings.php:2450
3442
  msgid "Enable hook"
3443
  msgstr ""
3444
 
3445
  #. translators: %d: hook number
3446
+ #: settings.php:2450
3447
  msgid "Hook %d name"
3448
  msgstr ""
3449
 
3450
+ #: settings.php:2453
3451
  msgid "Hook name for automatic insertion selection"
3452
  msgstr ""
3453
 
3454
+ #: settings.php:2456
3455
  msgid "action"
3456
  msgstr ""
3457
 
3458
+ #: settings.php:2459
3459
  msgid "Action name as used in the do_action () function"
3460
  msgstr ""
3461
 
3462
+ #: settings.php:2462
3463
  msgid "priority"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:2465
3467
  msgid "Priority for the hook (default is 10)"
3468
  msgstr ""
3469
 
3470
+ #: settings.php:2486
3471
  msgid "Enable insertion of this code into HTML page header"
3472
  msgstr ""
3473
 
3474
+ #: settings.php:2490 settings.php:2557 settings.php:2739
3475
  msgid "Process PHP code"
3476
  msgstr ""
3477
 
3478
+ #: settings.php:2494
3479
  msgid "HTML Page Header Code"
3480
  msgstr ""
3481
 
3482
+ #: settings.php:2502
3483
  msgid "Code in the %s section of the HTML page"
3484
  msgstr ""
3485
 
3486
+ #: settings.php:2503
3487
  msgctxt "code in the header"
3488
  msgid "NOT ENABLED"
3489
  msgstr ""
3490
 
3491
+ #: settings.php:2520 settings.php:2588
3492
  msgid "Use server-side detection to insert code only for"
3493
  msgstr ""
3494
 
3495
+ #: settings.php:2535
3496
  msgid ""
3497
  "Enable insertion of this code into HTML page header on page for Error 404: "
3498
  "Page not found"
3499
  msgstr ""
3500
 
3501
+ #: settings.php:2535 settings.php:2603
3502
  msgid "Insert on Error 404 page"
3503
  msgstr ""
3504
 
3505
+ #: settings.php:2553
3506
  msgid "Enable insertion of this code into HTML page footer"
3507
  msgstr ""
3508
 
3509
+ #: settings.php:2561
3510
  msgid "HTML Page Footer Code"
3511
  msgstr ""
3512
 
3513
  #. translators: %s: HTML tags
3514
+ #: settings.php:2569
3515
  msgid "Code before the %s tag of the the HTML page"
3516
  msgstr ""
3517
 
3518
+ #: settings.php:2570
3519
  msgctxt "code in the footer"
3520
  msgid "NOT ENABLED"
3521
  msgstr ""
3522
 
3523
+ #: settings.php:2603
3524
  msgid ""
3525
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3526
  "Page not found"
3527
  msgstr ""
3528
 
3529
+ #: settings.php:2619
3530
  msgid "Code for ad blocking detection inserted. Click for details."
3531
  msgstr ""
3532
 
3533
+ #: settings.php:2624
3534
  msgid "Enable detection of ad blocking"
3535
  msgstr ""
3536
 
3537
+ #: settings.php:2642
3538
  msgid "Global action when ad blocking is detected"
3539
  msgstr ""
3540
 
3541
+ #: settings.php:2648
3542
  msgid "No action for"
3543
  msgstr ""
3544
 
3545
+ #: settings.php:2649
3546
  msgid "Exceptions for global action when ad blocking is detected."
3547
  msgstr ""
3548
 
3549
+ #: settings.php:2659
3550
  msgid "Delay Action"
3551
  msgstr ""
3552
 
3553
+ #: settings.php:2662
3554
  msgid ""
3555
  "Number of page views to delay action when ad blocking is detected. Leave "
3556
  "empty for no delay (action fires on first page view). Sets cookie."
3557
  msgstr ""
3558
 
3559
+ #: settings.php:2662
3560
  msgctxt "Delay Action for x "
3561
  msgid "page views"
3562
  msgstr ""
3563
 
3564
+ #: settings.php:2667
3565
  msgid "No Action Period"
3566
  msgstr ""
3567
 
3568
+ #: settings.php:2670
3569
  msgid ""
3570
  "Number of days to supress action when ad blocking is detected. Leave empty "
3571
  "for no no-action period (action fires always after defined page view delay). "
3572
  "Sets cookie."
3573
  msgstr ""
3574
 
3575
+ #: settings.php:2670
3576
  msgctxt "no action period"
3577
  msgid "days"
3578
  msgstr ""
3579
 
3580
+ #: settings.php:2675
3581
  msgid "Custom Selectors"
3582
  msgstr ""
3583
 
3584
+ #: settings.php:2678
3585
  msgid ""
3586
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3587
  "blocking detection. Invisible element or element with zero height means ad "
3588
  "blocking is present."
3589
  msgstr ""
3590
 
3591
+ #: settings.php:2690
3592
  msgid "Redirection Page"
3593
  msgstr ""
3594
 
3595
+ #: settings.php:2702
3596
  msgid "Custom Url"
3597
  msgstr ""
3598
 
3599
+ #: settings.php:2707
3600
  msgid ""
3601
  "Static page for redirection when ad blocking is detected. For other pages "
3602
  "select Custom url and set it below."
3603
  msgstr ""
3604
 
3605
+ #: settings.php:2716
3606
  msgid "Custom Redirection Url"
3607
  msgstr ""
3608
 
3609
+ #: settings.php:2728
3610
  msgid "Message HTML code"
3611
  msgstr ""
3612
 
3613
+ #: settings.php:2741
3614
  msgid "Preview message when ad blocking is detected"
3615
  msgstr ""
3616
 
3617
+ #: settings.php:2770
3618
  msgid "Prevent visitors from closing the warning message"
3619
  msgstr ""
3620
 
3621
+ #: settings.php:2770
3622
  msgid "Undismissible Message"
3623
  msgstr ""
3624
 
3625
+ #: settings.php:2776
3626
  msgid "Not undismissible for"
3627
  msgstr ""
3628
 
3629
+ #: settings.php:2777
3630
  msgid "Users which can close the warning message."
3631
  msgstr ""
3632
 
3633
+ #: settings.php:2791
3634
  msgid ""
3635
  "Force showing admin toolbar for administrators when viewing site. Enable "
3636
  "this option when you are logged in as admin and you don't see admin toolbar."
3637
  msgstr ""
3638
 
3639
+ #: settings.php:2799
3640
  msgid "Disable header code (Header tab)"
3641
  msgstr ""
3642
 
3643
+ #: settings.php:2803
3644
  msgid "Disable footer code (Footer tab)"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: Ad Inserter
3648
+ #: settings.php:2807
3649
  msgid "Disable %s JavaScript code"
3650
  msgstr ""
3651
 
3652
  #. translators: %s: Ad Inserter
3653
+ #: settings.php:2811
3654
  msgid "Disable %s CSS code"
3655
  msgstr ""
3656
 
3657
+ #: settings.php:2815
3658
  msgid ""
3659
  "Disable PHP code processing (in all blocks including header and footer code)"
3660
  msgstr ""
3661
 
3662
+ #: settings.php:2819
3663
  msgid "Disable insertion of all blocks"
3664
  msgstr ""
3665
 
3666
+ #: settings.php:2823
3667
  msgid "Disable insertions"
3668
  msgstr ""
3669
 
3670
  #. translators: %s: Ad Inserter
3671
+ #: settings.php:2835
3672
  msgid "%s CSS CODE"
3673
  msgstr ""
3674
 
3675
+ #: settings.php:2838
3676
  msgid "HEADER CODE"
3677
  msgstr ""
3678
 
3679
  #. translators: %s: PHP tags
3680
+ #: settings.php:2844
3681
  msgid "BLOCK PHP CODE"
3682
  msgstr ""
3683
 
3684
  #. translators: %s: Ad Inserter
3685
+ #: settings.php:2850
3686
  msgid "%s JS CODE"
3687
  msgstr ""
3688
 
3689
+ #: settings.php:2853
3690
  msgid "FOOTER CODE"
3691
  msgstr ""
3692
 
3693
+ #: settings.php:2862
3694
  msgid "Force showing admin toolbar when viewing site"
3695
  msgstr ""
3696
 
3697
+ #: settings.php:2869
3698
  msgid "Enable debugging functions in admin toolbar"
3699
  msgstr ""
3700
 
3701
+ #: settings.php:2871
3702
  msgid "Debugging functions in admin toolbar"
3703
  msgstr ""
3704
 
3705
+ #: settings.php:2878
3706
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3707
  msgstr ""
3708
 
3709
+ #: settings.php:2880
3710
  msgid "Debugging functions on mobile screens"
3711
  msgstr ""
3712
 
3713
+ #: settings.php:2887
3714
  msgid ""
3715
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3716
  "tags, processing) by url parameters for non-logged in users. Enable this "
3719
  "administrators debugging is always enabled."
3720
  msgstr ""
3721
 
3722
+ #: settings.php:2889
3723
  msgid "Remote debugging"
3724
  msgstr ""
3725
 
3726
+ #: settings.php:2896
3727
  msgid ""
3728
  "Disable translation to see original texts for the settings and messages in "
3729
  "English"
3730
  msgstr ""
3731
 
3732
+ #: settings.php:2898
3733
  msgid "Disable translation"
3734
  msgstr ""
3735
 
3736
+ #: settings.php:3268
3737
  msgid "Available positions for current theme"
3738
  msgstr ""
3739
 
3740
+ #: settings.php:3269
3741
  msgid "Error checking pages"
3742
  msgstr ""
3743
 
3744
+ #: settings.php:3272
3745
  msgid "Toggle theme checker for available positions for automatic insertion"
3746
  msgstr ""
3747
 
3748
+ #: settings.php:3272
3749
  msgctxt "Button"
3750
  msgid "Check"
3751
  msgstr ""
3752
 
3753
+ #: settings.php:3279
3754
  msgid "Position"
3755
  msgstr ""
3756
 
3757
+ #: settings.php:3284
3758
  msgid "Archive pages"
3759
  msgstr ""
3760
 
3761
+ #: settings.php:3343
3762
  msgid ""
3763
  "Position not available because output buffering (tab [*]) is not enabled"
3764
  msgstr ""
3765
 
3766
+ #: settings.php:3346 strings.php:226
3767
  msgid "Position not checked yet"
3768
  msgstr ""
3769
 
3770
+ #: settings.php:3382
3771
  msgid "Toggle active/all blocks"
3772
  msgstr ""
3773
 
3774
+ #: settings.php:3386 strings.php:213
3775
  msgid "Rearrange block order"
3776
  msgstr ""
3777
 
3778
+ #: settings.php:3391
3779
  msgid "Save new block order"
3780
  msgstr ""
3781
 
3782
+ #: settings.php:3417
3783
  msgid "Toggle active/all ad units"
3784
  msgstr ""
3785
 
3786
+ #: settings.php:3421
3787
  msgid "Reload AdSense ad units"
3788
  msgstr ""
3789
 
3790
+ #: settings.php:3425
3791
  msgid "Clear authorization to access AdSense account"
3792
  msgstr ""
3793
 
3794
+ #: settings.php:3429 settings.php:4225 settings.php:4292 strings.php:221
3795
  msgid "Google AdSense Homepage"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:3445
3799
  msgid "Switch to physical ads.txt file"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:3446
3803
  msgid "Switch to virtual ads.txt file"
3804
  msgstr ""
3805
 
3806
  #. translators: %s: ads.txt
3807
+ #: settings.php:3456
3808
  msgid "Open %s"
3809
  msgstr ""
3810
 
3811
+ #: settings.php:3464
3812
  msgid "Reload ads.txt file"
3813
  msgstr ""
3814
 
3815
+ #: settings.php:3468 settings.php:4352
3816
  msgid "Save"
3817
  msgstr ""
3818
 
3819
  #. translators: %s: Ad Inserter
3820
+ #: settings.php:3643
3821
  msgid "ads.txt file: %s virtual ads.txt file"
3822
  msgstr ""
3823
 
3824
+ #: settings.php:3648 settings.php:3668 strings.php:205
3825
  msgid "Warning"
3826
  msgstr ""
3827
 
3828
  #. translators: %s: Ad Inserter
3829
+ #: settings.php:3648
3830
  msgid "%s virtual file ads.txt not found"
3831
  msgstr ""
3832
 
3833
+ #: settings.php:3656
3834
  msgid "IMPORTANT"
3835
  msgstr ""
3836
 
3837
+ #: settings.php:3656
3838
  msgid "ads.txt file must be placed on the root domain"
3839
  msgstr ""
3840
 
3841
+ #: settings.php:3661
3842
  msgid "ads.txt file"
3843
  msgstr ""
3844
 
3845
+ #: settings.php:3668
3846
  msgid "file %s not found"
3847
  msgstr ""
3848
 
3849
+ #: settings.php:3678
3850
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3851
  msgstr ""
3852
 
3853
  #. translators: %s: Ad Inserter
3854
+ #: settings.php:3684
3855
  msgid "%s virtual ads.txt file"
3856
  msgstr ""
3857
 
3858
+ #: settings.php:3706
3859
  msgid "Advertising system"
3860
  msgstr ""
3861
 
3862
+ #: settings.php:3707
3863
  msgid "Account ID"
3864
  msgstr ""
3865
 
3866
+ #: settings.php:3709
3867
  msgid "Certification authority ID"
3868
  msgstr ""
3869
 
3870
+ #: settings.php:3724
3871
  msgid "Account ID found in block and present in ads.txt"
3872
  msgstr ""
3873
 
3874
+ #: settings.php:3728
3875
  msgid "Account ID found in block but not present in ads.txt"
3876
  msgstr ""
3877
 
3878
+ #: settings.php:4015
3879
  msgid "Preview block"
3880
  msgstr ""
3881
 
3882
+ #: settings.php:4024
3883
  msgid "Insertion disabled"
3884
  msgstr ""
3885
 
3886
+ #: settings.php:4054
3887
  msgid "Automatic insertion"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
+ #: settings.php:4055 settings.php:4968
3892
  msgid "PHP code processing"
3893
  msgstr ""
3894
 
3895
+ #: settings.php:4057
3896
  msgid "Device detection"
3897
  msgstr ""
3898
 
3899
+ #: settings.php:4070
3900
  msgid "Widget positions"
3901
  msgstr ""
3902
 
3903
+ #: settings.php:4136
3904
  msgid "Ad unit"
3905
  msgstr ""
3906
 
3907
+ #: settings.php:4138
3908
  msgid "Slot ID"
3909
  msgstr ""
3910
 
3911
+ #: settings.php:4164
3912
  msgid "Copy AdSense code"
3913
  msgstr ""
3914
 
3915
+ #: settings.php:4167
3916
  msgid "Preview AdSense ad"
3917
  msgstr ""
3918
 
3919
+ #: settings.php:4170
3920
  msgid "Get AdSense code"
3921
  msgstr ""
3922
 
3923
  #. translators: %s: HTML tags
3924
+ #: settings.php:4202
3925
  msgid ""
3926
  "Please %s clear authorization %s with the button %s above and once again "
3927
  "authorize access to your AdSense account."
3928
  msgstr ""
3929
 
3930
+ #: settings.php:4221
3931
  msgid "AdSense Integration"
3932
  msgstr ""
3933
 
3934
+ #: settings.php:4223
3935
  msgid "AdSense Integration - Step 2"
3936
  msgstr ""
3937
 
3938
  #. translators: %s: HTML tags
3939
+ #: settings.php:4229
3940
  msgid ""
3941
  "Authorize %s to access your AdSense account. Click on the %s Get "
3942
  "Authorization Code %s button to open a new window where you can allow "
3945
  msgstr ""
3946
 
3947
  #. translators: %s: HTML tags
3948
+ #: settings.php:4236
3949
  msgid ""
3950
  "If you get error, can't access ad units or would like to use own Google API "
3951
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3953
  msgstr ""
3954
 
3955
  #. translators: %s: HTML tags
3956
+ #: settings.php:4238
3957
  msgid ""
3958
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3959
  "Authorization Code %s button to open a new window where you can allow "
3962
  msgstr ""
3963
 
3964
  #. translators: %s: HTML tags
3965
+ #: settings.php:4245
3966
  msgid ""
3967
  "If you get error %s invalid client %s click on the button %s Clear and "
3968
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3969
  msgstr ""
3970
 
3971
+ #: settings.php:4256
3972
  msgid "Get Authorization Code"
3973
  msgstr ""
3974
 
3975
+ #: settings.php:4259
3976
  msgid "Enter Authorization Code"
3977
  msgstr ""
3978
 
3979
+ #: settings.php:4269
3980
  msgid "Use own API IDs"
3981
  msgstr ""
3982
 
3983
+ #: settings.php:4271
3984
  msgid "Clear and return to Step 1"
3985
  msgstr ""
3986
 
3987
+ #: settings.php:4275
3988
  msgid "Authorize"
3989
  msgstr ""
3990
 
3991
+ #: settings.php:4291
3992
  msgid "AdSense Integration - Step 1"
3993
  msgstr ""
3994
 
3995
  #. translators: %s: Ad Inserter
3996
+ #: settings.php:4295
3997
  msgid ""
3998
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3999
  "To do this you need to authorize %s to access your AdSense account. The "
4002
  msgstr ""
4003
 
4004
  #. translators: %s: HTML tags
4005
+ #: settings.php:4304
4006
  msgid "Go to %s Google APIs and Services console %s"
4007
  msgstr ""
4008
 
4009
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4010
+ #: settings.php:4305
4011
  msgid ""
4012
  "Create %1$s project - if the project and IDs are already created click on "
4013
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
4014
  msgstr ""
4015
 
4016
  #. translators: %s: HTML tags
4017
+ #: settings.php:4306
4018
  msgid ""
4019
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4020
  "create a new project"
4021
  msgstr ""
4022
 
4023
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4024
+ #: settings.php:4307
4025
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4026
  msgstr ""
4027
 
4028
  #. translators: %s: HTML tags
4029
+ #: settings.php:4308
4030
  msgid ""
4031
  "Click on project selection, wait for the project to be created and then and "
4032
  "select %s as the current project"
4033
  msgstr ""
4034
 
4035
  #. translators: %s: HTML tags
4036
+ #: settings.php:4309
4037
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4038
  msgstr ""
4039
 
4040
  #. translators: %s: HTML tags
4041
+ #: settings.php:4310
4042
  msgid "Search for adsense and enable %s"
4043
  msgstr ""
4044
 
4045
  #. translators: %s: HTML tags
4046
+ #: settings.php:4311
4047
  msgid "Click on %s CREATE CREDENTIALS %s"
4048
  msgstr ""
4049
 
4050
  #. translators: %s: HTML tags
4051
+ #: settings.php:4312
4052
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4053
  msgstr ""
4054
 
4055
  #. translators: %s: HTML tags
4056
+ #: settings.php:4313
4057
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4058
  msgstr ""
4059
 
4060
  #. translators: %s: HTML tags
4061
+ #: settings.php:4314
4062
  msgid "Click on %s What credentials do I need? %s"
4063
  msgstr ""
4064
 
4065
  #. translators: %s: HTML tags
4066
+ #: settings.php:4315
4067
  msgid ""
4068
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4069
  "Ad Inserter client %s"
4070
  msgstr ""
4071
 
4072
  #. translators: %s: HTML tags
4073
+ #: settings.php:4316
4074
  msgid ""
4075
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4076
  "enter %s"
4077
  msgstr ""
4078
 
4079
  #. translators: %s: HTML tags
4080
+ #: settings.php:4317
4081
  msgid "Click on %s Continue %s"
4082
  msgstr ""
4083
 
4084
  #. translators: %s: HTML tags
4085
+ #: settings.php:4318
4086
  msgid "Click on %s Done %s"
4087
  msgstr ""
4088
 
4089
  #. translators: %s: HTML tags
4090
+ #: settings.php:4319
4091
  msgid ""
4092
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4093
  "secret %s"
4094
  msgstr ""
4095
 
4096
+ #: settings.php:4320
4097
  msgid "Copy them to the appropriate fields below"
4098
  msgstr ""
4099
 
4100
+ #: settings.php:4326
4101
  msgid "Client ID"
4102
  msgstr ""
4103
 
4104
+ #: settings.php:4329
4105
  msgid "Enter Client ID"
4106
  msgstr ""
4107
 
4108
+ #: settings.php:4334
4109
  msgid "Client secret"
4110
  msgstr ""
4111
 
4112
+ #: settings.php:4337
4113
  msgid "Enter Client secret"
4114
  msgstr ""
4115
 
4116
+ #: settings.php:4347
4117
  msgid "Use default API IDs"
4118
  msgstr ""
4119
 
4120
+ #: settings.php:4500
4121
+ msgid "All posts"
4122
+ msgstr ""
4123
+
4124
+ #: settings.php:4501
4125
+ msgid "All static pages"
4126
+ msgstr ""
4127
+
4128
+ #: settings.php:4635 settings.php:4648 settings.php:4661 settings.php:4676
4129
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4130
  msgstr ""
4131
 
4132
+ #: settings.php:4640 settings.php:4653 settings.php:4666 settings.php:4681
4133
+ #: settings.php:4861 settings.php:4865 settings.php:4883 settings.php:4887
4134
+ #: settings.php:4895 settings.php:4898 settings.php:4904 settings.php:4916
4135
  msgid "Looking for AdSense alternative?"
4136
  msgstr ""
4137
 
4138
+ #: settings.php:4692
4139
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4140
  msgstr ""
4141
 
4142
+ #: settings.php:4697 settings.php:4863 settings.php:4867 settings.php:4875
4143
+ #: settings.php:4901
4144
  msgid "Use Infolinks ads with Adsense to earn more"
4145
  msgstr ""
4146
 
4147
+ #: settings.php:4716 settings.php:4754
4148
  msgid "Support plugin development"
4149
  msgstr ""
4150
 
4151
+ #: settings.php:4717 settings.php:4755
4152
  msgid ""
4153
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4154
  "reviewing the plugin on WordPres"
4155
  msgstr ""
4156
 
4157
+ #: settings.php:4717
4158
  msgctxt "Review ad Inserter"
4159
  msgid "Review"
4160
  msgstr ""
4161
 
4162
+ #: settings.php:4718
4163
  msgid ""
4164
  "Support free Ad Inserter development. If you are making money with Ad "
4165
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4166
  "you!"
4167
  msgstr ""
4168
 
4169
+ #: settings.php:4718
4170
  msgid "Donate"
4171
  msgstr ""
4172
 
4173
+ #: settings.php:4725 settings.php:4770
4174
  msgid "Average rating of the plugin - Thank you!"
4175
  msgstr ""
4176
 
4177
  #. translators: %s: Ad Inserter, HTML tags
4178
+ #: settings.php:4736
4179
  msgid ""
4180
  "You've been using %s for a while now, and I hope you're happy with it. "
4181
  "Positive %s reviews %s are a great way to show your appreciation for my "
4184
  "your website. %s Thank you!"
4185
  msgstr ""
4186
 
4187
+ #: settings.php:4755
4188
  msgid "Review"
4189
  msgstr ""
4190
 
4191
+ #: settings.php:4759
4192
  msgid "Ad Inserter on Twitter"
4193
  msgstr ""
4194
 
4195
+ #: settings.php:4760
4196
  msgid "Ad Inserter on Facebook"
4197
  msgstr ""
4198
 
4199
+ #: settings.php:4763
4200
  msgid "Follow Ad Inserter"
4201
  msgstr ""
4202
 
4203
  #. translators: %s: HTML tags
4204
+ #: settings.php:4790
4205
  msgid ""
4206
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4207
  "and %s Common Settings %s pages"
4208
  msgstr ""
4209
 
4210
  #. translators: %s: HTML tags
4211
+ #: settings.php:4802
4212
  msgid ""
4213
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4214
  "Auto ads, %s %s AMP ads %s &mdash; How to %s integrate %s Infolinks %s ad "
4216
  msgstr ""
4217
 
4218
  #. translators: %s: HTML tags
4219
+ #: settings.php:4823
4220
  msgid ""
4221
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4222
  "purchase you refer to us"
4223
  msgstr ""
4224
 
4225
  #. translators: %s: HTML tags
4226
+ #: settings.php:4830
4227
  msgid ""
4228
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4229
  "diagnose and fix the problem."
4230
  msgstr ""
4231
 
4232
  #. translators: %s: HTML tags
4233
+ #: settings.php:4834
4234
  msgid ""
4235
  "If you need any kind of help or support, please do not hesitate to open a "
4236
  "thread on the %s support forum. %s"
4237
  msgstr ""
4238
 
4239
+ #: settings.php:4879 settings.php:4920
4240
  msgid "A/B testing - Track ad impressions and clicks"
4241
  msgstr ""
4242
 
4243
+ #: settings.php:4912 settings.php:4924
4244
  msgid "Code preview with visual CSS editor"
4245
  msgstr ""
4246
 
4247
+ #: settings.php:4932
4248
  msgid "Looking for Pro Ad Management plugin?"
4249
  msgstr ""
4250
 
4251
+ #: settings.php:4933
4252
  msgid "To Optimally Monetize your WordPress website?"
4253
  msgstr ""
4254
 
4255
  #. translators: %s HTML tags
4256
+ #: settings.php:4936
4257
  msgid "%s AdSense Integration %s"
4258
  msgstr ""
4259
 
4260
  #. translators: %s HTML tags
4261
+ #: settings.php:4937
4262
  msgid "Syntax highlighting %s editor %s"
4263
  msgstr ""
4264
 
4265
  #. translators: %s HTML tags
4266
+ #: settings.php:4938
4267
  msgid "%s Code preview %s with visual CSS editor"
4268
  msgstr ""
4269
 
4270
  #. translators: %s HTML tags
4271
+ #: settings.php:4939
4272
  msgid "Simple user interface - all settings on a single page"
4273
  msgstr ""
4274
 
4275
  #. translators: %s HTML tags
4276
+ #: settings.php:4940
4277
  msgid ""
4278
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4279
  "image / excerpt"
4280
  msgstr ""
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4941
4284
  msgid "%s Automatic insertion %s between posts on blog pages"
4285
  msgstr ""
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4942
4289
  msgid "%s Automatic insertion %s before, between and after comments"
4290
  msgstr ""
4291
 
4292
  #. translators: %s HTML tags
4293
+ #: settings.php:4943
4294
  msgid "%s Automatic insertion %s after %s or before %s tag"
4295
  msgstr ""
4296
 
4297
  #. translators: %s HTML tags
4298
+ #: settings.php:4944
4299
  msgid "Automatic insertion at %s custom hook positions %s"
4300
  msgstr ""
4301
 
4302
  #. translators: %s HTML tags
4303
+ #: settings.php:4945
4304
  msgid ""
4305
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4306
  "selectors)"
4307
  msgstr ""
4308
 
4309
  #. translators: %s HTML tags
4310
+ #: settings.php:4946
4311
  msgid "%s Insertion exceptions %s for individual posts and pages"
4312
  msgstr ""
4313
 
4314
  #. translators: %s HTML tags
4315
+ #: settings.php:4947
4316
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4317
  msgstr ""
4318
 
4319
  #. translators: %s HTML tags
4320
+ #: settings.php:4948
4321
  msgid ""
4322
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4323
  "scrolls)"
4324
  msgstr ""
4325
 
4326
  #. translators: %s HTML tags
4327
+ #: settings.php:4949
4328
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4329
  msgstr ""
4330
 
4331
  #. translators: %s HTML tags
4332
+ #: settings.php:4950
4333
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4334
  msgstr ""
4335
 
4336
  #. translators: %s HTML tags
4337
+ #: settings.php:4951
4338
  msgid ""
4339
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4340
  "visible)"
4341
  msgstr ""
4342
 
4343
  #. translators: %s HTML tags
4344
+ #: settings.php:4952
4345
  msgid ""
4346
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4347
  msgstr ""
4348
 
4349
  #. translators: %s HTML tags
4350
+ #: settings.php:4953
4351
  msgid "Block %s alignment and style %s customizations"
4352
  msgstr ""
4353
 
4354
  #. translators: %s HTML tags
4355
+ #: settings.php:4954
4356
  msgid ""
4357
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4358
  "TOS)"
4359
  msgstr ""
4360
 
4361
  #. translators: %s HTML tags
4362
+ #: settings.php:4955
4363
  msgid ""
4364
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4365
  "feeds"
4366
  msgstr ""
4367
 
4368
  #. translators: %s HTML tags
4369
+ #: settings.php:4956
4370
  msgid "%s Ad rotation %s (works also with caching)"
4371
  msgstr ""
4372
 
4373
  #. translators: %s HTML tags
4374
+ #: settings.php:4957
4375
  msgid "Create, edit and check %s ads.txt %s file"
4376
  msgstr ""
4377
 
4378
  #. translators: %s HTML tags
4379
+ #: settings.php:4958
4380
  msgid ""
4381
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4382
  "AdSense)"
4383
  msgstr ""
4384
 
4385
  #. translators: %s HTML tags
4386
+ #: settings.php:4959
4387
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4388
  msgstr ""
4389
 
4390
  #. translators: %s HTML tags
4391
+ #: settings.php:4960
4392
  msgid "%s Public web reports %s for clients, export to PDF"
4393
  msgstr ""
4394
 
4395
  #. translators: %s HTML tags
4396
+ #: settings.php:4961
4397
  msgid "Support for %s A/B testing %s"
4398
  msgstr ""
4399
 
4400
  #. translators: %s HTML tags
4401
+ #: settings.php:4962
4402
  msgid "Frequency capping - %s limit impressions or clicks %s"
4403
  msgstr ""
4404
 
4405
  #. translators: %s HTML tags
4406
+ #: settings.php:4963
4407
  msgid "Click fraud %s protection %s"
4408
  msgstr ""
4409
 
4410
  #. translators: %s HTML tags
4411
+ #: settings.php:4964
4412
  msgid "Support for %s lazy loading %s"
4413
  msgstr ""
4414
 
4415
  #. translators: %s HTML tags
4416
+ #: settings.php:4965
4417
  msgid "Support for ads on %s AMP pages %s"
4418
  msgstr ""
4419
 
4420
  #. translators: %s HTML tags
4421
+ #: settings.php:4966
4422
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4423
  msgstr ""
4424
 
4425
  #. translators: %s HTML tags
4426
+ #: settings.php:4967
4427
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4428
  msgstr ""
4429
 
4430
  #. translators: %s HTML tags
4431
+ #: settings.php:4969
4432
  msgid "%s Banner %s code generator"
4433
  msgstr ""
4434
 
4435
  #. translators: %s HTML tags
4436
+ #: settings.php:4970
4437
  msgid "Support for %s header and footer %s code"
4438
  msgstr ""
4439
 
4440
  #. translators: %s HTML tags
4441
+ #: settings.php:4971
4442
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4443
  msgstr ""
4444
 
4445
  #. translators: %s HTML tags
4446
+ #: settings.php:4972
4447
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4448
  msgstr ""
4449
 
4450
  #. translators: %s HTML tags
4451
+ #: settings.php:4973
4452
  msgid "Client-side %s mobile device detection %s (works with caching)"
4453
  msgstr ""
4454
 
4455
  #. translators: %s HTML tags
4456
+ #: settings.php:4974
4457
  msgid ""
4458
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4459
  "protection"
4460
  msgstr ""
4461
 
4462
  #. translators: %s HTML tags
4463
+ #: settings.php:4975
4464
  msgid "%s Ad blocking statistics %s"
4465
  msgstr ""
4466
 
4467
  #. translators: %s HTML tags
4468
+ #: settings.php:4976
4469
  msgid ""
4470
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4471
  "referers"
4472
  msgstr ""
4473
 
4474
  #. translators: %s HTML tags
4475
+ #: settings.php:4977
4476
  msgid ""
4477
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4478
  msgstr ""
4479
 
4480
  #. translators: %s HTML tags
4481
+ #: settings.php:4978
4482
  msgid "%s Multisite options %s to limit settings on the sites"
4483
  msgstr ""
4484
 
4485
  #. translators: %s HTML tags
4486
+ #: settings.php:4979
4487
  msgid "%s Import/Export %s block or plugin settings"
4488
  msgstr ""
4489
 
4490
  #. translators: %s HTML tags
4491
+ #: settings.php:4980
4492
  msgid "%s Insertion scheduling %s with fallback option"
4493
  msgstr ""
4494
 
4495
  #. translators: %s HTML tags
4496
+ #: settings.php:4981
4497
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4498
  msgstr ""
4499
 
4500
  #. translators: %s HTML tags
4501
+ #: settings.php:4982
4502
  msgid "Simple troubleshooting with many %s debugging functions %s"
4503
  msgstr ""
4504
 
4505
  #. translators: %s HTML tags
4506
+ #: settings.php:4983
4507
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4508
  msgstr ""
4509
 
4510
  #. translators: %s HTML tags
4511
+ #: settings.php:4984
4512
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4513
  msgstr ""
4514
 
4515
  #. translators: %s HTML tags
4516
+ #: settings.php:4985
4517
  msgid ""
4518
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4519
  msgstr ""
4520
 
4521
  #. translators: %s HTML tags
4522
+ #: settings.php:4986
4523
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4524
  msgstr ""
4525
 
4526
  #. translators: %s HTML tags
4527
+ #: settings.php:4987
4528
  msgid "No ads on the settings page"
4529
  msgstr ""
4530
 
4531
  #. translators: %s HTML tags
4532
+ #: settings.php:4988
4533
  msgid "Premium support"
4534
  msgstr ""
4535
 
4536
  #. translators: %s HTML tags
4537
+ #: settings.php:4991
4538
  msgid ""
4539
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4540
  "website with many advertising features to automatically insert adverts on "
4549
  msgstr ""
4550
 
4551
  #. translators: %s HTML tags
4552
+ #: settings.php:5004
4553
  msgid "Looking for %s Pro Ad Management plugin? %s"
4554
  msgstr ""
4555
 
4556
  #. translators: %s HTML tags
4557
+ #: settings.php:5009
4558
  msgid "Ads between posts"
4559
  msgstr ""
4560
 
4561
  #. translators: %s HTML tags
4562
+ #: settings.php:5010
4563
  msgid "Ads between comments"
4564
  msgstr ""
4565
 
4566
  #. translators: %s HTML tags
4567
+ #: settings.php:5011
4568
  msgid "Support via email"
4569
  msgstr ""
4570
 
4571
  #. translators: %s HTML tags
4572
+ #: settings.php:5017
4573
  msgid "%s Sticky positions %s"
4574
  msgstr ""
4575
 
4576
  #. translators: %s HTML tags
4577
+ #: settings.php:5018
4578
  msgid "%s Limit insertions %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %s HTML tags
4582
+ #: settings.php:5019
4583
  msgid "%s Clearance %s options"
4584
  msgstr ""
4585
 
4586
  #. translators: %s HTML tags
4587
+ #: settings.php:5025
4588
  msgid "Ad rotation"
4589
  msgstr ""
4590
 
4591
  #. translators: %s HTML tags
4592
+ #: settings.php:5026
4593
  msgid "%s A/B testing %s"
4594
  msgstr ""
4595
 
4596
  #. translators: %s HTML tags
4597
+ #: settings.php:5027
4598
  msgid "%s Ad tracking %s"
4599
  msgstr ""
4600
 
4601
  #. translators: %s HTML tags
4602
+ #: settings.php:5033
4603
  msgid "Support for %s AMP pages %s"
4604
  msgstr ""
4605
 
4606
  #. translators: %s HTML tags
4607
+ #: settings.php:5034
4608
  msgid "%s Ad blocking detection %s"
4609
  msgstr ""
4610
 
4611
  #. translators: %s HTML tags
4612
+ #: settings.php:5035
4613
  msgid "%s Mobile device detection %s"
4614
  msgstr ""
4615
 
4616
  #. translators: %s HTML tags
4617
+ #: settings.php:5042
4618
  msgid "64 code blocks"
4619
  msgstr ""
4620
 
4621
  #. translators: %s HTML tags
4622
+ #: settings.php:5043
4623
  msgid "%s GEO targeting %s"
4624
  msgstr ""
4625
 
4626
  #. translators: %s HTML tags
4627
+ #: settings.php:5044
4628
  msgid "%s Scheduling %s"
4629
  msgstr ""
4630
 
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.2
8
  Requires PHP: 5.6
9
- Stable tag: 2.5.2
10
  License: GPLv3
11
 
12
  Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
@@ -315,6 +315,15 @@ If you are not happy to reveal this information and you have opted in, simply di
315
 
316
  == Changelog ==
317
 
 
 
 
 
 
 
 
 
 
318
  = 2.5.2 =
319
  - Added options to define paragraph counting inside container elements
320
  - Added support to pin block list (Pro only)
@@ -476,6 +485,15 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
476
 
477
  == Upgrade Notice ==
478
 
 
 
 
 
 
 
 
 
 
479
  = 2.5.2 =
480
  Added options to define paragraph counting inside container elements;
481
  Added support to pin block list (Pro only);
6
  Requires at least: 4.6
7
  Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.5.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
315
 
316
  == Changelog ==
317
 
318
+ = 2.5.3 =
319
+ - Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager
320
+ - Added support for block shortcode attributes
321
+ - Added support for post ID list to include all posts or static pages
322
+ - Added option for maximum number of paragraphs
323
+ - Added support to check for update server accessibility (Pro only)
324
+ - Added ids to ad blocking popup message and overlay elements
325
+ - Few minor bug fixes, cosmetic changes and code improvements
326
+
327
  = 2.5.2 =
328
  - Added options to define paragraph counting inside container elements
329
  - Added support to pin block list (Pro only)
485
 
486
  == Upgrade Notice ==
487
 
488
+ = 2.5.3 =
489
+ Added support for warning when Ad Inserter is disabled by AMPforWP Plugin Manager;
490
+ Added support for block shortcode attributes;
491
+ Added support for post ID list to include all posts or static pages;
492
+ Added option for maximum number of paragraphs;
493
+ Added support to check for update server accessibility (Pro only);
494
+ Added ids to ad blocking popup message and overlay elements;
495
+ Few minor bug fixes, cosmetic changes and code improvements
496
+
497
  = 2.5.2 =
498
  Added options to define paragraph counting inside container elements;
499
  Added support to pin block list (Pro only);
settings.php CHANGED
@@ -609,6 +609,7 @@ function generate_settings_form (){
609
  $obj->get_paragraph_text_type() != $default->get_paragraph_text_type() ||
610
  $obj->get_paragraph_text() != $default->get_paragraph_text() ||
611
  $obj->get_paragraph_number_minimum() != $default->get_paragraph_number_minimum() ||
 
612
  $obj->get_minimum_words_above() != $default->get_minimum_words_above() ||
613
  $obj->get_count_inside_blockquote() != $default->get_count_inside_blockquote()
614
  );
@@ -667,6 +668,9 @@ function generate_settings_form (){
667
 
668
  ?>
669
  <div id="tab-<?php echo $block; ?>" style="padding: 0;<?php echo $tab_visible ? "" : " display: none;" ?>">
 
 
 
670
  <div class="ai-toolbars">
671
 
672
  <div id="ai-main-toolbar-<?php echo $block; ?>" class="max-input" style="margin: 8px 0 0 2px; height: 28px; width: 731px;">
@@ -1051,7 +1055,7 @@ function generate_settings_form (){
1051
  <div style="float: right;">
1052
  <div title='<?php _e ('Rotation editor active - rotation code not generated! Make sure no rotation editor is active before saving settings.', 'ad-inserter'); ?>' class="ai-rotation-warning" style='float: left; font-size: 18px; font-weight: bold; margin: 5px 5px 0 0; display: none;'>&#x26A0;</div>
1053
  <?php if (function_exists ('ai_settings_bottom_buttons')) ai_settings_bottom_buttons ($start, $end); else { ?>
1054
- <input style="display: none; font-weight: bold;" name="<?php echo AI_FORM_SAVE; ?>" value="<?php _e ('Save All Settings', 'ad-inserter'); ?>" type="submit" />
1055
  <?php } ?>
1056
  </div>
1057
  <div style="clear: both;"></div>
@@ -1401,7 +1405,7 @@ function generate_settings_form (){
1401
  <option value="<?php echo AI_DO_NOT_CONTAIN; ?>" <?php echo ($obj->get_paragraph_text_type() == AI_DO_NOT_CONTAIN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_CONTAIN; ?></option>
1402
  </select>
1403
  </span>
1404
- <span class="small-input-tags" style="display: table-cell;">
1405
  <input
1406
  style="width: 100%;"
1407
  title="<?php _e ('Comma separated texts', 'ad-inserter'); ?>"
@@ -1473,26 +1477,34 @@ function generate_settings_form (){
1473
 
1474
  <hr style="margin: 0 -8px;" />
1475
 
1476
- <div class="max-input" style="margin: 8px 0 0 0;">
1477
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1478
- <?php _e ('Minimum number of paragraphs', 'ad-inserter'); ?>
1479
  <input
1480
  type="text"
1481
  name="<?php echo AI_OPTION_MIN_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1482
  default="<?php echo $default->get_paragraph_number_minimum(); ?>"
1483
  value="<?php echo $obj->get_paragraph_number_minimum() ?>"
 
 
 
 
 
 
 
 
 
 
1484
  size="2"
1485
  maxlength="3" />
 
1486
  </span>
 
1487
 
1488
- <span class="small-input-tags" style="display: table-cell;">
1489
- <input
1490
- style="width: 90%; visibility: hidden;"
1491
- />
1492
- </span>
1493
 
 
1494
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1495
- &nbsp;&nbsp;
1496
  <?php _e ('Minimum number of words in paragraphs above', 'ad-inserter'); ?>
1497
  <input
1498
  type="text"
@@ -1504,7 +1516,6 @@ function generate_settings_form (){
1504
  maxlength="4" />
1505
  </span>
1506
  </div>
1507
-
1508
  </div>
1509
 
1510
  <div id="paragraph-clearance-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
@@ -2036,10 +2047,10 @@ function generate_settings_form (){
2036
 
2037
  <div id="tab-word-count-<?php echo $block; ?>" class="rounded">
2038
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
2039
- <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words() ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2040
  <?php _e ('and', 'ad-inserter'); ?>
2041
- <input type="text" name="<?php echo AI_OPTION_MAX_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_maximum_words(); ?>" value="<?php echo $obj->get_maximum_words() ?>" title="<?php _e ('Maximum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2042
- <?php _e ('words', 'ad-inserter'); ?>
2043
  </div>
2044
 
2045
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
@@ -4486,6 +4497,8 @@ function generate_list_options ($options) {
4486
  $counter ++;
4487
  if ($counter >= $max_items) break;
4488
  }
 
 
4489
  break;
4490
 
4491
  default:
609
  $obj->get_paragraph_text_type() != $default->get_paragraph_text_type() ||
610
  $obj->get_paragraph_text() != $default->get_paragraph_text() ||
611
  $obj->get_paragraph_number_minimum() != $default->get_paragraph_number_minimum() ||
612
+ $obj->get_paragraph_number_maximum() != $default->get_paragraph_number_maximum() ||
613
  $obj->get_minimum_words_above() != $default->get_minimum_words_above() ||
614
  $obj->get_count_inside_blockquote() != $default->get_count_inside_blockquote()
615
  );
668
 
669
  ?>
670
  <div id="tab-<?php echo $block; ?>" style="padding: 0;<?php echo $tab_visible ? "" : " display: none;" ?>">
671
+
672
+ <input id="block-parameters-<?php echo $block; ?>" style="display: none;" type="text" value="" />
673
+
674
  <div class="ai-toolbars">
675
 
676
  <div id="ai-main-toolbar-<?php echo $block; ?>" class="max-input" style="margin: 8px 0 0 2px; height: 28px; width: 731px;">
1055
  <div style="float: right;">
1056
  <div title='<?php _e ('Rotation editor active - rotation code not generated! Make sure no rotation editor is active before saving settings.', 'ad-inserter'); ?>' class="ai-rotation-warning" style='float: left; font-size: 18px; font-weight: bold; margin: 5px 5px 0 0; display: none;'>&#x26A0;</div>
1057
  <?php if (function_exists ('ai_settings_bottom_buttons')) ai_settings_bottom_buttons ($start, $end); else { ?>
1058
+ <input style="display: none; font-weight: bold;" name="<?php echo AI_FORM_SAVE; ?>" value="<?php echo __('Save Settings', 'ad-inserter'), ' ', $start, ' - ', $end; ?>" type="submit" />
1059
  <?php } ?>
1060
  </div>
1061
  <div style="clear: both;"></div>
1405
  <option value="<?php echo AI_DO_NOT_CONTAIN; ?>" <?php echo ($obj->get_paragraph_text_type() == AI_DO_NOT_CONTAIN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_CONTAIN; ?></option>
1406
  </select>
1407
  </span>
1408
+ <span style="display: table-cell;">
1409
  <input
1410
  style="width: 100%;"
1411
  title="<?php _e ('Comma separated texts', 'ad-inserter'); ?>"
1477
 
1478
  <hr style="margin: 0 -8px;" />
1479
 
1480
+ <div class="max-input" style="margin: 8px 0 8px 0;">
1481
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
1482
+ <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
1483
  <input
1484
  type="text"
1485
  name="<?php echo AI_OPTION_MIN_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1486
  default="<?php echo $default->get_paragraph_number_minimum(); ?>"
1487
  value="<?php echo $obj->get_paragraph_number_minimum() ?>"
1488
+ title="<?php _e ('Minimum number of paragraphs, leave empty for no limit', 'ad-inserter'); ?>"
1489
+ size="2"
1490
+ maxlength="3" />
1491
+ <?php _e ('and', 'ad-inserter'); ?>
1492
+ <input
1493
+ type="text"
1494
+ name="<?php echo AI_OPTION_MAX_PARAGRAPHS, WP_FORM_FIELD_POSTFIX, $block; ?>"
1495
+ default="<?php echo $default->get_paragraph_number_maximum(); ?>"
1496
+ value="<?php echo $obj->get_paragraph_number_maximum() ?>"
1497
+ title="<?php _e ('Maximum number of paragraphs, leave empty for no limit', 'ad-inserter'); ?>"
1498
  size="2"
1499
  maxlength="3" />
1500
+ <?php /* Translators: Post/Static page must have between X and Y paragraphs */ echo _n ('paragraph', 'paragraphs', $obj->get_paragraph_number_maximum(), 'ad-inserter'); ?>
1501
  </span>
1502
+ </div>
1503
 
1504
+ <hr style="margin: 0 -8px;" />
 
 
 
 
1505
 
1506
+ <div class="max-input" style="margin: 8px 0 0 0;">
1507
  <span style="display: table-cell; width: 1px; white-space: nowrap;">
 
1508
  <?php _e ('Minimum number of words in paragraphs above', 'ad-inserter'); ?>
1509
  <input
1510
  type="text"
1516
  maxlength="4" />
1517
  </span>
1518
  </div>
 
1519
  </div>
1520
 
1521
  <div id="paragraph-clearance-<?php echo $block; ?>" class="rounded" style="<?php echo $paragraph_clearance ? "" : "display: none;" ?>">
2047
 
2048
  <div id="tab-word-count-<?php echo $block; ?>" class="rounded">
2049
  <?php _e ('Post/Static page must have between', 'ad-inserter'); ?>
2050
+ <input type="text" name="<?php echo AI_OPTION_MIN_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_minimum_words(); ?>" value="<?php echo $obj->get_minimum_words(); ?>" title="<?php _e ('Minimum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2051
  <?php _e ('and', 'ad-inserter'); ?>
2052
+ <input type="text" name="<?php echo AI_OPTION_MAX_WORDS, WP_FORM_FIELD_POSTFIX, $block; ?>" style="margin: 0 1px;" default="<?php echo $default->get_maximum_words(); ?>" value="<?php echo $obj->get_maximum_words(); ?>" title="<?php _e ('Maximum number of post/static page words, leave empty for no limit', 'ad-inserter'); ?>" size="4" maxlength="6" />
2053
+ <?php /* Translators: Post/Static page must have between X and Y words */ echo _n ('word', 'words', $obj->get_maximum_words(), 'ad-inserter'); ?>
2054
  </div>
2055
 
2056
  <div id="tab-scheduling-<?php echo $block; ?>" class="rounded" style="min-height: 24px;">
4497
  $counter ++;
4498
  if ($counter >= $max_items) break;
4499
  }
4500
+ echo " <option value='posts'>posts (", __('All posts', 'ad-inserter'), ")</option>\n";
4501
+ echo " <option value='pages'>pages (", __('All static pages', 'ad-inserter'), ")</option>\n";
4502
  break;
4503
 
4504
  default: