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

Version Description

  • Various security fixes
  • Updated AdSense API authorization process
  • Reduced layout shift when using client-side device detection
  • Added option to block IP addresses for click fraud protection (Pro only)
  • Few minor bug fixes, cosmetic changes and code improvements
Download this release

Release Info

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

Code changes from version 2.6.21 to 2.6.22

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.6.21
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/
@@ -17,6 +17,13 @@ Requires PHP: 5.6
17
 
18
  Change Log
19
 
 
 
 
 
 
 
 
20
  Ad Inserter 2.6.21 - 2021-01-24
21
  - Improved compatibility with PHP 8
22
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -787,6 +794,7 @@ function ai_block_insertion_status ($block, $ai_last_check) {
787
  case AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD: $status .= "LIMIT IMPRESSIONS PER TIME PERIOD"; break;
788
  case AI_CHECK_MAX_CLICKS: $status .= "MAX CLICKS"; break;
789
  case AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD: $status .= "LIMIT CLICKS PER TIME PERIOD"; break;
 
790
  case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION PAUSED"; break;
791
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
792
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
@@ -3502,7 +3510,7 @@ function ai_wp_head_hook () {
3502
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3503
  if ($ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3504
  if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= 96) {
3505
- $obj = $block_object [$_GET ['ai-debug-code']];
3506
  $block_name = $obj->number . ' &nbsp; ' . $obj->get_ad_name ();
3507
  if (!$header->get_debug_disable_insertion ()) {
3508
  $ai_wp_debugging = $ai_wp_data [AI_WP_DEBUGGING];
@@ -3817,12 +3825,8 @@ function ai_wp_footer_hook () {
3817
  }
3818
  }
3819
 
3820
- if (function_exists ('ai_debug_header')) {
3821
- $ai_option_footer = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xp'.'Y2Vuc2U='));
3822
- $ai_option_footer_name = implode ('_', array ('AI', 'STATUS'));
3823
- if ($ai_option_footer !== false && is_string ($ai_option_footer) && isset ($ad_inserter_globals [$ai_option_footer_name]) && $ad_inserter_globals [$ai_option_footer_name] == 1) {
3824
- echo '<div style="display: none;">', base64_decode ('RW5hYmxlIHJlZm'.'VycmVyIGFuZCBjbGljayBjb29ra'.'WUgdG8gc2Vhc'.'mNoIGZvciA='), substr ($ai_option_footer, 0, 14), "</div>\n";
3825
- }
3826
  }
3827
 
3828
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
@@ -3908,12 +3912,8 @@ function ai_write_debug_info ($write_processing_log = false) {
3908
  ob_start ();
3909
 
3910
  echo sprintf ("%-25s%s", AD_INSERTER_NAME, AD_INSERTER_VERSION);
3911
- if (function_exists ('ai_debug_header')) {
3912
- $ai_option = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='));
3913
- if ($ai_option !== false && is_string ($ai_option)) {
3914
- echo ', ', substr ($ai_option, 0, 12);
3915
- }
3916
- ai_debug_header ();
3917
  }
3918
  echo "\n\n";
3919
  if (($install_timestamp = get_option (AI_INSTALL_NAME)) !== false) {
@@ -4750,6 +4750,9 @@ function ai_check_plugin_options ($plugin_options = array ()) {
4750
 
4751
  if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION'])) $plugin_options ['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
4752
  if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION_TIME'])) $plugin_options ['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
 
 
 
4753
  if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
4754
  if (!isset ($plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'])) $plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'] = DEFAULT_PARAGRAPH_COUNTING_FUNCTIONS;
4755
  if (!isset ($plugin_options ['OUTPUT_BUFFERING'])) $plugin_options ['OUTPUT_BUFFERING'] = DEFAULT_OUTPUT_BUFFERING;
@@ -5035,6 +5038,36 @@ function get_click_fraud_protection_time () {
5035
  return ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION_TIME']);
5036
  }
5037
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5038
  function get_max_page_blocks () {
5039
  global $ai_db_options;
5040
 
@@ -5719,6 +5752,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
5719
  $option == AI_OPTION_BACKGROUND_IMAGE ||
5720
 
5721
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
 
 
5722
  $option == 'ADB_DELAY_ACTION' ||
5723
  $option == 'ADB_NO_ACTION_PERIOD' ||
5724
  $option == 'ADB_REDIRECTION_PAGE' ||
@@ -5782,12 +5817,12 @@ function ai_ajax () {
5782
 
5783
  if (isset ($_POST ["adsense-ad-units"])) {
5784
  if (defined ('AI_ADSENSE_API')) {
5785
- adsense_ad_name ($_POST ["adsense-ad-units"]);
5786
  }
5787
  }
5788
 
5789
  elseif (isset ($_GET ["block"])) {
5790
- $block = sanitize_text_field ($_GET ["block"]);
5791
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5792
  global $block_object;
5793
  $block = $block_object [$block];
@@ -5835,7 +5870,7 @@ function ai_ajax_backend () {
5835
  }
5836
 
5837
  if (isset ($_POST ["preview"])) {
5838
- $block = urldecode ($_POST ["preview"]);
5839
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5840
  require_once AD_INSERTER_PLUGIN_DIR.'includes/preview.php';
5841
 
@@ -5922,12 +5957,12 @@ function ai_ajax_backend () {
5922
 
5923
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
5924
 
5925
- generate_code_editor ($_POST ["edit"], base64_decode ($_POST ["code"]), $process_php);
5926
  }
5927
  }
5928
 
5929
  if (isset ($_POST ["placeholder"])) {
5930
- $block = urldecode ($_POST ["block"]);
5931
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5932
  require_once AD_INSERTER_PLUGIN_DIR.'includes/placeholders.php';
5933
 
@@ -6003,21 +6038,26 @@ function ai_ajax_backend () {
6003
  }
6004
 
6005
  elseif (isset ($_POST ["notice"])) {
6006
- update_option ('ai-notice-' . $_POST ["notice"], $_POST ["click"]);
6007
  }
6008
 
6009
  elseif (isset ($_POST ["notice-check"])) {
6010
- echo $_POST ["notice-check"];
6011
  }
6012
 
6013
  elseif (isset ($_GET ["list"])) {
6014
- $search_text = trim ($_GET ["list"]);
6015
 
6016
  $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
6017
 
6018
- $start = trim ($_GET ["start"]);
6019
- $end = trim ($_GET ["end"]);
6020
- $active = trim ($_GET ["active"]);
 
 
 
 
 
6021
 
6022
  code_block_list ($start, $end, $search_text, $show_all_blocks, $active);
6023
  }
@@ -6030,7 +6070,7 @@ function ai_ajax_backend () {
6030
 
6031
  elseif (isset ($_GET ["adsense-code"])) {
6032
  if (defined ('AI_ADSENSE_API')) {
6033
- ai_adsense_code ($_GET ["adsense-code"]);
6034
  }
6035
  }
6036
 
@@ -6071,7 +6111,7 @@ function ai_ajax_backend () {
6071
 
6072
  elseif (isset ($_GET ["ads-txt"])) {
6073
  if (!is_multisite() || is_main_site ()) {
6074
- ads_txt ($_GET ["ads-txt"]);
6075
  }
6076
  }
6077
 
@@ -6080,12 +6120,12 @@ function ai_ajax_backend () {
6080
  }
6081
 
6082
  elseif (isset ($_GET ["list-options"])) {
6083
- generate_list_options ($_GET ["list-options"]);
6084
  }
6085
 
6086
  elseif (isset ($_GET ["update"])) {
6087
  if ($_GET ["update"] == 'block-code-demo') {
6088
- ai_block_code_demo (urldecode ($_GET ["block_class_name"]), $_GET ["block_class"], $_GET ["block_number_class"], $_GET ["block_name_class"], $_GET ["inline_styles"]);
6089
  }
6090
  elseif (function_exists ('ai_ajax_backend_2')) {
6091
  ai_ajax_backend_2 ();
@@ -6093,7 +6133,7 @@ function ai_ajax_backend () {
6093
  }
6094
 
6095
  elseif (isset ($_GET ["check-page"])) {
6096
- ai_check_page ($_GET ["check-page"]);
6097
  }
6098
 
6099
  elseif (function_exists ('ai_ajax_backend_2')) {
@@ -6840,13 +6880,8 @@ function ai_settings () {
6840
  $settings_ok = true;
6841
  $settings_errors = array ();
6842
 
6843
- if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
6844
-
6845
- if (isset ($_GET ['start'])) $start = $_GET ['start']; else $start = 1;
6846
- if (!is_numeric ($start)) $start = 1;
6847
- if ($start < 1 || $start > 96) $start = 1;
6848
- $end = $start + 15;
6849
- if ($end > 96) $end = 96;
6850
 
6851
  $invalid_blocks = array ();
6852
 
@@ -7045,8 +7080,11 @@ function ai_settings () {
7045
  if (isset ($_POST ['sticky-widget-mode'])) $options ['STICKY_WIDGET_MODE'] = filter_option ('STICKY_WIDGET_MODE', $_POST ['sticky-widget-mode']);
7046
  if (isset ($_POST ['sticky-widget-margin'])) $options ['STICKY_WIDGET_MARGIN'] = filter_option ('STICKY_WIDGET_MARGIN', $_POST ['sticky-widget-margin']);
7047
  if (isset ($_POST ['lazy-loading-offset'])) $options ['LAZY_LOADING_OFFSET'] = filter_option ('LAZY_LOADING_OFFSET', $_POST ['lazy-loading-offset']);
7048
- if (isset ($_POST ['cfp'])) $options ['CLICK_FRAUD_PROTECTION'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp']);
7049
  if (isset ($_POST ['cfp-time'])) $options ['CLICK_FRAUD_PROTECTION_TIME'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp-time']);
 
 
 
7050
  if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
7051
  if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
7052
  if (isset ($_POST ['tab-setup-delay'])) $options ['TAB_SETUP_DELAY'] = filter_option ('TAB_SETUP_DELAY', $_POST ['tab-setup-delay']);
@@ -7317,7 +7355,7 @@ function ai_settings () {
7317
  }
7318
  } elseif (isset ($_POST [AI_FORM_CLEAR_STATISTICS]) && is_numeric ($_POST [AI_FORM_CLEAR_STATISTICS])) {
7319
  if ($_POST [AI_FORM_CLEAR_STATISTICS] != 0) {
7320
- $wpdb->query ("DELETE FROM " . AI_STATISTICS_DB_TABLE . " WHERE block = " . $_POST [AI_FORM_CLEAR_STATISTICS]);
7321
  } else $wpdb->query ("DROP TABLE IF EXISTS " . AI_STATISTICS_DB_TABLE);
7322
  }
7323
 
@@ -9357,7 +9395,7 @@ function check_scheduling_time ($start_time, $end_time, $days_in_week, $between)
9357
  function check_referer_list ($referers, $white_list) {
9358
 
9359
  if (isset ($_GET ['referrer'])) {
9360
- $referer_host = $_GET ['referrer'];
9361
  }
9362
  elseif (isset ($_SERVER['HTTP_REFERER'])) {
9363
  $referer_host = strtolower (parse_url ($_SERVER['HTTP_REFERER'], PHP_URL_HOST));
@@ -9537,6 +9575,15 @@ function ai_check_block ($block) {
9537
  break;
9538
  }
9539
  }
 
 
 
 
 
 
 
 
 
9540
  }
9541
  }
9542
 
@@ -10605,7 +10652,7 @@ $ai_wp_data [AI_CLIENT_SIDE_INSERTION] = false;
10605
  $ai_wp_data [AI_LAZY_LOADING] = false;
10606
  $ai_wp_data [AI_PAGE_BLOCKS] = 0;
10607
  $ai_wp_data [AI_GEOLOCATION] = false;
10608
- $ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? $_POST ['html_element_selection'] : false;
10609
  $ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
10610
  $ai_wp_data [AI_PROCESSING_TIME] = false;
10611
  $ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.6.22
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/
17
 
18
  Change Log
19
 
20
+ Ad Inserter 2.6.22 - 2021-02-17
21
+ - Various security fixes
22
+ - Updated AdSense API authorization process
23
+ - Reduced layout shift when using client-side device detection
24
+ - Added option to block IP addresses for click fraud protection (Pro only)
25
+ - Few minor bug fixes, cosmetic changes and code improvements
26
+
27
  Ad Inserter 2.6.21 - 2021-01-24
28
  - Improved compatibility with PHP 8
29
  - Few minor bug fixes, cosmetic changes and code improvements
794
  case AI_CHECK_LIMIT_IMPRESSIONS_PER_TIME_PERIOD: $status .= "LIMIT IMPRESSIONS PER TIME PERIOD"; break;
795
  case AI_CHECK_MAX_CLICKS: $status .= "MAX CLICKS"; break;
796
  case AI_CHECK_LIMIT_CLICKS_PER_TIME_PERIOD: $status .= "LIMIT CLICKS PER TIME PERIOD"; break;
797
+ case AI_CHECK_CFP_IP_ADDRESS: $status .= "CLICK FRAUD PROTECTION IP ADDRESS"; break;
798
  case AI_CHECK_INSERTION_NOT_DISABLED: $status .= "INSERTION PAUSED"; break;
799
  case AI_CHECK_PARAGRAPH_TAGS: $status .= "PARAGRAPH TAGS"; break;
800
  case AI_CHECK_PARAGRAPHS_WITH_TAGS: $status .= "PARAGRAPHS WITH TAGS"; break;
3510
  if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
3511
  if ($ai_wp_data [AI_WP_DEBUGGING] != 0 && isset ($_GET ['ai-debug-code']) && !defined ('AI_DEBUGGING_DEMO')) {
3512
  if (is_numeric ($_GET ['ai-debug-code']) && $_GET ['ai-debug-code'] >= 1 && $_GET ['ai-debug-code'] <= 96) {
3513
+ $obj = $block_object [(int) $_GET ['ai-debug-code']];
3514
  $block_name = $obj->number . ' &nbsp; ' . $obj->get_ad_name ();
3515
  if (!$header->get_debug_disable_insertion ()) {
3516
  $ai_wp_debugging = $ai_wp_data [AI_WP_DEBUGGING];
3825
  }
3826
  }
3827
 
3828
+ if (function_exists ('ai_debug_footer')) {
3829
+ ai_debug_footer ();
 
 
 
 
3830
  }
3831
 
3832
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) {
3912
  ob_start ();
3913
 
3914
  echo sprintf ("%-25s%s", AD_INSERTER_NAME, AD_INSERTER_VERSION);
3915
+ if (function_exists ('ai_debug_log')) {
3916
+ ai_debug_log ();
 
 
 
 
3917
  }
3918
  echo "\n\n";
3919
  if (($install_timestamp = get_option (AI_INSTALL_NAME)) !== false) {
4750
 
4751
  if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION'])) $plugin_options ['CLICK_FRAUD_PROTECTION'] = DEFAULT_CLICK_FRAUD_PROTECTION;
4752
  if (!isset ($plugin_options ['CLICK_FRAUD_PROTECTION_TIME'])) $plugin_options ['CLICK_FRAUD_PROTECTION_TIME'] = DEFAULT_CLICK_FRAUD_PROTECTION_TIME;
4753
+ if (!isset ($plugin_options ['GLOBAL_VISITOR_LIMIT_CPT'])) $plugin_options ['GLOBAL_VISITOR_LIMIT_CPT'] = DEFAULT_GLOBAL_VISITOR_LIMIT_CPT;
4754
+ if (!isset ($plugin_options ['GLOBAL_VISITOR_LIMIT_TIME'])) $plugin_options ['GLOBAL_VISITOR_LIMIT_TIME'] = DEFAULT_GLOBAL_VISITOR_LIMIT_TIME;
4755
+ if (!isset ($plugin_options ['CFP_BLOCK_IP_ADDRESS'])) $plugin_options ['CFP_BLOCK_IP_ADDRESS'] = DEFAULT_CFP_BLOCK_IP_ADDRESS;
4756
  if (!isset ($plugin_options ['DYNAMIC_BLOCKS'])) $plugin_options ['DYNAMIC_BLOCKS'] = DEFAULT_DYNAMIC_BLOCKS;
4757
  if (!isset ($plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'])) $plugin_options ['PARAGRAPH_COUNTING_FUNCTIONS'] = DEFAULT_PARAGRAPH_COUNTING_FUNCTIONS;
4758
  if (!isset ($plugin_options ['OUTPUT_BUFFERING'])) $plugin_options ['OUTPUT_BUFFERING'] = DEFAULT_OUTPUT_BUFFERING;
5038
  return ($ai_db_options [AI_OPTION_GLOBAL]['CLICK_FRAUD_PROTECTION_TIME']);
5039
  }
5040
 
5041
+ function get_global_visitor_limit_clicks_per_time_period () {
5042
+ global $ai_db_options;
5043
+
5044
+ if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_CPT'])) $ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_CPT'] = DEFAULT_GLOBAL_VISITOR_LIMIT_CPT;
5045
+
5046
+ $option = $ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_CPT'];
5047
+ if ($option == '0') $option = '';
5048
+
5049
+ return ($option);
5050
+ }
5051
+
5052
+ function get_global_visitor_limit_clicks_time_period () {
5053
+ global $ai_db_options;
5054
+
5055
+ if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_TIME'])) $ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_TIME'] = DEFAULT_GLOBAL_VISITOR_LIMIT_TIME;
5056
+
5057
+ $option = $ai_db_options [AI_OPTION_GLOBAL]['GLOBAL_VISITOR_LIMIT_TIME'];
5058
+ if ($option == '0') $option = '';
5059
+
5060
+ return ($option);
5061
+ }
5062
+
5063
+ function get_cfp_block_ip_address () {
5064
+ global $ai_db_options;
5065
+
5066
+ if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['CFP_BLOCK_IP_ADDRESS'])) $ai_db_options [AI_OPTION_GLOBAL]['CFP_BLOCK_IP_ADDRESS'] = DEFAULT_CFP_BLOCK_IP_ADDRESS;
5067
+
5068
+ return ($ai_db_options [AI_OPTION_GLOBAL]['CFP_BLOCK_IP_ADDRESS']);
5069
+ }
5070
+
5071
  function get_max_page_blocks () {
5072
  global $ai_db_options;
5073
 
5752
  $option == AI_OPTION_BACKGROUND_IMAGE ||
5753
 
5754
  $option == 'CLICK_FRAUD_PROTECTION_TIME' ||
5755
+ $option == 'GLOBAL_VISITOR_LIMIT_CPT' ||
5756
+ $option == 'GLOBAL_VISITOR_LIMIT_TIME' ||
5757
  $option == 'ADB_DELAY_ACTION' ||
5758
  $option == 'ADB_NO_ACTION_PERIOD' ||
5759
  $option == 'ADB_REDIRECTION_PAGE' ||
5817
 
5818
  if (isset ($_POST ["adsense-ad-units"])) {
5819
  if (defined ('AI_ADSENSE_API')) {
5820
+ adsense_ad_name ();
5821
  }
5822
  }
5823
 
5824
  elseif (isset ($_GET ["block"])) {
5825
+ $block = sanitize_text_field ((int) $_GET ["block"]);
5826
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5827
  global $block_object;
5828
  $block = $block_object [$block];
5870
  }
5871
 
5872
  if (isset ($_POST ["preview"])) {
5873
+ $block = urldecode ((int) $_POST ["preview"]);
5874
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5875
  require_once AD_INSERTER_PLUGIN_DIR.'includes/preview.php';
5876
 
5957
 
5958
  $process_php = isset ($_POST ["php"]) && $_POST ["php"] == 1;
5959
 
5960
+ generate_code_editor ((int) $_POST ["edit"], base64_decode ($_POST ["code"]), $process_php);
5961
  }
5962
  }
5963
 
5964
  if (isset ($_POST ["placeholder"])) {
5965
+ $block = urldecode ((int) $_POST ["block"]);
5966
  if (is_numeric ($block) && $block >= 1 && $block <= 96) {
5967
  require_once AD_INSERTER_PLUGIN_DIR.'includes/placeholders.php';
5968
 
6038
  }
6039
 
6040
  elseif (isset ($_POST ["notice"])) {
6041
+ update_option ('ai-notice-' . esc_html ($_POST ["notice"]), esc_html ($_POST ["click"]));
6042
  }
6043
 
6044
  elseif (isset ($_POST ["notice-check"])) {
6045
+ echo esc_html ($_POST ["notice-check"]);
6046
  }
6047
 
6048
  elseif (isset ($_GET ["list"])) {
6049
+ $search_text = esc_html (trim ($_GET ["list"]));
6050
 
6051
  $show_all_blocks = isset ($_GET ["all"]) && $_GET ["all"];
6052
 
6053
+ $start = (int) $_GET ["start"];
6054
+ if ($start < 1 || $start > 96) $start = 1;
6055
+
6056
+ $end = (int) $_GET ["end"];
6057
+ if ($end < 1 || $end > 96 || $end < $start) $end = 16;
6058
+
6059
+ $active = (int) $_GET ["active"];
6060
+ if ($active < 1 || $active > 96) $active = 1;
6061
 
6062
  code_block_list ($start, $end, $search_text, $show_all_blocks, $active);
6063
  }
6070
 
6071
  elseif (isset ($_GET ["adsense-code"])) {
6072
  if (defined ('AI_ADSENSE_API')) {
6073
+ ai_adsense_code (esc_html ($_GET ["adsense-code"]));
6074
  }
6075
  }
6076
 
6111
 
6112
  elseif (isset ($_GET ["ads-txt"])) {
6113
  if (!is_multisite() || is_main_site ()) {
6114
+ ads_txt (esc_html ($_GET ["ads-txt"]));
6115
  }
6116
  }
6117
 
6120
  }
6121
 
6122
  elseif (isset ($_GET ["list-options"])) {
6123
+ generate_list_options (esc_html ($_GET ["list-options"]));
6124
  }
6125
 
6126
  elseif (isset ($_GET ["update"])) {
6127
  if ($_GET ["update"] == 'block-code-demo') {
6128
+ ai_block_code_demo (urldecode ($_GET ["block_class_name"]), esc_html ($_GET ["block_class"]), esc_html ($_GET ["block_number_class"]), esc_html ($_GET ["block_name_class"]), esc_html ($_GET ["inline_styles"]));
6129
  }
6130
  elseif (function_exists ('ai_ajax_backend_2')) {
6131
  ai_ajax_backend_2 ();
6133
  }
6134
 
6135
  elseif (isset ($_GET ["check-page"])) {
6136
+ ai_check_page ();
6137
  }
6138
 
6139
  elseif (function_exists ('ai_ajax_backend_2')) {
6880
  $settings_ok = true;
6881
  $settings_errors = array ();
6882
 
6883
+ if (isset ($_GET ['start']) && is_numeric ($start) && $start >= 1 && $start <= 96) $start = (int) $_GET ['start']; else $start = 1;
6884
+ $end = min ($start + 15, 96);
 
 
 
 
 
6885
 
6886
  $invalid_blocks = array ();
6887
 
7080
  if (isset ($_POST ['sticky-widget-mode'])) $options ['STICKY_WIDGET_MODE'] = filter_option ('STICKY_WIDGET_MODE', $_POST ['sticky-widget-mode']);
7081
  if (isset ($_POST ['sticky-widget-margin'])) $options ['STICKY_WIDGET_MARGIN'] = filter_option ('STICKY_WIDGET_MARGIN', $_POST ['sticky-widget-margin']);
7082
  if (isset ($_POST ['lazy-loading-offset'])) $options ['LAZY_LOADING_OFFSET'] = filter_option ('LAZY_LOADING_OFFSET', $_POST ['lazy-loading-offset']);
7083
+ if (isset ($_POST ['cfp'])) $options ['CLICK_FRAUD_PROTECTION'] = filter_option ('CLICK_FRAUD_PROTECTION', $_POST ['cfp']);
7084
  if (isset ($_POST ['cfp-time'])) $options ['CLICK_FRAUD_PROTECTION_TIME'] = filter_option ('CLICK_FRAUD_PROTECTION_TIME', $_POST ['cfp-time']);
7085
+ if (isset ($_POST ['global-visitor-limit-cpt'])) $options ['GLOBAL_VISITOR_LIMIT_CPT'] = filter_option ('GLOBAL_VISITOR_LIMIT_CPT', $_POST ['global-visitor-limit-cpt']);
7086
+ if (isset ($_POST ['global-visitor-limit-time'])) $options ['GLOBAL_VISITOR_LIMIT_TIME'] = filter_option ('GLOBAL_VISITOR_LIMIT_TIME', $_POST ['global-visitor-limit-time']);
7087
+ if (isset ($_POST ['cfp-block-ip-address'])) $options ['CFP_BLOCK_IP_ADDRESS'] = filter_option ('CFP_BLOCK_IP_ADDRESS', $_POST ['cfp-block-ip-address']);
7088
  if (isset ($_POST ['max-page-blocks'])) $options ['MAX_PAGE_BLOCKS'] = filter_option ('MAX_PAGE_BLOCKS', $_POST ['max-page-blocks']);
7089
  if (isset ($_POST ['plugin_priority'])) $options ['PLUGIN_PRIORITY'] = filter_option ('PLUGIN_PRIORITY', $_POST ['plugin_priority']);
7090
  if (isset ($_POST ['tab-setup-delay'])) $options ['TAB_SETUP_DELAY'] = filter_option ('TAB_SETUP_DELAY', $_POST ['tab-setup-delay']);
7355
  }
7356
  } elseif (isset ($_POST [AI_FORM_CLEAR_STATISTICS]) && is_numeric ($_POST [AI_FORM_CLEAR_STATISTICS])) {
7357
  if ($_POST [AI_FORM_CLEAR_STATISTICS] != 0) {
7358
+ $wpdb->query ("DELETE FROM " . AI_STATISTICS_DB_TABLE . " WHERE block = " . ((int) $_POST [AI_FORM_CLEAR_STATISTICS]));
7359
  } else $wpdb->query ("DROP TABLE IF EXISTS " . AI_STATISTICS_DB_TABLE);
7360
  }
7361
 
9395
  function check_referer_list ($referers, $white_list) {
9396
 
9397
  if (isset ($_GET ['referrer'])) {
9398
+ $referer_host = esc_html ($_GET ['referrer']);
9399
  }
9400
  elseif (isset ($_SERVER['HTTP_REFERER'])) {
9401
  $referer_host = strtolower (parse_url ($_SERVER['HTTP_REFERER'], PHP_URL_HOST));
9575
  break;
9576
  }
9577
  }
9578
+
9579
+ if (isset ($ai_cookie->G) && is_object ($ai_cookie->G) && isset ($ai_cookie->G->cpt)) {
9580
+ if ($ai_cookie->G->cpt == 0 && isset ($ai_cookie->$block->ct)) {
9581
+ $closed_for = $ai_cookie->$block->ct - time ();
9582
+ if ($closed_for > 0) {
9583
+ return false;
9584
+ }
9585
+ }
9586
+ }
9587
  }
9588
  }
9589
 
10652
  $ai_wp_data [AI_LAZY_LOADING] = false;
10653
  $ai_wp_data [AI_PAGE_BLOCKS] = 0;
10654
  $ai_wp_data [AI_GEOLOCATION] = false;
10655
+ $ai_wp_data [AI_HTML_ELEMENT_SELECTION] = isset ($_POST ['html_element_selection']) ? (bool) $_POST ['html_element_selection'] : false;
10656
  $ai_wp_data [AI_MBSTRING_LOADED] = extension_loaded ('mbstring');
10657
  $ai_wp_data [AI_PROCESSING_TIME] = false;
10658
  $ai_wp_data [AI_FORCE_SERVERSIDE_CODE] = false;
class.php CHANGED
@@ -344,7 +344,7 @@ abstract class ai_BaseCodeBlock {
344
  public function get_ad_code_hash () {
345
  $block_code = $this->get_ad_data ();
346
  $hash = strlen ($block_code);
347
- $length = strlen ($block_code);
348
  for ($i = 0; $i < $length; $i ++) {
349
  $hash += ord ($block_code [$i]);
350
  }
@@ -2955,6 +2955,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2955
  $visitor_limit_clicks_time_period = $this->get_visitor_limit_clicks_time_period ();
2956
  $trigger_click_fraud_protection = $this->get_trigger_click_fraud_protection () && get_click_fraud_protection ();
2957
 
 
 
 
2958
  $ai_check_block_js_code = '';
2959
  $ai_check_block_html_code = '';
2960
  $ai_check_block_w3tc_code = '';
@@ -2992,6 +2995,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2992
  $visitor_limit_clicks_per_time_period_code = " data-ai-limit-clicks-per-time='{$visitor_limit_clicks_per_time_period}' data-ai-limit-clicks-time='{$visitor_limit_clicks_time_period}'";
2993
  }
2994
 
 
 
 
 
 
2995
  $hash_code = '';
2996
  if ($stay_closed_time != '' || $visitor_max_impressions != '' || $visitor_max_clicks != '') {
2997
  $hash = $this->get_ad_code_hash ();
@@ -3011,7 +3019,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3011
  $check_block_code =
3012
  $check_client_side_limits || $closed_code || $delay_showing_pageviews_code || $show_every_pageviews_code ||
3013
  $visitor_max_impressions_code || $visitor_limit_impressions_per_time_period_code ||
3014
- $visitor_max_clicks_code || $visitor_limit_clicks_per_time_period_code || $hash_code || $trigger_click_fraud_protection;
3015
 
3016
  if ($check_block_code) {
3017
  $classes = '';
@@ -3022,7 +3030,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
3022
  }
3023
  $ai_check_block_html_code =
3024
  "<span class='ai-check-block{$classes}' data-ai-block='{$this->number}'".
3025
- "{$delay_showing_pageviews_code}{$show_every_pageviews_code}{$visitor_max_impressions_code}{$visitor_limit_impressions_per_time_period_code}{$visitor_max_clicks_code}{$visitor_limit_clicks_per_time_period_code}{$hash_code}{$click_fraud_protection_time_code}></span>";
3026
  $additional_code .= $ai_check_block_html_code . "\n";
3027
  }
3028
  }
@@ -4273,8 +4281,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4273
  if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
4274
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4275
  $this->w3tc_debug []= 'PROCESS COOKIE';
4276
-
4277
- $this->w3tc_code .= ' if ($ai_enabled) ai_w3tc_log_run (\'PROCESS COOKIE\');';
4278
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4279
  } else $w3tc_status = '';
4280
 
@@ -4690,7 +4698,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4690
 
4691
  $style_attribute = "style='" . $this->get_alignment_style () . "'";
4692
 
4693
- $serverside_insertion_code = "<div class='ai-viewports $viewport_classes $block_id' {$style_attribute} data-insertion='after' data-selector='.{$block_id}' data-insertion-no-dbg data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
 
 
4694
  if (!get_disable_js_code ()) {
4695
  $js_code = "ai_insert_viewport_code ('$block_id');";
4696
 
@@ -4748,6 +4758,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
4748
 
4749
  if ($this->w3tc_code != '' && $dynamic_blocks_w3tc) {
4750
 
 
4751
  $this->w3tc_code .= ' $ai_code = str_replace ("[#AI_CODE#]", base64_encode ($ai_code), base64_decode ("'. base64_encode (ai_strip_js_markers ($serverside_insertion_code)) . '"));';
4752
 
4753
  // $serverside_insertion_code = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
@@ -8485,19 +8496,19 @@ class ai_code_generator {
8485
  if (isset ($data ['image']) && $data ['image'] != '') {
8486
  $attributes = '';
8487
  if (isset ($data ['loading']) && $data ['loading'] != '') {
8488
- $attributes .= ' loading="'.$data ['loading'].'"';
8489
  }
8490
  if (isset ($data ['alt']) && $data ['alt'] != '') {
8491
- $attributes .= ' alt="'.$data ['alt'].'"';
8492
  }
8493
- $code = '<img src="' . $data ['image'] . '"'.$attributes.'>';
8494
  }
8495
  if (isset ($data ['link']) && $data ['link'] != '') {
8496
- $code = '<a href="' . $data ['link'] . '"' .(isset ($data ['target']) ? ' target="' . $data ['target'] . '"' : '') . '>' . $code . '</a>';
8497
  }
8498
  break;
8499
  case AI_CODE_ADSENSE:
8500
- $adsense_size = ($data ['adsense-width'] != '' ? ' width: '. $data ['adsense-width']. 'px;' : '') . ($data ['adsense-height'] != '' ? ' height: '.$data ['adsense-height'].'px;' : '');
8501
 
8502
  switch ($data ['adsense-type']) {
8503
  case AI_ADSENSE_AMP_ONLY:
@@ -8507,7 +8518,7 @@ class ai_code_generator {
8507
  $code = '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>';
8508
  if ($data ['adsense-comment']) $code .= "\n<!-- " . $data ['adsense-comment'] . " -->";
8509
 
8510
- $adsense_full_width_responsive = $data ['adsense-full-width-responsive'] != '' ? "\n".' data-full-width-responsive="' . $data ['adsense-full-width-responsive'] . '"' : '';
8511
  break;
8512
  }
8513
 
@@ -8521,8 +8532,8 @@ class ai_code_generator {
8521
  $code .= '
8522
  <ins class="adsbygoogle"
8523
  style="display: inline-block;'.$adsense_size.'"
8524
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8525
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"></ins>
8526
  <script>
8527
  (adsbygoogle = window.adsbygoogle || []).push({});
8528
  </script>';
@@ -8535,8 +8546,8 @@ class ai_code_generator {
8535
  // Normal
8536
  $code .= '
8537
  <ins class="adsbygoogle ' . AI_ADSENSE_BLOCK_CLASS .$data ['block'].'"
8538
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8539
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"></ins>
8540
  <script>
8541
  (adsbygoogle = window.adsbygoogle || []).push({});
8542
  </script>';
@@ -8548,8 +8559,8 @@ class ai_code_generator {
8548
  $code .= '
8549
  <ins class="adsbygoogle"
8550
  style="display: block;"
8551
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8552
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8553
  data-ad-format="auto"'.$adsense_full_width_responsive.'></ins>
8554
  <script>
8555
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8566,8 +8577,8 @@ class ai_code_generator {
8566
  $code .= '
8567
  <ins class="adsbygoogle"
8568
  style="display: inline-block;'.$adsense_size.'"
8569
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8570
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8571
  data-ad-format="link"></ins>
8572
  <script>
8573
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8581,8 +8592,8 @@ class ai_code_generator {
8581
  // Normal
8582
  $code .= '
8583
  <ins class="adsbygoogle ' . AI_ADSENSE_BLOCK_CLASS .$data ['block'].'"
8584
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8585
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8586
  data-ad-format="link"></ins>
8587
  <script>
8588
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8595,8 +8606,8 @@ class ai_code_generator {
8595
  $code .= '
8596
  <ins class="adsbygoogle"
8597
  style="display: block;"
8598
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8599
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8600
  data-ad-format="link"'.$adsense_full_width_responsive.'></ins>
8601
  <script>
8602
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8609,8 +8620,8 @@ class ai_code_generator {
8609
  $code .= '
8610
  <ins class="adsbygoogle"
8611
  style="display: block; text-align: center;"
8612
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8613
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8614
  data-ad-layout="in-article"
8615
  data-ad-format="fluid"></ins>
8616
  <script>
@@ -8622,10 +8633,10 @@ class ai_code_generator {
8622
  $code .= '
8623
  <ins class="adsbygoogle"
8624
  style="display: block;"
8625
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8626
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8627
- data-ad-layout="'.$data ['adsense-layout'].'"
8628
- data-ad-layout-key="'.$data ['adsense-layout-key'].'"
8629
  data-ad-format="fluid"></ins>
8630
  <script>
8631
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8636,8 +8647,8 @@ class ai_code_generator {
8636
  $code .= '
8637
  <ins class="adsbygoogle"
8638
  style="display: block;"
8639
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8640
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'"
8641
  data-ad-format="autorelaxed"></ins>
8642
  <script>
8643
  (adsbygoogle = window.adsbygoogle || []).push({});
@@ -8647,7 +8658,7 @@ class ai_code_generator {
8647
  $code .= '
8648
  <script>
8649
  (adsbygoogle = window.adsbygoogle || []).push({
8650
- google_ad_client: "ca-'.$data ['adsense-publisher-id'].'",
8651
  enable_page_level_ads: true
8652
  });
8653
  </script>';
@@ -8668,7 +8679,7 @@ class ai_code_generator {
8668
 
8669
  <amp-auto-ads
8670
  type="adsense"
8671
- data-ad-client="'.$data ['adsense-publisher-id'].'">
8672
  </amp-auto-ads>';
8673
  break;
8674
  default:
@@ -8680,8 +8691,8 @@ class ai_code_generator {
8680
  layout="fixed-height"
8681
  height=100
8682
  type="adsense"
8683
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8684
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'">
8685
  </amp-ad>';
8686
  break;
8687
  case AI_ADSENSE_AMP_BELOW_THE_FOLD:
@@ -8692,8 +8703,8 @@ class ai_code_generator {
8692
  width=300
8693
  height=250
8694
  type="adsense"
8695
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8696
- data-ad-slot="'.$data ['adsense-ad-slot-id'].'">
8697
  </amp-ad>';
8698
  break;
8699
  case AI_ADSENSE_AMP_STICKY:
@@ -8707,11 +8718,11 @@ class ai_code_generator {
8707
 
8708
  <amp-sticky-ad layout="nodisplay">
8709
  <amp-ad
8710
- width="'.$data ['adsense-width'].'"
8711
- height="'.$data ['adsense-height'].'"
8712
  type="adsense"
8713
- data-ad-client="ca-'.$data ['adsense-publisher-id'].'"
8714
- data-slot="'.$data ['adsense-ad-slot-id'].'">
8715
  </amp-ad>
8716
  </amp-sticky-ad>';
8717
  break;
@@ -8748,9 +8759,9 @@ class ai_code_generator {
8748
  [ADINSERTER AMP]
8749
 
8750
  <amp-ad
8751
- '. ($data ['amazon-width'] != '' ? ' width = "'.$data ['amazon-width'].'"
8752
  ' : '') .
8753
- ' height = "'.$data ['amazon-height'].'"
8754
  type = "a9"
8755
  '.(implode ("\n", $amp_lines)).'
8756
  data-regionurl='.$regionurl.'>
344
  public function get_ad_code_hash () {
345
  $block_code = $this->get_ad_data ();
346
  $hash = strlen ($block_code);
347
+ $length = strlen ($block_code);
348
  for ($i = 0; $i < $length; $i ++) {
349
  $hash += ord ($block_code [$i]);
350
  }
2955
  $visitor_limit_clicks_time_period = $this->get_visitor_limit_clicks_time_period ();
2956
  $trigger_click_fraud_protection = $this->get_trigger_click_fraud_protection () && get_click_fraud_protection ();
2957
 
2958
+ $global_visitor_limit_clicks_per_time_period = get_global_visitor_limit_clicks_per_time_period ();
2959
+ $global_visitor_limit_clicks_time_period = get_global_visitor_limit_clicks_time_period ();
2960
+
2961
  $ai_check_block_js_code = '';
2962
  $ai_check_block_html_code = '';
2963
  $ai_check_block_w3tc_code = '';
2995
  $visitor_limit_clicks_per_time_period_code = " data-ai-limit-clicks-per-time='{$visitor_limit_clicks_per_time_period}' data-ai-limit-clicks-time='{$visitor_limit_clicks_time_period}'";
2996
  }
2997
 
2998
+ $global_visitor_limit_clicks_per_time_period_code = '';
2999
+ if ($global_visitor_limit_clicks_per_time_period != '' && $global_visitor_limit_clicks_time_period != '') {
3000
+ $global_visitor_limit_clicks_per_time_period_code = " data-ai-global-limit-clicks-per-time='{$global_visitor_limit_clicks_per_time_period}' data-ai-global-limit-clicks-time='{$global_visitor_limit_clicks_time_period}'";
3001
+ }
3002
+
3003
  $hash_code = '';
3004
  if ($stay_closed_time != '' || $visitor_max_impressions != '' || $visitor_max_clicks != '') {
3005
  $hash = $this->get_ad_code_hash ();
3019
  $check_block_code =
3020
  $check_client_side_limits || $closed_code || $delay_showing_pageviews_code || $show_every_pageviews_code ||
3021
  $visitor_max_impressions_code || $visitor_limit_impressions_per_time_period_code ||
3022
+ $visitor_max_clicks_code || $visitor_limit_clicks_per_time_period_code || $global_visitor_limit_clicks_per_time_period_code || $hash_code || $trigger_click_fraud_protection;
3023
 
3024
  if ($check_block_code) {
3025
  $classes = '';
3030
  }
3031
  $ai_check_block_html_code =
3032
  "<span class='ai-check-block{$classes}' data-ai-block='{$this->number}'".
3033
+ "{$delay_showing_pageviews_code}{$show_every_pageviews_code}{$visitor_max_impressions_code}{$visitor_limit_impressions_per_time_period_code}{$visitor_max_clicks_code}{$visitor_limit_clicks_per_time_period_code}{$global_visitor_limit_clicks_per_time_period_code}{$hash_code}{$click_fraud_protection_time_code}></span>";
3034
  $additional_code .= $ai_check_block_html_code . "\n";
3035
  }
3036
  }
4281
  if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
4282
  if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
4283
  $this->w3tc_debug []= 'PROCESS COOKIE';
4284
+ $this->generate_w3tc_code_from_html ($processed_code);
4285
+ $this->w3tc_code .= 'if ($ai_enabled) ai_w3tc_log_run (\'PROCESS COOKIE\');';
4286
  $w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
4287
  } else $w3tc_status = '';
4288
 
4698
 
4699
  $style_attribute = "style='" . $this->get_alignment_style () . "'";
4700
 
4701
+ // $serverside_insertion_code = "<div class='ai-viewports $viewport_classes $block_id' {$style_attribute} data-insertion='after' data-selector='.{$block_id}' data-insertion-no-dbg data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
4702
+ // Insert inside to prevent CLS
4703
+ $serverside_insertion_code = "<div class='ai-viewports $viewport_classes $block_id' {$style_attribute} data-insertion='prepend' data-selector='.{$block_id}' data-insertion-no-dbg data-code='[#AI_CODE#]' data-block='{$this->number}'></div>\n";
4704
  if (!get_disable_js_code ()) {
4705
  $js_code = "ai_insert_viewport_code ('$block_id');";
4706
 
4758
 
4759
  if ($this->w3tc_code != '' && $dynamic_blocks_w3tc) {
4760
 
4761
+ // Check to replace " with \'
4762
  $this->w3tc_code .= ' $ai_code = str_replace ("[#AI_CODE#]", base64_encode ($ai_code), base64_decode ("'. base64_encode (ai_strip_js_markers ($serverside_insertion_code)) . '"));';
4763
 
4764
  // $serverside_insertion_code = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
8496
  if (isset ($data ['image']) && $data ['image'] != '') {
8497
  $attributes = '';
8498
  if (isset ($data ['loading']) && $data ['loading'] != '') {
8499
+ $attributes .= ' loading="'.esc_html ($data ['loading']).'"';
8500
  }
8501
  if (isset ($data ['alt']) && $data ['alt'] != '') {
8502
+ $attributes .= ' alt="'.esc_html ($data ['alt']).'"';
8503
  }
8504
+ $code = '<img src="' . esc_html ($data ['image']) . '"'.$attributes.'>';
8505
  }
8506
  if (isset ($data ['link']) && $data ['link'] != '') {
8507
+ $code = '<a href="' . esc_html ($data ['link']) . '"' .(isset ($data ['target']) ? ' target="' . esc_html ($data ['target']) . '"' : '') . '>' . $code . '</a>';
8508
  }
8509
  break;
8510
  case AI_CODE_ADSENSE:
8511
+ $adsense_size = ($data ['adsense-width'] != '' ? ' width: '. esc_html ($data ['adsense-width']). 'px;' : '') . ($data ['adsense-height'] != '' ? ' height: '.esc_html ($data ['adsense-height']).'px;' : '');
8512
 
8513
  switch ($data ['adsense-type']) {
8514
  case AI_ADSENSE_AMP_ONLY:
8518
  $code = '<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>';
8519
  if ($data ['adsense-comment']) $code .= "\n<!-- " . $data ['adsense-comment'] . " -->";
8520
 
8521
+ $adsense_full_width_responsive = $data ['adsense-full-width-responsive'] != '' ? "\n".' data-full-width-responsive="' . esc_html ($data ['adsense-full-width-responsive']) . '"' : '';
8522
  break;
8523
  }
8524
 
8532
  $code .= '
8533
  <ins class="adsbygoogle"
8534
  style="display: inline-block;'.$adsense_size.'"
8535
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8536
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"></ins>
8537
  <script>
8538
  (adsbygoogle = window.adsbygoogle || []).push({});
8539
  </script>';
8546
  // Normal
8547
  $code .= '
8548
  <ins class="adsbygoogle ' . AI_ADSENSE_BLOCK_CLASS .$data ['block'].'"
8549
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8550
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"></ins>
8551
  <script>
8552
  (adsbygoogle = window.adsbygoogle || []).push({});
8553
  </script>';
8559
  $code .= '
8560
  <ins class="adsbygoogle"
8561
  style="display: block;"
8562
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8563
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8564
  data-ad-format="auto"'.$adsense_full_width_responsive.'></ins>
8565
  <script>
8566
  (adsbygoogle = window.adsbygoogle || []).push({});
8577
  $code .= '
8578
  <ins class="adsbygoogle"
8579
  style="display: inline-block;'.$adsense_size.'"
8580
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8581
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8582
  data-ad-format="link"></ins>
8583
  <script>
8584
  (adsbygoogle = window.adsbygoogle || []).push({});
8592
  // Normal
8593
  $code .= '
8594
  <ins class="adsbygoogle ' . AI_ADSENSE_BLOCK_CLASS .$data ['block'].'"
8595
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8596
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8597
  data-ad-format="link"></ins>
8598
  <script>
8599
  (adsbygoogle = window.adsbygoogle || []).push({});
8606
  $code .= '
8607
  <ins class="adsbygoogle"
8608
  style="display: block;"
8609
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8610
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8611
  data-ad-format="link"'.$adsense_full_width_responsive.'></ins>
8612
  <script>
8613
  (adsbygoogle = window.adsbygoogle || []).push({});
8620
  $code .= '
8621
  <ins class="adsbygoogle"
8622
  style="display: block; text-align: center;"
8623
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8624
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8625
  data-ad-layout="in-article"
8626
  data-ad-format="fluid"></ins>
8627
  <script>
8633
  $code .= '
8634
  <ins class="adsbygoogle"
8635
  style="display: block;"
8636
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8637
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8638
+ data-ad-layout="'.esc_html ($data ['adsense-layout']).'"
8639
+ data-ad-layout-key="'.esc_html ($data ['adsense-layout-key']).'"
8640
  data-ad-format="fluid"></ins>
8641
  <script>
8642
  (adsbygoogle = window.adsbygoogle || []).push({});
8647
  $code .= '
8648
  <ins class="adsbygoogle"
8649
  style="display: block;"
8650
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8651
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'"
8652
  data-ad-format="autorelaxed"></ins>
8653
  <script>
8654
  (adsbygoogle = window.adsbygoogle || []).push({});
8658
  $code .= '
8659
  <script>
8660
  (adsbygoogle = window.adsbygoogle || []).push({
8661
+ google_ad_client: "ca-'.esc_html ($data ['adsense-publisher-id']).'",
8662
  enable_page_level_ads: true
8663
  });
8664
  </script>';
8679
 
8680
  <amp-auto-ads
8681
  type="adsense"
8682
+ data-ad-client="'.esc_html ($data ['adsense-publisher-id']).'">
8683
  </amp-auto-ads>';
8684
  break;
8685
  default:
8691
  layout="fixed-height"
8692
  height=100
8693
  type="adsense"
8694
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8695
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
8696
  </amp-ad>';
8697
  break;
8698
  case AI_ADSENSE_AMP_BELOW_THE_FOLD:
8703
  width=300
8704
  height=250
8705
  type="adsense"
8706
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8707
+ data-ad-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
8708
  </amp-ad>';
8709
  break;
8710
  case AI_ADSENSE_AMP_STICKY:
8718
 
8719
  <amp-sticky-ad layout="nodisplay">
8720
  <amp-ad
8721
+ width="'.esc_html ($data ['adsense-width']).'"
8722
+ height="'.esc_html ($data ['adsense-height']).'"
8723
  type="adsense"
8724
+ data-ad-client="ca-'.esc_html ($data ['adsense-publisher-id']).'"
8725
+ data-slot="'.esc_html ($data ['adsense-ad-slot-id']).'">
8726
  </amp-ad>
8727
  </amp-sticky-ad>';
8728
  break;
8759
  [ADINSERTER AMP]
8760
 
8761
  <amp-ad
8762
+ '. ($data ['amazon-width'] != '' ? ' width = "'.esc_html ($data ['amazon-width']).'"
8763
  ' : '') .
8764
+ ' height = "'.esc_html ($data ['amazon-height']).'"
8765
  type = "a9"
8766
  '.(implode ("\n", $amp_lines)).'
8767
  data-regionurl='.$regionurl.'>
constants.php CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
- define ('AD_INSERTER_VERSION', '2.6.21');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -803,6 +803,8 @@ define ('AI_TRANSIENT_RATING_EXPIRATION', 48 * 3600);
803
  define ('AI_TRANSIENT_STATISTICS', 'ai-statistics');
804
  define ('AI_TRANSIENT_STATISTICS_EXPIRATION', 60 * 60);
805
 
 
 
806
  define ('AI_TRANSIENT_ADSENSE_TOKEN', 'ai-adsense');
807
 
808
  define ('AI_TRANSIENT_ADSENSE_ADS', 'ai-adsense-ads');
@@ -835,7 +837,10 @@ define ('DEFAULT_STICKY_WIDGET_MODE', AI_STICKY_WIDGET_MODE_CSS);
835
  define ('DEFAULT_STICKY_WIDGET_MARGIN', 15);
836
  define ('DEFAULT_LAZY_LOADING_OFFSET', 600);
837
  define ('DEFAULT_CLICK_FRAUD_PROTECTION', AI_DISABLED);
 
838
  define ('DEFAULT_CLICK_FRAUD_PROTECTION_TIME', 1);
 
 
839
  define ('DEFAULT_MAX_PAGE_BLOCKS', 3);
840
  define ('DEFAULT_PLUGIN_PRIORITY', 99999);
841
  define ('DEFAULT_DYNAMIC_BLOCKS', AI_DYNAMIC_BLOCKS_SERVER_SIDE);
@@ -861,7 +866,6 @@ define ('DEFAULT_EXTERNAL_TRACKING', AI_DISABLED);
861
  define ('DEFAULT_TRACKING_LOGGED_IN', AI_TRACKING_ENABLED);
862
  define ('DEFAULT_TRACK_PAGEVIEWS', AI_TRACKING_DISABLED);
863
  define ('DEFAULT_CLICK_DETECTION', AI_CLICK_DETECTION_STANDARD);
864
- define ('DEFAULT_REPORT_HEADER_IMAGE', 'wp-content/plugins/ad-inserter-pro/images/icon-256x256.jpg');
865
  define ('DEFAULT_ADB_BLOCK_ACTION', AI_ADB_BLOCK_ACTION_DO_NOTHING);
866
  define ('DEFAULT_ADB_DETECTION', AI_ADB_DETECTION_ADVANCED);
867
  define ('DEFAULT_CUSTOM_HOOK_PRIORITY', 10);
31
  define ('AD_INSERTER_NAME', 'Ad Inserter');
32
 
33
  if (!defined( 'AD_INSERTER_VERSION'))
34
+ define ('AD_INSERTER_VERSION', '2.6.22');
35
 
36
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
37
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
803
  define ('AI_TRANSIENT_STATISTICS', 'ai-statistics');
804
  define ('AI_TRANSIENT_STATISTICS_EXPIRATION', 60 * 60);
805
 
806
+ define ('AI_TRANSIENT_CFP_IP_ADDRESS', 'ai-cfp-');
807
+
808
  define ('AI_TRANSIENT_ADSENSE_TOKEN', 'ai-adsense');
809
 
810
  define ('AI_TRANSIENT_ADSENSE_ADS', 'ai-adsense-ads');
837
  define ('DEFAULT_STICKY_WIDGET_MARGIN', 15);
838
  define ('DEFAULT_LAZY_LOADING_OFFSET', 600);
839
  define ('DEFAULT_CLICK_FRAUD_PROTECTION', AI_DISABLED);
840
+ define ('DEFAULT_CFP_BLOCK_IP_ADDRESS', AI_DISABLED);
841
  define ('DEFAULT_CLICK_FRAUD_PROTECTION_TIME', 1);
842
+ define ('DEFAULT_GLOBAL_VISITOR_LIMIT_CPT', '');
843
+ define ('DEFAULT_GLOBAL_VISITOR_LIMIT_TIME', '');
844
  define ('DEFAULT_MAX_PAGE_BLOCKS', 3);
845
  define ('DEFAULT_PLUGIN_PRIORITY', 99999);
846
  define ('DEFAULT_DYNAMIC_BLOCKS', AI_DYNAMIC_BLOCKS_SERVER_SIDE);
866
  define ('DEFAULT_TRACKING_LOGGED_IN', AI_TRACKING_ENABLED);
867
  define ('DEFAULT_TRACK_PAGEVIEWS', AI_TRACKING_DISABLED);
868
  define ('DEFAULT_CLICK_DETECTION', AI_CLICK_DETECTION_STANDARD);
 
869
  define ('DEFAULT_ADB_BLOCK_ACTION', AI_ADB_BLOCK_ACTION_DO_NOTHING);
870
  define ('DEFAULT_ADB_DETECTION', AI_ADB_DETECTION_ADVANCED);
871
  define ('DEFAULT_CUSTOM_HOOK_PRIORITY', 10);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.6.21"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -470,10 +470,17 @@ input.ai-date-input::placeholder {
470
  width: auto;
471
  line-height: inherit;
472
  }
 
473
  .flag-icon, .flag-icon-background {
474
  background-position: initial;
475
  }
476
 
 
 
 
 
 
 
477
  div.automatic-insertion {
478
  width: 56px;
479
  height: 56px;
@@ -578,6 +585,27 @@ table.ai-lists .ai-button {
578
  }
579
 
580
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
581
 
582
  .ai-public-controls {
583
  color: #ddd;
@@ -1379,7 +1407,7 @@ img.automatic-insertion.preview {
1379
 
1380
 
1381
  .checkbox-icon.size-img16.icon-adsense {
1382
- background: url(images/icons.png) -80px -96px;
1383
  background-size: 160px 112px;
1384
  }
1385
 
1
  #ai-data {
2
+ font-family: "2.6.22"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
470
  width: auto;
471
  line-height: inherit;
472
  }
473
+
474
  .flag-icon, .flag-icon-background {
475
  background-position: initial;
476
  }
477
 
478
+ .flag-icon.inline {
479
+ display: inline-block;
480
+ width: 20px;
481
+ margin-right: 10px;
482
+ }
483
+
484
  div.automatic-insertion {
485
  width: 56px;
486
  height: 56px;
585
  }
586
 
587
 
588
+ #ai-blocked-ip-addresses-list {
589
+ text-align: left;
590
+ }
591
+
592
+ #ai-blocked-ip-addresses-list .cfp-delete {
593
+ text-align: right;
594
+ }
595
+
596
+ #ai-blocked-ip-addresses-list td.cfp-delete {
597
+ cursor: pointer;
598
+ }
599
+
600
+ #ai-blocked-ip-addresses-list .even {
601
+ background: #f8f8f8
602
+ }
603
+
604
+ #ai-blocked-ip-addresses-list .odd {
605
+ background: #fff
606
+ }
607
+
608
+
609
 
610
  .ai-public-controls {
611
  color: #ddd;
1407
 
1408
 
1409
  .checkbox-icon.size-img16.icon-adsense {
1410
+ background: url(images/icons.png) -96px -80px;
1411
  background-size: 160px 112px;
1412
  }
1413
 
includes/editor.php CHANGED
@@ -213,7 +213,7 @@ function generate_code_editor ($block, $client_code, $process_php) {
213
  $('#code-preview').html ($('#ai-editor').val ());
214
  });
215
 
216
- load_from_settings ();
217
  }
218
 
219
  initialize_preview ();
213
  $('#code-preview').html ($('#ai-editor').val ());
214
  });
215
 
216
+ setTimeout (load_from_settings, 300);
217
  }
218
 
219
  initialize_preview ();
includes/js/ai-cookie.js CHANGED
@@ -365,6 +365,24 @@ ai_check_block = function (block) {
365
  }
366
  }
367
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
368
  }
369
 
370
  ai_debug_cookie_status = 'OK';
@@ -587,9 +605,15 @@ ai_get_cookie_text = function (block) {
587
  ai_cookie = {};
588
  }
589
 
 
 
 
 
 
 
590
  if (ai_cookie.hasOwnProperty (block)) {
591
- return JSON.stringify (ai_cookie [block]).replace (/\"/g, '').replace ('{', '').replace('}', '');
592
  }
593
 
594
- return '';
595
  }
365
  }
366
  }
367
  }
368
+
369
+ if (ai_cookie.hasOwnProperty ('G') && ai_cookie ['G'].hasOwnProperty ('cpt')) {
370
+ if (ai_cookie ['G']['cpt'] == 0) {
371
+
372
+ var date = new Date();
373
+ var timestamp = Math.round (date.getTime() / 1000);
374
+ var closed_for = ai_cookie ['G']['ct'] - timestamp;
375
+
376
+ if (closed_for > 0) {
377
+ var message = 'max global clicks per time reached (' + Math. round (10000 * closed_for / 24 / 3600) / 10000 + ' days = ' + closed_for + ' s)';
378
+ ai_debug_cookie_status = message;
379
+ if (ai_debug) console.log ('AI CHECK GLOBAL', message);
380
+ if (ai_debug) console.log ('');
381
+
382
+ return false;
383
+ }
384
+ }
385
+ }
386
  }
387
 
388
  ai_debug_cookie_status = 'OK';
605
  ai_cookie = {};
606
  }
607
 
608
+ var global_data = '';
609
+ if (ai_cookie.hasOwnProperty ('G')) {
610
+ global_data = 'G[' + JSON.stringify (ai_cookie ['G']).replace (/\"/g, '').replace ('{', '').replace('}', '') + '] ';
611
+ }
612
+
613
+ var block_data = '';
614
  if (ai_cookie.hasOwnProperty (block)) {
615
+ block_data = JSON.stringify (ai_cookie [block]).replace (/\"/g, '').replace ('{', '').replace('}', '');
616
  }
617
 
618
+ return global_data + block_data;
619
  }
includes/js/ai-cookie.min.js CHANGED
@@ -1,14 +1,15 @@
1
- (function(a){if("function"===typeof define&&define.amd){define(a);var c=!0}"object"===typeof exports&&(module.exports=a(),c=!0);if(!c){var d=window.Cookies,b=window.Cookies=a();b.noConflict=function(){window.Cookies=d;return b}}})(function(){function a(){for(var d=0,b={};d<arguments.length;d++){var f=arguments[d],e;for(e in f)b[e]=f[e]}return b}function c(d){function b(){}function f(h,k,g){if("undefined"!==typeof document){g=a({path:"/"},b.defaults,g);"number"===typeof g.expires&&(g.expires=new Date(1*
2
- new Date+864E5*g.expires));g.expires=g.expires?g.expires.toUTCString():"";try{var l=JSON.stringify(k);/^[\{\[]/.test(l)&&(k=l)}catch(p){}k=d.write?d.write(k,h):encodeURIComponent(String(k)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);h=encodeURIComponent(String(h)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);l="";for(var n in g)g[n]&&(l+="; "+n,!0!==g[n]&&(l+="="+g[n].split(";")[0]));return document.cookie=h+"="+k+l}}
3
- function e(h,k){if("undefined"!==typeof document){for(var g={},l=document.cookie?document.cookie.split("; "):[],n=0;n<l.length;n++){var p=l[n].split("="),m=p.slice(1).join("=");k||'"'!==m.charAt(0)||(m=m.slice(1,-1));try{var q=p[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);m=(d.read||d)(m,q)||m.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(k)try{m=JSON.parse(m)}catch(r){}g[q]=m;if(h===q)break}catch(r){}}return h?g[h]:g}}b.set=f;b.get=function(h){return e(h,!1)};b.getJSON=function(h){return e(h,
4
  !0)};b.remove=function(h,k){f(h,"",a(k,{expires:-1}))};b.defaults={};b.withConverter=c;return b}return c(function(){})});AiCookies=Cookies.noConflict();
5
- ai_check_block=function(a){if(null==a)return!0;var c=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==c&&(c={});"undefined"!==typeof ai_delay_showing_pageviews&&(c.hasOwnProperty(a)||(c[a]={}),c[a].hasOwnProperty("d")||(c[a].d=ai_delay_showing_pageviews));if(c.hasOwnProperty(a))for(var d in c[a]){if("x"==d){var b="",f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);var e=new Date;e=c[a][d]-
6
- Math.round(e.getTime()/1E3);if(0<e&&f==b)return ai_debug_cookie_status=a="closed for "+e+" s = "+Math.round(1E4*e/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");c[a].hasOwnProperty("i")||c[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==d){if(0!=c[a][d])return ai_debug_cookie_status=a="delayed for "+c[a][d]+" pageviews",!1}else if("i"==d){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);
7
- if(0==c[a][d]&&f==b)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>c[a][d]&&f==b){e=new Date;e=-c[a][d]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"i","");c[a].hasOwnProperty("c")||c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==d&&0==c[a][d]&&(e=new Date,b=Math.round(e.getTime()/1E3),e=c[a].it-b,0<e))return ai_debug_cookie_status=a="max imp. per time reached ("+
8
- Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;if("c"==d){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);if(0==c[a][d]&&f==b)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>c[a][d]&&f==b){e=new Date;e=-c[a][d]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"c","");c[a].hasOwnProperty("i")||
9
- c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==d&&0==c[a][d]&&(e=new Date,b=Math.round(e.getTime()/1E3),e=c[a].ct-b,0<e))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1}ai_debug_cookie_status="OK";return!0};
10
- ai_check_and_insert_block=function(a,c){if(null==a)return!0;var d=document.getElementsByClassName(c);if(d.length){d=d[0];var b=d.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a)){if(ai_insert_code(d),b){var f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}}else{f=d.closest("div[data-ai]");if(null!=f&&"undefined"!=typeof f.getAttribute("data-ai")){var e=
11
- JSON.parse(b64d(f.getAttribute("data-ai")));"undefined"!==typeof e&&e.constructor===Array&&(e[1]="",f.setAttribute("data-ai",b64e(JSON.stringify(e))))}f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}d.classList.remove(c)}d=document.querySelectorAll("."+c+"-dbg");b=0;for(f=d.length;b<f;b++)e=d[b],e.querySelector(".ai-status").textContent=
12
- ai_debug_cookie_status,e.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),e.classList.remove(c+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,c){var d="",b=ai_load_cookie();b.hasOwnProperty(a)&&b[a].hasOwnProperty(c)&&(d=b[a][c]);return d}
13
- function ai_set_cookie(a,c,d){var b=ai_load_cookie();if(""===d){if(b.hasOwnProperty(a)){delete b[a][c];a:{c=b[a];for(f in c)if(c.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete b[a]}}else b.hasOwnProperty(a)||(b[a]={}),b[a][c]=d;0===Object.keys(b).length&&b.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",b,{expires:365,path:"/"});return b}
14
- ai_get_cookie_text=function(a){var c=AiCookies.getJSON("aiBLOCKS");null==c&&(c={});return c.hasOwnProperty(a)?JSON.stringify(c[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
 
1
+ (function(a){if("function"===typeof define&&define.amd){define(a);var c=!0}"object"===typeof exports&&(module.exports=a(),c=!0);if(!c){var e=window.Cookies,b=window.Cookies=a();b.noConflict=function(){window.Cookies=e;return b}}})(function(){function a(){for(var e=0,b={};e<arguments.length;e++){var f=arguments[e],d;for(d in f)b[d]=f[d]}return b}function c(e){function b(){}function f(h,k,g){if("undefined"!==typeof document){g=a({path:"/"},b.defaults,g);"number"===typeof g.expires&&(g.expires=new Date(1*
2
+ new Date+864E5*g.expires));g.expires=g.expires?g.expires.toUTCString():"";try{var l=JSON.stringify(k);/^[\{\[]/.test(l)&&(k=l)}catch(p){}k=e.write?e.write(k,h):encodeURIComponent(String(k)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);h=encodeURIComponent(String(h)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);l="";for(var n in g)g[n]&&(l+="; "+n,!0!==g[n]&&(l+="="+g[n].split(";")[0]));return document.cookie=h+"="+k+l}}
3
+ function d(h,k){if("undefined"!==typeof document){for(var g={},l=document.cookie?document.cookie.split("; "):[],n=0;n<l.length;n++){var p=l[n].split("="),m=p.slice(1).join("=");k||'"'!==m.charAt(0)||(m=m.slice(1,-1));try{var q=p[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);m=(e.read||e)(m,q)||m.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(k)try{m=JSON.parse(m)}catch(r){}g[q]=m;if(h===q)break}catch(r){}}return h?g[h]:g}}b.set=f;b.get=function(h){return d(h,!1)};b.getJSON=function(h){return d(h,
4
  !0)};b.remove=function(h,k){f(h,"",a(k,{expires:-1}))};b.defaults={};b.withConverter=c;return b}return c(function(){})});AiCookies=Cookies.noConflict();
5
+ ai_check_block=function(a){if(null==a)return!0;var c=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==c&&(c={});"undefined"!==typeof ai_delay_showing_pageviews&&(c.hasOwnProperty(a)||(c[a]={}),c[a].hasOwnProperty("d")||(c[a].d=ai_delay_showing_pageviews));if(c.hasOwnProperty(a)){for(var e in c[a]){if("x"==e){var b="",f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);var d=new Date;d=c[a][e]-
6
+ Math.round(d.getTime()/1E3);if(0<d&&f==b)return ai_debug_cookie_status=a="closed for "+d+" s = "+Math.round(1E4*d/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");c[a].hasOwnProperty("i")||c[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==e){if(0!=c[a][e])return ai_debug_cookie_status=a="delayed for "+c[a][e]+" pageviews",!1}else if("i"==e){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);
7
+ if(0==c[a][e]&&f==b)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>c[a][e]&&f==b){d=new Date;d=-c[a][e]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"i","");c[a].hasOwnProperty("c")||c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==e&&0==c[a][e]&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c[a].it-b,0<d))return ai_debug_cookie_status=a="max imp. per time reached ("+
8
+ Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;if("c"==e){b="";f=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in f.dataset&&(b=f.dataset.aiHash);f="";c[a].hasOwnProperty("h")&&(f=c[a].h);if(0==c[a][e]&&f==b)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>c[a][e]&&f==b){d=new Date;d=-c[a][e]-Math.round(d.getTime()/1E3);if(0<d)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1;ai_set_cookie(a,"c","");c[a].hasOwnProperty("i")||
9
+ c[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==e&&0==c[a][e]&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c[a].ct-b,0<d))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}if(c.hasOwnProperty("G")&&c.G.hasOwnProperty("cpt")&&0==c.G.cpt&&(d=new Date,b=Math.round(d.getTime()/1E3),d=c.G.ct-b,0<d))return ai_debug_cookie_status=a="max global clicks per time reached ("+Math.round(1E4*d/24/3600)/1E4+" days = "+d+" s)",!1}ai_debug_cookie_status=
10
+ "OK";return!0};
11
+ ai_check_and_insert_block=function(a,c){if(null==a)return!0;var e=document.getElementsByClassName(c);if(e.length){e=e[0];var b=e.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a)){if(ai_insert_code(e),b){var f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}}else{f=e.closest("div[data-ai]");if(null!=f&&"undefined"!=typeof f.getAttribute("data-ai")){var d=
12
+ JSON.parse(b64d(f.getAttribute("data-ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",f.setAttribute("data-ai",b64e(JSON.stringify(d))))}f=b.querySelectorAll(".ai-debug-block");b&&f.length&&(b.classList.remove("ai-list-block"),b.classList.remove("ai-list-block-ip"),b.style.visibility="",b.classList.contains("ai-remove-position")&&(b.style.position=""))}e.classList.remove(c)}e=document.querySelectorAll("."+c+"-dbg");b=0;for(f=e.length;b<f;b++)d=e[b],d.querySelector(".ai-status").textContent=
13
+ ai_debug_cookie_status,d.querySelector(".ai-cookie-data").textContent=ai_get_cookie_text(a),d.classList.remove(c+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,c){var e="",b=ai_load_cookie();b.hasOwnProperty(a)&&b[a].hasOwnProperty(c)&&(e=b[a][c]);return e}
14
+ function ai_set_cookie(a,c,e){var b=ai_load_cookie();if(""===e){if(b.hasOwnProperty(a)){delete b[a][c];a:{c=b[a];for(f in c)if(c.hasOwnProperty(f)){var f=!1;break a}f=!0}f&&delete b[a]}}else b.hasOwnProperty(a)||(b[a]={}),b[a][c]=e;0===Object.keys(b).length&&b.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",b,{expires:365,path:"/"});return b}
15
+ ai_get_cookie_text=function(a){var c=AiCookies.getJSON("aiBLOCKS");null==c&&(c={});var e="";c.hasOwnProperty("G")&&(e="G["+JSON.stringify(c.G).replace(/"/g,"").replace("{","").replace("}","")+"] ");var b="";c.hasOwnProperty(a)&&(b=JSON.stringify(c[a]).replace(/"/g,"").replace("{","").replace("}",""));return e+b};
includes/js/ai-insert.js CHANGED
@@ -261,7 +261,9 @@ ai_insert_viewport_code = function (id) {
261
 
262
  ai_block_div.classList.remove (id);
263
 
264
- ai_block_div.removeAttribute ('style');
 
 
265
 
266
  ai_process_elements ();
267
  }
261
 
262
  ai_block_div.classList.remove (id);
263
 
264
+ setTimeout (function () {
265
+ ai_block_div.removeAttribute ('style');
266
+ }, 2);
267
 
268
  ai_process_elements ();
269
  }
includes/js/ai-insert.min.js CHANGED
@@ -6,7 +6,7 @@ ai_insert_code=function(d){function l(m,k){return null==m?!1:m.classList?m.class
6
  d.getAttribute("data-code");var y=d.getAttribute("data-insertion"),b=d.getAttribute("data-selector");if(null!=t)if(null!=y&&null!=b){if(-1!=b.indexOf(":eq")?jQuery(b).length:document.querySelectorAll(b).length)ai_insert(y,b,b64d(t)),p(d,"ai-viewports")}else{y=document.createRange();b=!0;try{var u=y.createContextualFragment(b64d(t))}catch(m){b=!1}b?d.parentNode.insertBefore(u,d.nextSibling):jQuery(b64d(t)).insertBefore(jQuery(d.nextSibling));p(d,"ai-viewports")}t=!0}else u=d.previousElementSibling,
7
  l(u,"ai-debug-bar")&&l(u,"ai-debug-script")&&(p(u,"ai-debug-script"),v(u,"ai-debug-viewport-invisible")),p(d,"ai-viewports");return t}};
8
  ai_insert_list_code=function(d){var l=document.getElementsByClassName(d)[0];if("undefined"!=typeof l){var v=ai_insert_code(l),p=l.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(p){v||p.removeAttribute("data-ai");var t=p.querySelectorAll(".ai-debug-block");p&&t.length&&(p.classList.remove("ai-list-block"),p.classList.remove("ai-list-block-ip"),p.style.visibility="",p.classList.contains("ai-remove-position")&&(p.style.position=""))}l.classList.remove(d);v&&ai_process_elements()}};
9
- ai_insert_viewport_code=function(d){var l=document.getElementsByClassName(d)[0];"undefined"!=typeof l&&(ai_insert_code(l),l.classList.remove(d),l.removeAttribute("style"),ai_process_elements())};ai_insert_code_by_class=function(d){var l=document.getElementsByClassName(d)[0];"undefined"!=typeof l&&(ai_insert_code(l),l.classList.remove(d))};
10
  ai_insert_client_code=function(d,l){var v=document.getElementsByClassName(d)[0];if("undefined"!=typeof v){var p=v.getAttribute("data-code");null!=p&&ai_check_block()&&ai_check_and_insert_block()&&(v.setAttribute("data-code",p.substring(Math.floor(l/19))),ai_insert_code_by_class(d),v.remove())}};ai_process_elements_active=!1;
11
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0}
12
  var Arrive=function(d,l,v){function p(r,c,e){b.addMethod(c,e,r.unbindEvent);b.addMethod(c,e,r.unbindEventWithSelectorOrCallback);b.addMethod(c,e,r.unbindEventWithSelectorAndCallback)}function t(r){r.arrive=k.bindEvent;p(k,r,"unbindArrive");r.leave=w.bindEvent;p(w,r,"unbindLeave")}if(d.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,b=function(){var r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
6
  d.getAttribute("data-code");var y=d.getAttribute("data-insertion"),b=d.getAttribute("data-selector");if(null!=t)if(null!=y&&null!=b){if(-1!=b.indexOf(":eq")?jQuery(b).length:document.querySelectorAll(b).length)ai_insert(y,b,b64d(t)),p(d,"ai-viewports")}else{y=document.createRange();b=!0;try{var u=y.createContextualFragment(b64d(t))}catch(m){b=!1}b?d.parentNode.insertBefore(u,d.nextSibling):jQuery(b64d(t)).insertBefore(jQuery(d.nextSibling));p(d,"ai-viewports")}t=!0}else u=d.previousElementSibling,
7
  l(u,"ai-debug-bar")&&l(u,"ai-debug-script")&&(p(u,"ai-debug-script"),v(u,"ai-debug-viewport-invisible")),p(d,"ai-viewports");return t}};
8
  ai_insert_list_code=function(d){var l=document.getElementsByClassName(d)[0];if("undefined"!=typeof l){var v=ai_insert_code(l),p=l.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");if(p){v||p.removeAttribute("data-ai");var t=p.querySelectorAll(".ai-debug-block");p&&t.length&&(p.classList.remove("ai-list-block"),p.classList.remove("ai-list-block-ip"),p.style.visibility="",p.classList.contains("ai-remove-position")&&(p.style.position=""))}l.classList.remove(d);v&&ai_process_elements()}};
9
+ ai_insert_viewport_code=function(d){var l=document.getElementsByClassName(d)[0];"undefined"!=typeof l&&(ai_insert_code(l),l.classList.remove(d),setTimeout(function(){l.removeAttribute("style")},2),ai_process_elements())};ai_insert_code_by_class=function(d){var l=document.getElementsByClassName(d)[0];"undefined"!=typeof l&&(ai_insert_code(l),l.classList.remove(d))};
10
  ai_insert_client_code=function(d,l){var v=document.getElementsByClassName(d)[0];if("undefined"!=typeof v){var p=v.getAttribute("data-code");null!=p&&ai_check_block()&&ai_check_and_insert_block()&&(v.setAttribute("data-code",p.substring(Math.floor(l/19))),ai_insert_code_by_class(d),v.remove())}};ai_process_elements_active=!1;
11
  function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery(".ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery(".ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0}
12
  var Arrive=function(d,l,v){function p(r,c,e){b.addMethod(c,e,r.unbindEvent);b.addMethod(c,e,r.unbindEventWithSelectorOrCallback);b.addMethod(c,e,r.unbindEventWithSelectorAndCallback)}function t(r){r.arrive=k.bindEvent;p(k,r,"unbindArrive");r.leave=w.bindEvent;p(w,r,"unbindLeave")}if(d.MutationObserver&&"undefined"!==typeof HTMLElement){var y=0,b=function(){var r=HTMLElement.prototype.matches||HTMLElement.prototype.webkitMatchesSelector||HTMLElement.prototype.mozMatchesSelector||HTMLElement.prototype.msMatchesSelector;
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.6.21";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -1239,9 +1239,9 @@ jQuery(document).ready (function($) {
1239
  debug_title = true;
1240
  }
1241
 
1242
- if (api_debug >= 1 && api_debug <= 29) {
1243
  // console.log ('api_debug ON');
1244
- }
1245
 
1246
  syntax_highlighting = typeof shSettings ['theme'] != 'undefined' && shSettings ['theme'] != 'disabled';
1247
 
@@ -1344,11 +1344,10 @@ jQuery(document).ready (function($) {
1344
  }
1345
  });
1346
 
1347
- if (api_debug && block == 0) {
1348
- $("#ad" + "-" + "label" + "-" + "text").val (
1349
- b64d ("SW4gdm"+"lzaWJs"+"ZSBib"+"3ggYnkg")+b64d (api_string)
1350
- );
1351
- }
1352
  // else console.log ("NO DEFAULT API VALUE:", api_string);
1353
 
1354
  if (block == 0) {
@@ -2391,6 +2390,34 @@ jQuery(document).ready (function($) {
2391
 
2392
  toggle_adsense_list ();
2393
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2394
  }
2395
 
2396
  function configure_tab (tab) {
1
+ var javascript_version = "2.6.22";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1239
  debug_title = true;
1240
  }
1241
 
1242
+ // if (api_debug >= 1 && api_debug <= 29) {
1243
  // console.log ('api_debug ON');
1244
+ // }
1245
 
1246
  syntax_highlighting = typeof shSettings ['theme'] != 'undefined' && shSettings ['theme'] != 'disabled';
1247
 
1344
  }
1345
  });
1346
 
1347
+ // TODO
1348
+ // if (api_debug && block == 0) {
1349
+ // }
1350
+
 
1351
  // else console.log ("NO DEFAULT API VALUE:", api_string);
1352
 
1353
  if (block == 0) {
2390
 
2391
  toggle_adsense_list ();
2392
  });
2393
+
2394
+ $("#ai-blocked-ip-addresses").click (function () {
2395
+ ip_address = $("#ai-blocked-ip-addresses").attr ('delete');
2396
+ $("#ai-blocked-ip-addresses").removeAttr ('delete');
2397
+
2398
+ if (ip_address == null) ip_address == '';
2399
+
2400
+ $('#ai-blocked-ip-addresses-list').load (ajaxurl + '?action=ai_ajax_backend&cfp-ip-address-list='+ip_address+'&ai_check=' + ai_nonce, function (response, status, xhr) {
2401
+ if (status == "error") {
2402
+ var message = "Error loading CFP IP addresses: " + xhr.status + " " + xhr.statusText ;
2403
+ console.log (message);
2404
+ } else {
2405
+ var text = $('#ai-blocked-ip-addresses-list table').data ('count-text');
2406
+ if (text == null) text = '';
2407
+
2408
+ $("#ai-blocked-ip-addresses").text (text);
2409
+
2410
+ $(".cfp-ip-address").click (function () {
2411
+ var ip_address = $(this).closest ('tr').data ('ip-address');
2412
+
2413
+ setTimeout (function() {
2414
+ $("#ai-blocked-ip-addresses").attr ('delete', ip_address).click ();
2415
+ }, 10);
2416
+ });
2417
+ }
2418
+ });
2419
+ });
2420
+
2421
  }
2422
 
2423
  function configure_tab (tab) {
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.5.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-12-04 10:35:42+00:00\n"
8
- "PO-Revision-Date: 2020-12-04 11:46+0100\n"
9
  "Last-Translator: Igor Funa <info@adinserter.pro>\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,134 +16,134 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:474
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:490
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:497
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:583
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:590
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:599
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:606
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:617
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
- #: ad-inserter.php:624
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
- #: ad-inserter.php:1286
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
- #: ad-inserter.php:1291
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
- #: ad-inserter.php:1296 strings.php:104
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
- #: ad-inserter.php:1301 strings.php:105
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
- #: ad-inserter.php:1306 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
- #: ad-inserter.php:1311 strings.php:169
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
- #: ad-inserter.php:1358
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
- #: ad-inserter.php:1362
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
- #: ad-inserter.php:1660
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
- #: ad-inserter.php:2013 ad-inserter.php:3239
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
- #: ad-inserter.php:2607
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
- #: ad-inserter.php:2607
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
- #: ad-inserter.php:2608
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
- #: ad-inserter.php:2609
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
- #: ad-inserter.php:2610
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
- #: ad-inserter.php:2611
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
- #: ad-inserter.php:2612
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
- #: ad-inserter.php:2934
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
- #: ad-inserter.php:2937
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
- #: ad-inserter.php:2941
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
- #: ad-inserter.php:2946
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
- #: ad-inserter.php:2949
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
- #: ad-inserter.php:2962
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
@@ -176,7 +176,7 @@ msgstr ""
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
- #: ad-inserter.php:2964
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
@@ -184,28 +184,28 @@ msgstr ""
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
- #: ad-inserter.php:2970
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
- #: ad-inserter.php:2987 ad-inserter.php:3022
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
- #: ad-inserter.php:2994
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
- #: ad-inserter.php:3004
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
- #: ad-inserter.php:3036
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
@@ -213,78 +213,78 @@ msgstr ""
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
- #: ad-inserter.php:3036
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
- #: ad-inserter.php:3131
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
- #: ad-inserter.php:3160 ad-inserter.php:10940 class.php:2410
227
  #: includes/preview.php:2324 includes/preview.php:2369
228
- #: includes/preview.php:2406 settings.php:4370 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
- #: ad-inserter.php:3161 settings.php:4371 settings.php:4456
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
- #: ad-inserter.php:3164 settings.php:1240
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
- #: ad-inserter.php:3167
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
- #: ad-inserter.php:3168
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
- #: ad-inserter.php:3180
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
- #: ad-inserter.php:3183
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
- #: ad-inserter.php:3200 ad-inserter.php:3212 strings.php:175
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
- #: ad-inserter.php:3200 ad-inserter.php:3212
267
- #: includes/functions-check-now.php:2401 includes/functions.php:2688
268
  #: strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
- #: ad-inserter.php:3202
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
- #: ad-inserter.php:3204
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
- #: ad-inserter.php:3232
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
- #: ad-inserter.php:3237
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
@@ -292,11 +292,11 @@ msgstr ""
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
- #: ad-inserter.php:3240 settings.php:1218
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
- #: ad-inserter.php:3242
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
@@ -304,7 +304,7 @@ msgstr ""
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
- #: ad-inserter.php:3243
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
@@ -312,61 +312,61 @@ msgstr ""
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
- #: ad-inserter.php:3245
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
- #: ad-inserter.php:3247
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
- #: ad-inserter.php:3294
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
- #: ad-inserter.php:3297
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
- #: ad-inserter.php:3300
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
- #: ad-inserter.php:3303
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
- #: ad-inserter.php:3306
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
- #: ad-inserter.php:3309
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
- #: ad-inserter.php:3312
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
- #: ad-inserter.php:3315
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
- #: ad-inserter.php:3318
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
- #: ad-inserter.php:3335
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
- #: ad-inserter.php:3336
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
- #: ad-inserter.php:3365
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
@@ -374,11 +374,11 @@ msgstr ""
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
- #: ad-inserter.php:3503
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
- #: ad-inserter.php:3503
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
- #: ad-inserter.php:3519
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
- #: ad-inserter.php:3519
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
- #: ad-inserter.php:3519 ad-inserter.php:3775
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
@@ -403,43 +403,43 @@ msgstr[1] "znaka vstavljena"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
- #: ad-inserter.php:3537
407
  msgid "Click to delete the cokie for the consents"
408
  msgstr "Klikni za brisanje piškotka za soglasja"
409
 
410
- #: ad-inserter.php:3775
411
  msgid "Footer code"
412
  msgstr "Koda v nogi"
413
 
414
- #: ad-inserter.php:3775
415
  msgctxt "Footer code"
416
  msgid "DISABLED"
417
  msgstr "ONEMOGOČENA"
418
 
419
- #: ad-inserter.php:3786
420
  msgid "JAVASCRIPT NOT WORKING"
421
  msgstr "JAVASCRIPT NE DELA"
422
 
423
- #: ad-inserter.php:3786
424
  msgid "NO JAVASCRIPT ERRORS"
425
  msgstr "BREZ JAVASCRIPT NAPAK"
426
 
427
- #: ad-inserter.php:3786
428
  msgid "JAVASCRIPT ERRORS"
429
  msgstr "JAVASCRIPT NAPAKE"
430
 
431
  #. translators: block name (block with default settings)
432
- #: ad-inserter.php:6382
433
  msgctxt "Block name"
434
  msgid "Default"
435
  msgstr "Privzeti"
436
 
437
  #. translators: %s: Ad Inserter
438
- #: ad-inserter.php:7093
439
  msgid "Error importing %s settings."
440
  msgstr "Napaka pri uvozu %s nastavitev."
441
 
442
- #: ad-inserter.php:7094
443
  msgid "Error importing settings for block"
444
  msgid_plural "Error importing settings for blocks:"
445
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -447,22 +447,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
447
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
448
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
449
 
450
- #: ad-inserter.php:7147
451
  msgid "Settings saved."
452
  msgstr "Nastavitve shranjene."
453
 
454
  #. translators: %s: Ad Inserter
455
- #: ad-inserter.php:7149
456
  msgid "Invalid data received - %s settings not saved."
457
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
458
 
459
- #: ad-inserter.php:7248
460
  msgid "Settings cleared."
461
  msgstr "Nastavitve ponastavljene."
462
 
463
  #. Translators: Post/Static page must have between X and Y words
464
- #: ad-inserter.php:7676 ad-inserter.php:7678 ad-inserter.php:7701
465
- #: settings.php:2241
466
  msgid "word"
467
  msgid_plural "words"
468
  msgstr[0] "besedo"
@@ -470,43 +470,43 @@ msgstr[1] "besedi"
470
  msgstr[2] "besede"
471
  msgstr[3] "besed"
472
 
473
- #: ad-inserter.php:7715 ad-inserter.php:7849
474
  msgid "HTML TAGS REMOVED"
475
  msgstr "HTML ZNAČKE ODSTRANJENE"
476
 
477
- #: ad-inserter.php:7928
478
  msgid "BEFORE COMMENTS"
479
  msgstr "PRED KOMENTARJI"
480
 
481
- #: ad-inserter.php:8060
482
  msgid "AFTER COMMENTS"
483
  msgstr "PO KOMETARJIH"
484
 
485
- #: ad-inserter.php:8144
486
  msgid "BETWEEN COMMENTS"
487
  msgstr "MED KOMENTARJI"
488
 
489
- #: ad-inserter.php:10226 ad-inserter.php:10315
490
  msgctxt "category name"
491
  msgid "Uncategorized"
492
  msgstr "Nekategorizirano"
493
 
494
- #: ad-inserter.php:10542
495
  msgid "requires WordPress 4.6 or newer"
496
  msgstr "potrebuje WordPress 4.6 ali novejši"
497
 
498
- #: ad-inserter.php:10542
499
  msgid "Please update!"
500
  msgstr "Prosimo, posodobite!"
501
 
502
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
503
  #. name with HTML tags will be added)
504
- #: ad-inserter.php:10811
505
  msgid "Thank you for installing"
506
  msgstr "Hvala za namestitev vtičnika"
507
 
508
  #. translators: Opt-in message: %s: HTML tags
509
- #: ad-inserter.php:10813
510
  msgid ""
511
  "We would like to %s track its usage %s on your site. This is completely "
512
  "optional and can be disabled at any time."
@@ -514,7 +514,7 @@ msgstr ""
514
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
515
  "izbirno in se lahko izključi kadarkoli."
516
 
517
- #: ad-inserter.php:10815
518
  msgid ""
519
  "We don't record any sensitive data, only information regarding the WordPress "
520
  "environment and plugin usage, which will help us to make improvements to the "
@@ -524,7 +524,7 @@ msgstr ""
524
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
525
 
526
  #. translators: Deactivation message: %s: HTML tags
527
- #: ad-inserter.php:10852
528
  msgid ""
529
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
530
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -535,50 +535,50 @@ msgstr ""
535
  "nam %s in poskušali vam bomo pomagati."
536
 
537
  #. translators: %s: Ad Inserter
538
- #: ad-inserter.php:10898
539
  msgid "%s block."
540
  msgstr "%s blok."
541
 
542
  #. translators: widget title
543
- #: ad-inserter.php:10914 ad-inserter.php:10949
544
  msgid "Processing log"
545
  msgstr "Dnevnik procesiranja"
546
 
547
  #. translators: widget title
548
- #: ad-inserter.php:10916 ad-inserter.php:10950
549
  msgid "Dummy widget"
550
  msgstr "Prazen gradnik"
551
 
552
  #. translators: widget title
553
- #: ad-inserter.php:10918 ad-inserter.php:10948
554
  msgid "Debugging tools"
555
  msgstr "Orodja za razhroščevanje"
556
 
557
  #. translators: block status (widget title)
558
- #: ad-inserter.php:10925
559
  msgctxt "block"
560
  msgid "PAUSED"
561
  msgstr "USTAVLJEN"
562
 
563
- #: ad-inserter.php:10926
564
  msgid "WIDGET DISABLED"
565
  msgstr "GRADNIK ONEMOGOČEN"
566
 
567
- #: ad-inserter.php:10927
568
  msgid "Unknown block"
569
  msgstr "Neznan blok"
570
 
571
- #: ad-inserter.php:10935 includes/functions-check-now.php:3261
572
- #: includes/functions.php:3630 settings.php:1270
573
  msgid "Title"
574
  msgstr "Naslov"
575
 
576
- #: ad-inserter.php:10957
577
  msgctxt "Widget"
578
  msgid "Sticky"
579
  msgstr "Lepljiv"
580
 
581
- #: ad-inserter.php:11008
582
  msgid ""
583
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
584
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -587,7 +587,7 @@ msgstr ""
587
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
588
  "Inserter Pro."
589
 
590
- #: ad-inserter.php:11009
591
  msgid ""
592
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
593
  "will clear all settings that are available only in the Pro version "
@@ -626,11 +626,11 @@ msgstr "Za prispevkom"
626
  msgid "Between posts"
627
  msgstr "Med prispevki"
628
 
629
- #: class.php:2389 settings.php:1975 settings.php:4388
630
  msgid "Widget"
631
  msgstr "Gradnik"
632
 
633
- #: class.php:2394 settings.php:4386
634
  msgid "PHP function call"
635
  msgstr "Klic PHP funkcije"
636
 
@@ -677,85 +677,85 @@ msgctxt "viewports"
677
  msgid "ALL"
678
  msgstr "VSI"
679
 
680
- #: class.php:2779 class.php:2820 class.php:4211 strings.php:279
681
  msgctxt "Block"
682
  msgid "HIDDEN"
683
  msgstr "SKRIT"
684
 
685
- #: class.php:2827 class.php:4214 strings.php:278
686
  msgctxt "Block"
687
  msgid "VISIBLE"
688
  msgstr "VIDEN"
689
 
690
- #: class.php:3409 class.php:3487
691
  msgid "ACTIVE GROUPS"
692
  msgstr "AKTIVNE SKUPINE"
693
 
694
- #: class.php:3899
695
  msgid "start='%s' end='%s' days='%s' type='%s'"
696
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
697
 
698
- #: class.php:3907
699
  msgid "parameters='%s' type='%s'"
700
  msgstr "parametri='%s' tip='%s'"
701
 
702
  #. translators: %s: list parameters and type
703
- #: class.php:3909
704
  msgid "referers='%s' type='%s'"
705
  msgstr "napotitelji='%s' tip='%s'"
706
 
707
  #. translators: %s: list parameters and type
708
- #: class.php:3911
709
  msgid "clients='%s' type='%s'"
710
  msgstr "odjemalci='%s' tip='%s'"
711
 
712
  #. translators: %s: list parameters and type
713
- #: class.php:4094
714
  msgid "countries='%s' type='%s'"
715
  msgstr "države='%s' tip='%s'"
716
 
717
  #. translators: %s: list parameters and type
718
- #: class.php:4096
719
  msgid "ip addresses='%s' type='%s'"
720
  msgstr "ip naslovi='%s' tip='%s'"
721
 
722
- #: class.php:4211 class.php:4214
723
  msgid "viewport='%s' type='%s'"
724
  msgstr "pogled='%s' tip='%s'"
725
 
726
- #: class.php:4636 strings.php:272
727
  msgid "BEFORE"
728
  msgstr "PRED"
729
 
730
- #: class.php:4644 strings.php:274
731
  msgid "PREPEND CONTENT"
732
  msgstr "DODAJ PRED VSEBINO"
733
 
734
- #: class.php:4648 strings.php:275
735
  msgid "APPEND CONTENT"
736
  msgstr "DODAJ ZA VSEBINO"
737
 
738
- #: class.php:4652 strings.php:276
739
  msgid "REPLACE CONTENT"
740
  msgstr "NADOMESTI VSEBINO"
741
 
742
- #: class.php:4656 strings.php:277
743
  msgid "REPLACE ELEMENT"
744
  msgstr "NADOMESTI ELEMENT"
745
 
746
- #: class.php:4667 strings.php:273
747
  msgid "AFTER"
748
  msgstr "ZA"
749
 
750
- #: class.php:4733 includes/preview.php:2369 includes/preview.php:2406
751
  msgid "Code"
752
  msgstr "Koda"
753
 
754
- #: class.php:4736
755
  msgid "for block"
756
  msgstr "za blok"
757
 
758
- #: class.php:8825
759
  msgid ""
760
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
761
  "extension for PHP."
@@ -763,204 +763,6 @@ msgstr ""
763
  "NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
764
  "namestiti DOM razširitev za PHP."
765
 
766
- #: includes/dst/dst.php:351
767
- msgid "Every minute"
768
- msgstr "Vsako minuto"
769
-
770
- #: includes/dst/dst.php:356
771
- msgid "Once Weekly"
772
- msgstr "Enkrat tedensko"
773
-
774
- #: includes/dst/dst.php:360
775
- msgid "Once Monthly"
776
- msgstr "Enkrat mesečno"
777
-
778
- #: includes/dst/dst.php:364
779
- msgid "Twice Monthly"
780
- msgstr "Dvakrat Mesečno"
781
-
782
- #: includes/dst/dst.php:558
783
- msgid "No plugin data."
784
- msgstr "Ni podatkov o vtičniku."
785
-
786
- #: includes/dst/dst.php:930
787
- msgctxt "Button"
788
- msgid "Allow"
789
- msgstr "Dovoli"
790
-
791
- #: includes/dst/dst.php:932
792
- msgctxt "Button"
793
- msgid "Do not allow"
794
- msgstr "Ne dovoli"
795
-
796
- #: includes/dst/dst.php:1160
797
- msgid ""
798
- "Thank you for installing our plugin. We'd like your permission to track its "
799
- "usage on your site and subscribe you to our newsletter. This is completely "
800
- "optional."
801
- msgstr ""
802
- "Hvala za namestitev našega vtičnika. Prosimo za soglasje za sledenje njegovi "
803
- "uporabi na vašem spletnem mestu in za naročimo na naše novice. To je povsem "
804
- "izbirno."
805
-
806
- #: includes/dst/dst.php:1161
807
- msgid ""
808
- "We won't record any sensitive data, only information regarding the WordPress "
809
- "environment and plugin settings, which will help us to make improvements to "
810
- "the plugin."
811
- msgstr ""
812
- "Ne bomo beležili občutljivh podatkov, samo informacije glede okolja "
813
- "WordPress in nastavitev vtičnika, kar nam bo omogočilo izdelavo izboljšav za "
814
- "vtičnik."
815
-
816
- #: includes/dst/dst.php:1164
817
- msgid ""
818
- "Thank you for installing our theme. We'd like your permission to track its "
819
- "usage on your site and subscribe you to our newsletter. This is completely "
820
- "optional."
821
- msgstr ""
822
- "Hvala za namestitev naše teme. Prosimo za soglasje za sledenje njeni uporabi "
823
- "na vašem spletnem mestu in za naročimo na naše novice. To je povsem izbirno."
824
-
825
- #: includes/dst/dst.php:1165
826
- msgid ""
827
- "We won't record any sensitive data, only information regarding the WordPress "
828
- "environment and theme settings, which will help us to make improvements to "
829
- "the theme."
830
- msgstr ""
831
- "Ne bomo beležili občutljivh podatkov, samo informacije glede okolja "
832
- "WordPress in nastavitev teme, kar nam bo omogočilo izdelavo izboljšav za "
833
- "temo."
834
-
835
- #: includes/dst/dst.php:1173
836
- msgid ""
837
- "Thank you for installing our plugin. We would like to track its usage on "
838
- "your site. This is completely optional."
839
- msgstr ""
840
- "Hvala za namestitev našega vtičnika. Radi bi sledili njegovi uporabi na "
841
- "vašem spletnem mestu. To je povsem izbirno."
842
-
843
- #: includes/dst/dst.php:1174
844
- msgid ""
845
- "We don't record any sensitive data, only information regarding the WordPress "
846
- "environment and plugin settings, which will help us to make improvements to "
847
- "the plugin."
848
- msgstr ""
849
- "Ne beležimo občutljivh podatkov, samo informacije glede okolja WordPress in "
850
- "nastavitev vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
851
-
852
- #: includes/dst/dst.php:1177
853
- msgid ""
854
- "Thank you for installing our theme. We would like to track its usage on your "
855
- "site. This is completely optional."
856
- msgstr ""
857
- "Hvala za namestitev naše teme. Radi bi sledili njeni uporabi na vašem "
858
- "spletnem mestu. To je povsem izbirno."
859
-
860
- #: includes/dst/dst.php:1178
861
- msgid ""
862
- "We don't record any sensitive data, only information regarding the WordPress "
863
- "environment and theme settings, which will help us to make improvements to "
864
- "the theme."
865
- msgstr ""
866
- "Ne beležimo občutljivh podatkov, samo informacije glede okolja WordPress in "
867
- "nastavitev teme, kar nam bo omogočilo izdelavo izboljšav za temo."
868
-
869
- #: includes/dst/dst.php:1188
870
- msgid ""
871
- "Thank you for opting in to tracking. Would you like to receive occasional "
872
- "news about this plugin, including details of new features and special offers?"
873
- msgstr ""
874
- "Hvala za soglasje za sledenje. Ali želite prejemati občasne novice glede "
875
- "tega vtičnika, vključno s podrobnostmi o novih funkcijah in posebnih "
876
- "ponudbah?"
877
-
878
- #: includes/dst/dst.php:1190
879
- msgid ""
880
- "Thank you for opting in to tracking. Would you like to receive occasional "
881
- "news about this theme, including details of new features and special offers?"
882
- msgstr ""
883
- "Hvala za soglasje za sledenje. Ali želite prejemati občasne novice glede te "
884
- "teme, vključno s podrobnostmi o novih funkcijah in posebnih ponudbah?"
885
-
886
- #: includes/dst/dst.php:1212
887
- msgid "Sorry to see you go"
888
- msgstr "Žal nam je, da odhajate"
889
-
890
- #: includes/dst/dst.php:1213
891
- msgid ""
892
- "Before you deactivate the plugin, would you quickly give us your reason for "
893
- "doing so?"
894
- msgstr ""
895
- "Preden onemogočite vtičnik, ali nam lahko na kratko sporočite razlog za to?"
896
-
897
- #: includes/dst/dst.php:1215
898
- msgid "Set up is too difficult"
899
- msgstr "Nastavitve so preveč zahtevne"
900
-
901
- #: includes/dst/dst.php:1216
902
- msgid "Lack of documentation"
903
- msgstr "Pomanjkanje dokumentacije"
904
-
905
- #: includes/dst/dst.php:1217
906
- msgid "Not the features I wanted"
907
- msgstr "Nima funkcij, ki jih potrebujem"
908
-
909
- #: includes/dst/dst.php:1218
910
- msgid "Doesn't work"
911
- msgstr "Ne dela"
912
-
913
- #: includes/dst/dst.php:1219
914
- msgid "Found a better plugin"
915
- msgstr "Načel sem boljši vtičnik"
916
-
917
- #: includes/dst/dst.php:1220
918
- msgid "Installed by mistake"
919
- msgstr "Namestil po pomoti"
920
-
921
- #: includes/dst/dst.php:1221
922
- msgid "Just testing"
923
- msgstr "Samo testiram"
924
-
925
- #: includes/dst/dst.php:1222
926
- msgid "Only required temporarily"
927
- msgstr "Potrebujem samo začasno"
928
-
929
- #: includes/dst/dst.php:1223
930
- msgid "Don't show this form again"
931
- msgstr "Ne prikaži več te forme"
932
-
933
- #: includes/dst/dst.php:1225
934
- msgid "Details (optional)"
935
- msgstr "Podrobnosti (izbirno)"
936
-
937
- #: includes/dst/dst.php:1226
938
- msgid "This information will greatly help us to improve the plugin."
939
- msgstr "Te informacije nam bodo zelo pomagale izboljšati vtičnik."
940
-
941
- #: includes/dst/dst.php:1227
942
- msgid "Goodbye!"
943
- msgstr "Nasvidenje!"
944
-
945
- #: includes/dst/dst.php:1270
946
- msgid "Submitting form"
947
- msgstr "Pošiljam obrazec"
948
-
949
- #: includes/dst/dst.php:1409
950
- msgctxt "Button"
951
- msgid "Cancel"
952
- msgstr "Prekliči"
953
-
954
- #: includes/dst/dst.php:1409
955
- msgctxt "Button"
956
- msgid "Just Deactivate"
957
- msgstr "Samo Deaktiviraj"
958
-
959
- #: includes/dst/dst.php:1409
960
- msgctxt "Button"
961
- msgid "Submit and Deactivate"
962
- msgstr "Pošlji in Deaktiviraj"
963
-
964
  #: includes/editor.php:4 includes/placeholders.php:350
965
  #: includes/preview.php:2310 strings.php:285
966
  msgid "Use"
@@ -971,7 +773,7 @@ msgid "Reset"
971
  msgstr "Ponastavi"
972
 
973
  #: includes/editor.php:6 includes/placeholders.php:352
974
- #: includes/preview.php:2313 settings.php:3711 strings.php:227 strings.php:284
975
  msgid "Cancel"
976
  msgstr "Prekliči"
977
 
@@ -1056,7 +858,7 @@ msgstr ""
1056
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
1057
 
1058
  #: includes/functions-check-now.php:451 includes/functions.php:466
1059
- #: settings.php:1421 settings.php:1461 settings.php:2916
1060
  msgid "Open HTML element selector"
1061
  msgstr "Odpri izbirnik HTML elementa"
1062
 
@@ -1081,7 +883,7 @@ msgid " - global tracking disabled"
1081
  msgstr " - globalno sledenje onemogočeno"
1082
 
1083
  #: includes/functions-check-now.php:492 includes/functions.php:508
1084
- #: includes/functions.php:3388
1085
  msgid "Generate PDF report"
1086
  msgstr "Generiraj PDF poročilo"
1087
 
@@ -1094,7 +896,7 @@ msgid "Toggle Ad Blocking Statistics"
1094
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
1095
 
1096
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
1097
- #: includes/functions.php:544 includes/functions.php:3369
1098
  msgid "Toggle Statistics"
1099
  msgstr "Preklopi Statistiko"
1100
 
@@ -1118,7 +920,7 @@ msgid "%s license overused. Continue?"
1118
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
1119
 
1120
  #: includes/functions-check-now.php:555 includes/functions.php:584
1121
- #: settings.php:1175 settings.php:2352
1122
  msgid "Save Settings"
1123
  msgstr "Shrani Nastavitve"
1124
 
@@ -1174,7 +976,7 @@ msgid "Offset of trigger element"
1174
  msgstr "Zamik sprožilnega elementa"
1175
 
1176
  #: includes/functions-check-now.php:721 includes/functions.php:756
1177
- #: settings.php:1476
1178
  msgid "Delay"
1179
  msgstr "Zakasnitev"
1180
 
@@ -1192,13 +994,13 @@ msgstr "Sproži animacijo samo enkrat"
1192
 
1193
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1194
  #: includes/functions-check-now.php:2545 includes/functions.php:870
1195
- #: includes/functions.php:2827 includes/functions.php:2843
1196
  msgid "Tracking is globally disabled"
1197
  msgstr "Sledenje je globalno onemogočeno"
1198
 
1199
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1200
  #: includes/functions-check-now.php:2549 includes/functions.php:874
1201
- #: includes/functions.php:2831 includes/functions.php:2847
1202
  msgid "Tracking for this block is disabled"
1203
  msgstr "Sledenje za ta blok je onemogočeno"
1204
 
@@ -1207,7 +1009,7 @@ msgid "Double click to toggle controls in public reports"
1207
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1208
 
1209
  #: includes/functions-check-now.php:786 includes/functions.php:887
1210
- #: settings.php:3646 settings.php:3682 settings.php:3724 strings.php:240
1211
  msgid "Loading..."
1212
  msgstr "Nalagam..."
1213
 
@@ -1224,62 +1026,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
1224
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1225
 
1226
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1227
- #: includes/functions.php:915 includes/functions.php:6316
1228
  msgid "Load data for last month"
1229
  msgstr "Naloži podatke za zadnji mesec"
1230
 
1231
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1232
- #: includes/functions.php:915 includes/functions.php:6316
1233
  msgid "Last Month"
1234
  msgstr "Zadnji Mesec"
1235
 
1236
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1237
- #: includes/functions.php:918 includes/functions.php:6319
1238
  msgid "Load data for this month"
1239
  msgstr "Naloži podatke za ta mesec"
1240
 
1241
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1242
- #: includes/functions.php:918 includes/functions.php:6319
1243
  msgid "This Month"
1244
  msgstr "Ta Mesec"
1245
 
1246
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1247
- #: includes/functions.php:921 includes/functions.php:6322
1248
  msgid "Load data for this year"
1249
  msgstr "Naloži podatke za to leto"
1250
 
1251
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1252
- #: includes/functions.php:921 includes/functions.php:6322
1253
  msgid "This Year"
1254
  msgstr "To Leto"
1255
 
1256
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1257
- #: includes/functions.php:924 includes/functions.php:6325
1258
  msgid "Load data for the last 15 days"
1259
  msgstr "Naloži podatke za zadnjih 15 dni"
1260
 
1261
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1262
- #: includes/functions.php:927 includes/functions.php:6328
1263
  msgid "Load data for the last 30 days"
1264
  msgstr "Naloži podatke za zadnjih 30 dni"
1265
 
1266
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1267
- #: includes/functions.php:930 includes/functions.php:6331
1268
  msgid "Load data for the last 90 days"
1269
  msgstr "Naloži podatke za zadnjih 90 dni"
1270
 
1271
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1272
- #: includes/functions.php:933 includes/functions.php:6334
1273
  msgid "Load data for the last 180 days"
1274
  msgstr "Naloži podatke za zadnjih 180 dni"
1275
 
1276
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1277
- #: includes/functions.php:936 includes/functions.php:6337
1278
  msgid "Load data for the last 365 days"
1279
  msgstr "Naloži podatke za zadnjih 365 dni"
1280
 
1281
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1282
- #: includes/functions.php:946 includes/functions.php:6347
1283
  msgid "Load data for the selected range"
1284
  msgstr "Naloži podatke za izbrano obdobje"
1285
 
@@ -1364,7 +1166,7 @@ msgid "Cities"
1364
  msgstr "Mesta"
1365
 
1366
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1367
- #: includes/functions.php:1066 includes/functions.php:3334
1368
  msgid "Toggle country editor"
1369
  msgstr "Preklopi urejevalnik držav"
1370
 
@@ -1373,7 +1175,7 @@ msgid "Toggle city editor"
1373
  msgstr "Preklopi urejevalnik mest"
1374
 
1375
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1376
- #: includes/functions.php:1073 includes/functions.php:3337
1377
  msgid "Comma separated country ISO Alpha-2 codes"
1378
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1379
 
@@ -1386,12 +1188,12 @@ msgid "Whitelist countries"
1386
  msgstr "Beli seznam držav"
1387
 
1388
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1389
- #: includes/functions.php:1555 includes/functions.php:1866
1390
  msgid "Enter license key"
1391
  msgstr "Vnesite licenčni ključ"
1392
 
1393
  #. translators: %s: Ad Inserter Pro
1394
- #: includes/functions-check-now.php:1388 includes/functions.php:1561
1395
  msgid ""
1396
  "%s license key is not set. Plugin functionality is limited and updates are "
1397
  "disabled."
@@ -1400,55 +1202,55 @@ msgstr ""
1400
  "posodobitve onemogočene."
1401
 
1402
  #. translators: %s: Ad Inserter Pro
1403
- #: includes/functions-check-now.php:1402 includes/functions.php:1575
1404
  msgid "Warning: %s plugin update server is not accessible"
1405
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1406
 
1407
  #. translators: updates are not available
1408
- #: includes/functions-check-now.php:1404 includes/functions.php:1577
1409
  msgid "updates"
1410
  msgstr "posodobitve"
1411
 
1412
  #. translators: updates are not available
1413
- #: includes/functions-check-now.php:1406 includes/functions.php:1579
1414
  msgid "are not available"
1415
  msgstr "niso na razpolago"
1416
 
1417
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1418
- #: includes/functions.php:1584 includes/functions.php:1875
1419
  msgid "Check license key"
1420
  msgstr "Preverite licenčni ključ"
1421
 
1422
  #. translators: %s: Ad Inserter Pro
1423
- #: includes/functions-check-now.php:1417 includes/functions.php:1590
1424
  msgid "Invalid %s license key."
1425
  msgstr "Neveljaven %s licenčni ključ."
1426
 
1427
  #. translators: %s: Ad Inserter Pro
1428
- #: includes/functions-check-now.php:1426 includes/functions.php:1599
1429
  msgid "%s license expired. Plugin updates are disabled."
1430
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1431
 
1432
- #: includes/functions-check-now.php:1427 includes/functions.php:1600
1433
  msgid "Renew license"
1434
  msgstr "Obnovite licenco"
1435
 
1436
  #. translators: %s: Ad Inserter Pro
1437
- #: includes/functions-check-now.php:1435 includes/functions.php:1608
1438
  msgid "%s license overused. Plugin updates are disabled."
1439
  msgstr ""
1440
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1441
 
1442
- #: includes/functions-check-now.php:1436 includes/functions.php:1609
1443
  msgid "Manage licenses"
1444
  msgstr "Upravljajte z licencami"
1445
 
1446
- #: includes/functions-check-now.php:1436 includes/functions.php:1609
1447
  msgid "Upgrade license"
1448
  msgstr "Nadgradite licenco"
1449
 
1450
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1451
- #: includes/functions-check-now.php:1683 includes/functions.php:1868
1452
  msgid ""
1453
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1454
  "limited and updates are disabled."
@@ -1457,12 +1259,12 @@ msgstr ""
1457
  "so omejene in posodobitve onemogočene."
1458
 
1459
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1460
- #: includes/functions-check-now.php:1692 includes/functions.php:1877
1461
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1462
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1463
 
1464
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1465
- #: includes/functions-check-now.php:1708 includes/functions.php:1893
1466
  msgid ""
1467
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1468
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1472,7 +1274,7 @@ msgstr ""
1472
  "pogrešate. %3$s"
1473
 
1474
  #. translators: 1, 3: HTML tags, 2: percentage
1475
- #: includes/functions-check-now.php:1715 includes/functions.php:1900
1476
  msgid ""
1477
  "During the license period and 30 days after the license has expired we offer "
1478
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1480,24 +1282,24 @@ msgstr ""
1480
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1481
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1482
 
1483
- #: includes/functions-check-now.php:1725 includes/functions.php:1910
1484
  msgid "No, thank you."
1485
  msgstr "Ne, hvala."
1486
 
1487
- #: includes/functions-check-now.php:1728 includes/functions.php:1913
1488
  msgid "Not now, maybe later."
1489
  msgstr "Ne zdaj, mogoče kasneje."
1490
 
1491
- #: includes/functions-check-now.php:1742 includes/functions.php:1927
1492
  msgid "Renew the licence"
1493
  msgstr "Obnovi licenco"
1494
 
1495
- #: includes/functions-check-now.php:1744 includes/functions.php:1929
1496
  msgid "Update license status"
1497
  msgstr "Posodobi status licence"
1498
 
1499
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1500
- #: includes/functions-check-now.php:1755 includes/functions.php:1942
1501
  msgid ""
1502
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1503
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
@@ -1507,105 +1309,105 @@ msgstr ""
1507
  "Nadgradite licenco %7$s"
1508
 
1509
  #. Translators: %s: HTML tag
1510
- #: includes/functions-check-now.php:1777 includes/functions.php:1997
1511
  msgid "Warning: %s MaxMind IP geolocation database not found."
1512
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1513
 
1514
- #: includes/functions-check-now.php:2330 includes/functions.php:2620
1515
  msgid "Geolocation"
1516
  msgstr "Geolokacija"
1517
 
1518
- #: includes/functions-check-now.php:2334 includes/functions.php:2624
1519
- #: settings.php:4375
1520
  msgid "Exceptions"
1521
  msgstr "Izjeme"
1522
 
1523
- #: includes/functions-check-now.php:2339 includes/functions.php:2629
1524
  msgid "Multisite"
1525
  msgstr "Multisite"
1526
 
1527
- #: includes/functions-check-now.php:2344 includes/functions.php:2634
1528
- #: settings.php:4381
1529
  msgid "Tracking"
1530
  msgstr "Sledenje"
1531
 
1532
  #. translators: %d: days, hours, minutes
1533
- #: includes/functions-check-now.php:2375 includes/functions.php:2665
1534
  msgid "Scheduled in %d days %d hours %d minutes"
1535
  msgstr "Planirano v %d dneh %d urah %d minutah"
1536
 
1537
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1538
  #. HTML code for long dash separator
1539
- #: includes/functions-check-now.php:2384 includes/functions.php:2674
1540
  msgid "Active %s expires in %d days %d hours %d minutes"
1541
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1542
 
1543
- #: includes/functions-check-now.php:2388 includes/functions.php:2678
1544
  msgid "Expired"
1545
  msgstr "Poteklo"
1546
 
1547
- #: includes/functions-check-now.php:2396 includes/functions.php:2704
1548
- #: settings.php:1531 settings.php:1546 settings.php:1668 settings.php:2239
1549
  msgid "and"
1550
  msgstr "in"
1551
 
1552
- #: includes/functions-check-now.php:2399 includes/functions.php:2686
1553
  msgid "fallback"
1554
  msgstr "rezerva"
1555
 
1556
- #: includes/functions-check-now.php:2400 includes/functions.php:2687
1557
  msgid "Block to be used when scheduling expires"
1558
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1559
 
1560
- #: includes/functions-check-now.php:2425 includes/functions.php:2724
1561
  msgid "Load in iframe"
1562
  msgstr "Naloži v iframe-u"
1563
 
1564
- #: includes/functions-check-now.php:2429 includes/functions.php:2728
1565
- #: includes/placeholders.php:387 settings.php:1139 settings.php:2266
1566
  msgid "Width"
1567
  msgstr "Širina"
1568
 
1569
- #: includes/functions-check-now.php:2430 includes/functions.php:2729
1570
  msgid "iframe width, empty means full width (100%)"
1571
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1572
 
1573
- #: includes/functions-check-now.php:2436 includes/functions.php:2735
1574
- #: includes/placeholders.php:382 settings.php:1145 settings.php:2270
1575
  msgid "Height"
1576
  msgstr "Višina"
1577
 
1578
- #: includes/functions-check-now.php:2437 includes/functions.php:2736
1579
  msgid "iframe height, empty means adjust it to iframe content height"
1580
  msgstr ""
1581
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1582
 
1583
- #: includes/functions-check-now.php:2444 includes/functions.php:2743
1584
  msgid "Ad label in iframe"
1585
  msgstr "Oznaka oglasa v iframe-u"
1586
 
1587
- #: includes/functions-check-now.php:2449 includes/functions.php:2748
1588
  msgid "Preview iframe code"
1589
  msgstr "Predpreglej kodo iframe"
1590
 
1591
- #: includes/functions-check-now.php:2449 includes/functions.php:2748
1592
- #: includes/preview.php:2322 settings.php:1170 settings.php:2978
1593
  msgid "Preview"
1594
  msgstr "Predogled"
1595
 
1596
- #: includes/functions-check-now.php:2463 includes/functions.php:2762
1597
- #: settings.php:4382
1598
  msgid "Limits"
1599
  msgstr "Omejitve"
1600
 
1601
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1602
- #: includes/functions-check-now.php:4429 includes/functions.php:2767
1603
- #: includes/functions.php:5151 includes/functions.php:5216 settings.php:2399
1604
  msgid "Ad Blocking"
1605
  msgstr "Blokiranje Oglasov"
1606
 
1607
  #. translators: 1, 2 and 3, 4: HTML tags
1608
- #: includes/functions-check-now.php:2477 includes/functions.php:2776
1609
  msgid ""
1610
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1611
  "for tracking!"
@@ -1615,7 +1417,7 @@ msgstr ""
1615
 
1616
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1617
  #. header
1618
- #: includes/functions-check-now.php:2486 includes/functions.php:2785
1619
  msgid ""
1620
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1621
  "enabled and automatic insertion %6$s!"
@@ -1623,23 +1425,23 @@ msgstr ""
1623
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1624
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1625
 
1626
- #: includes/functions-check-now.php:2553 includes/functions.php:2851
1627
  msgid "Click fraud protection is globally disabled"
1628
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1629
 
1630
- #: includes/functions-check-now.php:2557 includes/functions.php:2855
1631
  msgid "Max clicks per time period are not defined"
1632
  msgstr "Največje število klikov na časovno enoto ni definirano"
1633
 
1634
  #. Translators: Max n impressions
1635
- #: includes/functions-check-now.php:2571 includes/functions.php:2869
1636
  msgid "General limits"
1637
  msgstr "Splošne omejitve"
1638
 
1639
  #. Translators: Max n impressions per x days
1640
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1641
- #: includes/functions-check-now.php:2674 includes/functions.php:2875
1642
- #: includes/functions.php:2887 includes/functions.php:2972
1643
  msgid "Current value"
1644
  msgstr "Trenutna vrednost"
1645
 
@@ -1655,14 +1457,14 @@ msgstr "Trenutna vrednost"
1655
  #: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
1656
  #: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
1657
  #: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
1658
- #: includes/functions.php:2894 includes/functions.php:2904
1659
- #: includes/functions.php:2923 includes/functions.php:2933
1660
- #: includes/functions.php:2979 includes/functions.php:2988
1661
- #: includes/functions.php:3006 includes/functions.php:3015 settings.php:2151
1662
  msgid "Max"
1663
  msgstr "Največ"
1664
 
1665
- #: includes/functions-check-now.php:2597 includes/functions.php:2895
1666
  msgid ""
1667
  "Maximum number of impressions for this block. Empty means no general "
1668
  "impression limit."
@@ -1676,8 +1478,8 @@ msgstr ""
1676
  #. Translators: Max n impressions per x days
1677
  #: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
1678
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1679
- #: includes/functions.php:2897 includes/functions.php:2907
1680
- #: includes/functions.php:2982 includes/functions.php:2991
1681
  msgid "impression"
1682
  msgid_plural "impressions"
1683
  msgstr[0] "prikaz"
@@ -1685,7 +1487,7 @@ msgstr[1] "prikaza"
1685
  msgstr[2] "prikazi"
1686
  msgstr[3] "prikazov"
1687
 
1688
- #: includes/functions-check-now.php:2607 includes/functions.php:2905
1689
  msgid ""
1690
  "Maximum number of impressions per time period. Empty means no time limit."
1691
  msgstr ""
@@ -1698,13 +1500,14 @@ msgstr ""
1698
  #. Translators: Max n clicks per x days
1699
  #: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
1700
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1701
- #: includes/functions.php:2911 includes/functions.php:2940
1702
- #: includes/functions.php:2995 includes/functions.php:3022
 
1703
  msgid "per"
1704
  msgstr "na"
1705
 
1706
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1707
- #: includes/functions.php:2912 includes/functions.php:2941
1708
  msgid "Time period in days. Empty means no time limit."
1709
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1710
 
@@ -1716,11 +1519,11 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1716
  #: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
1717
  #: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
1718
  #: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
1719
- #: includes/functions.php:2914 includes/functions.php:2943
1720
- #: includes/functions.php:2998 includes/functions.php:3025
1721
- #: includes/functions.php:3131 includes/functions.php:3499 strings.php:218
1722
- #: strings.php:219 strings.php:220 strings.php:221 strings.php:222
1723
- #: strings.php:223
1724
  msgid "day"
1725
  msgid_plural "days"
1726
  msgstr[0] "dan"
@@ -1728,7 +1531,7 @@ msgstr[1] "dni"
1728
  msgstr[2] "dni"
1729
  msgstr[3] "dni"
1730
 
1731
- #: includes/functions-check-now.php:2626 includes/functions.php:2924
1732
  msgid ""
1733
  "Maximum number of clicks on this block. Empty means no general click limit."
1734
  msgstr ""
@@ -1741,9 +1544,10 @@ msgstr ""
1741
  #. Translators: Max n clicks per x days
1742
  #: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
1743
  #: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
1744
- #: includes/functions-check-now.php:4577 includes/functions.php:2926
1745
- #: includes/functions.php:2936 includes/functions.php:3009
1746
- #: includes/functions.php:3018 includes/functions.php:5502
 
1747
  msgid "click"
1748
  msgid_plural "clicks"
1749
  msgstr[0] "klik"
@@ -1751,18 +1555,18 @@ msgstr[1] "klika"
1751
  msgstr[2] "kliki"
1752
  msgstr[3] "klikov"
1753
 
1754
- #: includes/functions-check-now.php:2636 includes/functions.php:2934
1755
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1756
  msgstr ""
1757
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1758
  "omejitev."
1759
 
1760
- #: includes/functions-check-now.php:2661 includes/functions.php:2959
1761
  msgid "Individual visitor limits"
1762
  msgstr "Omejitve posameznih obiskovalcev"
1763
 
1764
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1765
- #: includes/functions.php:2963 includes/functions.php:2965
1766
  msgid ""
1767
  "When specified number of clicks on this block for a visitor will be reached "
1768
  "in the specified time period, all blocks that have click fraud protection "
@@ -1774,11 +1578,11 @@ msgstr ""
1774
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1775
  "pred goljufijo s kliki."
1776
 
1777
- #: includes/functions-check-now.php:2667 includes/functions.php:2965
1778
  msgid "Trigger click fraud protection"
1779
  msgstr "Sproži zaščito pred goljufijo s kliki"
1780
 
1781
- #: includes/functions-check-now.php:2682 includes/functions.php:2980
1782
  msgid ""
1783
  "Maximum number of impressions of this block for each visitor. Empty means no "
1784
  "impression limit."
@@ -1786,7 +1590,7 @@ msgstr ""
1786
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1787
  "pomeni brez omejitev prikazov."
1788
 
1789
- #: includes/functions-check-now.php:2691 includes/functions.php:2989
1790
  msgid ""
1791
  "Maximum number of impressions per time period for each visitor. Empty means "
1792
  "no impression limit per time period for visitors."
@@ -1795,7 +1599,8 @@ msgstr ""
1795
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1796
 
1797
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1798
- #: includes/functions.php:2996 includes/functions.php:3023
 
1799
  msgid ""
1800
  "Time period in days. Use decimal value (with decimal point) for shorter "
1801
  "periods. Empty means no time limit."
@@ -1803,7 +1608,7 @@ msgstr ""
1803
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1804
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1805
 
1806
- #: includes/functions-check-now.php:2709 includes/functions.php:3007
1807
  msgid ""
1808
  "Maximum number of clicks on this block for each visitor. Empty means no "
1809
  "click limit."
@@ -1811,7 +1616,8 @@ msgstr ""
1811
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1812
  "brez omejitev klikov."
1813
 
1814
- #: includes/functions-check-now.php:2718 includes/functions.php:3016
 
1815
  msgid ""
1816
  "Maximum number of clicks per time period for each visitor. Empty means no "
1817
  "click limit per time period for visitors."
@@ -1819,33 +1625,33 @@ msgstr ""
1819
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1820
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1821
 
1822
- #: includes/functions-check-now.php:2744 includes/functions.php:3042
1823
  msgid "When ad blocking is detected"
1824
  msgstr "Ko je blokiranje oglasov zaznano"
1825
 
1826
- #: includes/functions-check-now.php:2753 includes/functions.php:3051
1827
  msgid "replacement"
1828
  msgstr "nadomestek"
1829
 
1830
- #: includes/functions-check-now.php:2754 includes/functions.php:3052
1831
  msgid "Block to be shown when ad blocking is detected"
1832
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1833
 
1834
- #: includes/functions-check-now.php:2755 includes/functions.php:3053
1835
  msgctxt "replacement"
1836
  msgid "None"
1837
  msgstr "Noben"
1838
 
1839
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1840
- #: includes/functions.php:3070 includes/functions.php:6560
1841
  msgid "Close button"
1842
  msgstr "Gumb Zapri"
1843
 
1844
- #: includes/functions-check-now.php:2824 includes/functions.php:3122
1845
  msgid "Auto close after"
1846
  msgstr "Ssamodejno zapri po"
1847
 
1848
- #: includes/functions-check-now.php:2825 includes/functions.php:3123
1849
  msgid ""
1850
  "Time in seconds in which the ad will automatically close. Leave empty to "
1851
  "disable auto closing."
@@ -1854,11 +1660,11 @@ msgstr ""
1854
  "izključitev samodejnega zapiranja."
1855
 
1856
  #. Translators: Don't show for x days
1857
- #: includes/functions-check-now.php:2830 includes/functions.php:3128
1858
  msgid "Don't show for"
1859
  msgstr "Ne prikaži"
1860
 
1861
- #: includes/functions-check-now.php:2831 includes/functions.php:3129
1862
  msgid ""
1863
  "Time in days in which closed ad will not be shown again. Use decimal value "
1864
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1869,11 +1675,11 @@ msgstr ""
1869
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1870
 
1871
  #. Translators: Delay showing for x pageviews
1872
- #: includes/functions-check-now.php:2851 includes/functions.php:3149
1873
  msgid "Delay showing for"
1874
  msgstr "Zakasni prikaz za"
1875
 
1876
- #: includes/functions-check-now.php:2852 includes/functions.php:3150
1877
  msgid ""
1878
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1879
  "empty to insert the code for the first pageview."
@@ -1884,7 +1690,7 @@ msgstr ""
1884
  #. Translators: Delay showing for x pageviews
1885
  #. Translators: Show every x pageviews
1886
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1887
- #: includes/functions.php:3152 includes/functions.php:3159
1888
  msgid "pageview"
1889
  msgid_plural "pageviews"
1890
  msgstr[0] "ogled strani"
@@ -1893,7 +1699,7 @@ msgstr[2] "oglede strani"
1893
  msgstr[3] "ogledov strani"
1894
 
1895
  #. Translators: Show every x pageviews
1896
- #: includes/functions-check-now.php:2858 includes/functions.php:3156
1897
  msgid "Show every"
1898
  msgid_plural "Show every"
1899
  msgstr[0] "Prikaži vsak"
@@ -1901,7 +1707,7 @@ msgstr[1] "Prikaži vsaka"
1901
  msgstr[2] "Prikaži vsake"
1902
  msgstr[3] "Prikaži vsakih"
1903
 
1904
- #: includes/functions-check-now.php:2859 includes/functions.php:3157
1905
  msgid ""
1906
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1907
  "for every pageview."
@@ -1909,28 +1715,29 @@ msgstr ""
1909
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1910
  "vstavljanje kode pri vsakem ogledu strani."
1911
 
1912
- #: includes/functions-check-now.php:2878 includes/functions.php:3180
 
1913
  msgid "Lazy loading"
1914
  msgstr "Leno nalaganje"
1915
 
1916
  #. Translators: %s MaxMind
1917
- #: includes/functions-check-now.php:2935 includes/functions.php:3258
1918
  msgid "This product includes GeoLite2 data created by %s"
1919
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1920
 
1921
- #: includes/functions-check-now.php:2946 includes/functions.php:3271
1922
  msgid "IP geolocation database"
1923
  msgstr "Podatkovna baza za IP geolokacijo"
1924
 
1925
- #: includes/functions-check-now.php:2949 includes/functions.php:3274
1926
  msgid "Select IP geolocation database."
1927
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1928
 
1929
- #: includes/functions-check-now.php:2960 includes/functions.php:3285
1930
  msgid "Automatic database updates"
1931
  msgstr "Samodejna posodobitev podatkovne baze"
1932
 
1933
- #: includes/functions-check-now.php:2963 includes/functions.php:3288
1934
  msgid ""
1935
  "Automatically download and update free GeoLite2 IP geolocation database by "
1936
  "MaxMind"
@@ -1938,11 +1745,11 @@ msgstr ""
1938
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1939
  "podatkovno bazo MaxMind"
1940
 
1941
- #: includes/functions-check-now.php:2971 includes/functions.php:3305
1942
  msgid "Database"
1943
  msgstr "Podatkovna baza"
1944
 
1945
- #: includes/functions-check-now.php:2974 includes/functions.php:3308
1946
  msgid ""
1947
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1948
  msgstr ""
@@ -1950,15 +1757,15 @@ msgstr ""
1950
  "podatkovne baze"
1951
 
1952
  #. translators: %d: group number
1953
- #: includes/functions-check-now.php:2992 includes/functions.php:3326
1954
  msgid "Group %d"
1955
  msgstr "Skupina %d"
1956
 
1957
- #: includes/functions-check-now.php:2998 includes/functions.php:3332
1958
  msgid "countries"
1959
  msgstr "države"
1960
 
1961
- #: includes/functions-check-now.php:3043 includes/functions.php:3377
1962
  msgid ""
1963
  "Enable impression and click tracking. You also need to enable tracking for "
1964
  "each block you want to track."
@@ -1970,29 +1777,29 @@ msgstr ""
1970
  msgid "Generate report"
1971
  msgstr "Generiraj poročilo"
1972
 
1973
- #: includes/functions-check-now.php:3058 includes/functions.php:3396
1974
  msgid "Impression and Click Tracking"
1975
  msgstr "Sledenje Prikazov in Klikov"
1976
 
1977
- #: includes/functions-check-now.php:3059 includes/functions.php:3397
1978
- #: settings.php:2866
1979
  msgctxt "ad blocking detection"
1980
  msgid "NOT ENABLED"
1981
  msgstr "NI OMOGOČENO"
1982
 
1983
- #: includes/functions-check-now.php:3075 includes/functions.php:3413
1984
  msgid "Internal"
1985
  msgstr "Notranje"
1986
 
1987
- #: includes/functions-check-now.php:3079 includes/functions.php:3417
1988
  msgid "Track impressions and clicks with internal tracking and statistics"
1989
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1990
 
1991
- #: includes/functions-check-now.php:3084 includes/functions.php:3422
1992
  msgid "External"
1993
  msgstr "Zunanje"
1994
 
1995
- #: includes/functions-check-now.php:3088 includes/functions.php:3426
1996
  msgid ""
1997
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1998
  "code installed)"
@@ -2000,27 +1807,27 @@ msgstr ""
2000
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
2001
  "kodo za sledenje)"
2002
 
2003
- #: includes/functions-check-now.php:3093 includes/functions.php:3431
2004
  msgid "Track Pageviews"
2005
  msgstr "Sledi Ogledom Strani"
2006
 
2007
- #: includes/functions-check-now.php:3099 includes/functions.php:3437
2008
  msgid "Track Pageviews by Device (as configured for viewports)"
2009
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
2010
 
2011
- #: includes/functions-check-now.php:3109 includes/functions.php:3447
2012
  msgid "Track for Logged in Users"
2013
  msgstr "Sledi za Prijavljene Upor."
2014
 
2015
- #: includes/functions-check-now.php:3115 includes/functions.php:3453
2016
  msgid "Track impressions and clicks from logged in users"
2017
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
2018
 
2019
- #: includes/functions-check-now.php:3125 includes/functions.php:3463
2020
  msgid "Click Detection"
2021
  msgstr "Zaznavanje klikov"
2022
 
2023
- #: includes/functions-check-now.php:3131 includes/functions.php:3469
2024
  msgid ""
2025
  "Standard method detects clicks only on banners with links, Advanced method "
2026
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -2028,19 +1835,19 @@ msgstr ""
2028
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
2029
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
2030
 
2031
- #: includes/functions-check-now.php:3150 includes/functions.php:3488
2032
  msgid "Click fraud protection"
2033
  msgstr "Zaščita pred goljufijo s kliki"
2034
 
2035
- #: includes/functions-check-now.php:3154 includes/functions.php:3492
2036
  msgid "Globally enable click fraud protection for selected blocks."
2037
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
2038
 
2039
- #: includes/functions-check-now.php:3160 includes/functions.php:3498
2040
  msgid "Protection time"
2041
  msgstr "Čas zaščite"
2042
 
2043
- #: includes/functions-check-now.php:3161 includes/functions.php:3499
2044
  msgid ""
2045
  "Time period in days in which blocks with enabled click fraud protection will "
2046
  "be hidden. Use decimal value (with decimal point) for shorter periods."
@@ -2049,7 +1856,7 @@ msgstr ""
2049
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
2050
  "za krajša obdobja."
2051
 
2052
- #: includes/functions-check-now.php:3180 includes/functions.php:3518
2053
  msgid "Report header image"
2054
  msgstr "Slika v glavi poročila"
2055
 
@@ -2063,16 +1870,16 @@ msgstr ""
2063
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2064
  "ponastavitev na privzeto sliko."
2065
 
2066
- #: includes/functions-check-now.php:3184 includes/functions.php:3522
2067
  #: strings.php:252
2068
  msgid "Select or upload header image"
2069
  msgstr "Izberi ali naloži sliko glave"
2070
 
2071
- #: includes/functions-check-now.php:3189 includes/functions.php:3527
2072
  msgid "Report header title"
2073
  msgstr "Naslov v glavi poročila"
2074
 
2075
- #: includes/functions-check-now.php:3192 includes/functions.php:3530
2076
  msgid ""
2077
  "Title to be displayed in the header of the statistics report. Text or HTML "
2078
  "code, clear to reset to default text."
@@ -2080,11 +1887,11 @@ msgstr ""
2080
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
2081
  "pobrišite za ponastavitev na privzeto besedilo."
2082
 
2083
- #: includes/functions-check-now.php:3197 includes/functions.php:3535
2084
  msgid "Report header description"
2085
  msgstr "Opis v glavi poročila"
2086
 
2087
- #: includes/functions-check-now.php:3200 includes/functions.php:3538
2088
  msgid ""
2089
  "Description to be displayed in the header of the statistics report. Text or "
2090
  "HTML code, clear to reset to default text."
@@ -2092,11 +1899,11 @@ msgstr ""
2092
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
2093
  "pobrišite za ponastavitev na privzeto besedilo."
2094
 
2095
- #: includes/functions-check-now.php:3205 includes/functions.php:3543
2096
  msgid "Report footer"
2097
  msgstr "Noga poročila"
2098
 
2099
- #: includes/functions-check-now.php:3208 includes/functions.php:3546
2100
  msgid ""
2101
  "Text to be displayed in the footer of the statistics report. Clear to reset "
2102
  "to default text."
@@ -2104,117 +1911,117 @@ msgstr ""
2104
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
2105
  "koda, pobrišite za ponastavitev na privzeto besedilo."
2106
 
2107
- #: includes/functions-check-now.php:3213 includes/functions.php:3551
2108
  msgid "Public report key"
2109
  msgstr "Ključ za javno poročilo"
2110
 
2111
- #: includes/functions-check-now.php:3216 includes/functions.php:3554
2112
  msgid "String to generate unique report IDs. Clear to reset to default value."
2113
  msgstr ""
2114
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
2115
  "privzeto vrednost."
2116
 
2117
- #: includes/functions-check-now.php:3248 includes/functions.php:3617
2118
  msgid "Are you sure you want to clear all exceptions for block"
2119
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
2120
 
2121
- #: includes/functions-check-now.php:3249 includes/functions.php:3618
2122
  msgid "Clear all exceptions for block"
2123
  msgstr "Pobriši vse izjeme za blok"
2124
 
2125
- #: includes/functions-check-now.php:3256 includes/functions.php:3625
2126
  msgid "Are you sure you want to clear all exceptions?"
2127
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
2128
 
2129
- #: includes/functions-check-now.php:3256 includes/functions.php:3625
2130
  msgid "Clear all exceptions for all blocks"
2131
  msgstr "Pobriši vse izjeme za vse bloke"
2132
 
2133
- #: includes/functions-check-now.php:3261 includes/functions.php:3630
2134
- #: settings.php:3958 settings.php:4458
2135
  msgid "Type"
2136
  msgstr "Vrsta"
2137
 
2138
- #: includes/functions-check-now.php:3279 includes/functions.php:3648
2139
  msgid "View"
2140
  msgstr "Poglej"
2141
 
2142
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
2143
- #: includes/functions-check-now.php:3291 includes/functions.php:3649
2144
- #: includes/functions.php:3656 includes/functions.php:3660
2145
- #: includes/placeholders.php:351 includes/preview.php:2692 settings.php:1407
2146
- #: settings.php:3715
2147
  msgid "Edit"
2148
  msgstr "Uredi"
2149
 
2150
- #: includes/functions-check-now.php:3310 includes/functions.php:3679
2151
  msgid "Are you sure you want to clear all exceptions for"
2152
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
2153
 
2154
- #: includes/functions-check-now.php:3311 includes/functions.php:3680
2155
  msgid "Clear all exceptions for"
2156
  msgstr "Pobriši vse izjeme za"
2157
 
2158
- #: includes/functions-check-now.php:3324 includes/functions.php:3693
2159
  msgid "No exceptions"
2160
  msgstr "Brez izjem"
2161
 
2162
  #. translators: %s: Ad Inserter Pro
2163
- #: includes/functions-check-now.php:3335 includes/functions.php:3704
2164
  msgid "%s options for network blogs"
2165
  msgstr "%s izbire za omrežne bloge"
2166
 
2167
  #. translators: %s: Ad Inserter Pro
2168
- #: includes/functions-check-now.php:3340 includes/functions.php:3709
2169
  msgid "Enable %s widgets for sub-sites"
2170
  msgstr "Omogoči %s gradnik za pod-spletišča"
2171
 
2172
- #: includes/functions-check-now.php:3340 includes/functions.php:3709
2173
  msgid "Widgets"
2174
  msgstr "Gradniki"
2175
 
2176
- #: includes/functions-check-now.php:3345 includes/functions.php:3714
2177
  msgid "Enable PHP code processing for sub-sites"
2178
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
2179
 
2180
- #: includes/functions-check-now.php:3345 includes/functions.php:3714
2181
  msgid "PHP Processing"
2182
  msgstr "PHP Procesiranje"
2183
 
2184
  #. translators: %s: Ad Inserter Pro
2185
- #: includes/functions-check-now.php:3350 includes/functions.php:3719
2186
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2187
  msgstr ""
2188
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
2189
 
2190
- #: includes/functions-check-now.php:3350 includes/functions.php:3719
2191
  msgid "Post/Page exceptions"
2192
  msgstr "Izjeme prispevkov/strani"
2193
 
2194
  #. translators: %s: Ad Inserter Pro
2195
- #: includes/functions-check-now.php:3355 includes/functions.php:3724
2196
  msgid "Enable %s settings page for sub-sites"
2197
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2198
 
2199
- #: includes/functions-check-now.php:3355 includes/functions.php:3724
2200
  msgid "Settings page"
2201
  msgstr "Stran z nastavitvami"
2202
 
2203
  #. translators: %s: Ad Inserter Pro
2204
- #: includes/functions-check-now.php:3360 includes/functions.php:3729
2205
  msgid "Enable %s settings of main site to be used for all blogs"
2206
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2207
 
2208
- #: includes/functions-check-now.php:3360 includes/functions.php:3729
2209
  msgid "Main site settings used for all blogs"
2210
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2211
 
2212
- #: includes/functions-check-now.php:3371 includes/functions.php:3745
2213
- #: settings.php:2865
2214
  msgid "Ad Blocking Detection"
2215
  msgstr "Zaznavanje Blokiranja Oglasov"
2216
 
2217
- #: includes/functions-check-now.php:3377 includes/functions.php:3751
2218
  msgid ""
2219
  "Standard method is reliable but should be used only if Advanced method does "
2220
  "not work. Advanced method recreates files used for detection with random "
@@ -2227,78 +2034,78 @@ msgstr ""
2227
  "dostopna"
2228
 
2229
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2230
- #: includes/functions-check-now.php:4139 includes/functions.php:4593
2231
- #: includes/functions.php:4711 includes/functions.php:4736
2232
  msgid "AD BLOCKING"
2233
  msgstr "BLOKIRANJE OGLASOV"
2234
 
2235
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
2236
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2237
- #: includes/functions.php:4594 includes/functions.php:4640
2238
- #: includes/functions.php:4705 includes/functions.php:4737
2239
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2240
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2241
 
2242
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2243
- #: includes/functions-check-now.php:4146 includes/functions.php:4597
2244
- #: includes/functions.php:4704 includes/functions.php:4743
2245
  msgid "NO AD BLOCKING"
2246
  msgstr "NI BLOKIRANJA OGLASOV"
2247
 
2248
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2249
- #: includes/functions.php:4639 includes/functions.php:4646
2250
  msgid "AD BLOCKING REPLACEMENT"
2251
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2252
 
2253
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2254
- #: includes/functions.php:5004 includes/functions.php:5215
2255
  msgid "Pageviews"
2256
  msgstr "Ogledi strani"
2257
 
2258
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2259
  msgctxt "Version"
2260
  msgid "Unknown"
2261
  msgstr "Neznana"
2262
 
2263
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2264
  msgctxt "Times"
2265
  msgid "DISPLAYED"
2266
  msgstr "PRIKAZANO"
2267
 
2268
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2269
  msgid "No version"
2270
  msgstr "Brez različice"
2271
 
2272
- #: includes/functions-check-now.php:4366 includes/functions.php:5151
2273
  msgctxt "Times"
2274
  msgid "BLOCKED"
2275
  msgstr "BLOKIRANO"
2276
 
2277
- #: includes/functions-check-now.php:4428 includes/functions.php:5215
2278
  msgid "Impressions"
2279
  msgstr "Prikazi"
2280
 
2281
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2282
- #: includes/functions-check-now.php:4485 includes/functions.php:5216
2283
- #: includes/functions.php:5217 includes/functions.php:5410
2284
  msgid "Clicks"
2285
  msgstr "Kliki"
2286
 
2287
- #: includes/functions-check-now.php:4430 includes/functions.php:5217
2288
  msgid "events"
2289
  msgstr "dogodki"
2290
 
2291
- #: includes/functions-check-now.php:4431 includes/functions.php:5218
2292
  msgid "Ad Blocking Share"
2293
  msgstr "Delež blokiranja oglasov"
2294
 
2295
  #. translators: CTR as Click Through Rate
2296
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2297
- #: includes/functions.php:5218 includes/functions.php:5416
2298
  msgid "CTR"
2299
  msgstr "CTR"
2300
 
2301
- #: includes/functions-check-now.php:4573 includes/functions.php:5498
2302
  msgid "pageviews"
2303
  msgid_plural "pageviews"
2304
  msgstr[0] "ogled strani"
@@ -2306,7 +2113,7 @@ msgstr[1] "ogleda strani"
2306
  msgstr[2] "oglede strani"
2307
  msgstr[3] "ogledov strani"
2308
 
2309
- #: includes/functions-check-now.php:4573 includes/functions.php:5498
2310
  msgid "impressions"
2311
  msgid_plural "impressions"
2312
  msgstr[0] "prikaz"
@@ -2314,7 +2121,7 @@ msgstr[1] "prikaza"
2314
  msgstr[2] "prikazi"
2315
  msgstr[3] "prikazov"
2316
 
2317
- #: includes/functions-check-now.php:4577 includes/functions.php:5502
2318
  msgid "event"
2319
  msgid_plural "events"
2320
  msgstr[0] "dogodek"
@@ -2322,61 +2129,61 @@ msgstr[1] "dogodka"
2322
  msgstr[2] "dogodki"
2323
  msgstr[3] "dogodkov"
2324
 
2325
- #: includes/functions-check-now.php:4672 includes/functions.php:5597
2326
  msgctxt "Pageviews / Impressions"
2327
  msgid "Average"
2328
  msgstr "Povprečni"
2329
 
2330
- #: includes/functions-check-now.php:4693 includes/functions.php:5618
2331
  msgctxt "Ad Blocking / Clicks"
2332
  msgid "Average"
2333
  msgstr "Povprečno"
2334
 
2335
- #: includes/functions-check-now.php:4717 includes/functions.php:5642
2336
  msgctxt "Ad Blocking Share / CTR"
2337
  msgid "Average"
2338
  msgstr "Povprečni"
2339
 
2340
  #. Translators: %s: Ad Inserter Pro
2341
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2342
- #: includes/functions-check-now.php:5334 includes/functions.php:5826
2343
- #: includes/functions.php:5918 includes/functions.php:6261 strings.php:203
2344
  msgid "%s Report"
2345
  msgstr "%s Poročilo"
2346
 
2347
- #: includes/functions-check-now.php:5240 includes/functions.php:6167
2348
  msgid "for last month"
2349
  msgstr "za zadnji mesec"
2350
 
2351
- #: includes/functions-check-now.php:5245 includes/functions.php:6172
2352
  msgid "for this month"
2353
  msgstr "za ta mesec"
2354
 
2355
- #: includes/functions-check-now.php:5250 includes/functions.php:6177
2356
  msgid "for this year"
2357
  msgstr "za to leto"
2358
 
2359
- #: includes/functions-check-now.php:5255 includes/functions.php:6182
2360
  msgid "for the last 15 days"
2361
  msgstr "za zadnjih 15 dni"
2362
 
2363
- #: includes/functions-check-now.php:5260 includes/functions.php:6187
2364
  msgid "for the last 30 days"
2365
  msgstr "za zadnjih 30 dni"
2366
 
2367
- #: includes/functions-check-now.php:5265 includes/functions.php:6192
2368
  msgid "for the last 90 days"
2369
  msgstr "za zadnjih 90 dni"
2370
 
2371
- #: includes/functions-check-now.php:5270 includes/functions.php:6197
2372
  msgid "for the last 180 days"
2373
  msgstr "za zadnjih 180 dni"
2374
 
2375
- #: includes/functions-check-now.php:5275 includes/functions.php:6202
2376
  msgid "for the last 365 days"
2377
  msgstr "za zadnjih 365 dni"
2378
 
2379
- #: includes/functions.php:515 includes/functions.php:3384
2380
  msgid "Generate CSV report"
2381
  msgstr "Generiraj CSV poročilo"
2382
 
@@ -2418,32 +2225,32 @@ msgstr "Ponavljanje"
2418
  msgid "Select image"
2419
  msgstr "Izberi sliko"
2420
 
2421
- #: includes/functions.php:1042 includes/functions.php:1078 settings.php:1794
2422
- #: settings.php:1817 settings.php:1840 settings.php:1863 settings.php:1886
2423
- #: settings.php:1909 settings.php:1931 settings.php:1953
2424
  msgid "Click to select black or white list"
2425
  msgstr "Klikni za za izbor črnega ali belega seznama"
2426
 
2427
  #. translators: %s: Ad Inserter Pro
2428
- #: includes/functions.php:1617
2429
  msgid "Invalid %s version."
2430
  msgstr "Neveljavna izdaja %s."
2431
 
2432
- #: includes/functions.php:1618
2433
  msgid "Check license"
2434
  msgstr "Preverite licenco"
2435
 
2436
- #: includes/functions.php:1630
2437
  msgid "License"
2438
  msgstr "Licenca"
2439
 
2440
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2441
- #: includes/functions.php:1954
2442
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2443
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2444
 
2445
  #. Translators: %s: HTML tags
2446
- #: includes/functions.php:2002
2447
  msgid ""
2448
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2449
  "account %s and create license key."
@@ -2451,60 +2258,92 @@ msgstr ""
2451
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2452
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2453
 
2454
- #: includes/functions.php:2702
2455
  msgid "Start date"
2456
  msgstr "Začetni datum"
2457
 
2458
- #: includes/functions.php:2702
2459
  msgid "Enter date in format yyyy-mm-dd"
2460
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2461
 
2462
- #: includes/functions.php:2703
2463
  msgid "Start time"
2464
  msgstr "Začetni čas"
2465
 
2466
- #: includes/functions.php:2703
2467
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2468
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2469
 
2470
- #: includes/functions.php:2705
2471
  msgid "End date"
2472
  msgstr "Končni datum"
2473
 
2474
- #: includes/functions.php:2706
2475
  msgid "End time"
2476
  msgstr "Končni čas"
2477
 
2478
- #: includes/functions.php:2709
2479
  msgid "Select wanted days in week"
2480
  msgstr "Izberite želene dneve v tednu"
2481
 
2482
- #: includes/functions.php:3041
2483
  msgid "Ad blocking detection is disabled"
2484
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2485
 
2486
- #: includes/functions.php:3185
2487
  msgid "Protected"
2488
  msgstr "Zaščiten"
2489
 
2490
- #: includes/functions.php:3188
2491
  msgid "Manual loading"
2492
  msgstr "Ročno nalaganje"
2493
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2494
  #. Translators: %s HTML tags
2495
- #: includes/functions.php:3260
2496
  msgid "Create and manage %s MaxMind license key %s"
2497
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2498
 
2499
- #: includes/functions.php:3296
2500
  msgid "MaxMind license key"
2501
  msgstr "MaxMind licenčni ključ"
2502
 
2503
- #: includes/functions.php:3299
2504
  msgid "Enter license key obtained from MaxMind"
2505
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2506
 
2507
- #: includes/functions.php:3521
2508
  msgid ""
2509
  "Image or logo to be displayed in the header of the statistics report. "
2510
  "Absolute path starting with '/' or relative path to the image file. Clear to "
@@ -2514,11 +2353,11 @@ msgstr ""
2514
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2515
  "ponastavitev na privzeto sliko."
2516
 
2517
- #: includes/functions.php:3569
2518
  msgid "Event category"
2519
  msgstr "Kategorija dogodka"
2520
 
2521
- #: includes/functions.php:3572
2522
  msgid ""
2523
  "Category name used for external tracking events. You can use tags to get the "
2524
  "event, the number or the name of the block that caused the event."
@@ -2526,11 +2365,11 @@ msgstr ""
2526
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2527
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2528
 
2529
- #: includes/functions.php:3577
2530
  msgid "Event action"
2531
  msgstr "Akcija dogodka"
2532
 
2533
- #: includes/functions.php:3580
2534
  msgid ""
2535
  "Action name used for external tracking events. You can use tags to get the "
2536
  "event, the number or the name of the block that caused the event."
@@ -2538,11 +2377,11 @@ msgstr ""
2538
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2539
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2540
 
2541
- #: includes/functions.php:3585
2542
  msgid "Event label"
2543
  msgstr "Oznaka dogodka"
2544
 
2545
- #: includes/functions.php:3588
2546
  msgid ""
2547
  "Label name used for external tracking events. You can use tags to get the "
2548
  "event, the number or the name of the block that caused the event."
@@ -2550,23 +2389,39 @@ msgstr ""
2550
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2551
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2552
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2553
  #. translators: %s: Ad Inserter Pro
2554
- #: includes/functions.php:3734
2555
  msgid "Show link to %s settings page for each site on the Sites page"
2556
  msgstr ""
2557
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2558
  "Spletišča"
2559
 
2560
  #. translators: %s: Ad Inserter Pro
2561
- #: includes/functions.php:3734
2562
  msgid "Show link to %s on the Sites page"
2563
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2564
 
2565
- #: includes/functions.php:5298
2566
  msgid "Date"
2567
  msgstr "Datum"
2568
 
2569
- #: includes/functions.php:5772
2570
  msgid "File %s missing."
2571
  msgstr "Datoteka %s ni najdena."
2572
 
@@ -2594,7 +2449,7 @@ msgstr "Zapri urejevalnik polnila"
2594
  msgid "Placeholder"
2595
  msgstr "Polnilo"
2596
 
2597
- #: includes/placeholders.php:361 settings.php:983 settings.php:4459
2598
  msgid "Size"
2599
  msgstr "Velikost"
2600
 
@@ -2727,11 +2582,11 @@ msgstr "Prekliči"
2727
  msgid "Ad Blocking Detected Message Preview"
2728
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2729
 
2730
- #: includes/preview-adb.php:345 settings.php:2991
2731
  msgid "Message CSS"
2732
  msgstr "CSS sporočila"
2733
 
2734
- #: includes/preview-adb.php:350 settings.php:2999
2735
  msgid "Overlay CSS"
2736
  msgstr "CSS prevleke"
2737
 
@@ -2767,7 +2622,7 @@ msgstr "div za ovijanje"
2767
  msgid "background"
2768
  msgstr "ozadje"
2769
 
2770
- #: includes/preview.php:2434 includes/preview.php:2647 settings.php:1368
2771
  msgid "Alignment"
2772
  msgstr "Poravnava"
2773
 
@@ -2935,7 +2790,7 @@ msgstr ""
2935
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2936
  "vedno izjeme"
2937
 
2938
- #: settings.php:204 settings.php:1257
2939
  msgid ""
2940
  "Settings for individual exceptions have been updated. Please check all "
2941
  "blocks that have exceptions and and then save settings."
@@ -2947,7 +2802,7 @@ msgstr ""
2947
  msgid "Online documentation"
2948
  msgstr "Spletna Dokumentacija"
2949
 
2950
- #: settings.php:250 settings.php:817 settings.php:2366
2951
  msgid "Show AdSense ad units"
2952
  msgstr "Pokaži oglasne enote AdSense"
2953
 
@@ -2955,7 +2810,7 @@ msgstr "Pokaži oglasne enote AdSense"
2955
  msgid "Edit ads.txt file"
2956
  msgstr "Uredi datoteko ads.txt"
2957
 
2958
- #: settings.php:262 settings.php:1200
2959
  msgid "Check theme for available positions for automatic insertion"
2960
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2961
 
@@ -3103,7 +2958,7 @@ msgstr ""
3103
  msgid "General Settings"
3104
  msgstr "Splošne Nastavitve"
3105
 
3106
- #: settings.php:765 settings.php:2718 settings.php:2785 settings.php:2971
3107
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
3108
  msgstr ""
3109
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
@@ -3136,7 +2991,7 @@ msgstr "Odpri vizualni HTML urejevalnik"
3136
  msgid "Clear block"
3137
  msgstr "Počisti blok"
3138
 
3139
- #: settings.php:831 settings.php:4330
3140
  msgid "Copy block"
3141
  msgstr "Kopiraj blok"
3142
 
@@ -3185,76 +3040,80 @@ msgid "Image"
3185
  msgstr "Slika"
3186
 
3187
  #: settings.php:918
 
 
 
 
3188
  msgid "Link"
3189
  msgstr "Povezava"
3190
 
3191
- #: settings.php:929
3192
  msgid "Open link in a new tab"
3193
  msgstr "Odpri povezavo v novem zavihku"
3194
 
3195
- #: settings.php:930
3196
  msgid "Select Image"
3197
  msgstr "Izberi Sliko"
3198
 
3199
- #: settings.php:931
3200
  msgid "Select Placeholder"
3201
  msgstr "Izberi Polnilo"
3202
 
3203
- #: settings.php:943
3204
  msgid "Comment"
3205
  msgstr "Komentar"
3206
 
3207
- #: settings.php:952
3208
  msgctxt "AdSense"
3209
  msgid "Publisher ID"
3210
  msgstr "ID založnika"
3211
 
3212
- #: settings.php:961
3213
  msgctxt "AdSense"
3214
  msgid "Ad Slot ID"
3215
  msgstr "ID mesta"
3216
 
3217
- #: settings.php:970
3218
  msgid "Ad Type"
3219
  msgstr "Vrsta"
3220
 
3221
- #: settings.php:995 settings.php:1130
3222
  msgid "AMP Ad"
3223
  msgstr "AMP Oglas"
3224
 
3225
- #: settings.php:1013
3226
  msgid "Show ad units from your AdSense account"
3227
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3228
 
3229
- #: settings.php:1013
3230
  msgid "AdSense ad units"
3231
  msgstr "Oglasne enote AdSense"
3232
 
3233
- #: settings.php:1030
3234
  msgctxt "AdSense"
3235
  msgid "Layout"
3236
  msgstr "Postavitev"
3237
 
3238
- #: settings.php:1039
3239
  msgctxt "AdSense"
3240
  msgid "Layout Key"
3241
  msgstr "Ključ postavitve"
3242
 
3243
- #: settings.php:1049
3244
  msgid "Full width"
3245
  msgstr "Celotna širina"
3246
 
3247
- #: settings.php:1051
3248
  msgctxt "Full width"
3249
  msgid "Enabled"
3250
  msgstr "Omogočena"
3251
 
3252
- #: settings.php:1052
3253
  msgctxt "Full width"
3254
  msgid "Disabled"
3255
  msgstr "Onemogočena"
3256
 
3257
- #: settings.php:1166
3258
  msgid ""
3259
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3260
  "Cookie or Referer (domain)"
@@ -3262,28 +3121,28 @@ msgstr ""
3262
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3263
  "parametrov, Piškotkov ali napotiteljev (domen)"
3264
 
3265
- #: settings.php:1166
3266
  msgid "Lists"
3267
  msgstr "Seznami"
3268
 
3269
- #: settings.php:1167
3270
  msgid "Widget, Shortcode and PHP function call"
3271
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3272
 
3273
- #: settings.php:1167
3274
  msgid "Manual"
3275
  msgstr "Ročno"
3276
 
3277
- #: settings.php:1168
3278
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3279
  msgstr ""
3280
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3281
 
3282
- #: settings.php:1168
3283
  msgid "Devices"
3284
  msgstr "Naprave"
3285
 
3286
- #: settings.php:1169
3287
  msgid ""
3288
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3289
  "feeds), Filter, Scheduling, General tag"
@@ -3291,15 +3150,15 @@ msgstr ""
3291
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3292
  "RSS), Filter, Urnik, Splošna oznaka"
3293
 
3294
- #: settings.php:1169
3295
  msgid "Misc"
3296
  msgstr "Razno"
3297
 
3298
- #: settings.php:1170
3299
  msgid "Preview code and alignment"
3300
  msgstr "Predogled kode in poravnave"
3301
 
3302
- #: settings.php:1173 settings.php:2350
3303
  msgid ""
3304
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3305
  "editor is active before saving settings."
@@ -3307,15 +3166,15 @@ msgstr ""
3307
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3308
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3309
 
3310
- #: settings.php:1186 settings.php:1187
3311
  msgid "Enable insertion on posts"
3312
  msgstr "Omogoči vstavljanje na prispevkih"
3313
 
3314
- #: settings.php:1187 settings.php:3527
3315
  msgid "Posts"
3316
  msgstr "Prispevki"
3317
 
3318
- #: settings.php:1191 settings.php:1192
3319
  msgid ""
3320
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3321
  "page or theme homepage (available positions may depend on hooks used by the "
@@ -3325,43 +3184,43 @@ msgstr ""
3325
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3326
  "lahko odvisni od ročic, ki jih tema uporablja)"
3327
 
3328
- #: settings.php:1192 settings.php:3529
3329
  msgid "Homepage"
3330
  msgstr "Domača stran"
3331
 
3332
- #: settings.php:1196 settings.php:1197
3333
  msgid "Enable insertion on category blog pages (including sub-pages)"
3334
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3335
 
3336
- #: settings.php:1197 settings.php:3530
3337
  msgid "Category pages"
3338
  msgstr "Strani kategorij"
3339
 
3340
- #: settings.php:1207 settings.php:1208
3341
  msgid "Enable insertion on static pages"
3342
  msgstr "Omogoči vstavljanje na statičnih straneh"
3343
 
3344
- #: settings.php:1208 settings.php:3528
3345
  msgid "Static pages"
3346
  msgstr "Statične strani"
3347
 
3348
- #: settings.php:1212 settings.php:1213
3349
  msgid "Enable insertion on search blog pages"
3350
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3351
 
3352
- #: settings.php:1213 settings.php:3532
3353
  msgid "Search pages"
3354
  msgstr "Iskalne strani"
3355
 
3356
- #: settings.php:1217 settings.php:1218
3357
  msgid "Enable insertion on tag or archive blog pages"
3358
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3359
 
3360
- #: settings.php:1221
3361
  msgid "Toggle settings for default insertion and list of individual exceptions"
3362
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3363
 
3364
- #: settings.php:1233
3365
  msgid ""
3366
  "Enable individual post/page exceptions for insertion of this block. They can "
3367
  "be configured on the individual post/page editor page (in the settings below "
@@ -3371,7 +3230,7 @@ msgstr ""
3371
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3372
  "nastavitvah pod urejevalnikom)."
3373
 
3374
- #: settings.php:1234
3375
  msgid ""
3376
  "Enable individual post/page exceptions for insertion of this block. When "
3377
  "enabled they can be configured on the individual post/page editor page (in "
@@ -3381,13 +3240,13 @@ msgstr ""
3381
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3382
  "strani (v nastavitvah pod urejevalnikom)."
3383
 
3384
- #: settings.php:1234
3385
  msgid "Use exceptions for individual posts or pages to change insertion"
3386
  msgstr ""
3387
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3388
 
3389
  #. Translators: Enabled means...
3390
- #: settings.php:1242
3391
  msgid ""
3392
  "means the insertion for this block is enabled by default and disabled for "
3393
  "exceptions."
@@ -3396,7 +3255,7 @@ msgstr ""
3396
  "izjeme."
3397
 
3398
  #. Translators: Disabled means...
3399
- #: settings.php:1243
3400
  msgid ""
3401
  "means the insertion for this block is disabled by default and enabled for "
3402
  "exceptions."
@@ -3404,7 +3263,7 @@ msgstr ""
3404
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3405
  "izjeme."
3406
 
3407
- #: settings.php:1244
3408
  msgid ""
3409
  "When individual post/page exceptions are enabled they can be configured on "
3410
  "the individual post/page editor page (in the settings below the editor)."
@@ -3413,31 +3272,31 @@ msgstr ""
3413
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3414
  "urejevalnikom)."
3415
 
3416
- #: settings.php:1252
3417
  msgid ""
3418
  "No exception for post or static page defined. Block will not be inserted."
3419
  msgstr ""
3420
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3421
 
3422
- #: settings.php:1270
3423
  msgctxt "post"
3424
  msgid "Type"
3425
  msgstr "Vrsta"
3426
 
3427
  #. translators: %d: block number
3428
- #: settings.php:1272
3429
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3430
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3431
 
3432
- #: settings.php:1273
3433
  msgid "Clear listed exceptions for block"
3434
  msgstr "Pobriši izpisane izjeme za blok"
3435
 
3436
- #: settings.php:1299 settings.php:1447 settings.php:2105
3437
  msgid "Insertion"
3438
  msgstr "Vstavljanje"
3439
 
3440
- #: settings.php:1337
3441
  msgid ""
3442
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3443
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3453,7 +3312,7 @@ msgstr ""
3453
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3454
  "število pomeni štetje z nasprotne smeri"
3455
 
3456
- #: settings.php:1338
3457
  msgid ""
3458
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3459
  "means every N images, empty means all images, 0 means random image, value "
@@ -3468,7 +3327,7 @@ msgstr ""
3468
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3469
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3470
 
3471
- #: settings.php:1351
3472
  msgid ""
3473
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3474
  "numbers, %N means every N excerpts, empty means all excerpts"
@@ -3477,7 +3336,7 @@ msgstr ""
3477
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3478
  "izvlečki"
3479
 
3480
- #: settings.php:1352
3481
  msgid ""
3482
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3483
  "numbers, %N means every N posts, empty means all posts"
@@ -3486,7 +3345,7 @@ msgstr ""
3486
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3487
  "prispevki"
3488
 
3489
- #: settings.php:1353
3490
  msgid ""
3491
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3492
  "numbers, %N means every N comments, empty means all comments"
@@ -3495,44 +3354,44 @@ msgstr ""
3495
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3496
  "vsi komentarji"
3497
 
3498
- #: settings.php:1360
3499
  msgid "Toggle paragraph counting settings"
3500
  msgstr "Preklopi nastavitve za štetje odstavkov"
3501
 
3502
- #: settings.php:1361
3503
  msgid "Toggle paragraph clearance settings"
3504
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3505
 
3506
- #: settings.php:1364
3507
  msgid "Toggle insertion filter settings"
3508
  msgstr "Preklopi nastavitve filtra vstavljanja"
3509
 
3510
- #: settings.php:1382
3511
  msgid "Toggle insertion and alignment icons"
3512
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3513
 
3514
- #: settings.php:1396
3515
  msgid "Custom CSS code for the wrapping div"
3516
  msgstr "CSS koda po meri za div za ovijanje"
3517
 
3518
- #: settings.php:1399 settings.php:1400 settings.php:1401 settings.php:1402
3519
- #: settings.php:1403 settings.php:1404
3520
  msgid "CSS code for the wrapping div, click to edit"
3521
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3522
 
3523
- #: settings.php:1417
3524
  msgid "HTML element"
3525
  msgstr "HTML element"
3526
 
3527
- #: settings.php:1430
3528
  msgid "HTML element selector or comma separated list of selectors"
3529
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3530
 
3531
- #: settings.php:1436 settings.php:2876
3532
  msgid "Action"
3533
  msgstr "Akcija"
3534
 
3535
- #: settings.php:1448
3536
  msgid ""
3537
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3538
  "Server-side insertion inserts block when the page is generated but needs "
@@ -3542,76 +3401,76 @@ msgstr ""
3542
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3543
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3544
 
3545
- #: settings.php:1458
3546
  msgid "Wait for"
3547
  msgstr "Čakaj na"
3548
 
3549
- #: settings.php:1470
3550
  msgid "Wait for HTML element to be loaded"
3551
  msgstr "Čakaj, da se naloži HTML element"
3552
 
3553
- #: settings.php:1477
3554
  msgid "Time in ms to delay insertion"
3555
  msgstr "Čas v ms za zakasnitev vstavljanja"
3556
 
3557
- #: settings.php:1482
3558
  msgid "Code position"
3559
  msgstr "Položaj kode"
3560
 
3561
- #: settings.php:1483
3562
  msgid ""
3563
  "Page position where the code for client-side insertion will be inserted."
3564
  msgstr ""
3565
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3566
 
3567
- #: settings.php:1501
3568
  msgid "Count"
3569
  msgstr "Štej"
3570
 
3571
- #: settings.php:1507
3572
  msgid "paragraphs with tags"
3573
  msgstr "odstavke z značkami"
3574
 
3575
- #: settings.php:1513
3576
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3577
  msgstr ""
3578
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3579
 
3580
- #: settings.php:1522
3581
  msgid "that have between"
3582
  msgstr "ki imajo med"
3583
 
3584
- #: settings.php:1528
3585
  msgid "Minimum number of paragraph words, leave empty for no limit"
3586
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3587
 
3588
- #: settings.php:1537
3589
  msgid "Maximum number of paragraph words, leave empty for no limit"
3590
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3591
 
3592
- #: settings.php:1540
3593
  msgid "words"
3594
  msgstr "besed"
3595
 
3596
- #: settings.php:1555 settings.php:1602 settings.php:1716 settings.php:1742
3597
  msgid "Comma separated texts"
3598
  msgstr "Z vejico ločena besedila"
3599
 
3600
  #. translators: inside [HTML tags] elements that contain
3601
- #: settings.php:1574
3602
  msgid "inside"
3603
  msgstr "znotraj"
3604
 
3605
- #: settings.php:1580
3606
  msgid "Comma separated HTML tag names of container elements"
3607
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3608
 
3609
  #. translators: inside [HTML tags] elements that contain
3610
- #: settings.php:1589
3611
  msgid "elements that"
3612
  msgstr "elementov, ki"
3613
 
3614
- #: settings.php:1612
3615
  msgid ""
3616
  "Count also paragraphs inside these elements - defined on general plugin "
3617
  "settings page - tab [*] / tab General"
@@ -3619,7 +3478,7 @@ msgstr ""
3619
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3620
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3621
 
3622
- #: settings.php:1619 settings.php:1620
3623
  msgid ""
3624
  "If checked it will search for the text only in tag attributes like [[id]], "
3625
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
@@ -3629,17 +3488,17 @@ msgstr ""
3629
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3630
  "z njeno vsebino."
3631
 
3632
- #: settings.php:1620
3633
  msgid "Check only tag attributes"
3634
  msgstr "Preveri samo atribute značke"
3635
 
3636
  #. Translators: %s: HTML tags
3637
- #: settings.php:1625
3638
  msgid "Count inside %s elements"
3639
  msgstr "Štej znotraj elementov %s"
3640
 
3641
  #. Translators: Do not insert for first X and last Y paragraphs
3642
- #: settings.php:1633
3643
  msgid "Do not insert for first"
3644
  msgid_plural "Do not insert for first"
3645
  msgstr[0] "Ne vstavi za prvi"
@@ -3647,7 +3506,7 @@ msgstr[1] "Ne vstavi za prva"
3647
  msgstr[2] "Ne vstavi za prve"
3648
  msgstr[3] "Ne vstavi za prvih"
3649
 
3650
- #: settings.php:1639
3651
  msgid ""
3652
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3653
  "first paragraphs"
@@ -3656,7 +3515,7 @@ msgstr ""
3656
  "odstavkov"
3657
 
3658
  #. Translators: Do not insert for first X and last Y paragraphs
3659
- #: settings.php:1642
3660
  msgid "and last"
3661
  msgid_plural "and last"
3662
  msgstr[0] "in zadnji"
@@ -3664,7 +3523,7 @@ msgstr[1] "in zadnja"
3664
  msgstr[2] "in zadnje"
3665
  msgstr[3] "in zadnjih"
3666
 
3667
- #: settings.php:1648
3668
  msgid ""
3669
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3670
  "last paragraphs"
@@ -3674,7 +3533,7 @@ msgstr ""
3674
 
3675
  #. Translators: Do not insert for first X and last Y paragraphs
3676
  #. Translators: Post/Static page must have between X and Y paragraphs
3677
- #: settings.php:1651 settings.php:1677
3678
  msgid "paragraph"
3679
  msgid_plural "paragraphs"
3680
  msgstr[0] "odstavek"
@@ -3682,23 +3541,23 @@ msgstr[1] "odstavka"
3682
  msgstr[2] "odstavke"
3683
  msgstr[3] "odstavkov"
3684
 
3685
- #: settings.php:1659 settings.php:2237
3686
  msgid "Post/Static page must have between"
3687
  msgstr "Prispevek/Statična stran mora imeti med"
3688
 
3689
- #: settings.php:1665
3690
  msgid "Minimum number of paragraphs, leave empty for no limit"
3691
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3692
 
3693
- #: settings.php:1674
3694
  msgid "Maximum number of paragraphs, leave empty for no limit"
3695
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3696
 
3697
- #: settings.php:1685
3698
  msgid "Minimum number of words in paragraphs above"
3699
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3700
 
3701
- #: settings.php:1691
3702
  msgid ""
3703
  "Used only with automatic insertion After paragraph and empty paragraph "
3704
  "numbers"
@@ -3706,96 +3565,96 @@ msgstr ""
3706
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3707
  "številkami odstavkov"
3708
 
3709
- #: settings.php:1701 settings.php:1727
3710
  msgid "In"
3711
  msgstr "V"
3712
 
3713
- #: settings.php:1707
3714
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3715
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3716
 
3717
- #: settings.php:1710
3718
  msgid "paragraphs above avoid"
3719
  msgstr "odstavkih zgoraj se izogni"
3720
 
3721
- #: settings.php:1733
3722
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3723
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3724
 
3725
- #: settings.php:1736
3726
  msgid "paragraphs below avoid"
3727
  msgstr "odstavkih spodaj se izogni"
3728
 
3729
- #: settings.php:1752
3730
  msgid "If text is found"
3731
  msgstr "Če je besedilo najdeno"
3732
 
3733
- #: settings.php:1759
3734
  msgid "check up to"
3735
  msgstr "preveri do"
3736
 
3737
- #: settings.php:1767
3738
  msgctxt "check up to"
3739
  msgid "paragraphs"
3740
  msgstr "odstavkov"
3741
 
3742
- #: settings.php:1783
3743
  msgid "Categories"
3744
  msgstr "Kategorije"
3745
 
3746
- #: settings.php:1786
3747
  msgid "Toggle category editor"
3748
  msgstr "Preklopi urejevalnik kategorij"
3749
 
3750
- #: settings.php:1789
3751
  msgid "Comma separated category slugs"
3752
  msgstr "Z vejico ločeni ključi kategorij"
3753
 
3754
- #: settings.php:1806
3755
  msgid "Tags"
3756
  msgstr "Oznake"
3757
 
3758
- #: settings.php:1809
3759
  msgid "Toggle tag editor"
3760
  msgstr "Preklopi urejevalnik oznak"
3761
 
3762
- #: settings.php:1812
3763
  msgid "Comma separated tag slugs"
3764
  msgstr "Z vejico ločeni ključi oznak"
3765
 
3766
- #: settings.php:1829
3767
  msgid "Taxonomies"
3768
  msgstr "Taksonomije"
3769
 
3770
- #: settings.php:1832
3771
  msgid "Toggle taxonomy editor"
3772
  msgstr "Preklopi urejevalnik taksonomij"
3773
 
3774
- #: settings.php:1835
3775
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3776
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3777
 
3778
- #: settings.php:1852
3779
  msgid "Post IDs"
3780
  msgstr "ID-ji prispevkov"
3781
 
3782
- #: settings.php:1855
3783
  msgid "Toggle post/page ID editor"
3784
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3785
 
3786
- #: settings.php:1858
3787
  msgid "Comma separated post/page IDs"
3788
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3789
 
3790
- #: settings.php:1875
3791
  msgid "Urls"
3792
  msgstr "Url-ji"
3793
 
3794
- #: settings.php:1878
3795
  msgid "Toggle url editor"
3796
  msgstr "Preklopi urejevalnik url-jev"
3797
 
3798
- #: settings.php:1881
3799
  msgid ""
3800
  "Comma separated urls (page addresses) starting with / after domain name (e."
3801
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3807,15 +3666,15 @@ msgstr ""
3807
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3808
  "začetek*. *url-vzorec*, *url-konec)"
3809
 
3810
- #: settings.php:1897
3811
  msgid "Url parameters"
3812
  msgstr "Url parametri"
3813
 
3814
- #: settings.php:1901
3815
  msgid "Toggle url parameter and cookie editor"
3816
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3817
 
3818
- #: settings.php:1904
3819
  msgid ""
3820
  "Comma separated url query parameters or cookies with optional values (use "
3821
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
@@ -3824,15 +3683,15 @@ msgstr ""
3824
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3825
  "'piškotek=vrednost')"
3826
 
3827
- #: settings.php:1920
3828
  msgid "Referrers"
3829
  msgstr "Napotitelji"
3830
 
3831
- #: settings.php:1923
3832
  msgid "Toggle referer editor"
3833
  msgstr "Preklopi urejevalnik napotiteljev"
3834
 
3835
- #: settings.php:1926
3836
  msgid ""
3837
  "Comma separated domains, use # for no referrer, you can also use partial "
3838
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
@@ -3840,15 +3699,15 @@ msgstr ""
3840
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3841
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3842
 
3843
- #: settings.php:1942
3844
  msgid "Clients"
3845
  msgstr "Odjemalci"
3846
 
3847
- #: settings.php:1945
3848
  msgid "Toggle client editor"
3849
  msgstr "Preklopi urejevalnik odjemalcev"
3850
 
3851
- #: settings.php:1948
3852
  msgid ""
3853
  "Comma separated names (operating systems, browsers, devices). You can also "
3854
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
@@ -3858,25 +3717,25 @@ msgstr ""
3858
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3859
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3860
 
3861
- #: settings.php:1974
3862
  msgid "Enable widget for this block"
3863
  msgstr "Omogočite gradnik za ta blok"
3864
 
3865
- #: settings.php:1979
3866
  msgid "Sidebars (or widget positions) where this widget is used"
3867
  msgstr ""
3868
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3869
 
3870
- #: settings.php:1986
3871
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3872
  msgstr ""
3873
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3874
 
3875
- #: settings.php:1987 settings.php:4387
3876
  msgid "Shortcode"
3877
  msgstr "Kratka koda"
3878
 
3879
- #: settings.php:2002
3880
  msgid ""
3881
  "Enable PHP function call to insert this block at any position in theme file. "
3882
  "If function is disabled for block it will return empty string."
@@ -3885,66 +3744,66 @@ msgstr ""
3885
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3886
  "prazen niz."
3887
 
3888
- #: settings.php:2003
3889
  msgid "PHP function"
3890
  msgstr "PHP funkcija"
3891
 
3892
- #: settings.php:2018
3893
  msgid "Client-side device detection"
3894
  msgstr "Zaznavanje naprave na strani odjemalca"
3895
 
3896
- #: settings.php:2019
3897
  msgid "Server-side device detection"
3898
  msgstr "Zaznavanje naprave na strani strežnika"
3899
 
3900
- #: settings.php:2026
3901
  msgid "Use client-side detection to"
3902
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3903
 
3904
- #: settings.php:2028
3905
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3906
  msgstr ""
3907
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3908
 
3909
  #. Translators: only on (the following devices): viewport names (devices)
3910
  #. listed
3911
- #: settings.php:2033
3912
  msgid "only on"
3913
  msgstr "samo na"
3914
 
3915
- #: settings.php:2061
3916
  msgid "Device min width %s px"
3917
  msgstr "Najmanjša širina naprave %s px"
3918
 
3919
- #: settings.php:2087
3920
  msgid "Use server-side detection to insert block only for"
3921
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3922
 
3923
- #: settings.php:2106
3924
  msgid "Filter"
3925
  msgstr "Filter"
3926
 
3927
- #: settings.php:2107
3928
  msgid "Word Count"
3929
  msgstr "Število Besed"
3930
 
3931
- #: settings.php:2108 settings.php:4377
3932
  msgid "Scheduling"
3933
  msgstr "Urnik"
3934
 
3935
- #: settings.php:2109
3936
  msgid "Display"
3937
  msgstr "Prikaz"
3938
 
3939
- #: settings.php:2111 settings.php:2392
3940
  msgid "General"
3941
  msgstr "Splošno"
3942
 
3943
- #: settings.php:2123
3944
  msgid "Old settings for AMP pages detected"
3945
  msgstr "Zaznane stare nastavitve za AMP strani"
3946
 
3947
- #: settings.php:2123
3948
  msgid ""
3949
  "To insert different codes on normal and AMP pages separate them with "
3950
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
@@ -3955,44 +3814,44 @@ msgstr ""
3955
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3956
  "separatorja)."
3957
 
3958
- #: settings.php:2123
3959
  msgid "AMP pages"
3960
  msgstr "AMP strani"
3961
 
3962
- #: settings.php:2128
3963
  msgid "Enable insertion for Ajax requests"
3964
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3965
 
3966
- #: settings.php:2128
3967
  msgid "Ajax requests"
3968
  msgstr "Ajax zahteve"
3969
 
3970
- #: settings.php:2133
3971
  msgid "Enable insertion in RSS feeds"
3972
  msgstr "Omogoči vstavljanje v RSS virih"
3973
 
3974
- #: settings.php:2133
3975
  msgid "RSS Feed"
3976
  msgstr "RSS Vir"
3977
 
3978
- #: settings.php:2138
3979
  msgid "Enable insertion on page for Error 404: Page not found"
3980
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3981
 
3982
- #: settings.php:2138
3983
  msgid "Error 404 page"
3984
  msgstr "Stran napake 404"
3985
 
3986
- #: settings.php:2150
3987
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3988
  msgstr ""
3989
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3990
 
3991
- #: settings.php:2151
3992
  msgid "insertions"
3993
  msgstr "vstavljanj"
3994
 
3995
- #: settings.php:2153
3996
  msgid ""
3997
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3998
  "General)"
@@ -4000,15 +3859,15 @@ msgstr ""
4000
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
4001
  "zavihek Splošno)"
4002
 
4003
- #: settings.php:2156 settings.php:2580
4004
  msgid "Max blocks per page"
4005
  msgstr "Največ blokov na stran"
4006
 
4007
- #: settings.php:2168
4008
  msgid "Insert for"
4009
  msgstr "Vstavi za"
4010
 
4011
- #: settings.php:2176
4012
  msgid ""
4013
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
4014
  "is currently active). Might speed up insertion on content pages when "
@@ -4018,11 +3877,11 @@ msgstr ""
4018
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
4019
  "filter [[the_content]] večkrat klican."
4020
 
4021
- #: settings.php:2180
4022
  msgid "Insert only in the loop"
4023
  msgstr "Vstavi samo v zanki"
4024
 
4025
- #: settings.php:2183
4026
  msgid ""
4027
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
4028
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -4033,26 +3892,26 @@ msgstr ""
4033
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
4034
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
4035
 
4036
- #: settings.php:2187
4037
  msgid "Embed JS code"
4038
  msgstr "Vgnezdi JS kodo"
4039
 
4040
- #: settings.php:2190
4041
  msgid ""
4042
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
4043
  msgstr ""
4044
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
4045
  "Rocket"
4046
 
4047
- #: settings.php:2194
4048
  msgid "Disable caching"
4049
  msgstr "Onemogoči predpomnjenje"
4050
 
4051
- #: settings.php:2206
4052
  msgid "Filter insertions"
4053
  msgstr "Filtriraj vstavljanja"
4054
 
4055
- #: settings.php:2209
4056
  msgid ""
4057
  "Filter multiple insertions by specifying wanted insertions for this block - "
4058
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -4064,44 +3923,44 @@ msgstr ""
4064
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
4065
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
4066
 
4067
- #: settings.php:2212
4068
  msgid "using"
4069
  msgstr "z uporabo"
4070
 
4071
- #: settings.php:2231
4072
  msgid "Checked means specified calls are unwanted"
4073
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
4074
 
4075
- #: settings.php:2231
4076
  msgid "Invert filter"
4077
  msgstr "Obrni filter"
4078
 
4079
- #: settings.php:2238
4080
  msgid "Minimum number of post/static page words, leave empty for no limit"
4081
  msgstr ""
4082
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4083
  "omejitev"
4084
 
4085
- #: settings.php:2240
4086
  msgid "Maximum number of post/static page words, leave empty for no limit"
4087
  msgstr ""
4088
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
4089
  "omejitev"
4090
 
4091
- #: settings.php:2253
4092
  msgid "for"
4093
  msgstr "za"
4094
 
4095
- #: settings.php:2253
4096
  msgid "days after publishing"
4097
  msgstr "dni po objavi"
4098
 
4099
- #: settings.php:2255
4100
  msgid "Not available"
4101
  msgstr "Ni na razpolago"
4102
 
4103
  #. Translators: do not translate [[width]] - it is a CSS property
4104
- #: settings.php:2267
4105
  msgid ""
4106
  "Block width: empty means width not defined, number means width in pixels, "
4107
  "any other value means CSS [[width]] property"
@@ -4110,7 +3969,7 @@ msgstr ""
4110
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
4111
 
4112
  #. Translators: do not translate [[height]] - it is a CSS property
4113
- #: settings.php:2271
4114
  msgid ""
4115
  "Block height: empty means height not defined, number means height in pixels, "
4116
  "any other value means CSS [[height]] property"
@@ -4118,20 +3977,20 @@ msgstr ""
4118
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
4119
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
4120
 
4121
- #: settings.php:2277 settings.php:2572
4122
  msgid "Ad label"
4123
  msgstr "Oznaka oglasa"
4124
 
4125
- #: settings.php:2298
4126
  msgid "General tag"
4127
  msgstr "Splošna oznaka"
4128
 
4129
- #: settings.php:2302
4130
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
4131
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
4132
 
4133
  #. translators: %s: HTML tags
4134
- #: settings.php:2311
4135
  msgid ""
4136
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
4137
  "client-side device detection!"
@@ -4140,7 +3999,7 @@ msgstr ""
4140
  "potrebna za zaznavanje naprave na strani odjemalca!"
4141
 
4142
  #. translators: %s: HTML tags for text and link
4143
- #: settings.php:2325
4144
  msgid ""
4145
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4146
  "side %s insertion. Use %s Server-side %s insertion."
@@ -4149,90 +4008,90 @@ msgstr ""
4149
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4150
  "strežnika%s."
4151
 
4152
- #: settings.php:2341
4153
  msgid "Settings"
4154
  msgstr "Nastavitve"
4155
 
4156
- #: settings.php:2344
4157
  msgid "Settings timestamp"
4158
  msgstr "Časovni žig nastavitev"
4159
 
4160
- #: settings.php:2357
4161
  msgid "Are you sure you want to reset all settings?"
4162
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4163
 
4164
- #: settings.php:2357
4165
  msgid "Reset All Settings"
4166
  msgstr "Ponastavi Vse Nastavitve"
4167
 
4168
- #: settings.php:2393
4169
  msgid "Viewports"
4170
  msgstr "Pogledi"
4171
 
4172
- #: settings.php:2394
4173
  msgid "Hooks"
4174
  msgstr "Ročice"
4175
 
4176
- #: settings.php:2395
4177
  msgid "Header"
4178
  msgstr "Glava"
4179
 
4180
- #: settings.php:2396 strings.php:30
4181
  msgid "Footer"
4182
  msgstr "Noga"
4183
 
4184
- #: settings.php:2401
4185
  msgid "Debugging"
4186
  msgstr "Razhroščevanje"
4187
 
4188
- #: settings.php:2411
4189
  msgid "Plugin priority"
4190
  msgstr "Prednost vtičnika"
4191
 
4192
- #: settings.php:2419
4193
  msgid "Output buffering"
4194
  msgstr "Predpomnjenje izhoda"
4195
 
4196
- #: settings.php:2422
4197
  msgid "Needed for position Above header but may not work with all themes"
4198
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4199
 
4200
- #: settings.php:2430
4201
  msgid "Syntax highlighting theme"
4202
  msgstr "Tema za poudarjanje sintakse"
4203
 
4204
- #: settings.php:2437
4205
  msgctxt "no syntax highlighting themes"
4206
  msgid "None"
4207
  msgstr "Brez"
4208
 
4209
- #: settings.php:2438
4210
  msgid "No Syntax Highlighting"
4211
  msgstr "Brez Poudarjanja Sintakse"
4212
 
4213
- #: settings.php:2440
4214
  msgctxt "syntax highlighting themes"
4215
  msgid "Light"
4216
  msgstr "Svetle"
4217
 
4218
- #: settings.php:2455
4219
  msgctxt "syntax highlighting themes"
4220
  msgid "Dark"
4221
  msgstr "Temne"
4222
 
4223
- #: settings.php:2481
4224
  msgid "Tab setup delay"
4225
  msgstr "Zakasnitev nastavitev zavihka"
4226
 
4227
- #: settings.php:2489
4228
  msgid "Min. user role for ind. exceptions editing"
4229
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4230
 
4231
- #: settings.php:2499
4232
  msgid "Disable caching for logged in administrators"
4233
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4234
 
4235
- #: settings.php:2502
4236
  msgid ""
4237
  "Enabled means that logged in administrators will see non-cached (live) pages "
4238
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -4240,11 +4099,11 @@ msgstr ""
4240
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4241
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4242
 
4243
- #: settings.php:2510
4244
  msgid "Wait for jQuery"
4245
  msgstr "Čakaj na jQuery"
4246
 
4247
- #: settings.php:2513
4248
  msgid ""
4249
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4250
  "it will run the scripts that may need it"
@@ -4252,11 +4111,11 @@ msgstr ""
4252
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4253
  "bo pognal svoje skripte, ki jo potrebujejo"
4254
 
4255
- #: settings.php:2521
4256
  msgid "Sticky widget mode"
4257
  msgstr "Način za lepljive gradnike"
4258
 
4259
- #: settings.php:2524
4260
  msgid ""
4261
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4262
  "mode works with most themes but may reload ads on page load."
@@ -4265,19 +4124,19 @@ msgstr ""
4265
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4266
  "nalaganju strani."
4267
 
4268
- #: settings.php:2532
4269
  msgid "Sticky widget top margin"
4270
  msgstr "Zgornji rob za lepljiv gradnik"
4271
 
4272
- #: settings.php:2540
4273
  msgid "Dynamic blocks"
4274
  msgstr "Dinamični bloki"
4275
 
4276
- #: settings.php:2553
4277
  msgid "Functions for paragraph counting"
4278
  msgstr "Funkcije za štetje odstavkov"
4279
 
4280
- #: settings.php:2556
4281
  msgid ""
4282
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4283
  "functions if paragraphs are not counted properly on non-english pages."
@@ -4286,15 +4145,15 @@ msgstr ""
4286
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4287
  "šteti."
4288
 
4289
- #: settings.php:2564
4290
  msgid "No paragraph counting inside"
4291
  msgstr "Ni štetja odstavkov znotraj"
4292
 
4293
- #: settings.php:2575
4294
  msgid "Label text or HTML code"
4295
  msgstr "Besedilo oznake ali HTML koda"
4296
 
4297
- #: settings.php:2583
4298
  msgid ""
4299
  "Maximum number of inserted blocks per page. You need to enable Max page "
4300
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -4303,12 +4162,12 @@ msgstr ""
4303
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4304
  "omejitev."
4305
 
4306
- #: settings.php:2597
4307
  msgid "Plugin usage tracking"
4308
  msgstr "Sledenje uporabe vtičnika"
4309
 
4310
  #. translators: %s: Ad Inserter
4311
- #: settings.php:2600
4312
  msgid ""
4313
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4314
  "Only information regarding the WordPress environment and %s usage is "
@@ -4318,125 +4177,125 @@ msgstr ""
4318
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4319
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4320
 
4321
- #: settings.php:2618
4322
  msgid "CSS class name for the wrapping div"
4323
  msgstr "Ime CSS razreda za div za ovijanje"
4324
 
4325
- #: settings.php:2618
4326
  msgid "Block class name"
4327
  msgstr "Ime razreda za blok"
4328
 
4329
- #: settings.php:2624
4330
  msgid "Include block number class"
4331
  msgstr "Vključi razred številke bloka"
4332
 
4333
- #: settings.php:2624
4334
  msgid "Block number class"
4335
  msgstr "Razred številke bloka"
4336
 
4337
- #: settings.php:2629
4338
  msgid "Include block name class"
4339
  msgstr "Vključi razred imena bloka"
4340
 
4341
- #: settings.php:2629
4342
  msgid "Block name class"
4343
  msgstr "Razred imena bloka"
4344
 
4345
- #: settings.php:2634
4346
  msgid ""
4347
  "Instead of alignment classes generate inline alignment styles for blocks"
4348
  msgstr ""
4349
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4350
 
4351
- #: settings.php:2634
4352
  msgid "Inline styles"
4353
  msgstr "Medvrstični slogi"
4354
 
4355
- #: settings.php:2640
4356
  msgid "Preview of the block wrapping code"
4357
  msgstr "Predogled kode za ovijanje blokov"
4358
 
4359
- #: settings.php:2641
4360
  msgid "Wrapping div"
4361
  msgstr "div za ovijanje"
4362
 
4363
- #: settings.php:2642 settings.php:3086
4364
  msgid "BLOCK CODE"
4365
  msgstr "KODA BLOKA"
4366
 
4367
- #: settings.php:2650
4368
  msgid "Viewport Settings used for client-side device detection"
4369
  msgstr ""
4370
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4371
 
4372
  #. Translators: %d: viewport number
4373
- #: settings.php:2658
4374
  msgid "Viewport %d name"
4375
  msgstr "Ime pogleda %d"
4376
 
4377
- #: settings.php:2661
4378
  msgid "min width"
4379
  msgstr "najmanjša širina"
4380
 
4381
- #: settings.php:2672
4382
  msgid "Custom Hooks"
4383
  msgstr "Ročice Po Meri"
4384
 
4385
- #: settings.php:2684 settings.php:2687
4386
  msgid "Enable hook"
4387
  msgstr "Omogoči ročico"
4388
 
4389
  #. translators: %d: hook number
4390
- #: settings.php:2687
4391
  msgid "Hook %d name"
4392
  msgstr "Ime ročice %d"
4393
 
4394
- #: settings.php:2690
4395
  msgid "Hook name for automatic insertion selection"
4396
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4397
 
4398
- #: settings.php:2693
4399
  msgid "action"
4400
  msgstr "akcija"
4401
 
4402
- #: settings.php:2696
4403
  msgid "Action name as used in the do_action () function"
4404
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4405
 
4406
- #: settings.php:2699
4407
  msgid "priority"
4408
  msgstr "prednost"
4409
 
4410
- #: settings.php:2702
4411
  msgid "Priority for the hook (default is 10)"
4412
  msgstr "Prednost za ročico (privzeta je 10)"
4413
 
4414
- #: settings.php:2723
4415
  msgid "Enable insertion of this code into HTML page header"
4416
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4417
 
4418
- #: settings.php:2727 settings.php:2794 settings.php:2976
4419
  msgid "Process PHP code"
4420
  msgstr "Procesiraj PHP kodo"
4421
 
4422
- #: settings.php:2731
4423
  msgid "HTML Page Header Code"
4424
  msgstr "Koda v Glavi HTML Strani"
4425
 
4426
- #: settings.php:2739
4427
  msgid "Code in the %s section of the HTML page"
4428
  msgstr "Koda v %s delu HTML strani"
4429
 
4430
- #: settings.php:2740
4431
  msgctxt "code in the header"
4432
  msgid "NOT ENABLED"
4433
  msgstr "NI OMOGOČENA"
4434
 
4435
- #: settings.php:2757 settings.php:2825
4436
  msgid "Use server-side detection to insert code only for"
4437
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4438
 
4439
- #: settings.php:2772
4440
  msgid ""
4441
  "Enable insertion of this code into HTML page header on page for Error 404: "
4442
  "Page not found"
@@ -4444,29 +4303,29 @@ msgstr ""
4444
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4445
  "obstaja"
4446
 
4447
- #: settings.php:2772 settings.php:2840
4448
  msgid "Insert on Error 404 page"
4449
  msgstr "Vstavi na strani Napake 404"
4450
 
4451
- #: settings.php:2790
4452
  msgid "Enable insertion of this code into HTML page footer"
4453
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4454
 
4455
- #: settings.php:2798
4456
  msgid "HTML Page Footer Code"
4457
  msgstr "Koda v Nogi HTML Strani"
4458
 
4459
  #. translators: %s: HTML tags
4460
- #: settings.php:2806
4461
  msgid "Code before the %s tag of the HTML page"
4462
  msgstr "Koda pred %s značko HTML strani"
4463
 
4464
- #: settings.php:2807
4465
  msgctxt "code in the footer"
4466
  msgid "NOT ENABLED"
4467
  msgstr "NI OMOGOČENA"
4468
 
4469
- #: settings.php:2840
4470
  msgid ""
4471
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4472
  "Page not found"
@@ -4474,32 +4333,32 @@ msgstr ""
4474
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4475
  "Stran ne obstaja"
4476
 
4477
- #: settings.php:2856
4478
  msgid "Code for ad blocking detection inserted. Click for details."
4479
  msgstr ""
4480
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4481
 
4482
- #: settings.php:2861
4483
  msgid "Enable detection of ad blocking"
4484
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4485
 
4486
- #: settings.php:2879
4487
  msgid "Global action when ad blocking is detected"
4488
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4489
 
4490
- #: settings.php:2885
4491
  msgid "No action for"
4492
  msgstr "Ni akcije za"
4493
 
4494
- #: settings.php:2886
4495
  msgid "Exceptions for global action when ad blocking is detected."
4496
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4497
 
4498
- #: settings.php:2896
4499
  msgid "Delay Action"
4500
  msgstr "Zakasni Akcijo"
4501
 
4502
- #: settings.php:2899
4503
  msgid ""
4504
  "Number of page views to delay action when ad blocking is detected. Leave "
4505
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -4508,16 +4367,16 @@ msgstr ""
4508
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4509
  "strani). Nastavi piškotek."
4510
 
4511
- #: settings.php:2899
4512
  msgctxt "Delay Action for x "
4513
  msgid "page views"
4514
  msgstr "ogledov strani"
4515
 
4516
- #: settings.php:2904
4517
  msgid "No Action Period"
4518
  msgstr "Obdobje Brez Akcije"
4519
 
4520
- #: settings.php:2907
4521
  msgid ""
4522
  "Number of days to supress action when ad blocking is detected. Leave empty "
4523
  "for no no-action period (action fires always after defined page view delay). "
@@ -4527,16 +4386,16 @@ msgstr ""
4527
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4528
  "strani). Nastavi piškotek."
4529
 
4530
- #: settings.php:2907
4531
  msgctxt "no action period"
4532
  msgid "days"
4533
  msgstr "dni"
4534
 
4535
- #: settings.php:2912
4536
  msgid "Custom Selectors"
4537
  msgstr "Selektorji Po Meri"
4538
 
4539
- #: settings.php:2915
4540
  msgid ""
4541
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4542
  "blocking detection. Invisible element or element with zero height means ad "
@@ -4546,15 +4405,15 @@ msgstr ""
4546
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4547
  "pomeni prisotnost blokiranja oglasov."
4548
 
4549
- #: settings.php:2927
4550
  msgid "Redirection Page"
4551
  msgstr "Stran za Preusmeritev"
4552
 
4553
- #: settings.php:2939
4554
  msgid "Custom Url"
4555
  msgstr "Url Po Meri"
4556
 
4557
- #: settings.php:2944
4558
  msgid ""
4559
  "Static page for redirection when ad blocking is detected. For other pages "
4560
  "select Custom url and set it below."
@@ -4562,35 +4421,35 @@ msgstr ""
4562
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4563
  "strani izberite Url Po Meri in ga nastavite spodaj."
4564
 
4565
- #: settings.php:2953
4566
  msgid "Custom Redirection Url"
4567
  msgstr "Url za Preusmeritev Po Meri"
4568
 
4569
- #: settings.php:2965
4570
  msgid "Message HTML code"
4571
  msgstr "HTML koda sporočila"
4572
 
4573
- #: settings.php:2978
4574
  msgid "Preview message when ad blocking is detected"
4575
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4576
 
4577
- #: settings.php:3007
4578
  msgid "Prevent visitors from closing the warning message"
4579
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4580
 
4581
- #: settings.php:3007
4582
  msgid "Undismissible Message"
4583
  msgstr "Neodstranljivo Sporočilo"
4584
 
4585
- #: settings.php:3013
4586
  msgid "Not undismissible for"
4587
  msgstr "Ni neodstranljivo za"
4588
 
4589
- #: settings.php:3014
4590
  msgid "Users which can close the warning message."
4591
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4592
 
4593
- #: settings.php:3028
4594
  msgid ""
4595
  "Force showing admin toolbar for administrators when viewing site. Enable "
4596
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -4599,94 +4458,94 @@ msgstr ""
4599
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4600
  "skrbnike."
4601
 
4602
- #: settings.php:3036
4603
  msgid "Disable header code (Header tab)"
4604
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4605
 
4606
- #: settings.php:3040
4607
  msgid "Disable footer code (Footer tab)"
4608
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4609
 
4610
  #. translators: %s: Ad Inserter
4611
- #: settings.php:3044
4612
  msgid "Disable %s JavaScript code"
4613
  msgstr "Onemogoči %s JavaScript kodo"
4614
 
4615
  #. translators: %s: Ad Inserter
4616
- #: settings.php:3048
4617
  msgid "Disable %s CSS code"
4618
  msgstr "Onemogoči %s CSS kodo"
4619
 
4620
  #. translators: %s: Ad Inserter
4621
- #: settings.php:3052
4622
  msgid "Disable %s HTML code"
4623
  msgstr "Onemogoči %s HTML kodo"
4624
 
4625
- #: settings.php:3056
4626
  msgid ""
4627
  "Disable PHP code processing (in all blocks including header and footer code)"
4628
  msgstr ""
4629
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4630
 
4631
- #: settings.php:3060
4632
  msgid "Disable insertion of all blocks"
4633
  msgstr "Onemogoči vstavljanje vseh blokov"
4634
 
4635
- #: settings.php:3064
4636
  msgid "Disable insertions"
4637
  msgstr "Onemogoči vstavljanja"
4638
 
4639
  #. translators: %s: Ad Inserter
4640
- #: settings.php:3076
4641
  msgid "%s CSS CODE"
4642
  msgstr "%s CSS KODA"
4643
 
4644
- #: settings.php:3079
4645
  msgid "HEADER CODE"
4646
  msgstr "KODA GLAVE"
4647
 
4648
  #. translators: %s: PHP tags
4649
- #: settings.php:3085
4650
  msgid "BLOCK PHP CODE"
4651
  msgstr "PHP KODA BLOKA"
4652
 
4653
  #. translators: %s: Ad Inserter
4654
- #: settings.php:3090
4655
  msgid "%s HTML CODE"
4656
  msgstr "%s HTML KODA"
4657
 
4658
  #. translators: %s: Ad Inserter
4659
- #: settings.php:3092
4660
  msgid "%s JS CODE"
4661
  msgstr "%s JS KODA"
4662
 
4663
- #: settings.php:3095
4664
  msgid "FOOTER CODE"
4665
  msgstr "KODA NOGE"
4666
 
4667
- #: settings.php:3104
4668
  msgid "Force showing admin toolbar when viewing site"
4669
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4670
 
4671
- #: settings.php:3111
4672
  msgid "Enable debugging functions in admin toolbar"
4673
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4674
 
4675
- #: settings.php:3113
4676
  msgid "Debugging functions in admin toolbar"
4677
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4678
 
4679
- #: settings.php:3120
4680
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4681
  msgstr ""
4682
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4683
  "zaslonih"
4684
 
4685
- #: settings.php:3122
4686
  msgid "Debugging functions on mobile screens"
4687
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4688
 
4689
- #: settings.php:3129
4690
  msgid ""
4691
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4692
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4701,11 +4560,11 @@ msgstr ""
4701
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4702
  "vedno omogočeno."
4703
 
4704
- #: settings.php:3131
4705
  msgid "Remote debugging"
4706
  msgstr "Oddaljeno razhroščevanje"
4707
 
4708
- #: settings.php:3138
4709
  msgid ""
4710
  "Disable translation to see original texts for the settings and messages in "
4711
  "English"
@@ -4713,210 +4572,210 @@ msgstr ""
4713
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4714
  "angleščini"
4715
 
4716
- #: settings.php:3140
4717
  msgid "Disable translation"
4718
  msgstr "Onemogoči prevod"
4719
 
4720
- #: settings.php:3515
4721
  msgid "Available positions for current theme"
4722
  msgstr "Razpoložljivi položaji za trenutno temo"
4723
 
4724
- #: settings.php:3516
4725
  msgid "Error checking pages"
4726
  msgstr "Napaka pri preverjanju strani"
4727
 
4728
- #: settings.php:3519
4729
  msgid "Toggle theme checker for available positions for automatic insertion"
4730
  msgstr ""
4731
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4732
 
4733
- #: settings.php:3519
4734
  msgctxt "Button"
4735
  msgid "Check"
4736
  msgstr "Preveri"
4737
 
4738
- #: settings.php:3526
4739
  msgid "Position"
4740
  msgstr "Položaj"
4741
 
4742
- #: settings.php:3531
4743
  msgid "Archive pages"
4744
  msgstr "Strani arhiva"
4745
 
4746
- #: settings.php:3590
4747
  msgid ""
4748
  "Position not available because output buffering (tab [*]) is not enabled"
4749
  msgstr ""
4750
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4751
 
4752
- #: settings.php:3593 strings.php:248
4753
  msgid "Position not checked yet"
4754
  msgstr "Položaj še ni bil preverjen"
4755
 
4756
- #: settings.php:3629
4757
  msgid "Toggle active/all blocks"
4758
  msgstr "Preklopi aktive/vse bloke"
4759
 
4760
- #: settings.php:3633 strings.php:235
4761
  msgid "Rearrange block order"
4762
  msgstr "Preuredi vrstni red blokov"
4763
 
4764
- #: settings.php:3638
4765
  msgid "Save new block order"
4766
  msgstr "Shrani vrstni red blokov"
4767
 
4768
- #: settings.php:3664
4769
  msgid "Toggle active/all ad units"
4770
  msgstr "Preklopi aktivne/vse oglasne enote"
4771
 
4772
- #: settings.php:3668
4773
  msgid "Reload AdSense ad units"
4774
  msgstr "Ponovno naloži oglasne enote AdSense"
4775
 
4776
- #: settings.php:3672
4777
  msgid "Clear authorization to access AdSense account"
4778
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4779
 
4780
- #: settings.php:3676 settings.php:4544 settings.php:4611 strings.php:243
4781
  msgid "Google AdSense Homepage"
4782
  msgstr "Google AdSense Domača Stran"
4783
 
4784
- #: settings.php:3692
4785
  msgid "Switch to physical ads.txt file"
4786
  msgstr "Preklopi na fizično datoteko ads.txt"
4787
 
4788
- #: settings.php:3693
4789
  msgid "Switch to virtual ads.txt file"
4790
  msgstr "Preklopi na navidezno datoteko ads.txt"
4791
 
4792
  #. translators: %s: ads.txt
4793
- #: settings.php:3703
4794
  msgid "Open %s"
4795
  msgstr "Odpri %s"
4796
 
4797
- #: settings.php:3711
4798
  msgid "Reload ads.txt file"
4799
  msgstr "Ponovno naloži datoteko ads.txt"
4800
 
4801
- #: settings.php:3715 settings.php:4671
4802
  msgid "Save"
4803
  msgstr "Shrani"
4804
 
4805
  #. translators: %s: Ad Inserter
4806
- #: settings.php:3893
4807
  msgid "ads.txt file: %s virtual ads.txt file"
4808
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4809
 
4810
- #: settings.php:3898 settings.php:3918 strings.php:224
4811
  msgid "Warning"
4812
  msgstr "Opozorilo"
4813
 
4814
  #. translators: %s: Ad Inserter
4815
- #: settings.php:3898
4816
  msgid "%s virtual file ads.txt not found"
4817
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4818
 
4819
- #: settings.php:3906
4820
  msgid "IMPORTANT"
4821
  msgstr "POMEMBNO"
4822
 
4823
- #: settings.php:3906
4824
  msgid "ads.txt file must be placed on the root domain"
4825
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4826
 
4827
- #: settings.php:3911
4828
  msgid "ads.txt file"
4829
  msgstr "datoteka ads.txt"
4830
 
4831
- #: settings.php:3911
4832
  msgid "NOT WRITABLE"
4833
  msgstr "NI ZAPISLJIVO"
4834
 
4835
- #: settings.php:3918
4836
  msgid "file %s not found"
4837
  msgstr "datoteka %s ni najdena"
4838
 
4839
- #: settings.php:3928
4840
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4841
  msgstr ""
4842
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4843
 
4844
  #. translators: %s: Ad Inserter
4845
- #: settings.php:3934
4846
  msgid "%s virtual ads.txt file"
4847
  msgstr "%s navidezna datoteka ads.txt"
4848
 
4849
- #: settings.php:3956
4850
  msgid "Advertising system"
4851
  msgstr "Oglaševalski sistem"
4852
 
4853
- #: settings.php:3957
4854
  msgid "Account ID"
4855
  msgstr "ID Računa"
4856
 
4857
- #: settings.php:3959
4858
  msgid "Certification authority ID"
4859
  msgstr "ID organa za potrjevanje"
4860
 
4861
- #: settings.php:3974
4862
  msgid "Account ID found in block and present in ads.txt"
4863
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4864
 
4865
- #: settings.php:3978
4866
  msgid "Account ID found in block but not present in ads.txt"
4867
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4868
 
4869
- #: settings.php:4327
4870
  msgid "Preview block"
4871
  msgstr "Predogled bloka"
4872
 
4873
- #: settings.php:4334
4874
  msgid "Pause block"
4875
  msgstr "Ustavite blok"
4876
 
4877
- #: settings.php:4373
4878
  msgid "Automatic insertion"
4879
  msgstr "Samodejno vstavljanje"
4880
 
4881
  #. translators: %s HTML tags
4882
- #: settings.php:4374 settings.php:5362
4883
  msgid "PHP code processing"
4884
  msgstr "Procesiranje PHP kode"
4885
 
4886
- #: settings.php:4376
4887
  msgid "Device detection"
4888
  msgstr "Zaznavanje naprave"
4889
 
4890
- #: settings.php:4399
4891
  msgid "No active block"
4892
  msgstr "Noben aktiven blok"
4893
 
4894
- #: settings.php:4400
4895
  msgid "No block matches search keywords"
4896
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4897
 
4898
- #: settings.php:4455
4899
  msgid "Ad unit"
4900
  msgstr "Enota"
4901
 
4902
- #: settings.php:4457
4903
  msgid "Slot ID"
4904
  msgstr "ID mesta"
4905
 
4906
- #: settings.php:4483
4907
  msgid "Copy AdSense code"
4908
  msgstr "Kopiraj kodo AdSense"
4909
 
4910
- #: settings.php:4486
4911
  msgid "Preview AdSense ad"
4912
  msgstr "Predogled oglasa AdSense"
4913
 
4914
- #: settings.php:4489
4915
  msgid "Get AdSense code"
4916
  msgstr "Pridobi kodo AdSense"
4917
 
4918
  #. translators: %s: HTML tags
4919
- #: settings.php:4521
4920
  msgid ""
4921
  "Please %s clear authorization %s with the button %s above and once again "
4922
  "authorize access to your AdSense account."
@@ -4924,16 +4783,16 @@ msgstr ""
4924
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4925
  "avtorizirajte dostop do vašega računa AdSense."
4926
 
4927
- #: settings.php:4540
4928
  msgid "AdSense Integration"
4929
  msgstr "Integracija AdSense"
4930
 
4931
- #: settings.php:4542
4932
  msgid "AdSense Integration - Step 2"
4933
  msgstr "Integracija AdSense - Korak 2"
4934
 
4935
  #. translators: %s: HTML tags
4936
- #: settings.php:4548
4937
  msgid ""
4938
  "Authorize %s to access your AdSense account. Click on the %s Get "
4939
  "Authorization Code %s button to open a new window where you can allow "
@@ -4946,7 +4805,7 @@ msgstr ""
4946
  "Avtoriziraj. %s"
4947
 
4948
  #. translators: %s: HTML tags
4949
- #: settings.php:4555
4950
  msgid ""
4951
  "If you get error, can't access ad units or would like to use own Google API "
4952
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4957,7 +4816,7 @@ msgstr ""
4957
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4958
 
4959
  #. translators: %s: HTML tags
4960
- #: settings.php:4557
4961
  msgid ""
4962
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4963
  "Authorization Code %s button to open a new window where you can allow "
@@ -4970,7 +4829,7 @@ msgstr ""
4970
  "gumb %s Avtoriziraj. %s"
4971
 
4972
  #. translators: %s: HTML tags
4973
- #: settings.php:4564
4974
  msgid ""
4975
  "If you get error %s invalid client %s click on the button %s Clear and "
4976
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -4978,32 +4837,32 @@ msgstr ""
4978
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4979
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4980
 
4981
- #: settings.php:4575
4982
  msgid "Get Authorization Code"
4983
  msgstr "Pridobi Avtoriazcijsko Kodo"
4984
 
4985
- #: settings.php:4578
4986
  msgid "Enter Authorization Code"
4987
  msgstr "Vnesi Avorizacijsko Kodo"
4988
 
4989
- #: settings.php:4588
4990
  msgid "Use own API IDs"
4991
  msgstr "Uporabi lastne API ID-je"
4992
 
4993
- #: settings.php:4590
4994
  msgid "Clear and return to Step 1"
4995
  msgstr "Odstrani in se vrni na Korak 1"
4996
 
4997
- #: settings.php:4594
4998
  msgid "Authorize"
4999
  msgstr "Avtoriziraj"
5000
 
5001
- #: settings.php:4610
5002
  msgid "AdSense Integration - Step 1"
5003
  msgstr "Integracija AdSense - Korak 1"
5004
 
5005
  #. translators: %s: Ad Inserter
5006
- #: settings.php:4614
5007
  msgid ""
5008
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
5009
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -5016,21 +4875,21 @@ msgstr ""
5016
  "Odjemalca in Skrivnost Odjemalca."
5017
 
5018
  #. translators: %s: HTML tags
5019
- #: settings.php:4623
5020
  msgid "Go to %s Google APIs and Services console %s"
5021
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
5022
 
5023
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
5024
- #: settings.php:4624
5025
  msgid ""
5026
  "Create %1$s project - if the project and IDs are already created click on "
5027
- "the %2$s Credentials %3$s in the sidebar and go to step 16"
5028
  msgstr ""
5029
  "Ustvarite projekt %1$s - če so projekt in ID-ji že ustvarjeni, kliknite na "
5030
- "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
5031
 
5032
  #. translators: %s: HTML tags
5033
- #: settings.php:4625
5034
  msgid ""
5035
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
5036
  "create a new project"
@@ -5039,12 +4898,12 @@ msgstr ""
5039
  "ustvaritev novega projekta"
5040
 
5041
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
5042
- #: settings.php:4626
5043
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
5044
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
5045
 
5046
  #. translators: %s: HTML tags
5047
- #: settings.php:4627
5048
  msgid ""
5049
  "Click on project selection, wait for the project to be created and then and "
5050
  "select %s as the current project"
@@ -5053,67 +4912,110 @@ msgstr ""
5053
  "izberite %s kot trenutni projekt"
5054
 
5055
  #. translators: %s: HTML tags
5056
- #: settings.php:4628
5057
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
5058
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
5059
 
5060
  #. translators: %s: HTML tags
5061
- #: settings.php:4629
5062
  msgid "Search for adsense and enable %s"
5063
  msgstr "Poiščite adsense in omogočite %s"
5064
 
5065
  #. translators: %s: HTML tags
5066
- #: settings.php:4630
5067
  msgid "Click on %s CREATE CREDENTIALS %s"
5068
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
5069
 
5070
  #. translators: %s: HTML tags
5071
- #: settings.php:4631
 
 
 
 
 
5072
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
5073
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
5074
 
5075
  #. translators: %s: HTML tags
5076
- #: settings.php:4632
5077
  msgid "For %s What data will you be accessing? %s select %s User data %s"
5078
  msgstr ""
5079
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
5080
  "podatki %s"
5081
 
5082
  #. translators: %s: HTML tags
5083
- #: settings.php:4633
5084
  msgid "Click on %s What credentials do I need? %s"
5085
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
5086
 
5087
  #. translators: %s: HTML tags
5088
- #: settings.php:4634
5089
  msgid ""
5090
- "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5091
- "Ad Inserter client %s"
5092
  msgstr ""
5093
- "Ustvarite OAuth 2.0 ID Odjemalca: za ime %s OAuth 2.0 ID odjemalca %s "
5094
- "vnestite %s Ad Inserter odjemalec %s"
5095
 
5096
  #. translators: %s: HTML tags
5097
- #: settings.php:4635
 
 
 
 
 
 
5098
  msgid ""
5099
- "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
5100
- "enter %s"
5101
  msgstr ""
5102
- "Nastavite OAuth 2.0 zaslon za soglasje: Za %s Ime izdelka, ki je prikazano "
5103
- "uporabnikom %s vnesite %s"
5104
 
5105
  #. translators: %s: HTML tags
5106
- #: settings.php:4636
5107
- msgid "Click on %s Continue %s"
5108
- msgstr "Kliknite na %s Nadaljuj %s"
 
 
 
 
5109
 
5110
  #. translators: %s: HTML tags
5111
- #: settings.php:4637
5112
- msgid "Click on %s Done %s"
5113
- msgstr "Kliknite na %s Končaj %s"
 
 
 
 
5114
 
5115
  #. translators: %s: HTML tags
5116
- #: settings.php:4638
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5117
  msgid ""
5118
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5119
  "secret %s"
@@ -5121,65 +5023,65 @@ msgstr ""
5121
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5122
  "%s Skrivnost odjemalca %s"
5123
 
5124
- #: settings.php:4639
5125
  msgid "Copy them to the appropriate fields below"
5126
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5127
 
5128
- #: settings.php:4645
5129
  msgid "Client ID"
5130
  msgstr "ID odjemalca"
5131
 
5132
- #: settings.php:4648
5133
  msgid "Enter Client ID"
5134
  msgstr "Vnesite ID odjemalca"
5135
 
5136
- #: settings.php:4653
5137
  msgid "Client secret"
5138
  msgstr "Skrivnost odjemalca"
5139
 
5140
- #: settings.php:4656
5141
  msgid "Enter Client secret"
5142
  msgstr "Vnesite Skrivnost odjemalca"
5143
 
5144
- #: settings.php:4666
5145
  msgid "Use default API IDs"
5146
  msgstr "Uporabi privzete API ID-je"
5147
 
5148
- #: settings.php:4834
5149
  msgid "All posts"
5150
  msgstr "Vsi prispevki"
5151
 
5152
- #: settings.php:4835
5153
  msgid "All static pages"
5154
  msgstr "Vse statične strani"
5155
 
5156
- #: settings.php:4990 settings.php:5003 settings.php:5017 settings.php:5031
5157
- #: settings.php:5045
5158
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5159
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5160
 
5161
- #: settings.php:4995 settings.php:5008 settings.php:5022 settings.php:5036
5162
- #: settings.php:5050 settings.php:5245 settings.php:5248 settings.php:5250
5163
- #: settings.php:5259 settings.php:5268 settings.php:5273 settings.php:5281
5164
- #: settings.php:5282 settings.php:5285 settings.php:5288 settings.php:5292
5165
- #: settings.php:5302 settings.php:5306
5166
  msgid "Looking for AdSense alternative?"
5167
  msgstr "Iščete alternativo za AdSense?"
5168
 
5169
- #: settings.php:5062
5170
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5171
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5172
 
5173
- #: settings.php:5067 settings.php:5242 settings.php:5263 settings.php:5291
5174
- #: settings.php:5310
5175
  msgid "Use Infolinks ads with Adsense to earn more"
5176
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5177
 
5178
- #: settings.php:5088 settings.php:5138
5179
  msgid "Support plugin development"
5180
  msgstr "Podprite razvoj vtičnika"
5181
 
5182
- #: settings.php:5093 settings.php:5139
5183
  msgid ""
5184
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5185
  "reviewing the plugin on WordPres"
@@ -5187,12 +5089,12 @@ msgstr ""
5187
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5188
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5189
 
5190
- #: settings.php:5093
5191
  msgctxt "Review Ad Inserter"
5192
  msgid "Review"
5193
  msgstr "Ocenite"
5194
 
5195
- #: settings.php:5098
5196
  msgid ""
5197
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5198
  "rating the plugin on WordPres"
@@ -5200,12 +5102,12 @@ msgstr ""
5200
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5201
  "razširiti novico z oceno vtičnika na WordPress-u"
5202
 
5203
- #: settings.php:5098
5204
  msgctxt "Rate Ad Inserter"
5205
  msgid "Rate"
5206
  msgstr "Ocenite"
5207
 
5208
- #: settings.php:5103
5209
  msgid ""
5210
  "Support free Ad Inserter development. If you are making money with Ad "
5211
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -5214,16 +5116,16 @@ msgstr ""
5214
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5215
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5216
 
5217
- #: settings.php:5103
5218
  msgid "Donate"
5219
  msgstr "Donirajte"
5220
 
5221
- #: settings.php:5110 settings.php:5154
5222
  msgid "Average rating of the plugin - Thank you!"
5223
  msgstr "Povprečna ocena vtičnika - Hvala!"
5224
 
5225
  #. translators: %s: Ad Inserter, HTML tags
5226
- #: settings.php:5121
5227
  msgid ""
5228
  "You've been using %s for a while now, and I hope you're happy with it. "
5229
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -5238,24 +5140,24 @@ msgstr ""
5238
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5239
  "bi rekli 'Hvala'."
5240
 
5241
- #: settings.php:5139
5242
  msgid "Review"
5243
  msgstr "Ocena"
5244
 
5245
- #: settings.php:5143
5246
  msgid "Ad Inserter on Twitter"
5247
  msgstr "Ad Inserter na Twitter-ju"
5248
 
5249
- #: settings.php:5144
5250
  msgid "Ad Inserter on Facebook"
5251
  msgstr "Ad Inserter na Facebook-u"
5252
 
5253
- #: settings.php:5147
5254
  msgid "Follow Ad Inserter"
5255
  msgstr "Sledi Ad Inserter-ju"
5256
 
5257
  #. translators: %s: HTML tags
5258
- #: settings.php:5174
5259
  msgid ""
5260
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5261
  "and %s Common Settings %s pages"
@@ -5264,7 +5166,7 @@ msgstr ""
5264
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5265
 
5266
  #. translators: %s: HTML tags
5267
- #: settings.php:5186
5268
  msgid ""
5269
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5270
  "Auto ads, %s %s AMP ads %s"
@@ -5273,7 +5175,7 @@ msgstr ""
5273
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5274
 
5275
  #. translators: %s: HTML tags
5276
- #: settings.php:5203
5277
  msgid ""
5278
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5279
  "purchase you refer to us"
@@ -5282,7 +5184,7 @@ msgstr ""
5282
  "nakup, ki nam ga posredujete"
5283
 
5284
  #. translators: %s: HTML tags
5285
- #: settings.php:5210
5286
  msgid ""
5287
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5288
  "diagnose and fix the problem."
@@ -5291,7 +5193,7 @@ msgstr ""
5291
  "navodili za diagnozo in rešitvami za težave."
5292
 
5293
  #. translators: %s: HTML tags
5294
- #: settings.php:5214
5295
  msgid ""
5296
  "If you need any kind of help or support, please do not hesitate to open a "
5297
  "thread on the %s support forum. %s"
@@ -5299,57 +5201,57 @@ msgstr ""
5299
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5300
  "nit na %s podpornem forumu. %s"
5301
 
5302
- #: settings.php:5241 settings.php:5311 settings.php:5315
5303
  msgid "Code preview with visual CSS editor"
5304
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5305
 
5306
- #: settings.php:5244 settings.php:5272
5307
  msgid "Ad blocking detection and content protection"
5308
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5309
 
5310
- #: settings.php:5247 settings.php:5300
5311
  msgid "A/B testing - Track ad impressions and clicks"
5312
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5313
 
5314
- #: settings.php:5264
5315
  msgid "Insert ads on AMP pages"
5316
  msgstr "Vstavite oglase na AMP straneh"
5317
 
5318
- #: settings.php:5323
5319
  msgid "Looking for Pro Ad Management plugin?"
5320
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5321
 
5322
- #: settings.php:5324
5323
  msgid "To Optimally Monetize your WordPress website?"
5324
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5325
 
5326
  #. Translators: %s: price of Ad Inserter Pro
5327
- #: settings.php:5325
5328
  msgid "Different license types starting from %s"
5329
  msgstr "Različni tipi licenc začenši od %s"
5330
 
5331
  #. translators: %s HTML tags
5332
- #: settings.php:5328
5333
  msgid "%s AdSense Integration %s"
5334
  msgstr "%s Integracija AdSense %s"
5335
 
5336
  #. translators: %s HTML tags
5337
- #: settings.php:5329
5338
  msgid "Syntax highlighting %s editor %s"
5339
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5340
 
5341
  #. translators: %s HTML tags
5342
- #: settings.php:5330
5343
  msgid "%s Code preview %s with visual CSS editor"
5344
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5345
 
5346
  #. translators: %s HTML tags
5347
- #: settings.php:5331
5348
  msgid "Simple user interface - all settings on a single page"
5349
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5350
 
5351
  #. translators: %s HTML tags
5352
- #: settings.php:5332
5353
  msgid ""
5354
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5355
  "image / excerpt"
@@ -5358,27 +5260,27 @@ msgstr ""
5358
  "%s / sliko / izvlečkom"
5359
 
5360
  #. translators: %s HTML tags
5361
- #: settings.php:5333
5362
  msgid "%s Automatic insertion %s between posts on blog pages"
5363
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5364
 
5365
  #. translators: %s HTML tags
5366
- #: settings.php:5334
5367
  msgid "%s Automatic insertion %s before, between and after comments"
5368
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5369
 
5370
  #. translators: %s HTML tags
5371
- #: settings.php:5335
5372
  msgid "%s Automatic insertion %s after %s or before %s tag"
5373
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5374
 
5375
  #. translators: %s HTML tags
5376
- #: settings.php:5336
5377
  msgid "Automatic insertion at %s custom hook positions %s"
5378
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5379
 
5380
  #. translators: %s HTML tags
5381
- #: settings.php:5337
5382
  msgid ""
5383
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5384
  "selectors)"
@@ -5387,17 +5289,17 @@ msgstr ""
5387
  "selektorjev)"
5388
 
5389
  #. translators: %s HTML tags
5390
- #: settings.php:5338
5391
  msgid "%s Insertion exceptions %s for individual posts and pages"
5392
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5393
 
5394
  #. translators: %s HTML tags
5395
- #: settings.php:5339
5396
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5397
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5398
 
5399
  #. translators: %s HTML tags
5400
- #: settings.php:5340
5401
  msgid ""
5402
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5403
  "scrolls)"
@@ -5406,24 +5308,24 @@ msgstr ""
5406
  "se stran pomika)"
5407
 
5408
  #. translators: %s HTML tags
5409
- #: settings.php:5341
5410
  msgid "%s Background ads %s with one or left and right background images"
5411
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5412
 
5413
  #. translators: %s HTML tags
5414
- #: settings.php:5342
5415
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5416
  msgstr ""
5417
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5418
 
5419
  #. translators: %s HTML tags
5420
- #: settings.php:5343
5421
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5422
  msgstr ""
5423
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5424
 
5425
  #. translators: %s HTML tags
5426
- #: settings.php:5344
5427
  msgid ""
5428
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5429
  "visible)"
@@ -5432,7 +5334,7 @@ msgstr ""
5432
  "postane viden)"
5433
 
5434
  #. translators: %s HTML tags
5435
- #: settings.php:5345
5436
  msgid ""
5437
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5438
  msgstr ""
@@ -5440,12 +5342,12 @@ msgstr ""
5440
  "strani)"
5441
 
5442
  #. translators: %s HTML tags
5443
- #: settings.php:5346
5444
  msgid "Block %s alignment and style %s customizations"
5445
  msgstr "%s Poravnave in slogi %s bloka po meri"
5446
 
5447
  #. translators: %s HTML tags
5448
- #: settings.php:5347
5449
  msgid ""
5450
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5451
  "TOS)"
@@ -5453,7 +5355,7 @@ msgstr ""
5453
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5454
 
5455
  #. translators: %s HTML tags
5456
- #: settings.php:5348
5457
  msgid ""
5458
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5459
  "feeds"
@@ -5462,17 +5364,17 @@ msgstr ""
5462
  "virih"
5463
 
5464
  #. translators: %s HTML tags
5465
- #: settings.php:5349
5466
  msgid "%s Ad rotation %s (works also with caching)"
5467
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5468
 
5469
  #. translators: %s HTML tags
5470
- #: settings.php:5350
5471
  msgid "Create, edit and check %s ads.txt %s file"
5472
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5473
 
5474
  #. translators: %s HTML tags
5475
- #: settings.php:5351
5476
  msgid ""
5477
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5478
  "AdSense)"
@@ -5481,86 +5383,86 @@ msgstr ""
5481
  "AdSense)"
5482
 
5483
  #. translators: %s HTML tags
5484
- #: settings.php:5352
5485
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5486
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5487
 
5488
  #. translators: %s HTML tags
5489
- #: settings.php:5353
5490
  msgid "%s Public web reports %s for clients, export to PDF"
5491
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5492
 
5493
  #. translators: %s HTML tags
5494
- #: settings.php:5354
5495
  msgid "Support for %s A/B testing %s"
5496
  msgstr "Podpora za %s A/B testiranje %s"
5497
 
5498
  #. translators: %s HTML tags
5499
- #: settings.php:5355
5500
  msgid "Frequency capping - %s limit impressions or clicks %s"
5501
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5502
 
5503
  #. translators: %s HTML tags
5504
- #: settings.php:5356
5505
  msgid "Click fraud %s protection %s"
5506
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5507
 
5508
  #. translators: %s HTML tags
5509
- #: settings.php:5357
5510
  msgid "Support for %s GDPR consent cookie checks %s"
5511
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5512
 
5513
  #. translators: %s HTML tags
5514
- #: settings.php:5358
5515
  msgid "Support for %s lazy loading %s"
5516
  msgstr "Podpora za %s leno nalaganje %s"
5517
 
5518
  #. translators: %s HTML tags
5519
- #: settings.php:5359
5520
  msgid "Support for ads on %s AMP pages %s"
5521
  msgstr "Podpora za oglase na %s AMP straneh %s"
5522
 
5523
  #. translators: %s HTML tags
5524
- #: settings.php:5360
5525
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5526
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5527
 
5528
  #. translators: %s HTML tags
5529
- #: settings.php:5361
5530
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5531
  msgstr ""
5532
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5533
 
5534
  #. translators: %s HTML tags
5535
- #: settings.php:5363
5536
  msgid "%s Banner %s code generator"
5537
  msgstr "Generator kode za %s pasice %s"
5538
 
5539
  #. translators: %s HTML tags
5540
- #: settings.php:5364
5541
  msgid "Support for %s header and footer %s code"
5542
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5543
 
5544
  #. translators: %s HTML tags
5545
- #: settings.php:5365
5546
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5547
  msgstr ""
5548
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5549
 
5550
  #. translators: %s HTML tags
5551
- #: settings.php:5366
5552
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5553
  msgstr ""
5554
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5555
  "strežnika"
5556
 
5557
  #. translators: %s HTML tags
5558
- #: settings.php:5367
5559
  msgid "Client-side %s mobile device detection %s (works with caching)"
5560
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5561
 
5562
  #. translators: %s HTML tags
5563
- #: settings.php:5368
5564
  msgid ""
5565
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5566
  "protection"
@@ -5569,12 +5471,12 @@ msgstr ""
5569
  "vsebine"
5570
 
5571
  #. translators: %s HTML tags
5572
- #: settings.php:5369
5573
  msgid "%s Ad blocking statistics %s"
5574
  msgstr "%s Statistika blokiranja oglasov %s"
5575
 
5576
  #. translators: %s HTML tags
5577
- #: settings.php:5370
5578
  msgid ""
5579
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5580
  "referrers, operating systems, browsers"
@@ -5583,75 +5485,75 @@ msgstr ""
5583
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5584
 
5585
  #. translators: %s HTML tags
5586
- #: settings.php:5371
5587
  msgid ""
5588
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5589
  msgstr ""
5590
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5591
 
5592
  #. translators: %s HTML tags
5593
- #: settings.php:5372
5594
  msgid "%s Multisite options %s to limit settings on the sites"
5595
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5596
 
5597
  #. translators: %s HTML tags
5598
- #: settings.php:5373
5599
  msgid "%s Import/Export %s block or plugin settings"
5600
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5601
 
5602
  #. translators: %s HTML tags
5603
- #: settings.php:5374
5604
  msgid "%s Insertion scheduling %s with fallback option"
5605
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5606
 
5607
  #. translators: %s HTML tags
5608
- #: settings.php:5375
5609
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5610
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5611
 
5612
  #. translators: %s HTML tags
5613
- #: settings.php:5376
5614
  msgid "Simple troubleshooting with many %s debugging functions %s"
5615
  msgstr ""
5616
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5617
 
5618
  #. translators: %s HTML tags
5619
- #: settings.php:5377
5620
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5621
  msgstr ""
5622
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5623
 
5624
  #. translators: %s HTML tags
5625
- #: settings.php:5378
5626
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5627
  msgstr ""
5628
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5629
 
5630
  #. translators: %s HTML tags
5631
- #: settings.php:5379
5632
  msgid ""
5633
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5634
  msgstr ""
5635
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5636
 
5637
  #. translators: %s HTML tags
5638
- #: settings.php:5380
5639
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5640
  msgstr ""
5641
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5642
 
5643
  #. translators: %s HTML tags
5644
- #: settings.php:5381
5645
  msgid "No ads on the settings page"
5646
  msgstr "Stran z nastavitvami brez oglasov"
5647
 
5648
  #. translators: %s HTML tags
5649
- #: settings.php:5382
5650
  msgid "Premium support"
5651
  msgstr "Vrhunska podpora"
5652
 
5653
  #. translators: %s HTML tags
5654
- #: settings.php:5385
5655
  msgid ""
5656
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5657
  "website with many advertising features to automatically insert adverts on "
@@ -5678,82 +5580,82 @@ msgstr ""
5678
  "bodo ohranile)."
5679
 
5680
  #. translators: %s HTML tags
5681
- #: settings.php:5398
5682
  msgid "Looking for %s Pro Ad Management plugin? %s"
5683
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5684
 
5685
  #. translators: %s HTML tags
5686
- #: settings.php:5403
5687
  msgid "Ads between posts"
5688
  msgstr "Oglasi med prispevki"
5689
 
5690
  #. translators: %s HTML tags
5691
- #: settings.php:5404
5692
  msgid "Ads between comments"
5693
  msgstr "Oglasi med komentarji"
5694
 
5695
  #. translators: %s HTML tags
5696
- #: settings.php:5405
5697
  msgid "Support via email"
5698
  msgstr "Podpora prek elektronske pošte"
5699
 
5700
  #. translators: %s HTML tags
5701
- #: settings.php:5411
5702
  msgid "%s Sticky positions %s"
5703
  msgstr "%s Lepljivi položaji %s"
5704
 
5705
  #. translators: %s HTML tags
5706
- #: settings.php:5412
5707
  msgid "%s Limit insertions %s"
5708
  msgstr "%s Omeji vstavljanja %s"
5709
 
5710
  #. translators: %s HTML tags
5711
- #: settings.php:5413
5712
  msgid "%s Clearance %s options"
5713
  msgstr "Možnosti %s izogibanja %s"
5714
 
5715
  #. translators: %s HTML tags
5716
- #: settings.php:5419
5717
  msgid "Ad rotation"
5718
  msgstr "Vrtenje oglasov"
5719
 
5720
  #. translators: %s HTML tags
5721
- #: settings.php:5420
5722
  msgid "%s A/B testing %s"
5723
  msgstr "%s A/B testiranje %s"
5724
 
5725
  #. translators: %s HTML tags
5726
- #: settings.php:5421
5727
  msgid "%s Ad tracking %s"
5728
  msgstr "%s Sledenje oglasom %s"
5729
 
5730
  #. translators: %s HTML tags
5731
- #: settings.php:5427
5732
  msgid "Support for %s AMP pages %s"
5733
  msgstr "Podpora za %s AMP strani %s"
5734
 
5735
  #. translators: %s HTML tags
5736
- #: settings.php:5428
5737
  msgid "%s Ad blocking detection %s"
5738
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5739
 
5740
  #. translators: %s HTML tags
5741
- #: settings.php:5429
5742
  msgid "%s Mobile device detection %s"
5743
  msgstr "%s Zaznavanje mobilne naprave %s"
5744
 
5745
  #. translators: %s HTML tags
5746
- #: settings.php:5436
5747
  msgid "64 code blocks"
5748
  msgstr "64 kodnih blokov"
5749
 
5750
  #. translators: %s HTML tags
5751
- #: settings.php:5437
5752
  msgid "%s GEO targeting %s"
5753
  msgstr "%s GEO ciljanje %s"
5754
 
5755
  #. translators: %s HTML tags
5756
- #: settings.php:5438
5757
  msgid "%s Scheduling %s"
5758
  msgstr "%s Urnik %s"
5759
 
@@ -6469,10 +6371,6 @@ msgid "Invalid date range - only data for 1 year can be displayed"
6469
  msgstr ""
6470
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6471
 
6472
- #: strings.php:225
6473
- msgid "Delete"
6474
- msgstr "Pobriši"
6475
-
6476
  #: strings.php:226
6477
  msgid "Switch"
6478
  msgstr "Preklopi"
@@ -6666,6 +6564,187 @@ msgstr ""
6666
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6667
  "na optimalna mesta"
6668
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6669
  #~ msgid "Blacklist categories"
6670
  #~ msgstr "Črni seznam kategorij"
6671
 
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: 2021-02-15 09:05:37+00:00\n"
8
+ "PO-Revision-Date: 2021-02-15 10:17+0100\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:491
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:507
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:514
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:600
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:607
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:616
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:623
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:634
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
+ #: ad-inserter.php:641
60
  msgctxt "Menu item"
61
  msgid "Show Log"
62
  msgstr "Pokaži beležko"
63
 
64
  #. translators: Debugging position name Before HTML element
65
+ #: ad-inserter.php:1305
66
  msgid "Before"
67
  msgstr "Pred"
68
 
69
  #. translators: Debugging position name After HTML element
70
+ #: ad-inserter.php:1310
71
  msgid "After"
72
  msgstr "Za"
73
 
74
  #. translators: Debugging position name Prepend content of HTML element (before
75
  #. the content of the HTML element)
76
+ #: ad-inserter.php:1315 strings.php:104
77
  msgid "Prepend content"
78
  msgstr "Dodaj pred vsebino"
79
 
80
  #. translators: Debugging position name Append content of HTML element (after
81
  #. the content of the HTML element)
82
+ #: ad-inserter.php:1320 strings.php:105
83
  msgid "Append content"
84
  msgstr "Dodaj za vsebino"
85
 
86
  #. translators: Debugging position name Replace content of HTML element
87
+ #: ad-inserter.php:1325 strings.php:106
88
  msgid "Replace content"
89
  msgstr "Nadomesti vsebino"
90
 
91
  #. translators: Debugging position name Replace HTML element
92
+ #: ad-inserter.php:1330 strings.php:169
93
  msgid "Replace"
94
  msgstr "Nadomesti"
95
 
96
  #. translators: Debugging message when output buffering is enabled
97
+ #: ad-inserter.php:1377
98
  msgid "OUTPUT BUFFERING"
99
  msgstr "PREDPOMNJENJE IZHODA"
100
 
101
  #. translators: Debugging position
102
+ #: ad-inserter.php:1381
103
  msgid "Above Header"
104
  msgstr "Nad Glavo"
105
 
106
+ #: ad-inserter.php:1679
107
  msgctxt "Menu item"
108
  msgid "Log In"
109
  msgstr "Prijava"
110
 
111
  #. translators: %s: Ad Inserter
112
+ #: ad-inserter.php:2032 ad-inserter.php:3258
113
  msgid "%s Settings"
114
  msgstr "%s Nastavitve"
115
 
116
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
117
+ #: ad-inserter.php:2626
118
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
119
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
120
 
121
+ #: ad-inserter.php:2626
122
  msgid "NO ACTION"
123
  msgstr "NI AKCIJE"
124
 
125
+ #: ad-inserter.php:2627
126
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
127
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
128
 
129
+ #: ad-inserter.php:2628
130
  msgid "AD BLOCKING DETECTED - ACTION"
131
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
132
 
133
+ #: ad-inserter.php:2629
134
  msgid "AD BLOCKING NOT DETECTED"
135
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
136
 
137
+ #: ad-inserter.php:2630
138
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
139
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
140
 
141
+ #: ad-inserter.php:2631
142
  msgid "AD BLOCKING DETECTED - NO ACTION"
143
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
144
 
145
  #. Translators: 1: number of blocks, 2: Ad Inserter
146
+ #: ad-inserter.php:2953
147
  msgid "Hey, you are now using %1$s %2$s block."
148
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
149
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
151
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
152
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
153
 
154
+ #: ad-inserter.php:2956
155
  msgid "Please help me to solve a problem first"
156
  msgstr "Najprej mi, prosim, pomagajte rešiti problem"
157
 
158
+ #: ad-inserter.php:2960
159
  msgid "Maybe later"
160
  msgstr "Mogoče kasneje"
161
 
162
  #. Translators: %s: Ad Inserter
163
+ #: ad-inserter.php:2965
164
  msgid "Hey, you are using %s and I hope you're happy with it."
165
  msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
166
 
167
+ #: ad-inserter.php:2968
168
  msgid "OK, but please help me with the settings first"
169
  msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
170
 
171
+ #: ad-inserter.php:2981
172
  msgid ""
173
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
174
  "like saying 'Thank you'. Somebody will be happy."
176
  "Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
177
  "je kot bi rekli 'Hvala'. Nekdo bo vsesel."
178
 
179
+ #: ad-inserter.php:2983
180
  msgid ""
181
  "Positive reviews are a great incentive to fix bugs and to add new features "
182
  "for better monetization of your website."
184
  "Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
185
  "funkcij za boljšo monetizacijo vašega spletnega mesta."
186
 
187
+ #: ad-inserter.php:2989
188
  msgid "Sure"
189
  msgstr "Seveda"
190
 
191
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
192
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
193
+ #: ad-inserter.php:3006 ad-inserter.php:3041
194
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
195
  msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
196
 
197
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
198
+ #: ad-inserter.php:3013
199
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
200
  msgstr ""
201
  "Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
202
 
203
+ #: ad-inserter.php:3023
204
  msgctxt "Menu item"
205
  msgid "Settings"
206
  msgstr "Nastavitve"
207
 
208
+ #: ad-inserter.php:3055
209
  msgid ""
210
  "Load settings page in safe mode to avoid collisions with other plugins or "
211
  "theme"
213
  "Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
214
  "drugimi vtičniki ali temo"
215
 
216
+ #: ad-inserter.php:3055
217
  msgid "Safe mode"
218
  msgstr "Varni način"
219
 
220
  #. translators: %s: Ad Inserter
221
+ #: ad-inserter.php:3150
222
  msgctxt "Meta box name"
223
  msgid "%s Individual Exceptions"
224
  msgstr "Posamezne Izjeme za %s"
225
 
226
+ #: ad-inserter.php:3179 ad-inserter.php:11006 class.php:2410
227
  #: includes/preview.php:2324 includes/preview.php:2369
228
+ #: includes/preview.php:2406 settings.php:4386 strings.php:3
229
  msgid "Block"
230
  msgstr "Blok"
231
 
232
+ #: ad-inserter.php:3180 settings.php:4387 settings.php:4472
233
  msgid "Name"
234
  msgstr "Ime"
235
 
236
+ #: ad-inserter.php:3183 settings.php:1256
237
  msgid "Default insertion"
238
  msgstr "Privzeto vstavljanje"
239
 
240
  #. translators: For this post or page
241
+ #: ad-inserter.php:3186
242
  msgctxt "Page"
243
  msgid "For this"
244
  msgstr "Za to"
245
 
246
+ #: ad-inserter.php:3187
247
  msgctxt "Post"
248
  msgid "For this"
249
  msgstr "Za ta"
250
 
251
+ #: ad-inserter.php:3199
252
  msgctxt "Enabled/disabled on all"
253
  msgid "pages"
254
  msgstr "straneh"
255
 
256
+ #: ad-inserter.php:3202
257
  msgctxt "Enabled/disabled on all"
258
  msgid "posts"
259
  msgstr "prispevkih"
260
 
261
+ #: ad-inserter.php:3219 ad-inserter.php:3231 strings.php:175
262
  msgid "Enabled"
263
  msgstr "Omogočeno"
264
 
265
  #. translators: Menu items
266
+ #: ad-inserter.php:3219 ad-inserter.php:3231
267
+ #: includes/functions-check-now.php:2401 includes/functions.php:2691
268
  #: strings.php:16
269
  msgid "Disabled"
270
  msgstr "Onemogočeno"
271
 
272
+ #: ad-inserter.php:3221
273
  msgid "No individual exceptions"
274
  msgstr "Ni posameznih izjem"
275
 
276
  #. translators: Not enabled for pages or posts
277
+ #: ad-inserter.php:3223
278
  msgid "Not enabled for"
279
  msgstr "Ni omogočeno za"
280
 
281
  #. translators: No individual exceptions enabled for pages or posts
282
+ #: ad-inserter.php:3251
283
  msgid "No block has individual exceptions enabled"
284
  msgstr "Noben blok nima omogočenih posameznih izjem"
285
 
286
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
287
+ #: ad-inserter.php:3256
288
  msgid ""
289
  "Default insertion can be configured for each block on %1$s page - button "
290
  "next to %2$s checkbox."
292
  "Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
293
  "poleg kljukice za vklop %2$s."
294
 
295
+ #: ad-inserter.php:3259 settings.php:1234
296
  msgid "Tag / Archive pages"
297
  msgstr "Strani oznak / arhiva"
298
 
299
+ #: ad-inserter.php:3261
300
  msgid ""
301
  "When individual exceptions for a block are enabled, a checkbox will be "
302
  "listed here to change default insertion for this post or page."
304
  "Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
305
  "spremembo privzetega vstavljanja za ta prispevek ali stran."
306
 
307
+ #: ad-inserter.php:3262
308
  msgid ""
309
  "This way you can individually enable or disable blocks on specific posts or "
310
  "pages."
312
  "Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
313
  "prispevku ali strani."
314
 
315
+ #: ad-inserter.php:3264
316
  msgid "For more information check page %s"
317
  msgstr "Za več informacij poglejte stran %s"
318
 
319
  #. translators: Ad Inserter Exceptions documentation page
320
+ #: ad-inserter.php:3266
321
  msgid "Individual Exceptions"
322
  msgstr "Posamezne Izjeme"
323
 
324
+ #: ad-inserter.php:3313
325
  msgid "STATIC PAGE"
326
  msgstr "STATIČNA STRAN"
327
 
328
+ #: ad-inserter.php:3316
329
  msgid "POST"
330
  msgstr "PRISPEVEK"
331
 
332
+ #: ad-inserter.php:3319
333
  msgid "HOMEPAGE"
334
  msgstr "DOMAČA STRAN"
335
 
336
+ #: ad-inserter.php:3322
337
  msgid "CATEGORY PAGE"
338
  msgstr "STRAN KATEGORIJE"
339
 
340
+ #: ad-inserter.php:3325
341
  msgid "SEARCH PAGE"
342
  msgstr "STRAN ISKANJE"
343
 
344
+ #: ad-inserter.php:3328
345
  msgid "ARCHIVE PAGE"
346
  msgstr "STRAN ARHIVA"
347
 
348
+ #: ad-inserter.php:3331
349
  msgid "ERROR 404 PAGE"
350
  msgstr "STRAN NAPAKA 404"
351
 
352
+ #: ad-inserter.php:3334
353
  msgid "AJAX CALL"
354
  msgstr "AJAX KLIC"
355
 
356
+ #: ad-inserter.php:3337
357
  msgid "UNKNOWN PAGE TYPE"
358
  msgstr "NEZNAN TIP STRANI"
359
 
360
+ #: ad-inserter.php:3354
361
  msgid "Click to delete ad blocking detection cokies"
362
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
363
 
364
+ #: ad-inserter.php:3355
365
  msgid "AD BLOCKING STATUS UNKNOWN"
366
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
367
 
368
  #. translators: %s: AdSense Auto Ads
369
+ #: ad-inserter.php:3384
370
  msgid ""
371
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
372
  "positions"
374
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
375
  "položaje"
376
 
377
+ #: ad-inserter.php:3522
378
  msgid "Code for insertion"
379
  msgstr "Koda za vstavljanje"
380
 
381
+ #: ad-inserter.php:3522
382
  msgid "character"
383
  msgid_plural "characters"
384
  msgstr[0] "znak"
386
  msgstr[2] "znaki"
387
  msgstr[3] "znakov"
388
 
389
+ #: ad-inserter.php:3538
390
  msgid "Header code"
391
  msgstr "Koda v glavi"
392
 
393
+ #: ad-inserter.php:3538
394
  msgctxt "Header code"
395
  msgid "DISABLED"
396
  msgstr "ONEMOGOČENA"
397
 
398
+ #: ad-inserter.php:3538 ad-inserter.php:3794
399
  msgid "character inserted"
400
  msgid_plural "characters inserted"
401
  msgstr[0] "znak vstavljen"
403
  msgstr[2] "znaki vstavljeni"
404
  msgstr[3] "znakov vstavljenih"
405
 
406
+ #: ad-inserter.php:3556
407
  msgid "Click to delete the cokie for the consents"
408
  msgstr "Klikni za brisanje piškotka za soglasja"
409
 
410
+ #: ad-inserter.php:3794
411
  msgid "Footer code"
412
  msgstr "Koda v nogi"
413
 
414
+ #: ad-inserter.php:3794
415
  msgctxt "Footer code"
416
  msgid "DISABLED"
417
  msgstr "ONEMOGOČENA"
418
 
419
+ #: ad-inserter.php:3805
420
  msgid "JAVASCRIPT NOT WORKING"
421
  msgstr "JAVASCRIPT NE DELA"
422
 
423
+ #: ad-inserter.php:3805
424
  msgid "NO JAVASCRIPT ERRORS"
425
  msgstr "BREZ JAVASCRIPT NAPAK"
426
 
427
+ #: ad-inserter.php:3805
428
  msgid "JAVASCRIPT ERRORS"
429
  msgstr "JAVASCRIPT NAPAKE"
430
 
431
  #. translators: block name (block with default settings)
432
+ #: ad-inserter.php:6436
433
  msgctxt "Block name"
434
  msgid "Default"
435
  msgstr "Privzeti"
436
 
437
  #. translators: %s: Ad Inserter
438
+ #: ad-inserter.php:7150
439
  msgid "Error importing %s settings."
440
  msgstr "Napaka pri uvozu %s nastavitev."
441
 
442
+ #: ad-inserter.php:7151
443
  msgid "Error importing settings for block"
444
  msgid_plural "Error importing settings for blocks:"
445
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
447
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
448
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
449
 
450
+ #: ad-inserter.php:7204
451
  msgid "Settings saved."
452
  msgstr "Nastavitve shranjene."
453
 
454
  #. translators: %s: Ad Inserter
455
+ #: ad-inserter.php:7206
456
  msgid "Invalid data received - %s settings not saved."
457
  msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
458
 
459
+ #: ad-inserter.php:7305
460
  msgid "Settings cleared."
461
  msgstr "Nastavitve ponastavljene."
462
 
463
  #. Translators: Post/Static page must have between X and Y words
464
+ #: ad-inserter.php:7733 ad-inserter.php:7735 ad-inserter.php:7758
465
+ #: settings.php:2257
466
  msgid "word"
467
  msgid_plural "words"
468
  msgstr[0] "besedo"
470
  msgstr[2] "besede"
471
  msgstr[3] "besed"
472
 
473
+ #: ad-inserter.php:7772 ad-inserter.php:7906
474
  msgid "HTML TAGS REMOVED"
475
  msgstr "HTML ZNAČKE ODSTRANJENE"
476
 
477
+ #: ad-inserter.php:7985
478
  msgid "BEFORE COMMENTS"
479
  msgstr "PRED KOMENTARJI"
480
 
481
+ #: ad-inserter.php:8117
482
  msgid "AFTER COMMENTS"
483
  msgstr "PO KOMETARJIH"
484
 
485
+ #: ad-inserter.php:8201
486
  msgid "BETWEEN COMMENTS"
487
  msgstr "MED KOMENTARJI"
488
 
489
+ #: ad-inserter.php:10292 ad-inserter.php:10381
490
  msgctxt "category name"
491
  msgid "Uncategorized"
492
  msgstr "Nekategorizirano"
493
 
494
+ #: ad-inserter.php:10608
495
  msgid "requires WordPress 4.6 or newer"
496
  msgstr "potrebuje WordPress 4.6 ali novejši"
497
 
498
+ #: ad-inserter.php:10608
499
  msgid "Please update!"
500
  msgstr "Prosimo, posodobite!"
501
 
502
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
503
  #. name with HTML tags will be added)
504
+ #: ad-inserter.php:10877
505
  msgid "Thank you for installing"
506
  msgstr "Hvala za namestitev vtičnika"
507
 
508
  #. translators: Opt-in message: %s: HTML tags
509
+ #: ad-inserter.php:10879
510
  msgid ""
511
  "We would like to %s track its usage %s on your site. This is completely "
512
  "optional and can be disabled at any time."
514
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
515
  "izbirno in se lahko izključi kadarkoli."
516
 
517
+ #: ad-inserter.php:10881
518
  msgid ""
519
  "We don't record any sensitive data, only information regarding the WordPress "
520
  "environment and plugin usage, which will help us to make improvements to the "
524
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
525
 
526
  #. translators: Deactivation message: %s: HTML tags
527
+ #: ad-inserter.php:10918
528
  msgid ""
529
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
530
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
535
  "nam %s in poskušali vam bomo pomagati."
536
 
537
  #. translators: %s: Ad Inserter
538
+ #: ad-inserter.php:10964
539
  msgid "%s block."
540
  msgstr "%s blok."
541
 
542
  #. translators: widget title
543
+ #: ad-inserter.php:10980 ad-inserter.php:11015
544
  msgid "Processing log"
545
  msgstr "Dnevnik procesiranja"
546
 
547
  #. translators: widget title
548
+ #: ad-inserter.php:10982 ad-inserter.php:11016
549
  msgid "Dummy widget"
550
  msgstr "Prazen gradnik"
551
 
552
  #. translators: widget title
553
+ #: ad-inserter.php:10984 ad-inserter.php:11014
554
  msgid "Debugging tools"
555
  msgstr "Orodja za razhroščevanje"
556
 
557
  #. translators: block status (widget title)
558
+ #: ad-inserter.php:10991
559
  msgctxt "block"
560
  msgid "PAUSED"
561
  msgstr "USTAVLJEN"
562
 
563
+ #: ad-inserter.php:10992
564
  msgid "WIDGET DISABLED"
565
  msgstr "GRADNIK ONEMOGOČEN"
566
 
567
+ #: ad-inserter.php:10993
568
  msgid "Unknown block"
569
  msgstr "Neznan blok"
570
 
571
+ #: ad-inserter.php:11001 includes/functions-check-now.php:3261
572
+ #: includes/functions.php:3783 settings.php:1286
573
  msgid "Title"
574
  msgstr "Naslov"
575
 
576
+ #: ad-inserter.php:11023
577
  msgctxt "Widget"
578
  msgid "Sticky"
579
  msgstr "Lepljiv"
580
 
581
+ #: ad-inserter.php:11074
582
  msgid ""
583
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
584
  "Inserter you need to first deactivate Ad Inserter Pro."
587
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
588
  "Inserter Pro."
589
 
590
+ #: ad-inserter.php:11075
591
  msgid ""
592
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
593
  "will clear all settings that are available only in the Pro version "
626
  msgid "Between posts"
627
  msgstr "Med prispevki"
628
 
629
+ #: class.php:2389 settings.php:1991 settings.php:4404
630
  msgid "Widget"
631
  msgstr "Gradnik"
632
 
633
+ #: class.php:2394 settings.php:4402
634
  msgid "PHP function call"
635
  msgstr "Klic PHP funkcije"
636
 
677
  msgid "ALL"
678
  msgstr "VSI"
679
 
680
+ #: class.php:2779 class.php:2820 class.php:4224 strings.php:279
681
  msgctxt "Block"
682
  msgid "HIDDEN"
683
  msgstr "SKRIT"
684
 
685
+ #: class.php:2827 class.php:4227 strings.php:278
686
  msgctxt "Block"
687
  msgid "VISIBLE"
688
  msgstr "VIDEN"
689
 
690
+ #: class.php:3422 class.php:3500
691
  msgid "ACTIVE GROUPS"
692
  msgstr "AKTIVNE SKUPINE"
693
 
694
+ #: class.php:3912
695
  msgid "start='%s' end='%s' days='%s' type='%s'"
696
  msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
697
 
698
+ #: class.php:3920
699
  msgid "parameters='%s' type='%s'"
700
  msgstr "parametri='%s' tip='%s'"
701
 
702
  #. translators: %s: list parameters and type
703
+ #: class.php:3922
704
  msgid "referers='%s' type='%s'"
705
  msgstr "napotitelji='%s' tip='%s'"
706
 
707
  #. translators: %s: list parameters and type
708
+ #: class.php:3924
709
  msgid "clients='%s' type='%s'"
710
  msgstr "odjemalci='%s' tip='%s'"
711
 
712
  #. translators: %s: list parameters and type
713
+ #: class.php:4107
714
  msgid "countries='%s' type='%s'"
715
  msgstr "države='%s' tip='%s'"
716
 
717
  #. translators: %s: list parameters and type
718
+ #: class.php:4109
719
  msgid "ip addresses='%s' type='%s'"
720
  msgstr "ip naslovi='%s' tip='%s'"
721
 
722
+ #: class.php:4224 class.php:4227
723
  msgid "viewport='%s' type='%s'"
724
  msgstr "pogled='%s' tip='%s'"
725
 
726
+ #: class.php:4649 strings.php:272
727
  msgid "BEFORE"
728
  msgstr "PRED"
729
 
730
+ #: class.php:4657 strings.php:274
731
  msgid "PREPEND CONTENT"
732
  msgstr "DODAJ PRED VSEBINO"
733
 
734
+ #: class.php:4661 strings.php:275
735
  msgid "APPEND CONTENT"
736
  msgstr "DODAJ ZA VSEBINO"
737
 
738
+ #: class.php:4665 strings.php:276
739
  msgid "REPLACE CONTENT"
740
  msgstr "NADOMESTI VSEBINO"
741
 
742
+ #: class.php:4669 strings.php:277
743
  msgid "REPLACE ELEMENT"
744
  msgstr "NADOMESTI ELEMENT"
745
 
746
+ #: class.php:4680 strings.php:273
747
  msgid "AFTER"
748
  msgstr "ZA"
749
 
750
+ #: class.php:4750 includes/preview.php:2369 includes/preview.php:2406
751
  msgid "Code"
752
  msgstr "Koda"
753
 
754
+ #: class.php:4753
755
  msgid "for block"
756
  msgstr "za blok"
757
 
758
+ #: class.php:8849
759
  msgid ""
760
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
761
  "extension for PHP."
763
  "NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
764
  "namestiti DOM razširitev za PHP."
765
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
766
  #: includes/editor.php:4 includes/placeholders.php:350
767
  #: includes/preview.php:2310 strings.php:285
768
  msgid "Use"
773
  msgstr "Ponastavi"
774
 
775
  #: includes/editor.php:6 includes/placeholders.php:352
776
+ #: includes/preview.php:2313 settings.php:3727 strings.php:227 strings.php:284
777
  msgid "Cancel"
778
  msgstr "Prekliči"
779
 
858
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
859
 
860
  #: includes/functions-check-now.php:451 includes/functions.php:466
861
+ #: settings.php:1437 settings.php:1477 settings.php:2932
862
  msgid "Open HTML element selector"
863
  msgstr "Odpri izbirnik HTML elementa"
864
 
883
  msgstr " - globalno sledenje onemogočeno"
884
 
885
  #: includes/functions-check-now.php:492 includes/functions.php:508
886
+ #: includes/functions.php:3495
887
  msgid "Generate PDF report"
888
  msgstr "Generiraj PDF poročilo"
889
 
896
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
897
 
898
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
899
+ #: includes/functions.php:544 includes/functions.php:3476
900
  msgid "Toggle Statistics"
901
  msgstr "Preklopi Statistiko"
902
 
920
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
921
 
922
  #: includes/functions-check-now.php:555 includes/functions.php:584
923
+ #: settings.php:1191 settings.php:2368
924
  msgid "Save Settings"
925
  msgstr "Shrani Nastavitve"
926
 
976
  msgstr "Zamik sprožilnega elementa"
977
 
978
  #: includes/functions-check-now.php:721 includes/functions.php:756
979
+ #: settings.php:1492
980
  msgid "Delay"
981
  msgstr "Zakasnitev"
982
 
994
 
995
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
996
  #: includes/functions-check-now.php:2545 includes/functions.php:870
997
+ #: includes/functions.php:2830 includes/functions.php:2846
998
  msgid "Tracking is globally disabled"
999
  msgstr "Sledenje je globalno onemogočeno"
1000
 
1001
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1002
  #: includes/functions-check-now.php:2549 includes/functions.php:874
1003
+ #: includes/functions.php:2834 includes/functions.php:2850
1004
  msgid "Tracking for this block is disabled"
1005
  msgstr "Sledenje za ta blok je onemogočeno"
1006
 
1009
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
1010
 
1011
  #: includes/functions-check-now.php:786 includes/functions.php:887
1012
+ #: settings.php:3662 settings.php:3698 settings.php:3740 strings.php:240
1013
  msgid "Loading..."
1014
  msgstr "Nalagam..."
1015
 
1026
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
1027
 
1028
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1029
+ #: includes/functions.php:915 includes/functions.php:6532
1030
  msgid "Load data for last month"
1031
  msgstr "Naloži podatke za zadnji mesec"
1032
 
1033
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1034
+ #: includes/functions.php:915 includes/functions.php:6532
1035
  msgid "Last Month"
1036
  msgstr "Zadnji Mesec"
1037
 
1038
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1039
+ #: includes/functions.php:918 includes/functions.php:6535
1040
  msgid "Load data for this month"
1041
  msgstr "Naloži podatke za ta mesec"
1042
 
1043
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1044
+ #: includes/functions.php:918 includes/functions.php:6535
1045
  msgid "This Month"
1046
  msgstr "Ta Mesec"
1047
 
1048
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1049
+ #: includes/functions.php:921 includes/functions.php:6538
1050
  msgid "Load data for this year"
1051
  msgstr "Naloži podatke za to leto"
1052
 
1053
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1054
+ #: includes/functions.php:921 includes/functions.php:6538
1055
  msgid "This Year"
1056
  msgstr "To Leto"
1057
 
1058
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1059
+ #: includes/functions.php:924 includes/functions.php:6541
1060
  msgid "Load data for the last 15 days"
1061
  msgstr "Naloži podatke za zadnjih 15 dni"
1062
 
1063
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1064
+ #: includes/functions.php:927 includes/functions.php:6544
1065
  msgid "Load data for the last 30 days"
1066
  msgstr "Naloži podatke za zadnjih 30 dni"
1067
 
1068
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1069
+ #: includes/functions.php:930 includes/functions.php:6547
1070
  msgid "Load data for the last 90 days"
1071
  msgstr "Naloži podatke za zadnjih 90 dni"
1072
 
1073
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1074
+ #: includes/functions.php:933 includes/functions.php:6550
1075
  msgid "Load data for the last 180 days"
1076
  msgstr "Naloži podatke za zadnjih 180 dni"
1077
 
1078
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1079
+ #: includes/functions.php:936 includes/functions.php:6553
1080
  msgid "Load data for the last 365 days"
1081
  msgstr "Naloži podatke za zadnjih 365 dni"
1082
 
1083
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1084
+ #: includes/functions.php:946 includes/functions.php:6563
1085
  msgid "Load data for the selected range"
1086
  msgstr "Naloži podatke za izbrano obdobje"
1087
 
1166
  msgstr "Mesta"
1167
 
1168
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1169
+ #: includes/functions.php:1066 includes/functions.php:3441
1170
  msgid "Toggle country editor"
1171
  msgstr "Preklopi urejevalnik držav"
1172
 
1175
  msgstr "Preklopi urejevalnik mest"
1176
 
1177
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1178
+ #: includes/functions.php:1073 includes/functions.php:3444
1179
  msgid "Comma separated country ISO Alpha-2 codes"
1180
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1181
 
1188
  msgstr "Beli seznam držav"
1189
 
1190
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1191
+ #: includes/functions.php:1558 includes/functions.php:1869
1192
  msgid "Enter license key"
1193
  msgstr "Vnesite licenčni ključ"
1194
 
1195
  #. translators: %s: Ad Inserter Pro
1196
+ #: includes/functions-check-now.php:1388 includes/functions.php:1564
1197
  msgid ""
1198
  "%s license key is not set. Plugin functionality is limited and updates are "
1199
  "disabled."
1202
  "posodobitve onemogočene."
1203
 
1204
  #. translators: %s: Ad Inserter Pro
1205
+ #: includes/functions-check-now.php:1402 includes/functions.php:1578
1206
  msgid "Warning: %s plugin update server is not accessible"
1207
  msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
1208
 
1209
  #. translators: updates are not available
1210
+ #: includes/functions-check-now.php:1404 includes/functions.php:1580
1211
  msgid "updates"
1212
  msgstr "posodobitve"
1213
 
1214
  #. translators: updates are not available
1215
+ #: includes/functions-check-now.php:1406 includes/functions.php:1582
1216
  msgid "are not available"
1217
  msgstr "niso na razpolago"
1218
 
1219
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1220
+ #: includes/functions.php:1587 includes/functions.php:1878
1221
  msgid "Check license key"
1222
  msgstr "Preverite licenčni ključ"
1223
 
1224
  #. translators: %s: Ad Inserter Pro
1225
+ #: includes/functions-check-now.php:1417 includes/functions.php:1593
1226
  msgid "Invalid %s license key."
1227
  msgstr "Neveljaven %s licenčni ključ."
1228
 
1229
  #. translators: %s: Ad Inserter Pro
1230
+ #: includes/functions-check-now.php:1426 includes/functions.php:1602
1231
  msgid "%s license expired. Plugin updates are disabled."
1232
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1233
 
1234
+ #: includes/functions-check-now.php:1427 includes/functions.php:1603
1235
  msgid "Renew license"
1236
  msgstr "Obnovite licenco"
1237
 
1238
  #. translators: %s: Ad Inserter Pro
1239
+ #: includes/functions-check-now.php:1435 includes/functions.php:1611
1240
  msgid "%s license overused. Plugin updates are disabled."
1241
  msgstr ""
1242
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1243
 
1244
+ #: includes/functions-check-now.php:1436 includes/functions.php:1612
1245
  msgid "Manage licenses"
1246
  msgstr "Upravljajte z licencami"
1247
 
1248
+ #: includes/functions-check-now.php:1436 includes/functions.php:1612
1249
  msgid "Upgrade license"
1250
  msgstr "Nadgradite licenco"
1251
 
1252
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1253
+ #: includes/functions-check-now.php:1683 includes/functions.php:1871
1254
  msgid ""
1255
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1256
  "limited and updates are disabled."
1259
  "so omejene in posodobitve onemogočene."
1260
 
1261
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1262
+ #: includes/functions-check-now.php:1692 includes/functions.php:1880
1263
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1264
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1265
 
1266
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1267
+ #: includes/functions-check-now.php:1708 includes/functions.php:1896
1268
  msgid ""
1269
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1270
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1274
  "pogrešate. %3$s"
1275
 
1276
  #. translators: 1, 3: HTML tags, 2: percentage
1277
+ #: includes/functions-check-now.php:1715 includes/functions.php:1903
1278
  msgid ""
1279
  "During the license period and 30 days after the license has expired we offer "
1280
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1282
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1283
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1284
 
1285
+ #: includes/functions-check-now.php:1725 includes/functions.php:1913
1286
  msgid "No, thank you."
1287
  msgstr "Ne, hvala."
1288
 
1289
+ #: includes/functions-check-now.php:1728 includes/functions.php:1916
1290
  msgid "Not now, maybe later."
1291
  msgstr "Ne zdaj, mogoče kasneje."
1292
 
1293
+ #: includes/functions-check-now.php:1742 includes/functions.php:1930
1294
  msgid "Renew the licence"
1295
  msgstr "Obnovi licenco"
1296
 
1297
+ #: includes/functions-check-now.php:1744 includes/functions.php:1932
1298
  msgid "Update license status"
1299
  msgstr "Posodobi status licence"
1300
 
1301
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1302
+ #: includes/functions-check-now.php:1755 includes/functions.php:1945
1303
  msgid ""
1304
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1305
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1309
  "Nadgradite licenco %7$s"
1310
 
1311
  #. Translators: %s: HTML tag
1312
+ #: includes/functions-check-now.php:1777 includes/functions.php:2000
1313
  msgid "Warning: %s MaxMind IP geolocation database not found."
1314
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1315
 
1316
+ #: includes/functions-check-now.php:2330 includes/functions.php:2623
1317
  msgid "Geolocation"
1318
  msgstr "Geolokacija"
1319
 
1320
+ #: includes/functions-check-now.php:2334 includes/functions.php:2627
1321
+ #: settings.php:4391
1322
  msgid "Exceptions"
1323
  msgstr "Izjeme"
1324
 
1325
+ #: includes/functions-check-now.php:2339 includes/functions.php:2632
1326
  msgid "Multisite"
1327
  msgstr "Multisite"
1328
 
1329
+ #: includes/functions-check-now.php:2344 includes/functions.php:2637
1330
+ #: settings.php:4397
1331
  msgid "Tracking"
1332
  msgstr "Sledenje"
1333
 
1334
  #. translators: %d: days, hours, minutes
1335
+ #: includes/functions-check-now.php:2375 includes/functions.php:2668
1336
  msgid "Scheduled in %d days %d hours %d minutes"
1337
  msgstr "Planirano v %d dneh %d urah %d minutah"
1338
 
1339
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1340
  #. HTML code for long dash separator
1341
+ #: includes/functions-check-now.php:2384 includes/functions.php:2677
1342
  msgid "Active %s expires in %d days %d hours %d minutes"
1343
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1344
 
1345
+ #: includes/functions-check-now.php:2388 includes/functions.php:2681
1346
  msgid "Expired"
1347
  msgstr "Poteklo"
1348
 
1349
+ #: includes/functions-check-now.php:2396 includes/functions.php:2707
1350
+ #: settings.php:1547 settings.php:1562 settings.php:1684 settings.php:2255
1351
  msgid "and"
1352
  msgstr "in"
1353
 
1354
+ #: includes/functions-check-now.php:2399 includes/functions.php:2689
1355
  msgid "fallback"
1356
  msgstr "rezerva"
1357
 
1358
+ #: includes/functions-check-now.php:2400 includes/functions.php:2690
1359
  msgid "Block to be used when scheduling expires"
1360
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1361
 
1362
+ #: includes/functions-check-now.php:2425 includes/functions.php:2727
1363
  msgid "Load in iframe"
1364
  msgstr "Naloži v iframe-u"
1365
 
1366
+ #: includes/functions-check-now.php:2429 includes/functions.php:2731
1367
+ #: includes/placeholders.php:387 settings.php:1155 settings.php:2282
1368
  msgid "Width"
1369
  msgstr "Širina"
1370
 
1371
+ #: includes/functions-check-now.php:2430 includes/functions.php:2732
1372
  msgid "iframe width, empty means full width (100%)"
1373
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1374
 
1375
+ #: includes/functions-check-now.php:2436 includes/functions.php:2738
1376
+ #: includes/placeholders.php:382 settings.php:1161 settings.php:2286
1377
  msgid "Height"
1378
  msgstr "Višina"
1379
 
1380
+ #: includes/functions-check-now.php:2437 includes/functions.php:2739
1381
  msgid "iframe height, empty means adjust it to iframe content height"
1382
  msgstr ""
1383
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1384
 
1385
+ #: includes/functions-check-now.php:2444 includes/functions.php:2746
1386
  msgid "Ad label in iframe"
1387
  msgstr "Oznaka oglasa v iframe-u"
1388
 
1389
+ #: includes/functions-check-now.php:2449 includes/functions.php:2751
1390
  msgid "Preview iframe code"
1391
  msgstr "Predpreglej kodo iframe"
1392
 
1393
+ #: includes/functions-check-now.php:2449 includes/functions.php:2751
1394
+ #: includes/preview.php:2322 settings.php:1186 settings.php:2994
1395
  msgid "Preview"
1396
  msgstr "Predogled"
1397
 
1398
+ #: includes/functions-check-now.php:2463 includes/functions.php:2765
1399
+ #: settings.php:4398
1400
  msgid "Limits"
1401
  msgstr "Omejitve"
1402
 
1403
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1404
+ #: includes/functions-check-now.php:4429 includes/functions.php:2770
1405
+ #: includes/functions.php:5304 includes/functions.php:5369 settings.php:2415
1406
  msgid "Ad Blocking"
1407
  msgstr "Blokiranje Oglasov"
1408
 
1409
  #. translators: 1, 2 and 3, 4: HTML tags
1410
+ #: includes/functions-check-now.php:2477 includes/functions.php:2779
1411
  msgid ""
1412
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1413
  "for tracking!"
1417
 
1418
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1419
  #. header
1420
+ #: includes/functions-check-now.php:2486 includes/functions.php:2788
1421
  msgid ""
1422
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1423
  "enabled and automatic insertion %6$s!"
1425
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1426
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1427
 
1428
+ #: includes/functions-check-now.php:2553 includes/functions.php:2854
1429
  msgid "Click fraud protection is globally disabled"
1430
  msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
1431
 
1432
+ #: includes/functions-check-now.php:2557
1433
  msgid "Max clicks per time period are not defined"
1434
  msgstr "Največje število klikov na časovno enoto ni definirano"
1435
 
1436
  #. Translators: Max n impressions
1437
+ #: includes/functions-check-now.php:2571 includes/functions.php:2868
1438
  msgid "General limits"
1439
  msgstr "Splošne omejitve"
1440
 
1441
  #. Translators: Max n impressions per x days
1442
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1443
+ #: includes/functions-check-now.php:2674 includes/functions.php:2874
1444
+ #: includes/functions.php:2886 includes/functions.php:2971
1445
  msgid "Current value"
1446
  msgstr "Trenutna vrednost"
1447
 
1457
  #: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
1458
  #: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
1459
  #: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
1460
+ #: includes/functions.php:2893 includes/functions.php:2903
1461
+ #: includes/functions.php:2922 includes/functions.php:2932
1462
+ #: includes/functions.php:2978 includes/functions.php:2987
1463
+ #: includes/functions.php:3005 includes/functions.php:3014 settings.php:2167
1464
  msgid "Max"
1465
  msgstr "Največ"
1466
 
1467
+ #: includes/functions-check-now.php:2597 includes/functions.php:2894
1468
  msgid ""
1469
  "Maximum number of impressions for this block. Empty means no general "
1470
  "impression limit."
1478
  #. Translators: Max n impressions per x days
1479
  #: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
1480
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1481
+ #: includes/functions.php:2896 includes/functions.php:2906
1482
+ #: includes/functions.php:2981 includes/functions.php:2990
1483
  msgid "impression"
1484
  msgid_plural "impressions"
1485
  msgstr[0] "prikaz"
1487
  msgstr[2] "prikazi"
1488
  msgstr[3] "prikazov"
1489
 
1490
+ #: includes/functions-check-now.php:2607 includes/functions.php:2904
1491
  msgid ""
1492
  "Maximum number of impressions per time period. Empty means no time limit."
1493
  msgstr ""
1500
  #. Translators: Max n clicks per x days
1501
  #: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
1502
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1503
+ #: includes/functions.php:2910 includes/functions.php:2939
1504
+ #: includes/functions.php:2994 includes/functions.php:3021
1505
+ #: includes/functions.php:3705
1506
  msgid "per"
1507
  msgstr "na"
1508
 
1509
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1510
+ #: includes/functions.php:2911 includes/functions.php:2940
1511
  msgid "Time period in days. Empty means no time limit."
1512
  msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
1513
 
1519
  #: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
1520
  #: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
1521
  #: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
1522
+ #: includes/functions.php:2913 includes/functions.php:2942
1523
+ #: includes/functions.php:2997 includes/functions.php:3024
1524
+ #: includes/functions.php:3130 includes/functions.php:3708
1525
+ #: includes/functions.php:3718 strings.php:218 strings.php:219 strings.php:220
1526
+ #: strings.php:221 strings.php:222 strings.php:223
1527
  msgid "day"
1528
  msgid_plural "days"
1529
  msgstr[0] "dan"
1531
  msgstr[2] "dni"
1532
  msgstr[3] "dni"
1533
 
1534
+ #: includes/functions-check-now.php:2626 includes/functions.php:2923
1535
  msgid ""
1536
  "Maximum number of clicks on this block. Empty means no general click limit."
1537
  msgstr ""
1544
  #. Translators: Max n clicks per x days
1545
  #: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
1546
  #: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
1547
+ #: includes/functions-check-now.php:4577 includes/functions.php:2925
1548
+ #: includes/functions.php:2935 includes/functions.php:3008
1549
+ #: includes/functions.php:3017 includes/functions.php:3705
1550
+ #: includes/functions.php:5655
1551
  msgid "click"
1552
  msgid_plural "clicks"
1553
  msgstr[0] "klik"
1555
  msgstr[2] "kliki"
1556
  msgstr[3] "klikov"
1557
 
1558
+ #: includes/functions-check-now.php:2636 includes/functions.php:2933
1559
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1560
  msgstr ""
1561
  "Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
1562
  "omejitev."
1563
 
1564
+ #: includes/functions-check-now.php:2661 includes/functions.php:2958
1565
  msgid "Individual visitor limits"
1566
  msgstr "Omejitve posameznih obiskovalcev"
1567
 
1568
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1569
+ #: includes/functions.php:2962 includes/functions.php:2964
1570
  msgid ""
1571
  "When specified number of clicks on this block for a visitor will be reached "
1572
  "in the specified time period, all blocks that have click fraud protection "
1578
  "splošnih nastavitvah vtičnika, skriti vsi bloki, ki imajo omogočeno zaščito "
1579
  "pred goljufijo s kliki."
1580
 
1581
+ #: includes/functions-check-now.php:2667 includes/functions.php:2964
1582
  msgid "Trigger click fraud protection"
1583
  msgstr "Sproži zaščito pred goljufijo s kliki"
1584
 
1585
+ #: includes/functions-check-now.php:2682 includes/functions.php:2979
1586
  msgid ""
1587
  "Maximum number of impressions of this block for each visitor. Empty means no "
1588
  "impression limit."
1590
  "Največje število prikazov tega bloka za posameznega obiskovalca. Prazno "
1591
  "pomeni brez omejitev prikazov."
1592
 
1593
+ #: includes/functions-check-now.php:2691 includes/functions.php:2988
1594
  msgid ""
1595
  "Maximum number of impressions per time period for each visitor. Empty means "
1596
  "no impression limit per time period for visitors."
1599
  "Prazno pomeni brez omejitev prikazov na časovno enoto za obiskovalce."
1600
 
1601
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1602
+ #: includes/functions.php:2995 includes/functions.php:3022
1603
+ #: includes/functions.php:3708
1604
  msgid ""
1605
  "Time period in days. Use decimal value (with decimal point) for shorter "
1606
  "periods. Empty means no time limit."
1608
  "Časovno obdobje v dnevih. Uporabite decimalno vrednost (z decimalno piko) za "
1609
  "krajša obdobja. Prazno pomeni brez časovne omejitve."
1610
 
1611
+ #: includes/functions-check-now.php:2709 includes/functions.php:3006
1612
  msgid ""
1613
  "Maximum number of clicks on this block for each visitor. Empty means no "
1614
  "click limit."
1616
  "Največje število klikov na ta blok za posameznega obiskovalca. Prazno pomeni "
1617
  "brez omejitev klikov."
1618
 
1619
+ #: includes/functions-check-now.php:2718 includes/functions.php:3015
1620
+ #: includes/functions.php:3705
1621
  msgid ""
1622
  "Maximum number of clicks per time period for each visitor. Empty means no "
1623
  "click limit per time period for visitors."
1625
  "Največje število klikov na časovno enoto za posameznega obiskovalca. Prazno "
1626
  "pomeni brez omejitev klikov na časovno enoto za obiskovalce."
1627
 
1628
+ #: includes/functions-check-now.php:2744 includes/functions.php:3041
1629
  msgid "When ad blocking is detected"
1630
  msgstr "Ko je blokiranje oglasov zaznano"
1631
 
1632
+ #: includes/functions-check-now.php:2753 includes/functions.php:3050
1633
  msgid "replacement"
1634
  msgstr "nadomestek"
1635
 
1636
+ #: includes/functions-check-now.php:2754 includes/functions.php:3051
1637
  msgid "Block to be shown when ad blocking is detected"
1638
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1639
 
1640
+ #: includes/functions-check-now.php:2755 includes/functions.php:3052
1641
  msgctxt "replacement"
1642
  msgid "None"
1643
  msgstr "Noben"
1644
 
1645
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1646
+ #: includes/functions.php:3069 includes/functions.php:6776
1647
  msgid "Close button"
1648
  msgstr "Gumb Zapri"
1649
 
1650
+ #: includes/functions-check-now.php:2824 includes/functions.php:3121
1651
  msgid "Auto close after"
1652
  msgstr "Ssamodejno zapri po"
1653
 
1654
+ #: includes/functions-check-now.php:2825 includes/functions.php:3122
1655
  msgid ""
1656
  "Time in seconds in which the ad will automatically close. Leave empty to "
1657
  "disable auto closing."
1660
  "izključitev samodejnega zapiranja."
1661
 
1662
  #. Translators: Don't show for x days
1663
+ #: includes/functions-check-now.php:2830 includes/functions.php:3127
1664
  msgid "Don't show for"
1665
  msgstr "Ne prikaži"
1666
 
1667
+ #: includes/functions-check-now.php:2831 includes/functions.php:3128
1668
  msgid ""
1669
  "Time in days in which closed ad will not be shown again. Use decimal value "
1670
  "(with decimal point) for shorter time period or leave empty to show it again "
1675
  "prazno, da se spet prikaže pri ponovnem nalaganju strani."
1676
 
1677
  #. Translators: Delay showing for x pageviews
1678
+ #: includes/functions-check-now.php:2851 includes/functions.php:3148
1679
  msgid "Delay showing for"
1680
  msgstr "Zakasni prikaz za"
1681
 
1682
+ #: includes/functions-check-now.php:2852 includes/functions.php:3149
1683
  msgid ""
1684
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1685
  "empty to insert the code for the first pageview."
1690
  #. Translators: Delay showing for x pageviews
1691
  #. Translators: Show every x pageviews
1692
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1693
+ #: includes/functions.php:3151 includes/functions.php:3158
1694
  msgid "pageview"
1695
  msgid_plural "pageviews"
1696
  msgstr[0] "ogled strani"
1699
  msgstr[3] "ogledov strani"
1700
 
1701
  #. Translators: Show every x pageviews
1702
+ #: includes/functions-check-now.php:2858 includes/functions.php:3155
1703
  msgid "Show every"
1704
  msgid_plural "Show every"
1705
  msgstr[0] "Prikaži vsak"
1707
  msgstr[2] "Prikaži vsake"
1708
  msgstr[3] "Prikaži vsakih"
1709
 
1710
+ #: includes/functions-check-now.php:2859 includes/functions.php:3156
1711
  msgid ""
1712
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1713
  "for every pageview."
1715
  "Število ogledov strani za ponovno vstavljanje kode. Pustite prazno za "
1716
  "vstavljanje kode pri vsakem ogledu strani."
1717
 
1718
+ #: includes/functions-check-now.php:2878 includes/functions.php:3179
1719
+ #: settings.php:926
1720
  msgid "Lazy loading"
1721
  msgstr "Leno nalaganje"
1722
 
1723
  #. Translators: %s MaxMind
1724
+ #: includes/functions-check-now.php:2935 includes/functions.php:3365
1725
  msgid "This product includes GeoLite2 data created by %s"
1726
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1727
 
1728
+ #: includes/functions-check-now.php:2946 includes/functions.php:3378
1729
  msgid "IP geolocation database"
1730
  msgstr "Podatkovna baza za IP geolokacijo"
1731
 
1732
+ #: includes/functions-check-now.php:2949 includes/functions.php:3381
1733
  msgid "Select IP geolocation database."
1734
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1735
 
1736
+ #: includes/functions-check-now.php:2960 includes/functions.php:3392
1737
  msgid "Automatic database updates"
1738
  msgstr "Samodejna posodobitev podatkovne baze"
1739
 
1740
+ #: includes/functions-check-now.php:2963 includes/functions.php:3395
1741
  msgid ""
1742
  "Automatically download and update free GeoLite2 IP geolocation database by "
1743
  "MaxMind"
1745
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1746
  "podatkovno bazo MaxMind"
1747
 
1748
+ #: includes/functions-check-now.php:2971 includes/functions.php:3412
1749
  msgid "Database"
1750
  msgstr "Podatkovna baza"
1751
 
1752
+ #: includes/functions-check-now.php:2974 includes/functions.php:3415
1753
  msgid ""
1754
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1755
  msgstr ""
1757
  "podatkovne baze"
1758
 
1759
  #. translators: %d: group number
1760
+ #: includes/functions-check-now.php:2992 includes/functions.php:3433
1761
  msgid "Group %d"
1762
  msgstr "Skupina %d"
1763
 
1764
+ #: includes/functions-check-now.php:2998 includes/functions.php:3439
1765
  msgid "countries"
1766
  msgstr "države"
1767
 
1768
+ #: includes/functions-check-now.php:3043 includes/functions.php:3484
1769
  msgid ""
1770
  "Enable impression and click tracking. You also need to enable tracking for "
1771
  "each block you want to track."
1777
  msgid "Generate report"
1778
  msgstr "Generiraj poročilo"
1779
 
1780
+ #: includes/functions-check-now.php:3058 includes/functions.php:3503
1781
  msgid "Impression and Click Tracking"
1782
  msgstr "Sledenje Prikazov in Klikov"
1783
 
1784
+ #: includes/functions-check-now.php:3059 includes/functions.php:3504
1785
+ #: settings.php:2882
1786
  msgctxt "ad blocking detection"
1787
  msgid "NOT ENABLED"
1788
  msgstr "NI OMOGOČENO"
1789
 
1790
+ #: includes/functions-check-now.php:3075 includes/functions.php:3520
1791
  msgid "Internal"
1792
  msgstr "Notranje"
1793
 
1794
+ #: includes/functions-check-now.php:3079 includes/functions.php:3524
1795
  msgid "Track impressions and clicks with internal tracking and statistics"
1796
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1797
 
1798
+ #: includes/functions-check-now.php:3084 includes/functions.php:3529
1799
  msgid "External"
1800
  msgstr "Zunanje"
1801
 
1802
+ #: includes/functions-check-now.php:3088 includes/functions.php:3533
1803
  msgid ""
1804
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1805
  "code installed)"
1807
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1808
  "kodo za sledenje)"
1809
 
1810
+ #: includes/functions-check-now.php:3093 includes/functions.php:3538
1811
  msgid "Track Pageviews"
1812
  msgstr "Sledi Ogledom Strani"
1813
 
1814
+ #: includes/functions-check-now.php:3099 includes/functions.php:3544
1815
  msgid "Track Pageviews by Device (as configured for viewports)"
1816
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1817
 
1818
+ #: includes/functions-check-now.php:3109 includes/functions.php:3554
1819
  msgid "Track for Logged in Users"
1820
  msgstr "Sledi za Prijavljene Upor."
1821
 
1822
+ #: includes/functions-check-now.php:3115 includes/functions.php:3560
1823
  msgid "Track impressions and clicks from logged in users"
1824
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1825
 
1826
+ #: includes/functions-check-now.php:3125 includes/functions.php:3570
1827
  msgid "Click Detection"
1828
  msgstr "Zaznavanje klikov"
1829
 
1830
+ #: includes/functions-check-now.php:3131 includes/functions.php:3576
1831
  msgid ""
1832
  "Standard method detects clicks only on banners with links, Advanced method "
1833
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1835
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1836
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1837
 
1838
+ #: includes/functions-check-now.php:3150 includes/functions.php:3691
1839
  msgid "Click fraud protection"
1840
  msgstr "Zaščita pred goljufijo s kliki"
1841
 
1842
+ #: includes/functions-check-now.php:3154 includes/functions.php:3695
1843
  msgid "Globally enable click fraud protection for selected blocks."
1844
  msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
1845
 
1846
+ #: includes/functions-check-now.php:3160 includes/functions.php:3715
1847
  msgid "Protection time"
1848
  msgstr "Čas zaščite"
1849
 
1850
+ #: includes/functions-check-now.php:3161 includes/functions.php:3718
1851
  msgid ""
1852
  "Time period in days in which blocks with enabled click fraud protection will "
1853
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1856
  "goljufijo s kliki, skriti. Uporabite decimalno vrednost (z decimalno piko) "
1857
  "za krajša obdobja."
1858
 
1859
+ #: includes/functions-check-now.php:3180 includes/functions.php:3604
1860
  msgid "Report header image"
1861
  msgstr "Slika v glavi poročila"
1862
 
1870
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1871
  "ponastavitev na privzeto sliko."
1872
 
1873
+ #: includes/functions-check-now.php:3184 includes/functions.php:3608
1874
  #: strings.php:252
1875
  msgid "Select or upload header image"
1876
  msgstr "Izberi ali naloži sliko glave"
1877
 
1878
+ #: includes/functions-check-now.php:3189 includes/functions.php:3613
1879
  msgid "Report header title"
1880
  msgstr "Naslov v glavi poročila"
1881
 
1882
+ #: includes/functions-check-now.php:3192 includes/functions.php:3616
1883
  msgid ""
1884
  "Title to be displayed in the header of the statistics report. Text or HTML "
1885
  "code, clear to reset to default text."
1887
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1888
  "pobrišite za ponastavitev na privzeto besedilo."
1889
 
1890
+ #: includes/functions-check-now.php:3197 includes/functions.php:3621
1891
  msgid "Report header description"
1892
  msgstr "Opis v glavi poročila"
1893
 
1894
+ #: includes/functions-check-now.php:3200 includes/functions.php:3624
1895
  msgid ""
1896
  "Description to be displayed in the header of the statistics report. Text or "
1897
  "HTML code, clear to reset to default text."
1899
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1900
  "pobrišite za ponastavitev na privzeto besedilo."
1901
 
1902
+ #: includes/functions-check-now.php:3205 includes/functions.php:3629
1903
  msgid "Report footer"
1904
  msgstr "Noga poročila"
1905
 
1906
+ #: includes/functions-check-now.php:3208 includes/functions.php:3632
1907
  msgid ""
1908
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1909
  "to default text."
1911
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1912
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1913
 
1914
+ #: includes/functions-check-now.php:3213 includes/functions.php:3637
1915
  msgid "Public report key"
1916
  msgstr "Ključ za javno poročilo"
1917
 
1918
+ #: includes/functions-check-now.php:3216 includes/functions.php:3640
1919
  msgid "String to generate unique report IDs. Clear to reset to default value."
1920
  msgstr ""
1921
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1922
  "privzeto vrednost."
1923
 
1924
+ #: includes/functions-check-now.php:3248 includes/functions.php:3770
1925
  msgid "Are you sure you want to clear all exceptions for block"
1926
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1927
 
1928
+ #: includes/functions-check-now.php:3249 includes/functions.php:3771
1929
  msgid "Clear all exceptions for block"
1930
  msgstr "Pobriši vse izjeme za blok"
1931
 
1932
+ #: includes/functions-check-now.php:3256 includes/functions.php:3778
1933
  msgid "Are you sure you want to clear all exceptions?"
1934
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1935
 
1936
+ #: includes/functions-check-now.php:3256 includes/functions.php:3778
1937
  msgid "Clear all exceptions for all blocks"
1938
  msgstr "Pobriši vse izjeme za vse bloke"
1939
 
1940
+ #: includes/functions-check-now.php:3261 includes/functions.php:3783
1941
+ #: settings.php:3974 settings.php:4474
1942
  msgid "Type"
1943
  msgstr "Vrsta"
1944
 
1945
+ #: includes/functions-check-now.php:3279 includes/functions.php:3801
1946
  msgid "View"
1947
  msgstr "Poglej"
1948
 
1949
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1950
+ #: includes/functions-check-now.php:3291 includes/functions.php:3802
1951
+ #: includes/functions.php:3809 includes/functions.php:3813
1952
+ #: includes/placeholders.php:351 includes/preview.php:2692 settings.php:1423
1953
+ #: settings.php:3731
1954
  msgid "Edit"
1955
  msgstr "Uredi"
1956
 
1957
+ #: includes/functions-check-now.php:3310 includes/functions.php:3832
1958
  msgid "Are you sure you want to clear all exceptions for"
1959
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1960
 
1961
+ #: includes/functions-check-now.php:3311 includes/functions.php:3833
1962
  msgid "Clear all exceptions for"
1963
  msgstr "Pobriši vse izjeme za"
1964
 
1965
+ #: includes/functions-check-now.php:3324 includes/functions.php:3846
1966
  msgid "No exceptions"
1967
  msgstr "Brez izjem"
1968
 
1969
  #. translators: %s: Ad Inserter Pro
1970
+ #: includes/functions-check-now.php:3335 includes/functions.php:3857
1971
  msgid "%s options for network blogs"
1972
  msgstr "%s izbire za omrežne bloge"
1973
 
1974
  #. translators: %s: Ad Inserter Pro
1975
+ #: includes/functions-check-now.php:3340 includes/functions.php:3862
1976
  msgid "Enable %s widgets for sub-sites"
1977
  msgstr "Omogoči %s gradnik za pod-spletišča"
1978
 
1979
+ #: includes/functions-check-now.php:3340 includes/functions.php:3862
1980
  msgid "Widgets"
1981
  msgstr "Gradniki"
1982
 
1983
+ #: includes/functions-check-now.php:3345 includes/functions.php:3867
1984
  msgid "Enable PHP code processing for sub-sites"
1985
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1986
 
1987
+ #: includes/functions-check-now.php:3345 includes/functions.php:3867
1988
  msgid "PHP Processing"
1989
  msgstr "PHP Procesiranje"
1990
 
1991
  #. translators: %s: Ad Inserter Pro
1992
+ #: includes/functions-check-now.php:3350 includes/functions.php:3872
1993
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1994
  msgstr ""
1995
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1996
 
1997
+ #: includes/functions-check-now.php:3350 includes/functions.php:3872
1998
  msgid "Post/Page exceptions"
1999
  msgstr "Izjeme prispevkov/strani"
2000
 
2001
  #. translators: %s: Ad Inserter Pro
2002
+ #: includes/functions-check-now.php:3355 includes/functions.php:3877
2003
  msgid "Enable %s settings page for sub-sites"
2004
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
2005
 
2006
+ #: includes/functions-check-now.php:3355 includes/functions.php:3877
2007
  msgid "Settings page"
2008
  msgstr "Stran z nastavitvami"
2009
 
2010
  #. translators: %s: Ad Inserter Pro
2011
+ #: includes/functions-check-now.php:3360 includes/functions.php:3882
2012
  msgid "Enable %s settings of main site to be used for all blogs"
2013
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
2014
 
2015
+ #: includes/functions-check-now.php:3360 includes/functions.php:3882
2016
  msgid "Main site settings used for all blogs"
2017
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
2018
 
2019
+ #: includes/functions-check-now.php:3371 includes/functions.php:3898
2020
+ #: settings.php:2881
2021
  msgid "Ad Blocking Detection"
2022
  msgstr "Zaznavanje Blokiranja Oglasov"
2023
 
2024
+ #: includes/functions-check-now.php:3377 includes/functions.php:3904
2025
  msgid ""
2026
  "Standard method is reliable but should be used only if Advanced method does "
2027
  "not work. Advanced method recreates files used for detection with random "
2034
  "dostopna"
2035
 
2036
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2037
+ #: includes/functions-check-now.php:4139 includes/functions.php:4746
2038
+ #: includes/functions.php:4864 includes/functions.php:4889
2039
  msgid "AD BLOCKING"
2040
  msgstr "BLOKIRANJE OGLASOV"
2041
 
2042
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
2043
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2044
+ #: includes/functions.php:4747 includes/functions.php:4793
2045
+ #: includes/functions.php:4858 includes/functions.php:4890
2046
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2047
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
2048
 
2049
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2050
+ #: includes/functions-check-now.php:4146 includes/functions.php:4750
2051
+ #: includes/functions.php:4857 includes/functions.php:4896
2052
  msgid "NO AD BLOCKING"
2053
  msgstr "NI BLOKIRANJA OGLASOV"
2054
 
2055
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2056
+ #: includes/functions.php:4792 includes/functions.php:4799
2057
  msgid "AD BLOCKING REPLACEMENT"
2058
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
2059
 
2060
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2061
+ #: includes/functions.php:5157 includes/functions.php:5368
2062
  msgid "Pageviews"
2063
  msgstr "Ogledi strani"
2064
 
2065
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
2066
  msgctxt "Version"
2067
  msgid "Unknown"
2068
  msgstr "Neznana"
2069
 
2070
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
2071
  msgctxt "Times"
2072
  msgid "DISPLAYED"
2073
  msgstr "PRIKAZANO"
2074
 
2075
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
2076
  msgid "No version"
2077
  msgstr "Brez različice"
2078
 
2079
+ #: includes/functions-check-now.php:4366 includes/functions.php:5304
2080
  msgctxt "Times"
2081
  msgid "BLOCKED"
2082
  msgstr "BLOKIRANO"
2083
 
2084
+ #: includes/functions-check-now.php:4428 includes/functions.php:5368
2085
  msgid "Impressions"
2086
  msgstr "Prikazi"
2087
 
2088
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2089
+ #: includes/functions-check-now.php:4485 includes/functions.php:5369
2090
+ #: includes/functions.php:5370 includes/functions.php:5563
2091
  msgid "Clicks"
2092
  msgstr "Kliki"
2093
 
2094
+ #: includes/functions-check-now.php:4430 includes/functions.php:5370
2095
  msgid "events"
2096
  msgstr "dogodki"
2097
 
2098
+ #: includes/functions-check-now.php:4431 includes/functions.php:5371
2099
  msgid "Ad Blocking Share"
2100
  msgstr "Delež blokiranja oglasov"
2101
 
2102
  #. translators: CTR as Click Through Rate
2103
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2104
+ #: includes/functions.php:5371 includes/functions.php:5569
2105
  msgid "CTR"
2106
  msgstr "CTR"
2107
 
2108
+ #: includes/functions-check-now.php:4573 includes/functions.php:5651
2109
  msgid "pageviews"
2110
  msgid_plural "pageviews"
2111
  msgstr[0] "ogled strani"
2113
  msgstr[2] "oglede strani"
2114
  msgstr[3] "ogledov strani"
2115
 
2116
+ #: includes/functions-check-now.php:4573 includes/functions.php:5651
2117
  msgid "impressions"
2118
  msgid_plural "impressions"
2119
  msgstr[0] "prikaz"
2121
  msgstr[2] "prikazi"
2122
  msgstr[3] "prikazov"
2123
 
2124
+ #: includes/functions-check-now.php:4577 includes/functions.php:5655
2125
  msgid "event"
2126
  msgid_plural "events"
2127
  msgstr[0] "dogodek"
2129
  msgstr[2] "dogodki"
2130
  msgstr[3] "dogodkov"
2131
 
2132
+ #: includes/functions-check-now.php:4672 includes/functions.php:5750
2133
  msgctxt "Pageviews / Impressions"
2134
  msgid "Average"
2135
  msgstr "Povprečni"
2136
 
2137
+ #: includes/functions-check-now.php:4693 includes/functions.php:5771
2138
  msgctxt "Ad Blocking / Clicks"
2139
  msgid "Average"
2140
  msgstr "Povprečno"
2141
 
2142
+ #: includes/functions-check-now.php:4717 includes/functions.php:5795
2143
  msgctxt "Ad Blocking Share / CTR"
2144
  msgid "Average"
2145
  msgstr "Povprečni"
2146
 
2147
  #. Translators: %s: Ad Inserter Pro
2148
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2149
+ #: includes/functions-check-now.php:5334 includes/functions.php:5987
2150
+ #: includes/functions.php:6079 includes/functions.php:6477 strings.php:203
2151
  msgid "%s Report"
2152
  msgstr "%s Poročilo"
2153
 
2154
+ #: includes/functions-check-now.php:5240 includes/functions.php:6383
2155
  msgid "for last month"
2156
  msgstr "za zadnji mesec"
2157
 
2158
+ #: includes/functions-check-now.php:5245 includes/functions.php:6388
2159
  msgid "for this month"
2160
  msgstr "za ta mesec"
2161
 
2162
+ #: includes/functions-check-now.php:5250 includes/functions.php:6393
2163
  msgid "for this year"
2164
  msgstr "za to leto"
2165
 
2166
+ #: includes/functions-check-now.php:5255 includes/functions.php:6398
2167
  msgid "for the last 15 days"
2168
  msgstr "za zadnjih 15 dni"
2169
 
2170
+ #: includes/functions-check-now.php:5260 includes/functions.php:6403
2171
  msgid "for the last 30 days"
2172
  msgstr "za zadnjih 30 dni"
2173
 
2174
+ #: includes/functions-check-now.php:5265 includes/functions.php:6408
2175
  msgid "for the last 90 days"
2176
  msgstr "za zadnjih 90 dni"
2177
 
2178
+ #: includes/functions-check-now.php:5270 includes/functions.php:6413
2179
  msgid "for the last 180 days"
2180
  msgstr "za zadnjih 180 dni"
2181
 
2182
+ #: includes/functions-check-now.php:5275 includes/functions.php:6418
2183
  msgid "for the last 365 days"
2184
  msgstr "za zadnjih 365 dni"
2185
 
2186
+ #: includes/functions.php:515 includes/functions.php:3491
2187
  msgid "Generate CSV report"
2188
  msgstr "Generiraj CSV poročilo"
2189
 
2225
  msgid "Select image"
2226
  msgstr "Izberi sliko"
2227
 
2228
+ #: includes/functions.php:1042 includes/functions.php:1078 settings.php:1810
2229
+ #: settings.php:1833 settings.php:1856 settings.php:1879 settings.php:1902
2230
+ #: settings.php:1925 settings.php:1947 settings.php:1969
2231
  msgid "Click to select black or white list"
2232
  msgstr "Klikni za za izbor črnega ali belega seznama"
2233
 
2234
  #. translators: %s: Ad Inserter Pro
2235
+ #: includes/functions.php:1620
2236
  msgid "Invalid %s version."
2237
  msgstr "Neveljavna izdaja %s."
2238
 
2239
+ #: includes/functions.php:1621
2240
  msgid "Check license"
2241
  msgstr "Preverite licenco"
2242
 
2243
+ #: includes/functions.php:1633
2244
  msgid "License"
2245
  msgstr "Licenca"
2246
 
2247
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2248
+ #: includes/functions.php:1957
2249
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2250
  msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
2251
 
2252
  #. Translators: %s: HTML tags
2253
+ #: includes/functions.php:2005
2254
  msgid ""
2255
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2256
  "account %s and create license key."
2258
  "Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
2259
  "za GeoLite2 račun %s in ustvarite licenčni ključ."
2260
 
2261
+ #: includes/functions.php:2705
2262
  msgid "Start date"
2263
  msgstr "Začetni datum"
2264
 
2265
+ #: includes/functions.php:2705
2266
  msgid "Enter date in format yyyy-mm-dd"
2267
  msgstr "Vnesite datum v formatu yyyy-mm-dd"
2268
 
2269
+ #: includes/functions.php:2706
2270
  msgid "Start time"
2271
  msgstr "Začetni čas"
2272
 
2273
+ #: includes/functions.php:2706
2274
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2275
  msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
2276
 
2277
+ #: includes/functions.php:2708
2278
  msgid "End date"
2279
  msgstr "Končni datum"
2280
 
2281
+ #: includes/functions.php:2709
2282
  msgid "End time"
2283
  msgstr "Končni čas"
2284
 
2285
+ #: includes/functions.php:2712
2286
  msgid "Select wanted days in week"
2287
  msgstr "Izberite želene dneve v tednu"
2288
 
2289
+ #: includes/functions.php:3040
2290
  msgid "Ad blocking detection is disabled"
2291
  msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
2292
 
2293
+ #: includes/functions.php:3184
2294
  msgid "Protected"
2295
  msgstr "Zaščiten"
2296
 
2297
+ #: includes/functions.php:3187
2298
  msgid "Manual loading"
2299
  msgstr "Ročno nalaganje"
2300
 
2301
+ #: includes/functions.php:3256
2302
+ msgid "IP address blocked"
2303
+ msgid_plural "IP addresses blocked"
2304
+ msgstr[0] "blokiran IP naslov"
2305
+ msgstr[1] "blokirana IP naslova"
2306
+ msgstr[2] "blokirani IP naslovi"
2307
+ msgstr[3] "blokiranih IP naslovov"
2308
+
2309
+ #: includes/functions.php:3259 includes/functions.php:3308
2310
+ msgid "No IP address blocked"
2311
+ msgstr "Noben IP naslov ni blokiran"
2312
+
2313
+ #: includes/functions.php:3320
2314
+ msgid "Blocked IP address"
2315
+ msgstr "Blokirani IP naslovi"
2316
+
2317
+ #: includes/functions.php:3320
2318
+ msgid "Country"
2319
+ msgstr "Država"
2320
+
2321
+ #: includes/functions.php:3320
2322
+ msgid "Time to expiration"
2323
+ msgstr "Čas do poteka"
2324
+
2325
+ #: includes/functions.php:3320 strings.php:225
2326
+ msgid "Delete"
2327
+ msgstr "Pobriši"
2328
+
2329
+ #: includes/functions.php:3332
2330
+ msgid "Delete IP address"
2331
+ msgstr "Briši IP naslov"
2332
+
2333
  #. Translators: %s HTML tags
2334
+ #: includes/functions.php:3367
2335
  msgid "Create and manage %s MaxMind license key %s"
2336
  msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
2337
 
2338
+ #: includes/functions.php:3403
2339
  msgid "MaxMind license key"
2340
  msgstr "MaxMind licenčni ključ"
2341
 
2342
+ #: includes/functions.php:3406
2343
  msgid "Enter license key obtained from MaxMind"
2344
  msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
2345
 
2346
+ #: includes/functions.php:3607
2347
  msgid ""
2348
  "Image or logo to be displayed in the header of the statistics report. "
2349
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2353
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
2354
  "ponastavitev na privzeto sliko."
2355
 
2356
+ #: includes/functions.php:3655
2357
  msgid "Event category"
2358
  msgstr "Kategorija dogodka"
2359
 
2360
+ #: includes/functions.php:3658
2361
  msgid ""
2362
  "Category name used for external tracking events. You can use tags to get the "
2363
  "event, the number or the name of the block that caused the event."
2365
  "Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2366
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2367
 
2368
+ #: includes/functions.php:3663
2369
  msgid "Event action"
2370
  msgstr "Akcija dogodka"
2371
 
2372
+ #: includes/functions.php:3666
2373
  msgid ""
2374
  "Action name used for external tracking events. You can use tags to get the "
2375
  "event, the number or the name of the block that caused the event."
2377
  "Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2378
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2379
 
2380
+ #: includes/functions.php:3671
2381
  msgid "Event label"
2382
  msgstr "Oznaka dogodka"
2383
 
2384
+ #: includes/functions.php:3674
2385
  msgid ""
2386
  "Label name used for external tracking events. You can use tags to get the "
2387
  "event, the number or the name of the block that caused the event."
2389
  "Ime oznake uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
2390
  "oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
2391
 
2392
+ #: includes/functions.php:3701
2393
+ msgid "Global visitor limits"
2394
+ msgstr "Globalne omejitve obiskovalca"
2395
+
2396
+ #: includes/functions.php:3724
2397
+ msgid "Block IP address"
2398
+ msgstr "Blokiraj IP naslov"
2399
+
2400
+ #: includes/functions.php:3729
2401
+ msgid "Block visitor's IP address when protection is activated"
2402
+ msgstr "Blokiraj obiskovalčev IP naslov, ko je aktivirana zaščita"
2403
+
2404
+ #: includes/functions.php:3731
2405
+ msgid "Click to show blocked IP addresses"
2406
+ msgstr "Kliknite za prikaz blokiranih IP naslovov"
2407
+
2408
  #. translators: %s: Ad Inserter Pro
2409
+ #: includes/functions.php:3887
2410
  msgid "Show link to %s settings page for each site on the Sites page"
2411
  msgstr ""
2412
  "Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
2413
  "Spletišča"
2414
 
2415
  #. translators: %s: Ad Inserter Pro
2416
+ #: includes/functions.php:3887
2417
  msgid "Show link to %s on the Sites page"
2418
  msgstr "Pokaži povezavo na %s na strani Spletišča"
2419
 
2420
+ #: includes/functions.php:5451
2421
  msgid "Date"
2422
  msgstr "Datum"
2423
 
2424
+ #: includes/functions.php:5925
2425
  msgid "File %s missing."
2426
  msgstr "Datoteka %s ni najdena."
2427
 
2449
  msgid "Placeholder"
2450
  msgstr "Polnilo"
2451
 
2452
+ #: includes/placeholders.php:361 settings.php:999 settings.php:4475
2453
  msgid "Size"
2454
  msgstr "Velikost"
2455
 
2582
  msgid "Ad Blocking Detected Message Preview"
2583
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
2584
 
2585
+ #: includes/preview-adb.php:345 settings.php:3007
2586
  msgid "Message CSS"
2587
  msgstr "CSS sporočila"
2588
 
2589
+ #: includes/preview-adb.php:350 settings.php:3015
2590
  msgid "Overlay CSS"
2591
  msgstr "CSS prevleke"
2592
 
2622
  msgid "background"
2623
  msgstr "ozadje"
2624
 
2625
+ #: includes/preview.php:2434 includes/preview.php:2647 settings.php:1384
2626
  msgid "Alignment"
2627
  msgstr "Poravnava"
2628
 
2790
  "Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
2791
  "vedno izjeme"
2792
 
2793
+ #: settings.php:204 settings.php:1273
2794
  msgid ""
2795
  "Settings for individual exceptions have been updated. Please check all "
2796
  "blocks that have exceptions and and then save settings."
2802
  msgid "Online documentation"
2803
  msgstr "Spletna Dokumentacija"
2804
 
2805
+ #: settings.php:250 settings.php:817 settings.php:2382
2806
  msgid "Show AdSense ad units"
2807
  msgstr "Pokaži oglasne enote AdSense"
2808
 
2810
  msgid "Edit ads.txt file"
2811
  msgstr "Uredi datoteko ads.txt"
2812
 
2813
+ #: settings.php:262 settings.php:1216
2814
  msgid "Check theme for available positions for automatic insertion"
2815
  msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
2816
 
2958
  msgid "General Settings"
2959
  msgstr "Splošne Nastavitve"
2960
 
2961
+ #: settings.php:765 settings.php:2734 settings.php:2801 settings.php:2987
2962
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2963
  msgstr ""
2964
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2991
  msgid "Clear block"
2992
  msgstr "Počisti blok"
2993
 
2994
+ #: settings.php:831 settings.php:4346
2995
  msgid "Copy block"
2996
  msgstr "Kopiraj blok"
2997
 
3040
  msgstr "Slika"
3041
 
3042
  #: settings.php:918
3043
+ msgid "Alt text"
3044
+ msgstr "Besedilo alt"
3045
+
3046
+ #: settings.php:932
3047
  msgid "Link"
3048
  msgstr "Povezava"
3049
 
3050
+ #: settings.php:943
3051
  msgid "Open link in a new tab"
3052
  msgstr "Odpri povezavo v novem zavihku"
3053
 
3054
+ #: settings.php:946
3055
  msgid "Select Image"
3056
  msgstr "Izberi Sliko"
3057
 
3058
+ #: settings.php:947
3059
  msgid "Select Placeholder"
3060
  msgstr "Izberi Polnilo"
3061
 
3062
+ #: settings.php:959
3063
  msgid "Comment"
3064
  msgstr "Komentar"
3065
 
3066
+ #: settings.php:968
3067
  msgctxt "AdSense"
3068
  msgid "Publisher ID"
3069
  msgstr "ID založnika"
3070
 
3071
+ #: settings.php:977
3072
  msgctxt "AdSense"
3073
  msgid "Ad Slot ID"
3074
  msgstr "ID mesta"
3075
 
3076
+ #: settings.php:986
3077
  msgid "Ad Type"
3078
  msgstr "Vrsta"
3079
 
3080
+ #: settings.php:1011 settings.php:1146
3081
  msgid "AMP Ad"
3082
  msgstr "AMP Oglas"
3083
 
3084
+ #: settings.php:1029
3085
  msgid "Show ad units from your AdSense account"
3086
  msgstr "Prikaži oglasne enote s tvojega AdSense računa"
3087
 
3088
+ #: settings.php:1029
3089
  msgid "AdSense ad units"
3090
  msgstr "Oglasne enote AdSense"
3091
 
3092
+ #: settings.php:1046
3093
  msgctxt "AdSense"
3094
  msgid "Layout"
3095
  msgstr "Postavitev"
3096
 
3097
+ #: settings.php:1055
3098
  msgctxt "AdSense"
3099
  msgid "Layout Key"
3100
  msgstr "Ključ postavitve"
3101
 
3102
+ #: settings.php:1065
3103
  msgid "Full width"
3104
  msgstr "Celotna širina"
3105
 
3106
+ #: settings.php:1067
3107
  msgctxt "Full width"
3108
  msgid "Enabled"
3109
  msgstr "Omogočena"
3110
 
3111
+ #: settings.php:1068
3112
  msgctxt "Full width"
3113
  msgid "Disabled"
3114
  msgstr "Onemogočena"
3115
 
3116
+ #: settings.php:1182
3117
  msgid ""
3118
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
3119
  "Cookie or Referer (domain)"
3121
  "Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
3122
  "parametrov, Piškotkov ali napotiteljev (domen)"
3123
 
3124
+ #: settings.php:1182
3125
  msgid "Lists"
3126
  msgstr "Seznami"
3127
 
3128
+ #: settings.php:1183
3129
  msgid "Widget, Shortcode and PHP function call"
3130
  msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
3131
 
3132
+ #: settings.php:1183
3133
  msgid "Manual"
3134
  msgstr "Ročno"
3135
 
3136
+ #: settings.php:1184
3137
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
3138
  msgstr ""
3139
  "Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
3140
 
3141
+ #: settings.php:1184
3142
  msgid "Devices"
3143
  msgstr "Naprave"
3144
 
3145
+ #: settings.php:1185
3146
  msgid ""
3147
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
3148
  "feeds), Filter, Scheduling, General tag"
3150
  "Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
3151
  "RSS), Filter, Urnik, Splošna oznaka"
3152
 
3153
+ #: settings.php:1185
3154
  msgid "Misc"
3155
  msgstr "Razno"
3156
 
3157
+ #: settings.php:1186
3158
  msgid "Preview code and alignment"
3159
  msgstr "Predogled kode in poravnave"
3160
 
3161
+ #: settings.php:1189 settings.php:2366
3162
  msgid ""
3163
  "Rotation editor active - rotation code not generated! Make sure no rotation "
3164
  "editor is active before saving settings."
3166
  "Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
3167
  "noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
3168
 
3169
+ #: settings.php:1202 settings.php:1203
3170
  msgid "Enable insertion on posts"
3171
  msgstr "Omogoči vstavljanje na prispevkih"
3172
 
3173
+ #: settings.php:1203 settings.php:3543
3174
  msgid "Posts"
3175
  msgstr "Prispevki"
3176
 
3177
+ #: settings.php:1207 settings.php:1208
3178
  msgid ""
3179
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3180
  "page or theme homepage (available positions may depend on hooks used by the "
3184
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
3185
  "lahko odvisni od ročic, ki jih tema uporablja)"
3186
 
3187
+ #: settings.php:1208 settings.php:3545
3188
  msgid "Homepage"
3189
  msgstr "Domača stran"
3190
 
3191
+ #: settings.php:1212 settings.php:1213
3192
  msgid "Enable insertion on category blog pages (including sub-pages)"
3193
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
3194
 
3195
+ #: settings.php:1213 settings.php:3546
3196
  msgid "Category pages"
3197
  msgstr "Strani kategorij"
3198
 
3199
+ #: settings.php:1223 settings.php:1224
3200
  msgid "Enable insertion on static pages"
3201
  msgstr "Omogoči vstavljanje na statičnih straneh"
3202
 
3203
+ #: settings.php:1224 settings.php:3544
3204
  msgid "Static pages"
3205
  msgstr "Statične strani"
3206
 
3207
+ #: settings.php:1228 settings.php:1229
3208
  msgid "Enable insertion on search blog pages"
3209
  msgstr "Omogoči vstavljanje na iskalnih straneh"
3210
 
3211
+ #: settings.php:1229 settings.php:3548
3212
  msgid "Search pages"
3213
  msgstr "Iskalne strani"
3214
 
3215
+ #: settings.php:1233 settings.php:1234
3216
  msgid "Enable insertion on tag or archive blog pages"
3217
  msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
3218
 
3219
+ #: settings.php:1237
3220
  msgid "Toggle settings for default insertion and list of individual exceptions"
3221
  msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
3222
 
3223
+ #: settings.php:1249
3224
  msgid ""
3225
  "Enable individual post/page exceptions for insertion of this block. They can "
3226
  "be configured on the individual post/page editor page (in the settings below "
3230
  "lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
3231
  "nastavitvah pod urejevalnikom)."
3232
 
3233
+ #: settings.php:1250
3234
  msgid ""
3235
  "Enable individual post/page exceptions for insertion of this block. When "
3236
  "enabled they can be configured on the individual post/page editor page (in "
3240
  "omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
3241
  "strani (v nastavitvah pod urejevalnikom)."
3242
 
3243
+ #: settings.php:1250
3244
  msgid "Use exceptions for individual posts or pages to change insertion"
3245
  msgstr ""
3246
  "Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
3247
 
3248
  #. Translators: Enabled means...
3249
+ #: settings.php:1258
3250
  msgid ""
3251
  "means the insertion for this block is enabled by default and disabled for "
3252
  "exceptions."
3255
  "izjeme."
3256
 
3257
  #. Translators: Disabled means...
3258
+ #: settings.php:1259
3259
  msgid ""
3260
  "means the insertion for this block is disabled by default and enabled for "
3261
  "exceptions."
3263
  "pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
3264
  "izjeme."
3265
 
3266
+ #: settings.php:1260
3267
  msgid ""
3268
  "When individual post/page exceptions are enabled they can be configured on "
3269
  "the individual post/page editor page (in the settings below the editor)."
3272
  "v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
3273
  "urejevalnikom)."
3274
 
3275
+ #: settings.php:1268
3276
  msgid ""
3277
  "No exception for post or static page defined. Block will not be inserted."
3278
  msgstr ""
3279
  "Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
3280
 
3281
+ #: settings.php:1286
3282
  msgctxt "post"
3283
  msgid "Type"
3284
  msgstr "Vrsta"
3285
 
3286
  #. translators: %d: block number
3287
+ #: settings.php:1288
3288
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3289
  msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
3290
 
3291
+ #: settings.php:1289
3292
  msgid "Clear listed exceptions for block"
3293
  msgstr "Pobriši izpisane izjeme za blok"
3294
 
3295
+ #: settings.php:1315 settings.php:1463 settings.php:2121
3296
  msgid "Insertion"
3297
  msgstr "Vstavljanje"
3298
 
3299
+ #: settings.php:1353
3300
  msgid ""
3301
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3302
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3312
  "polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
3313
  "število pomeni štetje z nasprotne smeri"
3314
 
3315
+ #: settings.php:1354
3316
  msgid ""
3317
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3318
  "means every N images, empty means all images, 0 means random image, value "
3327
  "sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
3328
  "90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
3329
 
3330
+ #: settings.php:1367
3331
  msgid ""
3332
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3333
  "numbers, %N means every N excerpts, empty means all excerpts"
3336
  "ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
3337
  "izvlečki"
3338
 
3339
+ #: settings.php:1368
3340
  msgid ""
3341
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3342
  "numbers, %N means every N posts, empty means all posts"
3345
  "ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
3346
  "prispevki"
3347
 
3348
+ #: settings.php:1369
3349
  msgid ""
3350
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3351
  "numbers, %N means every N comments, empty means all comments"
3354
  "ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
3355
  "vsi komentarji"
3356
 
3357
+ #: settings.php:1376
3358
  msgid "Toggle paragraph counting settings"
3359
  msgstr "Preklopi nastavitve za štetje odstavkov"
3360
 
3361
+ #: settings.php:1377
3362
  msgid "Toggle paragraph clearance settings"
3363
  msgstr "Preklopi nastavitve za izogibanje odstavkom"
3364
 
3365
+ #: settings.php:1380
3366
  msgid "Toggle insertion filter settings"
3367
  msgstr "Preklopi nastavitve filtra vstavljanja"
3368
 
3369
+ #: settings.php:1398
3370
  msgid "Toggle insertion and alignment icons"
3371
  msgstr "Preklopi ikone za vstavljanje in poravnavo"
3372
 
3373
+ #: settings.php:1412
3374
  msgid "Custom CSS code for the wrapping div"
3375
  msgstr "CSS koda po meri za div za ovijanje"
3376
 
3377
+ #: settings.php:1415 settings.php:1416 settings.php:1417 settings.php:1418
3378
+ #: settings.php:1419 settings.php:1420
3379
  msgid "CSS code for the wrapping div, click to edit"
3380
  msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
3381
 
3382
+ #: settings.php:1433
3383
  msgid "HTML element"
3384
  msgstr "HTML element"
3385
 
3386
+ #: settings.php:1446
3387
  msgid "HTML element selector or comma separated list of selectors"
3388
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
3389
 
3390
+ #: settings.php:1452 settings.php:2892
3391
  msgid "Action"
3392
  msgstr "Akcija"
3393
 
3394
+ #: settings.php:1464
3395
  msgid ""
3396
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3397
  "Server-side insertion inserts block when the page is generated but needs "
3401
  "se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
3402
  "ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
3403
 
3404
+ #: settings.php:1474
3405
  msgid "Wait for"
3406
  msgstr "Čakaj na"
3407
 
3408
+ #: settings.php:1486
3409
  msgid "Wait for HTML element to be loaded"
3410
  msgstr "Čakaj, da se naloži HTML element"
3411
 
3412
+ #: settings.php:1493
3413
  msgid "Time in ms to delay insertion"
3414
  msgstr "Čas v ms za zakasnitev vstavljanja"
3415
 
3416
+ #: settings.php:1498
3417
  msgid "Code position"
3418
  msgstr "Položaj kode"
3419
 
3420
+ #: settings.php:1499
3421
  msgid ""
3422
  "Page position where the code for client-side insertion will be inserted."
3423
  msgstr ""
3424
  "Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
3425
 
3426
+ #: settings.php:1517
3427
  msgid "Count"
3428
  msgstr "Štej"
3429
 
3430
+ #: settings.php:1523
3431
  msgid "paragraphs with tags"
3432
  msgstr "odstavke z značkami"
3433
 
3434
+ #: settings.php:1529
3435
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3436
  msgstr ""
3437
  "Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
3438
 
3439
+ #: settings.php:1538
3440
  msgid "that have between"
3441
  msgstr "ki imajo med"
3442
 
3443
+ #: settings.php:1544
3444
  msgid "Minimum number of paragraph words, leave empty for no limit"
3445
  msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
3446
 
3447
+ #: settings.php:1553
3448
  msgid "Maximum number of paragraph words, leave empty for no limit"
3449
  msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
3450
 
3451
+ #: settings.php:1556
3452
  msgid "words"
3453
  msgstr "besed"
3454
 
3455
+ #: settings.php:1571 settings.php:1618 settings.php:1732 settings.php:1758
3456
  msgid "Comma separated texts"
3457
  msgstr "Z vejico ločena besedila"
3458
 
3459
  #. translators: inside [HTML tags] elements that contain
3460
+ #: settings.php:1590
3461
  msgid "inside"
3462
  msgstr "znotraj"
3463
 
3464
+ #: settings.php:1596
3465
  msgid "Comma separated HTML tag names of container elements"
3466
  msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
3467
 
3468
  #. translators: inside [HTML tags] elements that contain
3469
+ #: settings.php:1605
3470
  msgid "elements that"
3471
  msgstr "elementov, ki"
3472
 
3473
+ #: settings.php:1628
3474
  msgid ""
3475
  "Count also paragraphs inside these elements - defined on general plugin "
3476
  "settings page - tab [*] / tab General"
3478
  "Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
3479
  "nastavitev vtičnika - zavihek [*] / zavihek Splošno"
3480
 
3481
+ #: settings.php:1635 settings.php:1636
3482
  msgid ""
3483
  "If checked it will search for the text only in tag attributes like [[id]], "
3484
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3488
  "[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
3489
  "z njeno vsebino."
3490
 
3491
+ #: settings.php:1636
3492
  msgid "Check only tag attributes"
3493
  msgstr "Preveri samo atribute značke"
3494
 
3495
  #. Translators: %s: HTML tags
3496
+ #: settings.php:1641
3497
  msgid "Count inside %s elements"
3498
  msgstr "Štej znotraj elementov %s"
3499
 
3500
  #. Translators: Do not insert for first X and last Y paragraphs
3501
+ #: settings.php:1649
3502
  msgid "Do not insert for first"
3503
  msgid_plural "Do not insert for first"
3504
  msgstr[0] "Ne vstavi za prvi"
3506
  msgstr[2] "Ne vstavi za prve"
3507
  msgstr[3] "Ne vstavi za prvih"
3508
 
3509
+ #: settings.php:1655
3510
  msgid ""
3511
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3512
  "first paragraphs"
3515
  "odstavkov"
3516
 
3517
  #. Translators: Do not insert for first X and last Y paragraphs
3518
+ #: settings.php:1658
3519
  msgid "and last"
3520
  msgid_plural "and last"
3521
  msgstr[0] "in zadnji"
3523
  msgstr[2] "in zadnje"
3524
  msgstr[3] "in zadnjih"
3525
 
3526
+ #: settings.php:1664
3527
  msgid ""
3528
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3529
  "last paragraphs"
3533
 
3534
  #. Translators: Do not insert for first X and last Y paragraphs
3535
  #. Translators: Post/Static page must have between X and Y paragraphs
3536
+ #: settings.php:1667 settings.php:1693
3537
  msgid "paragraph"
3538
  msgid_plural "paragraphs"
3539
  msgstr[0] "odstavek"
3541
  msgstr[2] "odstavke"
3542
  msgstr[3] "odstavkov"
3543
 
3544
+ #: settings.php:1675 settings.php:2253
3545
  msgid "Post/Static page must have between"
3546
  msgstr "Prispevek/Statična stran mora imeti med"
3547
 
3548
+ #: settings.php:1681
3549
  msgid "Minimum number of paragraphs, leave empty for no limit"
3550
  msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
3551
 
3552
+ #: settings.php:1690
3553
  msgid "Maximum number of paragraphs, leave empty for no limit"
3554
  msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
3555
 
3556
+ #: settings.php:1701
3557
  msgid "Minimum number of words in paragraphs above"
3558
  msgstr "Najmanjše število besed v odstavkih zgoraj"
3559
 
3560
+ #: settings.php:1707
3561
  msgid ""
3562
  "Used only with automatic insertion After paragraph and empty paragraph "
3563
  "numbers"
3565
  "Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
3566
  "številkami odstavkov"
3567
 
3568
+ #: settings.php:1717 settings.php:1743
3569
  msgid "In"
3570
  msgstr "V"
3571
 
3572
+ #: settings.php:1723
3573
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3574
  msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
3575
 
3576
+ #: settings.php:1726
3577
  msgid "paragraphs above avoid"
3578
  msgstr "odstavkih zgoraj se izogni"
3579
 
3580
+ #: settings.php:1749
3581
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3582
  msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
3583
 
3584
+ #: settings.php:1752
3585
  msgid "paragraphs below avoid"
3586
  msgstr "odstavkih spodaj se izogni"
3587
 
3588
+ #: settings.php:1768
3589
  msgid "If text is found"
3590
  msgstr "Če je besedilo najdeno"
3591
 
3592
+ #: settings.php:1775
3593
  msgid "check up to"
3594
  msgstr "preveri do"
3595
 
3596
+ #: settings.php:1783
3597
  msgctxt "check up to"
3598
  msgid "paragraphs"
3599
  msgstr "odstavkov"
3600
 
3601
+ #: settings.php:1799
3602
  msgid "Categories"
3603
  msgstr "Kategorije"
3604
 
3605
+ #: settings.php:1802
3606
  msgid "Toggle category editor"
3607
  msgstr "Preklopi urejevalnik kategorij"
3608
 
3609
+ #: settings.php:1805
3610
  msgid "Comma separated category slugs"
3611
  msgstr "Z vejico ločeni ključi kategorij"
3612
 
3613
+ #: settings.php:1822
3614
  msgid "Tags"
3615
  msgstr "Oznake"
3616
 
3617
+ #: settings.php:1825
3618
  msgid "Toggle tag editor"
3619
  msgstr "Preklopi urejevalnik oznak"
3620
 
3621
+ #: settings.php:1828
3622
  msgid "Comma separated tag slugs"
3623
  msgstr "Z vejico ločeni ključi oznak"
3624
 
3625
+ #: settings.php:1845
3626
  msgid "Taxonomies"
3627
  msgstr "Taksonomije"
3628
 
3629
+ #: settings.php:1848
3630
  msgid "Toggle taxonomy editor"
3631
  msgstr "Preklopi urejevalnik taksonomij"
3632
 
3633
+ #: settings.php:1851
3634
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3635
  msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
3636
 
3637
+ #: settings.php:1868
3638
  msgid "Post IDs"
3639
  msgstr "ID-ji prispevkov"
3640
 
3641
+ #: settings.php:1871
3642
  msgid "Toggle post/page ID editor"
3643
  msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
3644
 
3645
+ #: settings.php:1874
3646
  msgid "Comma separated post/page IDs"
3647
  msgstr "Z vejico ločeni ID-ji prispevkov/strani"
3648
 
3649
+ #: settings.php:1891
3650
  msgid "Urls"
3651
  msgstr "Url-ji"
3652
 
3653
+ #: settings.php:1894
3654
  msgid "Toggle url editor"
3655
  msgstr "Preklopi urejevalnik url-jev"
3656
 
3657
+ #: settings.php:1897
3658
  msgid ""
3659
  "Comma separated urls (page addresses) starting with / after domain name (e."
3660
  "g. /permalink-url, use only when you need to taget a specific url not "
3666
  "nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
3667
  "začetek*. *url-vzorec*, *url-konec)"
3668
 
3669
+ #: settings.php:1913
3670
  msgid "Url parameters"
3671
  msgstr "Url parametri"
3672
 
3673
+ #: settings.php:1917
3674
  msgid "Toggle url parameter and cookie editor"
3675
  msgstr "Preklopi urejevalnik url parametrov in piškotkov"
3676
 
3677
+ #: settings.php:1920
3678
  msgid ""
3679
  "Comma separated url query parameters or cookies with optional values (use "
3680
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3683
  "vrednostmi (uporabite 'parameter', 'parameter=vrednost', 'piškotek' or "
3684
  "'piškotek=vrednost')"
3685
 
3686
+ #: settings.php:1936
3687
  msgid "Referrers"
3688
  msgstr "Napotitelji"
3689
 
3690
+ #: settings.php:1939
3691
  msgid "Toggle referer editor"
3692
  msgstr "Preklopi urejevalnik napotiteljev"
3693
 
3694
+ #: settings.php:1942
3695
  msgid ""
3696
  "Comma separated domains, use # for no referrer, you can also use partial "
3697
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3699
  "Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
3700
  "lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
3701
 
3702
+ #: settings.php:1958
3703
  msgid "Clients"
3704
  msgstr "Odjemalci"
3705
 
3706
+ #: settings.php:1961
3707
  msgid "Toggle client editor"
3708
  msgstr "Preklopi urejevalnik odjemalcev"
3709
 
3710
+ #: settings.php:1964
3711
  msgid ""
3712
  "Comma separated names (operating systems, browsers, devices). You can also "
3713
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3717
  "lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
3718
  "agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
3719
 
3720
+ #: settings.php:1990
3721
  msgid "Enable widget for this block"
3722
  msgstr "Omogočite gradnik za ta blok"
3723
 
3724
+ #: settings.php:1995
3725
  msgid "Sidebars (or widget positions) where this widget is used"
3726
  msgstr ""
3727
  "Stranske vrstice (ali položaji gradnikov) kjer je ta gradnik uporabljen"
3728
 
3729
+ #: settings.php:2002
3730
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3731
  msgstr ""
3732
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
3733
 
3734
+ #: settings.php:2003 settings.php:4403
3735
  msgid "Shortcode"
3736
  msgstr "Kratka koda"
3737
 
3738
+ #: settings.php:2018
3739
  msgid ""
3740
  "Enable PHP function call to insert this block at any position in theme file. "
3741
  "If function is disabled for block it will return empty string."
3744
  "položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
3745
  "prazen niz."
3746
 
3747
+ #: settings.php:2019
3748
  msgid "PHP function"
3749
  msgstr "PHP funkcija"
3750
 
3751
+ #: settings.php:2034
3752
  msgid "Client-side device detection"
3753
  msgstr "Zaznavanje naprave na strani odjemalca"
3754
 
3755
+ #: settings.php:2035
3756
  msgid "Server-side device detection"
3757
  msgstr "Zaznavanje naprave na strani strežnika"
3758
 
3759
+ #: settings.php:2042
3760
  msgid "Use client-side detection to"
3761
  msgstr "Uporabi zaznavanje na strani odjemalca in"
3762
 
3763
+ #: settings.php:2044
3764
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3765
  msgstr ""
3766
  "Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
3767
 
3768
  #. Translators: only on (the following devices): viewport names (devices)
3769
  #. listed
3770
+ #: settings.php:2049
3771
  msgid "only on"
3772
  msgstr "samo na"
3773
 
3774
+ #: settings.php:2077
3775
  msgid "Device min width %s px"
3776
  msgstr "Najmanjša širina naprave %s px"
3777
 
3778
+ #: settings.php:2103
3779
  msgid "Use server-side detection to insert block only for"
3780
  msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
3781
 
3782
+ #: settings.php:2122
3783
  msgid "Filter"
3784
  msgstr "Filter"
3785
 
3786
+ #: settings.php:2123
3787
  msgid "Word Count"
3788
  msgstr "Število Besed"
3789
 
3790
+ #: settings.php:2124 settings.php:4393
3791
  msgid "Scheduling"
3792
  msgstr "Urnik"
3793
 
3794
+ #: settings.php:2125
3795
  msgid "Display"
3796
  msgstr "Prikaz"
3797
 
3798
+ #: settings.php:2127 settings.php:2408
3799
  msgid "General"
3800
  msgstr "Splošno"
3801
 
3802
+ #: settings.php:2139
3803
  msgid "Old settings for AMP pages detected"
3804
  msgstr "Zaznane stare nastavitve za AMP strani"
3805
 
3806
+ #: settings.php:2139
3807
  msgid ""
3808
  "To insert different codes on normal and AMP pages separate them with "
3809
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3814
  "straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
3815
  "separatorja)."
3816
 
3817
+ #: settings.php:2139
3818
  msgid "AMP pages"
3819
  msgstr "AMP strani"
3820
 
3821
+ #: settings.php:2144
3822
  msgid "Enable insertion for Ajax requests"
3823
  msgstr "Omogoči vstavljanje v Ajax zahtevah"
3824
 
3825
+ #: settings.php:2144
3826
  msgid "Ajax requests"
3827
  msgstr "Ajax zahteve"
3828
 
3829
+ #: settings.php:2149
3830
  msgid "Enable insertion in RSS feeds"
3831
  msgstr "Omogoči vstavljanje v RSS virih"
3832
 
3833
+ #: settings.php:2149
3834
  msgid "RSS Feed"
3835
  msgstr "RSS Vir"
3836
 
3837
+ #: settings.php:2154
3838
  msgid "Enable insertion on page for Error 404: Page not found"
3839
  msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
3840
 
3841
+ #: settings.php:2154
3842
  msgid "Error 404 page"
3843
  msgstr "Stran napake 404"
3844
 
3845
+ #: settings.php:2166
3846
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3847
  msgstr ""
3848
  "Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
3849
 
3850
+ #: settings.php:2167
3851
  msgid "insertions"
3852
  msgstr "vstavljanj"
3853
 
3854
+ #: settings.php:2169
3855
  msgid ""
3856
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3857
  "General)"
3859
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
3860
  "zavihek Splošno)"
3861
 
3862
+ #: settings.php:2172 settings.php:2596
3863
  msgid "Max blocks per page"
3864
  msgstr "Največ blokov na stran"
3865
 
3866
+ #: settings.php:2184
3867
  msgid "Insert for"
3868
  msgstr "Vstavi za"
3869
 
3870
+ #: settings.php:2192
3871
  msgid ""
3872
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3873
  "is currently active). Might speed up insertion on content pages when "
3877
  "trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
3878
  "filter [[the_content]] večkrat klican."
3879
 
3880
+ #: settings.php:2196
3881
  msgid "Insert only in the loop"
3882
  msgstr "Vstavi samo v zanki"
3883
 
3884
+ #: settings.php:2199
3885
  msgid ""
3886
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3887
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
3892
  "HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
3893
  "Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
3894
 
3895
+ #: settings.php:2203
3896
  msgid "Embed JS code"
3897
  msgstr "Vgnezdi JS kodo"
3898
 
3899
+ #: settings.php:2206
3900
  msgid ""
3901
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3902
  msgstr ""
3903
  "Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
3904
  "Rocket"
3905
 
3906
+ #: settings.php:2210
3907
  msgid "Disable caching"
3908
  msgstr "Onemogoči predpomnjenje"
3909
 
3910
+ #: settings.php:2222
3911
  msgid "Filter insertions"
3912
  msgstr "Filtriraj vstavljanja"
3913
 
3914
+ #: settings.php:2225
3915
  msgid ""
3916
  "Filter multiple insertions by specifying wanted insertions for this block - "
3917
  "single number, comma separated numbers or %N for every N insertions - empty "
3923
  "- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
3924
  "Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
3925
 
3926
+ #: settings.php:2228
3927
  msgid "using"
3928
  msgstr "z uporabo"
3929
 
3930
+ #: settings.php:2247
3931
  msgid "Checked means specified calls are unwanted"
3932
  msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
3933
 
3934
+ #: settings.php:2247
3935
  msgid "Invert filter"
3936
  msgstr "Obrni filter"
3937
 
3938
+ #: settings.php:2254
3939
  msgid "Minimum number of post/static page words, leave empty for no limit"
3940
  msgstr ""
3941
  "Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3942
  "omejitev"
3943
 
3944
+ #: settings.php:2256
3945
  msgid "Maximum number of post/static page words, leave empty for no limit"
3946
  msgstr ""
3947
  "Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
3948
  "omejitev"
3949
 
3950
+ #: settings.php:2269
3951
  msgid "for"
3952
  msgstr "za"
3953
 
3954
+ #: settings.php:2269
3955
  msgid "days after publishing"
3956
  msgstr "dni po objavi"
3957
 
3958
+ #: settings.php:2271
3959
  msgid "Not available"
3960
  msgstr "Ni na razpolago"
3961
 
3962
  #. Translators: do not translate [[width]] - it is a CSS property
3963
+ #: settings.php:2283
3964
  msgid ""
3965
  "Block width: empty means width not defined, number means width in pixels, "
3966
  "any other value means CSS [[width]] property"
3969
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[width]]"
3970
 
3971
  #. Translators: do not translate [[height]] - it is a CSS property
3972
+ #: settings.php:2287
3973
  msgid ""
3974
  "Block height: empty means height not defined, number means height in pixels, "
3975
  "any other value means CSS [[height]] property"
3977
  "Višina bloka: prazno pomeni višina ni določena, število pomeni višino v "
3978
  "pikah, katerakoli druga vrednost pomeni lastnost CSS [[height]]"
3979
 
3980
+ #: settings.php:2293 settings.php:2588
3981
  msgid "Ad label"
3982
  msgstr "Oznaka oglasa"
3983
 
3984
+ #: settings.php:2314
3985
  msgid "General tag"
3986
  msgstr "Splošna oznaka"
3987
 
3988
+ #: settings.php:2318
3989
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3990
  msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
3991
 
3992
  #. translators: %s: HTML tags
3993
+ #: settings.php:2327
3994
  msgid ""
3995
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3996
  "client-side device detection!"
3999
  "potrebna za zaznavanje naprave na strani odjemalca!"
4000
 
4001
  #. translators: %s: HTML tags for text and link
4002
+ #: settings.php:2341
4003
  msgid ""
4004
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
4005
  "side %s insertion. Use %s Server-side %s insertion."
4008
  "vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
4009
  "strežnika%s."
4010
 
4011
+ #: settings.php:2357
4012
  msgid "Settings"
4013
  msgstr "Nastavitve"
4014
 
4015
+ #: settings.php:2360
4016
  msgid "Settings timestamp"
4017
  msgstr "Časovni žig nastavitev"
4018
 
4019
+ #: settings.php:2373
4020
  msgid "Are you sure you want to reset all settings?"
4021
  msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
4022
 
4023
+ #: settings.php:2373
4024
  msgid "Reset All Settings"
4025
  msgstr "Ponastavi Vse Nastavitve"
4026
 
4027
+ #: settings.php:2409
4028
  msgid "Viewports"
4029
  msgstr "Pogledi"
4030
 
4031
+ #: settings.php:2410
4032
  msgid "Hooks"
4033
  msgstr "Ročice"
4034
 
4035
+ #: settings.php:2411
4036
  msgid "Header"
4037
  msgstr "Glava"
4038
 
4039
+ #: settings.php:2412 strings.php:30
4040
  msgid "Footer"
4041
  msgstr "Noga"
4042
 
4043
+ #: settings.php:2417
4044
  msgid "Debugging"
4045
  msgstr "Razhroščevanje"
4046
 
4047
+ #: settings.php:2427
4048
  msgid "Plugin priority"
4049
  msgstr "Prednost vtičnika"
4050
 
4051
+ #: settings.php:2435
4052
  msgid "Output buffering"
4053
  msgstr "Predpomnjenje izhoda"
4054
 
4055
+ #: settings.php:2438
4056
  msgid "Needed for position Above header but may not work with all themes"
4057
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
4058
 
4059
+ #: settings.php:2446
4060
  msgid "Syntax highlighting theme"
4061
  msgstr "Tema za poudarjanje sintakse"
4062
 
4063
+ #: settings.php:2453
4064
  msgctxt "no syntax highlighting themes"
4065
  msgid "None"
4066
  msgstr "Brez"
4067
 
4068
+ #: settings.php:2454
4069
  msgid "No Syntax Highlighting"
4070
  msgstr "Brez Poudarjanja Sintakse"
4071
 
4072
+ #: settings.php:2456
4073
  msgctxt "syntax highlighting themes"
4074
  msgid "Light"
4075
  msgstr "Svetle"
4076
 
4077
+ #: settings.php:2471
4078
  msgctxt "syntax highlighting themes"
4079
  msgid "Dark"
4080
  msgstr "Temne"
4081
 
4082
+ #: settings.php:2497
4083
  msgid "Tab setup delay"
4084
  msgstr "Zakasnitev nastavitev zavihka"
4085
 
4086
+ #: settings.php:2505
4087
  msgid "Min. user role for ind. exceptions editing"
4088
  msgstr "Najm. uporabniška vloga za urejanje izjem"
4089
 
4090
+ #: settings.php:2515
4091
  msgid "Disable caching for logged in administrators"
4092
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
4093
 
4094
+ #: settings.php:2518
4095
  msgid ""
4096
  "Enabled means that logged in administrators will see non-cached (live) pages "
4097
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
4099
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
4100
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
4101
 
4102
+ #: settings.php:2526
4103
  msgid "Wait for jQuery"
4104
  msgstr "Čakaj na jQuery"
4105
 
4106
+ #: settings.php:2529
4107
  msgid ""
4108
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
4109
  "it will run the scripts that may need it"
4111
  "Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
4112
  "bo pognal svoje skripte, ki jo potrebujejo"
4113
 
4114
+ #: settings.php:2537
4115
  msgid "Sticky widget mode"
4116
  msgstr "Način za lepljive gradnike"
4117
 
4118
+ #: settings.php:2540
4119
  msgid ""
4120
  "CSS mode is the best approach but may not work with all themes. JavaScript "
4121
  "mode works with most themes but may reload ads on page load."
4124
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
4125
  "nalaganju strani."
4126
 
4127
+ #: settings.php:2548
4128
  msgid "Sticky widget top margin"
4129
  msgstr "Zgornji rob za lepljiv gradnik"
4130
 
4131
+ #: settings.php:2556
4132
  msgid "Dynamic blocks"
4133
  msgstr "Dinamični bloki"
4134
 
4135
+ #: settings.php:2569
4136
  msgid "Functions for paragraph counting"
4137
  msgstr "Funkcije za štetje odstavkov"
4138
 
4139
+ #: settings.php:2572
4140
  msgid ""
4141
  "Standard PHP functions are faster and work in most cases, use Multibyte "
4142
  "functions if paragraphs are not counted properly on non-english pages."
4145
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
4146
  "šteti."
4147
 
4148
+ #: settings.php:2580
4149
  msgid "No paragraph counting inside"
4150
  msgstr "Ni štetja odstavkov znotraj"
4151
 
4152
+ #: settings.php:2591
4153
  msgid "Label text or HTML code"
4154
  msgstr "Besedilo oznake ali HTML koda"
4155
 
4156
+ #: settings.php:2599
4157
  msgid ""
4158
  "Maximum number of inserted blocks per page. You need to enable Max page "
4159
  "insertions (button Misc / tab Insertion) to count block for this limit."
4162
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
4163
  "omejitev."
4164
 
4165
+ #: settings.php:2613
4166
  msgid "Plugin usage tracking"
4167
  msgstr "Sledenje uporabe vtičnika"
4168
 
4169
  #. translators: %s: Ad Inserter
4170
+ #: settings.php:2616
4171
  msgid ""
4172
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
4173
  "Only information regarding the WordPress environment and %s usage is "
4177
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
4178
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
4179
 
4180
+ #: settings.php:2634
4181
  msgid "CSS class name for the wrapping div"
4182
  msgstr "Ime CSS razreda za div za ovijanje"
4183
 
4184
+ #: settings.php:2634
4185
  msgid "Block class name"
4186
  msgstr "Ime razreda za blok"
4187
 
4188
+ #: settings.php:2640
4189
  msgid "Include block number class"
4190
  msgstr "Vključi razred številke bloka"
4191
 
4192
+ #: settings.php:2640
4193
  msgid "Block number class"
4194
  msgstr "Razred številke bloka"
4195
 
4196
+ #: settings.php:2645
4197
  msgid "Include block name class"
4198
  msgstr "Vključi razred imena bloka"
4199
 
4200
+ #: settings.php:2645
4201
  msgid "Block name class"
4202
  msgstr "Razred imena bloka"
4203
 
4204
+ #: settings.php:2650
4205
  msgid ""
4206
  "Instead of alignment classes generate inline alignment styles for blocks"
4207
  msgstr ""
4208
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
4209
 
4210
+ #: settings.php:2650
4211
  msgid "Inline styles"
4212
  msgstr "Medvrstični slogi"
4213
 
4214
+ #: settings.php:2656
4215
  msgid "Preview of the block wrapping code"
4216
  msgstr "Predogled kode za ovijanje blokov"
4217
 
4218
+ #: settings.php:2657
4219
  msgid "Wrapping div"
4220
  msgstr "div za ovijanje"
4221
 
4222
+ #: settings.php:2658 settings.php:3102
4223
  msgid "BLOCK CODE"
4224
  msgstr "KODA BLOKA"
4225
 
4226
+ #: settings.php:2666
4227
  msgid "Viewport Settings used for client-side device detection"
4228
  msgstr ""
4229
  "Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
4230
 
4231
  #. Translators: %d: viewport number
4232
+ #: settings.php:2674
4233
  msgid "Viewport %d name"
4234
  msgstr "Ime pogleda %d"
4235
 
4236
+ #: settings.php:2677
4237
  msgid "min width"
4238
  msgstr "najmanjša širina"
4239
 
4240
+ #: settings.php:2688
4241
  msgid "Custom Hooks"
4242
  msgstr "Ročice Po Meri"
4243
 
4244
+ #: settings.php:2700 settings.php:2703
4245
  msgid "Enable hook"
4246
  msgstr "Omogoči ročico"
4247
 
4248
  #. translators: %d: hook number
4249
+ #: settings.php:2703
4250
  msgid "Hook %d name"
4251
  msgstr "Ime ročice %d"
4252
 
4253
+ #: settings.php:2706
4254
  msgid "Hook name for automatic insertion selection"
4255
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
4256
 
4257
+ #: settings.php:2709
4258
  msgid "action"
4259
  msgstr "akcija"
4260
 
4261
+ #: settings.php:2712
4262
  msgid "Action name as used in the do_action () function"
4263
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
4264
 
4265
+ #: settings.php:2715
4266
  msgid "priority"
4267
  msgstr "prednost"
4268
 
4269
+ #: settings.php:2718
4270
  msgid "Priority for the hook (default is 10)"
4271
  msgstr "Prednost za ročico (privzeta je 10)"
4272
 
4273
+ #: settings.php:2739
4274
  msgid "Enable insertion of this code into HTML page header"
4275
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
4276
 
4277
+ #: settings.php:2743 settings.php:2810 settings.php:2992
4278
  msgid "Process PHP code"
4279
  msgstr "Procesiraj PHP kodo"
4280
 
4281
+ #: settings.php:2747
4282
  msgid "HTML Page Header Code"
4283
  msgstr "Koda v Glavi HTML Strani"
4284
 
4285
+ #: settings.php:2755
4286
  msgid "Code in the %s section of the HTML page"
4287
  msgstr "Koda v %s delu HTML strani"
4288
 
4289
+ #: settings.php:2756
4290
  msgctxt "code in the header"
4291
  msgid "NOT ENABLED"
4292
  msgstr "NI OMOGOČENA"
4293
 
4294
+ #: settings.php:2773 settings.php:2841
4295
  msgid "Use server-side detection to insert code only for"
4296
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
4297
 
4298
+ #: settings.php:2788
4299
  msgid ""
4300
  "Enable insertion of this code into HTML page header on page for Error 404: "
4301
  "Page not found"
4303
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
4304
  "obstaja"
4305
 
4306
+ #: settings.php:2788 settings.php:2856
4307
  msgid "Insert on Error 404 page"
4308
  msgstr "Vstavi na strani Napake 404"
4309
 
4310
+ #: settings.php:2806
4311
  msgid "Enable insertion of this code into HTML page footer"
4312
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
4313
 
4314
+ #: settings.php:2814
4315
  msgid "HTML Page Footer Code"
4316
  msgstr "Koda v Nogi HTML Strani"
4317
 
4318
  #. translators: %s: HTML tags
4319
+ #: settings.php:2822
4320
  msgid "Code before the %s tag of the HTML page"
4321
  msgstr "Koda pred %s značko HTML strani"
4322
 
4323
+ #: settings.php:2823
4324
  msgctxt "code in the footer"
4325
  msgid "NOT ENABLED"
4326
  msgstr "NI OMOGOČENA"
4327
 
4328
+ #: settings.php:2856
4329
  msgid ""
4330
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4331
  "Page not found"
4333
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
4334
  "Stran ne obstaja"
4335
 
4336
+ #: settings.php:2872
4337
  msgid "Code for ad blocking detection inserted. Click for details."
4338
  msgstr ""
4339
  "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
4340
 
4341
+ #: settings.php:2877
4342
  msgid "Enable detection of ad blocking"
4343
  msgstr "Omogoči zaznavanje blokiranja oglasov"
4344
 
4345
+ #: settings.php:2895
4346
  msgid "Global action when ad blocking is detected"
4347
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
4348
 
4349
+ #: settings.php:2901
4350
  msgid "No action for"
4351
  msgstr "Ni akcije za"
4352
 
4353
+ #: settings.php:2902
4354
  msgid "Exceptions for global action when ad blocking is detected."
4355
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov."
4356
 
4357
+ #: settings.php:2912
4358
  msgid "Delay Action"
4359
  msgstr "Zakasni Akcijo"
4360
 
4361
+ #: settings.php:2915
4362
  msgid ""
4363
  "Number of page views to delay action when ad blocking is detected. Leave "
4364
  "empty for no delay (action fires on first page view). Sets cookie."
4367
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
4368
  "strani). Nastavi piškotek."
4369
 
4370
+ #: settings.php:2915
4371
  msgctxt "Delay Action for x "
4372
  msgid "page views"
4373
  msgstr "ogledov strani"
4374
 
4375
+ #: settings.php:2920
4376
  msgid "No Action Period"
4377
  msgstr "Obdobje Brez Akcije"
4378
 
4379
+ #: settings.php:2923
4380
  msgid ""
4381
  "Number of days to supress action when ad blocking is detected. Leave empty "
4382
  "for no no-action period (action fires always after defined page view delay). "
4386
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
4387
  "strani). Nastavi piškotek."
4388
 
4389
+ #: settings.php:2923
4390
  msgctxt "no action period"
4391
  msgid "days"
4392
  msgstr "dni"
4393
 
4394
+ #: settings.php:2928
4395
  msgid "Custom Selectors"
4396
  msgstr "Selektorji Po Meri"
4397
 
4398
+ #: settings.php:2931
4399
  msgid ""
4400
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4401
  "blocking detection. Invisible element or element with zero height means ad "
4405
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
4406
  "pomeni prisotnost blokiranja oglasov."
4407
 
4408
+ #: settings.php:2943
4409
  msgid "Redirection Page"
4410
  msgstr "Stran za Preusmeritev"
4411
 
4412
+ #: settings.php:2955
4413
  msgid "Custom Url"
4414
  msgstr "Url Po Meri"
4415
 
4416
+ #: settings.php:2960
4417
  msgid ""
4418
  "Static page for redirection when ad blocking is detected. For other pages "
4419
  "select Custom url and set it below."
4421
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
4422
  "strani izberite Url Po Meri in ga nastavite spodaj."
4423
 
4424
+ #: settings.php:2969
4425
  msgid "Custom Redirection Url"
4426
  msgstr "Url za Preusmeritev Po Meri"
4427
 
4428
+ #: settings.php:2981
4429
  msgid "Message HTML code"
4430
  msgstr "HTML koda sporočila"
4431
 
4432
+ #: settings.php:2994
4433
  msgid "Preview message when ad blocking is detected"
4434
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
4435
 
4436
+ #: settings.php:3023
4437
  msgid "Prevent visitors from closing the warning message"
4438
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
4439
 
4440
+ #: settings.php:3023
4441
  msgid "Undismissible Message"
4442
  msgstr "Neodstranljivo Sporočilo"
4443
 
4444
+ #: settings.php:3029
4445
  msgid "Not undismissible for"
4446
  msgstr "Ni neodstranljivo za"
4447
 
4448
+ #: settings.php:3030
4449
  msgid "Users which can close the warning message."
4450
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
4451
 
4452
+ #: settings.php:3044
4453
  msgid ""
4454
  "Force showing admin toolbar for administrators when viewing site. Enable "
4455
  "this option when you are logged in as admin and you don't see admin toolbar."
4458
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
4459
  "skrbnike."
4460
 
4461
+ #: settings.php:3052
4462
  msgid "Disable header code (Header tab)"
4463
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
4464
 
4465
+ #: settings.php:3056
4466
  msgid "Disable footer code (Footer tab)"
4467
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
4468
 
4469
  #. translators: %s: Ad Inserter
4470
+ #: settings.php:3060
4471
  msgid "Disable %s JavaScript code"
4472
  msgstr "Onemogoči %s JavaScript kodo"
4473
 
4474
  #. translators: %s: Ad Inserter
4475
+ #: settings.php:3064
4476
  msgid "Disable %s CSS code"
4477
  msgstr "Onemogoči %s CSS kodo"
4478
 
4479
  #. translators: %s: Ad Inserter
4480
+ #: settings.php:3068
4481
  msgid "Disable %s HTML code"
4482
  msgstr "Onemogoči %s HTML kodo"
4483
 
4484
+ #: settings.php:3072
4485
  msgid ""
4486
  "Disable PHP code processing (in all blocks including header and footer code)"
4487
  msgstr ""
4488
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
4489
 
4490
+ #: settings.php:3076
4491
  msgid "Disable insertion of all blocks"
4492
  msgstr "Onemogoči vstavljanje vseh blokov"
4493
 
4494
+ #: settings.php:3080
4495
  msgid "Disable insertions"
4496
  msgstr "Onemogoči vstavljanja"
4497
 
4498
  #. translators: %s: Ad Inserter
4499
+ #: settings.php:3092
4500
  msgid "%s CSS CODE"
4501
  msgstr "%s CSS KODA"
4502
 
4503
+ #: settings.php:3095
4504
  msgid "HEADER CODE"
4505
  msgstr "KODA GLAVE"
4506
 
4507
  #. translators: %s: PHP tags
4508
+ #: settings.php:3101
4509
  msgid "BLOCK PHP CODE"
4510
  msgstr "PHP KODA BLOKA"
4511
 
4512
  #. translators: %s: Ad Inserter
4513
+ #: settings.php:3106
4514
  msgid "%s HTML CODE"
4515
  msgstr "%s HTML KODA"
4516
 
4517
  #. translators: %s: Ad Inserter
4518
+ #: settings.php:3108
4519
  msgid "%s JS CODE"
4520
  msgstr "%s JS KODA"
4521
 
4522
+ #: settings.php:3111
4523
  msgid "FOOTER CODE"
4524
  msgstr "KODA NOGE"
4525
 
4526
+ #: settings.php:3120
4527
  msgid "Force showing admin toolbar when viewing site"
4528
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
4529
 
4530
+ #: settings.php:3127
4531
  msgid "Enable debugging functions in admin toolbar"
4532
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
4533
 
4534
+ #: settings.php:3129
4535
  msgid "Debugging functions in admin toolbar"
4536
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
4537
 
4538
+ #: settings.php:3136
4539
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4540
  msgstr ""
4541
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
4542
  "zaslonih"
4543
 
4544
+ #: settings.php:3138
4545
  msgid "Debugging functions on mobile screens"
4546
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
4547
 
4548
+ #: settings.php:3145
4549
  msgid ""
4550
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4551
  "tags, processing) by url parameters for non-logged in users. Enable this "
4560
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
4561
  "vedno omogočeno."
4562
 
4563
+ #: settings.php:3147
4564
  msgid "Remote debugging"
4565
  msgstr "Oddaljeno razhroščevanje"
4566
 
4567
+ #: settings.php:3154
4568
  msgid ""
4569
  "Disable translation to see original texts for the settings and messages in "
4570
  "English"
4572
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
4573
  "angleščini"
4574
 
4575
+ #: settings.php:3156
4576
  msgid "Disable translation"
4577
  msgstr "Onemogoči prevod"
4578
 
4579
+ #: settings.php:3531
4580
  msgid "Available positions for current theme"
4581
  msgstr "Razpoložljivi položaji za trenutno temo"
4582
 
4583
+ #: settings.php:3532
4584
  msgid "Error checking pages"
4585
  msgstr "Napaka pri preverjanju strani"
4586
 
4587
+ #: settings.php:3535
4588
  msgid "Toggle theme checker for available positions for automatic insertion"
4589
  msgstr ""
4590
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
4591
 
4592
+ #: settings.php:3535
4593
  msgctxt "Button"
4594
  msgid "Check"
4595
  msgstr "Preveri"
4596
 
4597
+ #: settings.php:3542
4598
  msgid "Position"
4599
  msgstr "Položaj"
4600
 
4601
+ #: settings.php:3547
4602
  msgid "Archive pages"
4603
  msgstr "Strani arhiva"
4604
 
4605
+ #: settings.php:3606
4606
  msgid ""
4607
  "Position not available because output buffering (tab [*]) is not enabled"
4608
  msgstr ""
4609
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
4610
 
4611
+ #: settings.php:3609 strings.php:248
4612
  msgid "Position not checked yet"
4613
  msgstr "Položaj še ni bil preverjen"
4614
 
4615
+ #: settings.php:3645
4616
  msgid "Toggle active/all blocks"
4617
  msgstr "Preklopi aktive/vse bloke"
4618
 
4619
+ #: settings.php:3649 strings.php:235
4620
  msgid "Rearrange block order"
4621
  msgstr "Preuredi vrstni red blokov"
4622
 
4623
+ #: settings.php:3654
4624
  msgid "Save new block order"
4625
  msgstr "Shrani vrstni red blokov"
4626
 
4627
+ #: settings.php:3680
4628
  msgid "Toggle active/all ad units"
4629
  msgstr "Preklopi aktivne/vse oglasne enote"
4630
 
4631
+ #: settings.php:3684
4632
  msgid "Reload AdSense ad units"
4633
  msgstr "Ponovno naloži oglasne enote AdSense"
4634
 
4635
+ #: settings.php:3688
4636
  msgid "Clear authorization to access AdSense account"
4637
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
4638
 
4639
+ #: settings.php:3692 settings.php:4560 settings.php:4627 strings.php:243
4640
  msgid "Google AdSense Homepage"
4641
  msgstr "Google AdSense Domača Stran"
4642
 
4643
+ #: settings.php:3708
4644
  msgid "Switch to physical ads.txt file"
4645
  msgstr "Preklopi na fizično datoteko ads.txt"
4646
 
4647
+ #: settings.php:3709
4648
  msgid "Switch to virtual ads.txt file"
4649
  msgstr "Preklopi na navidezno datoteko ads.txt"
4650
 
4651
  #. translators: %s: ads.txt
4652
+ #: settings.php:3719
4653
  msgid "Open %s"
4654
  msgstr "Odpri %s"
4655
 
4656
+ #: settings.php:3727
4657
  msgid "Reload ads.txt file"
4658
  msgstr "Ponovno naloži datoteko ads.txt"
4659
 
4660
+ #: settings.php:3731 settings.php:4692
4661
  msgid "Save"
4662
  msgstr "Shrani"
4663
 
4664
  #. translators: %s: Ad Inserter
4665
+ #: settings.php:3909
4666
  msgid "ads.txt file: %s virtual ads.txt file"
4667
  msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
4668
 
4669
+ #: settings.php:3914 settings.php:3934 strings.php:224
4670
  msgid "Warning"
4671
  msgstr "Opozorilo"
4672
 
4673
  #. translators: %s: Ad Inserter
4674
+ #: settings.php:3914
4675
  msgid "%s virtual file ads.txt not found"
4676
  msgstr "%s navidezna datoteka ads.txt ni najdena"
4677
 
4678
+ #: settings.php:3922
4679
  msgid "IMPORTANT"
4680
  msgstr "POMEMBNO"
4681
 
4682
+ #: settings.php:3922
4683
  msgid "ads.txt file must be placed on the root domain"
4684
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
4685
 
4686
+ #: settings.php:3927
4687
  msgid "ads.txt file"
4688
  msgstr "datoteka ads.txt"
4689
 
4690
+ #: settings.php:3927
4691
  msgid "NOT WRITABLE"
4692
  msgstr "NI ZAPISLJIVO"
4693
 
4694
+ #: settings.php:3934
4695
  msgid "file %s not found"
4696
  msgstr "datoteka %s ni najdena"
4697
 
4698
+ #: settings.php:3944
4699
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4700
  msgstr ""
4701
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
4702
 
4703
  #. translators: %s: Ad Inserter
4704
+ #: settings.php:3950
4705
  msgid "%s virtual ads.txt file"
4706
  msgstr "%s navidezna datoteka ads.txt"
4707
 
4708
+ #: settings.php:3972
4709
  msgid "Advertising system"
4710
  msgstr "Oglaševalski sistem"
4711
 
4712
+ #: settings.php:3973
4713
  msgid "Account ID"
4714
  msgstr "ID Računa"
4715
 
4716
+ #: settings.php:3975
4717
  msgid "Certification authority ID"
4718
  msgstr "ID organa za potrjevanje"
4719
 
4720
+ #: settings.php:3990
4721
  msgid "Account ID found in block and present in ads.txt"
4722
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
4723
 
4724
+ #: settings.php:3994
4725
  msgid "Account ID found in block but not present in ads.txt"
4726
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
4727
 
4728
+ #: settings.php:4343
4729
  msgid "Preview block"
4730
  msgstr "Predogled bloka"
4731
 
4732
+ #: settings.php:4350
4733
  msgid "Pause block"
4734
  msgstr "Ustavite blok"
4735
 
4736
+ #: settings.php:4389
4737
  msgid "Automatic insertion"
4738
  msgstr "Samodejno vstavljanje"
4739
 
4740
  #. translators: %s HTML tags
4741
+ #: settings.php:4390 settings.php:5383
4742
  msgid "PHP code processing"
4743
  msgstr "Procesiranje PHP kode"
4744
 
4745
+ #: settings.php:4392
4746
  msgid "Device detection"
4747
  msgstr "Zaznavanje naprave"
4748
 
4749
+ #: settings.php:4415
4750
  msgid "No active block"
4751
  msgstr "Noben aktiven blok"
4752
 
4753
+ #: settings.php:4416
4754
  msgid "No block matches search keywords"
4755
  msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
4756
 
4757
+ #: settings.php:4471
4758
  msgid "Ad unit"
4759
  msgstr "Enota"
4760
 
4761
+ #: settings.php:4473
4762
  msgid "Slot ID"
4763
  msgstr "ID mesta"
4764
 
4765
+ #: settings.php:4499
4766
  msgid "Copy AdSense code"
4767
  msgstr "Kopiraj kodo AdSense"
4768
 
4769
+ #: settings.php:4502
4770
  msgid "Preview AdSense ad"
4771
  msgstr "Predogled oglasa AdSense"
4772
 
4773
+ #: settings.php:4505
4774
  msgid "Get AdSense code"
4775
  msgstr "Pridobi kodo AdSense"
4776
 
4777
  #. translators: %s: HTML tags
4778
+ #: settings.php:4537
4779
  msgid ""
4780
  "Please %s clear authorization %s with the button %s above and once again "
4781
  "authorize access to your AdSense account."
4783
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
4784
  "avtorizirajte dostop do vašega računa AdSense."
4785
 
4786
+ #: settings.php:4556
4787
  msgid "AdSense Integration"
4788
  msgstr "Integracija AdSense"
4789
 
4790
+ #: settings.php:4558
4791
  msgid "AdSense Integration - Step 2"
4792
  msgstr "Integracija AdSense - Korak 2"
4793
 
4794
  #. translators: %s: HTML tags
4795
+ #: settings.php:4564
4796
  msgid ""
4797
  "Authorize %s to access your AdSense account. Click on the %s Get "
4798
  "Authorization Code %s button to open a new window where you can allow "
4805
  "Avtoriziraj. %s"
4806
 
4807
  #. translators: %s: HTML tags
4808
+ #: settings.php:4571
4809
  msgid ""
4810
  "If you get error, can't access ad units or would like to use own Google API "
4811
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4816
  "je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
4817
 
4818
  #. translators: %s: HTML tags
4819
+ #: settings.php:4573
4820
  msgid ""
4821
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4822
  "Authorization Code %s button to open a new window where you can allow "
4829
  "gumb %s Avtoriziraj. %s"
4830
 
4831
  #. translators: %s: HTML tags
4832
+ #: settings.php:4580
4833
  msgid ""
4834
  "If you get error %s invalid client %s click on the button %s Clear and "
4835
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4837
  "Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
4838
  "in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
4839
 
4840
+ #: settings.php:4591
4841
  msgid "Get Authorization Code"
4842
  msgstr "Pridobi Avtoriazcijsko Kodo"
4843
 
4844
+ #: settings.php:4594
4845
  msgid "Enter Authorization Code"
4846
  msgstr "Vnesi Avorizacijsko Kodo"
4847
 
4848
+ #: settings.php:4604
4849
  msgid "Use own API IDs"
4850
  msgstr "Uporabi lastne API ID-je"
4851
 
4852
+ #: settings.php:4606
4853
  msgid "Clear and return to Step 1"
4854
  msgstr "Odstrani in se vrni na Korak 1"
4855
 
4856
+ #: settings.php:4610
4857
  msgid "Authorize"
4858
  msgstr "Avtoriziraj"
4859
 
4860
+ #: settings.php:4626
4861
  msgid "AdSense Integration - Step 1"
4862
  msgstr "Integracija AdSense - Korak 1"
4863
 
4864
  #. translators: %s: Ad Inserter
4865
+ #: settings.php:4630
4866
  msgid ""
4867
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4868
  "To do this you need to authorize %s to access your AdSense account. The "
4875
  "Odjemalca in Skrivnost Odjemalca."
4876
 
4877
  #. translators: %s: HTML tags
4878
+ #: settings.php:4639
4879
  msgid "Go to %s Google APIs and Services console %s"
4880
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
4881
 
4882
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4883
+ #: settings.php:4640
4884
  msgid ""
4885
  "Create %1$s project - if the project and IDs are already created click on "
4886
+ "the %2$s Credentials %3$s in the sidebar and go to step 21"
4887
  msgstr ""
4888
  "Ustvarite projekt %1$s - če so projekt in ID-ji že ustvarjeni, kliknite na "
4889
+ "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 21"
4890
 
4891
  #. translators: %s: HTML tags
4892
+ #: settings.php:4641
4893
  msgid ""
4894
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4895
  "create a new project"
4898
  "ustvaritev novega projekta"
4899
 
4900
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4901
+ #: settings.php:4642
4902
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4903
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4904
 
4905
  #. translators: %s: HTML tags
4906
+ #: settings.php:4643
4907
  msgid ""
4908
  "Click on project selection, wait for the project to be created and then and "
4909
  "select %s as the current project"
4912
  "izberite %s kot trenutni projekt"
4913
 
4914
  #. translators: %s: HTML tags
4915
+ #: settings.php:4644
4916
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4917
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4918
 
4919
  #. translators: %s: HTML tags
4920
+ #: settings.php:4645
4921
  msgid "Search for adsense and enable %s"
4922
  msgstr "Poiščite adsense in omogočite %s"
4923
 
4924
  #. translators: %s: HTML tags
4925
+ #: settings.php:4646
4926
  msgid "Click on %s CREATE CREDENTIALS %s"
4927
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4928
 
4929
  #. translators: %s: HTML tags
4930
+ #: settings.php:4647
4931
+ msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4932
+ msgstr "Za %s Kateri API uporabljate? %s izberite %s AdSense Management API %s"
4933
+
4934
+ #. translators: %s: HTML tags
4935
+ #: settings.php:4648
4936
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4937
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4938
 
4939
  #. translators: %s: HTML tags
4940
+ #: settings.php:4649
4941
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4942
  msgstr ""
4943
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4944
  "podatki %s"
4945
 
4946
  #. translators: %s: HTML tags
4947
+ #: settings.php:4650
4948
  msgid "Click on %s What credentials do I need? %s"
4949
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4950
 
4951
  #. translators: %s: HTML tags
4952
+ #: settings.php:4651
4953
  msgid ""
4954
+ "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4955
+ "Consent Screen %s"
4956
  msgstr ""
4957
+ "Ko se prikaže okno %s Nastavite OAuth zaslon za soglasje %s izberite %s "
4958
+ "Nastavite Zaslon za Soglasje %s"
4959
 
4960
  #. translators: %s: HTML tags
4961
+ #: settings.php:4652
4962
+ msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4963
+ msgstr ""
4964
+ "Za %s Tip Uporabnika %s izberite %s Zunanji %s in kliknite na %s USTVARI %s"
4965
+
4966
+ #. translators: %s: HTML tags
4967
+ #: settings.php:4653
4968
  msgid ""
4969
+ "For %s App name %s enter %s and for %s User support email %s select your "
4970
+ "Google account email address"
4971
  msgstr ""
4972
+ "Za %s App ime %s vnesite %s in za %s Email uporabniške podpore %s izberite "
4973
+ "vaš email naslov Google računa"
4974
 
4975
  #. translators: %s: HTML tags
4976
+ #: settings.php:4654
4977
+ msgid ""
4978
+ "For %s Developer contact information %s enter your email address and click "
4979
+ "on %s SAVE AND CONTINUE %s"
4980
+ msgstr ""
4981
+ "Za %s Kontaktni podatki razvijalca %s vnesite vaš email naslov in kliknite "
4982
+ "na %s SHRANI IN NADALJUJ %s"
4983
 
4984
  #. translators: %s: HTML tags
4985
+ #: settings.php:4655
4986
+ msgid ""
4987
+ "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4988
+ "add your Google account email address"
4989
+ msgstr ""
4990
+ "Ponovno kliknite na %s SHRANI IN NADALJUJ %s in potem kliknite na %s DODAJ "
4991
+ "UPORABNIKE %s in dodajte email naslov vašga Google računa"
4992
 
4993
  #. translators: %s: HTML tags
4994
+ #: settings.php:4656
4995
+ msgid ""
4996
+ "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4997
+ msgstr ""
4998
+ "Ponovno kliknite na %s SHRANI IN NADALJUJ %s in potem na %s NAZAJ NA "
4999
+ "NADZORNO PLOŠČO %s"
5000
+
5001
+ #. translators: %s: HTML tags
5002
+ #: settings.php:4657
5003
+ msgid ""
5004
+ "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
5005
+ "Ad Inserter client %s and then click on %s REFRESH %s"
5006
+ msgstr ""
5007
+ "Ustvarite OAuth 2.0 ID Odjemalca: za ime %s OAuth 2.0 ID odjemalca %s "
5008
+ "vnestite %s Ad Inserter odjemalec %s in potem kliknite na %s OSVEŽI %s"
5009
+
5010
+ #. translators: %s: HTML tags
5011
+ #: settings.php:4658
5012
+ msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
5013
+ msgstr ""
5014
+ "Kliknite na %s Ustvarite OAuth ID odjemalca %s in potem kliknite na %s "
5015
+ "OPRAVLJENO %s"
5016
+
5017
+ #. translators: %s: HTML tags
5018
+ #: settings.php:4659
5019
  msgid ""
5020
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
5021
  "secret %s"
5023
  "Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
5024
  "%s Skrivnost odjemalca %s"
5025
 
5026
+ #: settings.php:4660
5027
  msgid "Copy them to the appropriate fields below"
5028
  msgstr "Skopirajte ju na ustrezni polji spodaj"
5029
 
5030
+ #: settings.php:4666
5031
  msgid "Client ID"
5032
  msgstr "ID odjemalca"
5033
 
5034
+ #: settings.php:4669
5035
  msgid "Enter Client ID"
5036
  msgstr "Vnesite ID odjemalca"
5037
 
5038
+ #: settings.php:4674
5039
  msgid "Client secret"
5040
  msgstr "Skrivnost odjemalca"
5041
 
5042
+ #: settings.php:4677
5043
  msgid "Enter Client secret"
5044
  msgstr "Vnesite Skrivnost odjemalca"
5045
 
5046
+ #: settings.php:4687
5047
  msgid "Use default API IDs"
5048
  msgstr "Uporabi privzete API ID-je"
5049
 
5050
+ #: settings.php:4855
5051
  msgid "All posts"
5052
  msgstr "Vsi prispevki"
5053
 
5054
+ #: settings.php:4856
5055
  msgid "All static pages"
5056
  msgstr "Vse statične strani"
5057
 
5058
+ #: settings.php:5011 settings.php:5024 settings.php:5038 settings.php:5052
5059
+ #: settings.php:5066
5060
  msgid "Blank ad blocks? Looking for AdSense alternative?"
5061
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
5062
 
5063
+ #: settings.php:5016 settings.php:5029 settings.php:5043 settings.php:5057
5064
+ #: settings.php:5071 settings.php:5266 settings.php:5269 settings.php:5271
5065
+ #: settings.php:5280 settings.php:5289 settings.php:5294 settings.php:5302
5066
+ #: settings.php:5303 settings.php:5306 settings.php:5309 settings.php:5313
5067
+ #: settings.php:5323 settings.php:5327
5068
  msgid "Looking for AdSense alternative?"
5069
  msgstr "Iščete alternativo za AdSense?"
5070
 
5071
+ #: settings.php:5083
5072
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
5073
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
5074
 
5075
+ #: settings.php:5088 settings.php:5263 settings.php:5284 settings.php:5312
5076
+ #: settings.php:5331
5077
  msgid "Use Infolinks ads with Adsense to earn more"
5078
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
5079
 
5080
+ #: settings.php:5109 settings.php:5159
5081
  msgid "Support plugin development"
5082
  msgstr "Podprite razvoj vtičnika"
5083
 
5084
+ #: settings.php:5114 settings.php:5160
5085
  msgid ""
5086
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5087
  "reviewing the plugin on WordPres"
5089
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5090
  "razširiti novico z mnenjem o vtičniku na WordPress-u"
5091
 
5092
+ #: settings.php:5114
5093
  msgctxt "Review Ad Inserter"
5094
  msgid "Review"
5095
  msgstr "Ocenite"
5096
 
5097
+ #: settings.php:5119
5098
  msgid ""
5099
  "If you like Ad Inserter and have a moment, please help me spread the word by "
5100
  "rating the plugin on WordPres"
5102
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
5103
  "razširiti novico z oceno vtičnika na WordPress-u"
5104
 
5105
+ #: settings.php:5119
5106
  msgctxt "Rate Ad Inserter"
5107
  msgid "Rate"
5108
  msgstr "Ocenite"
5109
 
5110
+ #: settings.php:5124
5111
  msgid ""
5112
  "Support free Ad Inserter development. If you are making money with Ad "
5113
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
5116
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
5117
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
5118
 
5119
+ #: settings.php:5124
5120
  msgid "Donate"
5121
  msgstr "Donirajte"
5122
 
5123
+ #: settings.php:5131 settings.php:5175
5124
  msgid "Average rating of the plugin - Thank you!"
5125
  msgstr "Povprečna ocena vtičnika - Hvala!"
5126
 
5127
  #. translators: %s: Ad Inserter, HTML tags
5128
+ #: settings.php:5142
5129
  msgid ""
5130
  "You've been using %s for a while now, and I hope you're happy with it. "
5131
  "Positive %s reviews %s are a great way to show your appreciation for my "
5140
  "monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
5141
  "bi rekli 'Hvala'."
5142
 
5143
+ #: settings.php:5160
5144
  msgid "Review"
5145
  msgstr "Ocena"
5146
 
5147
+ #: settings.php:5164
5148
  msgid "Ad Inserter on Twitter"
5149
  msgstr "Ad Inserter na Twitter-ju"
5150
 
5151
+ #: settings.php:5165
5152
  msgid "Ad Inserter on Facebook"
5153
  msgstr "Ad Inserter na Facebook-u"
5154
 
5155
+ #: settings.php:5168
5156
  msgid "Follow Ad Inserter"
5157
  msgstr "Sledi Ad Inserter-ju"
5158
 
5159
  #. translators: %s: HTML tags
5160
+ #: settings.php:5195
5161
  msgid ""
5162
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
5163
  "and %s Common Settings %s pages"
5166
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
5167
 
5168
  #. translators: %s: HTML tags
5169
+ #: settings.php:5207
5170
  msgid ""
5171
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
5172
  "Auto ads, %s %s AMP ads %s"
5175
  "viru, %s %s Samodejni oglasi, %s %s AMP oglasi %s"
5176
 
5177
  #. translators: %s: HTML tags
5178
+ #: settings.php:5224
5179
  msgid ""
5180
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
5181
  "purchase you refer to us"
5184
  "nakup, ki nam ga posredujete"
5185
 
5186
  #. translators: %s: HTML tags
5187
+ #: settings.php:5231
5188
  msgid ""
5189
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
5190
  "diagnose and fix the problem."
5193
  "navodili za diagnozo in rešitvami za težave."
5194
 
5195
  #. translators: %s: HTML tags
5196
+ #: settings.php:5235
5197
  msgid ""
5198
  "If you need any kind of help or support, please do not hesitate to open a "
5199
  "thread on the %s support forum. %s"
5201
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
5202
  "nit na %s podpornem forumu. %s"
5203
 
5204
+ #: settings.php:5262 settings.php:5332 settings.php:5336
5205
  msgid "Code preview with visual CSS editor"
5206
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
5207
 
5208
+ #: settings.php:5265 settings.php:5293
5209
  msgid "Ad blocking detection and content protection"
5210
  msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
5211
 
5212
+ #: settings.php:5268 settings.php:5321
5213
  msgid "A/B testing - Track ad impressions and clicks"
5214
  msgstr "A/B testiranje - Sledi prikazom in klikom"
5215
 
5216
+ #: settings.php:5285
5217
  msgid "Insert ads on AMP pages"
5218
  msgstr "Vstavite oglase na AMP straneh"
5219
 
5220
+ #: settings.php:5344
5221
  msgid "Looking for Pro Ad Management plugin?"
5222
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
5223
 
5224
+ #: settings.php:5345
5225
  msgid "To Optimally Monetize your WordPress website?"
5226
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
5227
 
5228
  #. Translators: %s: price of Ad Inserter Pro
5229
+ #: settings.php:5346
5230
  msgid "Different license types starting from %s"
5231
  msgstr "Različni tipi licenc začenši od %s"
5232
 
5233
  #. translators: %s HTML tags
5234
+ #: settings.php:5349
5235
  msgid "%s AdSense Integration %s"
5236
  msgstr "%s Integracija AdSense %s"
5237
 
5238
  #. translators: %s HTML tags
5239
+ #: settings.php:5350
5240
  msgid "Syntax highlighting %s editor %s"
5241
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
5242
 
5243
  #. translators: %s HTML tags
5244
+ #: settings.php:5351
5245
  msgid "%s Code preview %s with visual CSS editor"
5246
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
5247
 
5248
  #. translators: %s HTML tags
5249
+ #: settings.php:5352
5250
  msgid "Simple user interface - all settings on a single page"
5251
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
5252
 
5253
  #. translators: %s HTML tags
5254
+ #: settings.php:5353
5255
  msgid ""
5256
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
5257
  "image / excerpt"
5260
  "%s / sliko / izvlečkom"
5261
 
5262
  #. translators: %s HTML tags
5263
+ #: settings.php:5354
5264
  msgid "%s Automatic insertion %s between posts on blog pages"
5265
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
5266
 
5267
  #. translators: %s HTML tags
5268
+ #: settings.php:5355
5269
  msgid "%s Automatic insertion %s before, between and after comments"
5270
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
5271
 
5272
  #. translators: %s HTML tags
5273
+ #: settings.php:5356
5274
  msgid "%s Automatic insertion %s after %s or before %s tag"
5275
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
5276
 
5277
  #. translators: %s HTML tags
5278
+ #: settings.php:5357
5279
  msgid "Automatic insertion at %s custom hook positions %s"
5280
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
5281
 
5282
  #. translators: %s HTML tags
5283
+ #: settings.php:5358
5284
  msgid ""
5285
  "Insertion %s before or after any HTML element on the page %s (using CSS "
5286
  "selectors)"
5289
  "selektorjev)"
5290
 
5291
  #. translators: %s HTML tags
5292
+ #: settings.php:5359
5293
  msgid "%s Insertion exceptions %s for individual posts and pages"
5294
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
5295
 
5296
  #. translators: %s HTML tags
5297
+ #: settings.php:5360
5298
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
5299
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
5300
 
5301
  #. translators: %s HTML tags
5302
+ #: settings.php:5361
5303
  msgid ""
5304
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
5305
  "scrolls)"
5308
  "se stran pomika)"
5309
 
5310
  #. translators: %s HTML tags
5311
+ #: settings.php:5362
5312
  msgid "%s Background ads %s with one or left and right background images"
5313
  msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
5314
 
5315
  #. translators: %s HTML tags
5316
+ #: settings.php:5363
5317
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
5318
  msgstr ""
5319
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
5320
 
5321
  #. translators: %s HTML tags
5322
+ #: settings.php:5364
5323
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
5324
  msgstr ""
5325
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
5326
 
5327
  #. translators: %s HTML tags
5328
+ #: settings.php:5365
5329
  msgid ""
5330
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
5331
  "visible)"
5334
  "postane viden)"
5335
 
5336
  #. translators: %s HTML tags
5337
+ #: settings.php:5366
5338
  msgid ""
5339
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
5340
  msgstr ""
5342
  "strani)"
5343
 
5344
  #. translators: %s HTML tags
5345
+ #: settings.php:5367
5346
  msgid "Block %s alignment and style %s customizations"
5347
  msgstr "%s Poravnave in slogi %s bloka po meri"
5348
 
5349
  #. translators: %s HTML tags
5350
+ #: settings.php:5368
5351
  msgid ""
5352
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
5353
  "TOS)"
5355
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
5356
 
5357
  #. translators: %s HTML tags
5358
+ #: settings.php:5369
5359
  msgid ""
5360
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
5361
  "feeds"
5364
  "virih"
5365
 
5366
  #. translators: %s HTML tags
5367
+ #: settings.php:5370
5368
  msgid "%s Ad rotation %s (works also with caching)"
5369
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
5370
 
5371
  #. translators: %s HTML tags
5372
+ #: settings.php:5371
5373
  msgid "Create, edit and check %s ads.txt %s file"
5374
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
5375
 
5376
  #. translators: %s HTML tags
5377
+ #: settings.php:5372
5378
  msgid ""
5379
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
5380
  "AdSense)"
5383
  "AdSense)"
5384
 
5385
  #. translators: %s HTML tags
5386
+ #: settings.php:5373
5387
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
5388
  msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
5389
 
5390
  #. translators: %s HTML tags
5391
+ #: settings.php:5374
5392
  msgid "%s Public web reports %s for clients, export to PDF"
5393
  msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
5394
 
5395
  #. translators: %s HTML tags
5396
+ #: settings.php:5375
5397
  msgid "Support for %s A/B testing %s"
5398
  msgstr "Podpora za %s A/B testiranje %s"
5399
 
5400
  #. translators: %s HTML tags
5401
+ #: settings.php:5376
5402
  msgid "Frequency capping - %s limit impressions or clicks %s"
5403
  msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
5404
 
5405
  #. translators: %s HTML tags
5406
+ #: settings.php:5377
5407
  msgid "Click fraud %s protection %s"
5408
  msgstr "%s Zaščita %s pred goljufijo s kliki"
5409
 
5410
  #. translators: %s HTML tags
5411
+ #: settings.php:5378
5412
  msgid "Support for %s GDPR consent cookie checks %s"
5413
  msgstr "Podpora za %s preverjanja piškotkov za GDPR privolitev %s"
5414
 
5415
  #. translators: %s HTML tags
5416
+ #: settings.php:5379
5417
  msgid "Support for %s lazy loading %s"
5418
  msgstr "Podpora za %s leno nalaganje %s"
5419
 
5420
  #. translators: %s HTML tags
5421
+ #: settings.php:5380
5422
  msgid "Support for ads on %s AMP pages %s"
5423
  msgstr "Podpora za oglase na %s AMP straneh %s"
5424
 
5425
  #. translators: %s HTML tags
5426
+ #: settings.php:5381
5427
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
5428
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
5429
 
5430
  #. translators: %s HTML tags
5431
+ #: settings.php:5382
5432
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
5433
  msgstr ""
5434
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
5435
 
5436
  #. translators: %s HTML tags
5437
+ #: settings.php:5384
5438
  msgid "%s Banner %s code generator"
5439
  msgstr "Generator kode za %s pasice %s"
5440
 
5441
  #. translators: %s HTML tags
5442
+ #: settings.php:5385
5443
  msgid "Support for %s header and footer %s code"
5444
  msgstr "Podpora za kodo v %s glavi in nogi %s"
5445
 
5446
  #. translators: %s HTML tags
5447
+ #: settings.php:5386
5448
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5449
  msgstr ""
5450
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
5451
 
5452
  #. translators: %s HTML tags
5453
+ #: settings.php:5387
5454
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5455
  msgstr ""
5456
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
5457
  "strežnika"
5458
 
5459
  #. translators: %s HTML tags
5460
+ #: settings.php:5388
5461
  msgid "Client-side %s mobile device detection %s (works with caching)"
5462
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
5463
 
5464
  #. translators: %s HTML tags
5465
+ #: settings.php:5389
5466
  msgid ""
5467
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5468
  "protection"
5471
  "vsebine"
5472
 
5473
  #. translators: %s HTML tags
5474
+ #: settings.php:5390
5475
  msgid "%s Ad blocking statistics %s"
5476
  msgstr "%s Statistika blokiranja oglasov %s"
5477
 
5478
  #. translators: %s HTML tags
5479
+ #: settings.php:5391
5480
  msgid ""
5481
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5482
  "referrers, operating systems, browsers"
5485
  "prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
5486
 
5487
  #. translators: %s HTML tags
5488
+ #: settings.php:5392
5489
  msgid ""
5490
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5491
  msgstr ""
5492
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
5493
 
5494
  #. translators: %s HTML tags
5495
+ #: settings.php:5393
5496
  msgid "%s Multisite options %s to limit settings on the sites"
5497
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
5498
 
5499
  #. translators: %s HTML tags
5500
+ #: settings.php:5394
5501
  msgid "%s Import/Export %s block or plugin settings"
5502
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
5503
 
5504
  #. translators: %s HTML tags
5505
+ #: settings.php:5395
5506
  msgid "%s Insertion scheduling %s with fallback option"
5507
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
5508
 
5509
  #. translators: %s HTML tags
5510
+ #: settings.php:5396
5511
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5512
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
5513
 
5514
  #. translators: %s HTML tags
5515
+ #: settings.php:5397
5516
  msgid "Simple troubleshooting with many %s debugging functions %s"
5517
  msgstr ""
5518
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
5519
 
5520
  #. translators: %s HTML tags
5521
+ #: settings.php:5398
5522
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5523
  msgstr ""
5524
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
5525
 
5526
  #. translators: %s HTML tags
5527
+ #: settings.php:5399
5528
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5529
  msgstr ""
5530
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
5531
 
5532
  #. translators: %s HTML tags
5533
+ #: settings.php:5400
5534
  msgid ""
5535
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5536
  msgstr ""
5537
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
5538
 
5539
  #. translators: %s HTML tags
5540
+ #: settings.php:5401
5541
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5542
  msgstr ""
5543
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
5544
 
5545
  #. translators: %s HTML tags
5546
+ #: settings.php:5402
5547
  msgid "No ads on the settings page"
5548
  msgstr "Stran z nastavitvami brez oglasov"
5549
 
5550
  #. translators: %s HTML tags
5551
+ #: settings.php:5403
5552
  msgid "Premium support"
5553
  msgstr "Vrhunska podpora"
5554
 
5555
  #. translators: %s HTML tags
5556
+ #: settings.php:5406
5557
  msgid ""
5558
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5559
  "website with many advertising features to automatically insert adverts on "
5580
  "bodo ohranile)."
5581
 
5582
  #. translators: %s HTML tags
5583
+ #: settings.php:5419
5584
  msgid "Looking for %s Pro Ad Management plugin? %s"
5585
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
5586
 
5587
  #. translators: %s HTML tags
5588
+ #: settings.php:5424
5589
  msgid "Ads between posts"
5590
  msgstr "Oglasi med prispevki"
5591
 
5592
  #. translators: %s HTML tags
5593
+ #: settings.php:5425
5594
  msgid "Ads between comments"
5595
  msgstr "Oglasi med komentarji"
5596
 
5597
  #. translators: %s HTML tags
5598
+ #: settings.php:5426
5599
  msgid "Support via email"
5600
  msgstr "Podpora prek elektronske pošte"
5601
 
5602
  #. translators: %s HTML tags
5603
+ #: settings.php:5432
5604
  msgid "%s Sticky positions %s"
5605
  msgstr "%s Lepljivi položaji %s"
5606
 
5607
  #. translators: %s HTML tags
5608
+ #: settings.php:5433
5609
  msgid "%s Limit insertions %s"
5610
  msgstr "%s Omeji vstavljanja %s"
5611
 
5612
  #. translators: %s HTML tags
5613
+ #: settings.php:5434
5614
  msgid "%s Clearance %s options"
5615
  msgstr "Možnosti %s izogibanja %s"
5616
 
5617
  #. translators: %s HTML tags
5618
+ #: settings.php:5440
5619
  msgid "Ad rotation"
5620
  msgstr "Vrtenje oglasov"
5621
 
5622
  #. translators: %s HTML tags
5623
+ #: settings.php:5441
5624
  msgid "%s A/B testing %s"
5625
  msgstr "%s A/B testiranje %s"
5626
 
5627
  #. translators: %s HTML tags
5628
+ #: settings.php:5442
5629
  msgid "%s Ad tracking %s"
5630
  msgstr "%s Sledenje oglasom %s"
5631
 
5632
  #. translators: %s HTML tags
5633
+ #: settings.php:5448
5634
  msgid "Support for %s AMP pages %s"
5635
  msgstr "Podpora za %s AMP strani %s"
5636
 
5637
  #. translators: %s HTML tags
5638
+ #: settings.php:5449
5639
  msgid "%s Ad blocking detection %s"
5640
  msgstr "%s Zaznavanje blokiranja oglasov %s"
5641
 
5642
  #. translators: %s HTML tags
5643
+ #: settings.php:5450
5644
  msgid "%s Mobile device detection %s"
5645
  msgstr "%s Zaznavanje mobilne naprave %s"
5646
 
5647
  #. translators: %s HTML tags
5648
+ #: settings.php:5457
5649
  msgid "64 code blocks"
5650
  msgstr "64 kodnih blokov"
5651
 
5652
  #. translators: %s HTML tags
5653
+ #: settings.php:5458
5654
  msgid "%s GEO targeting %s"
5655
  msgstr "%s GEO ciljanje %s"
5656
 
5657
  #. translators: %s HTML tags
5658
+ #: settings.php:5459
5659
  msgid "%s Scheduling %s"
5660
  msgstr "%s Urnik %s"
5661
 
6371
  msgstr ""
6372
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
6373
 
 
 
 
 
6374
  #: strings.php:226
6375
  msgid "Switch"
6376
  msgstr "Preklopi"
6564
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
6565
  "na optimalna mesta"
6566
 
6567
+ #~ msgid ""
6568
+ #~ "Set up the OAuth 2.0 consent screen: For %s Product name shown to users "
6569
+ #~ "%s enter %s"
6570
+ #~ msgstr ""
6571
+ #~ "Nastavite OAuth 2.0 zaslon za soglasje: Za %s Ime izdelka, ki je "
6572
+ #~ "prikazano uporabnikom %s vnesite %s"
6573
+
6574
+ #~ msgid "Click on %s Continue %s"
6575
+ #~ msgstr "Kliknite na %s Nadaljuj %s"
6576
+
6577
+ #~ msgid "Click on %s Done %s"
6578
+ #~ msgstr "Kliknite na %s Končaj %s"
6579
+
6580
+ #~ msgid "Every minute"
6581
+ #~ msgstr "Vsako minuto"
6582
+
6583
+ #~ msgid "Once Weekly"
6584
+ #~ msgstr "Enkrat tedensko"
6585
+
6586
+ #~ msgid "Once Monthly"
6587
+ #~ msgstr "Enkrat mesečno"
6588
+
6589
+ #~ msgid "Twice Monthly"
6590
+ #~ msgstr "Dvakrat Mesečno"
6591
+
6592
+ #~ msgid "No plugin data."
6593
+ #~ msgstr "Ni podatkov o vtičniku."
6594
+
6595
+ #~ msgctxt "Button"
6596
+ #~ msgid "Allow"
6597
+ #~ msgstr "Dovoli"
6598
+
6599
+ #~ msgctxt "Button"
6600
+ #~ msgid "Do not allow"
6601
+ #~ msgstr "Ne dovoli"
6602
+
6603
+ #~ msgid ""
6604
+ #~ "Thank you for installing our plugin. We'd like your permission to track "
6605
+ #~ "its usage on your site and subscribe you to our newsletter. This is "
6606
+ #~ "completely optional."
6607
+ #~ msgstr ""
6608
+ #~ "Hvala za namestitev našega vtičnika. Prosimo za soglasje za sledenje "
6609
+ #~ "njegovi uporabi na vašem spletnem mestu in za naročimo na naše novice. To "
6610
+ #~ "je povsem izbirno."
6611
+
6612
+ #~ msgid ""
6613
+ #~ "We won't record any sensitive data, only information regarding the "
6614
+ #~ "WordPress environment and plugin settings, which will help us to make "
6615
+ #~ "improvements to the plugin."
6616
+ #~ msgstr ""
6617
+ #~ "Ne bomo beležili občutljivh podatkov, samo informacije glede okolja "
6618
+ #~ "WordPress in nastavitev vtičnika, kar nam bo omogočilo izdelavo izboljšav "
6619
+ #~ "za vtičnik."
6620
+
6621
+ #~ msgid ""
6622
+ #~ "Thank you for installing our theme. We'd like your permission to track "
6623
+ #~ "its usage on your site and subscribe you to our newsletter. This is "
6624
+ #~ "completely optional."
6625
+ #~ msgstr ""
6626
+ #~ "Hvala za namestitev naše teme. Prosimo za soglasje za sledenje njeni "
6627
+ #~ "uporabi na vašem spletnem mestu in za naročimo na naše novice. To je "
6628
+ #~ "povsem izbirno."
6629
+
6630
+ #~ msgid ""
6631
+ #~ "We won't record any sensitive data, only information regarding the "
6632
+ #~ "WordPress environment and theme settings, which will help us to make "
6633
+ #~ "improvements to the theme."
6634
+ #~ msgstr ""
6635
+ #~ "Ne bomo beležili občutljivh podatkov, samo informacije glede okolja "
6636
+ #~ "WordPress in nastavitev teme, kar nam bo omogočilo izdelavo izboljšav za "
6637
+ #~ "temo."
6638
+
6639
+ #~ msgid ""
6640
+ #~ "Thank you for installing our plugin. We would like to track its usage on "
6641
+ #~ "your site. This is completely optional."
6642
+ #~ msgstr ""
6643
+ #~ "Hvala za namestitev našega vtičnika. Radi bi sledili njegovi uporabi na "
6644
+ #~ "vašem spletnem mestu. To je povsem izbirno."
6645
+
6646
+ #~ msgid ""
6647
+ #~ "We don't record any sensitive data, only information regarding the "
6648
+ #~ "WordPress environment and plugin settings, which will help us to make "
6649
+ #~ "improvements to the plugin."
6650
+ #~ msgstr ""
6651
+ #~ "Ne beležimo občutljivh podatkov, samo informacije glede okolja WordPress "
6652
+ #~ "in nastavitev vtičnika, kar nam bo omogočilo izdelavo izboljšav za "
6653
+ #~ "vtičnik."
6654
+
6655
+ #~ msgid ""
6656
+ #~ "Thank you for installing our theme. We would like to track its usage on "
6657
+ #~ "your site. This is completely optional."
6658
+ #~ msgstr ""
6659
+ #~ "Hvala za namestitev naše teme. Radi bi sledili njeni uporabi na vašem "
6660
+ #~ "spletnem mestu. To je povsem izbirno."
6661
+
6662
+ #~ msgid ""
6663
+ #~ "We don't record any sensitive data, only information regarding the "
6664
+ #~ "WordPress environment and theme settings, which will help us to make "
6665
+ #~ "improvements to the theme."
6666
+ #~ msgstr ""
6667
+ #~ "Ne beležimo občutljivh podatkov, samo informacije glede okolja WordPress "
6668
+ #~ "in nastavitev teme, kar nam bo omogočilo izdelavo izboljšav za temo."
6669
+
6670
+ #~ msgid ""
6671
+ #~ "Thank you for opting in to tracking. Would you like to receive occasional "
6672
+ #~ "news about this plugin, including details of new features and special "
6673
+ #~ "offers?"
6674
+ #~ msgstr ""
6675
+ #~ "Hvala za soglasje za sledenje. Ali želite prejemati občasne novice glede "
6676
+ #~ "tega vtičnika, vključno s podrobnostmi o novih funkcijah in posebnih "
6677
+ #~ "ponudbah?"
6678
+
6679
+ #~ msgid ""
6680
+ #~ "Thank you for opting in to tracking. Would you like to receive occasional "
6681
+ #~ "news about this theme, including details of new features and special "
6682
+ #~ "offers?"
6683
+ #~ msgstr ""
6684
+ #~ "Hvala za soglasje za sledenje. Ali želite prejemati občasne novice glede "
6685
+ #~ "te teme, vključno s podrobnostmi o novih funkcijah in posebnih ponudbah?"
6686
+
6687
+ #~ msgid "Sorry to see you go"
6688
+ #~ msgstr "Žal nam je, da odhajate"
6689
+
6690
+ #~ msgid ""
6691
+ #~ "Before you deactivate the plugin, would you quickly give us your reason "
6692
+ #~ "for doing so?"
6693
+ #~ msgstr ""
6694
+ #~ "Preden onemogočite vtičnik, ali nam lahko na kratko sporočite razlog za "
6695
+ #~ "to?"
6696
+
6697
+ #~ msgid "Set up is too difficult"
6698
+ #~ msgstr "Nastavitve so preveč zahtevne"
6699
+
6700
+ #~ msgid "Lack of documentation"
6701
+ #~ msgstr "Pomanjkanje dokumentacije"
6702
+
6703
+ #~ msgid "Not the features I wanted"
6704
+ #~ msgstr "Nima funkcij, ki jih potrebujem"
6705
+
6706
+ #~ msgid "Doesn't work"
6707
+ #~ msgstr "Ne dela"
6708
+
6709
+ #~ msgid "Found a better plugin"
6710
+ #~ msgstr "Načel sem boljši vtičnik"
6711
+
6712
+ #~ msgid "Installed by mistake"
6713
+ #~ msgstr "Namestil po pomoti"
6714
+
6715
+ #~ msgid "Just testing"
6716
+ #~ msgstr "Samo testiram"
6717
+
6718
+ #~ msgid "Only required temporarily"
6719
+ #~ msgstr "Potrebujem samo začasno"
6720
+
6721
+ #~ msgid "Don't show this form again"
6722
+ #~ msgstr "Ne prikaži več te forme"
6723
+
6724
+ #~ msgid "Details (optional)"
6725
+ #~ msgstr "Podrobnosti (izbirno)"
6726
+
6727
+ #~ msgid "This information will greatly help us to improve the plugin."
6728
+ #~ msgstr "Te informacije nam bodo zelo pomagale izboljšati vtičnik."
6729
+
6730
+ #~ msgid "Goodbye!"
6731
+ #~ msgstr "Nasvidenje!"
6732
+
6733
+ #~ msgid "Submitting form"
6734
+ #~ msgstr "Pošiljam obrazec"
6735
+
6736
+ #~ msgctxt "Button"
6737
+ #~ msgid "Cancel"
6738
+ #~ msgstr "Prekliči"
6739
+
6740
+ #~ msgctxt "Button"
6741
+ #~ msgid "Just Deactivate"
6742
+ #~ msgstr "Samo Deaktiviraj"
6743
+
6744
+ #~ msgctxt "Button"
6745
+ #~ msgid "Submit and Deactivate"
6746
+ #~ msgstr "Pošlji in Deaktiviraj"
6747
+
6748
  #~ msgid "Blacklist categories"
6749
  #~ msgstr "Črni seznam kategorij"
6750
 
languages/ad-inserter.pot CHANGED
@@ -1,489 +1,489 @@
1
- # Copyright (C) 2020 Ad Inserter
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.6.18\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2020-12-04 10:35:42+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:474
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:490
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:497
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:583
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:590
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:599
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:606
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:617
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
- #: ad-inserter.php:624
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
- #: ad-inserter.php:1286
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
- #: ad-inserter.php:1291
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
- #: ad-inserter.php:1296 strings.php:104
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
- #: ad-inserter.php:1301 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
- #: ad-inserter.php:1306 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
- #: ad-inserter.php:1311 strings.php:169
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
- #: ad-inserter.php:1358
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
- #: ad-inserter.php:1362
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
- #: ad-inserter.php:1660
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
- #: ad-inserter.php:2013 ad-inserter.php:3239
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
- #: ad-inserter.php:2607
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
- #: ad-inserter.php:2607
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
- #: ad-inserter.php:2608
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
- #: ad-inserter.php:2609
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
- #: ad-inserter.php:2610
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
- #: ad-inserter.php:2611
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
- #: ad-inserter.php:2612
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
- #: ad-inserter.php:2934
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
- #: ad-inserter.php:2937
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
- #: ad-inserter.php:2941
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
- #: ad-inserter.php:2946
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
- #: ad-inserter.php:2949
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
- #: ad-inserter.php:2962
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
- #: ad-inserter.php:2964
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
- #: ad-inserter.php:2970
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
- #: ad-inserter.php:2987 ad-inserter.php:3022
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
- #: ad-inserter.php:2994
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
- #: ad-inserter.php:3004
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
- #: ad-inserter.php:3036
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:3036
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
- #: ad-inserter.php:3131
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
- #: ad-inserter.php:3160 ad-inserter.php:10940 class.php:2410
214
  #: includes/preview.php:2324 includes/preview.php:2369
215
- #: includes/preview.php:2406 settings.php:4370 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
- #: ad-inserter.php:3161 settings.php:4371 settings.php:4456
220
  msgid "Name"
221
  msgstr ""
222
 
223
- #: ad-inserter.php:3164 settings.php:1240
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
- #: ad-inserter.php:3167
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
- #: ad-inserter.php:3168
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
- #: ad-inserter.php:3180
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
- #: ad-inserter.php:3183
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
- #: ad-inserter.php:3200 ad-inserter.php:3212 strings.php:175
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
- #: ad-inserter.php:3200 ad-inserter.php:3212
254
- #: includes/functions-check-now.php:2401 includes/functions.php:2688
255
  #: strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
- #: ad-inserter.php:3202
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
- #: ad-inserter.php:3204
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
- #: ad-inserter.php:3232
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
- #: ad-inserter.php:3237
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
- #: ad-inserter.php:3240 settings.php:1218
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
- #: ad-inserter.php:3242
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
- #: ad-inserter.php:3243
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
- #: ad-inserter.php:3245
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
- #: ad-inserter.php:3247
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
- #: ad-inserter.php:3294
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
- #: ad-inserter.php:3297
310
  msgid "POST"
311
  msgstr ""
312
 
313
- #: ad-inserter.php:3300
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
- #: ad-inserter.php:3303
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
- #: ad-inserter.php:3306
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
- #: ad-inserter.php:3309
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
- #: ad-inserter.php:3312
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
- #: ad-inserter.php:3315
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
- #: ad-inserter.php:3318
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
- #: ad-inserter.php:3335
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
- #: ad-inserter.php:3336
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
- #: ad-inserter.php:3365
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
- #: ad-inserter.php:3503
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
- #: ad-inserter.php:3503
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
- #: ad-inserter.php:3519
367
  msgid "Header code"
368
  msgstr ""
369
 
370
- #: ad-inserter.php:3519
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
- #: ad-inserter.php:3519 ad-inserter.php:3775
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
- #: ad-inserter.php:3537
382
  msgid "Click to delete the cokie for the consents"
383
  msgstr ""
384
 
385
- #: ad-inserter.php:3775
386
  msgid "Footer code"
387
  msgstr ""
388
 
389
- #: ad-inserter.php:3775
390
  msgctxt "Footer code"
391
  msgid "DISABLED"
392
  msgstr ""
393
 
394
- #: ad-inserter.php:3786
395
  msgid "JAVASCRIPT NOT WORKING"
396
  msgstr ""
397
 
398
- #: ad-inserter.php:3786
399
  msgid "NO JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
- #: ad-inserter.php:3786
403
  msgid "JAVASCRIPT ERRORS"
404
  msgstr ""
405
 
406
  #. translators: block name (block with default settings)
407
- #: ad-inserter.php:6382
408
  msgctxt "Block name"
409
  msgid "Default"
410
  msgstr ""
411
 
412
  #. translators: %s: Ad Inserter
413
- #: ad-inserter.php:7093
414
  msgid "Error importing %s settings."
415
  msgstr ""
416
 
417
- #: ad-inserter.php:7094
418
  msgid "Error importing settings for block"
419
  msgid_plural "Error importing settings for blocks:"
420
  msgstr[0] ""
421
  msgstr[1] ""
422
 
423
- #: ad-inserter.php:7147
424
  msgid "Settings saved."
425
  msgstr ""
426
 
427
  #. translators: %s: Ad Inserter
428
- #: ad-inserter.php:7149
429
  msgid "Invalid data received - %s settings not saved."
430
  msgstr ""
431
 
432
- #: ad-inserter.php:7248
433
  msgid "Settings cleared."
434
  msgstr ""
435
 
436
  #. Translators: Post/Static page must have between X and Y words
437
- #: ad-inserter.php:7676 ad-inserter.php:7678 ad-inserter.php:7701
438
- #: settings.php:2241
439
  msgid "word"
440
  msgid_plural "words"
441
  msgstr[0] ""
442
  msgstr[1] ""
443
 
444
- #: ad-inserter.php:7715 ad-inserter.php:7849
445
  msgid "HTML TAGS REMOVED"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:7928
449
  msgid "BEFORE COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:8060
453
  msgid "AFTER COMMENTS"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:8144
457
  msgid "BETWEEN COMMENTS"
458
  msgstr ""
459
 
460
- #: ad-inserter.php:10226 ad-inserter.php:10315
461
  msgctxt "category name"
462
  msgid "Uncategorized"
463
  msgstr ""
464
 
465
- #: ad-inserter.php:10542
466
  msgid "requires WordPress 4.6 or newer"
467
  msgstr ""
468
 
469
- #: ad-inserter.php:10542
470
  msgid "Please update!"
471
  msgstr ""
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:10811
476
  msgid "Thank you for installing"
477
  msgstr ""
478
 
479
  #. translators: Opt-in message: %s: HTML tags
480
- #: ad-inserter.php:10813
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."
484
  msgstr ""
485
 
486
- #: ad-inserter.php:10815
487
  msgid ""
488
  "We don't record any sensitive data, only information regarding the WordPress "
489
  "environment and plugin usage, which will help us to make improvements to the "
@@ -491,7 +491,7 @@ msgid ""
491
  msgstr ""
492
 
493
  #. translators: Deactivation message: %s: HTML tags
494
- #: ad-inserter.php:10852
495
  msgid ""
496
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
497
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -499,56 +499,56 @@ msgid ""
499
  msgstr ""
500
 
501
  #. translators: %s: Ad Inserter
502
- #: ad-inserter.php:10898
503
  msgid "%s block."
504
  msgstr ""
505
 
506
  #. translators: widget title
507
- #: ad-inserter.php:10914 ad-inserter.php:10949
508
  msgid "Processing log"
509
  msgstr ""
510
 
511
  #. translators: widget title
512
- #: ad-inserter.php:10916 ad-inserter.php:10950
513
  msgid "Dummy widget"
514
  msgstr ""
515
 
516
  #. translators: widget title
517
- #: ad-inserter.php:10918 ad-inserter.php:10948
518
  msgid "Debugging tools"
519
  msgstr ""
520
 
521
  #. translators: block status (widget title)
522
- #: ad-inserter.php:10925
523
  msgctxt "block"
524
  msgid "PAUSED"
525
  msgstr ""
526
 
527
- #: ad-inserter.php:10926
528
  msgid "WIDGET DISABLED"
529
  msgstr ""
530
 
531
- #: ad-inserter.php:10927
532
  msgid "Unknown block"
533
  msgstr ""
534
 
535
- #: ad-inserter.php:10935 includes/functions-check-now.php:3261
536
- #: includes/functions.php:3630 settings.php:1270
537
  msgid "Title"
538
  msgstr ""
539
 
540
- #: ad-inserter.php:10957
541
  msgctxt "Widget"
542
  msgid "Sticky"
543
  msgstr ""
544
 
545
- #: ad-inserter.php:11008
546
  msgid ""
547
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
548
  "Inserter you need to first deactivate Ad Inserter Pro."
549
  msgstr ""
550
 
551
- #: ad-inserter.php:11009
552
  msgid ""
553
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
554
  "will clear all settings that are available only in the Pro version "
@@ -584,11 +584,11 @@ msgstr ""
584
  msgid "Between posts"
585
  msgstr ""
586
 
587
- #: class.php:2389 settings.php:1975 settings.php:4388
588
  msgid "Widget"
589
  msgstr ""
590
 
591
- #: class.php:2394 settings.php:4386
592
  msgid "PHP function call"
593
  msgstr ""
594
 
@@ -635,263 +635,90 @@ msgctxt "viewports"
635
  msgid "ALL"
636
  msgstr ""
637
 
638
- #: class.php:2779 class.php:2820 class.php:4211 strings.php:279
639
  msgctxt "Block"
640
  msgid "HIDDEN"
641
  msgstr ""
642
 
643
- #: class.php:2827 class.php:4214 strings.php:278
644
  msgctxt "Block"
645
  msgid "VISIBLE"
646
  msgstr ""
647
 
648
- #: class.php:3409 class.php:3487
649
  msgid "ACTIVE GROUPS"
650
  msgstr ""
651
 
652
- #: class.php:3899
653
  msgid "start='%s' end='%s' days='%s' type='%s'"
654
  msgstr ""
655
 
656
- #: class.php:3907
657
  msgid "parameters='%s' type='%s'"
658
  msgstr ""
659
 
660
  #. translators: %s: list parameters and type
661
- #: class.php:3909
662
  msgid "referers='%s' type='%s'"
663
  msgstr ""
664
 
665
  #. translators: %s: list parameters and type
666
- #: class.php:3911
667
  msgid "clients='%s' type='%s'"
668
  msgstr ""
669
 
670
  #. translators: %s: list parameters and type
671
- #: class.php:4094
672
  msgid "countries='%s' type='%s'"
673
  msgstr ""
674
 
675
  #. translators: %s: list parameters and type
676
- #: class.php:4096
677
  msgid "ip addresses='%s' type='%s'"
678
  msgstr ""
679
 
680
- #: class.php:4211 class.php:4214
681
  msgid "viewport='%s' type='%s'"
682
  msgstr ""
683
 
684
- #: class.php:4636 strings.php:272
685
  msgid "BEFORE"
686
  msgstr ""
687
 
688
- #: class.php:4644 strings.php:274
689
  msgid "PREPEND CONTENT"
690
  msgstr ""
691
 
692
- #: class.php:4648 strings.php:275
693
  msgid "APPEND CONTENT"
694
  msgstr ""
695
 
696
- #: class.php:4652 strings.php:276
697
  msgid "REPLACE CONTENT"
698
  msgstr ""
699
 
700
- #: class.php:4656 strings.php:277
701
  msgid "REPLACE ELEMENT"
702
  msgstr ""
703
 
704
- #: class.php:4667 strings.php:273
705
  msgid "AFTER"
706
  msgstr ""
707
 
708
- #: class.php:4733 includes/preview.php:2369 includes/preview.php:2406
709
  msgid "Code"
710
  msgstr ""
711
 
712
- #: class.php:4736
713
  msgid "for block"
714
  msgstr ""
715
 
716
- #: class.php:8825
717
  msgid ""
718
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
719
  "extension for PHP."
720
  msgstr ""
721
 
722
- #: includes/dst/dst.php:351
723
- msgid "Every minute"
724
- msgstr ""
725
-
726
- #: includes/dst/dst.php:356
727
- msgid "Once Weekly"
728
- msgstr ""
729
-
730
- #: includes/dst/dst.php:360
731
- msgid "Once Monthly"
732
- msgstr ""
733
-
734
- #: includes/dst/dst.php:364
735
- msgid "Twice Monthly"
736
- msgstr ""
737
-
738
- #: includes/dst/dst.php:558
739
- msgid "No plugin data."
740
- msgstr ""
741
-
742
- #: includes/dst/dst.php:930
743
- msgctxt "Button"
744
- msgid "Allow"
745
- msgstr ""
746
-
747
- #: includes/dst/dst.php:932
748
- msgctxt "Button"
749
- msgid "Do not allow"
750
- msgstr ""
751
-
752
- #: includes/dst/dst.php:1160
753
- msgid ""
754
- "Thank you for installing our plugin. We'd like your permission to track its "
755
- "usage on your site and subscribe you to our newsletter. This is completely "
756
- "optional."
757
- msgstr ""
758
-
759
- #: includes/dst/dst.php:1161
760
- msgid ""
761
- "We won't record any sensitive data, only information regarding the WordPress "
762
- "environment and plugin settings, which will help us to make improvements to "
763
- "the plugin."
764
- msgstr ""
765
-
766
- #: includes/dst/dst.php:1164
767
- msgid ""
768
- "Thank you for installing our theme. We'd like your permission to track its "
769
- "usage on your site and subscribe you to our newsletter. This is completely "
770
- "optional."
771
- msgstr ""
772
-
773
- #: includes/dst/dst.php:1165
774
- msgid ""
775
- "We won't record any sensitive data, only information regarding the WordPress "
776
- "environment and theme settings, which will help us to make improvements to "
777
- "the theme."
778
- msgstr ""
779
-
780
- #: includes/dst/dst.php:1173
781
- msgid ""
782
- "Thank you for installing our plugin. We would like to track its usage on "
783
- "your site. This is completely optional."
784
- msgstr ""
785
-
786
- #: includes/dst/dst.php:1174
787
- msgid ""
788
- "We don't record any sensitive data, only information regarding the WordPress "
789
- "environment and plugin settings, which will help us to make improvements to "
790
- "the plugin."
791
- msgstr ""
792
-
793
- #: includes/dst/dst.php:1177
794
- msgid ""
795
- "Thank you for installing our theme. We would like to track its usage on your "
796
- "site. This is completely optional."
797
- msgstr ""
798
-
799
- #: includes/dst/dst.php:1178
800
- msgid ""
801
- "We don't record any sensitive data, only information regarding the WordPress "
802
- "environment and theme settings, which will help us to make improvements to "
803
- "the theme."
804
- msgstr ""
805
-
806
- #: includes/dst/dst.php:1188
807
- msgid ""
808
- "Thank you for opting in to tracking. Would you like to receive occasional "
809
- "news about this plugin, including details of new features and special offers?"
810
- msgstr ""
811
-
812
- #: includes/dst/dst.php:1190
813
- msgid ""
814
- "Thank you for opting in to tracking. Would you like to receive occasional "
815
- "news about this theme, including details of new features and special offers?"
816
- msgstr ""
817
-
818
- #: includes/dst/dst.php:1212
819
- msgid "Sorry to see you go"
820
- msgstr ""
821
-
822
- #: includes/dst/dst.php:1213
823
- msgid ""
824
- "Before you deactivate the plugin, would you quickly give us your reason for "
825
- "doing so?"
826
- msgstr ""
827
-
828
- #: includes/dst/dst.php:1215
829
- msgid "Set up is too difficult"
830
- msgstr ""
831
-
832
- #: includes/dst/dst.php:1216
833
- msgid "Lack of documentation"
834
- msgstr ""
835
-
836
- #: includes/dst/dst.php:1217
837
- msgid "Not the features I wanted"
838
- msgstr ""
839
-
840
- #: includes/dst/dst.php:1218
841
- msgid "Doesn't work"
842
- msgstr ""
843
-
844
- #: includes/dst/dst.php:1219
845
- msgid "Found a better plugin"
846
- msgstr ""
847
-
848
- #: includes/dst/dst.php:1220
849
- msgid "Installed by mistake"
850
- msgstr ""
851
-
852
- #: includes/dst/dst.php:1221
853
- msgid "Just testing"
854
- msgstr ""
855
-
856
- #: includes/dst/dst.php:1222
857
- msgid "Only required temporarily"
858
- msgstr ""
859
-
860
- #: includes/dst/dst.php:1223
861
- msgid "Don't show this form again"
862
- msgstr ""
863
-
864
- #: includes/dst/dst.php:1225
865
- msgid "Details (optional)"
866
- msgstr ""
867
-
868
- #: includes/dst/dst.php:1226
869
- msgid "This information will greatly help us to improve the plugin."
870
- msgstr ""
871
-
872
- #: includes/dst/dst.php:1227
873
- msgid "Goodbye!"
874
- msgstr ""
875
-
876
- #: includes/dst/dst.php:1270
877
- msgid "Submitting form"
878
- msgstr ""
879
-
880
- #: includes/dst/dst.php:1409
881
- msgctxt "Button"
882
- msgid "Cancel"
883
- msgstr ""
884
-
885
- #: includes/dst/dst.php:1409
886
- msgctxt "Button"
887
- msgid "Just Deactivate"
888
- msgstr ""
889
-
890
- #: includes/dst/dst.php:1409
891
- msgctxt "Button"
892
- msgid "Submit and Deactivate"
893
- msgstr ""
894
-
895
  #: includes/editor.php:4 includes/placeholders.php:350
896
  #: includes/preview.php:2310 strings.php:285
897
  msgid "Use"
@@ -902,7 +729,7 @@ msgid "Reset"
902
  msgstr ""
903
 
904
  #: includes/editor.php:6 includes/placeholders.php:352
905
- #: includes/preview.php:2313 settings.php:3711 strings.php:227 strings.php:284
906
  msgid "Cancel"
907
  msgstr ""
908
 
@@ -981,7 +808,7 @@ msgid ""
981
  msgstr ""
982
 
983
  #: includes/functions-check-now.php:451 includes/functions.php:466
984
- #: settings.php:1421 settings.php:1461 settings.php:2916
985
  msgid "Open HTML element selector"
986
  msgstr ""
987
 
@@ -1006,7 +833,7 @@ msgid " - global tracking disabled"
1006
  msgstr ""
1007
 
1008
  #: includes/functions-check-now.php:492 includes/functions.php:508
1009
- #: includes/functions.php:3388
1010
  msgid "Generate PDF report"
1011
  msgstr ""
1012
 
@@ -1019,7 +846,7 @@ msgid "Toggle Ad Blocking Statistics"
1019
  msgstr ""
1020
 
1021
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
1022
- #: includes/functions.php:544 includes/functions.php:3369
1023
  msgid "Toggle Statistics"
1024
  msgstr ""
1025
 
@@ -1043,7 +870,7 @@ msgid "%s license overused. Continue?"
1043
  msgstr ""
1044
 
1045
  #: includes/functions-check-now.php:555 includes/functions.php:584
1046
- #: settings.php:1175 settings.php:2352
1047
  msgid "Save Settings"
1048
  msgstr ""
1049
 
@@ -1093,7 +920,7 @@ msgid "Offset of trigger element"
1093
  msgstr ""
1094
 
1095
  #: includes/functions-check-now.php:721 includes/functions.php:756
1096
- #: settings.php:1476
1097
  msgid "Delay"
1098
  msgstr ""
1099
 
@@ -1111,13 +938,13 @@ msgstr ""
1111
 
1112
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
1113
  #: includes/functions-check-now.php:2545 includes/functions.php:870
1114
- #: includes/functions.php:2827 includes/functions.php:2843
1115
  msgid "Tracking is globally disabled"
1116
  msgstr ""
1117
 
1118
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
1119
  #: includes/functions-check-now.php:2549 includes/functions.php:874
1120
- #: includes/functions.php:2831 includes/functions.php:2847
1121
  msgid "Tracking for this block is disabled"
1122
  msgstr ""
1123
 
@@ -1126,7 +953,7 @@ msgid "Double click to toggle controls in public reports"
1126
  msgstr ""
1127
 
1128
  #: includes/functions-check-now.php:786 includes/functions.php:887
1129
- #: settings.php:3646 settings.php:3682 settings.php:3724 strings.php:240
1130
  msgid "Loading..."
1131
  msgstr ""
1132
 
@@ -1141,62 +968,62 @@ msgid "Auto refresh data for the selected range every 60 seconds"
1141
  msgstr ""
1142
 
1143
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1144
- #: includes/functions.php:915 includes/functions.php:6316
1145
  msgid "Load data for last month"
1146
  msgstr ""
1147
 
1148
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
1149
- #: includes/functions.php:915 includes/functions.php:6316
1150
  msgid "Last Month"
1151
  msgstr ""
1152
 
1153
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1154
- #: includes/functions.php:918 includes/functions.php:6319
1155
  msgid "Load data for this month"
1156
  msgstr ""
1157
 
1158
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
1159
- #: includes/functions.php:918 includes/functions.php:6319
1160
  msgid "This Month"
1161
  msgstr ""
1162
 
1163
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1164
- #: includes/functions.php:921 includes/functions.php:6322
1165
  msgid "Load data for this year"
1166
  msgstr ""
1167
 
1168
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
1169
- #: includes/functions.php:921 includes/functions.php:6322
1170
  msgid "This Year"
1171
  msgstr ""
1172
 
1173
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1174
- #: includes/functions.php:924 includes/functions.php:6325
1175
  msgid "Load data for the last 15 days"
1176
  msgstr ""
1177
 
1178
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1179
- #: includes/functions.php:927 includes/functions.php:6328
1180
  msgid "Load data for the last 30 days"
1181
  msgstr ""
1182
 
1183
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1184
- #: includes/functions.php:930 includes/functions.php:6331
1185
  msgid "Load data for the last 90 days"
1186
  msgstr ""
1187
 
1188
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1189
- #: includes/functions.php:933 includes/functions.php:6334
1190
  msgid "Load data for the last 180 days"
1191
  msgstr ""
1192
 
1193
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1194
- #: includes/functions.php:936 includes/functions.php:6337
1195
  msgid "Load data for the last 365 days"
1196
  msgstr ""
1197
 
1198
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1199
- #: includes/functions.php:946 includes/functions.php:6347
1200
  msgid "Load data for the selected range"
1201
  msgstr ""
1202
 
@@ -1272,7 +1099,7 @@ msgid "Cities"
1272
  msgstr ""
1273
 
1274
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1275
- #: includes/functions.php:1066 includes/functions.php:3334
1276
  msgid "Toggle country editor"
1277
  msgstr ""
1278
 
@@ -1281,7 +1108,7 @@ msgid "Toggle city editor"
1281
  msgstr ""
1282
 
1283
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1284
- #: includes/functions.php:1073 includes/functions.php:3337
1285
  msgid "Comma separated country ISO Alpha-2 codes"
1286
  msgstr ""
1287
 
@@ -1294,212 +1121,212 @@ msgid "Whitelist countries"
1294
  msgstr ""
1295
 
1296
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1297
- #: includes/functions.php:1555 includes/functions.php:1866
1298
  msgid "Enter license key"
1299
  msgstr ""
1300
 
1301
  #. translators: %s: Ad Inserter Pro
1302
- #: includes/functions-check-now.php:1388 includes/functions.php:1561
1303
  msgid ""
1304
  "%s license key is not set. Plugin functionality is limited and updates are "
1305
  "disabled."
1306
  msgstr ""
1307
 
1308
  #. translators: %s: Ad Inserter Pro
1309
- #: includes/functions-check-now.php:1402 includes/functions.php:1575
1310
  msgid "Warning: %s plugin update server is not accessible"
1311
  msgstr ""
1312
 
1313
  #. translators: updates are not available
1314
- #: includes/functions-check-now.php:1404 includes/functions.php:1577
1315
  msgid "updates"
1316
  msgstr ""
1317
 
1318
  #. translators: updates are not available
1319
- #: includes/functions-check-now.php:1406 includes/functions.php:1579
1320
  msgid "are not available"
1321
  msgstr ""
1322
 
1323
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1324
- #: includes/functions.php:1584 includes/functions.php:1875
1325
  msgid "Check license key"
1326
  msgstr ""
1327
 
1328
  #. translators: %s: Ad Inserter Pro
1329
- #: includes/functions-check-now.php:1417 includes/functions.php:1590
1330
  msgid "Invalid %s license key."
1331
  msgstr ""
1332
 
1333
  #. translators: %s: Ad Inserter Pro
1334
- #: includes/functions-check-now.php:1426 includes/functions.php:1599
1335
  msgid "%s license expired. Plugin updates are disabled."
1336
  msgstr ""
1337
 
1338
- #: includes/functions-check-now.php:1427 includes/functions.php:1600
1339
  msgid "Renew license"
1340
  msgstr ""
1341
 
1342
  #. translators: %s: Ad Inserter Pro
1343
- #: includes/functions-check-now.php:1435 includes/functions.php:1608
1344
  msgid "%s license overused. Plugin updates are disabled."
1345
  msgstr ""
1346
 
1347
- #: includes/functions-check-now.php:1436 includes/functions.php:1609
1348
  msgid "Manage licenses"
1349
  msgstr ""
1350
 
1351
- #: includes/functions-check-now.php:1436 includes/functions.php:1609
1352
  msgid "Upgrade license"
1353
  msgstr ""
1354
 
1355
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1356
- #: includes/functions-check-now.php:1683 includes/functions.php:1868
1357
  msgid ""
1358
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1359
  "limited and updates are disabled."
1360
  msgstr ""
1361
 
1362
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1363
- #: includes/functions-check-now.php:1692 includes/functions.php:1877
1364
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1365
  msgstr ""
1366
 
1367
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1368
- #: includes/functions-check-now.php:1708 includes/functions.php:1893
1369
  msgid ""
1370
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1371
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1372
  msgstr ""
1373
 
1374
  #. translators: 1, 3: HTML tags, 2: percentage
1375
- #: includes/functions-check-now.php:1715 includes/functions.php:1900
1376
  msgid ""
1377
  "During the license period and 30 days after the license has expired we offer "
1378
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1379
  msgstr ""
1380
 
1381
- #: includes/functions-check-now.php:1725 includes/functions.php:1910
1382
  msgid "No, thank you."
1383
  msgstr ""
1384
 
1385
- #: includes/functions-check-now.php:1728 includes/functions.php:1913
1386
  msgid "Not now, maybe later."
1387
  msgstr ""
1388
 
1389
- #: includes/functions-check-now.php:1742 includes/functions.php:1927
1390
  msgid "Renew the licence"
1391
  msgstr ""
1392
 
1393
- #: includes/functions-check-now.php:1744 includes/functions.php:1929
1394
  msgid "Update license status"
1395
  msgstr ""
1396
 
1397
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1398
- #: includes/functions-check-now.php:1755 includes/functions.php:1942
1399
  msgid ""
1400
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1401
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1402
  msgstr ""
1403
 
1404
  #. Translators: %s: HTML tag
1405
- #: includes/functions-check-now.php:1777 includes/functions.php:1997
1406
  msgid "Warning: %s MaxMind IP geolocation database not found."
1407
  msgstr ""
1408
 
1409
- #: includes/functions-check-now.php:2330 includes/functions.php:2620
1410
  msgid "Geolocation"
1411
  msgstr ""
1412
 
1413
- #: includes/functions-check-now.php:2334 includes/functions.php:2624
1414
- #: settings.php:4375
1415
  msgid "Exceptions"
1416
  msgstr ""
1417
 
1418
- #: includes/functions-check-now.php:2339 includes/functions.php:2629
1419
  msgid "Multisite"
1420
  msgstr ""
1421
 
1422
- #: includes/functions-check-now.php:2344 includes/functions.php:2634
1423
- #: settings.php:4381
1424
  msgid "Tracking"
1425
  msgstr ""
1426
 
1427
  #. translators: %d: days, hours, minutes
1428
- #: includes/functions-check-now.php:2375 includes/functions.php:2665
1429
  msgid "Scheduled in %d days %d hours %d minutes"
1430
  msgstr ""
1431
 
1432
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1433
  #. HTML code for long dash separator
1434
- #: includes/functions-check-now.php:2384 includes/functions.php:2674
1435
  msgid "Active %s expires in %d days %d hours %d minutes"
1436
  msgstr ""
1437
 
1438
- #: includes/functions-check-now.php:2388 includes/functions.php:2678
1439
  msgid "Expired"
1440
  msgstr ""
1441
 
1442
- #: includes/functions-check-now.php:2396 includes/functions.php:2704
1443
- #: settings.php:1531 settings.php:1546 settings.php:1668 settings.php:2239
1444
  msgid "and"
1445
  msgstr ""
1446
 
1447
- #: includes/functions-check-now.php:2399 includes/functions.php:2686
1448
  msgid "fallback"
1449
  msgstr ""
1450
 
1451
- #: includes/functions-check-now.php:2400 includes/functions.php:2687
1452
  msgid "Block to be used when scheduling expires"
1453
  msgstr ""
1454
 
1455
- #: includes/functions-check-now.php:2425 includes/functions.php:2724
1456
  msgid "Load in iframe"
1457
  msgstr ""
1458
 
1459
- #: includes/functions-check-now.php:2429 includes/functions.php:2728
1460
- #: includes/placeholders.php:387 settings.php:1139 settings.php:2266
1461
  msgid "Width"
1462
  msgstr ""
1463
 
1464
- #: includes/functions-check-now.php:2430 includes/functions.php:2729
1465
  msgid "iframe width, empty means full width (100%)"
1466
  msgstr ""
1467
 
1468
- #: includes/functions-check-now.php:2436 includes/functions.php:2735
1469
- #: includes/placeholders.php:382 settings.php:1145 settings.php:2270
1470
  msgid "Height"
1471
  msgstr ""
1472
 
1473
- #: includes/functions-check-now.php:2437 includes/functions.php:2736
1474
  msgid "iframe height, empty means adjust it to iframe content height"
1475
  msgstr ""
1476
 
1477
- #: includes/functions-check-now.php:2444 includes/functions.php:2743
1478
  msgid "Ad label in iframe"
1479
  msgstr ""
1480
 
1481
- #: includes/functions-check-now.php:2449 includes/functions.php:2748
1482
  msgid "Preview iframe code"
1483
  msgstr ""
1484
 
1485
- #: includes/functions-check-now.php:2449 includes/functions.php:2748
1486
- #: includes/preview.php:2322 settings.php:1170 settings.php:2978
1487
  msgid "Preview"
1488
  msgstr ""
1489
 
1490
- #: includes/functions-check-now.php:2463 includes/functions.php:2762
1491
- #: settings.php:4382
1492
  msgid "Limits"
1493
  msgstr ""
1494
 
1495
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1496
- #: includes/functions-check-now.php:4429 includes/functions.php:2767
1497
- #: includes/functions.php:5151 includes/functions.php:5216 settings.php:2399
1498
  msgid "Ad Blocking"
1499
  msgstr ""
1500
 
1501
  #. translators: 1, 2 and 3, 4: HTML tags
1502
- #: includes/functions-check-now.php:2477 includes/functions.php:2776
1503
  msgid ""
1504
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1505
  "for tracking!"
@@ -1507,29 +1334,29 @@ msgstr ""
1507
 
1508
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1509
  #. header
1510
- #: includes/functions-check-now.php:2486 includes/functions.php:2785
1511
  msgid ""
1512
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1513
  "enabled and automatic insertion %6$s!"
1514
  msgstr ""
1515
 
1516
- #: includes/functions-check-now.php:2553 includes/functions.php:2851
1517
  msgid "Click fraud protection is globally disabled"
1518
  msgstr ""
1519
 
1520
- #: includes/functions-check-now.php:2557 includes/functions.php:2855
1521
  msgid "Max clicks per time period are not defined"
1522
  msgstr ""
1523
 
1524
  #. Translators: Max n impressions
1525
- #: includes/functions-check-now.php:2571 includes/functions.php:2869
1526
  msgid "General limits"
1527
  msgstr ""
1528
 
1529
  #. Translators: Max n impressions per x days
1530
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1531
- #: includes/functions-check-now.php:2674 includes/functions.php:2875
1532
- #: includes/functions.php:2887 includes/functions.php:2972
1533
  msgid "Current value"
1534
  msgstr ""
1535
 
@@ -1545,14 +1372,14 @@ msgstr ""
1545
  #: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
1546
  #: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
1547
  #: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
1548
- #: includes/functions.php:2894 includes/functions.php:2904
1549
- #: includes/functions.php:2923 includes/functions.php:2933
1550
- #: includes/functions.php:2979 includes/functions.php:2988
1551
- #: includes/functions.php:3006 includes/functions.php:3015 settings.php:2151
1552
  msgid "Max"
1553
  msgstr ""
1554
 
1555
- #: includes/functions-check-now.php:2597 includes/functions.php:2895
1556
  msgid ""
1557
  "Maximum number of impressions for this block. Empty means no general "
1558
  "impression limit."
@@ -1564,14 +1391,14 @@ msgstr ""
1564
  #. Translators: Max n impressions per x days
1565
  #: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
1566
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1567
- #: includes/functions.php:2897 includes/functions.php:2907
1568
- #: includes/functions.php:2982 includes/functions.php:2991
1569
  msgid "impression"
1570
  msgid_plural "impressions"
1571
  msgstr[0] ""
1572
  msgstr[1] ""
1573
 
1574
- #: includes/functions-check-now.php:2607 includes/functions.php:2905
1575
  msgid ""
1576
  "Maximum number of impressions per time period. Empty means no time limit."
1577
  msgstr ""
@@ -1582,13 +1409,14 @@ msgstr ""
1582
  #. Translators: Max n clicks per x days
1583
  #: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
1584
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1585
- #: includes/functions.php:2911 includes/functions.php:2940
1586
- #: includes/functions.php:2995 includes/functions.php:3022
 
1587
  msgid "per"
1588
  msgstr ""
1589
 
1590
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1591
- #: includes/functions.php:2912 includes/functions.php:2941
1592
  msgid "Time period in days. Empty means no time limit."
1593
  msgstr ""
1594
 
@@ -1600,17 +1428,17 @@ msgstr ""
1600
  #: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
1601
  #: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
1602
  #: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
1603
- #: includes/functions.php:2914 includes/functions.php:2943
1604
- #: includes/functions.php:2998 includes/functions.php:3025
1605
- #: includes/functions.php:3131 includes/functions.php:3499 strings.php:218
1606
- #: strings.php:219 strings.php:220 strings.php:221 strings.php:222
1607
- #: strings.php:223
1608
  msgid "day"
1609
  msgid_plural "days"
1610
  msgstr[0] ""
1611
  msgstr[1] ""
1612
 
1613
- #: includes/functions-check-now.php:2626 includes/functions.php:2924
1614
  msgid ""
1615
  "Maximum number of clicks on this block. Empty means no general click limit."
1616
  msgstr ""
@@ -1621,24 +1449,25 @@ msgstr ""
1621
  #. Translators: Max n clicks per x days
1622
  #: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
1623
  #: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
1624
- #: includes/functions-check-now.php:4577 includes/functions.php:2926
1625
- #: includes/functions.php:2936 includes/functions.php:3009
1626
- #: includes/functions.php:3018 includes/functions.php:5502
 
1627
  msgid "click"
1628
  msgid_plural "clicks"
1629
  msgstr[0] ""
1630
  msgstr[1] ""
1631
 
1632
- #: includes/functions-check-now.php:2636 includes/functions.php:2934
1633
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1634
  msgstr ""
1635
 
1636
- #: includes/functions-check-now.php:2661 includes/functions.php:2959
1637
  msgid "Individual visitor limits"
1638
  msgstr ""
1639
 
1640
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1641
- #: includes/functions.php:2963 includes/functions.php:2965
1642
  msgid ""
1643
  "When specified number of clicks on this block for a visitor will be reached "
1644
  "in the specified time period, all blocks that have click fraud protection "
@@ -1646,79 +1475,81 @@ msgid ""
1646
  "general plugin settings."
1647
  msgstr ""
1648
 
1649
- #: includes/functions-check-now.php:2667 includes/functions.php:2965
1650
  msgid "Trigger click fraud protection"
1651
  msgstr ""
1652
 
1653
- #: includes/functions-check-now.php:2682 includes/functions.php:2980
1654
  msgid ""
1655
  "Maximum number of impressions of this block for each visitor. Empty means no "
1656
  "impression limit."
1657
  msgstr ""
1658
 
1659
- #: includes/functions-check-now.php:2691 includes/functions.php:2989
1660
  msgid ""
1661
  "Maximum number of impressions per time period for each visitor. Empty means "
1662
  "no impression limit per time period for visitors."
1663
  msgstr ""
1664
 
1665
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1666
- #: includes/functions.php:2996 includes/functions.php:3023
 
1667
  msgid ""
1668
  "Time period in days. Use decimal value (with decimal point) for shorter "
1669
  "periods. Empty means no time limit."
1670
  msgstr ""
1671
 
1672
- #: includes/functions-check-now.php:2709 includes/functions.php:3007
1673
  msgid ""
1674
  "Maximum number of clicks on this block for each visitor. Empty means no "
1675
  "click limit."
1676
  msgstr ""
1677
 
1678
- #: includes/functions-check-now.php:2718 includes/functions.php:3016
 
1679
  msgid ""
1680
  "Maximum number of clicks per time period for each visitor. Empty means no "
1681
  "click limit per time period for visitors."
1682
  msgstr ""
1683
 
1684
- #: includes/functions-check-now.php:2744 includes/functions.php:3042
1685
  msgid "When ad blocking is detected"
1686
  msgstr ""
1687
 
1688
- #: includes/functions-check-now.php:2753 includes/functions.php:3051
1689
  msgid "replacement"
1690
  msgstr ""
1691
 
1692
- #: includes/functions-check-now.php:2754 includes/functions.php:3052
1693
  msgid "Block to be shown when ad blocking is detected"
1694
  msgstr ""
1695
 
1696
- #: includes/functions-check-now.php:2755 includes/functions.php:3053
1697
  msgctxt "replacement"
1698
  msgid "None"
1699
  msgstr ""
1700
 
1701
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1702
- #: includes/functions.php:3070 includes/functions.php:6560
1703
  msgid "Close button"
1704
  msgstr ""
1705
 
1706
- #: includes/functions-check-now.php:2824 includes/functions.php:3122
1707
  msgid "Auto close after"
1708
  msgstr ""
1709
 
1710
- #: includes/functions-check-now.php:2825 includes/functions.php:3123
1711
  msgid ""
1712
  "Time in seconds in which the ad will automatically close. Leave empty to "
1713
  "disable auto closing."
1714
  msgstr ""
1715
 
1716
  #. Translators: Don't show for x days
1717
- #: includes/functions-check-now.php:2830 includes/functions.php:3128
1718
  msgid "Don't show for"
1719
  msgstr ""
1720
 
1721
- #: includes/functions-check-now.php:2831 includes/functions.php:3129
1722
  msgid ""
1723
  "Time in days in which closed ad will not be shown again. Use decimal value "
1724
  "(with decimal point) for shorter time period or leave empty to show it again "
@@ -1726,11 +1557,11 @@ msgid ""
1726
  msgstr ""
1727
 
1728
  #. Translators: Delay showing for x pageviews
1729
- #: includes/functions-check-now.php:2851 includes/functions.php:3149
1730
  msgid "Delay showing for"
1731
  msgstr ""
1732
 
1733
- #: includes/functions-check-now.php:2852 includes/functions.php:3150
1734
  msgid ""
1735
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1736
  "empty to insert the code for the first pageview."
@@ -1739,71 +1570,72 @@ msgstr ""
1739
  #. Translators: Delay showing for x pageviews
1740
  #. Translators: Show every x pageviews
1741
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1742
- #: includes/functions.php:3152 includes/functions.php:3159
1743
  msgid "pageview"
1744
  msgid_plural "pageviews"
1745
  msgstr[0] ""
1746
  msgstr[1] ""
1747
 
1748
  #. Translators: Show every x pageviews
1749
- #: includes/functions-check-now.php:2858 includes/functions.php:3156
1750
  msgid "Show every"
1751
  msgid_plural "Show every"
1752
  msgstr[0] ""
1753
  msgstr[1] ""
1754
 
1755
- #: includes/functions-check-now.php:2859 includes/functions.php:3157
1756
  msgid ""
1757
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1758
  "for every pageview."
1759
  msgstr ""
1760
 
1761
- #: includes/functions-check-now.php:2878 includes/functions.php:3180
 
1762
  msgid "Lazy loading"
1763
  msgstr ""
1764
 
1765
  #. Translators: %s MaxMind
1766
- #: includes/functions-check-now.php:2935 includes/functions.php:3258
1767
  msgid "This product includes GeoLite2 data created by %s"
1768
  msgstr ""
1769
 
1770
- #: includes/functions-check-now.php:2946 includes/functions.php:3271
1771
  msgid "IP geolocation database"
1772
  msgstr ""
1773
 
1774
- #: includes/functions-check-now.php:2949 includes/functions.php:3274
1775
  msgid "Select IP geolocation database."
1776
  msgstr ""
1777
 
1778
- #: includes/functions-check-now.php:2960 includes/functions.php:3285
1779
  msgid "Automatic database updates"
1780
  msgstr ""
1781
 
1782
- #: includes/functions-check-now.php:2963 includes/functions.php:3288
1783
  msgid ""
1784
  "Automatically download and update free GeoLite2 IP geolocation database by "
1785
  "MaxMind"
1786
  msgstr ""
1787
 
1788
- #: includes/functions-check-now.php:2971 includes/functions.php:3305
1789
  msgid "Database"
1790
  msgstr ""
1791
 
1792
- #: includes/functions-check-now.php:2974 includes/functions.php:3308
1793
  msgid ""
1794
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1795
  msgstr ""
1796
 
1797
  #. translators: %d: group number
1798
- #: includes/functions-check-now.php:2992 includes/functions.php:3326
1799
  msgid "Group %d"
1800
  msgstr ""
1801
 
1802
- #: includes/functions-check-now.php:2998 includes/functions.php:3332
1803
  msgid "countries"
1804
  msgstr ""
1805
 
1806
- #: includes/functions-check-now.php:3043 includes/functions.php:3377
1807
  msgid ""
1808
  "Enable impression and click tracking. You also need to enable tracking for "
1809
  "each block you want to track."
@@ -1813,79 +1645,79 @@ msgstr ""
1813
  msgid "Generate report"
1814
  msgstr ""
1815
 
1816
- #: includes/functions-check-now.php:3058 includes/functions.php:3396
1817
  msgid "Impression and Click Tracking"
1818
  msgstr ""
1819
 
1820
- #: includes/functions-check-now.php:3059 includes/functions.php:3397
1821
- #: settings.php:2866
1822
  msgctxt "ad blocking detection"
1823
  msgid "NOT ENABLED"
1824
  msgstr ""
1825
 
1826
- #: includes/functions-check-now.php:3075 includes/functions.php:3413
1827
  msgid "Internal"
1828
  msgstr ""
1829
 
1830
- #: includes/functions-check-now.php:3079 includes/functions.php:3417
1831
  msgid "Track impressions and clicks with internal tracking and statistics"
1832
  msgstr ""
1833
 
1834
- #: includes/functions-check-now.php:3084 includes/functions.php:3422
1835
  msgid "External"
1836
  msgstr ""
1837
 
1838
- #: includes/functions-check-now.php:3088 includes/functions.php:3426
1839
  msgid ""
1840
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1841
  "code installed)"
1842
  msgstr ""
1843
 
1844
- #: includes/functions-check-now.php:3093 includes/functions.php:3431
1845
  msgid "Track Pageviews"
1846
  msgstr ""
1847
 
1848
- #: includes/functions-check-now.php:3099 includes/functions.php:3437
1849
  msgid "Track Pageviews by Device (as configured for viewports)"
1850
  msgstr ""
1851
 
1852
- #: includes/functions-check-now.php:3109 includes/functions.php:3447
1853
  msgid "Track for Logged in Users"
1854
  msgstr ""
1855
 
1856
- #: includes/functions-check-now.php:3115 includes/functions.php:3453
1857
  msgid "Track impressions and clicks from logged in users"
1858
  msgstr ""
1859
 
1860
- #: includes/functions-check-now.php:3125 includes/functions.php:3463
1861
  msgid "Click Detection"
1862
  msgstr ""
1863
 
1864
- #: includes/functions-check-now.php:3131 includes/functions.php:3469
1865
  msgid ""
1866
  "Standard method detects clicks only on banners with links, Advanced method "
1867
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1868
  msgstr ""
1869
 
1870
- #: includes/functions-check-now.php:3150 includes/functions.php:3488
1871
  msgid "Click fraud protection"
1872
  msgstr ""
1873
 
1874
- #: includes/functions-check-now.php:3154 includes/functions.php:3492
1875
  msgid "Globally enable click fraud protection for selected blocks."
1876
  msgstr ""
1877
 
1878
- #: includes/functions-check-now.php:3160 includes/functions.php:3498
1879
  msgid "Protection time"
1880
  msgstr ""
1881
 
1882
- #: includes/functions-check-now.php:3161 includes/functions.php:3499
1883
  msgid ""
1884
  "Time period in days in which blocks with enabled click fraud protection will "
1885
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1886
  msgstr ""
1887
 
1888
- #: includes/functions-check-now.php:3180 includes/functions.php:3518
1889
  msgid "Report header image"
1890
  msgstr ""
1891
 
@@ -1896,149 +1728,149 @@ msgid ""
1896
  "reset to default image."
1897
  msgstr ""
1898
 
1899
- #: includes/functions-check-now.php:3184 includes/functions.php:3522
1900
  #: strings.php:252
1901
  msgid "Select or upload header image"
1902
  msgstr ""
1903
 
1904
- #: includes/functions-check-now.php:3189 includes/functions.php:3527
1905
  msgid "Report header title"
1906
  msgstr ""
1907
 
1908
- #: includes/functions-check-now.php:3192 includes/functions.php:3530
1909
  msgid ""
1910
  "Title to be displayed in the header of the statistics report. Text or HTML "
1911
  "code, clear to reset to default text."
1912
  msgstr ""
1913
 
1914
- #: includes/functions-check-now.php:3197 includes/functions.php:3535
1915
  msgid "Report header description"
1916
  msgstr ""
1917
 
1918
- #: includes/functions-check-now.php:3200 includes/functions.php:3538
1919
  msgid ""
1920
  "Description to be displayed in the header of the statistics report. Text or "
1921
  "HTML code, clear to reset to default text."
1922
  msgstr ""
1923
 
1924
- #: includes/functions-check-now.php:3205 includes/functions.php:3543
1925
  msgid "Report footer"
1926
  msgstr ""
1927
 
1928
- #: includes/functions-check-now.php:3208 includes/functions.php:3546
1929
  msgid ""
1930
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1931
  "to default text."
1932
  msgstr ""
1933
 
1934
- #: includes/functions-check-now.php:3213 includes/functions.php:3551
1935
  msgid "Public report key"
1936
  msgstr ""
1937
 
1938
- #: includes/functions-check-now.php:3216 includes/functions.php:3554
1939
  msgid "String to generate unique report IDs. Clear to reset to default value."
1940
  msgstr ""
1941
 
1942
- #: includes/functions-check-now.php:3248 includes/functions.php:3617
1943
  msgid "Are you sure you want to clear all exceptions for block"
1944
  msgstr ""
1945
 
1946
- #: includes/functions-check-now.php:3249 includes/functions.php:3618
1947
  msgid "Clear all exceptions for block"
1948
  msgstr ""
1949
 
1950
- #: includes/functions-check-now.php:3256 includes/functions.php:3625
1951
  msgid "Are you sure you want to clear all exceptions?"
1952
  msgstr ""
1953
 
1954
- #: includes/functions-check-now.php:3256 includes/functions.php:3625
1955
  msgid "Clear all exceptions for all blocks"
1956
  msgstr ""
1957
 
1958
- #: includes/functions-check-now.php:3261 includes/functions.php:3630
1959
- #: settings.php:3958 settings.php:4458
1960
  msgid "Type"
1961
  msgstr ""
1962
 
1963
- #: includes/functions-check-now.php:3279 includes/functions.php:3648
1964
  msgid "View"
1965
  msgstr ""
1966
 
1967
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1968
- #: includes/functions-check-now.php:3291 includes/functions.php:3649
1969
- #: includes/functions.php:3656 includes/functions.php:3660
1970
- #: includes/placeholders.php:351 includes/preview.php:2692 settings.php:1407
1971
- #: settings.php:3715
1972
  msgid "Edit"
1973
  msgstr ""
1974
 
1975
- #: includes/functions-check-now.php:3310 includes/functions.php:3679
1976
  msgid "Are you sure you want to clear all exceptions for"
1977
  msgstr ""
1978
 
1979
- #: includes/functions-check-now.php:3311 includes/functions.php:3680
1980
  msgid "Clear all exceptions for"
1981
  msgstr ""
1982
 
1983
- #: includes/functions-check-now.php:3324 includes/functions.php:3693
1984
  msgid "No exceptions"
1985
  msgstr ""
1986
 
1987
  #. translators: %s: Ad Inserter Pro
1988
- #: includes/functions-check-now.php:3335 includes/functions.php:3704
1989
  msgid "%s options for network blogs"
1990
  msgstr ""
1991
 
1992
  #. translators: %s: Ad Inserter Pro
1993
- #: includes/functions-check-now.php:3340 includes/functions.php:3709
1994
  msgid "Enable %s widgets for sub-sites"
1995
  msgstr ""
1996
 
1997
- #: includes/functions-check-now.php:3340 includes/functions.php:3709
1998
  msgid "Widgets"
1999
  msgstr ""
2000
 
2001
- #: includes/functions-check-now.php:3345 includes/functions.php:3714
2002
  msgid "Enable PHP code processing for sub-sites"
2003
  msgstr ""
2004
 
2005
- #: includes/functions-check-now.php:3345 includes/functions.php:3714
2006
  msgid "PHP Processing"
2007
  msgstr ""
2008
 
2009
  #. translators: %s: Ad Inserter Pro
2010
- #: includes/functions-check-now.php:3350 includes/functions.php:3719
2011
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
2012
  msgstr ""
2013
 
2014
- #: includes/functions-check-now.php:3350 includes/functions.php:3719
2015
  msgid "Post/Page exceptions"
2016
  msgstr ""
2017
 
2018
  #. translators: %s: Ad Inserter Pro
2019
- #: includes/functions-check-now.php:3355 includes/functions.php:3724
2020
  msgid "Enable %s settings page for sub-sites"
2021
  msgstr ""
2022
 
2023
- #: includes/functions-check-now.php:3355 includes/functions.php:3724
2024
  msgid "Settings page"
2025
  msgstr ""
2026
 
2027
  #. translators: %s: Ad Inserter Pro
2028
- #: includes/functions-check-now.php:3360 includes/functions.php:3729
2029
  msgid "Enable %s settings of main site to be used for all blogs"
2030
  msgstr ""
2031
 
2032
- #: includes/functions-check-now.php:3360 includes/functions.php:3729
2033
  msgid "Main site settings used for all blogs"
2034
  msgstr ""
2035
 
2036
- #: includes/functions-check-now.php:3371 includes/functions.php:3745
2037
- #: settings.php:2865
2038
  msgid "Ad Blocking Detection"
2039
  msgstr ""
2040
 
2041
- #: includes/functions-check-now.php:3377 includes/functions.php:3751
2042
  msgid ""
2043
  "Standard method is reliable but should be used only if Advanced method does "
2044
  "not work. Advanced method recreates files used for detection with random "
@@ -2047,150 +1879,150 @@ msgid ""
2047
  msgstr ""
2048
 
2049
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
2050
- #: includes/functions-check-now.php:4139 includes/functions.php:4593
2051
- #: includes/functions.php:4711 includes/functions.php:4736
2052
  msgid "AD BLOCKING"
2053
  msgstr ""
2054
 
2055
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
2056
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
2057
- #: includes/functions.php:4594 includes/functions.php:4640
2058
- #: includes/functions.php:4705 includes/functions.php:4737
2059
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
2060
  msgstr ""
2061
 
2062
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
2063
- #: includes/functions-check-now.php:4146 includes/functions.php:4597
2064
- #: includes/functions.php:4704 includes/functions.php:4743
2065
  msgid "NO AD BLOCKING"
2066
  msgstr ""
2067
 
2068
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
2069
- #: includes/functions.php:4639 includes/functions.php:4646
2070
  msgid "AD BLOCKING REPLACEMENT"
2071
  msgstr ""
2072
 
2073
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
2074
- #: includes/functions.php:5004 includes/functions.php:5215
2075
  msgid "Pageviews"
2076
  msgstr ""
2077
 
2078
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2079
  msgctxt "Version"
2080
  msgid "Unknown"
2081
  msgstr ""
2082
 
2083
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2084
  msgctxt "Times"
2085
  msgid "DISPLAYED"
2086
  msgstr ""
2087
 
2088
- #: includes/functions-check-now.php:4365 includes/functions.php:5150
2089
  msgid "No version"
2090
  msgstr ""
2091
 
2092
- #: includes/functions-check-now.php:4366 includes/functions.php:5151
2093
  msgctxt "Times"
2094
  msgid "BLOCKED"
2095
  msgstr ""
2096
 
2097
- #: includes/functions-check-now.php:4428 includes/functions.php:5215
2098
  msgid "Impressions"
2099
  msgstr ""
2100
 
2101
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
2102
- #: includes/functions-check-now.php:4485 includes/functions.php:5216
2103
- #: includes/functions.php:5217 includes/functions.php:5410
2104
  msgid "Clicks"
2105
  msgstr ""
2106
 
2107
- #: includes/functions-check-now.php:4430 includes/functions.php:5217
2108
  msgid "events"
2109
  msgstr ""
2110
 
2111
- #: includes/functions-check-now.php:4431 includes/functions.php:5218
2112
  msgid "Ad Blocking Share"
2113
  msgstr ""
2114
 
2115
  #. translators: CTR as Click Through Rate
2116
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
2117
- #: includes/functions.php:5218 includes/functions.php:5416
2118
  msgid "CTR"
2119
  msgstr ""
2120
 
2121
- #: includes/functions-check-now.php:4573 includes/functions.php:5498
2122
  msgid "pageviews"
2123
  msgid_plural "pageviews"
2124
  msgstr[0] ""
2125
  msgstr[1] ""
2126
 
2127
- #: includes/functions-check-now.php:4573 includes/functions.php:5498
2128
  msgid "impressions"
2129
  msgid_plural "impressions"
2130
  msgstr[0] ""
2131
  msgstr[1] ""
2132
 
2133
- #: includes/functions-check-now.php:4577 includes/functions.php:5502
2134
  msgid "event"
2135
  msgid_plural "events"
2136
  msgstr[0] ""
2137
  msgstr[1] ""
2138
 
2139
- #: includes/functions-check-now.php:4672 includes/functions.php:5597
2140
  msgctxt "Pageviews / Impressions"
2141
  msgid "Average"
2142
  msgstr ""
2143
 
2144
- #: includes/functions-check-now.php:4693 includes/functions.php:5618
2145
  msgctxt "Ad Blocking / Clicks"
2146
  msgid "Average"
2147
  msgstr ""
2148
 
2149
- #: includes/functions-check-now.php:4717 includes/functions.php:5642
2150
  msgctxt "Ad Blocking Share / CTR"
2151
  msgid "Average"
2152
  msgstr ""
2153
 
2154
  #. Translators: %s: Ad Inserter Pro
2155
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
2156
- #: includes/functions-check-now.php:5334 includes/functions.php:5826
2157
- #: includes/functions.php:5918 includes/functions.php:6261 strings.php:203
2158
  msgid "%s Report"
2159
  msgstr ""
2160
 
2161
- #: includes/functions-check-now.php:5240 includes/functions.php:6167
2162
  msgid "for last month"
2163
  msgstr ""
2164
 
2165
- #: includes/functions-check-now.php:5245 includes/functions.php:6172
2166
  msgid "for this month"
2167
  msgstr ""
2168
 
2169
- #: includes/functions-check-now.php:5250 includes/functions.php:6177
2170
  msgid "for this year"
2171
  msgstr ""
2172
 
2173
- #: includes/functions-check-now.php:5255 includes/functions.php:6182
2174
  msgid "for the last 15 days"
2175
  msgstr ""
2176
 
2177
- #: includes/functions-check-now.php:5260 includes/functions.php:6187
2178
  msgid "for the last 30 days"
2179
  msgstr ""
2180
 
2181
- #: includes/functions-check-now.php:5265 includes/functions.php:6192
2182
  msgid "for the last 90 days"
2183
  msgstr ""
2184
 
2185
- #: includes/functions-check-now.php:5270 includes/functions.php:6197
2186
  msgid "for the last 180 days"
2187
  msgstr ""
2188
 
2189
- #: includes/functions-check-now.php:5275 includes/functions.php:6202
2190
  msgid "for the last 365 days"
2191
  msgstr ""
2192
 
2193
- #: includes/functions.php:515 includes/functions.php:3384
2194
  msgid "Generate CSV report"
2195
  msgstr ""
2196
 
@@ -2232,142 +2064,188 @@ msgstr ""
2232
  msgid "Select image"
2233
  msgstr ""
2234
 
2235
- #: includes/functions.php:1042 includes/functions.php:1078 settings.php:1794
2236
- #: settings.php:1817 settings.php:1840 settings.php:1863 settings.php:1886
2237
- #: settings.php:1909 settings.php:1931 settings.php:1953
2238
  msgid "Click to select black or white list"
2239
  msgstr ""
2240
 
2241
  #. translators: %s: Ad Inserter Pro
2242
- #: includes/functions.php:1617
2243
  msgid "Invalid %s version."
2244
  msgstr ""
2245
 
2246
- #: includes/functions.php:1618
2247
  msgid "Check license"
2248
  msgstr ""
2249
 
2250
- #: includes/functions.php:1630
2251
  msgid "License"
2252
  msgstr ""
2253
 
2254
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2255
- #: includes/functions.php:1954
2256
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2257
  msgstr ""
2258
 
2259
  #. Translators: %s: HTML tags
2260
- #: includes/functions.php:2002
2261
  msgid ""
2262
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2263
  "account %s and create license key."
2264
  msgstr ""
2265
 
2266
- #: includes/functions.php:2702
2267
  msgid "Start date"
2268
  msgstr ""
2269
 
2270
- #: includes/functions.php:2702
2271
  msgid "Enter date in format yyyy-mm-dd"
2272
  msgstr ""
2273
 
2274
- #: includes/functions.php:2703
2275
  msgid "Start time"
2276
  msgstr ""
2277
 
2278
- #: includes/functions.php:2703
2279
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2280
  msgstr ""
2281
 
2282
- #: includes/functions.php:2705
2283
  msgid "End date"
2284
  msgstr ""
2285
 
2286
- #: includes/functions.php:2706
2287
  msgid "End time"
2288
  msgstr ""
2289
 
2290
- #: includes/functions.php:2709
2291
  msgid "Select wanted days in week"
2292
  msgstr ""
2293
 
2294
- #: includes/functions.php:3041
2295
  msgid "Ad blocking detection is disabled"
2296
  msgstr ""
2297
 
2298
- #: includes/functions.php:3185
2299
  msgid "Protected"
2300
  msgstr ""
2301
 
2302
- #: includes/functions.php:3188
2303
  msgid "Manual loading"
2304
  msgstr ""
2305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2306
  #. Translators: %s HTML tags
2307
- #: includes/functions.php:3260
2308
  msgid "Create and manage %s MaxMind license key %s"
2309
  msgstr ""
2310
 
2311
- #: includes/functions.php:3296
2312
  msgid "MaxMind license key"
2313
  msgstr ""
2314
 
2315
- #: includes/functions.php:3299
2316
  msgid "Enter license key obtained from MaxMind"
2317
  msgstr ""
2318
 
2319
- #: includes/functions.php:3521
2320
  msgid ""
2321
  "Image or logo to be displayed in the header of the statistics report. "
2322
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2323
  "reset to default image."
2324
  msgstr ""
2325
 
2326
- #: includes/functions.php:3569
2327
  msgid "Event category"
2328
  msgstr ""
2329
 
2330
- #: includes/functions.php:3572
2331
  msgid ""
2332
  "Category name used for external tracking events. You can use tags to get the "
2333
  "event, the number or the name of the block that caused the event."
2334
  msgstr ""
2335
 
2336
- #: includes/functions.php:3577
2337
  msgid "Event action"
2338
  msgstr ""
2339
 
2340
- #: includes/functions.php:3580
2341
  msgid ""
2342
  "Action name used for external tracking events. You can use tags to get the "
2343
  "event, the number or the name of the block that caused the event."
2344
  msgstr ""
2345
 
2346
- #: includes/functions.php:3585
2347
  msgid "Event label"
2348
  msgstr ""
2349
 
2350
- #: includes/functions.php:3588
2351
  msgid ""
2352
  "Label name used for external tracking events. You can use tags to get the "
2353
  "event, the number or the name of the block that caused the event."
2354
  msgstr ""
2355
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2356
  #. translators: %s: Ad Inserter Pro
2357
- #: includes/functions.php:3734
2358
  msgid "Show link to %s settings page for each site on the Sites page"
2359
  msgstr ""
2360
 
2361
  #. translators: %s: Ad Inserter Pro
2362
- #: includes/functions.php:3734
2363
  msgid "Show link to %s on the Sites page"
2364
  msgstr ""
2365
 
2366
- #: includes/functions.php:5298
2367
  msgid "Date"
2368
  msgstr ""
2369
 
2370
- #: includes/functions.php:5772
2371
  msgid "File %s missing."
2372
  msgstr ""
2373
 
@@ -2395,7 +2273,7 @@ msgstr ""
2395
  msgid "Placeholder"
2396
  msgstr ""
2397
 
2398
- #: includes/placeholders.php:361 settings.php:983 settings.php:4459
2399
  msgid "Size"
2400
  msgstr ""
2401
 
@@ -2503,11 +2381,11 @@ msgstr ""
2503
  msgid "Ad Blocking Detected Message Preview"
2504
  msgstr ""
2505
 
2506
- #: includes/preview-adb.php:345 settings.php:2991
2507
  msgid "Message CSS"
2508
  msgstr ""
2509
 
2510
- #: includes/preview-adb.php:350 settings.php:2999
2511
  msgid "Overlay CSS"
2512
  msgstr ""
2513
 
@@ -2543,7 +2421,7 @@ msgstr ""
2543
  msgid "background"
2544
  msgstr ""
2545
 
2546
- #: includes/preview.php:2434 includes/preview.php:2647 settings.php:1368
2547
  msgid "Alignment"
2548
  msgstr ""
2549
 
@@ -2660,7 +2538,7 @@ msgid ""
2660
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2661
  msgstr ""
2662
 
2663
- #: settings.php:204 settings.php:1257
2664
  msgid ""
2665
  "Settings for individual exceptions have been updated. Please check all "
2666
  "blocks that have exceptions and and then save settings."
@@ -2670,7 +2548,7 @@ msgstr ""
2670
  msgid "Online documentation"
2671
  msgstr ""
2672
 
2673
- #: settings.php:250 settings.php:817 settings.php:2366
2674
  msgid "Show AdSense ad units"
2675
  msgstr ""
2676
 
@@ -2678,7 +2556,7 @@ msgstr ""
2678
  msgid "Edit ads.txt file"
2679
  msgstr ""
2680
 
2681
- #: settings.php:262 settings.php:1200
2682
  msgid "Check theme for available positions for automatic insertion"
2683
  msgstr ""
2684
 
@@ -2803,7 +2681,7 @@ msgstr ""
2803
  msgid "General Settings"
2804
  msgstr ""
2805
 
2806
- #: settings.php:765 settings.php:2718 settings.php:2785 settings.php:2971
2807
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2808
  msgstr ""
2809
 
@@ -2835,7 +2713,7 @@ msgstr ""
2835
  msgid "Clear block"
2836
  msgstr ""
2837
 
2838
- #: settings.php:831 settings.php:4330
2839
  msgid "Copy block"
2840
  msgstr ""
2841
 
@@ -2884,234 +2762,238 @@ msgid "Image"
2884
  msgstr ""
2885
 
2886
  #: settings.php:918
 
 
 
 
2887
  msgid "Link"
2888
  msgstr ""
2889
 
2890
- #: settings.php:929
2891
  msgid "Open link in a new tab"
2892
  msgstr ""
2893
 
2894
- #: settings.php:930
2895
  msgid "Select Image"
2896
  msgstr ""
2897
 
2898
- #: settings.php:931
2899
  msgid "Select Placeholder"
2900
  msgstr ""
2901
 
2902
- #: settings.php:943
2903
  msgid "Comment"
2904
  msgstr ""
2905
 
2906
- #: settings.php:952
2907
  msgctxt "AdSense"
2908
  msgid "Publisher ID"
2909
  msgstr ""
2910
 
2911
- #: settings.php:961
2912
  msgctxt "AdSense"
2913
  msgid "Ad Slot ID"
2914
  msgstr ""
2915
 
2916
- #: settings.php:970
2917
  msgid "Ad Type"
2918
  msgstr ""
2919
 
2920
- #: settings.php:995 settings.php:1130
2921
  msgid "AMP Ad"
2922
  msgstr ""
2923
 
2924
- #: settings.php:1013
2925
  msgid "Show ad units from your AdSense account"
2926
  msgstr ""
2927
 
2928
- #: settings.php:1013
2929
  msgid "AdSense ad units"
2930
  msgstr ""
2931
 
2932
- #: settings.php:1030
2933
  msgctxt "AdSense"
2934
  msgid "Layout"
2935
  msgstr ""
2936
 
2937
- #: settings.php:1039
2938
  msgctxt "AdSense"
2939
  msgid "Layout Key"
2940
  msgstr ""
2941
 
2942
- #: settings.php:1049
2943
  msgid "Full width"
2944
  msgstr ""
2945
 
2946
- #: settings.php:1051
2947
  msgctxt "Full width"
2948
  msgid "Enabled"
2949
  msgstr ""
2950
 
2951
- #: settings.php:1052
2952
  msgctxt "Full width"
2953
  msgid "Disabled"
2954
  msgstr ""
2955
 
2956
- #: settings.php:1166
2957
  msgid ""
2958
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2959
  "Cookie or Referer (domain)"
2960
  msgstr ""
2961
 
2962
- #: settings.php:1166
2963
  msgid "Lists"
2964
  msgstr ""
2965
 
2966
- #: settings.php:1167
2967
  msgid "Widget, Shortcode and PHP function call"
2968
  msgstr ""
2969
 
2970
- #: settings.php:1167
2971
  msgid "Manual"
2972
  msgstr ""
2973
 
2974
- #: settings.php:1168
2975
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2976
  msgstr ""
2977
 
2978
- #: settings.php:1168
2979
  msgid "Devices"
2980
  msgstr ""
2981
 
2982
- #: settings.php:1169
2983
  msgid ""
2984
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2985
  "feeds), Filter, Scheduling, General tag"
2986
  msgstr ""
2987
 
2988
- #: settings.php:1169
2989
  msgid "Misc"
2990
  msgstr ""
2991
 
2992
- #: settings.php:1170
2993
  msgid "Preview code and alignment"
2994
  msgstr ""
2995
 
2996
- #: settings.php:1173 settings.php:2350
2997
  msgid ""
2998
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2999
  "editor is active before saving settings."
3000
  msgstr ""
3001
 
3002
- #: settings.php:1186 settings.php:1187
3003
  msgid "Enable insertion on posts"
3004
  msgstr ""
3005
 
3006
- #: settings.php:1187 settings.php:3527
3007
  msgid "Posts"
3008
  msgstr ""
3009
 
3010
- #: settings.php:1191 settings.php:1192
3011
  msgid ""
3012
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
3013
  "page or theme homepage (available positions may depend on hooks used by the "
3014
  "theme)"
3015
  msgstr ""
3016
 
3017
- #: settings.php:1192 settings.php:3529
3018
  msgid "Homepage"
3019
  msgstr ""
3020
 
3021
- #: settings.php:1196 settings.php:1197
3022
  msgid "Enable insertion on category blog pages (including sub-pages)"
3023
  msgstr ""
3024
 
3025
- #: settings.php:1197 settings.php:3530
3026
  msgid "Category pages"
3027
  msgstr ""
3028
 
3029
- #: settings.php:1207 settings.php:1208
3030
  msgid "Enable insertion on static pages"
3031
  msgstr ""
3032
 
3033
- #: settings.php:1208 settings.php:3528
3034
  msgid "Static pages"
3035
  msgstr ""
3036
 
3037
- #: settings.php:1212 settings.php:1213
3038
  msgid "Enable insertion on search blog pages"
3039
  msgstr ""
3040
 
3041
- #: settings.php:1213 settings.php:3532
3042
  msgid "Search pages"
3043
  msgstr ""
3044
 
3045
- #: settings.php:1217 settings.php:1218
3046
  msgid "Enable insertion on tag or archive blog pages"
3047
  msgstr ""
3048
 
3049
- #: settings.php:1221
3050
  msgid "Toggle settings for default insertion and list of individual exceptions"
3051
  msgstr ""
3052
 
3053
- #: settings.php:1233
3054
  msgid ""
3055
  "Enable individual post/page exceptions for insertion of this block. They can "
3056
  "be configured on the individual post/page editor page (in the settings below "
3057
  "the editor)."
3058
  msgstr ""
3059
 
3060
- #: settings.php:1234
3061
  msgid ""
3062
  "Enable individual post/page exceptions for insertion of this block. When "
3063
  "enabled they can be configured on the individual post/page editor page (in "
3064
  "the settings below the editor)."
3065
  msgstr ""
3066
 
3067
- #: settings.php:1234
3068
  msgid "Use exceptions for individual posts or pages to change insertion"
3069
  msgstr ""
3070
 
3071
  #. Translators: Enabled means...
3072
- #: settings.php:1242
3073
  msgid ""
3074
  "means the insertion for this block is enabled by default and disabled for "
3075
  "exceptions."
3076
  msgstr ""
3077
 
3078
  #. Translators: Disabled means...
3079
- #: settings.php:1243
3080
  msgid ""
3081
  "means the insertion for this block is disabled by default and enabled for "
3082
  "exceptions."
3083
  msgstr ""
3084
 
3085
- #: settings.php:1244
3086
  msgid ""
3087
  "When individual post/page exceptions are enabled they can be configured on "
3088
  "the individual post/page editor page (in the settings below the editor)."
3089
  msgstr ""
3090
 
3091
- #: settings.php:1252
3092
  msgid ""
3093
  "No exception for post or static page defined. Block will not be inserted."
3094
  msgstr ""
3095
 
3096
- #: settings.php:1270
3097
  msgctxt "post"
3098
  msgid "Type"
3099
  msgstr ""
3100
 
3101
  #. translators: %d: block number
3102
- #: settings.php:1272
3103
  msgid "Are you sure you want to clear listed exceptions for block %d?"
3104
  msgstr ""
3105
 
3106
- #: settings.php:1273
3107
  msgid "Clear listed exceptions for block"
3108
  msgstr ""
3109
 
3110
- #: settings.php:1299 settings.php:1447 settings.php:2105
3111
  msgid "Insertion"
3112
  msgstr ""
3113
 
3114
- #: settings.php:1337
3115
  msgid ""
3116
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
3117
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
@@ -3121,7 +3003,7 @@ msgid ""
3121
  "negative number means counting from the opposite direction"
3122
  msgstr ""
3123
 
3124
- #: settings.php:1338
3125
  msgid ""
3126
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3127
  "means every N images, empty means all images, 0 means random image, value "
@@ -3131,178 +3013,178 @@ msgid ""
3131
  "direction"
3132
  msgstr ""
3133
 
3134
- #: settings.php:1351
3135
  msgid ""
3136
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3137
  "numbers, %N means every N excerpts, empty means all excerpts"
3138
  msgstr ""
3139
 
3140
- #: settings.php:1352
3141
  msgid ""
3142
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3143
  "numbers, %N means every N posts, empty means all posts"
3144
  msgstr ""
3145
 
3146
- #: settings.php:1353
3147
  msgid ""
3148
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3149
  "numbers, %N means every N comments, empty means all comments"
3150
  msgstr ""
3151
 
3152
- #: settings.php:1360
3153
  msgid "Toggle paragraph counting settings"
3154
  msgstr ""
3155
 
3156
- #: settings.php:1361
3157
  msgid "Toggle paragraph clearance settings"
3158
  msgstr ""
3159
 
3160
- #: settings.php:1364
3161
  msgid "Toggle insertion filter settings"
3162
  msgstr ""
3163
 
3164
- #: settings.php:1382
3165
  msgid "Toggle insertion and alignment icons"
3166
  msgstr ""
3167
 
3168
- #: settings.php:1396
3169
  msgid "Custom CSS code for the wrapping div"
3170
  msgstr ""
3171
 
3172
- #: settings.php:1399 settings.php:1400 settings.php:1401 settings.php:1402
3173
- #: settings.php:1403 settings.php:1404
3174
  msgid "CSS code for the wrapping div, click to edit"
3175
  msgstr ""
3176
 
3177
- #: settings.php:1417
3178
  msgid "HTML element"
3179
  msgstr ""
3180
 
3181
- #: settings.php:1430
3182
  msgid "HTML element selector or comma separated list of selectors"
3183
  msgstr ""
3184
 
3185
- #: settings.php:1436 settings.php:2876
3186
  msgid "Action"
3187
  msgstr ""
3188
 
3189
- #: settings.php:1448
3190
  msgid ""
3191
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3192
  "Server-side insertion inserts block when the page is generated but needs "
3193
  "Output buffering enabled."
3194
  msgstr ""
3195
 
3196
- #: settings.php:1458
3197
  msgid "Wait for"
3198
  msgstr ""
3199
 
3200
- #: settings.php:1470
3201
  msgid "Wait for HTML element to be loaded"
3202
  msgstr ""
3203
 
3204
- #: settings.php:1477
3205
  msgid "Time in ms to delay insertion"
3206
  msgstr ""
3207
 
3208
- #: settings.php:1482
3209
  msgid "Code position"
3210
  msgstr ""
3211
 
3212
- #: settings.php:1483
3213
  msgid ""
3214
  "Page position where the code for client-side insertion will be inserted."
3215
  msgstr ""
3216
 
3217
- #: settings.php:1501
3218
  msgid "Count"
3219
  msgstr ""
3220
 
3221
- #: settings.php:1507
3222
  msgid "paragraphs with tags"
3223
  msgstr ""
3224
 
3225
- #: settings.php:1513
3226
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3227
  msgstr ""
3228
 
3229
- #: settings.php:1522
3230
  msgid "that have between"
3231
  msgstr ""
3232
 
3233
- #: settings.php:1528
3234
  msgid "Minimum number of paragraph words, leave empty for no limit"
3235
  msgstr ""
3236
 
3237
- #: settings.php:1537
3238
  msgid "Maximum number of paragraph words, leave empty for no limit"
3239
  msgstr ""
3240
 
3241
- #: settings.php:1540
3242
  msgid "words"
3243
  msgstr ""
3244
 
3245
- #: settings.php:1555 settings.php:1602 settings.php:1716 settings.php:1742
3246
  msgid "Comma separated texts"
3247
  msgstr ""
3248
 
3249
  #. translators: inside [HTML tags] elements that contain
3250
- #: settings.php:1574
3251
  msgid "inside"
3252
  msgstr ""
3253
 
3254
- #: settings.php:1580
3255
  msgid "Comma separated HTML tag names of container elements"
3256
  msgstr ""
3257
 
3258
  #. translators: inside [HTML tags] elements that contain
3259
- #: settings.php:1589
3260
  msgid "elements that"
3261
  msgstr ""
3262
 
3263
- #: settings.php:1612
3264
  msgid ""
3265
  "Count also paragraphs inside these elements - defined on general plugin "
3266
  "settings page - tab [*] / tab General"
3267
  msgstr ""
3268
 
3269
- #: settings.php:1619 settings.php:1620
3270
  msgid ""
3271
  "If checked it will search for the text only in tag attributes like [[id]], "
3272
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3273
  "will be searched."
3274
  msgstr ""
3275
 
3276
- #: settings.php:1620
3277
  msgid "Check only tag attributes"
3278
  msgstr ""
3279
 
3280
  #. Translators: %s: HTML tags
3281
- #: settings.php:1625
3282
  msgid "Count inside %s elements"
3283
  msgstr ""
3284
 
3285
  #. Translators: Do not insert for first X and last Y paragraphs
3286
- #: settings.php:1633
3287
  msgid "Do not insert for first"
3288
  msgid_plural "Do not insert for first"
3289
  msgstr[0] ""
3290
  msgstr[1] ""
3291
 
3292
- #: settings.php:1639
3293
  msgid ""
3294
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3295
  "first paragraphs"
3296
  msgstr ""
3297
 
3298
  #. Translators: Do not insert for first X and last Y paragraphs
3299
- #: settings.php:1642
3300
  msgid "and last"
3301
  msgid_plural "and last"
3302
  msgstr[0] ""
3303
  msgstr[1] ""
3304
 
3305
- #: settings.php:1648
3306
  msgid ""
3307
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3308
  "last paragraphs"
@@ -3310,124 +3192,124 @@ msgstr ""
3310
 
3311
  #. Translators: Do not insert for first X and last Y paragraphs
3312
  #. Translators: Post/Static page must have between X and Y paragraphs
3313
- #: settings.php:1651 settings.php:1677
3314
  msgid "paragraph"
3315
  msgid_plural "paragraphs"
3316
  msgstr[0] ""
3317
  msgstr[1] ""
3318
 
3319
- #: settings.php:1659 settings.php:2237
3320
  msgid "Post/Static page must have between"
3321
  msgstr ""
3322
 
3323
- #: settings.php:1665
3324
  msgid "Minimum number of paragraphs, leave empty for no limit"
3325
  msgstr ""
3326
 
3327
- #: settings.php:1674
3328
  msgid "Maximum number of paragraphs, leave empty for no limit"
3329
  msgstr ""
3330
 
3331
- #: settings.php:1685
3332
  msgid "Minimum number of words in paragraphs above"
3333
  msgstr ""
3334
 
3335
- #: settings.php:1691
3336
  msgid ""
3337
  "Used only with automatic insertion After paragraph and empty paragraph "
3338
  "numbers"
3339
  msgstr ""
3340
 
3341
- #: settings.php:1701 settings.php:1727
3342
  msgid "In"
3343
  msgstr ""
3344
 
3345
- #: settings.php:1707
3346
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3347
  msgstr ""
3348
 
3349
- #: settings.php:1710
3350
  msgid "paragraphs above avoid"
3351
  msgstr ""
3352
 
3353
- #: settings.php:1733
3354
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3355
  msgstr ""
3356
 
3357
- #: settings.php:1736
3358
  msgid "paragraphs below avoid"
3359
  msgstr ""
3360
 
3361
- #: settings.php:1752
3362
  msgid "If text is found"
3363
  msgstr ""
3364
 
3365
- #: settings.php:1759
3366
  msgid "check up to"
3367
  msgstr ""
3368
 
3369
- #: settings.php:1767
3370
  msgctxt "check up to"
3371
  msgid "paragraphs"
3372
  msgstr ""
3373
 
3374
- #: settings.php:1783
3375
  msgid "Categories"
3376
  msgstr ""
3377
 
3378
- #: settings.php:1786
3379
  msgid "Toggle category editor"
3380
  msgstr ""
3381
 
3382
- #: settings.php:1789
3383
  msgid "Comma separated category slugs"
3384
  msgstr ""
3385
 
3386
- #: settings.php:1806
3387
  msgid "Tags"
3388
  msgstr ""
3389
 
3390
- #: settings.php:1809
3391
  msgid "Toggle tag editor"
3392
  msgstr ""
3393
 
3394
- #: settings.php:1812
3395
  msgid "Comma separated tag slugs"
3396
  msgstr ""
3397
 
3398
- #: settings.php:1829
3399
  msgid "Taxonomies"
3400
  msgstr ""
3401
 
3402
- #: settings.php:1832
3403
  msgid "Toggle taxonomy editor"
3404
  msgstr ""
3405
 
3406
- #: settings.php:1835
3407
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3408
  msgstr ""
3409
 
3410
- #: settings.php:1852
3411
  msgid "Post IDs"
3412
  msgstr ""
3413
 
3414
- #: settings.php:1855
3415
  msgid "Toggle post/page ID editor"
3416
  msgstr ""
3417
 
3418
- #: settings.php:1858
3419
  msgid "Comma separated post/page IDs"
3420
  msgstr ""
3421
 
3422
- #: settings.php:1875
3423
  msgid "Urls"
3424
  msgstr ""
3425
 
3426
- #: settings.php:1878
3427
  msgid "Toggle url editor"
3428
  msgstr ""
3429
 
3430
- #: settings.php:1881
3431
  msgid ""
3432
  "Comma separated urls (page addresses) starting with / after domain name (e."
3433
  "g. /permalink-url, use only when you need to taget a specific url not "
@@ -3435,198 +3317,198 @@ msgid ""
3435
  "start*. *url-pattern*, *url-end)"
3436
  msgstr ""
3437
 
3438
- #: settings.php:1897
3439
  msgid "Url parameters"
3440
  msgstr ""
3441
 
3442
- #: settings.php:1901
3443
  msgid "Toggle url parameter and cookie editor"
3444
  msgstr ""
3445
 
3446
- #: settings.php:1904
3447
  msgid ""
3448
  "Comma separated url query parameters or cookies with optional values (use "
3449
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3450
  msgstr ""
3451
 
3452
- #: settings.php:1920
3453
  msgid "Referrers"
3454
  msgstr ""
3455
 
3456
- #: settings.php:1923
3457
  msgid "Toggle referer editor"
3458
  msgstr ""
3459
 
3460
- #: settings.php:1926
3461
  msgid ""
3462
  "Comma separated domains, use # for no referrer, you can also use partial "
3463
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3464
  msgstr ""
3465
 
3466
- #: settings.php:1942
3467
  msgid "Clients"
3468
  msgstr ""
3469
 
3470
- #: settings.php:1945
3471
  msgid "Toggle client editor"
3472
  msgstr ""
3473
 
3474
- #: settings.php:1948
3475
  msgid ""
3476
  "Comma separated names (operating systems, browsers, devices). You can also "
3477
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3478
  "pattern*, *user-agent-end)"
3479
  msgstr ""
3480
 
3481
- #: settings.php:1974
3482
  msgid "Enable widget for this block"
3483
  msgstr ""
3484
 
3485
- #: settings.php:1979
3486
  msgid "Sidebars (or widget positions) where this widget is used"
3487
  msgstr ""
3488
 
3489
- #: settings.php:1986
3490
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3491
  msgstr ""
3492
 
3493
- #: settings.php:1987 settings.php:4387
3494
  msgid "Shortcode"
3495
  msgstr ""
3496
 
3497
- #: settings.php:2002
3498
  msgid ""
3499
  "Enable PHP function call to insert this block at any position in theme file. "
3500
  "If function is disabled for block it will return empty string."
3501
  msgstr ""
3502
 
3503
- #: settings.php:2003
3504
  msgid "PHP function"
3505
  msgstr ""
3506
 
3507
- #: settings.php:2018
3508
  msgid "Client-side device detection"
3509
  msgstr ""
3510
 
3511
- #: settings.php:2019
3512
  msgid "Server-side device detection"
3513
  msgstr ""
3514
 
3515
- #: settings.php:2026
3516
  msgid "Use client-side detection to"
3517
  msgstr ""
3518
 
3519
- #: settings.php:2028
3520
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3521
  msgstr ""
3522
 
3523
  #. Translators: only on (the following devices): viewport names (devices)
3524
  #. listed
3525
- #: settings.php:2033
3526
  msgid "only on"
3527
  msgstr ""
3528
 
3529
- #: settings.php:2061
3530
  msgid "Device min width %s px"
3531
  msgstr ""
3532
 
3533
- #: settings.php:2087
3534
  msgid "Use server-side detection to insert block only for"
3535
  msgstr ""
3536
 
3537
- #: settings.php:2106
3538
  msgid "Filter"
3539
  msgstr ""
3540
 
3541
- #: settings.php:2107
3542
  msgid "Word Count"
3543
  msgstr ""
3544
 
3545
- #: settings.php:2108 settings.php:4377
3546
  msgid "Scheduling"
3547
  msgstr ""
3548
 
3549
- #: settings.php:2109
3550
  msgid "Display"
3551
  msgstr ""
3552
 
3553
- #: settings.php:2111 settings.php:2392
3554
  msgid "General"
3555
  msgstr ""
3556
 
3557
- #: settings.php:2123
3558
  msgid "Old settings for AMP pages detected"
3559
  msgstr ""
3560
 
3561
- #: settings.php:2123
3562
  msgid ""
3563
  "To insert different codes on normal and AMP pages separate them with "
3564
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3565
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3566
  msgstr ""
3567
 
3568
- #: settings.php:2123
3569
  msgid "AMP pages"
3570
  msgstr ""
3571
 
3572
- #: settings.php:2128
3573
  msgid "Enable insertion for Ajax requests"
3574
  msgstr ""
3575
 
3576
- #: settings.php:2128
3577
  msgid "Ajax requests"
3578
  msgstr ""
3579
 
3580
- #: settings.php:2133
3581
  msgid "Enable insertion in RSS feeds"
3582
  msgstr ""
3583
 
3584
- #: settings.php:2133
3585
  msgid "RSS Feed"
3586
  msgstr ""
3587
 
3588
- #: settings.php:2138
3589
  msgid "Enable insertion on page for Error 404: Page not found"
3590
  msgstr ""
3591
 
3592
- #: settings.php:2138
3593
  msgid "Error 404 page"
3594
  msgstr ""
3595
 
3596
- #: settings.php:2150
3597
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3598
  msgstr ""
3599
 
3600
- #: settings.php:2151
3601
  msgid "insertions"
3602
  msgstr ""
3603
 
3604
- #: settings.php:2153
3605
  msgid ""
3606
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3607
  "General)"
3608
  msgstr ""
3609
 
3610
- #: settings.php:2156 settings.php:2580
3611
  msgid "Max blocks per page"
3612
  msgstr ""
3613
 
3614
- #: settings.php:2168
3615
  msgid "Insert for"
3616
  msgstr ""
3617
 
3618
- #: settings.php:2176
3619
  msgid ""
3620
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3621
  "is currently active). Might speed up insertion on content pages when "
3622
  "[[the_content]] filter hook is called multiple times."
3623
  msgstr ""
3624
 
3625
- #: settings.php:2180
3626
  msgid "Insert only in the loop"
3627
  msgstr ""
3628
 
3629
- #: settings.php:2183
3630
  msgid ""
3631
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3632
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
@@ -3634,24 +3516,24 @@ msgid ""
3634
  "footer."
3635
  msgstr ""
3636
 
3637
- #: settings.php:2187
3638
  msgid "Embed JS code"
3639
  msgstr ""
3640
 
3641
- #: settings.php:2190
3642
  msgid ""
3643
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3644
  msgstr ""
3645
 
3646
- #: settings.php:2194
3647
  msgid "Disable caching"
3648
  msgstr ""
3649
 
3650
- #: settings.php:2206
3651
  msgid "Filter insertions"
3652
  msgstr ""
3653
 
3654
- #: settings.php:2209
3655
  msgid ""
3656
  "Filter multiple insertions by specifying wanted insertions for this block - "
3657
  "single number, comma separated numbers or %N for every N insertions - empty "
@@ -3659,576 +3541,576 @@ msgid ""
3659
  "using only one insertion type."
3660
  msgstr ""
3661
 
3662
- #: settings.php:2212
3663
  msgid "using"
3664
  msgstr ""
3665
 
3666
- #: settings.php:2231
3667
  msgid "Checked means specified calls are unwanted"
3668
  msgstr ""
3669
 
3670
- #: settings.php:2231
3671
  msgid "Invert filter"
3672
  msgstr ""
3673
 
3674
- #: settings.php:2238
3675
  msgid "Minimum number of post/static page words, leave empty for no limit"
3676
  msgstr ""
3677
 
3678
- #: settings.php:2240
3679
  msgid "Maximum number of post/static page words, leave empty for no limit"
3680
  msgstr ""
3681
 
3682
- #: settings.php:2253
3683
  msgid "for"
3684
  msgstr ""
3685
 
3686
- #: settings.php:2253
3687
  msgid "days after publishing"
3688
  msgstr ""
3689
 
3690
- #: settings.php:2255
3691
  msgid "Not available"
3692
  msgstr ""
3693
 
3694
  #. Translators: do not translate [[width]] - it is a CSS property
3695
- #: settings.php:2267
3696
  msgid ""
3697
  "Block width: empty means width not defined, number means width in pixels, "
3698
  "any other value means CSS [[width]] property"
3699
  msgstr ""
3700
 
3701
  #. Translators: do not translate [[height]] - it is a CSS property
3702
- #: settings.php:2271
3703
  msgid ""
3704
  "Block height: empty means height not defined, number means height in pixels, "
3705
  "any other value means CSS [[height]] property"
3706
  msgstr ""
3707
 
3708
- #: settings.php:2277 settings.php:2572
3709
  msgid "Ad label"
3710
  msgstr ""
3711
 
3712
- #: settings.php:2298
3713
  msgid "General tag"
3714
  msgstr ""
3715
 
3716
- #: settings.php:2302
3717
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3718
  msgstr ""
3719
 
3720
  #. translators: %s: HTML tags
3721
- #: settings.php:2311
3722
  msgid ""
3723
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3724
  "client-side device detection!"
3725
  msgstr ""
3726
 
3727
  #. translators: %s: HTML tags for text and link
3728
- #: settings.php:2325
3729
  msgid ""
3730
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3731
  "side %s insertion. Use %s Server-side %s insertion."
3732
  msgstr ""
3733
 
3734
- #: settings.php:2341
3735
  msgid "Settings"
3736
  msgstr ""
3737
 
3738
- #: settings.php:2344
3739
  msgid "Settings timestamp"
3740
  msgstr ""
3741
 
3742
- #: settings.php:2357
3743
  msgid "Are you sure you want to reset all settings?"
3744
  msgstr ""
3745
 
3746
- #: settings.php:2357
3747
  msgid "Reset All Settings"
3748
  msgstr ""
3749
 
3750
- #: settings.php:2393
3751
  msgid "Viewports"
3752
  msgstr ""
3753
 
3754
- #: settings.php:2394
3755
  msgid "Hooks"
3756
  msgstr ""
3757
 
3758
- #: settings.php:2395
3759
  msgid "Header"
3760
  msgstr ""
3761
 
3762
- #: settings.php:2396 strings.php:30
3763
  msgid "Footer"
3764
  msgstr ""
3765
 
3766
- #: settings.php:2401
3767
  msgid "Debugging"
3768
  msgstr ""
3769
 
3770
- #: settings.php:2411
3771
  msgid "Plugin priority"
3772
  msgstr ""
3773
 
3774
- #: settings.php:2419
3775
  msgid "Output buffering"
3776
  msgstr ""
3777
 
3778
- #: settings.php:2422
3779
  msgid "Needed for position Above header but may not work with all themes"
3780
  msgstr ""
3781
 
3782
- #: settings.php:2430
3783
  msgid "Syntax highlighting theme"
3784
  msgstr ""
3785
 
3786
- #: settings.php:2437
3787
  msgctxt "no syntax highlighting themes"
3788
  msgid "None"
3789
  msgstr ""
3790
 
3791
- #: settings.php:2438
3792
  msgid "No Syntax Highlighting"
3793
  msgstr ""
3794
 
3795
- #: settings.php:2440
3796
  msgctxt "syntax highlighting themes"
3797
  msgid "Light"
3798
  msgstr ""
3799
 
3800
- #: settings.php:2455
3801
  msgctxt "syntax highlighting themes"
3802
  msgid "Dark"
3803
  msgstr ""
3804
 
3805
- #: settings.php:2481
3806
  msgid "Tab setup delay"
3807
  msgstr ""
3808
 
3809
- #: settings.php:2489
3810
  msgid "Min. user role for ind. exceptions editing"
3811
  msgstr ""
3812
 
3813
- #: settings.php:2499
3814
  msgid "Disable caching for logged in administrators"
3815
  msgstr ""
3816
 
3817
- #: settings.php:2502
3818
  msgid ""
3819
  "Enabled means that logged in administrators will see non-cached (live) pages "
3820
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3821
  msgstr ""
3822
 
3823
- #: settings.php:2510
3824
  msgid "Wait for jQuery"
3825
  msgstr ""
3826
 
3827
- #: settings.php:2513
3828
  msgid ""
3829
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3830
  "it will run the scripts that may need it"
3831
  msgstr ""
3832
 
3833
- #: settings.php:2521
3834
  msgid "Sticky widget mode"
3835
  msgstr ""
3836
 
3837
- #: settings.php:2524
3838
  msgid ""
3839
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3840
  "mode works with most themes but may reload ads on page load."
3841
  msgstr ""
3842
 
3843
- #: settings.php:2532
3844
  msgid "Sticky widget top margin"
3845
  msgstr ""
3846
 
3847
- #: settings.php:2540
3848
  msgid "Dynamic blocks"
3849
  msgstr ""
3850
 
3851
- #: settings.php:2553
3852
  msgid "Functions for paragraph counting"
3853
  msgstr ""
3854
 
3855
- #: settings.php:2556
3856
  msgid ""
3857
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3858
  "functions if paragraphs are not counted properly on non-english pages."
3859
  msgstr ""
3860
 
3861
- #: settings.php:2564
3862
  msgid "No paragraph counting inside"
3863
  msgstr ""
3864
 
3865
- #: settings.php:2575
3866
  msgid "Label text or HTML code"
3867
  msgstr ""
3868
 
3869
- #: settings.php:2583
3870
  msgid ""
3871
  "Maximum number of inserted blocks per page. You need to enable Max page "
3872
  "insertions (button Misc / tab Insertion) to count block for this limit."
3873
  msgstr ""
3874
 
3875
- #: settings.php:2597
3876
  msgid "Plugin usage tracking"
3877
  msgstr ""
3878
 
3879
  #. translators: %s: Ad Inserter
3880
- #: settings.php:2600
3881
  msgid ""
3882
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3883
  "Only information regarding the WordPress environment and %s usage is "
3884
  "recorded (once per month and on events like plugin activation/deactivation)."
3885
  msgstr ""
3886
 
3887
- #: settings.php:2618
3888
  msgid "CSS class name for the wrapping div"
3889
  msgstr ""
3890
 
3891
- #: settings.php:2618
3892
  msgid "Block class name"
3893
  msgstr ""
3894
 
3895
- #: settings.php:2624
3896
  msgid "Include block number class"
3897
  msgstr ""
3898
 
3899
- #: settings.php:2624
3900
  msgid "Block number class"
3901
  msgstr ""
3902
 
3903
- #: settings.php:2629
3904
  msgid "Include block name class"
3905
  msgstr ""
3906
 
3907
- #: settings.php:2629
3908
  msgid "Block name class"
3909
  msgstr ""
3910
 
3911
- #: settings.php:2634
3912
  msgid ""
3913
  "Instead of alignment classes generate inline alignment styles for blocks"
3914
  msgstr ""
3915
 
3916
- #: settings.php:2634
3917
  msgid "Inline styles"
3918
  msgstr ""
3919
 
3920
- #: settings.php:2640
3921
  msgid "Preview of the block wrapping code"
3922
  msgstr ""
3923
 
3924
- #: settings.php:2641
3925
  msgid "Wrapping div"
3926
  msgstr ""
3927
 
3928
- #: settings.php:2642 settings.php:3086
3929
  msgid "BLOCK CODE"
3930
  msgstr ""
3931
 
3932
- #: settings.php:2650
3933
  msgid "Viewport Settings used for client-side device detection"
3934
  msgstr ""
3935
 
3936
  #. Translators: %d: viewport number
3937
- #: settings.php:2658
3938
  msgid "Viewport %d name"
3939
  msgstr ""
3940
 
3941
- #: settings.php:2661
3942
  msgid "min width"
3943
  msgstr ""
3944
 
3945
- #: settings.php:2672
3946
  msgid "Custom Hooks"
3947
  msgstr ""
3948
 
3949
- #: settings.php:2684 settings.php:2687
3950
  msgid "Enable hook"
3951
  msgstr ""
3952
 
3953
  #. translators: %d: hook number
3954
- #: settings.php:2687
3955
  msgid "Hook %d name"
3956
  msgstr ""
3957
 
3958
- #: settings.php:2690
3959
  msgid "Hook name for automatic insertion selection"
3960
  msgstr ""
3961
 
3962
- #: settings.php:2693
3963
  msgid "action"
3964
  msgstr ""
3965
 
3966
- #: settings.php:2696
3967
  msgid "Action name as used in the do_action () function"
3968
  msgstr ""
3969
 
3970
- #: settings.php:2699
3971
  msgid "priority"
3972
  msgstr ""
3973
 
3974
- #: settings.php:2702
3975
  msgid "Priority for the hook (default is 10)"
3976
  msgstr ""
3977
 
3978
- #: settings.php:2723
3979
  msgid "Enable insertion of this code into HTML page header"
3980
  msgstr ""
3981
 
3982
- #: settings.php:2727 settings.php:2794 settings.php:2976
3983
  msgid "Process PHP code"
3984
  msgstr ""
3985
 
3986
- #: settings.php:2731
3987
  msgid "HTML Page Header Code"
3988
  msgstr ""
3989
 
3990
- #: settings.php:2739
3991
  msgid "Code in the %s section of the HTML page"
3992
  msgstr ""
3993
 
3994
- #: settings.php:2740
3995
  msgctxt "code in the header"
3996
  msgid "NOT ENABLED"
3997
  msgstr ""
3998
 
3999
- #: settings.php:2757 settings.php:2825
4000
  msgid "Use server-side detection to insert code only for"
4001
  msgstr ""
4002
 
4003
- #: settings.php:2772
4004
  msgid ""
4005
  "Enable insertion of this code into HTML page header on page for Error 404: "
4006
  "Page not found"
4007
  msgstr ""
4008
 
4009
- #: settings.php:2772 settings.php:2840
4010
  msgid "Insert on Error 404 page"
4011
  msgstr ""
4012
 
4013
- #: settings.php:2790
4014
  msgid "Enable insertion of this code into HTML page footer"
4015
  msgstr ""
4016
 
4017
- #: settings.php:2798
4018
  msgid "HTML Page Footer Code"
4019
  msgstr ""
4020
 
4021
  #. translators: %s: HTML tags
4022
- #: settings.php:2806
4023
  msgid "Code before the %s tag of the HTML page"
4024
  msgstr ""
4025
 
4026
- #: settings.php:2807
4027
  msgctxt "code in the footer"
4028
  msgid "NOT ENABLED"
4029
  msgstr ""
4030
 
4031
- #: settings.php:2840
4032
  msgid ""
4033
  "Enable insertion of this code into HTML page footer on page for Error 404: "
4034
  "Page not found"
4035
  msgstr ""
4036
 
4037
- #: settings.php:2856
4038
  msgid "Code for ad blocking detection inserted. Click for details."
4039
  msgstr ""
4040
 
4041
- #: settings.php:2861
4042
  msgid "Enable detection of ad blocking"
4043
  msgstr ""
4044
 
4045
- #: settings.php:2879
4046
  msgid "Global action when ad blocking is detected"
4047
  msgstr ""
4048
 
4049
- #: settings.php:2885
4050
  msgid "No action for"
4051
  msgstr ""
4052
 
4053
- #: settings.php:2886
4054
  msgid "Exceptions for global action when ad blocking is detected."
4055
  msgstr ""
4056
 
4057
- #: settings.php:2896
4058
  msgid "Delay Action"
4059
  msgstr ""
4060
 
4061
- #: settings.php:2899
4062
  msgid ""
4063
  "Number of page views to delay action when ad blocking is detected. Leave "
4064
  "empty for no delay (action fires on first page view). Sets cookie."
4065
  msgstr ""
4066
 
4067
- #: settings.php:2899
4068
  msgctxt "Delay Action for x "
4069
  msgid "page views"
4070
  msgstr ""
4071
 
4072
- #: settings.php:2904
4073
  msgid "No Action Period"
4074
  msgstr ""
4075
 
4076
- #: settings.php:2907
4077
  msgid ""
4078
  "Number of days to supress action when ad blocking is detected. Leave empty "
4079
  "for no no-action period (action fires always after defined page view delay). "
4080
  "Sets cookie."
4081
  msgstr ""
4082
 
4083
- #: settings.php:2907
4084
  msgctxt "no action period"
4085
  msgid "days"
4086
  msgstr ""
4087
 
4088
- #: settings.php:2912
4089
  msgid "Custom Selectors"
4090
  msgstr ""
4091
 
4092
- #: settings.php:2915
4093
  msgid ""
4094
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
4095
  "blocking detection. Invisible element or element with zero height means ad "
4096
  "blocking is present."
4097
  msgstr ""
4098
 
4099
- #: settings.php:2927
4100
  msgid "Redirection Page"
4101
  msgstr ""
4102
 
4103
- #: settings.php:2939
4104
  msgid "Custom Url"
4105
  msgstr ""
4106
 
4107
- #: settings.php:2944
4108
  msgid ""
4109
  "Static page for redirection when ad blocking is detected. For other pages "
4110
  "select Custom url and set it below."
4111
  msgstr ""
4112
 
4113
- #: settings.php:2953
4114
  msgid "Custom Redirection Url"
4115
  msgstr ""
4116
 
4117
- #: settings.php:2965
4118
  msgid "Message HTML code"
4119
  msgstr ""
4120
 
4121
- #: settings.php:2978
4122
  msgid "Preview message when ad blocking is detected"
4123
  msgstr ""
4124
 
4125
- #: settings.php:3007
4126
  msgid "Prevent visitors from closing the warning message"
4127
  msgstr ""
4128
 
4129
- #: settings.php:3007
4130
  msgid "Undismissible Message"
4131
  msgstr ""
4132
 
4133
- #: settings.php:3013
4134
  msgid "Not undismissible for"
4135
  msgstr ""
4136
 
4137
- #: settings.php:3014
4138
  msgid "Users which can close the warning message."
4139
  msgstr ""
4140
 
4141
- #: settings.php:3028
4142
  msgid ""
4143
  "Force showing admin toolbar for administrators when viewing site. Enable "
4144
  "this option when you are logged in as admin and you don't see admin toolbar."
4145
  msgstr ""
4146
 
4147
- #: settings.php:3036
4148
  msgid "Disable header code (Header tab)"
4149
  msgstr ""
4150
 
4151
- #: settings.php:3040
4152
  msgid "Disable footer code (Footer tab)"
4153
  msgstr ""
4154
 
4155
  #. translators: %s: Ad Inserter
4156
- #: settings.php:3044
4157
  msgid "Disable %s JavaScript code"
4158
  msgstr ""
4159
 
4160
  #. translators: %s: Ad Inserter
4161
- #: settings.php:3048
4162
  msgid "Disable %s CSS code"
4163
  msgstr ""
4164
 
4165
  #. translators: %s: Ad Inserter
4166
- #: settings.php:3052
4167
  msgid "Disable %s HTML code"
4168
  msgstr ""
4169
 
4170
- #: settings.php:3056
4171
  msgid ""
4172
  "Disable PHP code processing (in all blocks including header and footer code)"
4173
  msgstr ""
4174
 
4175
- #: settings.php:3060
4176
  msgid "Disable insertion of all blocks"
4177
  msgstr ""
4178
 
4179
- #: settings.php:3064
4180
  msgid "Disable insertions"
4181
  msgstr ""
4182
 
4183
  #. translators: %s: Ad Inserter
4184
- #: settings.php:3076
4185
  msgid "%s CSS CODE"
4186
  msgstr ""
4187
 
4188
- #: settings.php:3079
4189
  msgid "HEADER CODE"
4190
  msgstr ""
4191
 
4192
  #. translators: %s: PHP tags
4193
- #: settings.php:3085
4194
  msgid "BLOCK PHP CODE"
4195
  msgstr ""
4196
 
4197
  #. translators: %s: Ad Inserter
4198
- #: settings.php:3090
4199
  msgid "%s HTML CODE"
4200
  msgstr ""
4201
 
4202
  #. translators: %s: Ad Inserter
4203
- #: settings.php:3092
4204
  msgid "%s JS CODE"
4205
  msgstr ""
4206
 
4207
- #: settings.php:3095
4208
  msgid "FOOTER CODE"
4209
  msgstr ""
4210
 
4211
- #: settings.php:3104
4212
  msgid "Force showing admin toolbar when viewing site"
4213
  msgstr ""
4214
 
4215
- #: settings.php:3111
4216
  msgid "Enable debugging functions in admin toolbar"
4217
  msgstr ""
4218
 
4219
- #: settings.php:3113
4220
  msgid "Debugging functions in admin toolbar"
4221
  msgstr ""
4222
 
4223
- #: settings.php:3120
4224
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4225
  msgstr ""
4226
 
4227
- #: settings.php:3122
4228
  msgid "Debugging functions on mobile screens"
4229
  msgstr ""
4230
 
4231
- #: settings.php:3129
4232
  msgid ""
4233
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4234
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -4237,232 +4119,232 @@ msgid ""
4237
  "administrators debugging is always enabled."
4238
  msgstr ""
4239
 
4240
- #: settings.php:3131
4241
  msgid "Remote debugging"
4242
  msgstr ""
4243
 
4244
- #: settings.php:3138
4245
  msgid ""
4246
  "Disable translation to see original texts for the settings and messages in "
4247
  "English"
4248
  msgstr ""
4249
 
4250
- #: settings.php:3140
4251
  msgid "Disable translation"
4252
  msgstr ""
4253
 
4254
- #: settings.php:3515
4255
  msgid "Available positions for current theme"
4256
  msgstr ""
4257
 
4258
- #: settings.php:3516
4259
  msgid "Error checking pages"
4260
  msgstr ""
4261
 
4262
- #: settings.php:3519
4263
  msgid "Toggle theme checker for available positions for automatic insertion"
4264
  msgstr ""
4265
 
4266
- #: settings.php:3519
4267
  msgctxt "Button"
4268
  msgid "Check"
4269
  msgstr ""
4270
 
4271
- #: settings.php:3526
4272
  msgid "Position"
4273
  msgstr ""
4274
 
4275
- #: settings.php:3531
4276
  msgid "Archive pages"
4277
  msgstr ""
4278
 
4279
- #: settings.php:3590
4280
  msgid ""
4281
  "Position not available because output buffering (tab [*]) is not enabled"
4282
  msgstr ""
4283
 
4284
- #: settings.php:3593 strings.php:248
4285
  msgid "Position not checked yet"
4286
  msgstr ""
4287
 
4288
- #: settings.php:3629
4289
  msgid "Toggle active/all blocks"
4290
  msgstr ""
4291
 
4292
- #: settings.php:3633 strings.php:235
4293
  msgid "Rearrange block order"
4294
  msgstr ""
4295
 
4296
- #: settings.php:3638
4297
  msgid "Save new block order"
4298
  msgstr ""
4299
 
4300
- #: settings.php:3664
4301
  msgid "Toggle active/all ad units"
4302
  msgstr ""
4303
 
4304
- #: settings.php:3668
4305
  msgid "Reload AdSense ad units"
4306
  msgstr ""
4307
 
4308
- #: settings.php:3672
4309
  msgid "Clear authorization to access AdSense account"
4310
  msgstr ""
4311
 
4312
- #: settings.php:3676 settings.php:4544 settings.php:4611 strings.php:243
4313
  msgid "Google AdSense Homepage"
4314
  msgstr ""
4315
 
4316
- #: settings.php:3692
4317
  msgid "Switch to physical ads.txt file"
4318
  msgstr ""
4319
 
4320
- #: settings.php:3693
4321
  msgid "Switch to virtual ads.txt file"
4322
  msgstr ""
4323
 
4324
  #. translators: %s: ads.txt
4325
- #: settings.php:3703
4326
  msgid "Open %s"
4327
  msgstr ""
4328
 
4329
- #: settings.php:3711
4330
  msgid "Reload ads.txt file"
4331
  msgstr ""
4332
 
4333
- #: settings.php:3715 settings.php:4671
4334
  msgid "Save"
4335
  msgstr ""
4336
 
4337
  #. translators: %s: Ad Inserter
4338
- #: settings.php:3893
4339
  msgid "ads.txt file: %s virtual ads.txt file"
4340
  msgstr ""
4341
 
4342
- #: settings.php:3898 settings.php:3918 strings.php:224
4343
  msgid "Warning"
4344
  msgstr ""
4345
 
4346
  #. translators: %s: Ad Inserter
4347
- #: settings.php:3898
4348
  msgid "%s virtual file ads.txt not found"
4349
  msgstr ""
4350
 
4351
- #: settings.php:3906
4352
  msgid "IMPORTANT"
4353
  msgstr ""
4354
 
4355
- #: settings.php:3906
4356
  msgid "ads.txt file must be placed on the root domain"
4357
  msgstr ""
4358
 
4359
- #: settings.php:3911
4360
  msgid "ads.txt file"
4361
  msgstr ""
4362
 
4363
- #: settings.php:3911
4364
  msgid "NOT WRITABLE"
4365
  msgstr ""
4366
 
4367
- #: settings.php:3918
4368
  msgid "file %s not found"
4369
  msgstr ""
4370
 
4371
- #: settings.php:3928
4372
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4373
  msgstr ""
4374
 
4375
  #. translators: %s: Ad Inserter
4376
- #: settings.php:3934
4377
  msgid "%s virtual ads.txt file"
4378
  msgstr ""
4379
 
4380
- #: settings.php:3956
4381
  msgid "Advertising system"
4382
  msgstr ""
4383
 
4384
- #: settings.php:3957
4385
  msgid "Account ID"
4386
  msgstr ""
4387
 
4388
- #: settings.php:3959
4389
  msgid "Certification authority ID"
4390
  msgstr ""
4391
 
4392
- #: settings.php:3974
4393
  msgid "Account ID found in block and present in ads.txt"
4394
  msgstr ""
4395
 
4396
- #: settings.php:3978
4397
  msgid "Account ID found in block but not present in ads.txt"
4398
  msgstr ""
4399
 
4400
- #: settings.php:4327
4401
  msgid "Preview block"
4402
  msgstr ""
4403
 
4404
- #: settings.php:4334
4405
  msgid "Pause block"
4406
  msgstr ""
4407
 
4408
- #: settings.php:4373
4409
  msgid "Automatic insertion"
4410
  msgstr ""
4411
 
4412
  #. translators: %s HTML tags
4413
- #: settings.php:4374 settings.php:5362
4414
  msgid "PHP code processing"
4415
  msgstr ""
4416
 
4417
- #: settings.php:4376
4418
  msgid "Device detection"
4419
  msgstr ""
4420
 
4421
- #: settings.php:4399
4422
  msgid "No active block"
4423
  msgstr ""
4424
 
4425
- #: settings.php:4400
4426
  msgid "No block matches search keywords"
4427
  msgstr ""
4428
 
4429
- #: settings.php:4455
4430
  msgid "Ad unit"
4431
  msgstr ""
4432
 
4433
- #: settings.php:4457
4434
  msgid "Slot ID"
4435
  msgstr ""
4436
 
4437
- #: settings.php:4483
4438
  msgid "Copy AdSense code"
4439
  msgstr ""
4440
 
4441
- #: settings.php:4486
4442
  msgid "Preview AdSense ad"
4443
  msgstr ""
4444
 
4445
- #: settings.php:4489
4446
  msgid "Get AdSense code"
4447
  msgstr ""
4448
 
4449
  #. translators: %s: HTML tags
4450
- #: settings.php:4521
4451
  msgid ""
4452
  "Please %s clear authorization %s with the button %s above and once again "
4453
  "authorize access to your AdSense account."
4454
  msgstr ""
4455
 
4456
- #: settings.php:4540
4457
  msgid "AdSense Integration"
4458
  msgstr ""
4459
 
4460
- #: settings.php:4542
4461
  msgid "AdSense Integration - Step 2"
4462
  msgstr ""
4463
 
4464
  #. translators: %s: HTML tags
4465
- #: settings.php:4548
4466
  msgid ""
4467
  "Authorize %s to access your AdSense account. Click on the %s Get "
4468
  "Authorization Code %s button to open a new window where you can allow "
@@ -4471,7 +4353,7 @@ msgid ""
4471
  msgstr ""
4472
 
4473
  #. translators: %s: HTML tags
4474
- #: settings.php:4555
4475
  msgid ""
4476
  "If you get error, can't access ad units or would like to use own Google API "
4477
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -4479,7 +4361,7 @@ msgid ""
4479
  msgstr ""
4480
 
4481
  #. translators: %s: HTML tags
4482
- #: settings.php:4557
4483
  msgid ""
4484
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4485
  "Authorization Code %s button to open a new window where you can allow "
@@ -4488,38 +4370,38 @@ msgid ""
4488
  msgstr ""
4489
 
4490
  #. translators: %s: HTML tags
4491
- #: settings.php:4564
4492
  msgid ""
4493
  "If you get error %s invalid client %s click on the button %s Clear and "
4494
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4495
  msgstr ""
4496
 
4497
- #: settings.php:4575
4498
  msgid "Get Authorization Code"
4499
  msgstr ""
4500
 
4501
- #: settings.php:4578
4502
  msgid "Enter Authorization Code"
4503
  msgstr ""
4504
 
4505
- #: settings.php:4588
4506
  msgid "Use own API IDs"
4507
  msgstr ""
4508
 
4509
- #: settings.php:4590
4510
  msgid "Clear and return to Step 1"
4511
  msgstr ""
4512
 
4513
- #: settings.php:4594
4514
  msgid "Authorize"
4515
  msgstr ""
4516
 
4517
- #: settings.php:4610
4518
  msgid "AdSense Integration - Step 1"
4519
  msgstr ""
4520
 
4521
  #. translators: %s: Ad Inserter
4522
- #: settings.php:4614
4523
  msgid ""
4524
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4525
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -4528,194 +4410,226 @@ msgid ""
4528
  msgstr ""
4529
 
4530
  #. translators: %s: HTML tags
4531
- #: settings.php:4623
4532
  msgid "Go to %s Google APIs and Services console %s"
4533
  msgstr ""
4534
 
4535
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4536
- #: settings.php:4624
4537
  msgid ""
4538
  "Create %1$s project - if the project and IDs are already created click on "
4539
- "the %2$s Credentials %3$s in the sidebar and go to step 16"
4540
  msgstr ""
4541
 
4542
  #. translators: %s: HTML tags
4543
- #: settings.php:4625
4544
  msgid ""
4545
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4546
  "create a new project"
4547
  msgstr ""
4548
 
4549
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4550
- #: settings.php:4626
4551
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4552
  msgstr ""
4553
 
4554
  #. translators: %s: HTML tags
4555
- #: settings.php:4627
4556
  msgid ""
4557
  "Click on project selection, wait for the project to be created and then and "
4558
  "select %s as the current project"
4559
  msgstr ""
4560
 
4561
  #. translators: %s: HTML tags
4562
- #: settings.php:4628
4563
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4564
  msgstr ""
4565
 
4566
  #. translators: %s: HTML tags
4567
- #: settings.php:4629
4568
  msgid "Search for adsense and enable %s"
4569
  msgstr ""
4570
 
4571
  #. translators: %s: HTML tags
4572
- #: settings.php:4630
4573
  msgid "Click on %s CREATE CREDENTIALS %s"
4574
  msgstr ""
4575
 
4576
  #. translators: %s: HTML tags
4577
- #: settings.php:4631
 
 
 
 
 
4578
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4579
  msgstr ""
4580
 
4581
  #. translators: %s: HTML tags
4582
- #: settings.php:4632
4583
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4584
  msgstr ""
4585
 
4586
  #. translators: %s: HTML tags
4587
- #: settings.php:4633
4588
  msgid "Click on %s What credentials do I need? %s"
4589
  msgstr ""
4590
 
4591
  #. translators: %s: HTML tags
4592
- #: settings.php:4634
4593
  msgid ""
4594
- "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4595
- "Ad Inserter client %s"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4596
  msgstr ""
4597
 
4598
  #. translators: %s: HTML tags
4599
- #: settings.php:4635
4600
  msgid ""
4601
- "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4602
- "enter %s"
4603
  msgstr ""
4604
 
4605
  #. translators: %s: HTML tags
4606
- #: settings.php:4636
4607
- msgid "Click on %s Continue %s"
 
4608
  msgstr ""
4609
 
4610
  #. translators: %s: HTML tags
4611
- #: settings.php:4637
4612
- msgid "Click on %s Done %s"
 
 
4613
  msgstr ""
4614
 
4615
  #. translators: %s: HTML tags
4616
- #: settings.php:4638
 
 
 
 
 
4617
  msgid ""
4618
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4619
  "secret %s"
4620
  msgstr ""
4621
 
4622
- #: settings.php:4639
4623
  msgid "Copy them to the appropriate fields below"
4624
  msgstr ""
4625
 
4626
- #: settings.php:4645
4627
  msgid "Client ID"
4628
  msgstr ""
4629
 
4630
- #: settings.php:4648
4631
  msgid "Enter Client ID"
4632
  msgstr ""
4633
 
4634
- #: settings.php:4653
4635
  msgid "Client secret"
4636
  msgstr ""
4637
 
4638
- #: settings.php:4656
4639
  msgid "Enter Client secret"
4640
  msgstr ""
4641
 
4642
- #: settings.php:4666
4643
  msgid "Use default API IDs"
4644
  msgstr ""
4645
 
4646
- #: settings.php:4834
4647
  msgid "All posts"
4648
  msgstr ""
4649
 
4650
- #: settings.php:4835
4651
  msgid "All static pages"
4652
  msgstr ""
4653
 
4654
- #: settings.php:4990 settings.php:5003 settings.php:5017 settings.php:5031
4655
- #: settings.php:5045
4656
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4657
  msgstr ""
4658
 
4659
- #: settings.php:4995 settings.php:5008 settings.php:5022 settings.php:5036
4660
- #: settings.php:5050 settings.php:5245 settings.php:5248 settings.php:5250
4661
- #: settings.php:5259 settings.php:5268 settings.php:5273 settings.php:5281
4662
- #: settings.php:5282 settings.php:5285 settings.php:5288 settings.php:5292
4663
- #: settings.php:5302 settings.php:5306
4664
  msgid "Looking for AdSense alternative?"
4665
  msgstr ""
4666
 
4667
- #: settings.php:5062
4668
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4669
  msgstr ""
4670
 
4671
- #: settings.php:5067 settings.php:5242 settings.php:5263 settings.php:5291
4672
- #: settings.php:5310
4673
  msgid "Use Infolinks ads with Adsense to earn more"
4674
  msgstr ""
4675
 
4676
- #: settings.php:5088 settings.php:5138
4677
  msgid "Support plugin development"
4678
  msgstr ""
4679
 
4680
- #: settings.php:5093 settings.php:5139
4681
  msgid ""
4682
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4683
  "reviewing the plugin on WordPres"
4684
  msgstr ""
4685
 
4686
- #: settings.php:5093
4687
  msgctxt "Review Ad Inserter"
4688
  msgid "Review"
4689
  msgstr ""
4690
 
4691
- #: settings.php:5098
4692
  msgid ""
4693
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4694
  "rating the plugin on WordPres"
4695
  msgstr ""
4696
 
4697
- #: settings.php:5098
4698
  msgctxt "Rate Ad Inserter"
4699
  msgid "Rate"
4700
  msgstr ""
4701
 
4702
- #: settings.php:5103
4703
  msgid ""
4704
  "Support free Ad Inserter development. If you are making money with Ad "
4705
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4706
  "you!"
4707
  msgstr ""
4708
 
4709
- #: settings.php:5103
4710
  msgid "Donate"
4711
  msgstr ""
4712
 
4713
- #: settings.php:5110 settings.php:5154
4714
  msgid "Average rating of the plugin - Thank you!"
4715
  msgstr ""
4716
 
4717
  #. translators: %s: Ad Inserter, HTML tags
4718
- #: settings.php:5121
4719
  msgid ""
4720
  "You've been using %s for a while now, and I hope you're happy with it. "
4721
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4724,379 +4638,379 @@ msgid ""
4724
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4725
  msgstr ""
4726
 
4727
- #: settings.php:5139
4728
  msgid "Review"
4729
  msgstr ""
4730
 
4731
- #: settings.php:5143
4732
  msgid "Ad Inserter on Twitter"
4733
  msgstr ""
4734
 
4735
- #: settings.php:5144
4736
  msgid "Ad Inserter on Facebook"
4737
  msgstr ""
4738
 
4739
- #: settings.php:5147
4740
  msgid "Follow Ad Inserter"
4741
  msgstr ""
4742
 
4743
  #. translators: %s: HTML tags
4744
- #: settings.php:5174
4745
  msgid ""
4746
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4747
  "and %s Common Settings %s pages"
4748
  msgstr ""
4749
 
4750
  #. translators: %s: HTML tags
4751
- #: settings.php:5186
4752
  msgid ""
4753
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4754
  "Auto ads, %s %s AMP ads %s"
4755
  msgstr ""
4756
 
4757
  #. translators: %s: HTML tags
4758
- #: settings.php:5203
4759
  msgid ""
4760
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4761
  "purchase you refer to us"
4762
  msgstr ""
4763
 
4764
  #. translators: %s: HTML tags
4765
- #: settings.php:5210
4766
  msgid ""
4767
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4768
  "diagnose and fix the problem."
4769
  msgstr ""
4770
 
4771
  #. translators: %s: HTML tags
4772
- #: settings.php:5214
4773
  msgid ""
4774
  "If you need any kind of help or support, please do not hesitate to open a "
4775
  "thread on the %s support forum. %s"
4776
  msgstr ""
4777
 
4778
- #: settings.php:5241 settings.php:5311 settings.php:5315
4779
  msgid "Code preview with visual CSS editor"
4780
  msgstr ""
4781
 
4782
- #: settings.php:5244 settings.php:5272
4783
  msgid "Ad blocking detection and content protection"
4784
  msgstr ""
4785
 
4786
- #: settings.php:5247 settings.php:5300
4787
  msgid "A/B testing - Track ad impressions and clicks"
4788
  msgstr ""
4789
 
4790
- #: settings.php:5264
4791
  msgid "Insert ads on AMP pages"
4792
  msgstr ""
4793
 
4794
- #: settings.php:5323
4795
  msgid "Looking for Pro Ad Management plugin?"
4796
  msgstr ""
4797
 
4798
- #: settings.php:5324
4799
  msgid "To Optimally Monetize your WordPress website?"
4800
  msgstr ""
4801
 
4802
  #. Translators: %s: price of Ad Inserter Pro
4803
- #: settings.php:5325
4804
  msgid "Different license types starting from %s"
4805
  msgstr ""
4806
 
4807
  #. translators: %s HTML tags
4808
- #: settings.php:5328
4809
  msgid "%s AdSense Integration %s"
4810
  msgstr ""
4811
 
4812
  #. translators: %s HTML tags
4813
- #: settings.php:5329
4814
  msgid "Syntax highlighting %s editor %s"
4815
  msgstr ""
4816
 
4817
  #. translators: %s HTML tags
4818
- #: settings.php:5330
4819
  msgid "%s Code preview %s with visual CSS editor"
4820
  msgstr ""
4821
 
4822
  #. translators: %s HTML tags
4823
- #: settings.php:5331
4824
  msgid "Simple user interface - all settings on a single page"
4825
  msgstr ""
4826
 
4827
  #. translators: %s HTML tags
4828
- #: settings.php:5332
4829
  msgid ""
4830
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4831
  "image / excerpt"
4832
  msgstr ""
4833
 
4834
  #. translators: %s HTML tags
4835
- #: settings.php:5333
4836
  msgid "%s Automatic insertion %s between posts on blog pages"
4837
  msgstr ""
4838
 
4839
  #. translators: %s HTML tags
4840
- #: settings.php:5334
4841
  msgid "%s Automatic insertion %s before, between and after comments"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
- #: settings.php:5335
4846
  msgid "%s Automatic insertion %s after %s or before %s tag"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
- #: settings.php:5336
4851
  msgid "Automatic insertion at %s custom hook positions %s"
4852
  msgstr ""
4853
 
4854
  #. translators: %s HTML tags
4855
- #: settings.php:5337
4856
  msgid ""
4857
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4858
  "selectors)"
4859
  msgstr ""
4860
 
4861
  #. translators: %s HTML tags
4862
- #: settings.php:5338
4863
  msgid "%s Insertion exceptions %s for individual posts and pages"
4864
  msgstr ""
4865
 
4866
  #. translators: %s HTML tags
4867
- #: settings.php:5339
4868
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4869
  msgstr ""
4870
 
4871
  #. translators: %s HTML tags
4872
- #: settings.php:5340
4873
  msgid ""
4874
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4875
  "scrolls)"
4876
  msgstr ""
4877
 
4878
  #. translators: %s HTML tags
4879
- #: settings.php:5341
4880
  msgid "%s Background ads %s with one or left and right background images"
4881
  msgstr ""
4882
 
4883
  #. translators: %s HTML tags
4884
- #: settings.php:5342
4885
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4886
  msgstr ""
4887
 
4888
  #. translators: %s HTML tags
4889
- #: settings.php:5343
4890
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4891
  msgstr ""
4892
 
4893
  #. translators: %s HTML tags
4894
- #: settings.php:5344
4895
  msgid ""
4896
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4897
  "visible)"
4898
  msgstr ""
4899
 
4900
  #. translators: %s HTML tags
4901
- #: settings.php:5345
4902
  msgid ""
4903
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4904
  msgstr ""
4905
 
4906
  #. translators: %s HTML tags
4907
- #: settings.php:5346
4908
  msgid "Block %s alignment and style %s customizations"
4909
  msgstr ""
4910
 
4911
  #. translators: %s HTML tags
4912
- #: settings.php:5347
4913
  msgid ""
4914
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4915
  "TOS)"
4916
  msgstr ""
4917
 
4918
  #. translators: %s HTML tags
4919
- #: settings.php:5348
4920
  msgid ""
4921
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4922
  "feeds"
4923
  msgstr ""
4924
 
4925
  #. translators: %s HTML tags
4926
- #: settings.php:5349
4927
  msgid "%s Ad rotation %s (works also with caching)"
4928
  msgstr ""
4929
 
4930
  #. translators: %s HTML tags
4931
- #: settings.php:5350
4932
  msgid "Create, edit and check %s ads.txt %s file"
4933
  msgstr ""
4934
 
4935
  #. translators: %s HTML tags
4936
- #: settings.php:5351
4937
  msgid ""
4938
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4939
  "AdSense)"
4940
  msgstr ""
4941
 
4942
  #. translators: %s HTML tags
4943
- #: settings.php:5352
4944
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4945
  msgstr ""
4946
 
4947
  #. translators: %s HTML tags
4948
- #: settings.php:5353
4949
  msgid "%s Public web reports %s for clients, export to PDF"
4950
  msgstr ""
4951
 
4952
  #. translators: %s HTML tags
4953
- #: settings.php:5354
4954
  msgid "Support for %s A/B testing %s"
4955
  msgstr ""
4956
 
4957
  #. translators: %s HTML tags
4958
- #: settings.php:5355
4959
  msgid "Frequency capping - %s limit impressions or clicks %s"
4960
  msgstr ""
4961
 
4962
  #. translators: %s HTML tags
4963
- #: settings.php:5356
4964
  msgid "Click fraud %s protection %s"
4965
  msgstr ""
4966
 
4967
  #. translators: %s HTML tags
4968
- #: settings.php:5357
4969
  msgid "Support for %s GDPR consent cookie checks %s"
4970
  msgstr ""
4971
 
4972
  #. translators: %s HTML tags
4973
- #: settings.php:5358
4974
  msgid "Support for %s lazy loading %s"
4975
  msgstr ""
4976
 
4977
  #. translators: %s HTML tags
4978
- #: settings.php:5359
4979
  msgid "Support for ads on %s AMP pages %s"
4980
  msgstr ""
4981
 
4982
  #. translators: %s HTML tags
4983
- #: settings.php:5360
4984
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4985
  msgstr ""
4986
 
4987
  #. translators: %s HTML tags
4988
- #: settings.php:5361
4989
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4990
  msgstr ""
4991
 
4992
  #. translators: %s HTML tags
4993
- #: settings.php:5363
4994
  msgid "%s Banner %s code generator"
4995
  msgstr ""
4996
 
4997
  #. translators: %s HTML tags
4998
- #: settings.php:5364
4999
  msgid "Support for %s header and footer %s code"
5000
  msgstr ""
5001
 
5002
  #. translators: %s HTML tags
5003
- #: settings.php:5365
5004
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
5005
  msgstr ""
5006
 
5007
  #. translators: %s HTML tags
5008
- #: settings.php:5366
5009
  msgid "Desktop, tablet and phone server-side %s device detection %s"
5010
  msgstr ""
5011
 
5012
  #. translators: %s HTML tags
5013
- #: settings.php:5367
5014
  msgid "Client-side %s mobile device detection %s (works with caching)"
5015
  msgstr ""
5016
 
5017
  #. translators: %s HTML tags
5018
- #: settings.php:5368
5019
  msgid ""
5020
  "%s Ad blocking detection %s - popup message, ad replacement, content "
5021
  "protection"
5022
  msgstr ""
5023
 
5024
  #. translators: %s HTML tags
5025
- #: settings.php:5369
5026
  msgid "%s Ad blocking statistics %s"
5027
  msgstr ""
5028
 
5029
  #. translators: %s HTML tags
5030
- #: settings.php:5370
5031
  msgid ""
5032
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
5033
  "referrers, operating systems, browsers"
5034
  msgstr ""
5035
 
5036
  #. translators: %s HTML tags
5037
- #: settings.php:5371
5038
  msgid ""
5039
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
5040
  msgstr ""
5041
 
5042
  #. translators: %s HTML tags
5043
- #: settings.php:5372
5044
  msgid "%s Multisite options %s to limit settings on the sites"
5045
  msgstr ""
5046
 
5047
  #. translators: %s HTML tags
5048
- #: settings.php:5373
5049
  msgid "%s Import/Export %s block or plugin settings"
5050
  msgstr ""
5051
 
5052
  #. translators: %s HTML tags
5053
- #: settings.php:5374
5054
  msgid "%s Insertion scheduling %s with fallback option"
5055
  msgstr ""
5056
 
5057
  #. translators: %s HTML tags
5058
- #: settings.php:5375
5059
  msgid "Country-level %s GEO targeting %s (works also with caching)"
5060
  msgstr ""
5061
 
5062
  #. translators: %s HTML tags
5063
- #: settings.php:5376
5064
  msgid "Simple troubleshooting with many %s debugging functions %s"
5065
  msgstr ""
5066
 
5067
  #. translators: %s HTML tags
5068
- #: settings.php:5377
5069
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
5070
  msgstr ""
5071
 
5072
  #. translators: %s HTML tags
5073
- #: settings.php:5378
5074
  msgid "%s Visualization %s of available positions for automatic ad insertion"
5075
  msgstr ""
5076
 
5077
  #. translators: %s HTML tags
5078
- #: settings.php:5379
5079
  msgid ""
5080
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
5081
  msgstr ""
5082
 
5083
  #. translators: %s HTML tags
5084
- #: settings.php:5380
5085
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5086
  msgstr ""
5087
 
5088
  #. translators: %s HTML tags
5089
- #: settings.php:5381
5090
  msgid "No ads on the settings page"
5091
  msgstr ""
5092
 
5093
  #. translators: %s HTML tags
5094
- #: settings.php:5382
5095
  msgid "Premium support"
5096
  msgstr ""
5097
 
5098
  #. translators: %s HTML tags
5099
- #: settings.php:5385
5100
  msgid ""
5101
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5102
  "website with many advertising features to automatically insert adverts on "
@@ -5111,82 +5025,82 @@ msgid ""
5111
  msgstr ""
5112
 
5113
  #. translators: %s HTML tags
5114
- #: settings.php:5398
5115
  msgid "Looking for %s Pro Ad Management plugin? %s"
5116
  msgstr ""
5117
 
5118
  #. translators: %s HTML tags
5119
- #: settings.php:5403
5120
  msgid "Ads between posts"
5121
  msgstr ""
5122
 
5123
  #. translators: %s HTML tags
5124
- #: settings.php:5404
5125
  msgid "Ads between comments"
5126
  msgstr ""
5127
 
5128
  #. translators: %s HTML tags
5129
- #: settings.php:5405
5130
  msgid "Support via email"
5131
  msgstr ""
5132
 
5133
  #. translators: %s HTML tags
5134
- #: settings.php:5411
5135
  msgid "%s Sticky positions %s"
5136
  msgstr ""
5137
 
5138
  #. translators: %s HTML tags
5139
- #: settings.php:5412
5140
  msgid "%s Limit insertions %s"
5141
  msgstr ""
5142
 
5143
  #. translators: %s HTML tags
5144
- #: settings.php:5413
5145
  msgid "%s Clearance %s options"
5146
  msgstr ""
5147
 
5148
  #. translators: %s HTML tags
5149
- #: settings.php:5419
5150
  msgid "Ad rotation"
5151
  msgstr ""
5152
 
5153
  #. translators: %s HTML tags
5154
- #: settings.php:5420
5155
  msgid "%s A/B testing %s"
5156
  msgstr ""
5157
 
5158
  #. translators: %s HTML tags
5159
- #: settings.php:5421
5160
  msgid "%s Ad tracking %s"
5161
  msgstr ""
5162
 
5163
  #. translators: %s HTML tags
5164
- #: settings.php:5427
5165
  msgid "Support for %s AMP pages %s"
5166
  msgstr ""
5167
 
5168
  #. translators: %s HTML tags
5169
- #: settings.php:5428
5170
  msgid "%s Ad blocking detection %s"
5171
  msgstr ""
5172
 
5173
  #. translators: %s HTML tags
5174
- #: settings.php:5429
5175
  msgid "%s Mobile device detection %s"
5176
  msgstr ""
5177
 
5178
  #. translators: %s HTML tags
5179
- #: settings.php:5436
5180
  msgid "64 code blocks"
5181
  msgstr ""
5182
 
5183
  #. translators: %s HTML tags
5184
- #: settings.php:5437
5185
  msgid "%s GEO targeting %s"
5186
  msgstr ""
5187
 
5188
  #. translators: %s HTML tags
5189
- #: settings.php:5438
5190
  msgid "%s Scheduling %s"
5191
  msgstr ""
5192
 
@@ -5897,10 +5811,6 @@ msgstr ""
5897
  msgid "Invalid date range - only data for 1 year can be displayed"
5898
  msgstr ""
5899
 
5900
- #: strings.php:225
5901
- msgid "Delete"
5902
- msgstr ""
5903
-
5904
  #: strings.php:226
5905
  msgid "Switch"
5906
  msgstr ""
1
+ # Copyright (C) 2021 Ad Inserter
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.6.21\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2021-02-15 09:05:37+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2021-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:491
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:507
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:514
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:600
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:607
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:616
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:623
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:634
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
+ #: ad-inserter.php:641
56
  msgctxt "Menu item"
57
  msgid "Show Log"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name Before HTML element
61
+ #: ad-inserter.php:1305
62
  msgid "Before"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name After HTML element
66
+ #: ad-inserter.php:1310
67
  msgid "After"
68
  msgstr ""
69
 
70
  #. translators: Debugging position name Prepend content of HTML element (before
71
  #. the content of the HTML element)
72
+ #: ad-inserter.php:1315 strings.php:104
73
  msgid "Prepend content"
74
  msgstr ""
75
 
76
  #. translators: Debugging position name Append content of HTML element (after
77
  #. the content of the HTML element)
78
+ #: ad-inserter.php:1320 strings.php:105
79
  msgid "Append content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace content of HTML element
83
+ #: ad-inserter.php:1325 strings.php:106
84
  msgid "Replace content"
85
  msgstr ""
86
 
87
  #. translators: Debugging position name Replace HTML element
88
+ #: ad-inserter.php:1330 strings.php:169
89
  msgid "Replace"
90
  msgstr ""
91
 
92
  #. translators: Debugging message when output buffering is enabled
93
+ #: ad-inserter.php:1377
94
  msgid "OUTPUT BUFFERING"
95
  msgstr ""
96
 
97
  #. translators: Debugging position
98
+ #: ad-inserter.php:1381
99
  msgid "Above Header"
100
  msgstr ""
101
 
102
+ #: ad-inserter.php:1679
103
  msgctxt "Menu item"
104
  msgid "Log In"
105
  msgstr ""
106
 
107
  #. translators: %s: Ad Inserter
108
+ #: ad-inserter.php:2032 ad-inserter.php:3258
109
  msgid "%s Settings"
110
  msgstr ""
111
 
112
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
113
+ #: ad-inserter.php:2626
114
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
115
  msgstr ""
116
 
117
+ #: ad-inserter.php:2626
118
  msgid "NO ACTION"
119
  msgstr ""
120
 
121
+ #: ad-inserter.php:2627
122
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
123
  msgstr ""
124
 
125
+ #: ad-inserter.php:2628
126
  msgid "AD BLOCKING DETECTED - ACTION"
127
  msgstr ""
128
 
129
+ #: ad-inserter.php:2629
130
  msgid "AD BLOCKING NOT DETECTED"
131
  msgstr ""
132
 
133
+ #: ad-inserter.php:2630
134
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
135
  msgstr ""
136
 
137
+ #: ad-inserter.php:2631
138
  msgid "AD BLOCKING DETECTED - NO ACTION"
139
  msgstr ""
140
 
141
  #. Translators: 1: number of blocks, 2: Ad Inserter
142
+ #: ad-inserter.php:2953
143
  msgid "Hey, you are now using %1$s %2$s block."
144
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
145
  msgstr[0] ""
146
  msgstr[1] ""
147
 
148
+ #: ad-inserter.php:2956
149
  msgid "Please help me to solve a problem first"
150
  msgstr ""
151
 
152
+ #: ad-inserter.php:2960
153
  msgid "Maybe later"
154
  msgstr ""
155
 
156
  #. Translators: %s: Ad Inserter
157
+ #: ad-inserter.php:2965
158
  msgid "Hey, you are using %s and I hope you're happy with it."
159
  msgstr ""
160
 
161
+ #: ad-inserter.php:2968
162
  msgid "OK, but please help me with the settings first"
163
  msgstr ""
164
 
165
+ #: ad-inserter.php:2981
166
  msgid ""
167
  "Please take a moment to rate the plugin. When you rate it with 5 stars it's "
168
  "like saying 'Thank you'. Somebody will be happy."
169
  msgstr ""
170
 
171
+ #: ad-inserter.php:2983
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website."
175
  msgstr ""
176
 
177
+ #: ad-inserter.php:2989
178
  msgid "Sure"
179
  msgstr ""
180
 
181
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
182
  #. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
183
+ #: ad-inserter.php:3006 ad-inserter.php:3041
184
  msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
185
  msgstr ""
186
 
187
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
188
+ #: ad-inserter.php:3013
189
  msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
190
  msgstr ""
191
 
192
+ #: ad-inserter.php:3023
193
  msgctxt "Menu item"
194
  msgid "Settings"
195
  msgstr ""
196
 
197
+ #: ad-inserter.php:3055
198
  msgid ""
199
  "Load settings page in safe mode to avoid collisions with other plugins or "
200
  "theme"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:3055
204
  msgid "Safe mode"
205
  msgstr ""
206
 
207
  #. translators: %s: Ad Inserter
208
+ #: ad-inserter.php:3150
209
  msgctxt "Meta box name"
210
  msgid "%s Individual Exceptions"
211
  msgstr ""
212
 
213
+ #: ad-inserter.php:3179 ad-inserter.php:11006 class.php:2410
214
  #: includes/preview.php:2324 includes/preview.php:2369
215
+ #: includes/preview.php:2406 settings.php:4386 strings.php:3
216
  msgid "Block"
217
  msgstr ""
218
 
219
+ #: ad-inserter.php:3180 settings.php:4387 settings.php:4472
220
  msgid "Name"
221
  msgstr ""
222
 
223
+ #: ad-inserter.php:3183 settings.php:1256
224
  msgid "Default insertion"
225
  msgstr ""
226
 
227
  #. translators: For this post or page
228
+ #: ad-inserter.php:3186
229
  msgctxt "Page"
230
  msgid "For this"
231
  msgstr ""
232
 
233
+ #: ad-inserter.php:3187
234
  msgctxt "Post"
235
  msgid "For this"
236
  msgstr ""
237
 
238
+ #: ad-inserter.php:3199
239
  msgctxt "Enabled/disabled on all"
240
  msgid "pages"
241
  msgstr ""
242
 
243
+ #: ad-inserter.php:3202
244
  msgctxt "Enabled/disabled on all"
245
  msgid "posts"
246
  msgstr ""
247
 
248
+ #: ad-inserter.php:3219 ad-inserter.php:3231 strings.php:175
249
  msgid "Enabled"
250
  msgstr ""
251
 
252
  #. translators: Menu items
253
+ #: ad-inserter.php:3219 ad-inserter.php:3231
254
+ #: includes/functions-check-now.php:2401 includes/functions.php:2691
255
  #: strings.php:16
256
  msgid "Disabled"
257
  msgstr ""
258
 
259
+ #: ad-inserter.php:3221
260
  msgid "No individual exceptions"
261
  msgstr ""
262
 
263
  #. translators: Not enabled for pages or posts
264
+ #: ad-inserter.php:3223
265
  msgid "Not enabled for"
266
  msgstr ""
267
 
268
  #. translators: No individual exceptions enabled for pages or posts
269
+ #: ad-inserter.php:3251
270
  msgid "No block has individual exceptions enabled"
271
  msgstr ""
272
 
273
  #. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
274
+ #: ad-inserter.php:3256
275
  msgid ""
276
  "Default insertion can be configured for each block on %1$s page - button "
277
  "next to %2$s checkbox."
278
  msgstr ""
279
 
280
+ #: ad-inserter.php:3259 settings.php:1234
281
  msgid "Tag / Archive pages"
282
  msgstr ""
283
 
284
+ #: ad-inserter.php:3261
285
  msgid ""
286
  "When individual exceptions for a block are enabled, a checkbox will be "
287
  "listed here to change default insertion for this post or page."
288
  msgstr ""
289
 
290
+ #: ad-inserter.php:3262
291
  msgid ""
292
  "This way you can individually enable or disable blocks on specific posts or "
293
  "pages."
294
  msgstr ""
295
 
296
+ #: ad-inserter.php:3264
297
  msgid "For more information check page %s"
298
  msgstr ""
299
 
300
  #. translators: Ad Inserter Exceptions documentation page
301
+ #: ad-inserter.php:3266
302
  msgid "Individual Exceptions"
303
  msgstr ""
304
 
305
+ #: ad-inserter.php:3313
306
  msgid "STATIC PAGE"
307
  msgstr ""
308
 
309
+ #: ad-inserter.php:3316
310
  msgid "POST"
311
  msgstr ""
312
 
313
+ #: ad-inserter.php:3319
314
  msgid "HOMEPAGE"
315
  msgstr ""
316
 
317
+ #: ad-inserter.php:3322
318
  msgid "CATEGORY PAGE"
319
  msgstr ""
320
 
321
+ #: ad-inserter.php:3325
322
  msgid "SEARCH PAGE"
323
  msgstr ""
324
 
325
+ #: ad-inserter.php:3328
326
  msgid "ARCHIVE PAGE"
327
  msgstr ""
328
 
329
+ #: ad-inserter.php:3331
330
  msgid "ERROR 404 PAGE"
331
  msgstr ""
332
 
333
+ #: ad-inserter.php:3334
334
  msgid "AJAX CALL"
335
  msgstr ""
336
 
337
+ #: ad-inserter.php:3337
338
  msgid "UNKNOWN PAGE TYPE"
339
  msgstr ""
340
 
341
+ #: ad-inserter.php:3354
342
  msgid "Click to delete ad blocking detection cokies"
343
  msgstr ""
344
 
345
+ #: ad-inserter.php:3355
346
  msgid "AD BLOCKING STATUS UNKNOWN"
347
  msgstr ""
348
 
349
  #. translators: %s: AdSense Auto Ads
350
+ #: ad-inserter.php:3384
351
  msgid ""
352
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
353
  "positions"
354
  msgstr ""
355
 
356
+ #: ad-inserter.php:3522
357
  msgid "Code for insertion"
358
  msgstr ""
359
 
360
+ #: ad-inserter.php:3522
361
  msgid "character"
362
  msgid_plural "characters"
363
  msgstr[0] ""
364
  msgstr[1] ""
365
 
366
+ #: ad-inserter.php:3538
367
  msgid "Header code"
368
  msgstr ""
369
 
370
+ #: ad-inserter.php:3538
371
  msgctxt "Header code"
372
  msgid "DISABLED"
373
  msgstr ""
374
 
375
+ #: ad-inserter.php:3538 ad-inserter.php:3794
376
  msgid "character inserted"
377
  msgid_plural "characters inserted"
378
  msgstr[0] ""
379
  msgstr[1] ""
380
 
381
+ #: ad-inserter.php:3556
382
  msgid "Click to delete the cokie for the consents"
383
  msgstr ""
384
 
385
+ #: ad-inserter.php:3794
386
  msgid "Footer code"
387
  msgstr ""
388
 
389
+ #: ad-inserter.php:3794
390
  msgctxt "Footer code"
391
  msgid "DISABLED"
392
  msgstr ""
393
 
394
+ #: ad-inserter.php:3805
395
  msgid "JAVASCRIPT NOT WORKING"
396
  msgstr ""
397
 
398
+ #: ad-inserter.php:3805
399
  msgid "NO JAVASCRIPT ERRORS"
400
  msgstr ""
401
 
402
+ #: ad-inserter.php:3805
403
  msgid "JAVASCRIPT ERRORS"
404
  msgstr ""
405
 
406
  #. translators: block name (block with default settings)
407
+ #: ad-inserter.php:6436
408
  msgctxt "Block name"
409
  msgid "Default"
410
  msgstr ""
411
 
412
  #. translators: %s: Ad Inserter
413
+ #: ad-inserter.php:7150
414
  msgid "Error importing %s settings."
415
  msgstr ""
416
 
417
+ #: ad-inserter.php:7151
418
  msgid "Error importing settings for block"
419
  msgid_plural "Error importing settings for blocks:"
420
  msgstr[0] ""
421
  msgstr[1] ""
422
 
423
+ #: ad-inserter.php:7204
424
  msgid "Settings saved."
425
  msgstr ""
426
 
427
  #. translators: %s: Ad Inserter
428
+ #: ad-inserter.php:7206
429
  msgid "Invalid data received - %s settings not saved."
430
  msgstr ""
431
 
432
+ #: ad-inserter.php:7305
433
  msgid "Settings cleared."
434
  msgstr ""
435
 
436
  #. Translators: Post/Static page must have between X and Y words
437
+ #: ad-inserter.php:7733 ad-inserter.php:7735 ad-inserter.php:7758
438
+ #: settings.php:2257
439
  msgid "word"
440
  msgid_plural "words"
441
  msgstr[0] ""
442
  msgstr[1] ""
443
 
444
+ #: ad-inserter.php:7772 ad-inserter.php:7906
445
  msgid "HTML TAGS REMOVED"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:7985
449
  msgid "BEFORE COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:8117
453
  msgid "AFTER COMMENTS"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:8201
457
  msgid "BETWEEN COMMENTS"
458
  msgstr ""
459
 
460
+ #: ad-inserter.php:10292 ad-inserter.php:10381
461
  msgctxt "category name"
462
  msgid "Uncategorized"
463
  msgstr ""
464
 
465
+ #: ad-inserter.php:10608
466
  msgid "requires WordPress 4.6 or newer"
467
  msgstr ""
468
 
469
+ #: ad-inserter.php:10608
470
  msgid "Please update!"
471
  msgstr ""
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:10877
476
  msgid "Thank you for installing"
477
  msgstr ""
478
 
479
  #. translators: Opt-in message: %s: HTML tags
480
+ #: ad-inserter.php:10879
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."
484
  msgstr ""
485
 
486
+ #: ad-inserter.php:10881
487
  msgid ""
488
  "We don't record any sensitive data, only information regarding the WordPress "
489
  "environment and plugin usage, which will help us to make improvements to the "
491
  msgstr ""
492
 
493
  #. translators: Deactivation message: %s: HTML tags
494
+ #: ad-inserter.php:10918
495
  msgid ""
496
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
497
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
499
  msgstr ""
500
 
501
  #. translators: %s: Ad Inserter
502
+ #: ad-inserter.php:10964
503
  msgid "%s block."
504
  msgstr ""
505
 
506
  #. translators: widget title
507
+ #: ad-inserter.php:10980 ad-inserter.php:11015
508
  msgid "Processing log"
509
  msgstr ""
510
 
511
  #. translators: widget title
512
+ #: ad-inserter.php:10982 ad-inserter.php:11016
513
  msgid "Dummy widget"
514
  msgstr ""
515
 
516
  #. translators: widget title
517
+ #: ad-inserter.php:10984 ad-inserter.php:11014
518
  msgid "Debugging tools"
519
  msgstr ""
520
 
521
  #. translators: block status (widget title)
522
+ #: ad-inserter.php:10991
523
  msgctxt "block"
524
  msgid "PAUSED"
525
  msgstr ""
526
 
527
+ #: ad-inserter.php:10992
528
  msgid "WIDGET DISABLED"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:10993
532
  msgid "Unknown block"
533
  msgstr ""
534
 
535
+ #: ad-inserter.php:11001 includes/functions-check-now.php:3261
536
+ #: includes/functions.php:3783 settings.php:1286
537
  msgid "Title"
538
  msgstr ""
539
 
540
+ #: ad-inserter.php:11023
541
  msgctxt "Widget"
542
  msgid "Sticky"
543
  msgstr ""
544
 
545
+ #: ad-inserter.php:11074
546
  msgid ""
547
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
548
  "Inserter you need to first deactivate Ad Inserter Pro."
549
  msgstr ""
550
 
551
+ #: ad-inserter.php:11075
552
  msgid ""
553
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
554
  "will clear all settings that are available only in the Pro version "
584
  msgid "Between posts"
585
  msgstr ""
586
 
587
+ #: class.php:2389 settings.php:1991 settings.php:4404
588
  msgid "Widget"
589
  msgstr ""
590
 
591
+ #: class.php:2394 settings.php:4402
592
  msgid "PHP function call"
593
  msgstr ""
594
 
635
  msgid "ALL"
636
  msgstr ""
637
 
638
+ #: class.php:2779 class.php:2820 class.php:4224 strings.php:279
639
  msgctxt "Block"
640
  msgid "HIDDEN"
641
  msgstr ""
642
 
643
+ #: class.php:2827 class.php:4227 strings.php:278
644
  msgctxt "Block"
645
  msgid "VISIBLE"
646
  msgstr ""
647
 
648
+ #: class.php:3422 class.php:3500
649
  msgid "ACTIVE GROUPS"
650
  msgstr ""
651
 
652
+ #: class.php:3912
653
  msgid "start='%s' end='%s' days='%s' type='%s'"
654
  msgstr ""
655
 
656
+ #: class.php:3920
657
  msgid "parameters='%s' type='%s'"
658
  msgstr ""
659
 
660
  #. translators: %s: list parameters and type
661
+ #: class.php:3922
662
  msgid "referers='%s' type='%s'"
663
  msgstr ""
664
 
665
  #. translators: %s: list parameters and type
666
+ #: class.php:3924
667
  msgid "clients='%s' type='%s'"
668
  msgstr ""
669
 
670
  #. translators: %s: list parameters and type
671
+ #: class.php:4107
672
  msgid "countries='%s' type='%s'"
673
  msgstr ""
674
 
675
  #. translators: %s: list parameters and type
676
+ #: class.php:4109
677
  msgid "ip addresses='%s' type='%s'"
678
  msgstr ""
679
 
680
+ #: class.php:4224 class.php:4227
681
  msgid "viewport='%s' type='%s'"
682
  msgstr ""
683
 
684
+ #: class.php:4649 strings.php:272
685
  msgid "BEFORE"
686
  msgstr ""
687
 
688
+ #: class.php:4657 strings.php:274
689
  msgid "PREPEND CONTENT"
690
  msgstr ""
691
 
692
+ #: class.php:4661 strings.php:275
693
  msgid "APPEND CONTENT"
694
  msgstr ""
695
 
696
+ #: class.php:4665 strings.php:276
697
  msgid "REPLACE CONTENT"
698
  msgstr ""
699
 
700
+ #: class.php:4669 strings.php:277
701
  msgid "REPLACE ELEMENT"
702
  msgstr ""
703
 
704
+ #: class.php:4680 strings.php:273
705
  msgid "AFTER"
706
  msgstr ""
707
 
708
+ #: class.php:4750 includes/preview.php:2369 includes/preview.php:2406
709
  msgid "Code"
710
  msgstr ""
711
 
712
+ #: class.php:4753
713
  msgid "for block"
714
  msgstr ""
715
 
716
+ #: class.php:8849
717
  msgid ""
718
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
719
  "extension for PHP."
720
  msgstr ""
721
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
722
  #: includes/editor.php:4 includes/placeholders.php:350
723
  #: includes/preview.php:2310 strings.php:285
724
  msgid "Use"
729
  msgstr ""
730
 
731
  #: includes/editor.php:6 includes/placeholders.php:352
732
+ #: includes/preview.php:2313 settings.php:3727 strings.php:227 strings.php:284
733
  msgid "Cancel"
734
  msgstr ""
735
 
808
  msgstr ""
809
 
810
  #: includes/functions-check-now.php:451 includes/functions.php:466
811
+ #: settings.php:1437 settings.php:1477 settings.php:2932
812
  msgid "Open HTML element selector"
813
  msgstr ""
814
 
833
  msgstr ""
834
 
835
  #: includes/functions-check-now.php:492 includes/functions.php:508
836
+ #: includes/functions.php:3495
837
  msgid "Generate PDF report"
838
  msgstr ""
839
 
846
  msgstr ""
847
 
848
  #: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
849
+ #: includes/functions.php:544 includes/functions.php:3476
850
  msgid "Toggle Statistics"
851
  msgstr ""
852
 
870
  msgstr ""
871
 
872
  #: includes/functions-check-now.php:555 includes/functions.php:584
873
+ #: settings.php:1191 settings.php:2368
874
  msgid "Save Settings"
875
  msgstr ""
876
 
920
  msgstr ""
921
 
922
  #: includes/functions-check-now.php:721 includes/functions.php:756
923
+ #: settings.php:1492
924
  msgid "Delay"
925
  msgstr ""
926
 
938
 
939
  #: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
940
  #: includes/functions-check-now.php:2545 includes/functions.php:870
941
+ #: includes/functions.php:2830 includes/functions.php:2846
942
  msgid "Tracking is globally disabled"
943
  msgstr ""
944
 
945
  #: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
946
  #: includes/functions-check-now.php:2549 includes/functions.php:874
947
+ #: includes/functions.php:2834 includes/functions.php:2850
948
  msgid "Tracking for this block is disabled"
949
  msgstr ""
950
 
953
  msgstr ""
954
 
955
  #: includes/functions-check-now.php:786 includes/functions.php:887
956
+ #: settings.php:3662 settings.php:3698 settings.php:3740 strings.php:240
957
  msgid "Loading..."
958
  msgstr ""
959
 
968
  msgstr ""
969
 
970
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
971
+ #: includes/functions.php:915 includes/functions.php:6532
972
  msgid "Load data for last month"
973
  msgstr ""
974
 
975
  #: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
976
+ #: includes/functions.php:915 includes/functions.php:6532
977
  msgid "Last Month"
978
  msgstr ""
979
 
980
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
981
+ #: includes/functions.php:918 includes/functions.php:6535
982
  msgid "Load data for this month"
983
  msgstr ""
984
 
985
  #: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
986
+ #: includes/functions.php:918 includes/functions.php:6535
987
  msgid "This Month"
988
  msgstr ""
989
 
990
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
991
+ #: includes/functions.php:921 includes/functions.php:6538
992
  msgid "Load data for this year"
993
  msgstr ""
994
 
995
  #: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
996
+ #: includes/functions.php:921 includes/functions.php:6538
997
  msgid "This Year"
998
  msgstr ""
999
 
1000
  #: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
1001
+ #: includes/functions.php:924 includes/functions.php:6541
1002
  msgid "Load data for the last 15 days"
1003
  msgstr ""
1004
 
1005
  #: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
1006
+ #: includes/functions.php:927 includes/functions.php:6544
1007
  msgid "Load data for the last 30 days"
1008
  msgstr ""
1009
 
1010
  #: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
1011
+ #: includes/functions.php:930 includes/functions.php:6547
1012
  msgid "Load data for the last 90 days"
1013
  msgstr ""
1014
 
1015
  #: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
1016
+ #: includes/functions.php:933 includes/functions.php:6550
1017
  msgid "Load data for the last 180 days"
1018
  msgstr ""
1019
 
1020
  #: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
1021
+ #: includes/functions.php:936 includes/functions.php:6553
1022
  msgid "Load data for the last 365 days"
1023
  msgstr ""
1024
 
1025
  #: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
1026
+ #: includes/functions.php:946 includes/functions.php:6563
1027
  msgid "Load data for the selected range"
1028
  msgstr ""
1029
 
1099
  msgstr ""
1100
 
1101
  #: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
1102
+ #: includes/functions.php:1066 includes/functions.php:3441
1103
  msgid "Toggle country editor"
1104
  msgstr ""
1105
 
1108
  msgstr ""
1109
 
1110
  #: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
1111
+ #: includes/functions.php:1073 includes/functions.php:3444
1112
  msgid "Comma separated country ISO Alpha-2 codes"
1113
  msgstr ""
1114
 
1121
  msgstr ""
1122
 
1123
  #: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
1124
+ #: includes/functions.php:1558 includes/functions.php:1869
1125
  msgid "Enter license key"
1126
  msgstr ""
1127
 
1128
  #. translators: %s: Ad Inserter Pro
1129
+ #: includes/functions-check-now.php:1388 includes/functions.php:1564
1130
  msgid ""
1131
  "%s license key is not set. Plugin functionality is limited and updates are "
1132
  "disabled."
1133
  msgstr ""
1134
 
1135
  #. translators: %s: Ad Inserter Pro
1136
+ #: includes/functions-check-now.php:1402 includes/functions.php:1578
1137
  msgid "Warning: %s plugin update server is not accessible"
1138
  msgstr ""
1139
 
1140
  #. translators: updates are not available
1141
+ #: includes/functions-check-now.php:1404 includes/functions.php:1580
1142
  msgid "updates"
1143
  msgstr ""
1144
 
1145
  #. translators: updates are not available
1146
+ #: includes/functions-check-now.php:1406 includes/functions.php:1582
1147
  msgid "are not available"
1148
  msgstr ""
1149
 
1150
  #: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
1151
+ #: includes/functions.php:1587 includes/functions.php:1878
1152
  msgid "Check license key"
1153
  msgstr ""
1154
 
1155
  #. translators: %s: Ad Inserter Pro
1156
+ #: includes/functions-check-now.php:1417 includes/functions.php:1593
1157
  msgid "Invalid %s license key."
1158
  msgstr ""
1159
 
1160
  #. translators: %s: Ad Inserter Pro
1161
+ #: includes/functions-check-now.php:1426 includes/functions.php:1602
1162
  msgid "%s license expired. Plugin updates are disabled."
1163
  msgstr ""
1164
 
1165
+ #: includes/functions-check-now.php:1427 includes/functions.php:1603
1166
  msgid "Renew license"
1167
  msgstr ""
1168
 
1169
  #. translators: %s: Ad Inserter Pro
1170
+ #: includes/functions-check-now.php:1435 includes/functions.php:1611
1171
  msgid "%s license overused. Plugin updates are disabled."
1172
  msgstr ""
1173
 
1174
+ #: includes/functions-check-now.php:1436 includes/functions.php:1612
1175
  msgid "Manage licenses"
1176
  msgstr ""
1177
 
1178
+ #: includes/functions-check-now.php:1436 includes/functions.php:1612
1179
  msgid "Upgrade license"
1180
  msgstr ""
1181
 
1182
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1183
+ #: includes/functions-check-now.php:1683 includes/functions.php:1871
1184
  msgid ""
1185
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1186
  "limited and updates are disabled."
1187
  msgstr ""
1188
 
1189
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1190
+ #: includes/functions-check-now.php:1692 includes/functions.php:1880
1191
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1192
  msgstr ""
1193
 
1194
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1195
+ #: includes/functions-check-now.php:1708 includes/functions.php:1896
1196
  msgid ""
1197
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1198
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1199
  msgstr ""
1200
 
1201
  #. translators: 1, 3: HTML tags, 2: percentage
1202
+ #: includes/functions-check-now.php:1715 includes/functions.php:1903
1203
  msgid ""
1204
  "During the license period and 30 days after the license has expired we offer "
1205
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1206
  msgstr ""
1207
 
1208
+ #: includes/functions-check-now.php:1725 includes/functions.php:1913
1209
  msgid "No, thank you."
1210
  msgstr ""
1211
 
1212
+ #: includes/functions-check-now.php:1728 includes/functions.php:1916
1213
  msgid "Not now, maybe later."
1214
  msgstr ""
1215
 
1216
+ #: includes/functions-check-now.php:1742 includes/functions.php:1930
1217
  msgid "Renew the licence"
1218
  msgstr ""
1219
 
1220
+ #: includes/functions-check-now.php:1744 includes/functions.php:1932
1221
  msgid "Update license status"
1222
  msgstr ""
1223
 
1224
  #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1225
+ #: includes/functions-check-now.php:1755 includes/functions.php:1945
1226
  msgid ""
1227
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1228
  "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1229
  msgstr ""
1230
 
1231
  #. Translators: %s: HTML tag
1232
+ #: includes/functions-check-now.php:1777 includes/functions.php:2000
1233
  msgid "Warning: %s MaxMind IP geolocation database not found."
1234
  msgstr ""
1235
 
1236
+ #: includes/functions-check-now.php:2330 includes/functions.php:2623
1237
  msgid "Geolocation"
1238
  msgstr ""
1239
 
1240
+ #: includes/functions-check-now.php:2334 includes/functions.php:2627
1241
+ #: settings.php:4391
1242
  msgid "Exceptions"
1243
  msgstr ""
1244
 
1245
+ #: includes/functions-check-now.php:2339 includes/functions.php:2632
1246
  msgid "Multisite"
1247
  msgstr ""
1248
 
1249
+ #: includes/functions-check-now.php:2344 includes/functions.php:2637
1250
+ #: settings.php:4397
1251
  msgid "Tracking"
1252
  msgstr ""
1253
 
1254
  #. translators: %d: days, hours, minutes
1255
+ #: includes/functions-check-now.php:2375 includes/functions.php:2668
1256
  msgid "Scheduled in %d days %d hours %d minutes"
1257
  msgstr ""
1258
 
1259
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1260
  #. HTML code for long dash separator
1261
+ #: includes/functions-check-now.php:2384 includes/functions.php:2677
1262
  msgid "Active %s expires in %d days %d hours %d minutes"
1263
  msgstr ""
1264
 
1265
+ #: includes/functions-check-now.php:2388 includes/functions.php:2681
1266
  msgid "Expired"
1267
  msgstr ""
1268
 
1269
+ #: includes/functions-check-now.php:2396 includes/functions.php:2707
1270
+ #: settings.php:1547 settings.php:1562 settings.php:1684 settings.php:2255
1271
  msgid "and"
1272
  msgstr ""
1273
 
1274
+ #: includes/functions-check-now.php:2399 includes/functions.php:2689
1275
  msgid "fallback"
1276
  msgstr ""
1277
 
1278
+ #: includes/functions-check-now.php:2400 includes/functions.php:2690
1279
  msgid "Block to be used when scheduling expires"
1280
  msgstr ""
1281
 
1282
+ #: includes/functions-check-now.php:2425 includes/functions.php:2727
1283
  msgid "Load in iframe"
1284
  msgstr ""
1285
 
1286
+ #: includes/functions-check-now.php:2429 includes/functions.php:2731
1287
+ #: includes/placeholders.php:387 settings.php:1155 settings.php:2282
1288
  msgid "Width"
1289
  msgstr ""
1290
 
1291
+ #: includes/functions-check-now.php:2430 includes/functions.php:2732
1292
  msgid "iframe width, empty means full width (100%)"
1293
  msgstr ""
1294
 
1295
+ #: includes/functions-check-now.php:2436 includes/functions.php:2738
1296
+ #: includes/placeholders.php:382 settings.php:1161 settings.php:2286
1297
  msgid "Height"
1298
  msgstr ""
1299
 
1300
+ #: includes/functions-check-now.php:2437 includes/functions.php:2739
1301
  msgid "iframe height, empty means adjust it to iframe content height"
1302
  msgstr ""
1303
 
1304
+ #: includes/functions-check-now.php:2444 includes/functions.php:2746
1305
  msgid "Ad label in iframe"
1306
  msgstr ""
1307
 
1308
+ #: includes/functions-check-now.php:2449 includes/functions.php:2751
1309
  msgid "Preview iframe code"
1310
  msgstr ""
1311
 
1312
+ #: includes/functions-check-now.php:2449 includes/functions.php:2751
1313
+ #: includes/preview.php:2322 settings.php:1186 settings.php:2994
1314
  msgid "Preview"
1315
  msgstr ""
1316
 
1317
+ #: includes/functions-check-now.php:2463 includes/functions.php:2765
1318
+ #: settings.php:4398
1319
  msgid "Limits"
1320
  msgstr ""
1321
 
1322
  #: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
1323
+ #: includes/functions-check-now.php:4429 includes/functions.php:2770
1324
+ #: includes/functions.php:5304 includes/functions.php:5369 settings.php:2415
1325
  msgid "Ad Blocking"
1326
  msgstr ""
1327
 
1328
  #. translators: 1, 2 and 3, 4: HTML tags
1329
+ #: includes/functions-check-now.php:2477 includes/functions.php:2779
1330
  msgid ""
1331
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1332
  "for tracking!"
1334
 
1335
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1336
  #. header
1337
+ #: includes/functions-check-now.php:2486 includes/functions.php:2788
1338
  msgid ""
1339
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1340
  "enabled and automatic insertion %6$s!"
1341
  msgstr ""
1342
 
1343
+ #: includes/functions-check-now.php:2553 includes/functions.php:2854
1344
  msgid "Click fraud protection is globally disabled"
1345
  msgstr ""
1346
 
1347
+ #: includes/functions-check-now.php:2557
1348
  msgid "Max clicks per time period are not defined"
1349
  msgstr ""
1350
 
1351
  #. Translators: Max n impressions
1352
+ #: includes/functions-check-now.php:2571 includes/functions.php:2868
1353
  msgid "General limits"
1354
  msgstr ""
1355
 
1356
  #. Translators: Max n impressions per x days
1357
  #: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
1358
+ #: includes/functions-check-now.php:2674 includes/functions.php:2874
1359
+ #: includes/functions.php:2886 includes/functions.php:2971
1360
  msgid "Current value"
1361
  msgstr ""
1362
 
1372
  #: includes/functions-check-now.php:2625 includes/functions-check-now.php:2635
1373
  #: includes/functions-check-now.php:2681 includes/functions-check-now.php:2690
1374
  #: includes/functions-check-now.php:2708 includes/functions-check-now.php:2717
1375
+ #: includes/functions.php:2893 includes/functions.php:2903
1376
+ #: includes/functions.php:2922 includes/functions.php:2932
1377
+ #: includes/functions.php:2978 includes/functions.php:2987
1378
+ #: includes/functions.php:3005 includes/functions.php:3014 settings.php:2167
1379
  msgid "Max"
1380
  msgstr ""
1381
 
1382
+ #: includes/functions-check-now.php:2597 includes/functions.php:2894
1383
  msgid ""
1384
  "Maximum number of impressions for this block. Empty means no general "
1385
  "impression limit."
1391
  #. Translators: Max n impressions per x days
1392
  #: includes/functions-check-now.php:2599 includes/functions-check-now.php:2609
1393
  #: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
1394
+ #: includes/functions.php:2896 includes/functions.php:2906
1395
+ #: includes/functions.php:2981 includes/functions.php:2990
1396
  msgid "impression"
1397
  msgid_plural "impressions"
1398
  msgstr[0] ""
1399
  msgstr[1] ""
1400
 
1401
+ #: includes/functions-check-now.php:2607 includes/functions.php:2904
1402
  msgid ""
1403
  "Maximum number of impressions per time period. Empty means no time limit."
1404
  msgstr ""
1409
  #. Translators: Max n clicks per x days
1410
  #: includes/functions-check-now.php:2613 includes/functions-check-now.php:2642
1411
  #: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
1412
+ #: includes/functions.php:2910 includes/functions.php:2939
1413
+ #: includes/functions.php:2994 includes/functions.php:3021
1414
+ #: includes/functions.php:3705
1415
  msgid "per"
1416
  msgstr ""
1417
 
1418
  #: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
1419
+ #: includes/functions.php:2911 includes/functions.php:2940
1420
  msgid "Time period in days. Empty means no time limit."
1421
  msgstr ""
1422
 
1428
  #: includes/functions-check-now.php:2616 includes/functions-check-now.php:2645
1429
  #: includes/functions-check-now.php:2700 includes/functions-check-now.php:2727
1430
  #: includes/functions-check-now.php:2833 includes/functions-check-now.php:3161
1431
+ #: includes/functions.php:2913 includes/functions.php:2942
1432
+ #: includes/functions.php:2997 includes/functions.php:3024
1433
+ #: includes/functions.php:3130 includes/functions.php:3708
1434
+ #: includes/functions.php:3718 strings.php:218 strings.php:219 strings.php:220
1435
+ #: strings.php:221 strings.php:222 strings.php:223
1436
  msgid "day"
1437
  msgid_plural "days"
1438
  msgstr[0] ""
1439
  msgstr[1] ""
1440
 
1441
+ #: includes/functions-check-now.php:2626 includes/functions.php:2923
1442
  msgid ""
1443
  "Maximum number of clicks on this block. Empty means no general click limit."
1444
  msgstr ""
1449
  #. Translators: Max n clicks per x days
1450
  #: includes/functions-check-now.php:2628 includes/functions-check-now.php:2638
1451
  #: includes/functions-check-now.php:2711 includes/functions-check-now.php:2720
1452
+ #: includes/functions-check-now.php:4577 includes/functions.php:2925
1453
+ #: includes/functions.php:2935 includes/functions.php:3008
1454
+ #: includes/functions.php:3017 includes/functions.php:3705
1455
+ #: includes/functions.php:5655
1456
  msgid "click"
1457
  msgid_plural "clicks"
1458
  msgstr[0] ""
1459
  msgstr[1] ""
1460
 
1461
+ #: includes/functions-check-now.php:2636 includes/functions.php:2933
1462
  msgid "Maximum number of clicks per time period. Empty means no time limit."
1463
  msgstr ""
1464
 
1465
+ #: includes/functions-check-now.php:2661 includes/functions.php:2958
1466
  msgid "Individual visitor limits"
1467
  msgstr ""
1468
 
1469
  #: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
1470
+ #: includes/functions.php:2962 includes/functions.php:2964
1471
  msgid ""
1472
  "When specified number of clicks on this block for a visitor will be reached "
1473
  "in the specified time period, all blocks that have click fraud protection "
1475
  "general plugin settings."
1476
  msgstr ""
1477
 
1478
+ #: includes/functions-check-now.php:2667 includes/functions.php:2964
1479
  msgid "Trigger click fraud protection"
1480
  msgstr ""
1481
 
1482
+ #: includes/functions-check-now.php:2682 includes/functions.php:2979
1483
  msgid ""
1484
  "Maximum number of impressions of this block for each visitor. Empty means no "
1485
  "impression limit."
1486
  msgstr ""
1487
 
1488
+ #: includes/functions-check-now.php:2691 includes/functions.php:2988
1489
  msgid ""
1490
  "Maximum number of impressions per time period for each visitor. Empty means "
1491
  "no impression limit per time period for visitors."
1492
  msgstr ""
1493
 
1494
  #: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
1495
+ #: includes/functions.php:2995 includes/functions.php:3022
1496
+ #: includes/functions.php:3708
1497
  msgid ""
1498
  "Time period in days. Use decimal value (with decimal point) for shorter "
1499
  "periods. Empty means no time limit."
1500
  msgstr ""
1501
 
1502
+ #: includes/functions-check-now.php:2709 includes/functions.php:3006
1503
  msgid ""
1504
  "Maximum number of clicks on this block for each visitor. Empty means no "
1505
  "click limit."
1506
  msgstr ""
1507
 
1508
+ #: includes/functions-check-now.php:2718 includes/functions.php:3015
1509
+ #: includes/functions.php:3705
1510
  msgid ""
1511
  "Maximum number of clicks per time period for each visitor. Empty means no "
1512
  "click limit per time period for visitors."
1513
  msgstr ""
1514
 
1515
+ #: includes/functions-check-now.php:2744 includes/functions.php:3041
1516
  msgid "When ad blocking is detected"
1517
  msgstr ""
1518
 
1519
+ #: includes/functions-check-now.php:2753 includes/functions.php:3050
1520
  msgid "replacement"
1521
  msgstr ""
1522
 
1523
+ #: includes/functions-check-now.php:2754 includes/functions.php:3051
1524
  msgid "Block to be shown when ad blocking is detected"
1525
  msgstr ""
1526
 
1527
+ #: includes/functions-check-now.php:2755 includes/functions.php:3052
1528
  msgctxt "replacement"
1529
  msgid "None"
1530
  msgstr ""
1531
 
1532
  #: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
1533
+ #: includes/functions.php:3069 includes/functions.php:6776
1534
  msgid "Close button"
1535
  msgstr ""
1536
 
1537
+ #: includes/functions-check-now.php:2824 includes/functions.php:3121
1538
  msgid "Auto close after"
1539
  msgstr ""
1540
 
1541
+ #: includes/functions-check-now.php:2825 includes/functions.php:3122
1542
  msgid ""
1543
  "Time in seconds in which the ad will automatically close. Leave empty to "
1544
  "disable auto closing."
1545
  msgstr ""
1546
 
1547
  #. Translators: Don't show for x days
1548
+ #: includes/functions-check-now.php:2830 includes/functions.php:3127
1549
  msgid "Don't show for"
1550
  msgstr ""
1551
 
1552
+ #: includes/functions-check-now.php:2831 includes/functions.php:3128
1553
  msgid ""
1554
  "Time in days in which closed ad will not be shown again. Use decimal value "
1555
  "(with decimal point) for shorter time period or leave empty to show it again "
1557
  msgstr ""
1558
 
1559
  #. Translators: Delay showing for x pageviews
1560
+ #: includes/functions-check-now.php:2851 includes/functions.php:3148
1561
  msgid "Delay showing for"
1562
  msgstr ""
1563
 
1564
+ #: includes/functions-check-now.php:2852 includes/functions.php:3149
1565
  msgid ""
1566
  "Number of pageviews before the code is inserted (and ad displayed). Leave "
1567
  "empty to insert the code for the first pageview."
1570
  #. Translators: Delay showing for x pageviews
1571
  #. Translators: Show every x pageviews
1572
  #: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
1573
+ #: includes/functions.php:3151 includes/functions.php:3158
1574
  msgid "pageview"
1575
  msgid_plural "pageviews"
1576
  msgstr[0] ""
1577
  msgstr[1] ""
1578
 
1579
  #. Translators: Show every x pageviews
1580
+ #: includes/functions-check-now.php:2858 includes/functions.php:3155
1581
  msgid "Show every"
1582
  msgid_plural "Show every"
1583
  msgstr[0] ""
1584
  msgstr[1] ""
1585
 
1586
+ #: includes/functions-check-now.php:2859 includes/functions.php:3156
1587
  msgid ""
1588
  "Number of pageviews to insert the code again. Leave empty to insert the code "
1589
  "for every pageview."
1590
  msgstr ""
1591
 
1592
+ #: includes/functions-check-now.php:2878 includes/functions.php:3179
1593
+ #: settings.php:926
1594
  msgid "Lazy loading"
1595
  msgstr ""
1596
 
1597
  #. Translators: %s MaxMind
1598
+ #: includes/functions-check-now.php:2935 includes/functions.php:3365
1599
  msgid "This product includes GeoLite2 data created by %s"
1600
  msgstr ""
1601
 
1602
+ #: includes/functions-check-now.php:2946 includes/functions.php:3378
1603
  msgid "IP geolocation database"
1604
  msgstr ""
1605
 
1606
+ #: includes/functions-check-now.php:2949 includes/functions.php:3381
1607
  msgid "Select IP geolocation database."
1608
  msgstr ""
1609
 
1610
+ #: includes/functions-check-now.php:2960 includes/functions.php:3392
1611
  msgid "Automatic database updates"
1612
  msgstr ""
1613
 
1614
+ #: includes/functions-check-now.php:2963 includes/functions.php:3395
1615
  msgid ""
1616
  "Automatically download and update free GeoLite2 IP geolocation database by "
1617
  "MaxMind"
1618
  msgstr ""
1619
 
1620
+ #: includes/functions-check-now.php:2971 includes/functions.php:3412
1621
  msgid "Database"
1622
  msgstr ""
1623
 
1624
+ #: includes/functions-check-now.php:2974 includes/functions.php:3415
1625
  msgid ""
1626
  "Absolute path starting with '/' or relative path to the MaxMind database file"
1627
  msgstr ""
1628
 
1629
  #. translators: %d: group number
1630
+ #: includes/functions-check-now.php:2992 includes/functions.php:3433
1631
  msgid "Group %d"
1632
  msgstr ""
1633
 
1634
+ #: includes/functions-check-now.php:2998 includes/functions.php:3439
1635
  msgid "countries"
1636
  msgstr ""
1637
 
1638
+ #: includes/functions-check-now.php:3043 includes/functions.php:3484
1639
  msgid ""
1640
  "Enable impression and click tracking. You also need to enable tracking for "
1641
  "each block you want to track."
1645
  msgid "Generate report"
1646
  msgstr ""
1647
 
1648
+ #: includes/functions-check-now.php:3058 includes/functions.php:3503
1649
  msgid "Impression and Click Tracking"
1650
  msgstr ""
1651
 
1652
+ #: includes/functions-check-now.php:3059 includes/functions.php:3504
1653
+ #: settings.php:2882
1654
  msgctxt "ad blocking detection"
1655
  msgid "NOT ENABLED"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions-check-now.php:3075 includes/functions.php:3520
1659
  msgid "Internal"
1660
  msgstr ""
1661
 
1662
+ #: includes/functions-check-now.php:3079 includes/functions.php:3524
1663
  msgid "Track impressions and clicks with internal tracking and statistics"
1664
  msgstr ""
1665
 
1666
+ #: includes/functions-check-now.php:3084 includes/functions.php:3529
1667
  msgid "External"
1668
  msgstr ""
1669
 
1670
+ #: includes/functions-check-now.php:3088 includes/functions.php:3533
1671
  msgid ""
1672
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1673
  "code installed)"
1674
  msgstr ""
1675
 
1676
+ #: includes/functions-check-now.php:3093 includes/functions.php:3538
1677
  msgid "Track Pageviews"
1678
  msgstr ""
1679
 
1680
+ #: includes/functions-check-now.php:3099 includes/functions.php:3544
1681
  msgid "Track Pageviews by Device (as configured for viewports)"
1682
  msgstr ""
1683
 
1684
+ #: includes/functions-check-now.php:3109 includes/functions.php:3554
1685
  msgid "Track for Logged in Users"
1686
  msgstr ""
1687
 
1688
+ #: includes/functions-check-now.php:3115 includes/functions.php:3560
1689
  msgid "Track impressions and clicks from logged in users"
1690
  msgstr ""
1691
 
1692
+ #: includes/functions-check-now.php:3125 includes/functions.php:3570
1693
  msgid "Click Detection"
1694
  msgstr ""
1695
 
1696
+ #: includes/functions-check-now.php:3131 includes/functions.php:3576
1697
  msgid ""
1698
  "Standard method detects clicks only on banners with links, Advanced method "
1699
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1700
  msgstr ""
1701
 
1702
+ #: includes/functions-check-now.php:3150 includes/functions.php:3691
1703
  msgid "Click fraud protection"
1704
  msgstr ""
1705
 
1706
+ #: includes/functions-check-now.php:3154 includes/functions.php:3695
1707
  msgid "Globally enable click fraud protection for selected blocks."
1708
  msgstr ""
1709
 
1710
+ #: includes/functions-check-now.php:3160 includes/functions.php:3715
1711
  msgid "Protection time"
1712
  msgstr ""
1713
 
1714
+ #: includes/functions-check-now.php:3161 includes/functions.php:3718
1715
  msgid ""
1716
  "Time period in days in which blocks with enabled click fraud protection will "
1717
  "be hidden. Use decimal value (with decimal point) for shorter periods."
1718
  msgstr ""
1719
 
1720
+ #: includes/functions-check-now.php:3180 includes/functions.php:3604
1721
  msgid "Report header image"
1722
  msgstr ""
1723
 
1728
  "reset to default image."
1729
  msgstr ""
1730
 
1731
+ #: includes/functions-check-now.php:3184 includes/functions.php:3608
1732
  #: strings.php:252
1733
  msgid "Select or upload header image"
1734
  msgstr ""
1735
 
1736
+ #: includes/functions-check-now.php:3189 includes/functions.php:3613
1737
  msgid "Report header title"
1738
  msgstr ""
1739
 
1740
+ #: includes/functions-check-now.php:3192 includes/functions.php:3616
1741
  msgid ""
1742
  "Title to be displayed in the header of the statistics report. Text or HTML "
1743
  "code, clear to reset to default text."
1744
  msgstr ""
1745
 
1746
+ #: includes/functions-check-now.php:3197 includes/functions.php:3621
1747
  msgid "Report header description"
1748
  msgstr ""
1749
 
1750
+ #: includes/functions-check-now.php:3200 includes/functions.php:3624
1751
  msgid ""
1752
  "Description to be displayed in the header of the statistics report. Text or "
1753
  "HTML code, clear to reset to default text."
1754
  msgstr ""
1755
 
1756
+ #: includes/functions-check-now.php:3205 includes/functions.php:3629
1757
  msgid "Report footer"
1758
  msgstr ""
1759
 
1760
+ #: includes/functions-check-now.php:3208 includes/functions.php:3632
1761
  msgid ""
1762
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1763
  "to default text."
1764
  msgstr ""
1765
 
1766
+ #: includes/functions-check-now.php:3213 includes/functions.php:3637
1767
  msgid "Public report key"
1768
  msgstr ""
1769
 
1770
+ #: includes/functions-check-now.php:3216 includes/functions.php:3640
1771
  msgid "String to generate unique report IDs. Clear to reset to default value."
1772
  msgstr ""
1773
 
1774
+ #: includes/functions-check-now.php:3248 includes/functions.php:3770
1775
  msgid "Are you sure you want to clear all exceptions for block"
1776
  msgstr ""
1777
 
1778
+ #: includes/functions-check-now.php:3249 includes/functions.php:3771
1779
  msgid "Clear all exceptions for block"
1780
  msgstr ""
1781
 
1782
+ #: includes/functions-check-now.php:3256 includes/functions.php:3778
1783
  msgid "Are you sure you want to clear all exceptions?"
1784
  msgstr ""
1785
 
1786
+ #: includes/functions-check-now.php:3256 includes/functions.php:3778
1787
  msgid "Clear all exceptions for all blocks"
1788
  msgstr ""
1789
 
1790
+ #: includes/functions-check-now.php:3261 includes/functions.php:3783
1791
+ #: settings.php:3974 settings.php:4474
1792
  msgid "Type"
1793
  msgstr ""
1794
 
1795
+ #: includes/functions-check-now.php:3279 includes/functions.php:3801
1796
  msgid "View"
1797
  msgstr ""
1798
 
1799
  #: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
1800
+ #: includes/functions-check-now.php:3291 includes/functions.php:3802
1801
+ #: includes/functions.php:3809 includes/functions.php:3813
1802
+ #: includes/placeholders.php:351 includes/preview.php:2692 settings.php:1423
1803
+ #: settings.php:3731
1804
  msgid "Edit"
1805
  msgstr ""
1806
 
1807
+ #: includes/functions-check-now.php:3310 includes/functions.php:3832
1808
  msgid "Are you sure you want to clear all exceptions for"
1809
  msgstr ""
1810
 
1811
+ #: includes/functions-check-now.php:3311 includes/functions.php:3833
1812
  msgid "Clear all exceptions for"
1813
  msgstr ""
1814
 
1815
+ #: includes/functions-check-now.php:3324 includes/functions.php:3846
1816
  msgid "No exceptions"
1817
  msgstr ""
1818
 
1819
  #. translators: %s: Ad Inserter Pro
1820
+ #: includes/functions-check-now.php:3335 includes/functions.php:3857
1821
  msgid "%s options for network blogs"
1822
  msgstr ""
1823
 
1824
  #. translators: %s: Ad Inserter Pro
1825
+ #: includes/functions-check-now.php:3340 includes/functions.php:3862
1826
  msgid "Enable %s widgets for sub-sites"
1827
  msgstr ""
1828
 
1829
+ #: includes/functions-check-now.php:3340 includes/functions.php:3862
1830
  msgid "Widgets"
1831
  msgstr ""
1832
 
1833
+ #: includes/functions-check-now.php:3345 includes/functions.php:3867
1834
  msgid "Enable PHP code processing for sub-sites"
1835
  msgstr ""
1836
 
1837
+ #: includes/functions-check-now.php:3345 includes/functions.php:3867
1838
  msgid "PHP Processing"
1839
  msgstr ""
1840
 
1841
  #. translators: %s: Ad Inserter Pro
1842
+ #: includes/functions-check-now.php:3350 includes/functions.php:3872
1843
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1844
  msgstr ""
1845
 
1846
+ #: includes/functions-check-now.php:3350 includes/functions.php:3872
1847
  msgid "Post/Page exceptions"
1848
  msgstr ""
1849
 
1850
  #. translators: %s: Ad Inserter Pro
1851
+ #: includes/functions-check-now.php:3355 includes/functions.php:3877
1852
  msgid "Enable %s settings page for sub-sites"
1853
  msgstr ""
1854
 
1855
+ #: includes/functions-check-now.php:3355 includes/functions.php:3877
1856
  msgid "Settings page"
1857
  msgstr ""
1858
 
1859
  #. translators: %s: Ad Inserter Pro
1860
+ #: includes/functions-check-now.php:3360 includes/functions.php:3882
1861
  msgid "Enable %s settings of main site to be used for all blogs"
1862
  msgstr ""
1863
 
1864
+ #: includes/functions-check-now.php:3360 includes/functions.php:3882
1865
  msgid "Main site settings used for all blogs"
1866
  msgstr ""
1867
 
1868
+ #: includes/functions-check-now.php:3371 includes/functions.php:3898
1869
+ #: settings.php:2881
1870
  msgid "Ad Blocking Detection"
1871
  msgstr ""
1872
 
1873
+ #: includes/functions-check-now.php:3377 includes/functions.php:3904
1874
  msgid ""
1875
  "Standard method is reliable but should be used only if Advanced method does "
1876
  "not work. Advanced method recreates files used for detection with random "
1879
  msgstr ""
1880
 
1881
  #: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
1882
+ #: includes/functions-check-now.php:4139 includes/functions.php:4746
1883
+ #: includes/functions.php:4864 includes/functions.php:4889
1884
  msgid "AD BLOCKING"
1885
  msgstr ""
1886
 
1887
  #: includes/functions-check-now.php:4030 includes/functions-check-now.php:4070
1888
  #: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
1889
+ #: includes/functions.php:4747 includes/functions.php:4793
1890
+ #: includes/functions.php:4858 includes/functions.php:4890
1891
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1892
  msgstr ""
1893
 
1894
  #: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
1895
+ #: includes/functions-check-now.php:4146 includes/functions.php:4750
1896
+ #: includes/functions.php:4857 includes/functions.php:4896
1897
  msgid "NO AD BLOCKING"
1898
  msgstr ""
1899
 
1900
  #: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
1901
+ #: includes/functions.php:4792 includes/functions.php:4799
1902
  msgid "AD BLOCKING REPLACEMENT"
1903
  msgstr ""
1904
 
1905
  #: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
1906
+ #: includes/functions.php:5157 includes/functions.php:5368
1907
  msgid "Pageviews"
1908
  msgstr ""
1909
 
1910
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
1911
  msgctxt "Version"
1912
  msgid "Unknown"
1913
  msgstr ""
1914
 
1915
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
1916
  msgctxt "Times"
1917
  msgid "DISPLAYED"
1918
  msgstr ""
1919
 
1920
+ #: includes/functions-check-now.php:4365 includes/functions.php:5303
1921
  msgid "No version"
1922
  msgstr ""
1923
 
1924
+ #: includes/functions-check-now.php:4366 includes/functions.php:5304
1925
  msgctxt "Times"
1926
  msgid "BLOCKED"
1927
  msgstr ""
1928
 
1929
+ #: includes/functions-check-now.php:4428 includes/functions.php:5368
1930
  msgid "Impressions"
1931
  msgstr ""
1932
 
1933
  #: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
1934
+ #: includes/functions-check-now.php:4485 includes/functions.php:5369
1935
+ #: includes/functions.php:5370 includes/functions.php:5563
1936
  msgid "Clicks"
1937
  msgstr ""
1938
 
1939
+ #: includes/functions-check-now.php:4430 includes/functions.php:5370
1940
  msgid "events"
1941
  msgstr ""
1942
 
1943
+ #: includes/functions-check-now.php:4431 includes/functions.php:5371
1944
  msgid "Ad Blocking Share"
1945
  msgstr ""
1946
 
1947
  #. translators: CTR as Click Through Rate
1948
  #: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
1949
+ #: includes/functions.php:5371 includes/functions.php:5569
1950
  msgid "CTR"
1951
  msgstr ""
1952
 
1953
+ #: includes/functions-check-now.php:4573 includes/functions.php:5651
1954
  msgid "pageviews"
1955
  msgid_plural "pageviews"
1956
  msgstr[0] ""
1957
  msgstr[1] ""
1958
 
1959
+ #: includes/functions-check-now.php:4573 includes/functions.php:5651
1960
  msgid "impressions"
1961
  msgid_plural "impressions"
1962
  msgstr[0] ""
1963
  msgstr[1] ""
1964
 
1965
+ #: includes/functions-check-now.php:4577 includes/functions.php:5655
1966
  msgid "event"
1967
  msgid_plural "events"
1968
  msgstr[0] ""
1969
  msgstr[1] ""
1970
 
1971
+ #: includes/functions-check-now.php:4672 includes/functions.php:5750
1972
  msgctxt "Pageviews / Impressions"
1973
  msgid "Average"
1974
  msgstr ""
1975
 
1976
+ #: includes/functions-check-now.php:4693 includes/functions.php:5771
1977
  msgctxt "Ad Blocking / Clicks"
1978
  msgid "Average"
1979
  msgstr ""
1980
 
1981
+ #: includes/functions-check-now.php:4717 includes/functions.php:5795
1982
  msgctxt "Ad Blocking Share / CTR"
1983
  msgid "Average"
1984
  msgstr ""
1985
 
1986
  #. Translators: %s: Ad Inserter Pro
1987
  #: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
1988
+ #: includes/functions-check-now.php:5334 includes/functions.php:5987
1989
+ #: includes/functions.php:6079 includes/functions.php:6477 strings.php:203
1990
  msgid "%s Report"
1991
  msgstr ""
1992
 
1993
+ #: includes/functions-check-now.php:5240 includes/functions.php:6383
1994
  msgid "for last month"
1995
  msgstr ""
1996
 
1997
+ #: includes/functions-check-now.php:5245 includes/functions.php:6388
1998
  msgid "for this month"
1999
  msgstr ""
2000
 
2001
+ #: includes/functions-check-now.php:5250 includes/functions.php:6393
2002
  msgid "for this year"
2003
  msgstr ""
2004
 
2005
+ #: includes/functions-check-now.php:5255 includes/functions.php:6398
2006
  msgid "for the last 15 days"
2007
  msgstr ""
2008
 
2009
+ #: includes/functions-check-now.php:5260 includes/functions.php:6403
2010
  msgid "for the last 30 days"
2011
  msgstr ""
2012
 
2013
+ #: includes/functions-check-now.php:5265 includes/functions.php:6408
2014
  msgid "for the last 90 days"
2015
  msgstr ""
2016
 
2017
+ #: includes/functions-check-now.php:5270 includes/functions.php:6413
2018
  msgid "for the last 180 days"
2019
  msgstr ""
2020
 
2021
+ #: includes/functions-check-now.php:5275 includes/functions.php:6418
2022
  msgid "for the last 365 days"
2023
  msgstr ""
2024
 
2025
+ #: includes/functions.php:515 includes/functions.php:3491
2026
  msgid "Generate CSV report"
2027
  msgstr ""
2028
 
2064
  msgid "Select image"
2065
  msgstr ""
2066
 
2067
+ #: includes/functions.php:1042 includes/functions.php:1078 settings.php:1810
2068
+ #: settings.php:1833 settings.php:1856 settings.php:1879 settings.php:1902
2069
+ #: settings.php:1925 settings.php:1947 settings.php:1969
2070
  msgid "Click to select black or white list"
2071
  msgstr ""
2072
 
2073
  #. translators: %s: Ad Inserter Pro
2074
+ #: includes/functions.php:1620
2075
  msgid "Invalid %s version."
2076
  msgstr ""
2077
 
2078
+ #: includes/functions.php:1621
2079
  msgid "Check license"
2080
  msgstr ""
2081
 
2082
+ #: includes/functions.php:1633
2083
  msgid "License"
2084
  msgstr ""
2085
 
2086
  #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
2087
+ #: includes/functions.php:1957
2088
  msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
2089
  msgstr ""
2090
 
2091
  #. Translators: %s: HTML tags
2092
+ #: includes/functions.php:2005
2093
  msgid ""
2094
  "Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
2095
  "account %s and create license key."
2096
  msgstr ""
2097
 
2098
+ #: includes/functions.php:2705
2099
  msgid "Start date"
2100
  msgstr ""
2101
 
2102
+ #: includes/functions.php:2705
2103
  msgid "Enter date in format yyyy-mm-dd"
2104
  msgstr ""
2105
 
2106
+ #: includes/functions.php:2706
2107
  msgid "Start time"
2108
  msgstr ""
2109
 
2110
+ #: includes/functions.php:2706
2111
  msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
2112
  msgstr ""
2113
 
2114
+ #: includes/functions.php:2708
2115
  msgid "End date"
2116
  msgstr ""
2117
 
2118
+ #: includes/functions.php:2709
2119
  msgid "End time"
2120
  msgstr ""
2121
 
2122
+ #: includes/functions.php:2712
2123
  msgid "Select wanted days in week"
2124
  msgstr ""
2125
 
2126
+ #: includes/functions.php:3040
2127
  msgid "Ad blocking detection is disabled"
2128
  msgstr ""
2129
 
2130
+ #: includes/functions.php:3184
2131
  msgid "Protected"
2132
  msgstr ""
2133
 
2134
+ #: includes/functions.php:3187
2135
  msgid "Manual loading"
2136
  msgstr ""
2137
 
2138
+ #: includes/functions.php:3256
2139
+ msgid "IP address blocked"
2140
+ msgid_plural "IP addresses blocked"
2141
+ msgstr[0] ""
2142
+ msgstr[1] ""
2143
+
2144
+ #: includes/functions.php:3259 includes/functions.php:3308
2145
+ msgid "No IP address blocked"
2146
+ msgstr ""
2147
+
2148
+ #: includes/functions.php:3320
2149
+ msgid "Blocked IP address"
2150
+ msgstr ""
2151
+
2152
+ #: includes/functions.php:3320
2153
+ msgid "Country"
2154
+ msgstr ""
2155
+
2156
+ #: includes/functions.php:3320
2157
+ msgid "Time to expiration"
2158
+ msgstr ""
2159
+
2160
+ #: includes/functions.php:3320 strings.php:225
2161
+ msgid "Delete"
2162
+ msgstr ""
2163
+
2164
+ #: includes/functions.php:3332
2165
+ msgid "Delete IP address"
2166
+ msgstr ""
2167
+
2168
  #. Translators: %s HTML tags
2169
+ #: includes/functions.php:3367
2170
  msgid "Create and manage %s MaxMind license key %s"
2171
  msgstr ""
2172
 
2173
+ #: includes/functions.php:3403
2174
  msgid "MaxMind license key"
2175
  msgstr ""
2176
 
2177
+ #: includes/functions.php:3406
2178
  msgid "Enter license key obtained from MaxMind"
2179
  msgstr ""
2180
 
2181
+ #: includes/functions.php:3607
2182
  msgid ""
2183
  "Image or logo to be displayed in the header of the statistics report. "
2184
  "Absolute path starting with '/' or relative path to the image file. Clear to "
2185
  "reset to default image."
2186
  msgstr ""
2187
 
2188
+ #: includes/functions.php:3655
2189
  msgid "Event category"
2190
  msgstr ""
2191
 
2192
+ #: includes/functions.php:3658
2193
  msgid ""
2194
  "Category name used for external tracking events. You can use tags to get the "
2195
  "event, the number or the name of the block that caused the event."
2196
  msgstr ""
2197
 
2198
+ #: includes/functions.php:3663
2199
  msgid "Event action"
2200
  msgstr ""
2201
 
2202
+ #: includes/functions.php:3666
2203
  msgid ""
2204
  "Action name used for external tracking events. You can use tags to get the "
2205
  "event, the number or the name of the block that caused the event."
2206
  msgstr ""
2207
 
2208
+ #: includes/functions.php:3671
2209
  msgid "Event label"
2210
  msgstr ""
2211
 
2212
+ #: includes/functions.php:3674
2213
  msgid ""
2214
  "Label name used for external tracking events. You can use tags to get the "
2215
  "event, the number or the name of the block that caused the event."
2216
  msgstr ""
2217
 
2218
+ #: includes/functions.php:3701
2219
+ msgid "Global visitor limits"
2220
+ msgstr ""
2221
+
2222
+ #: includes/functions.php:3724
2223
+ msgid "Block IP address"
2224
+ msgstr ""
2225
+
2226
+ #: includes/functions.php:3729
2227
+ msgid "Block visitor's IP address when protection is activated"
2228
+ msgstr ""
2229
+
2230
+ #: includes/functions.php:3731
2231
+ msgid "Click to show blocked IP addresses"
2232
+ msgstr ""
2233
+
2234
  #. translators: %s: Ad Inserter Pro
2235
+ #: includes/functions.php:3887
2236
  msgid "Show link to %s settings page for each site on the Sites page"
2237
  msgstr ""
2238
 
2239
  #. translators: %s: Ad Inserter Pro
2240
+ #: includes/functions.php:3887
2241
  msgid "Show link to %s on the Sites page"
2242
  msgstr ""
2243
 
2244
+ #: includes/functions.php:5451
2245
  msgid "Date"
2246
  msgstr ""
2247
 
2248
+ #: includes/functions.php:5925
2249
  msgid "File %s missing."
2250
  msgstr ""
2251
 
2273
  msgid "Placeholder"
2274
  msgstr ""
2275
 
2276
+ #: includes/placeholders.php:361 settings.php:999 settings.php:4475
2277
  msgid "Size"
2278
  msgstr ""
2279
 
2381
  msgid "Ad Blocking Detected Message Preview"
2382
  msgstr ""
2383
 
2384
+ #: includes/preview-adb.php:345 settings.php:3007
2385
  msgid "Message CSS"
2386
  msgstr ""
2387
 
2388
+ #: includes/preview-adb.php:350 settings.php:3015
2389
  msgid "Overlay CSS"
2390
  msgstr ""
2391
 
2421
  msgid "background"
2422
  msgstr ""
2423
 
2424
+ #: includes/preview.php:2434 includes/preview.php:2647 settings.php:1384
2425
  msgid "Alignment"
2426
  msgstr ""
2427
 
2538
  "Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
2539
  msgstr ""
2540
 
2541
+ #: settings.php:204 settings.php:1273
2542
  msgid ""
2543
  "Settings for individual exceptions have been updated. Please check all "
2544
  "blocks that have exceptions and and then save settings."
2548
  msgid "Online documentation"
2549
  msgstr ""
2550
 
2551
+ #: settings.php:250 settings.php:817 settings.php:2382
2552
  msgid "Show AdSense ad units"
2553
  msgstr ""
2554
 
2556
  msgid "Edit ads.txt file"
2557
  msgstr ""
2558
 
2559
+ #: settings.php:262 settings.php:1216
2560
  msgid "Check theme for available positions for automatic insertion"
2561
  msgstr ""
2562
 
2681
  msgid "General Settings"
2682
  msgstr ""
2683
 
2684
+ #: settings.php:765 settings.php:2734 settings.php:2801 settings.php:2987
2685
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2686
  msgstr ""
2687
 
2713
  msgid "Clear block"
2714
  msgstr ""
2715
 
2716
+ #: settings.php:831 settings.php:4346
2717
  msgid "Copy block"
2718
  msgstr ""
2719
 
2762
  msgstr ""
2763
 
2764
  #: settings.php:918
2765
+ msgid "Alt text"
2766
+ msgstr ""
2767
+
2768
+ #: settings.php:932
2769
  msgid "Link"
2770
  msgstr ""
2771
 
2772
+ #: settings.php:943
2773
  msgid "Open link in a new tab"
2774
  msgstr ""
2775
 
2776
+ #: settings.php:946
2777
  msgid "Select Image"
2778
  msgstr ""
2779
 
2780
+ #: settings.php:947
2781
  msgid "Select Placeholder"
2782
  msgstr ""
2783
 
2784
+ #: settings.php:959
2785
  msgid "Comment"
2786
  msgstr ""
2787
 
2788
+ #: settings.php:968
2789
  msgctxt "AdSense"
2790
  msgid "Publisher ID"
2791
  msgstr ""
2792
 
2793
+ #: settings.php:977
2794
  msgctxt "AdSense"
2795
  msgid "Ad Slot ID"
2796
  msgstr ""
2797
 
2798
+ #: settings.php:986
2799
  msgid "Ad Type"
2800
  msgstr ""
2801
 
2802
+ #: settings.php:1011 settings.php:1146
2803
  msgid "AMP Ad"
2804
  msgstr ""
2805
 
2806
+ #: settings.php:1029
2807
  msgid "Show ad units from your AdSense account"
2808
  msgstr ""
2809
 
2810
+ #: settings.php:1029
2811
  msgid "AdSense ad units"
2812
  msgstr ""
2813
 
2814
+ #: settings.php:1046
2815
  msgctxt "AdSense"
2816
  msgid "Layout"
2817
  msgstr ""
2818
 
2819
+ #: settings.php:1055
2820
  msgctxt "AdSense"
2821
  msgid "Layout Key"
2822
  msgstr ""
2823
 
2824
+ #: settings.php:1065
2825
  msgid "Full width"
2826
  msgstr ""
2827
 
2828
+ #: settings.php:1067
2829
  msgctxt "Full width"
2830
  msgid "Enabled"
2831
  msgstr ""
2832
 
2833
+ #: settings.php:1068
2834
  msgctxt "Full width"
2835
  msgid "Disabled"
2836
  msgstr ""
2837
 
2838
+ #: settings.php:1182
2839
  msgid ""
2840
  "White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
2841
  "Cookie or Referer (domain)"
2842
  msgstr ""
2843
 
2844
+ #: settings.php:1182
2845
  msgid "Lists"
2846
  msgstr ""
2847
 
2848
+ #: settings.php:1183
2849
  msgid "Widget, Shortcode and PHP function call"
2850
  msgstr ""
2851
 
2852
+ #: settings.php:1183
2853
  msgid "Manual"
2854
  msgstr ""
2855
 
2856
+ #: settings.php:1184
2857
  msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
2858
  msgstr ""
2859
 
2860
+ #: settings.php:1184
2861
  msgid "Devices"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:1185
2865
  msgid ""
2866
  "Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
2867
  "feeds), Filter, Scheduling, General tag"
2868
  msgstr ""
2869
 
2870
+ #: settings.php:1185
2871
  msgid "Misc"
2872
  msgstr ""
2873
 
2874
+ #: settings.php:1186
2875
  msgid "Preview code and alignment"
2876
  msgstr ""
2877
 
2878
+ #: settings.php:1189 settings.php:2366
2879
  msgid ""
2880
  "Rotation editor active - rotation code not generated! Make sure no rotation "
2881
  "editor is active before saving settings."
2882
  msgstr ""
2883
 
2884
+ #: settings.php:1202 settings.php:1203
2885
  msgid "Enable insertion on posts"
2886
  msgstr ""
2887
 
2888
+ #: settings.php:1203 settings.php:3543
2889
  msgid "Posts"
2890
  msgstr ""
2891
 
2892
+ #: settings.php:1207 settings.php:1208
2893
  msgid ""
2894
  "Enable insertion on homepage: latest posts (including on sub-pages), static "
2895
  "page or theme homepage (available positions may depend on hooks used by the "
2896
  "theme)"
2897
  msgstr ""
2898
 
2899
+ #: settings.php:1208 settings.php:3545
2900
  msgid "Homepage"
2901
  msgstr ""
2902
 
2903
+ #: settings.php:1212 settings.php:1213
2904
  msgid "Enable insertion on category blog pages (including sub-pages)"
2905
  msgstr ""
2906
 
2907
+ #: settings.php:1213 settings.php:3546
2908
  msgid "Category pages"
2909
  msgstr ""
2910
 
2911
+ #: settings.php:1223 settings.php:1224
2912
  msgid "Enable insertion on static pages"
2913
  msgstr ""
2914
 
2915
+ #: settings.php:1224 settings.php:3544
2916
  msgid "Static pages"
2917
  msgstr ""
2918
 
2919
+ #: settings.php:1228 settings.php:1229
2920
  msgid "Enable insertion on search blog pages"
2921
  msgstr ""
2922
 
2923
+ #: settings.php:1229 settings.php:3548
2924
  msgid "Search pages"
2925
  msgstr ""
2926
 
2927
+ #: settings.php:1233 settings.php:1234
2928
  msgid "Enable insertion on tag or archive blog pages"
2929
  msgstr ""
2930
 
2931
+ #: settings.php:1237
2932
  msgid "Toggle settings for default insertion and list of individual exceptions"
2933
  msgstr ""
2934
 
2935
+ #: settings.php:1249
2936
  msgid ""
2937
  "Enable individual post/page exceptions for insertion of this block. They can "
2938
  "be configured on the individual post/page editor page (in the settings below "
2939
  "the editor)."
2940
  msgstr ""
2941
 
2942
+ #: settings.php:1250
2943
  msgid ""
2944
  "Enable individual post/page exceptions for insertion of this block. When "
2945
  "enabled they can be configured on the individual post/page editor page (in "
2946
  "the settings below the editor)."
2947
  msgstr ""
2948
 
2949
+ #: settings.php:1250
2950
  msgid "Use exceptions for individual posts or pages to change insertion"
2951
  msgstr ""
2952
 
2953
  #. Translators: Enabled means...
2954
+ #: settings.php:1258
2955
  msgid ""
2956
  "means the insertion for this block is enabled by default and disabled for "
2957
  "exceptions."
2958
  msgstr ""
2959
 
2960
  #. Translators: Disabled means...
2961
+ #: settings.php:1259
2962
  msgid ""
2963
  "means the insertion for this block is disabled by default and enabled for "
2964
  "exceptions."
2965
  msgstr ""
2966
 
2967
+ #: settings.php:1260
2968
  msgid ""
2969
  "When individual post/page exceptions are enabled they can be configured on "
2970
  "the individual post/page editor page (in the settings below the editor)."
2971
  msgstr ""
2972
 
2973
+ #: settings.php:1268
2974
  msgid ""
2975
  "No exception for post or static page defined. Block will not be inserted."
2976
  msgstr ""
2977
 
2978
+ #: settings.php:1286
2979
  msgctxt "post"
2980
  msgid "Type"
2981
  msgstr ""
2982
 
2983
  #. translators: %d: block number
2984
+ #: settings.php:1288
2985
  msgid "Are you sure you want to clear listed exceptions for block %d?"
2986
  msgstr ""
2987
 
2988
+ #: settings.php:1289
2989
  msgid "Clear listed exceptions for block"
2990
  msgstr ""
2991
 
2992
+ #: settings.php:1315 settings.php:1463 settings.php:2121
2993
  msgid "Insertion"
2994
  msgstr ""
2995
 
2996
+ #: settings.php:1353
2997
  msgid ""
2998
  "Paragraph number or comma separated paragraph numbers: 1 to N means "
2999
  "paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
3003
  "negative number means counting from the opposite direction"
3004
  msgstr ""
3005
 
3006
+ #: settings.php:1354
3007
  msgid ""
3008
  "Image number or comma separated image numbers: 1 to N means image number, %N "
3009
  "means every N images, empty means all images, 0 means random image, value "
3013
  "direction"
3014
  msgstr ""
3015
 
3016
+ #: settings.php:1367
3017
  msgid ""
3018
  "Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
3019
  "numbers, %N means every N excerpts, empty means all excerpts"
3020
  msgstr ""
3021
 
3022
+ #: settings.php:1368
3023
  msgid ""
3024
  "Insertion Filter Mirror Setting | Post number or comma separated post "
3025
  "numbers, %N means every N posts, empty means all posts"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:1369
3029
  msgid ""
3030
  "Insertion Filter Mirror Setting | Comment number or comma separated comment "
3031
  "numbers, %N means every N comments, empty means all comments"
3032
  msgstr ""
3033
 
3034
+ #: settings.php:1376
3035
  msgid "Toggle paragraph counting settings"
3036
  msgstr ""
3037
 
3038
+ #: settings.php:1377
3039
  msgid "Toggle paragraph clearance settings"
3040
  msgstr ""
3041
 
3042
+ #: settings.php:1380
3043
  msgid "Toggle insertion filter settings"
3044
  msgstr ""
3045
 
3046
+ #: settings.php:1398
3047
  msgid "Toggle insertion and alignment icons"
3048
  msgstr ""
3049
 
3050
+ #: settings.php:1412
3051
  msgid "Custom CSS code for the wrapping div"
3052
  msgstr ""
3053
 
3054
+ #: settings.php:1415 settings.php:1416 settings.php:1417 settings.php:1418
3055
+ #: settings.php:1419 settings.php:1420
3056
  msgid "CSS code for the wrapping div, click to edit"
3057
  msgstr ""
3058
 
3059
+ #: settings.php:1433
3060
  msgid "HTML element"
3061
  msgstr ""
3062
 
3063
+ #: settings.php:1446
3064
  msgid "HTML element selector or comma separated list of selectors"
3065
  msgstr ""
3066
 
3067
+ #: settings.php:1452 settings.php:2892
3068
  msgid "Action"
3069
  msgstr ""
3070
 
3071
+ #: settings.php:1464
3072
  msgid ""
3073
  "Client-side insertion uses JavaScript to insert block when the page loads. "
3074
  "Server-side insertion inserts block when the page is generated but needs "
3075
  "Output buffering enabled."
3076
  msgstr ""
3077
 
3078
+ #: settings.php:1474
3079
  msgid "Wait for"
3080
  msgstr ""
3081
 
3082
+ #: settings.php:1486
3083
  msgid "Wait for HTML element to be loaded"
3084
  msgstr ""
3085
 
3086
+ #: settings.php:1493
3087
  msgid "Time in ms to delay insertion"
3088
  msgstr ""
3089
 
3090
+ #: settings.php:1498
3091
  msgid "Code position"
3092
  msgstr ""
3093
 
3094
+ #: settings.php:1499
3095
  msgid ""
3096
  "Page position where the code for client-side insertion will be inserted."
3097
  msgstr ""
3098
 
3099
+ #: settings.php:1517
3100
  msgid "Count"
3101
  msgstr ""
3102
 
3103
+ #: settings.php:1523
3104
  msgid "paragraphs with tags"
3105
  msgstr ""
3106
 
3107
+ #: settings.php:1529
3108
  msgid "Comma separated HTML tag names, usually only 'p' tags are used"
3109
  msgstr ""
3110
 
3111
+ #: settings.php:1538
3112
  msgid "that have between"
3113
  msgstr ""
3114
 
3115
+ #: settings.php:1544
3116
  msgid "Minimum number of paragraph words, leave empty for no limit"
3117
  msgstr ""
3118
 
3119
+ #: settings.php:1553
3120
  msgid "Maximum number of paragraph words, leave empty for no limit"
3121
  msgstr ""
3122
 
3123
+ #: settings.php:1556
3124
  msgid "words"
3125
  msgstr ""
3126
 
3127
+ #: settings.php:1571 settings.php:1618 settings.php:1732 settings.php:1758
3128
  msgid "Comma separated texts"
3129
  msgstr ""
3130
 
3131
  #. translators: inside [HTML tags] elements that contain
3132
+ #: settings.php:1590
3133
  msgid "inside"
3134
  msgstr ""
3135
 
3136
+ #: settings.php:1596
3137
  msgid "Comma separated HTML tag names of container elements"
3138
  msgstr ""
3139
 
3140
  #. translators: inside [HTML tags] elements that contain
3141
+ #: settings.php:1605
3142
  msgid "elements that"
3143
  msgstr ""
3144
 
3145
+ #: settings.php:1628
3146
  msgid ""
3147
  "Count also paragraphs inside these elements - defined on general plugin "
3148
  "settings page - tab [*] / tab General"
3149
  msgstr ""
3150
 
3151
+ #: settings.php:1635 settings.php:1636
3152
  msgid ""
3153
  "If checked it will search for the text only in tag attributes like [[id]], "
3154
  "[[class]], [[style]], etc. Otherwise the whole tag including its content "
3155
  "will be searched."
3156
  msgstr ""
3157
 
3158
+ #: settings.php:1636
3159
  msgid "Check only tag attributes"
3160
  msgstr ""
3161
 
3162
  #. Translators: %s: HTML tags
3163
+ #: settings.php:1641
3164
  msgid "Count inside %s elements"
3165
  msgstr ""
3166
 
3167
  #. Translators: Do not insert for first X and last Y paragraphs
3168
+ #: settings.php:1649
3169
  msgid "Do not insert for first"
3170
  msgid_plural "Do not insert for first"
3171
  msgstr[0] ""
3172
  msgstr[1] ""
3173
 
3174
+ #: settings.php:1655
3175
  msgid ""
3176
  "Excludes first paragraphs from insertion, leave empty for no exclusion of "
3177
  "first paragraphs"
3178
  msgstr ""
3179
 
3180
  #. Translators: Do not insert for first X and last Y paragraphs
3181
+ #: settings.php:1658
3182
  msgid "and last"
3183
  msgid_plural "and last"
3184
  msgstr[0] ""
3185
  msgstr[1] ""
3186
 
3187
+ #: settings.php:1664
3188
  msgid ""
3189
  "Excludes last paragraphs from insertion, leave empty for no exclusion of "
3190
  "last paragraphs"
3192
 
3193
  #. Translators: Do not insert for first X and last Y paragraphs
3194
  #. Translators: Post/Static page must have between X and Y paragraphs
3195
+ #: settings.php:1667 settings.php:1693
3196
  msgid "paragraph"
3197
  msgid_plural "paragraphs"
3198
  msgstr[0] ""
3199
  msgstr[1] ""
3200
 
3201
+ #: settings.php:1675 settings.php:2253
3202
  msgid "Post/Static page must have between"
3203
  msgstr ""
3204
 
3205
+ #: settings.php:1681
3206
  msgid "Minimum number of paragraphs, leave empty for no limit"
3207
  msgstr ""
3208
 
3209
+ #: settings.php:1690
3210
  msgid "Maximum number of paragraphs, leave empty for no limit"
3211
  msgstr ""
3212
 
3213
+ #: settings.php:1701
3214
  msgid "Minimum number of words in paragraphs above"
3215
  msgstr ""
3216
 
3217
+ #: settings.php:1707
3218
  msgid ""
3219
  "Used only with automatic insertion After paragraph and empty paragraph "
3220
  "numbers"
3221
  msgstr ""
3222
 
3223
+ #: settings.php:1717 settings.php:1743
3224
  msgid "In"
3225
  msgstr ""
3226
 
3227
+ #: settings.php:1723
3228
  msgid "Number of paragraphs above to check, leave empty to disable checking"
3229
  msgstr ""
3230
 
3231
+ #: settings.php:1726
3232
  msgid "paragraphs above avoid"
3233
  msgstr ""
3234
 
3235
+ #: settings.php:1749
3236
  msgid "Number of paragraphs below to check, leave empty to disable checking"
3237
  msgstr ""
3238
 
3239
+ #: settings.php:1752
3240
  msgid "paragraphs below avoid"
3241
  msgstr ""
3242
 
3243
+ #: settings.php:1768
3244
  msgid "If text is found"
3245
  msgstr ""
3246
 
3247
+ #: settings.php:1775
3248
  msgid "check up to"
3249
  msgstr ""
3250
 
3251
+ #: settings.php:1783
3252
  msgctxt "check up to"
3253
  msgid "paragraphs"
3254
  msgstr ""
3255
 
3256
+ #: settings.php:1799
3257
  msgid "Categories"
3258
  msgstr ""
3259
 
3260
+ #: settings.php:1802
3261
  msgid "Toggle category editor"
3262
  msgstr ""
3263
 
3264
+ #: settings.php:1805
3265
  msgid "Comma separated category slugs"
3266
  msgstr ""
3267
 
3268
+ #: settings.php:1822
3269
  msgid "Tags"
3270
  msgstr ""
3271
 
3272
+ #: settings.php:1825
3273
  msgid "Toggle tag editor"
3274
  msgstr ""
3275
 
3276
+ #: settings.php:1828
3277
  msgid "Comma separated tag slugs"
3278
  msgstr ""
3279
 
3280
+ #: settings.php:1845
3281
  msgid "Taxonomies"
3282
  msgstr ""
3283
 
3284
+ #: settings.php:1848
3285
  msgid "Toggle taxonomy editor"
3286
  msgstr ""
3287
 
3288
+ #: settings.php:1851
3289
  msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
3290
  msgstr ""
3291
 
3292
+ #: settings.php:1868
3293
  msgid "Post IDs"
3294
  msgstr ""
3295
 
3296
+ #: settings.php:1871
3297
  msgid "Toggle post/page ID editor"
3298
  msgstr ""
3299
 
3300
+ #: settings.php:1874
3301
  msgid "Comma separated post/page IDs"
3302
  msgstr ""
3303
 
3304
+ #: settings.php:1891
3305
  msgid "Urls"
3306
  msgstr ""
3307
 
3308
+ #: settings.php:1894
3309
  msgid "Toggle url editor"
3310
  msgstr ""
3311
 
3312
+ #: settings.php:1897
3313
  msgid ""
3314
  "Comma separated urls (page addresses) starting with / after domain name (e."
3315
  "g. /permalink-url, use only when you need to taget a specific url not "
3317
  "start*. *url-pattern*, *url-end)"
3318
  msgstr ""
3319
 
3320
+ #: settings.php:1913
3321
  msgid "Url parameters"
3322
  msgstr ""
3323
 
3324
+ #: settings.php:1917
3325
  msgid "Toggle url parameter and cookie editor"
3326
  msgstr ""
3327
 
3328
+ #: settings.php:1920
3329
  msgid ""
3330
  "Comma separated url query parameters or cookies with optional values (use "
3331
  "'parameter', 'parameter=value', 'cookie' or 'cookie=value')"
3332
  msgstr ""
3333
 
3334
+ #: settings.php:1936
3335
  msgid "Referrers"
3336
  msgstr ""
3337
 
3338
+ #: settings.php:1939
3339
  msgid "Toggle referer editor"
3340
  msgstr ""
3341
 
3342
+ #: settings.php:1942
3343
  msgid ""
3344
  "Comma separated domains, use # for no referrer, you can also use partial "
3345
  "domains with * (domain-start*. *domain-pattern*, *domain-end)"
3346
  msgstr ""
3347
 
3348
+ #: settings.php:1958
3349
  msgid "Clients"
3350
  msgstr ""
3351
 
3352
+ #: settings.php:1961
3353
  msgid "Toggle client editor"
3354
  msgstr ""
3355
 
3356
+ #: settings.php:1964
3357
  msgid ""
3358
  "Comma separated names (operating systems, browsers, devices). You can also "
3359
  "list partial user agent strings with * (user-agent-start*. *user-agent-"
3360
  "pattern*, *user-agent-end)"
3361
  msgstr ""
3362
 
3363
+ #: settings.php:1990
3364
  msgid "Enable widget for this block"
3365
  msgstr ""
3366
 
3367
+ #: settings.php:1995
3368
  msgid "Sidebars (or widget positions) where this widget is used"
3369
  msgstr ""
3370
 
3371
+ #: settings.php:2002
3372
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:2003 settings.php:4403
3376
  msgid "Shortcode"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:2018
3380
  msgid ""
3381
  "Enable PHP function call to insert this block at any position in theme file. "
3382
  "If function is disabled for block it will return empty string."
3383
  msgstr ""
3384
 
3385
+ #: settings.php:2019
3386
  msgid "PHP function"
3387
  msgstr ""
3388
 
3389
+ #: settings.php:2034
3390
  msgid "Client-side device detection"
3391
  msgstr ""
3392
 
3393
+ #: settings.php:2035
3394
  msgid "Server-side device detection"
3395
  msgstr ""
3396
 
3397
+ #: settings.php:2042
3398
  msgid "Use client-side detection to"
3399
  msgstr ""
3400
 
3401
+ #: settings.php:2044
3402
  msgid "Either show/hide or insert when the page is loaded on wanted viewports"
3403
  msgstr ""
3404
 
3405
  #. Translators: only on (the following devices): viewport names (devices)
3406
  #. listed
3407
+ #: settings.php:2049
3408
  msgid "only on"
3409
  msgstr ""
3410
 
3411
+ #: settings.php:2077
3412
  msgid "Device min width %s px"
3413
  msgstr ""
3414
 
3415
+ #: settings.php:2103
3416
  msgid "Use server-side detection to insert block only for"
3417
  msgstr ""
3418
 
3419
+ #: settings.php:2122
3420
  msgid "Filter"
3421
  msgstr ""
3422
 
3423
+ #: settings.php:2123
3424
  msgid "Word Count"
3425
  msgstr ""
3426
 
3427
+ #: settings.php:2124 settings.php:4393
3428
  msgid "Scheduling"
3429
  msgstr ""
3430
 
3431
+ #: settings.php:2125
3432
  msgid "Display"
3433
  msgstr ""
3434
 
3435
+ #: settings.php:2127 settings.php:2408
3436
  msgid "General"
3437
  msgstr ""
3438
 
3439
+ #: settings.php:2139
3440
  msgid "Old settings for AMP pages detected"
3441
  msgstr ""
3442
 
3443
+ #: settings.php:2139
3444
  msgid ""
3445
  "To insert different codes on normal and AMP pages separate them with "
3446
  "[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
3447
  "when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
3448
  msgstr ""
3449
 
3450
+ #: settings.php:2139
3451
  msgid "AMP pages"
3452
  msgstr ""
3453
 
3454
+ #: settings.php:2144
3455
  msgid "Enable insertion for Ajax requests"
3456
  msgstr ""
3457
 
3458
+ #: settings.php:2144
3459
  msgid "Ajax requests"
3460
  msgstr ""
3461
 
3462
+ #: settings.php:2149
3463
  msgid "Enable insertion in RSS feeds"
3464
  msgstr ""
3465
 
3466
+ #: settings.php:2149
3467
  msgid "RSS Feed"
3468
  msgstr ""
3469
 
3470
+ #: settings.php:2154
3471
  msgid "Enable insertion on page for Error 404: Page not found"
3472
  msgstr ""
3473
 
3474
+ #: settings.php:2154
3475
  msgid "Error 404 page"
3476
  msgstr ""
3477
 
3478
+ #: settings.php:2166
3479
  msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
3480
  msgstr ""
3481
 
3482
+ #: settings.php:2167
3483
  msgid "insertions"
3484
  msgstr ""
3485
 
3486
+ #: settings.php:2169
3487
  msgid ""
3488
  "Count this block for Max blocks per page limit (defined on the tab [*] / tab "
3489
  "General)"
3490
  msgstr ""
3491
 
3492
+ #: settings.php:2172 settings.php:2596
3493
  msgid "Max blocks per page"
3494
  msgstr ""
3495
 
3496
+ #: settings.php:2184
3497
  msgid "Insert for"
3498
  msgstr ""
3499
 
3500
+ #: settings.php:2192
3501
  msgid ""
3502
  "Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
3503
  "is currently active). Might speed up insertion on content pages when "
3504
  "[[the_content]] filter hook is called multiple times."
3505
  msgstr ""
3506
 
3507
+ #: settings.php:2196
3508
  msgid "Insert only in the loop"
3509
  msgstr ""
3510
 
3511
+ #: settings.php:2199
3512
  msgid ""
3513
  "When enabled, Javascript code (if needed for the blok) will be inserted next "
3514
  "to the block HTML code. Otherwise, the Javascript code will be inserted in "
3516
  "footer."
3517
  msgstr ""
3518
 
3519
+ #: settings.php:2203
3520
  msgid "Embed JS code"
3521
  msgstr ""
3522
 
3523
+ #: settings.php:2206
3524
  msgid ""
3525
  "Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
3526
  msgstr ""
3527
 
3528
+ #: settings.php:2210
3529
  msgid "Disable caching"
3530
  msgstr ""
3531
 
3532
+ #: settings.php:2222
3533
  msgid "Filter insertions"
3534
  msgstr ""
3535
 
3536
+ #: settings.php:2225
3537
  msgid ""
3538
  "Filter multiple insertions by specifying wanted insertions for this block - "
3539
  "single number, comma separated numbers or %N for every N insertions - empty "
3541
  "using only one insertion type."
3542
  msgstr ""
3543
 
3544
+ #: settings.php:2228
3545
  msgid "using"
3546
  msgstr ""
3547
 
3548
+ #: settings.php:2247
3549
  msgid "Checked means specified calls are unwanted"
3550
  msgstr ""
3551
 
3552
+ #: settings.php:2247
3553
  msgid "Invert filter"
3554
  msgstr ""
3555
 
3556
+ #: settings.php:2254
3557
  msgid "Minimum number of post/static page words, leave empty for no limit"
3558
  msgstr ""
3559
 
3560
+ #: settings.php:2256
3561
  msgid "Maximum number of post/static page words, leave empty for no limit"
3562
  msgstr ""
3563
 
3564
+ #: settings.php:2269
3565
  msgid "for"
3566
  msgstr ""
3567
 
3568
+ #: settings.php:2269
3569
  msgid "days after publishing"
3570
  msgstr ""
3571
 
3572
+ #: settings.php:2271
3573
  msgid "Not available"
3574
  msgstr ""
3575
 
3576
  #. Translators: do not translate [[width]] - it is a CSS property
3577
+ #: settings.php:2283
3578
  msgid ""
3579
  "Block width: empty means width not defined, number means width in pixels, "
3580
  "any other value means CSS [[width]] property"
3581
  msgstr ""
3582
 
3583
  #. Translators: do not translate [[height]] - it is a CSS property
3584
+ #: settings.php:2287
3585
  msgid ""
3586
  "Block height: empty means height not defined, number means height in pixels, "
3587
  "any other value means CSS [[height]] property"
3588
  msgstr ""
3589
 
3590
+ #: settings.php:2293 settings.php:2588
3591
  msgid "Ad label"
3592
  msgstr ""
3593
 
3594
+ #: settings.php:2314
3595
  msgid "General tag"
3596
  msgstr ""
3597
 
3598
+ #: settings.php:2318
3599
  msgid "Used for [adinserter data=''] shortcodes when no data is found"
3600
  msgstr ""
3601
 
3602
  #. translators: %s: HTML tags
3603
+ #: settings.php:2327
3604
  msgid ""
3605
  "%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
3606
  "client-side device detection!"
3607
  msgstr ""
3608
 
3609
  #. translators: %s: HTML tags for text and link
3610
+ #: settings.php:2341
3611
  msgid ""
3612
  "%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
3613
  "side %s insertion. Use %s Server-side %s insertion."
3614
  msgstr ""
3615
 
3616
+ #: settings.php:2357
3617
  msgid "Settings"
3618
  msgstr ""
3619
 
3620
+ #: settings.php:2360
3621
  msgid "Settings timestamp"
3622
  msgstr ""
3623
 
3624
+ #: settings.php:2373
3625
  msgid "Are you sure you want to reset all settings?"
3626
  msgstr ""
3627
 
3628
+ #: settings.php:2373
3629
  msgid "Reset All Settings"
3630
  msgstr ""
3631
 
3632
+ #: settings.php:2409
3633
  msgid "Viewports"
3634
  msgstr ""
3635
 
3636
+ #: settings.php:2410
3637
  msgid "Hooks"
3638
  msgstr ""
3639
 
3640
+ #: settings.php:2411
3641
  msgid "Header"
3642
  msgstr ""
3643
 
3644
+ #: settings.php:2412 strings.php:30
3645
  msgid "Footer"
3646
  msgstr ""
3647
 
3648
+ #: settings.php:2417
3649
  msgid "Debugging"
3650
  msgstr ""
3651
 
3652
+ #: settings.php:2427
3653
  msgid "Plugin priority"
3654
  msgstr ""
3655
 
3656
+ #: settings.php:2435
3657
  msgid "Output buffering"
3658
  msgstr ""
3659
 
3660
+ #: settings.php:2438
3661
  msgid "Needed for position Above header but may not work with all themes"
3662
  msgstr ""
3663
 
3664
+ #: settings.php:2446
3665
  msgid "Syntax highlighting theme"
3666
  msgstr ""
3667
 
3668
+ #: settings.php:2453
3669
  msgctxt "no syntax highlighting themes"
3670
  msgid "None"
3671
  msgstr ""
3672
 
3673
+ #: settings.php:2454
3674
  msgid "No Syntax Highlighting"
3675
  msgstr ""
3676
 
3677
+ #: settings.php:2456
3678
  msgctxt "syntax highlighting themes"
3679
  msgid "Light"
3680
  msgstr ""
3681
 
3682
+ #: settings.php:2471
3683
  msgctxt "syntax highlighting themes"
3684
  msgid "Dark"
3685
  msgstr ""
3686
 
3687
+ #: settings.php:2497
3688
  msgid "Tab setup delay"
3689
  msgstr ""
3690
 
3691
+ #: settings.php:2505
3692
  msgid "Min. user role for ind. exceptions editing"
3693
  msgstr ""
3694
 
3695
+ #: settings.php:2515
3696
  msgid "Disable caching for logged in administrators"
3697
  msgstr ""
3698
 
3699
+ #: settings.php:2518
3700
  msgid ""
3701
  "Enabled means that logged in administrators will see non-cached (live) pages "
3702
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3703
  msgstr ""
3704
 
3705
+ #: settings.php:2526
3706
  msgid "Wait for jQuery"
3707
  msgstr ""
3708
 
3709
+ #: settings.php:2529
3710
  msgid ""
3711
  "When enabled, Ad Inserter will wait for jQuery library to be loaded before "
3712
  "it will run the scripts that may need it"
3713
  msgstr ""
3714
 
3715
+ #: settings.php:2537
3716
  msgid "Sticky widget mode"
3717
  msgstr ""
3718
 
3719
+ #: settings.php:2540
3720
  msgid ""
3721
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3722
  "mode works with most themes but may reload ads on page load."
3723
  msgstr ""
3724
 
3725
+ #: settings.php:2548
3726
  msgid "Sticky widget top margin"
3727
  msgstr ""
3728
 
3729
+ #: settings.php:2556
3730
  msgid "Dynamic blocks"
3731
  msgstr ""
3732
 
3733
+ #: settings.php:2569
3734
  msgid "Functions for paragraph counting"
3735
  msgstr ""
3736
 
3737
+ #: settings.php:2572
3738
  msgid ""
3739
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3740
  "functions if paragraphs are not counted properly on non-english pages."
3741
  msgstr ""
3742
 
3743
+ #: settings.php:2580
3744
  msgid "No paragraph counting inside"
3745
  msgstr ""
3746
 
3747
+ #: settings.php:2591
3748
  msgid "Label text or HTML code"
3749
  msgstr ""
3750
 
3751
+ #: settings.php:2599
3752
  msgid ""
3753
  "Maximum number of inserted blocks per page. You need to enable Max page "
3754
  "insertions (button Misc / tab Insertion) to count block for this limit."
3755
  msgstr ""
3756
 
3757
+ #: settings.php:2613
3758
  msgid "Plugin usage tracking"
3759
  msgstr ""
3760
 
3761
  #. translators: %s: Ad Inserter
3762
+ #: settings.php:2616
3763
  msgid ""
3764
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3765
  "Only information regarding the WordPress environment and %s usage is "
3766
  "recorded (once per month and on events like plugin activation/deactivation)."
3767
  msgstr ""
3768
 
3769
+ #: settings.php:2634
3770
  msgid "CSS class name for the wrapping div"
3771
  msgstr ""
3772
 
3773
+ #: settings.php:2634
3774
  msgid "Block class name"
3775
  msgstr ""
3776
 
3777
+ #: settings.php:2640
3778
  msgid "Include block number class"
3779
  msgstr ""
3780
 
3781
+ #: settings.php:2640
3782
  msgid "Block number class"
3783
  msgstr ""
3784
 
3785
+ #: settings.php:2645
3786
  msgid "Include block name class"
3787
  msgstr ""
3788
 
3789
+ #: settings.php:2645
3790
  msgid "Block name class"
3791
  msgstr ""
3792
 
3793
+ #: settings.php:2650
3794
  msgid ""
3795
  "Instead of alignment classes generate inline alignment styles for blocks"
3796
  msgstr ""
3797
 
3798
+ #: settings.php:2650
3799
  msgid "Inline styles"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:2656
3803
  msgid "Preview of the block wrapping code"
3804
  msgstr ""
3805
 
3806
+ #: settings.php:2657
3807
  msgid "Wrapping div"
3808
  msgstr ""
3809
 
3810
+ #: settings.php:2658 settings.php:3102
3811
  msgid "BLOCK CODE"
3812
  msgstr ""
3813
 
3814
+ #: settings.php:2666
3815
  msgid "Viewport Settings used for client-side device detection"
3816
  msgstr ""
3817
 
3818
  #. Translators: %d: viewport number
3819
+ #: settings.php:2674
3820
  msgid "Viewport %d name"
3821
  msgstr ""
3822
 
3823
+ #: settings.php:2677
3824
  msgid "min width"
3825
  msgstr ""
3826
 
3827
+ #: settings.php:2688
3828
  msgid "Custom Hooks"
3829
  msgstr ""
3830
 
3831
+ #: settings.php:2700 settings.php:2703
3832
  msgid "Enable hook"
3833
  msgstr ""
3834
 
3835
  #. translators: %d: hook number
3836
+ #: settings.php:2703
3837
  msgid "Hook %d name"
3838
  msgstr ""
3839
 
3840
+ #: settings.php:2706
3841
  msgid "Hook name for automatic insertion selection"
3842
  msgstr ""
3843
 
3844
+ #: settings.php:2709
3845
  msgid "action"
3846
  msgstr ""
3847
 
3848
+ #: settings.php:2712
3849
  msgid "Action name as used in the do_action () function"
3850
  msgstr ""
3851
 
3852
+ #: settings.php:2715
3853
  msgid "priority"
3854
  msgstr ""
3855
 
3856
+ #: settings.php:2718
3857
  msgid "Priority for the hook (default is 10)"
3858
  msgstr ""
3859
 
3860
+ #: settings.php:2739
3861
  msgid "Enable insertion of this code into HTML page header"
3862
  msgstr ""
3863
 
3864
+ #: settings.php:2743 settings.php:2810 settings.php:2992
3865
  msgid "Process PHP code"
3866
  msgstr ""
3867
 
3868
+ #: settings.php:2747
3869
  msgid "HTML Page Header Code"
3870
  msgstr ""
3871
 
3872
+ #: settings.php:2755
3873
  msgid "Code in the %s section of the HTML page"
3874
  msgstr ""
3875
 
3876
+ #: settings.php:2756
3877
  msgctxt "code in the header"
3878
  msgid "NOT ENABLED"
3879
  msgstr ""
3880
 
3881
+ #: settings.php:2773 settings.php:2841
3882
  msgid "Use server-side detection to insert code only for"
3883
  msgstr ""
3884
 
3885
+ #: settings.php:2788
3886
  msgid ""
3887
  "Enable insertion of this code into HTML page header on page for Error 404: "
3888
  "Page not found"
3889
  msgstr ""
3890
 
3891
+ #: settings.php:2788 settings.php:2856
3892
  msgid "Insert on Error 404 page"
3893
  msgstr ""
3894
 
3895
+ #: settings.php:2806
3896
  msgid "Enable insertion of this code into HTML page footer"
3897
  msgstr ""
3898
 
3899
+ #: settings.php:2814
3900
  msgid "HTML Page Footer Code"
3901
  msgstr ""
3902
 
3903
  #. translators: %s: HTML tags
3904
+ #: settings.php:2822
3905
  msgid "Code before the %s tag of the HTML page"
3906
  msgstr ""
3907
 
3908
+ #: settings.php:2823
3909
  msgctxt "code in the footer"
3910
  msgid "NOT ENABLED"
3911
  msgstr ""
3912
 
3913
+ #: settings.php:2856
3914
  msgid ""
3915
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3916
  "Page not found"
3917
  msgstr ""
3918
 
3919
+ #: settings.php:2872
3920
  msgid "Code for ad blocking detection inserted. Click for details."
3921
  msgstr ""
3922
 
3923
+ #: settings.php:2877
3924
  msgid "Enable detection of ad blocking"
3925
  msgstr ""
3926
 
3927
+ #: settings.php:2895
3928
  msgid "Global action when ad blocking is detected"
3929
  msgstr ""
3930
 
3931
+ #: settings.php:2901
3932
  msgid "No action for"
3933
  msgstr ""
3934
 
3935
+ #: settings.php:2902
3936
  msgid "Exceptions for global action when ad blocking is detected."
3937
  msgstr ""
3938
 
3939
+ #: settings.php:2912
3940
  msgid "Delay Action"
3941
  msgstr ""
3942
 
3943
+ #: settings.php:2915
3944
  msgid ""
3945
  "Number of page views to delay action when ad blocking is detected. Leave "
3946
  "empty for no delay (action fires on first page view). Sets cookie."
3947
  msgstr ""
3948
 
3949
+ #: settings.php:2915
3950
  msgctxt "Delay Action for x "
3951
  msgid "page views"
3952
  msgstr ""
3953
 
3954
+ #: settings.php:2920
3955
  msgid "No Action Period"
3956
  msgstr ""
3957
 
3958
+ #: settings.php:2923
3959
  msgid ""
3960
  "Number of days to supress action when ad blocking is detected. Leave empty "
3961
  "for no no-action period (action fires always after defined page view delay). "
3962
  "Sets cookie."
3963
  msgstr ""
3964
 
3965
+ #: settings.php:2923
3966
  msgctxt "no action period"
3967
  msgid "days"
3968
  msgstr ""
3969
 
3970
+ #: settings.php:2928
3971
  msgid "Custom Selectors"
3972
  msgstr ""
3973
 
3974
+ #: settings.php:2931
3975
  msgid ""
3976
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3977
  "blocking detection. Invisible element or element with zero height means ad "
3978
  "blocking is present."
3979
  msgstr ""
3980
 
3981
+ #: settings.php:2943
3982
  msgid "Redirection Page"
3983
  msgstr ""
3984
 
3985
+ #: settings.php:2955
3986
  msgid "Custom Url"
3987
  msgstr ""
3988
 
3989
+ #: settings.php:2960
3990
  msgid ""
3991
  "Static page for redirection when ad blocking is detected. For other pages "
3992
  "select Custom url and set it below."
3993
  msgstr ""
3994
 
3995
+ #: settings.php:2969
3996
  msgid "Custom Redirection Url"
3997
  msgstr ""
3998
 
3999
+ #: settings.php:2981
4000
  msgid "Message HTML code"
4001
  msgstr ""
4002
 
4003
+ #: settings.php:2994
4004
  msgid "Preview message when ad blocking is detected"
4005
  msgstr ""
4006
 
4007
+ #: settings.php:3023
4008
  msgid "Prevent visitors from closing the warning message"
4009
  msgstr ""
4010
 
4011
+ #: settings.php:3023
4012
  msgid "Undismissible Message"
4013
  msgstr ""
4014
 
4015
+ #: settings.php:3029
4016
  msgid "Not undismissible for"
4017
  msgstr ""
4018
 
4019
+ #: settings.php:3030
4020
  msgid "Users which can close the warning message."
4021
  msgstr ""
4022
 
4023
+ #: settings.php:3044
4024
  msgid ""
4025
  "Force showing admin toolbar for administrators when viewing site. Enable "
4026
  "this option when you are logged in as admin and you don't see admin toolbar."
4027
  msgstr ""
4028
 
4029
+ #: settings.php:3052
4030
  msgid "Disable header code (Header tab)"
4031
  msgstr ""
4032
 
4033
+ #: settings.php:3056
4034
  msgid "Disable footer code (Footer tab)"
4035
  msgstr ""
4036
 
4037
  #. translators: %s: Ad Inserter
4038
+ #: settings.php:3060
4039
  msgid "Disable %s JavaScript code"
4040
  msgstr ""
4041
 
4042
  #. translators: %s: Ad Inserter
4043
+ #: settings.php:3064
4044
  msgid "Disable %s CSS code"
4045
  msgstr ""
4046
 
4047
  #. translators: %s: Ad Inserter
4048
+ #: settings.php:3068
4049
  msgid "Disable %s HTML code"
4050
  msgstr ""
4051
 
4052
+ #: settings.php:3072
4053
  msgid ""
4054
  "Disable PHP code processing (in all blocks including header and footer code)"
4055
  msgstr ""
4056
 
4057
+ #: settings.php:3076
4058
  msgid "Disable insertion of all blocks"
4059
  msgstr ""
4060
 
4061
+ #: settings.php:3080
4062
  msgid "Disable insertions"
4063
  msgstr ""
4064
 
4065
  #. translators: %s: Ad Inserter
4066
+ #: settings.php:3092
4067
  msgid "%s CSS CODE"
4068
  msgstr ""
4069
 
4070
+ #: settings.php:3095
4071
  msgid "HEADER CODE"
4072
  msgstr ""
4073
 
4074
  #. translators: %s: PHP tags
4075
+ #: settings.php:3101
4076
  msgid "BLOCK PHP CODE"
4077
  msgstr ""
4078
 
4079
  #. translators: %s: Ad Inserter
4080
+ #: settings.php:3106
4081
  msgid "%s HTML CODE"
4082
  msgstr ""
4083
 
4084
  #. translators: %s: Ad Inserter
4085
+ #: settings.php:3108
4086
  msgid "%s JS CODE"
4087
  msgstr ""
4088
 
4089
+ #: settings.php:3111
4090
  msgid "FOOTER CODE"
4091
  msgstr ""
4092
 
4093
+ #: settings.php:3120
4094
  msgid "Force showing admin toolbar when viewing site"
4095
  msgstr ""
4096
 
4097
+ #: settings.php:3127
4098
  msgid "Enable debugging functions in admin toolbar"
4099
  msgstr ""
4100
 
4101
+ #: settings.php:3129
4102
  msgid "Debugging functions in admin toolbar"
4103
  msgstr ""
4104
 
4105
+ #: settings.php:3136
4106
  msgid "Enable debugging functions in admin toolbar on mobile screens"
4107
  msgstr ""
4108
 
4109
+ #: settings.php:3138
4110
  msgid "Debugging functions on mobile screens"
4111
  msgstr ""
4112
 
4113
+ #: settings.php:3145
4114
  msgid ""
4115
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
4116
  "tags, processing) by url parameters for non-logged in users. Enable this "
4119
  "administrators debugging is always enabled."
4120
  msgstr ""
4121
 
4122
+ #: settings.php:3147
4123
  msgid "Remote debugging"
4124
  msgstr ""
4125
 
4126
+ #: settings.php:3154
4127
  msgid ""
4128
  "Disable translation to see original texts for the settings and messages in "
4129
  "English"
4130
  msgstr ""
4131
 
4132
+ #: settings.php:3156
4133
  msgid "Disable translation"
4134
  msgstr ""
4135
 
4136
+ #: settings.php:3531
4137
  msgid "Available positions for current theme"
4138
  msgstr ""
4139
 
4140
+ #: settings.php:3532
4141
  msgid "Error checking pages"
4142
  msgstr ""
4143
 
4144
+ #: settings.php:3535
4145
  msgid "Toggle theme checker for available positions for automatic insertion"
4146
  msgstr ""
4147
 
4148
+ #: settings.php:3535
4149
  msgctxt "Button"
4150
  msgid "Check"
4151
  msgstr ""
4152
 
4153
+ #: settings.php:3542
4154
  msgid "Position"
4155
  msgstr ""
4156
 
4157
+ #: settings.php:3547
4158
  msgid "Archive pages"
4159
  msgstr ""
4160
 
4161
+ #: settings.php:3606
4162
  msgid ""
4163
  "Position not available because output buffering (tab [*]) is not enabled"
4164
  msgstr ""
4165
 
4166
+ #: settings.php:3609 strings.php:248
4167
  msgid "Position not checked yet"
4168
  msgstr ""
4169
 
4170
+ #: settings.php:3645
4171
  msgid "Toggle active/all blocks"
4172
  msgstr ""
4173
 
4174
+ #: settings.php:3649 strings.php:235
4175
  msgid "Rearrange block order"
4176
  msgstr ""
4177
 
4178
+ #: settings.php:3654
4179
  msgid "Save new block order"
4180
  msgstr ""
4181
 
4182
+ #: settings.php:3680
4183
  msgid "Toggle active/all ad units"
4184
  msgstr ""
4185
 
4186
+ #: settings.php:3684
4187
  msgid "Reload AdSense ad units"
4188
  msgstr ""
4189
 
4190
+ #: settings.php:3688
4191
  msgid "Clear authorization to access AdSense account"
4192
  msgstr ""
4193
 
4194
+ #: settings.php:3692 settings.php:4560 settings.php:4627 strings.php:243
4195
  msgid "Google AdSense Homepage"
4196
  msgstr ""
4197
 
4198
+ #: settings.php:3708
4199
  msgid "Switch to physical ads.txt file"
4200
  msgstr ""
4201
 
4202
+ #: settings.php:3709
4203
  msgid "Switch to virtual ads.txt file"
4204
  msgstr ""
4205
 
4206
  #. translators: %s: ads.txt
4207
+ #: settings.php:3719
4208
  msgid "Open %s"
4209
  msgstr ""
4210
 
4211
+ #: settings.php:3727
4212
  msgid "Reload ads.txt file"
4213
  msgstr ""
4214
 
4215
+ #: settings.php:3731 settings.php:4692
4216
  msgid "Save"
4217
  msgstr ""
4218
 
4219
  #. translators: %s: Ad Inserter
4220
+ #: settings.php:3909
4221
  msgid "ads.txt file: %s virtual ads.txt file"
4222
  msgstr ""
4223
 
4224
+ #: settings.php:3914 settings.php:3934 strings.php:224
4225
  msgid "Warning"
4226
  msgstr ""
4227
 
4228
  #. translators: %s: Ad Inserter
4229
+ #: settings.php:3914
4230
  msgid "%s virtual file ads.txt not found"
4231
  msgstr ""
4232
 
4233
+ #: settings.php:3922
4234
  msgid "IMPORTANT"
4235
  msgstr ""
4236
 
4237
+ #: settings.php:3922
4238
  msgid "ads.txt file must be placed on the root domain"
4239
  msgstr ""
4240
 
4241
+ #: settings.php:3927
4242
  msgid "ads.txt file"
4243
  msgstr ""
4244
 
4245
+ #: settings.php:3927
4246
  msgid "NOT WRITABLE"
4247
  msgstr ""
4248
 
4249
+ #: settings.php:3934
4250
  msgid "file %s not found"
4251
  msgstr ""
4252
 
4253
+ #: settings.php:3944
4254
  msgid "Account IDs found in blocks but not present in the ads.txt file"
4255
  msgstr ""
4256
 
4257
  #. translators: %s: Ad Inserter
4258
+ #: settings.php:3950
4259
  msgid "%s virtual ads.txt file"
4260
  msgstr ""
4261
 
4262
+ #: settings.php:3972
4263
  msgid "Advertising system"
4264
  msgstr ""
4265
 
4266
+ #: settings.php:3973
4267
  msgid "Account ID"
4268
  msgstr ""
4269
 
4270
+ #: settings.php:3975
4271
  msgid "Certification authority ID"
4272
  msgstr ""
4273
 
4274
+ #: settings.php:3990
4275
  msgid "Account ID found in block and present in ads.txt"
4276
  msgstr ""
4277
 
4278
+ #: settings.php:3994
4279
  msgid "Account ID found in block but not present in ads.txt"
4280
  msgstr ""
4281
 
4282
+ #: settings.php:4343
4283
  msgid "Preview block"
4284
  msgstr ""
4285
 
4286
+ #: settings.php:4350
4287
  msgid "Pause block"
4288
  msgstr ""
4289
 
4290
+ #: settings.php:4389
4291
  msgid "Automatic insertion"
4292
  msgstr ""
4293
 
4294
  #. translators: %s HTML tags
4295
+ #: settings.php:4390 settings.php:5383
4296
  msgid "PHP code processing"
4297
  msgstr ""
4298
 
4299
+ #: settings.php:4392
4300
  msgid "Device detection"
4301
  msgstr ""
4302
 
4303
+ #: settings.php:4415
4304
  msgid "No active block"
4305
  msgstr ""
4306
 
4307
+ #: settings.php:4416
4308
  msgid "No block matches search keywords"
4309
  msgstr ""
4310
 
4311
+ #: settings.php:4471
4312
  msgid "Ad unit"
4313
  msgstr ""
4314
 
4315
+ #: settings.php:4473
4316
  msgid "Slot ID"
4317
  msgstr ""
4318
 
4319
+ #: settings.php:4499
4320
  msgid "Copy AdSense code"
4321
  msgstr ""
4322
 
4323
+ #: settings.php:4502
4324
  msgid "Preview AdSense ad"
4325
  msgstr ""
4326
 
4327
+ #: settings.php:4505
4328
  msgid "Get AdSense code"
4329
  msgstr ""
4330
 
4331
  #. translators: %s: HTML tags
4332
+ #: settings.php:4537
4333
  msgid ""
4334
  "Please %s clear authorization %s with the button %s above and once again "
4335
  "authorize access to your AdSense account."
4336
  msgstr ""
4337
 
4338
+ #: settings.php:4556
4339
  msgid "AdSense Integration"
4340
  msgstr ""
4341
 
4342
+ #: settings.php:4558
4343
  msgid "AdSense Integration - Step 2"
4344
  msgstr ""
4345
 
4346
  #. translators: %s: HTML tags
4347
+ #: settings.php:4564
4348
  msgid ""
4349
  "Authorize %s to access your AdSense account. Click on the %s Get "
4350
  "Authorization Code %s button to open a new window where you can allow "
4353
  msgstr ""
4354
 
4355
  #. translators: %s: HTML tags
4356
+ #: settings.php:4571
4357
  msgid ""
4358
  "If you get error, can't access ad units or would like to use own Google API "
4359
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
4361
  msgstr ""
4362
 
4363
  #. translators: %s: HTML tags
4364
+ #: settings.php:4573
4365
  msgid ""
4366
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
4367
  "Authorization Code %s button to open a new window where you can allow "
4370
  msgstr ""
4371
 
4372
  #. translators: %s: HTML tags
4373
+ #: settings.php:4580
4374
  msgid ""
4375
  "If you get error %s invalid client %s click on the button %s Clear and "
4376
  "return to Step 1 %s to re-enter Client ID and Client Secret."
4377
  msgstr ""
4378
 
4379
+ #: settings.php:4591
4380
  msgid "Get Authorization Code"
4381
  msgstr ""
4382
 
4383
+ #: settings.php:4594
4384
  msgid "Enter Authorization Code"
4385
  msgstr ""
4386
 
4387
+ #: settings.php:4604
4388
  msgid "Use own API IDs"
4389
  msgstr ""
4390
 
4391
+ #: settings.php:4606
4392
  msgid "Clear and return to Step 1"
4393
  msgstr ""
4394
 
4395
+ #: settings.php:4610
4396
  msgid "Authorize"
4397
  msgstr ""
4398
 
4399
+ #: settings.php:4626
4400
  msgid "AdSense Integration - Step 1"
4401
  msgstr ""
4402
 
4403
  #. translators: %s: Ad Inserter
4404
+ #: settings.php:4630
4405
  msgid ""
4406
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
4407
  "To do this you need to authorize %s to access your AdSense account. The "
4410
  msgstr ""
4411
 
4412
  #. translators: %s: HTML tags
4413
+ #: settings.php:4639
4414
  msgid "Go to %s Google APIs and Services console %s"
4415
  msgstr ""
4416
 
4417
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
4418
+ #: settings.php:4640
4419
  msgid ""
4420
  "Create %1$s project - if the project and IDs are already created click on "
4421
+ "the %2$s Credentials %3$s in the sidebar and go to step 21"
4422
  msgstr ""
4423
 
4424
  #. translators: %s: HTML tags
4425
+ #: settings.php:4641
4426
  msgid ""
4427
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4428
  "create a new project"
4429
  msgstr ""
4430
 
4431
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4432
+ #: settings.php:4642
4433
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4434
  msgstr ""
4435
 
4436
  #. translators: %s: HTML tags
4437
+ #: settings.php:4643
4438
  msgid ""
4439
  "Click on project selection, wait for the project to be created and then and "
4440
  "select %s as the current project"
4441
  msgstr ""
4442
 
4443
  #. translators: %s: HTML tags
4444
+ #: settings.php:4644
4445
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4446
  msgstr ""
4447
 
4448
  #. translators: %s: HTML tags
4449
+ #: settings.php:4645
4450
  msgid "Search for adsense and enable %s"
4451
  msgstr ""
4452
 
4453
  #. translators: %s: HTML tags
4454
+ #: settings.php:4646
4455
  msgid "Click on %s CREATE CREDENTIALS %s"
4456
  msgstr ""
4457
 
4458
  #. translators: %s: HTML tags
4459
+ #: settings.php:4647
4460
+ msgid "For %s Which API are you using? %s select %s AdSense Management API %s"
4461
+ msgstr ""
4462
+
4463
+ #. translators: %s: HTML tags
4464
+ #: settings.php:4648
4465
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4466
  msgstr ""
4467
 
4468
  #. translators: %s: HTML tags
4469
+ #: settings.php:4649
4470
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4471
  msgstr ""
4472
 
4473
  #. translators: %s: HTML tags
4474
+ #: settings.php:4650
4475
  msgid "Click on %s What credentials do I need? %s"
4476
  msgstr ""
4477
 
4478
  #. translators: %s: HTML tags
4479
+ #: settings.php:4651
4480
  msgid ""
4481
+ "When %s Set up OAuth consent screen %s window is displayed select %s Setup "
4482
+ "Consent Screen %s"
4483
+ msgstr ""
4484
+
4485
+ #. translators: %s: HTML tags
4486
+ #: settings.php:4652
4487
+ msgid "For %s User Type %s select %s External %s and click on %s CREATE %s"
4488
+ msgstr ""
4489
+
4490
+ #. translators: %s: HTML tags
4491
+ #: settings.php:4653
4492
+ msgid ""
4493
+ "For %s App name %s enter %s and for %s User support email %s select your "
4494
+ "Google account email address"
4495
+ msgstr ""
4496
+
4497
+ #. translators: %s: HTML tags
4498
+ #: settings.php:4654
4499
+ msgid ""
4500
+ "For %s Developer contact information %s enter your email address and click "
4501
+ "on %s SAVE AND CONTINUE %s"
4502
  msgstr ""
4503
 
4504
  #. translators: %s: HTML tags
4505
+ #: settings.php:4655
4506
  msgid ""
4507
+ "Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and "
4508
+ "add your Google account email address"
4509
  msgstr ""
4510
 
4511
  #. translators: %s: HTML tags
4512
+ #: settings.php:4656
4513
+ msgid ""
4514
+ "Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s"
4515
  msgstr ""
4516
 
4517
  #. translators: %s: HTML tags
4518
+ #: settings.php:4657
4519
+ msgid ""
4520
+ "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4521
+ "Ad Inserter client %s and then click on %s REFRESH %s"
4522
  msgstr ""
4523
 
4524
  #. translators: %s: HTML tags
4525
+ #: settings.php:4658
4526
+ msgid "Click on %s Create OAuth client ID %s and then click on %s DONE %s"
4527
+ msgstr ""
4528
+
4529
+ #. translators: %s: HTML tags
4530
+ #: settings.php:4659
4531
  msgid ""
4532
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4533
  "secret %s"
4534
  msgstr ""
4535
 
4536
+ #: settings.php:4660
4537
  msgid "Copy them to the appropriate fields below"
4538
  msgstr ""
4539
 
4540
+ #: settings.php:4666
4541
  msgid "Client ID"
4542
  msgstr ""
4543
 
4544
+ #: settings.php:4669
4545
  msgid "Enter Client ID"
4546
  msgstr ""
4547
 
4548
+ #: settings.php:4674
4549
  msgid "Client secret"
4550
  msgstr ""
4551
 
4552
+ #: settings.php:4677
4553
  msgid "Enter Client secret"
4554
  msgstr ""
4555
 
4556
+ #: settings.php:4687
4557
  msgid "Use default API IDs"
4558
  msgstr ""
4559
 
4560
+ #: settings.php:4855
4561
  msgid "All posts"
4562
  msgstr ""
4563
 
4564
+ #: settings.php:4856
4565
  msgid "All static pages"
4566
  msgstr ""
4567
 
4568
+ #: settings.php:5011 settings.php:5024 settings.php:5038 settings.php:5052
4569
+ #: settings.php:5066
4570
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4571
  msgstr ""
4572
 
4573
+ #: settings.php:5016 settings.php:5029 settings.php:5043 settings.php:5057
4574
+ #: settings.php:5071 settings.php:5266 settings.php:5269 settings.php:5271
4575
+ #: settings.php:5280 settings.php:5289 settings.php:5294 settings.php:5302
4576
+ #: settings.php:5303 settings.php:5306 settings.php:5309 settings.php:5313
4577
+ #: settings.php:5323 settings.php:5327
4578
  msgid "Looking for AdSense alternative?"
4579
  msgstr ""
4580
 
4581
+ #: settings.php:5083
4582
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4583
  msgstr ""
4584
 
4585
+ #: settings.php:5088 settings.php:5263 settings.php:5284 settings.php:5312
4586
+ #: settings.php:5331
4587
  msgid "Use Infolinks ads with Adsense to earn more"
4588
  msgstr ""
4589
 
4590
+ #: settings.php:5109 settings.php:5159
4591
  msgid "Support plugin development"
4592
  msgstr ""
4593
 
4594
+ #: settings.php:5114 settings.php:5160
4595
  msgid ""
4596
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4597
  "reviewing the plugin on WordPres"
4598
  msgstr ""
4599
 
4600
+ #: settings.php:5114
4601
  msgctxt "Review Ad Inserter"
4602
  msgid "Review"
4603
  msgstr ""
4604
 
4605
+ #: settings.php:5119
4606
  msgid ""
4607
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4608
  "rating the plugin on WordPres"
4609
  msgstr ""
4610
 
4611
+ #: settings.php:5119
4612
  msgctxt "Rate Ad Inserter"
4613
  msgid "Rate"
4614
  msgstr ""
4615
 
4616
+ #: settings.php:5124
4617
  msgid ""
4618
  "Support free Ad Inserter development. If you are making money with Ad "
4619
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4620
  "you!"
4621
  msgstr ""
4622
 
4623
+ #: settings.php:5124
4624
  msgid "Donate"
4625
  msgstr ""
4626
 
4627
+ #: settings.php:5131 settings.php:5175
4628
  msgid "Average rating of the plugin - Thank you!"
4629
  msgstr ""
4630
 
4631
  #. translators: %s: Ad Inserter, HTML tags
4632
+ #: settings.php:5142
4633
  msgid ""
4634
  "You've been using %s for a while now, and I hope you're happy with it. "
4635
  "Positive %s reviews %s are a great way to show your appreciation for my "
4638
  "your website. When you rate it with 5 stars it's like saying 'Thank you'."
4639
  msgstr ""
4640
 
4641
+ #: settings.php:5160
4642
  msgid "Review"
4643
  msgstr ""
4644
 
4645
+ #: settings.php:5164
4646
  msgid "Ad Inserter on Twitter"
4647
  msgstr ""
4648
 
4649
+ #: settings.php:5165
4650
  msgid "Ad Inserter on Facebook"
4651
  msgstr ""
4652
 
4653
+ #: settings.php:5168
4654
  msgid "Follow Ad Inserter"
4655
  msgstr ""
4656
 
4657
  #. translators: %s: HTML tags
4658
+ #: settings.php:5195
4659
  msgid ""
4660
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4661
  "and %s Common Settings %s pages"
4662
  msgstr ""
4663
 
4664
  #. translators: %s: HTML tags
4665
+ #: settings.php:5207
4666
  msgid ""
4667
  "%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
4668
  "Auto ads, %s %s AMP ads %s"
4669
  msgstr ""
4670
 
4671
  #. translators: %s: HTML tags
4672
+ #: settings.php:5224
4673
  msgid ""
4674
  "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4675
  "purchase you refer to us"
4676
  msgstr ""
4677
 
4678
  #. translators: %s: HTML tags
4679
+ #: settings.php:5231
4680
  msgid ""
4681
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4682
  "diagnose and fix the problem."
4683
  msgstr ""
4684
 
4685
  #. translators: %s: HTML tags
4686
+ #: settings.php:5235
4687
  msgid ""
4688
  "If you need any kind of help or support, please do not hesitate to open a "
4689
  "thread on the %s support forum. %s"
4690
  msgstr ""
4691
 
4692
+ #: settings.php:5262 settings.php:5332 settings.php:5336
4693
  msgid "Code preview with visual CSS editor"
4694
  msgstr ""
4695
 
4696
+ #: settings.php:5265 settings.php:5293
4697
  msgid "Ad blocking detection and content protection"
4698
  msgstr ""
4699
 
4700
+ #: settings.php:5268 settings.php:5321
4701
  msgid "A/B testing - Track ad impressions and clicks"
4702
  msgstr ""
4703
 
4704
+ #: settings.php:5285
4705
  msgid "Insert ads on AMP pages"
4706
  msgstr ""
4707
 
4708
+ #: settings.php:5344
4709
  msgid "Looking for Pro Ad Management plugin?"
4710
  msgstr ""
4711
 
4712
+ #: settings.php:5345
4713
  msgid "To Optimally Monetize your WordPress website?"
4714
  msgstr ""
4715
 
4716
  #. Translators: %s: price of Ad Inserter Pro
4717
+ #: settings.php:5346
4718
  msgid "Different license types starting from %s"
4719
  msgstr ""
4720
 
4721
  #. translators: %s HTML tags
4722
+ #: settings.php:5349
4723
  msgid "%s AdSense Integration %s"
4724
  msgstr ""
4725
 
4726
  #. translators: %s HTML tags
4727
+ #: settings.php:5350
4728
  msgid "Syntax highlighting %s editor %s"
4729
  msgstr ""
4730
 
4731
  #. translators: %s HTML tags
4732
+ #: settings.php:5351
4733
  msgid "%s Code preview %s with visual CSS editor"
4734
  msgstr ""
4735
 
4736
  #. translators: %s HTML tags
4737
+ #: settings.php:5352
4738
  msgid "Simple user interface - all settings on a single page"
4739
  msgstr ""
4740
 
4741
  #. translators: %s HTML tags
4742
+ #: settings.php:5353
4743
  msgid ""
4744
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4745
  "image / excerpt"
4746
  msgstr ""
4747
 
4748
  #. translators: %s HTML tags
4749
+ #: settings.php:5354
4750
  msgid "%s Automatic insertion %s between posts on blog pages"
4751
  msgstr ""
4752
 
4753
  #. translators: %s HTML tags
4754
+ #: settings.php:5355
4755
  msgid "%s Automatic insertion %s before, between and after comments"
4756
  msgstr ""
4757
 
4758
  #. translators: %s HTML tags
4759
+ #: settings.php:5356
4760
  msgid "%s Automatic insertion %s after %s or before %s tag"
4761
  msgstr ""
4762
 
4763
  #. translators: %s HTML tags
4764
+ #: settings.php:5357
4765
  msgid "Automatic insertion at %s custom hook positions %s"
4766
  msgstr ""
4767
 
4768
  #. translators: %s HTML tags
4769
+ #: settings.php:5358
4770
  msgid ""
4771
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4772
  "selectors)"
4773
  msgstr ""
4774
 
4775
  #. translators: %s HTML tags
4776
+ #: settings.php:5359
4777
  msgid "%s Insertion exceptions %s for individual posts and pages"
4778
  msgstr ""
4779
 
4780
  #. translators: %s HTML tags
4781
+ #: settings.php:5360
4782
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4783
  msgstr ""
4784
 
4785
  #. translators: %s HTML tags
4786
+ #: settings.php:5361
4787
  msgid ""
4788
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4789
  "scrolls)"
4790
  msgstr ""
4791
 
4792
  #. translators: %s HTML tags
4793
+ #: settings.php:5362
4794
  msgid "%s Background ads %s with one or left and right background images"
4795
  msgstr ""
4796
 
4797
  #. translators: %s HTML tags
4798
+ #: settings.php:5363
4799
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4800
  msgstr ""
4801
 
4802
  #. translators: %s HTML tags
4803
+ #: settings.php:5364
4804
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4805
  msgstr ""
4806
 
4807
  #. translators: %s HTML tags
4808
+ #: settings.php:5365
4809
  msgid ""
4810
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4811
  "visible)"
4812
  msgstr ""
4813
 
4814
  #. translators: %s HTML tags
4815
+ #: settings.php:5366
4816
  msgid ""
4817
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4818
  msgstr ""
4819
 
4820
  #. translators: %s HTML tags
4821
+ #: settings.php:5367
4822
  msgid "Block %s alignment and style %s customizations"
4823
  msgstr ""
4824
 
4825
  #. translators: %s HTML tags
4826
+ #: settings.php:5368
4827
  msgid ""
4828
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4829
  "TOS)"
4830
  msgstr ""
4831
 
4832
  #. translators: %s HTML tags
4833
+ #: settings.php:5369
4834
  msgid ""
4835
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4836
  "feeds"
4837
  msgstr ""
4838
 
4839
  #. translators: %s HTML tags
4840
+ #: settings.php:5370
4841
  msgid "%s Ad rotation %s (works also with caching)"
4842
  msgstr ""
4843
 
4844
  #. translators: %s HTML tags
4845
+ #: settings.php:5371
4846
  msgid "Create, edit and check %s ads.txt %s file"
4847
  msgstr ""
4848
 
4849
  #. translators: %s HTML tags
4850
+ #: settings.php:5372
4851
  msgid ""
4852
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4853
  "AdSense)"
4854
  msgstr ""
4855
 
4856
  #. translators: %s HTML tags
4857
+ #: settings.php:5373
4858
  msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4859
  msgstr ""
4860
 
4861
  #. translators: %s HTML tags
4862
+ #: settings.php:5374
4863
  msgid "%s Public web reports %s for clients, export to PDF"
4864
  msgstr ""
4865
 
4866
  #. translators: %s HTML tags
4867
+ #: settings.php:5375
4868
  msgid "Support for %s A/B testing %s"
4869
  msgstr ""
4870
 
4871
  #. translators: %s HTML tags
4872
+ #: settings.php:5376
4873
  msgid "Frequency capping - %s limit impressions or clicks %s"
4874
  msgstr ""
4875
 
4876
  #. translators: %s HTML tags
4877
+ #: settings.php:5377
4878
  msgid "Click fraud %s protection %s"
4879
  msgstr ""
4880
 
4881
  #. translators: %s HTML tags
4882
+ #: settings.php:5378
4883
  msgid "Support for %s GDPR consent cookie checks %s"
4884
  msgstr ""
4885
 
4886
  #. translators: %s HTML tags
4887
+ #: settings.php:5379
4888
  msgid "Support for %s lazy loading %s"
4889
  msgstr ""
4890
 
4891
  #. translators: %s HTML tags
4892
+ #: settings.php:5380
4893
  msgid "Support for ads on %s AMP pages %s"
4894
  msgstr ""
4895
 
4896
  #. translators: %s HTML tags
4897
+ #: settings.php:5381
4898
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4899
  msgstr ""
4900
 
4901
  #. translators: %s HTML tags
4902
+ #: settings.php:5382
4903
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4904
  msgstr ""
4905
 
4906
  #. translators: %s HTML tags
4907
+ #: settings.php:5384
4908
  msgid "%s Banner %s code generator"
4909
  msgstr ""
4910
 
4911
  #. translators: %s HTML tags
4912
+ #: settings.php:5385
4913
  msgid "Support for %s header and footer %s code"
4914
  msgstr ""
4915
 
4916
  #. translators: %s HTML tags
4917
+ #: settings.php:5386
4918
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4919
  msgstr ""
4920
 
4921
  #. translators: %s HTML tags
4922
+ #: settings.php:5387
4923
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4924
  msgstr ""
4925
 
4926
  #. translators: %s HTML tags
4927
+ #: settings.php:5388
4928
  msgid "Client-side %s mobile device detection %s (works with caching)"
4929
  msgstr ""
4930
 
4931
  #. translators: %s HTML tags
4932
+ #: settings.php:5389
4933
  msgid ""
4934
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4935
  "protection"
4936
  msgstr ""
4937
 
4938
  #. translators: %s HTML tags
4939
+ #: settings.php:5390
4940
  msgid "%s Ad blocking statistics %s"
4941
  msgstr ""
4942
 
4943
  #. translators: %s HTML tags
4944
+ #: settings.php:5391
4945
  msgid ""
4946
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4947
  "referrers, operating systems, browsers"
4948
  msgstr ""
4949
 
4950
  #. translators: %s HTML tags
4951
+ #: settings.php:5392
4952
  msgid ""
4953
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4954
  msgstr ""
4955
 
4956
  #. translators: %s HTML tags
4957
+ #: settings.php:5393
4958
  msgid "%s Multisite options %s to limit settings on the sites"
4959
  msgstr ""
4960
 
4961
  #. translators: %s HTML tags
4962
+ #: settings.php:5394
4963
  msgid "%s Import/Export %s block or plugin settings"
4964
  msgstr ""
4965
 
4966
  #. translators: %s HTML tags
4967
+ #: settings.php:5395
4968
  msgid "%s Insertion scheduling %s with fallback option"
4969
  msgstr ""
4970
 
4971
  #. translators: %s HTML tags
4972
+ #: settings.php:5396
4973
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4974
  msgstr ""
4975
 
4976
  #. translators: %s HTML tags
4977
+ #: settings.php:5397
4978
  msgid "Simple troubleshooting with many %s debugging functions %s"
4979
  msgstr ""
4980
 
4981
  #. translators: %s HTML tags
4982
+ #: settings.php:5398
4983
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4984
  msgstr ""
4985
 
4986
  #. translators: %s HTML tags
4987
+ #: settings.php:5399
4988
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4989
  msgstr ""
4990
 
4991
  #. translators: %s HTML tags
4992
+ #: settings.php:5400
4993
  msgid ""
4994
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4995
  msgstr ""
4996
 
4997
  #. translators: %s HTML tags
4998
+ #: settings.php:5401
4999
  msgid "%s Clipboard support %s to easily copy blocks or settings"
5000
  msgstr ""
5001
 
5002
  #. translators: %s HTML tags
5003
+ #: settings.php:5402
5004
  msgid "No ads on the settings page"
5005
  msgstr ""
5006
 
5007
  #. translators: %s HTML tags
5008
+ #: settings.php:5403
5009
  msgid "Premium support"
5010
  msgstr ""
5011
 
5012
  #. translators: %s HTML tags
5013
+ #: settings.php:5406
5014
  msgid ""
5015
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
5016
  "website with many advertising features to automatically insert adverts on "
5025
  msgstr ""
5026
 
5027
  #. translators: %s HTML tags
5028
+ #: settings.php:5419
5029
  msgid "Looking for %s Pro Ad Management plugin? %s"
5030
  msgstr ""
5031
 
5032
  #. translators: %s HTML tags
5033
+ #: settings.php:5424
5034
  msgid "Ads between posts"
5035
  msgstr ""
5036
 
5037
  #. translators: %s HTML tags
5038
+ #: settings.php:5425
5039
  msgid "Ads between comments"
5040
  msgstr ""
5041
 
5042
  #. translators: %s HTML tags
5043
+ #: settings.php:5426
5044
  msgid "Support via email"
5045
  msgstr ""
5046
 
5047
  #. translators: %s HTML tags
5048
+ #: settings.php:5432
5049
  msgid "%s Sticky positions %s"
5050
  msgstr ""
5051
 
5052
  #. translators: %s HTML tags
5053
+ #: settings.php:5433
5054
  msgid "%s Limit insertions %s"
5055
  msgstr ""
5056
 
5057
  #. translators: %s HTML tags
5058
+ #: settings.php:5434
5059
  msgid "%s Clearance %s options"
5060
  msgstr ""
5061
 
5062
  #. translators: %s HTML tags
5063
+ #: settings.php:5440
5064
  msgid "Ad rotation"
5065
  msgstr ""
5066
 
5067
  #. translators: %s HTML tags
5068
+ #: settings.php:5441
5069
  msgid "%s A/B testing %s"
5070
  msgstr ""
5071
 
5072
  #. translators: %s HTML tags
5073
+ #: settings.php:5442
5074
  msgid "%s Ad tracking %s"
5075
  msgstr ""
5076
 
5077
  #. translators: %s HTML tags
5078
+ #: settings.php:5448
5079
  msgid "Support for %s AMP pages %s"
5080
  msgstr ""
5081
 
5082
  #. translators: %s HTML tags
5083
+ #: settings.php:5449
5084
  msgid "%s Ad blocking detection %s"
5085
  msgstr ""
5086
 
5087
  #. translators: %s HTML tags
5088
+ #: settings.php:5450
5089
  msgid "%s Mobile device detection %s"
5090
  msgstr ""
5091
 
5092
  #. translators: %s HTML tags
5093
+ #: settings.php:5457
5094
  msgid "64 code blocks"
5095
  msgstr ""
5096
 
5097
  #. translators: %s HTML tags
5098
+ #: settings.php:5458
5099
  msgid "%s GEO targeting %s"
5100
  msgstr ""
5101
 
5102
  #. translators: %s HTML tags
5103
+ #: settings.php:5459
5104
  msgid "%s Scheduling %s"
5105
  msgstr ""
5106
 
5811
  msgid "Invalid date range - only data for 1 year can be displayed"
5812
  msgstr ""
5813
 
 
 
 
 
5814
  #: strings.php:226
5815
  msgid "Switch"
5816
  msgstr ""
readme.txt CHANGED
@@ -4,9 +4,9 @@ Contributors: adinserter, spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
  Requires at least: 4.6
7
- Tested up to: 5.6
8
  Requires PHP: 5.6
9
- Stable tag: 2.6.21
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
@@ -227,6 +227,23 @@ The easiest way to check inserted blocks is to use **Label blocks** debugging fu
227
  Please note that when you disable the plugin you also disable insertion of all codes and blocks you have configured.
228
  Therefore, if your issues go away when you disable the plugin THIS DOES NOT INDICATE any issue with the plugin! You need to try to [disable individual codes](https://adinserter.pro/documentation/debugging#back-end) to see which one is causing trouble.
229
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  = I have installed code for AdSense and I see ads placed at random positions. =
231
 
232
  You are probably using code for [AdSense Auto ads](https://adinserter.pro/documentation/adsense-ads#auto-ads).
@@ -335,6 +352,13 @@ If you are not happy to reveal this information and you have opted in, simply di
335
 
336
  == Changelog ==
337
 
 
 
 
 
 
 
 
338
  = 2.6.21 =
339
  - Improved compatibility with PHP 8
340
  - Few minor bug fixes, cosmetic changes and code improvements
@@ -494,6 +518,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
494
 
495
  == Upgrade Notice ==
496
 
 
 
 
 
 
 
 
497
  = 2.6.21 =
498
  Improved compatibility with PHP 8;
499
  Few minor bug fixes, cosmetic changes and code improvements
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
  Requires at least: 4.6
7
+ Tested up to: 5.7
8
  Requires PHP: 5.6
9
+ Stable tag: 2.6.22
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
227
  Please note that when you disable the plugin you also disable insertion of all codes and blocks you have configured.
228
  Therefore, if your issues go away when you disable the plugin THIS DOES NOT INDICATE any issue with the plugin! You need to try to [disable individual codes](https://adinserter.pro/documentation/debugging#back-end) to see which one is causing trouble.
229
 
230
+ = What is remote debugging? =
231
+
232
+ Ad Inserter is basically used to insert ad codes according to the settings.
233
+ When the code is not inserted where it is expected or the inserted HTML/Javascript code does not display anything, you as the site administrator can use [debugging functions](https://adinserter.pro/documentation/debugging) to diagnose insertions.
234
+
235
+ Those tools are normally available to the administrator of the website and are shown as a menu item in the admin bar.
236
+ When you will ask for help on the [support forum](https://wordpress.org/support/plugin/ad-inserter/) we'll ask you to enable remote debugging so the support team will be able to access debugging tools via url.
237
+
238
+ This will allow the support team to:
239
+
240
+ * Label inserted blocks - a border will be drawn around the blocks and a bar will be shown above them so the support will be able to see if/where and which blocks are inserted.
241
+ * Show possible positions for automatic insertion - in places where WP hooks are called a label is placed so the support will be able to see where your theme calls WP hooks
242
+ * Processing log - the log is inserted as HTML comment at the end of the page and shows data and settings used by Ad Inserter and the log of the plugin functions/hooks called during page generation - the support will be able to see the reason why some block was not inserted, how many times `the_content` hook is called, etc.
243
+ * Disable block insertions - sometimes the issues are caused by the inserted code - this way the support will be able to quickly disable insertions of Ad Inserter blocks to see the difference
244
+
245
+ Pages with debugging info are not cached - the debugging process will not be visible to anybody else. Once the help is not needed anymore you can disable remote debugging.
246
+
247
  = I have installed code for AdSense and I see ads placed at random positions. =
248
 
249
  You are probably using code for [AdSense Auto ads](https://adinserter.pro/documentation/adsense-ads#auto-ads).
352
 
353
  == Changelog ==
354
 
355
+ = 2.6.22 =
356
+ - Various security fixes
357
+ - Updated AdSense API authorization process
358
+ - Reduced layout shift when using client-side device detection
359
+ - Added option to block IP addresses for click fraud protection (Pro only)
360
+ - Few minor bug fixes, cosmetic changes and code improvements
361
+
362
  = 2.6.21 =
363
  - Improved compatibility with PHP 8
364
  - Few minor bug fixes, cosmetic changes and code improvements
518
 
519
  == Upgrade Notice ==
520
 
521
+ = 2.6.22 =
522
+ Various security fixes;
523
+ Updated AdSense API authorization process;
524
+ Reduced layout shift when using client-side device detection;
525
+ Added option to block IP addresses for click fraud protection (Pro only);
526
+ Few minor bug fixes, cosmetic changes and code improvements
527
+
528
  = 2.6.21 =
529
  Improved compatibility with PHP 8;
530
  Few minor bug fixes, cosmetic changes and code improvements
settings.php CHANGED
@@ -36,13 +36,8 @@ function generate_settings_form (){
36
  $start = 1;
37
  $end = 16;
38
 
39
- if (isset ($_GET ['subpage'])) $subpage = $_GET ['subpage'];
40
-
41
- if (isset ($_GET ['start'])) $start = $_GET ['start']; else $start = 1;
42
- if (!is_numeric ($start)) $start = 1;
43
- if ($start < 1 || $start > 96) $start = 1;
44
- $end = $start + 15;
45
- if ($end > 96) $end = 96;
46
 
47
  if (isset ($_POST ['ai-active-tab'])) {
48
  $active_tabs = json_decode ($_POST ['ai-active-tab']);
@@ -50,7 +45,8 @@ function generate_settings_form (){
50
  }
51
 
52
  if (isset ($_GET ['settings']) && is_numeric ($_GET ['settings'])) {
53
- $active_tab = $_GET ['settings'];
 
54
  if (isset ($_GET ['single'])) {
55
  $start = $active_tab;
56
  $end = $active_tab;
@@ -60,17 +56,17 @@ function generate_settings_form (){
60
  }
61
  }
62
  elseif (isset ($_GET ['tab']) && is_numeric ($_GET ['tab'])) {
63
- $active_tab = $_GET ['tab'];
64
  $start = intval (($active_tab - 1) / 16) * 16 + 1;
65
  $end = $start + 15;
66
- } else $active_tab = isset ($active_tabs [0]) ? $active_tabs [0] : $start;
67
 
68
  if (!is_numeric ($active_tab)) $active_tab = 1;
69
  if ($active_tab != 0) {
70
  if ($active_tab < $start || $active_tab > $end) $active_tab = $start;
71
  }
72
 
73
- $active_tab_0 = isset ($active_tabs [1]) ? $active_tabs [1] : 0;
74
 
75
  $disable_block_insertions = get_disable_block_insertions ();
76
  $disable_php_processing = get_disable_php_processing ();
@@ -208,7 +204,18 @@ function generate_settings_form (){
208
 
209
  ?>
210
 
211
- <div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" tab-setup-delay="<?php echo get_tab_setup_delay (); ?>" safe-mode="<?php echo defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode']) ? '1' : '0'; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" api_debugging="<?php echo strlen ($api = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='), '')); ?>" <?php if ($default_sidebar && strlen ($api) != 0) echo 'api_string="', base64_encode ($api), '"'; ?>></div>
 
 
 
 
 
 
 
 
 
 
 
212
  <?php
213
  if (function_exists ('ai_data_2')) ai_data_2 ();
214
  ?>
@@ -3890,7 +3897,7 @@ function ads_txt ($action) {
3890
  }
3891
  }
3892
 
3893
- $search_text = isset ($_GET ["search"]) ? trim ($_GET ["search"]) : '';
3894
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
3895
  foreach ($rows as $index => $row) {
3896
  $ads_line = implode (' ', $row ['ads_elements']);
@@ -4042,9 +4049,12 @@ function ads_txt ($action) {
4042
 
4043
  break;
4044
  case 'save':
 
 
 
 
4045
  if ($virtual) {
4046
  if (isset ($_POST ['text'])) {
4047
- $text = @base64_decode ($_POST ['text']);
4048
  if ($text != '') {
4049
  update_option (AI_ADS_TXT_NAME, $text);
4050
  } else {
@@ -4055,8 +4065,7 @@ function ads_txt ($action) {
4055
  }
4056
  } else {
4057
  if (isset ($_POST ['text']) && is_writable (dirname ($ads_txt_file))) {
4058
- $text = @base64_decode ($_POST ['text']);
4059
- @file_put_contents ($ads_txt_file, esc_html ($text));
4060
  }
4061
  }
4062
  break;
@@ -4066,9 +4075,8 @@ function ads_txt ($action) {
4066
  function ai_change_settings () {
4067
  global $block_object, $ai_db_options_extract;
4068
 
4069
- $command = isset ($_GET ["cmd"]) ? $_GET ["cmd"] : null;
4070
- $block = isset ($_GET ["cmd-block"]) ? $_GET ["cmd-block"] : null;
4071
- $data = isset ($_GET ["cmd-data"]) ? $_GET ["cmd-data"] : null;
4072
 
4073
  if ($block === null || $block < 1 || $block > 96 || $command === null) {
4074
  return;
@@ -4482,7 +4490,7 @@ function adsense_list () {
4482
 
4483
  if (!$show_all_ad_units && !$ad_unit ['active']) continue;
4484
 
4485
- $search_text = trim ($_GET ["adsense-list"]);
4486
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
4487
  $block_text = $ad_unit ['name'] . ' ' . $ad_unit ['code'] . ' ' . $ad_unit ['type'] . ' ' . $ad_unit ['size'];
4488
  foreach ($search_array as $search_item) {
@@ -4557,7 +4565,7 @@ function adsense_list () {
4557
  <?php else: ?>
4558
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 2', 'ad-inserter'); ?></h2>
4559
  <?php endif; ?>
4560
- <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><img src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ga-logo.png" style="margin: 3px 0 -4px 0;"/></a>
4561
  <div style="clear: both;"></div>
4562
  </div>
4563
  <?php if ($adsense_ids): ?>
@@ -4624,7 +4632,7 @@ function adsense_list () {
4624
  <td colspan="2" style="white-space: inherit;">
4625
  <div class="rounded" style="margin: 0;">
4626
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 1', 'ad-inserter'); ?></h2>
4627
- <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><img src="<?php echo AD_INSERTER_PLUGIN_IMAGES_URL; ?>ga-logo.png" style="margin: 3px 0 -4px 0;"/></a>
4628
  <div style="clear: both;"></div>
4629
  </div>
4630
  <p style="text-align: justify;"><?php /* translators: %s: Ad Inserter */ printf (__('Here can %s list configured AdSense ad units and get code for AdSense ads. To do this you need to authorize %s to access your AdSense account. The first step is to create a Google API project in order to get Client ID and Client Secret.', 'ad-inserter'),
@@ -4637,20 +4645,25 @@ function adsense_list () {
4637
  <td colspan="2" style="white-space: inherit;">
4638
  <ol>
4639
  <li title="Google APIs and Services console"><?php /* translators: %s: HTML tags */ printf (__('Go to %s Google APIs and Services console %s', 'ad-inserter'), '<a href="https://console.developers.google.com/" target="_blank">', '</a>'); ?></li>
4640
- <li title="Credentials"><?php /* translators: %1: Ad Inserter, 2, 3: HTML tags */ printf (__('Create %1$s project - if the project and IDs are already created click on the %2$s Credentials %3$s in the sidebar and go to step 16', 'ad-inserter'), '<strong>Ad Inserter</strong>', '<strong>', '</strong>'); ?></li>
4641
  <li title="Select a project"><?php /* translators: %s: HTML tags */ printf (__('Click on project selection and then click on the %s NEW PROJECT %s button to create a new project', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4642
  <li title="Create"><?php /* translators: 1: Ad Inserter, 2, 3: HTML tags */ printf (__('Enter %1$s for project name and click on the %2$s Create %3$s button', 'ad-inserter'), '<strong>Ad Inserter</strong>', '<strong>', '</strong>'); ?></li>
4643
  <li><?php /* translators: %s: HTML tags */ printf (__('Click on project selection, wait for the project to be created and then and select %s as the current project', 'ad-inserter'), '<strong>Ad Inserter</strong>'); ?></li>
4644
  <li title="ENABLE APIS AND SERVICES"><?php /* translators: %s: HTML tags */ printf (__('Click on %s ENABLE APIS AND SERVICES %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4645
  <li title="AdSense Management API"><?php /* translators: %s: HTML tags */ printf (__('Search for adsense and enable %s', 'ad-inserter'), '<strong>AdSense Management API</strong>'); ?></li>
4646
  <li title="Create credentials"><?php /* translators: %s: HTML tags */ printf (__('Click on %s CREATE CREDENTIALS %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
 
4647
  <li title="Where will you be calling the API from?"><?php /* translators: %s: HTML tags */ printf (__('For %s Where will you be calling the API from? %s select %s Other UI %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4648
  <li title="What data will you be accessing?"><?php /* translators: %s: HTML tags */ printf (__('For %s What data will you be accessing? %s select %s User data %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4649
  <li title="What credentials do I need?"><?php /* translators: %s: HTML tags */ printf (__('Click on %s What credentials do I need? %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4650
- <li title="Create an OAuth 2.0 client ID"><?php /* translators: %s: HTML tags */ printf (__('Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s Ad Inserter client %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4651
- <li title="Product name shown to users"><?php /* translators: %s: HTML tags */ printf (__('Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s enter %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>Ad Inserter</strong>'); ?></li>
4652
- <li title="Continue"><?php /* translators: %s: HTML tags */ printf (__('Click on %s Continue %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4653
- <li title="Done"><?php /* translators: %s: HTML tags */ printf (__('Click on %s Done %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
 
 
 
 
4654
  <li title=""><?php /* translators: %s: HTML tags */ printf (__('Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client secret %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4655
  <li><?php _e ('Copy them to the appropriate fields below', 'ad-inserter'); ?></li>
4656
  </ol>
@@ -4709,7 +4722,7 @@ function ai_adsense_code ($ad_slot_id) {
4709
  }
4710
  }
4711
 
4712
- function adsense_ad_name ($adsense_data) {
4713
  if (defined ('AI_ADSENSE_API')) {
4714
  $publisher_id = '';
4715
  $ad_units = array ();
@@ -4878,7 +4891,7 @@ function generate_list_options ($options) {
4878
  }
4879
  }
4880
 
4881
- function ai_check_page ($options) {
4882
  $download_urls = array ();
4883
 
4884
  // echo '["1","2","3","4"]';
36
  $start = 1;
37
  $end = 16;
38
 
39
+ if (isset ($_GET ['start']) && is_numeric ($start) && $start >= 1 && $start <= 96) $start = (int) $_GET ['start']; else $start = 1;
40
+ $end = min ($start + 15, 96);
 
 
 
 
 
41
 
42
  if (isset ($_POST ['ai-active-tab'])) {
43
  $active_tabs = json_decode ($_POST ['ai-active-tab']);
45
  }
46
 
47
  if (isset ($_GET ['settings']) && is_numeric ($_GET ['settings'])) {
48
+ $active_tab = (int) $_GET ['settings'];
49
+ if ($active_tab < 1 || $active_tab > 96) $active_tab = 1;
50
  if (isset ($_GET ['single'])) {
51
  $start = $active_tab;
52
  $end = $active_tab;
56
  }
57
  }
58
  elseif (isset ($_GET ['tab']) && is_numeric ($_GET ['tab'])) {
59
+ $active_tab = (int) $_GET ['tab'];
60
  $start = intval (($active_tab - 1) / 16) * 16 + 1;
61
  $end = $start + 15;
62
+ } else $active_tab = isset ($active_tabs [0]) ? (int) $active_tabs [0] : $start;
63
 
64
  if (!is_numeric ($active_tab)) $active_tab = 1;
65
  if ($active_tab != 0) {
66
  if ($active_tab < $start || $active_tab > $end) $active_tab = $start;
67
  }
68
 
69
+ $active_tab_0 = isset ($active_tabs [1]) ? (int) $active_tabs [1] : 0;
70
 
71
  $disable_block_insertions = get_disable_block_insertions ();
72
  $disable_php_processing = get_disable_php_processing ();
204
 
205
  ?>
206
 
207
+ <?php
208
+ if (function_exists ('ai_api_debugging')) {
209
+ $api_debugging = ai_api_debugging ();
210
+ } else $api_debugging = '';
211
+
212
+ if (function_exists ('ai_api_string')) {
213
+ $api_string = ai_api_string ();
214
+ } else $api_string = '';
215
+ ?>
216
+
217
+ <div id="ai-data" style="display: none;" version="<?php echo AD_INSERTER_VERSION; ?>" theme="<?php echo $syntax_highlighter_theme; ?>" tab-setup-delay="<?php echo get_tab_setup_delay (); ?>" safe-mode="<?php echo defined ('AI_SAFE_MODE') || isset ($_GET ['ai-safe-mode']) ? '1' : '0'; ?>" js_debugging="<?php echo $ai_wp_data [AI_BACKEND_JS_DEBUGGING] ? '1' : '0'; ?>" api_debugging="<?php echo $api_debugging; ?>" <?php echo $api_string; ?>></div>
218
+
219
  <?php
220
  if (function_exists ('ai_data_2')) ai_data_2 ();
221
  ?>
3897
  }
3898
  }
3899
 
3900
+ $search_text = isset ($_GET ["search"]) ? trim (esc_html ($_GET ["search"])) : '';
3901
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
3902
  foreach ($rows as $index => $row) {
3903
  $ads_line = implode (' ', $row ['ads_elements']);
4049
 
4050
  break;
4051
  case 'save':
4052
+ if (isset ($_POST ['text'])) {
4053
+ $text = esc_html (@base64_decode ($_POST ['text']));
4054
+ } else $text = '';
4055
+
4056
  if ($virtual) {
4057
  if (isset ($_POST ['text'])) {
 
4058
  if ($text != '') {
4059
  update_option (AI_ADS_TXT_NAME, $text);
4060
  } else {
4065
  }
4066
  } else {
4067
  if (isset ($_POST ['text']) && is_writable (dirname ($ads_txt_file))) {
4068
+ @file_put_contents ($ads_txt_file, $text);
 
4069
  }
4070
  }
4071
  break;
4075
  function ai_change_settings () {
4076
  global $block_object, $ai_db_options_extract;
4077
 
4078
+ $command = isset ($_GET ["cmd"]) ? esc_html ($_GET ["cmd"]) : null;
4079
+ $block = isset ($_GET ["cmd-block"]) ? (int) $_GET ["cmd-block"] : null;
 
4080
 
4081
  if ($block === null || $block < 1 || $block > 96 || $command === null) {
4082
  return;
4490
 
4491
  if (!$show_all_ad_units && !$ad_unit ['active']) continue;
4492
 
4493
+ $search_text = trim (esc_html ($_GET ["adsense-list"]));
4494
  if ($search_text != '') $search_array = explode (' ', $search_text); else $search_array = array ();
4495
  $block_text = $ad_unit ['name'] . ' ' . $ad_unit ['code'] . ' ' . $ad_unit ['type'] . ' ' . $ad_unit ['size'];
4496
  foreach ($search_array as $search_item) {
4565
  <?php else: ?>
4566
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 2', 'ad-inserter'); ?></h2>
4567
  <?php endif; ?>
4568
+ <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><span class="checkbox-icon icon-adsense on" style="margin: 4px 0;"></span></a>
4569
  <div style="clear: both;"></div>
4570
  </div>
4571
  <?php if ($adsense_ids): ?>
4632
  <td colspan="2" style="white-space: inherit;">
4633
  <div class="rounded" style="margin: 0;">
4634
  <h2 style="margin: 5px 0; float: left;"><strong><?php echo AD_INSERTER_NAME; ?></strong> <?php _e ('AdSense Integration - Step 1', 'ad-inserter'); ?></h2>
4635
+ <a href="https://www.google.com/adsense/login" class="simple-link" style="float: right;" target="_blank" title="<?php _e ('Google AdSense Homepage', 'ad-inserter'); ?>"><span class="checkbox-icon icon-adsense on" style="margin: 4px 0;"></span></a>
4636
  <div style="clear: both;"></div>
4637
  </div>
4638
  <p style="text-align: justify;"><?php /* translators: %s: Ad Inserter */ printf (__('Here can %s list configured AdSense ad units and get code for AdSense ads. To do this you need to authorize %s to access your AdSense account. The first step is to create a Google API project in order to get Client ID and Client Secret.', 'ad-inserter'),
4645
  <td colspan="2" style="white-space: inherit;">
4646
  <ol>
4647
  <li title="Google APIs and Services console"><?php /* translators: %s: HTML tags */ printf (__('Go to %s Google APIs and Services console %s', 'ad-inserter'), '<a href="https://console.developers.google.com/" target="_blank">', '</a>'); ?></li>
4648
+ <li title="Credentials"><?php /* translators: %1: Ad Inserter, 2, 3: HTML tags */ printf (__('Create %1$s project - if the project and IDs are already created click on the %2$s Credentials %3$s in the sidebar and go to step 21', 'ad-inserter'), '<strong>Ad Inserter</strong>', '<strong>', '</strong>'); ?></li>
4649
  <li title="Select a project"><?php /* translators: %s: HTML tags */ printf (__('Click on project selection and then click on the %s NEW PROJECT %s button to create a new project', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4650
  <li title="Create"><?php /* translators: 1: Ad Inserter, 2, 3: HTML tags */ printf (__('Enter %1$s for project name and click on the %2$s Create %3$s button', 'ad-inserter'), '<strong>Ad Inserter</strong>', '<strong>', '</strong>'); ?></li>
4651
  <li><?php /* translators: %s: HTML tags */ printf (__('Click on project selection, wait for the project to be created and then and select %s as the current project', 'ad-inserter'), '<strong>Ad Inserter</strong>'); ?></li>
4652
  <li title="ENABLE APIS AND SERVICES"><?php /* translators: %s: HTML tags */ printf (__('Click on %s ENABLE APIS AND SERVICES %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4653
  <li title="AdSense Management API"><?php /* translators: %s: HTML tags */ printf (__('Search for adsense and enable %s', 'ad-inserter'), '<strong>AdSense Management API</strong>'); ?></li>
4654
  <li title="Create credentials"><?php /* translators: %s: HTML tags */ printf (__('Click on %s CREATE CREDENTIALS %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4655
+ <li title="Which API are you using?"><?php /* translators: %s: HTML tags */ printf (__('For %s Which API are you using? %s select %s AdSense Management API %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4656
  <li title="Where will you be calling the API from?"><?php /* translators: %s: HTML tags */ printf (__('For %s Where will you be calling the API from? %s select %s Other UI %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4657
  <li title="What data will you be accessing?"><?php /* translators: %s: HTML tags */ printf (__('For %s What data will you be accessing? %s select %s User data %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4658
  <li title="What credentials do I need?"><?php /* translators: %s: HTML tags */ printf (__('Click on %s What credentials do I need? %s', 'ad-inserter'), '<strong>', '</strong>'); ?></li>
4659
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('When %s Set up OAuth consent screen %s window is displayed select %s Setup Consent Screen %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4660
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('For %s User Type %s select %s External %s and click on %s CREATE %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4661
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('For %s App name %s enter %s and for %s User support email %s select your Google account email address', 'ad-inserter'), '<strong>', '</strong>', '<strong>Ad Inserter</strong>', '<strong>', '</strong>'); ?></li>
4662
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('For %s Developer contact information %s enter your email address and click on %s SAVE AND CONTINUE %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4663
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('Click again on %s SAVE AND CONTINUE %s and then click on %s ADD USERS %s and add your Google account email address', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4664
+ <li title="Set up OAuth consent screen"><?php /* translators: %s: HTML tags */ printf (__('Click again on %s SAVE AND CONTINUE %s and then on %s BACK TO DASHBOARD %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4665
+ <li title="Create an OAuth 2.0 client ID"><?php /* translators: %s: HTML tags */ printf (__('Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s Ad Inserter client %s and then click on %s REFRESH %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4666
+ <li title="Create OAuth client ID"><?php /* translators: %s: HTML tags */ printf (__('Click on %s Create OAuth client ID %s and then click on %s DONE %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4667
  <li title=""><?php /* translators: %s: HTML tags */ printf (__('Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client secret %s', 'ad-inserter'), '<strong>', '</strong>', '<strong>', '</strong>', '<strong>', '</strong>'); ?></li>
4668
  <li><?php _e ('Copy them to the appropriate fields below', 'ad-inserter'); ?></li>
4669
  </ol>
4722
  }
4723
  }
4724
 
4725
+ function adsense_ad_name () {
4726
  if (defined ('AI_ADSENSE_API')) {
4727
  $publisher_id = '';
4728
  $ad_units = array ();
4891
  }
4892
  }
4893
 
4894
+ function ai_check_page () {
4895
  $download_urls = array ();
4896
 
4897
  // echo '["1","2","3","4"]';