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

Version Description

  • Added shortcode to disable ad blocking detection code
  • Added options to disable ad blocking actions for administrators or logged in users
  • Added option to change PDF report footer (Pro only)
  • Added support for public ad impression and click reports (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.4.13
Comparing to
See all releases

Code changes from version 2.4.12 to 2.4.13

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.4.12
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
@@ -15,6 +15,12 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
18
  Ad Inserter 2.4.12 - 2019-03-21
19
  - Added ads.txt editor
20
  - Added option to prevent disabling caching for logged in administrators
@@ -736,6 +742,7 @@ function ai_process_head_codes ($head) {
736
  $head = preg_replace ("#<!--\[AI(.+?)\]-->#", '', $head);
737
  }
738
 
 
739
  return ($head);
740
  }
741
 
@@ -1513,6 +1520,13 @@ function ai_init_hook () {
1513
  }
1514
 
1515
  add_filter ('pre_do_shortcode_tag', 'ai_pre_do_shortcode_tag', 10, 4);
 
 
 
 
 
 
 
1516
  }
1517
 
1518
  //function ai_upgrader_process_complete_hook ($upgrader_object, $options) {
@@ -1719,7 +1733,7 @@ function ai_wp_enqueue_scripts_hook () {
1719
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
1720
  $ai_wp_data [AI_LAZY_LOADING] ||
1721
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
1722
- (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION]);
1723
 
1724
  if ($footer_inline_scripts ||
1725
  ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 ||
@@ -2085,7 +2099,7 @@ function add_footer_inline_scripts () {
2085
 
2086
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
2087
 
2088
- if ($ai_wp_data [AI_ADB_DETECTION]) {
2089
  if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
2090
  echo '<!-- Code for ad blocking detection -->', "\n";
2091
  echo '<!--noptimize-->', "\n";
@@ -2112,7 +2126,7 @@ function add_footer_inline_scripts () {
2112
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
2113
  $ai_wp_data [AI_LAZY_LOADING] ||
2114
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
2115
- (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION]);
2116
 
2117
  // if (($footer_inline_scripts || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) && !wp_script_is ('jquery', 'done')) {
2118
  if ($footer_inline_scripts && !wp_script_is ('jquery', 'done')) {
@@ -2166,7 +2180,7 @@ function add_footer_inline_scripts () {
2166
  }
2167
 
2168
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
2169
- if ($ai_wp_data [AI_ADB_DETECTION]) {
2170
  if (!function_exists ('add_footer_inline_scripts_2')) echo ai_replace_js_data (ai_adb_code ());
2171
  }
2172
  }
@@ -2628,13 +2642,13 @@ function ai_wp_head_hook () {
2628
  $start_time = microtime (true);
2629
  }
2630
 
2631
- if (defined ('AI_BUFFERING')) {
2632
- if (get_output_buffering ()) {
2633
- if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2634
- ai_buffering_start ();
2635
- }
2636
- }
2637
- }
2638
 
2639
  if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0) {
2640
  echo "\n<script>
@@ -3304,7 +3318,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3304
  echo 'AD BLOCKING DETECTION: ', $ai_wp_data [AI_ADB_DETECTION] ? 'ENABLED' : 'DISABLED', "\n";
3305
  if ($ai_wp_data [AI_ADB_DETECTION]) {
3306
  echo 'ADB ACTION: ';
3307
- switch (get_adb_action ()) {
3308
  case AI_ADB_ACTION_NONE:
3309
  echo AI_TEXT_ENG_NONE;
3310
  break;
@@ -3316,6 +3330,19 @@ function ai_write_debug_info ($write_processing_log = false) {
3316
  break;
3317
  }
3318
  echo "\n";
 
 
 
 
 
 
 
 
 
 
 
 
 
3319
  echo 'ADB DELAY ACTION: ', get_delay_action (), "\n";
3320
  echo 'ADB NO ACTION PERIOD: ', get_no_action_period (), "\n";
3321
  echo 'ADB SELECTORS: ', get_adb_selectors (true), "\n";
@@ -3325,7 +3352,7 @@ function ai_write_debug_info ($write_processing_log = false) {
3325
  echo 'ADB MESSAGE: ', $block_object [AI_ADB_MESSAGE_OPTION_NAME]->ai_getCode (), "\n";
3326
  echo 'ADB MESSAGE CSS: ', get_message_css (), "\n";
3327
  echo 'ADB OVERLAY CSS: ', get_overlay_css (), "\n";
3328
- echo 'ADB UNDISMISSIBLE: ', get_undismissible_message () ? 'ON' : 'OFF', "\n";
3329
  }
3330
  }
3331
 
@@ -3743,6 +3770,7 @@ function ai_check_plugin_options ($plugin_options = array ()) {
3743
  if (!isset ($plugin_options ['AD_LABEL'])) $plugin_options ['AD_LABEL'] = DEFAULT_AD_TITLE;
3744
  if (!isset ($plugin_options ['MAIN_CONTENT_ELEMENT'])) $plugin_options ['MAIN_CONTENT_ELEMENT'] = DEFAULT_MAIN_CONTENT_ELEMENT;
3745
  if (!isset ($plugin_options ['ADB_ACTION'])) $plugin_options ['ADB_ACTION'] = AI_DEFAULT_ADB_ACTION;
 
3746
  if (!isset ($plugin_options ['ADB_DELAY_ACTION'])) $plugin_options ['ADB_DELAY_ACTION'] = '';
3747
  if (!isset ($plugin_options ['ADB_NO_ACTION_PERIOD'])) $plugin_options ['ADB_NO_ACTION_PERIOD'] = AI_DEFAULT_ADB_NO_ACTION_PERIOD;
3748
  if (!isset ($plugin_options ['ADB_SELECTORS'])) $plugin_options ['ADB_SELECTORS'] = '';
@@ -3751,6 +3779,7 @@ function ai_check_plugin_options ($plugin_options = array ()) {
3751
  if (!isset ($plugin_options ['ADB_OVERLAY_CSS'])) $plugin_options ['ADB_OVERLAY_CSS'] = AI_DEFAULT_ADB_OVERLAY_CSS;
3752
  if (!isset ($plugin_options ['ADB_MESSAGE_CSS'])) $plugin_options ['ADB_MESSAGE_CSS'] = AI_DEFAULT_ADB_MESSAGE_CSS;
3753
  if (!isset ($plugin_options ['ADB_UNDISMISSIBLE_MESSAGE'])) $plugin_options ['ADB_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE;
 
3754
  if (!isset ($plugin_options ['ADMIN_TOOLBAR_DEBUGGING'])) $plugin_options ['ADMIN_TOOLBAR_DEBUGGING'] = DEFAULT_ADMIN_TOOLBAR_DEBUGGING;
3755
  if (!isset ($plugin_options ['ADMIN_TOOLBAR_MOBILE'])) $plugin_options ['ADMIN_TOOLBAR_MOBILE'] = DEFAULT_ADMIN_TOOLBAR_MOBILE;
3756
  if (!isset ($plugin_options ['FORCE_ADMIN_TOOLBAR'])) $plugin_options ['FORCE_ADMIN_TOOLBAR'] = DEFAULT_FORCE_ADMIN_TOOLBAR;
@@ -4277,6 +4306,14 @@ function get_adb_action ($saved_value = false) {
4277
 
4278
  if (!$saved_value) {
4279
  if ($ai_wp_data [AI_CODE_FOR_IFRAME]) return AI_ADB_ACTION_NONE;
 
 
 
 
 
 
 
 
4280
  if (isset ($ai_wp_data [AI_ADB_SHORTCODE_ACTION])) return ($ai_wp_data [AI_ADB_SHORTCODE_ACTION]);
4281
  }
4282
 
@@ -4284,6 +4321,14 @@ function get_adb_action ($saved_value = false) {
4284
 
4285
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_ACTION']);
4286
  }
 
 
 
 
 
 
 
 
4287
 
4288
  function get_delay_action ($return_number = false) {
4289
  global $ai_db_options;
@@ -4361,13 +4406,28 @@ function get_overlay_css () {
4361
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_OVERLAY_CSS']);
4362
  }
4363
 
4364
- function get_undismissible_message () {
4365
- global $ai_db_options;
 
 
 
 
 
 
 
 
 
 
4366
 
4367
  if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE'])) $ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE;
4368
 
4369
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE']);
4370
  }
 
 
 
 
 
4371
 
4372
  function filter_html_class ($str){
4373
 
@@ -4467,7 +4527,8 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
4467
  }
4468
  elseif ($option == 'AD_LABEL' ||
4469
  $option == 'REPORT_HEADER_TITLE' ||
4470
- $option == 'REPORT_HEADER_DESCRIPTION') {
 
4471
  $value = str_replace (array ("\\", "?"), "", $value);
4472
  $value = esc_html ($value);
4473
  }
@@ -5573,6 +5634,7 @@ function ai_settings () {
5573
  if (isset ($_POST ['ad-label'])) $options ['AD_LABEL'] = filter_option ('AD_LABEL', $_POST ['ad-label']);
5574
  if (isset ($_POST ['main-content-element'])) $options ['MAIN_CONTENT_ELEMENT'] = filter_option ('MAIN_CONTENT_ELEMENT', $_POST ['main-content-element']);
5575
  if (isset ($_POST [AI_OPTION_ADB_ACTION])) $options ['ADB_ACTION'] = filter_option ('ADB_ACTION', $_POST [AI_OPTION_ADB_ACTION]);
 
5576
  if (isset ($_POST [AI_OPTION_ADB_DELAY_ACTION])) $options ['ADB_DELAY_ACTION'] = filter_option ('ADB_DELAY_ACTION', $_POST [AI_OPTION_ADB_DELAY_ACTION]);
5577
  if (isset ($_POST [AI_OPTION_ADB_NO_ACTION_PERIOD])) $options ['ADB_NO_ACTION_PERIOD'] = filter_option ('ADB_NO_ACTION_PERIOD', $_POST [AI_OPTION_ADB_NO_ACTION_PERIOD]);
5578
  if (isset ($_POST [AI_OPTION_ADB_SELECTORS])) $options ['ADB_SELECTORS'] = filter_option ('ADB_SELECTORS', $_POST [AI_OPTION_ADB_SELECTORS]);
@@ -5581,6 +5643,7 @@ function ai_settings () {
5581
  if (isset ($_POST [AI_OPTION_ADB_MESSAGE_CSS])) $options ['ADB_MESSAGE_CSS'] = filter_option ('ADB_MESSAGE_CSS', $_POST [AI_OPTION_ADB_MESSAGE_CSS]);
5582
  if (isset ($_POST [AI_OPTION_ADB_OVERLAY_CSS])) $options ['ADB_OVERLAY_CSS'] = filter_option ('ADB_OVERLAY_CSS', $_POST [AI_OPTION_ADB_OVERLAY_CSS]);
5583
  if (isset ($_POST [AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE])) $options ['ADB_UNDISMISSIBLE_MESSAGE'] = filter_option ('ADB_UNDISMISSIBLE_MESSAGE', $_POST [AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE]);
 
5584
  if (isset ($_POST ['force_admin_toolbar'])) $options ['FORCE_ADMIN_TOOLBAR'] = filter_option ('FORCE_ADMIN_TOOLBAR', $_POST ['force_admin_toolbar']);
5585
  if (isset ($_POST ['admin_toolbar_debugging'])) $options ['ADMIN_TOOLBAR_DEBUGGING'] = filter_option ('ADMIN_TOOLBAR_DEBUGGING', $_POST ['admin_toolbar_debugging']);
5586
  if (isset ($_POST ['admin_toolbar_mobile'])) $options ['ADMIN_TOOLBAR_MOBILE'] = filter_option ('ADMIN_TOOLBAR_MOBILE', $_POST ['admin_toolbar_mobile']);
@@ -6758,6 +6821,9 @@ function ai_process_shortcode (&$block, $atts) {
6758
  case 'no-action':
6759
  $ai_wp_data [AI_ADB_SHORTCODE_ACTION] = AI_ADB_ACTION_NONE;
6760
  break;
 
 
 
6761
  }
6762
  return "";
6763
  }
@@ -7588,6 +7654,18 @@ function ai_secret_key () {
7588
  return (substr (preg_replace ("/[^A-Za-z]+/", '', base64_encode ($key)), 0, 16));
7589
  }
7590
 
 
 
 
 
 
 
 
 
 
 
 
 
7591
 
7592
  //function ai_the_generator ($generator) {
7593
  //// return preg_replace ('/content="(.*?)"/', 'content="$1, '.AD_INSERTER_NAME.' '. AD_INSERTER_VERSION.'"', $generator);
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.4.13
6
  Description: Ad management with many advanced advertising features to insert ads at optimal positions
7
  Author: Igor Funa
8
  Author URI: http://igorfuna.com/
15
 
16
  Change Log
17
 
18
+ Ad Inserter 2.4.13 - 2019-04-12
19
+ - Added shortcode to disable ad blocking detection code
20
+ - Added options to disable ad blocking actions for administrators or logged in users
21
+ - Added option to change PDF report footer (Pro only)
22
+ - Added support for public ad impression and click reports (Pro only)
23
+ - Few minor bug fixes, cosmetic changes and code improvements
24
  Ad Inserter 2.4.12 - 2019-03-21
25
  - Added ads.txt editor
26
  - Added option to prevent disabling caching for logged in administrators
742
  $head = preg_replace ("#&lt;!--\[AI(.+?)\]--&gt;#", '', $head);
743
  }
744
 
745
+ $head = preg_replace ("#<script .+js/ai\-jquery\.js.+></script>\n#", '', $head);
746
  return ($head);
747
  }
748
 
1520
  }
1521
 
1522
  add_filter ('pre_do_shortcode_tag', 'ai_pre_do_shortcode_tag', 10, 4);
1523
+ if (defined ('AI_BUFFERING')) {
1524
+ if (get_output_buffering ()) {
1525
+ if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
1526
+ ai_buffering_start ();
1527
+ }
1528
+ }
1529
+ }
1530
  }
1531
 
1532
  //function ai_upgrader_process_complete_hook ($upgrader_object, $options) {
1733
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
1734
  $ai_wp_data [AI_LAZY_LOADING] ||
1735
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
1736
+ (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]));
1737
 
1738
  if ($footer_inline_scripts ||
1739
  ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 ||
2099
 
2100
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
2101
 
2102
+ if ($ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED])) {
2103
  if (function_exists ('add_footer_inline_scripts_1')) add_footer_inline_scripts_1 (); else {
2104
  echo '<!-- Code for ad blocking detection -->', "\n";
2105
  echo '<!--noptimize-->', "\n";
2126
  $ai_wp_data [AI_HTML_ELEMENT_SELECTION] ||
2127
  $ai_wp_data [AI_LAZY_LOADING] ||
2128
  $ai_wp_data [AI_CLIENT_SIDE_INSERTION] ||
2129
+ (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION && $ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]));
2130
 
2131
  // if (($footer_inline_scripts || $ai_wp_data [AI_CLIENT_SIDE_INSERTION]) && !wp_script_is ('jquery', 'done')) {
2132
  if ($footer_inline_scripts && !wp_script_is ('jquery', 'done')) {
2180
  }
2181
 
2182
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
2183
+ if ($ai_wp_data [AI_ADB_DETECTION] && !isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED])) {
2184
  if (!function_exists ('add_footer_inline_scripts_2')) echo ai_replace_js_data (ai_adb_code ());
2185
  }
2186
  }
2642
  $start_time = microtime (true);
2643
  }
2644
 
2645
+ // if (defined ('AI_BUFFERING')) {
2646
+ // if (get_output_buffering ()) {
2647
+ // if ($ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
2648
+ // ai_buffering_start ();
2649
+ // }
2650
+ // }
2651
+ // }
2652
 
2653
  if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0) {
2654
  echo "\n<script>
3318
  echo 'AD BLOCKING DETECTION: ', $ai_wp_data [AI_ADB_DETECTION] ? 'ENABLED' : 'DISABLED', "\n";
3319
  if ($ai_wp_data [AI_ADB_DETECTION]) {
3320
  echo 'ADB ACTION: ';
3321
+ switch (get_adb_action (true)) {
3322
  case AI_ADB_ACTION_NONE:
3323
  echo AI_TEXT_ENG_NONE;
3324
  break;
3330
  break;
3331
  }
3332
  echo "\n";
3333
+ echo 'ADB NO ACTION: ';
3334
+ switch (get_adb_no_action (true)) {
3335
+ case AI_ADB_NO_ACTION_NONE:
3336
+ echo AI_TEXT_ENG_NONE;
3337
+ break;
3338
+ case AI_ADB_NO_ACTION_LOGGED_IN:
3339
+ echo AI_TEXT_ENG_DISPLAY_LOGGED_IN_USERS;
3340
+ break;
3341
+ case AI_ADB_NO_ACTION_ADMINISTRATORS:
3342
+ echo AI_TEXT_ENG_DISPLAY_ADMINISTRATORS;
3343
+ break;
3344
+ }
3345
+ echo "\n";
3346
  echo 'ADB DELAY ACTION: ', get_delay_action (), "\n";
3347
  echo 'ADB NO ACTION PERIOD: ', get_no_action_period (), "\n";
3348
  echo 'ADB SELECTORS: ', get_adb_selectors (true), "\n";
3352
  echo 'ADB MESSAGE: ', $block_object [AI_ADB_MESSAGE_OPTION_NAME]->ai_getCode (), "\n";
3353
  echo 'ADB MESSAGE CSS: ', get_message_css (), "\n";
3354
  echo 'ADB OVERLAY CSS: ', get_overlay_css (), "\n";
3355
+ echo 'ADB UNDISMISSIBLE: ', get_undismissible_message (true) ? 'ON' : 'OFF', "\n";
3356
  }
3357
  }
3358
 
3770
  if (!isset ($plugin_options ['AD_LABEL'])) $plugin_options ['AD_LABEL'] = DEFAULT_AD_TITLE;
3771
  if (!isset ($plugin_options ['MAIN_CONTENT_ELEMENT'])) $plugin_options ['MAIN_CONTENT_ELEMENT'] = DEFAULT_MAIN_CONTENT_ELEMENT;
3772
  if (!isset ($plugin_options ['ADB_ACTION'])) $plugin_options ['ADB_ACTION'] = AI_DEFAULT_ADB_ACTION;
3773
+ if (!isset ($plugin_options ['ADB_NO_ACTION'])) $plugin_options ['ADB_NO_ACTION'] = AI_DEFAULT_ADB_NO_ACTION;
3774
  if (!isset ($plugin_options ['ADB_DELAY_ACTION'])) $plugin_options ['ADB_DELAY_ACTION'] = '';
3775
  if (!isset ($plugin_options ['ADB_NO_ACTION_PERIOD'])) $plugin_options ['ADB_NO_ACTION_PERIOD'] = AI_DEFAULT_ADB_NO_ACTION_PERIOD;
3776
  if (!isset ($plugin_options ['ADB_SELECTORS'])) $plugin_options ['ADB_SELECTORS'] = '';
3779
  if (!isset ($plugin_options ['ADB_OVERLAY_CSS'])) $plugin_options ['ADB_OVERLAY_CSS'] = AI_DEFAULT_ADB_OVERLAY_CSS;
3780
  if (!isset ($plugin_options ['ADB_MESSAGE_CSS'])) $plugin_options ['ADB_MESSAGE_CSS'] = AI_DEFAULT_ADB_MESSAGE_CSS;
3781
  if (!isset ($plugin_options ['ADB_UNDISMISSIBLE_MESSAGE'])) $plugin_options ['ADB_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE;
3782
+ if (!isset ($plugin_options ['ADB_NO_UNDISMISSIBLE_MESSAGE'])) $plugin_options ['ADB_NO_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE;
3783
  if (!isset ($plugin_options ['ADMIN_TOOLBAR_DEBUGGING'])) $plugin_options ['ADMIN_TOOLBAR_DEBUGGING'] = DEFAULT_ADMIN_TOOLBAR_DEBUGGING;
3784
  if (!isset ($plugin_options ['ADMIN_TOOLBAR_MOBILE'])) $plugin_options ['ADMIN_TOOLBAR_MOBILE'] = DEFAULT_ADMIN_TOOLBAR_MOBILE;
3785
  if (!isset ($plugin_options ['FORCE_ADMIN_TOOLBAR'])) $plugin_options ['FORCE_ADMIN_TOOLBAR'] = DEFAULT_FORCE_ADMIN_TOOLBAR;
4306
 
4307
  if (!$saved_value) {
4308
  if ($ai_wp_data [AI_CODE_FOR_IFRAME]) return AI_ADB_ACTION_NONE;
4309
+ switch (get_adb_no_action ()) {
4310
+ case AI_ADB_NO_ACTION_LOGGED_IN:
4311
+ if (($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) return AI_ADB_ACTION_NONE;
4312
+ break;
4313
+ case AI_ADB_NO_ACTION_ADMINISTRATORS:
4314
+ if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0) return AI_ADB_ACTION_NONE;
4315
+ break;
4316
+ }
4317
  if (isset ($ai_wp_data [AI_ADB_SHORTCODE_ACTION])) return ($ai_wp_data [AI_ADB_SHORTCODE_ACTION]);
4318
  }
4319
 
4321
 
4322
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_ACTION']);
4323
  }
4324
+ function get_adb_no_action ($saved_value = false) {
4325
+ global $ai_db_options, $ai_wp_data;
4326
+ if (!$saved_value) {
4327
+ if ($ai_wp_data [AI_CODE_FOR_IFRAME]) return AI_ADB_NO_ACTION_NONE;
4328
+ }
4329
+ if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_ACTION'])) $ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_ACTION'] = AI_DEFAULT_ADB_NO_ACTION;
4330
+ return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_ACTION']);
4331
+ }
4332
 
4333
  function get_delay_action ($return_number = false) {
4334
  global $ai_db_options;
4406
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_OVERLAY_CSS']);
4407
  }
4408
 
4409
+ function get_undismissible_message ($saved_value = false) {
4410
+ global $ai_db_options, $ai_wp_data;
4411
+ if (!$saved_value) {
4412
+ switch (get_no_undismissible_message ()) {
4413
+ case AI_ADB_NO_ACTION_LOGGED_IN:
4414
+ if (($ai_wp_data [AI_WP_USER] & AI_USER_LOGGED_IN) != 0) return AI_DISABLED;
4415
+ break;
4416
+ case AI_ADB_NO_ACTION_ADMINISTRATORS:
4417
+ if (($ai_wp_data [AI_WP_USER] & AI_USER_ADMINISTRATOR) != 0) return AI_DISABLED;
4418
+ break;
4419
+ }
4420
+ }
4421
 
4422
  if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE'])) $ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE;
4423
 
4424
  return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_UNDISMISSIBLE_MESSAGE']);
4425
  }
4426
+ function get_no_undismissible_message () {
4427
+ global $ai_db_options;
4428
+ if (!isset ($ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_UNDISMISSIBLE_MESSAGE'])) $ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_UNDISMISSIBLE_MESSAGE'] = AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE;
4429
+ return ($ai_db_options [AI_OPTION_GLOBAL]['ADB_NO_UNDISMISSIBLE_MESSAGE']);
4430
+ }
4431
 
4432
  function filter_html_class ($str){
4433
 
4527
  }
4528
  elseif ($option == 'AD_LABEL' ||
4529
  $option == 'REPORT_HEADER_TITLE' ||
4530
+ $option == 'REPORT_HEADER_DESCRIPTION' ||
4531
+ $option == 'REPORT_FOOTER') {
4532
  $value = str_replace (array ("\\", "?"), "", $value);
4533
  $value = esc_html ($value);
4534
  }
5634
  if (isset ($_POST ['ad-label'])) $options ['AD_LABEL'] = filter_option ('AD_LABEL', $_POST ['ad-label']);
5635
  if (isset ($_POST ['main-content-element'])) $options ['MAIN_CONTENT_ELEMENT'] = filter_option ('MAIN_CONTENT_ELEMENT', $_POST ['main-content-element']);
5636
  if (isset ($_POST [AI_OPTION_ADB_ACTION])) $options ['ADB_ACTION'] = filter_option ('ADB_ACTION', $_POST [AI_OPTION_ADB_ACTION]);
5637
+ if (isset ($_POST [AI_OPTION_ADB_NO_ACTION])) $options ['ADB_NO_ACTION'] = filter_option ('ADB_NO_ACTION', $_POST [AI_OPTION_ADB_NO_ACTION]);
5638
  if (isset ($_POST [AI_OPTION_ADB_DELAY_ACTION])) $options ['ADB_DELAY_ACTION'] = filter_option ('ADB_DELAY_ACTION', $_POST [AI_OPTION_ADB_DELAY_ACTION]);
5639
  if (isset ($_POST [AI_OPTION_ADB_NO_ACTION_PERIOD])) $options ['ADB_NO_ACTION_PERIOD'] = filter_option ('ADB_NO_ACTION_PERIOD', $_POST [AI_OPTION_ADB_NO_ACTION_PERIOD]);
5640
  if (isset ($_POST [AI_OPTION_ADB_SELECTORS])) $options ['ADB_SELECTORS'] = filter_option ('ADB_SELECTORS', $_POST [AI_OPTION_ADB_SELECTORS]);
5643
  if (isset ($_POST [AI_OPTION_ADB_MESSAGE_CSS])) $options ['ADB_MESSAGE_CSS'] = filter_option ('ADB_MESSAGE_CSS', $_POST [AI_OPTION_ADB_MESSAGE_CSS]);
5644
  if (isset ($_POST [AI_OPTION_ADB_OVERLAY_CSS])) $options ['ADB_OVERLAY_CSS'] = filter_option ('ADB_OVERLAY_CSS', $_POST [AI_OPTION_ADB_OVERLAY_CSS]);
5645
  if (isset ($_POST [AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE])) $options ['ADB_UNDISMISSIBLE_MESSAGE'] = filter_option ('ADB_UNDISMISSIBLE_MESSAGE', $_POST [AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE]);
5646
+ if (isset ($_POST [AI_OPTION_ADB_NO_UNDISMISSIBLE_MESSAGE]))$options ['ADB_NO_UNDISMISSIBLE_MESSAGE'] = filter_option ('ADB_NO_UNDISMISSIBLE_MESSAGE', $_POST [AI_OPTION_ADB_NO_UNDISMISSIBLE_MESSAGE]);
5647
  if (isset ($_POST ['force_admin_toolbar'])) $options ['FORCE_ADMIN_TOOLBAR'] = filter_option ('FORCE_ADMIN_TOOLBAR', $_POST ['force_admin_toolbar']);
5648
  if (isset ($_POST ['admin_toolbar_debugging'])) $options ['ADMIN_TOOLBAR_DEBUGGING'] = filter_option ('ADMIN_TOOLBAR_DEBUGGING', $_POST ['admin_toolbar_debugging']);
5649
  if (isset ($_POST ['admin_toolbar_mobile'])) $options ['ADMIN_TOOLBAR_MOBILE'] = filter_option ('ADMIN_TOOLBAR_MOBILE', $_POST ['admin_toolbar_mobile']);
6821
  case 'no-action':
6822
  $ai_wp_data [AI_ADB_SHORTCODE_ACTION] = AI_ADB_ACTION_NONE;
6823
  break;
6824
+ case 'disabled':
6825
+ $ai_wp_data [AI_ADB_SHORTCODE_DISABLED] = true;
6826
+ break;
6827
  }
6828
  return "";
6829
  }
7654
  return (substr (preg_replace ("/[^A-Za-z]+/", '', base64_encode ($key)), 0, 16));
7655
  }
7656
 
7657
+ function ai_get_unique_string ($start = 0, $length = 32, $seed = '') {
7658
+ $string = 'AI#1' . $seed;
7659
+ if (defined ('AUTH_KEY')) $string .= AUTH_KEY;
7660
+ if (defined ('SECURE_AUTH_KEY')) $string .= SECURE_AUTH_KEY;
7661
+ if (defined ('LOGGED_IN_KEY')) $string .= LOGGED_IN_KEY;
7662
+ if (defined ('NONCE_KEY')) $string .= NONCE_KEY;
7663
+ if (defined ('AUTH_SALT')) $string .= AUTH_SALT;
7664
+ if (defined ('SECURE_AUTH_SALT')) $string .= SECURE_AUTH_SALT;
7665
+ if (defined ('LOGGED_IN_SALT')) $string .= LOGGED_IN_SALT;
7666
+ if (defined ('NONCE_SALT')) $string .= NONCE_SALT;
7667
+ return (substr (md5 ($string), $start, $length));
7668
+ }
7669
 
7670
  //function ai_the_generator ($generator) {
7671
  //// return preg_replace ('/content="(.*?)"/', 'content="$1, '.AD_INSERTER_NAME.' '. AD_INSERTER_VERSION.'"', $generator);
class.php CHANGED
@@ -2357,6 +2357,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2357
  $random_threshold = mt_rand (0, 100);
2358
  foreach ($thresholds as $index => $threshold) {
2359
  $this->code_version = $index + 1;
 
2360
  if ($random_threshold <= $threshold) break;
2361
  }
2362
  }
2357
  $random_threshold = mt_rand (0, 100);
2358
  foreach ($thresholds as $index => $threshold) {
2359
  $this->code_version = $index + 1;
2360
+ if ($threshold < 0) continue;
2361
  if ($random_threshold <= $threshold) break;
2362
  }
2363
  }
constants.php CHANGED
@@ -29,7 +29,7 @@ if (!defined( 'AD_INSERTER_NAME'))
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
- define ('AD_INSERTER_VERSION', '2.4.12');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
@@ -167,6 +167,7 @@ define ('AI_OPTION_IMPORT', 'import');
167
  define ('AI_OPTION_IMPORT_NAME', 'import_name');
168
 
169
  define ('AI_OPTION_ADB_ACTION', 'adb-action');
 
170
  define ('AI_OPTION_ADB_SELECTORS', 'adb-selectors');
171
  define ('AI_OPTION_ADB_DELAY_ACTION', 'adb-delay-action');
172
  define ('AI_OPTION_ADB_NO_ACTION_PERIOD', 'adb-no-action-period');
@@ -175,7 +176,7 @@ define ('AI_OPTION_ADB_CUSTOM_REDIRECTION_URL', 'adb-custom-redirection-url');
175
  define ('AI_OPTION_ADB_MESSAGE_CSS', 'adb-message-css');
176
  define ('AI_OPTION_ADB_OVERLAY_CSS', 'adb-overlay-css');
177
  define ('AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE', 'adb-undismissible-message');
178
-
179
 
180
  //misc
181
  define('AD_EMPTY_VALUE','');
@@ -589,6 +590,9 @@ define ('AI_TEXT_ENG_NONE', 'None');
589
  define ('AI_TEXT_ENG_POPUP_MESSAGE', 'Popup Message');
590
  define ('AI_TEXT_ENG_REDIRECTION', 'Redirection');
591
 
 
 
 
592
  define ('AI_ADB_BLOCK_ACTION_DO_NOTHING', 0);
593
  define ('AI_ADB_BLOCK_ACTION_REPLACE', 1);
594
  define ('AI_ADB_BLOCK_ACTION_SHOW', 2);
@@ -801,9 +805,11 @@ define ('AI_BASIC_ADB_MESSAGE_CSS', "position: fixed; top: 50%; left
801
  define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
802
  //define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
803
  define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
 
804
  define ('AI_DEFAULT_ADB_NO_ACTION_PERIOD', 30);
805
  define ('AI_DEFAULT_ADB_REDIRECTION_PAGE', 0);
806
  define ('AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE', AI_DISABLED);
 
807
  define ('AI_ADB_VERSION_MASK', 0x7F);
808
  define ('AI_ADB_FLAG_BLOCKED', 0x80);
809
 
@@ -964,6 +970,7 @@ define ('AI_HEAD_CODES', 47);
964
  define ('AI_HEAD_GROUPS', 48);
965
  define ('AI_CURRENT_BLOCK_NUMBER', 50);
966
  define ('AI_ACTIVE_GROUP_NAMES', 51);
 
967
 
968
  define ('AI_CONTEXT_NONE', 0);
969
  define ('AI_CONTEXT_CONTENT', 1);
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
+ define ('AD_INSERTER_VERSION', '2.4.13');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
167
  define ('AI_OPTION_IMPORT_NAME', 'import_name');
168
 
169
  define ('AI_OPTION_ADB_ACTION', 'adb-action');
170
+ define ('AI_OPTION_ADB_NO_ACTION', 'adb-no-action');
171
  define ('AI_OPTION_ADB_SELECTORS', 'adb-selectors');
172
  define ('AI_OPTION_ADB_DELAY_ACTION', 'adb-delay-action');
173
  define ('AI_OPTION_ADB_NO_ACTION_PERIOD', 'adb-no-action-period');
176
  define ('AI_OPTION_ADB_MESSAGE_CSS', 'adb-message-css');
177
  define ('AI_OPTION_ADB_OVERLAY_CSS', 'adb-overlay-css');
178
  define ('AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE', 'adb-undismissible-message');
179
+ define ('AI_OPTION_ADB_NO_UNDISMISSIBLE_MESSAGE','adb-no-undismissible-message');
180
 
181
  //misc
182
  define('AD_EMPTY_VALUE','');
590
  define ('AI_TEXT_ENG_POPUP_MESSAGE', 'Popup Message');
591
  define ('AI_TEXT_ENG_REDIRECTION', 'Redirection');
592
 
593
+ define ('AI_ADB_NO_ACTION_NONE', 0);
594
+ define ('AI_ADB_NO_ACTION_LOGGED_IN', 1);
595
+ define ('AI_ADB_NO_ACTION_ADMINISTRATORS',2);
596
  define ('AI_ADB_BLOCK_ACTION_DO_NOTHING', 0);
597
  define ('AI_ADB_BLOCK_ACTION_REPLACE', 1);
598
  define ('AI_ADB_BLOCK_ACTION_SHOW', 2);
805
  define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
806
  //define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
807
  define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
808
+ define ('AI_DEFAULT_ADB_NO_ACTION', AI_ADB_NO_ACTION_NONE);
809
  define ('AI_DEFAULT_ADB_NO_ACTION_PERIOD', 30);
810
  define ('AI_DEFAULT_ADB_REDIRECTION_PAGE', 0);
811
  define ('AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE', AI_DISABLED);
812
+ define ('AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE', AI_ADB_NO_ACTION_NONE);
813
  define ('AI_ADB_VERSION_MASK', 0x7F);
814
  define ('AI_ADB_FLAG_BLOCKED', 0x80);
815
 
970
  define ('AI_HEAD_GROUPS', 48);
971
  define ('AI_CURRENT_BLOCK_NUMBER', 50);
972
  define ('AI_ACTIVE_GROUP_NAMES', 51);
973
+ define ('AI_ADB_SHORTCODE_DISABLED', 52);
974
 
975
  define ('AI_CONTEXT_NONE', 0);
976
  define ('AI_CONTEXT_CONTENT', 1);
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.4.12"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
@@ -448,6 +448,9 @@ div.automatic-insertion img {
448
  color: #b0d2fd;
449
  }
450
 
 
 
 
451
  .ai-list-button {
452
  display: table-cell;
453
  margin-right: 2px;
@@ -475,7 +478,7 @@ div.automatic-insertion img {
475
  -webkit-border-radius: 4px;
476
  -moz-border-radius: 4px;
477
  cursor: pointer;
478
- padding: 2px 2px;
479
  display: inline-block;
480
  margin: 0;
481
  font-family: inherit;
1
  #ai-data {
2
+ font-family: "2.4.13"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
448
  color: #b0d2fd;
449
  }
450
 
451
+ .checkbox-button.light-red.dashicons {
452
+ color: #ff8585;
453
+ }
454
  .ai-list-button {
455
  display: table-cell;
456
  margin-right: 2px;
478
  -webkit-border-radius: 4px;
479
  -moz-border-radius: 4px;
480
  cursor: pointer;
481
+ padding: 2px 3px;
482
  display: inline-block;
483
  margin: 0;
484
  font-family: inherit;
includes/js/ai-rotate.js CHANGED
@@ -94,6 +94,7 @@ jQuery (function ($) {
94
  var random_threshold = Math.round (Math.random () * 100);
95
  for (var index = 0; index < thresholds.length; index ++) {
96
  var random_index = index;
 
97
  if (random_threshold <= thresholds [index]) break;
98
  }
99
  } else {
94
  var random_threshold = Math.round (Math.random () * 100);
95
  for (var index = 0; index < thresholds.length; index ++) {
96
  var random_index = index;
97
+ if (thresholds [index] < 0) continue;
98
  if (random_threshold <= thresholds [index]) break;
99
  }
100
  } else {
includes/js/ai-rotate.min.js CHANGED
@@ -2,8 +2,8 @@ jQuery(function($){function b64e(str){return btoa(encodeURIComponent(str).replac
2
  rotation_block.length,"rotation blocks");for(var index=0;index<rotation_block.length;index++){if(ai_debug)console.log("AI ROTATE process rotation block index:",index);if(index==0)ai_process_single_rotation(rotation_block[index],true);else ai_process_single_rotation(rotation_block[index],false)}}else{if(ai_debug)console.log("AI ROTATE process rotation: 1 rotation block");ai_process_single_rotation(rotation_block,true)}};ai_process_single_rotation=function(rotation_block,trigger_rotation){var ai_debug=
3
  typeof ai_debugging!=="undefined";var rotate_options=$(".ai-rotate-option",rotation_block);if(rotate_options.length==0)return;if(ai_debug){console.log("AI ROTATE process single rotation");console.log("AI ROTATE","block",$(rotation_block).attr("class")+",",rotate_options.length,"options")}rotate_options.hide();if(typeof $(rotation_block).data("next")=="undefined")if(typeof $(rotate_options[0]).data("group")!="undefined"){var random_index=-1;var all_ai_groups=$("span[data-ai-groups]");var ai_groups=
4
  [];all_ai_groups.each(function(index){var visible=!!($(this)[0].offsetWidth||$(this)[0].offsetHeight||$(this)[0].getClientRects().length);if(visible)ai_groups.push(this)});if(ai_debug)console.log("AI ROTATE GROUPS:",ai_groups.length,"group markers found");if(ai_groups.length>=1){var groups=JSON.parse(b64d($(ai_groups).first().data("ai-groups")));if(ai_debug)console.log("AI ROTATE GROUPS:",groups);groups.forEach(function(group,index){if(random_index==-1)rotate_options.each(function(index){var option_group=
5
- b64d($(this).data("group"));if(option_group==group){random_index=index;return false}})})}}else{var thresholds_data=$(rotation_block).data("shares");if(typeof thresholds_data==="string"){var thresholds=JSON.parse(atob(thresholds_data));var random_threshold=Math.round(Math.random()*100);for(var index=0;index<thresholds.length;index++){var random_index=index;if(random_threshold<=thresholds[index])break}}else{var random_index=Math.floor(Math.random()*rotate_options.length);var d=new Date;var n=d.getMilliseconds();
6
- if(n%2)random_index=rotate_options.length-random_index-1}}else{var random_index=parseInt($(rotation_block).attr("data-next"));if(ai_debug)console.log("AI TIMED ROTATE next index:",random_index);var option=$(rotate_options[random_index]);if(typeof option.data("code")!="undefined")option=$(b64d(option.data("code")));var group_markers=option.find("span[data-ai-groups]").addBack("span[data-ai-groups]");if(group_markers.length!=0){if(ai_debug){var next_groups=JSON.parse(b64d(group_markers.first().data("ai-groups")));
7
  console.log("AI TIMED ROTATE next option sets groups",next_groups)}var group_rotations=$(".ai-rotation-groups");if(group_rotations.length!=0)setTimeout(function(){ai_process_group_rotations()},5)}}if(random_index<0||random_index>=rotate_options.length){if(ai_debug)console.log("AI ROTATE no option selected");return}var option=$(rotate_options[random_index]);var option_time_text="";if(typeof option.data("time")!="undefined"){var rotation_time=atob(option.data("time"));if(ai_debug){var option_name=b64d(option.data("name"));
8
  console.log("AI TIMED ROTATE index:",random_index+",","name:",'"'+option_name+'",',"time:",rotation_time)}if(rotation_time==0&&rotate_options.length>1){var next_random_index=random_index;do{next_random_index++;if(next_random_index>=rotate_options.length)next_random_index=0;var next_option=$(rotate_options[next_random_index]);if(typeof next_option.data("time")=="undefined"){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=0;if(ai_debug)console.log("AI TIMED ROTATE next option has no time: ",
9
  next_random_index);break}var next_rotation_time=atob(next_option.data("time"));if(ai_debug)console.log("AI TIMED ROTATE check:",next_random_index,"time:",next_rotation_time)}while(next_rotation_time==0&&next_random_index!=random_index);if(rotation_time!=0){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=atob(option.data("time"))}if(ai_debug)console.log("AI TIMED ROTATE index:",random_index,"time:",rotation_time)}if(rotation_time>0){var next_random_index=random_index+
2
  rotation_block.length,"rotation blocks");for(var index=0;index<rotation_block.length;index++){if(ai_debug)console.log("AI ROTATE process rotation block index:",index);if(index==0)ai_process_single_rotation(rotation_block[index],true);else ai_process_single_rotation(rotation_block[index],false)}}else{if(ai_debug)console.log("AI ROTATE process rotation: 1 rotation block");ai_process_single_rotation(rotation_block,true)}};ai_process_single_rotation=function(rotation_block,trigger_rotation){var ai_debug=
3
  typeof ai_debugging!=="undefined";var rotate_options=$(".ai-rotate-option",rotation_block);if(rotate_options.length==0)return;if(ai_debug){console.log("AI ROTATE process single rotation");console.log("AI ROTATE","block",$(rotation_block).attr("class")+",",rotate_options.length,"options")}rotate_options.hide();if(typeof $(rotation_block).data("next")=="undefined")if(typeof $(rotate_options[0]).data("group")!="undefined"){var random_index=-1;var all_ai_groups=$("span[data-ai-groups]");var ai_groups=
4
  [];all_ai_groups.each(function(index){var visible=!!($(this)[0].offsetWidth||$(this)[0].offsetHeight||$(this)[0].getClientRects().length);if(visible)ai_groups.push(this)});if(ai_debug)console.log("AI ROTATE GROUPS:",ai_groups.length,"group markers found");if(ai_groups.length>=1){var groups=JSON.parse(b64d($(ai_groups).first().data("ai-groups")));if(ai_debug)console.log("AI ROTATE GROUPS:",groups);groups.forEach(function(group,index){if(random_index==-1)rotate_options.each(function(index){var option_group=
5
+ b64d($(this).data("group"));if(option_group==group){random_index=index;return false}})})}}else{var thresholds_data=$(rotation_block).data("shares");if(typeof thresholds_data==="string"){var thresholds=JSON.parse(atob(thresholds_data));var random_threshold=Math.round(Math.random()*100);for(var index=0;index<thresholds.length;index++){var random_index=index;if(thresholds[index]<0)continue;if(random_threshold<=thresholds[index])break}}else{var random_index=Math.floor(Math.random()*rotate_options.length);
6
+ var d=new Date;var n=d.getMilliseconds();if(n%2)random_index=rotate_options.length-random_index-1}}else{var random_index=parseInt($(rotation_block).attr("data-next"));if(ai_debug)console.log("AI TIMED ROTATE next index:",random_index);var option=$(rotate_options[random_index]);if(typeof option.data("code")!="undefined")option=$(b64d(option.data("code")));var group_markers=option.find("span[data-ai-groups]").addBack("span[data-ai-groups]");if(group_markers.length!=0){if(ai_debug){var next_groups=JSON.parse(b64d(group_markers.first().data("ai-groups")));
7
  console.log("AI TIMED ROTATE next option sets groups",next_groups)}var group_rotations=$(".ai-rotation-groups");if(group_rotations.length!=0)setTimeout(function(){ai_process_group_rotations()},5)}}if(random_index<0||random_index>=rotate_options.length){if(ai_debug)console.log("AI ROTATE no option selected");return}var option=$(rotate_options[random_index]);var option_time_text="";if(typeof option.data("time")!="undefined"){var rotation_time=atob(option.data("time"));if(ai_debug){var option_name=b64d(option.data("name"));
8
  console.log("AI TIMED ROTATE index:",random_index+",","name:",'"'+option_name+'",',"time:",rotation_time)}if(rotation_time==0&&rotate_options.length>1){var next_random_index=random_index;do{next_random_index++;if(next_random_index>=rotate_options.length)next_random_index=0;var next_option=$(rotate_options[next_random_index]);if(typeof next_option.data("time")=="undefined"){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=0;if(ai_debug)console.log("AI TIMED ROTATE next option has no time: ",
9
  next_random_index);break}var next_rotation_time=atob(next_option.data("time"));if(ai_debug)console.log("AI TIMED ROTATE check:",next_random_index,"time:",next_rotation_time)}while(next_rotation_time==0&&next_random_index!=random_index);if(rotation_time!=0){random_index=next_random_index;option=$(rotate_options[random_index]);rotation_time=atob(option.data("time"))}if(ai_debug)console.log("AI TIMED ROTATE index:",random_index,"time:",rotation_time)}if(rotation_time>0){var next_random_index=random_index+
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.4.12";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
@@ -18,6 +18,7 @@ var settings_page = "";
18
  var dateFormat = "yy-mm-dd";
19
 
20
  var list_search_reload = false;
 
21
 
22
  var AI_DISABLED = 0;
23
  var AI_BEFORE_POST = 1;
@@ -1625,6 +1626,13 @@ jQuery(document).ready(function($) {
1625
  if (debug) console.log (message);
1626
  } else {
1627
  $("span#export-statistics-button-" + block).show ();
 
 
 
 
 
 
 
1628
  $( "div#load-error-" + block).html ('');
1629
  if (debug) console.log ("Custom statistics loaded: " + block);
1630
  configure_charts (container);
@@ -1744,6 +1752,7 @@ jQuery(document).ready(function($) {
1744
  block = id.replace ("custom-range-controls-","");
1745
  $("input#chart-start-date-"+block).attr ("value", $(this).data ("start-date"));
1746
  $("input#chart-end-date-"+block).attr ("value", $(this).data ("end-date"));
 
1747
  $("input#load-custom-range-"+block).click ();
1748
  });
1749
  }
@@ -4328,6 +4337,12 @@ jQuery(document).ready(function($) {
4328
  if (debug) console.log (message);
4329
  } else {
4330
  $('#ads-txt-controls').show ();
 
 
 
 
 
 
4331
  // data_container.disableSelection();
4332
  }
4333
  });
@@ -4905,6 +4920,44 @@ jQuery(document).ready(function($) {
4905
  setTimeout (function() {load_ads_txt ();}, 200);
4906
  }
4907
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4908
  });
4909
 
4910
 
1
+ var javascript_version = "2.4.13";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
18
  var dateFormat = "yy-mm-dd";
19
 
20
  var list_search_reload = false;
21
+ var ai_ctrl_pressed = false;
22
 
23
  var AI_DISABLED = 0;
24
  var AI_BEFORE_POST = 1;
1626
  if (debug) console.log (message);
1627
  } else {
1628
  $("span#export-statistics-button-" + block).show ();
1629
+ var public_report_button = $("#ai-main-toolbar-" + block + ' .public-report-button');
1630
+ public_report_button.show ();
1631
+ var urls = container.find ('span.ai-statistics-export-data.ai-public-report');
1632
+ public_report_button.attr ('href-ro', urls.data ('ro'));
1633
+ public_report_button.attr ('href-rw', urls.data ('rw'));
1634
+ urls.remove ();
1635
+ // console.log (ai_admin, JSON.stringify (ai_admin));
1636
  $( "div#load-error-" + block).html ('');
1637
  if (debug) console.log ("Custom statistics loaded: " + block);
1638
  configure_charts (container);
1752
  block = id.replace ("custom-range-controls-","");
1753
  $("input#chart-start-date-"+block).attr ("value", $(this).data ("start-date"));
1754
  $("input#chart-end-date-"+block).attr ("value", $(this).data ("end-date"));
1755
+ process_chart_dates (block);
1756
  $("input#load-custom-range-"+block).click ();
1757
  });
1758
  }
4337
  if (debug) console.log (message);
4338
  } else {
4339
  $('#ads-txt-controls').show ();
4340
+ if ($('#ads-txt-missing').length != 0) {
4341
+ $("#ads-txt-editor").addClass ('on');
4342
+ $("#ads-txt-table").removeClass ('on');
4343
+ $('#ads-txt-search').hide ();
4344
+ $('#ads-txt-save').show ();
4345
+ }
4346
  // data_container.disableSelection();
4347
  }
4348
  });
4920
  setTimeout (function() {load_ads_txt ();}, 200);
4921
  }
4922
  });
4923
+ $(document).keydown (function (event) {
4924
+ if (event.which == "17") {
4925
+ ai_ctrl_pressed = true;
4926
+ var public_report_button = $('.public-report-button');
4927
+ public_report_button.addClass ('light-red');
4928
+ public_report_button.attr ('title', $('.public-report-button').first ().attr ('title-rw'))
4929
+ .tooltip({
4930
+ track: true,
4931
+ delay: 700,
4932
+ showURL: false,
4933
+ showBody: " | ",
4934
+ fade: 250
4935
+ });
4936
+ }
4937
+ });
4938
+ $(document).keyup (function() {
4939
+ if (ai_ctrl_pressed) {
4940
+ ai_ctrl_pressed = false;
4941
+ var public_report_button = $('.public-report-button');
4942
+ public_report_button.removeClass ('light-red');
4943
+ public_report_button.attr ('title', $('.public-report-button').first ().attr ('title-ro'))
4944
+ .tooltip({
4945
+ track: true,
4946
+ delay: 700,
4947
+ showURL: false,
4948
+ showBody: " | ",
4949
+ fade: 250
4950
+ });
4951
+ }
4952
+ });
4953
+ $(".public-report-button").click (function () {
4954
+ if (ai_ctrl_pressed) {
4955
+ window.open ($(this).attr ('href-rw'), 'ai-rw');
4956
+ $(document).keyup ();
4957
+ } else {
4958
+ window.open ($(this).attr ('href-ro'), 'ai-ro');
4959
+ }
4960
+ });
4961
  });
4962
 
4963
 
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-03-19 21:11:59+00:00\n"
8
- "PO-Revision-Date: 2019-03-19 22:12+0100\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
@@ -16,129 +16,129 @@ msgstr ""
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
- #: ad-inserter.php:324
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
- #: ad-inserter.php:340
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
- #: ad-inserter.php:347
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
- #: ad-inserter.php:418
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
- #: ad-inserter.php:425
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
- #: ad-inserter.php:434
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
- #: ad-inserter.php:441
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
- #: ad-inserter.php:451
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
- #: ad-inserter.php:1030
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
- #: ad-inserter.php:1035
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
- #: ad-inserter.php:1040 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
- #: ad-inserter.php:1045 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
- #: ad-inserter.php:1050 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
- #: ad-inserter.php:1055 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
- #: ad-inserter.php:1102
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
- #: ad-inserter.php:1106
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
- #: ad-inserter.php:1315
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
- #: ad-inserter.php:1590 ad-inserter.php:2453
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
- #: ad-inserter.php:2024
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
- #: ad-inserter.php:2024
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
- #: ad-inserter.php:2025
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
- #: ad-inserter.php:2026
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
- #: ad-inserter.php:2027
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
- #: ad-inserter.php:2028
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
- #: ad-inserter.php:2029
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
- #: ad-inserter.php:2224
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
@@ -146,21 +146,21 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
- #: ad-inserter.php:2225 includes/functions.php:1494
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
- #: ad-inserter.php:2228
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
- #: ad-inserter.php:2229 includes/functions.php:1497
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
- #: ad-inserter.php:2239
164
  msgid ""
165
  "I would really appreciate it if you could give the plugin a 5-star rating on "
166
  "WordPres."
@@ -168,7 +168,7 @@ msgstr ""
168
  "Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
169
  "zvezicami."
170
 
171
- #: ad-inserter.php:2241
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website. Thank you, Igor"
@@ -177,105 +177,105 @@ msgstr ""
177
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
178
 
179
  #. translators: %s: Ad Inserter
180
- #: ad-inserter.php:2247
181
  msgid "Rate %s"
182
  msgstr "Ocenite %s"
183
 
184
- #: ad-inserter.php:2252
185
  msgid "I already did."
186
  msgstr "Sem že."
187
 
188
- #: ad-inserter.php:2266
189
  msgctxt "Menu item"
190
  msgid "Settings"
191
  msgstr "Nastavitve"
192
 
193
  #. translators: %s: Ad Inserter
194
- #: ad-inserter.php:2340
195
  msgctxt "Meta box name"
196
  msgid "%s Individual Exceptions"
197
  msgstr "Posamezne Izjeme za %s"
198
 
199
- #: ad-inserter.php:2369 ad-inserter.php:8000 class.php:1967
200
  #: includes/preview.php:1966 includes/preview.php:2010
201
- #: includes/preview.php:2047 settings.php:3639 strings.php:3
202
  msgid "Block"
203
  msgstr "Blok"
204
 
205
- #: ad-inserter.php:2370 settings.php:3640 settings.php:3714
206
  msgid "Name"
207
  msgstr "Ime"
208
 
209
- #: ad-inserter.php:2371 settings.php:3642
210
  msgid "Automatic insertion"
211
  msgstr "Samodejno vstavljanje"
212
 
213
- #: ad-inserter.php:2374
214
  msgid "Default insertion for pages"
215
  msgstr "Privzeto vstavljanje za strani"
216
 
217
- #: ad-inserter.php:2375
218
  msgid "Default insertion for posts"
219
  msgstr "Privzeto vstavljanje za prispevke"
220
 
221
  #. translators: For this post or page
222
- #: ad-inserter.php:2378
223
  msgctxt "Page"
224
  msgid "For this"
225
  msgstr "Za to"
226
 
227
- #: ad-inserter.php:2379
228
  msgctxt "Post"
229
  msgid "For this"
230
  msgstr "Za ta"
231
 
232
- #: ad-inserter.php:2387
233
  msgctxt "Enabled/disabled on all"
234
  msgid "pages"
235
  msgstr "straneh"
236
 
237
- #: ad-inserter.php:2388
238
  msgctxt "Default insertion for"
239
  msgid "pages"
240
  msgstr "strani"
241
 
242
- #: ad-inserter.php:2392
243
  msgctxt "Enabled/disabled on all"
244
  msgid "posts"
245
  msgstr "prispevkih"
246
 
247
- #: ad-inserter.php:2393
248
  msgctxt "Default insertion for"
249
  msgid "posts"
250
  msgstr "prispevke"
251
 
252
- #: ad-inserter.php:2412 ad-inserter.php:2425 strings.php:156
253
  msgid "Enabled"
254
  msgstr "Omogočeno"
255
 
256
  #. translators: Menu items
257
- #: ad-inserter.php:2412 ad-inserter.php:2425 includes/functions.php:2122
258
  #: strings.php:16
259
  msgid "Disabled"
260
  msgstr "Onemogočeno"
261
 
262
  #. translators: Enabled on all pages or posts
263
- #: ad-inserter.php:2415
264
  msgid "Enabled on all"
265
  msgstr "Omogočeno na vseh"
266
 
267
  #. translators: Disabled on all pages or posts
268
- #: ad-inserter.php:2417
269
  msgid "Disabled on all"
270
  msgstr "Onemogočeno na vseh"
271
 
272
  #. translators: No individual exceptions enabled for pages or posts
273
- #: ad-inserter.php:2445
274
  msgid "No individual exceptions enabled for"
275
  msgstr "Ni omogočenih posameznih izjem za"
276
 
277
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
278
- #: ad-inserter.php:2450
279
  msgid ""
280
  "Default insertion for %1$s can be configured for each block on %2$s page - "
281
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
@@ -285,7 +285,7 @@ msgstr ""
285
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
286
  "strani</strong>.<br />"
287
 
288
- #: ad-inserter.php:2455
289
  msgid ""
290
  "Default value is <strong>blank</strong> and means no individual exceptions "
291
  "(even if previously defined here).<br />"
@@ -293,7 +293,7 @@ msgstr ""
293
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
294
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
295
 
296
- #: ad-inserter.php:2458
297
  msgctxt "Pages"
298
  msgid ""
299
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -302,7 +302,7 @@ msgstr ""
302
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
303
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
304
 
305
- #: ad-inserter.php:2459
306
  msgctxt "Posts"
307
  msgid ""
308
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
@@ -311,61 +311,61 @@ msgstr ""
311
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
312
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
313
 
314
- #: ad-inserter.php:2461
315
  msgid "For more information check page %s"
316
  msgstr "Za več informacij poglejte stran %s"
317
 
318
  #. translators: Ad Inserter Exceptions documentation page
319
- #: ad-inserter.php:2463
320
  msgid "Individual Exceptions"
321
  msgstr "Posamezne Izjeme"
322
 
323
- #: ad-inserter.php:2508
324
  msgid "STATIC PAGE"
325
  msgstr "STATIČNA STRAN"
326
 
327
- #: ad-inserter.php:2511
328
  msgid "POST"
329
  msgstr "PRISPEVEK"
330
 
331
- #: ad-inserter.php:2514
332
  msgid "HOMEPAGE"
333
  msgstr "DOMAČA STRAN"
334
 
335
- #: ad-inserter.php:2517
336
  msgid "CATEGORY PAGE"
337
  msgstr "STRAN KATEGORIJE"
338
 
339
- #: ad-inserter.php:2520
340
  msgid "SEARCH PAGE"
341
  msgstr "STRAN ISKANJE"
342
 
343
- #: ad-inserter.php:2523
344
  msgid "ARCHIVE PAGE"
345
  msgstr "STRAN ARHIVA"
346
 
347
- #: ad-inserter.php:2526
348
  msgid "ERROR 404 PAGE"
349
  msgstr "STRAN NAPAKA 404"
350
 
351
- #: ad-inserter.php:2529
352
  msgid "AJAX CALL"
353
  msgstr "AJAX KLIC"
354
 
355
- #: ad-inserter.php:2532
356
  msgid "UNKNOWN PAGE TYPE"
357
  msgstr "NEZNAN TIP STRANI"
358
 
359
- #: ad-inserter.php:2549
360
  msgid "Click to delete ad blocking detection cokies"
361
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
362
 
363
- #: ad-inserter.php:2550
364
  msgid "AD BLOCKING STATUS UNKNOWN"
365
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
366
 
367
  #. translators: %s: AdSense Auto Ads
368
- #: ad-inserter.php:2574
369
  msgid ""
370
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
371
  "positions"
@@ -373,11 +373,11 @@ msgstr ""
373
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
374
  "položaje"
375
 
376
- #: ad-inserter.php:2713
377
  msgid "Code for insertion"
378
  msgstr "Koda za vstavljanje"
379
 
380
- #: ad-inserter.php:2713
381
  msgid "character"
382
  msgid_plural "characters"
383
  msgstr[0] "znak"
@@ -385,16 +385,16 @@ msgstr[1] "znaka"
385
  msgstr[2] "znaki"
386
  msgstr[3] "znakov"
387
 
388
- #: ad-inserter.php:2756
389
  msgid "Header code"
390
  msgstr "Koda v glavi"
391
 
392
- #: ad-inserter.php:2756
393
  msgctxt "Header code"
394
  msgid "DISABLED"
395
  msgstr "ONEMOGOČENA"
396
 
397
- #: ad-inserter.php:2756 ad-inserter.php:2978
398
  msgid "character inserted"
399
  msgid_plural "characters inserted"
400
  msgstr[0] "znak vstavljen"
@@ -402,43 +402,43 @@ msgstr[1] "znaka vstavljena"
402
  msgstr[2] "znaki vstavljeni"
403
  msgstr[3] "znakov vstavljenih"
404
 
405
- #: ad-inserter.php:2789
406
  msgid "Automatically placed by AdSense Auto ads code"
407
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
408
 
409
- #: ad-inserter.php:2978
410
  msgid "Footer code"
411
  msgstr "Koda v nogi"
412
 
413
- #: ad-inserter.php:2978
414
  msgctxt "Footer code"
415
  msgid "DISABLED"
416
  msgstr "ONEMOGOČENA"
417
 
418
- #: ad-inserter.php:2984
419
  msgid "JAVASCRIPT NOT WORKING"
420
  msgstr "JAVASCRIPT NE DELA"
421
 
422
- #: ad-inserter.php:2984
423
  msgid "NO JAVASCRIPT ERRORS"
424
  msgstr "BREZ JAVASCRIPT NAPAK"
425
 
426
- #: ad-inserter.php:2984
427
  msgid "JAVASCRIPT ERRORS"
428
  msgstr "JAVASCRIPT NAPAKE"
429
 
430
  #. translators: block name (block with default settings)
431
- #: ad-inserter.php:5059
432
  msgctxt "Block name"
433
  msgid "Default"
434
  msgstr "Privzeti"
435
 
436
  #. translators: %s: Ad Inserter
437
- #: ad-inserter.php:5624
438
  msgid "Error importing %s settings."
439
  msgstr "Napaka pri uvozu %s nastavitev."
440
 
441
- #: ad-inserter.php:5625
442
  msgid "Error importing settings for block"
443
  msgid_plural "Error importing settings for blocks:"
444
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
@@ -446,15 +446,15 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
446
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
447
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
448
 
449
- #: ad-inserter.php:5674
450
  msgid "Settings saved."
451
  msgstr "Nastavitve shranjene."
452
 
453
- #: ad-inserter.php:5759
454
  msgid "Settings cleared."
455
  msgstr "Nastavitve ponastavljene."
456
 
457
- #: ad-inserter.php:6104 ad-inserter.php:6106 ad-inserter.php:6129
458
  msgid "word"
459
  msgid_plural "words"
460
  msgstr[0] "beseda"
@@ -462,38 +462,38 @@ msgstr[1] "besedi"
462
  msgstr[2] "besede"
463
  msgstr[3] "besed"
464
 
465
- #: ad-inserter.php:6143 ad-inserter.php:6255
466
  msgid "HTML TAGS REMOVED"
467
  msgstr "HTML ZNAČKE ODSTRANJENE"
468
 
469
- #: ad-inserter.php:6331
470
  msgid "BEFORE COMMENTS"
471
  msgstr "PRED KOMENTARJI"
472
 
473
- #: ad-inserter.php:6439
474
  msgid "AFTER COMMENTS"
475
  msgstr "PO KOMETARJIH"
476
 
477
- #: ad-inserter.php:6502
478
  msgid "BETWEEN COMMENTS"
479
  msgstr "MED KOMENTARJI"
480
 
481
- #: ad-inserter.php:7647
482
  msgid "requires WordPress 4.0 or newer"
483
  msgstr "potrebuje WordPress 4.0 ali novejši"
484
 
485
- #: ad-inserter.php:7647
486
  msgid "Please update!"
487
  msgstr "Prosimo, posodobite!"
488
 
489
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
490
  #. name with HTML tags will be added)
491
- #: ad-inserter.php:7873
492
  msgid "Thank you for installing"
493
  msgstr "Hvala za namestitev vtičnika"
494
 
495
  #. translators: Opt-in message: %s: HTML tags
496
- #: ad-inserter.php:7875
497
  msgid ""
498
  "We would like to %s track its usage %s on your site. This is completely "
499
  "optional and can be disabled at any time."
@@ -501,7 +501,7 @@ msgstr ""
501
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
502
  "izbirno in se lahko izključi kadarkoli."
503
 
504
- #: ad-inserter.php:7877
505
  msgid ""
506
  "We don't record any sensitive data, only information regarding the WordPress "
507
  "environment and plugin usage, which will help us to make improvements to the "
@@ -511,7 +511,7 @@ msgstr ""
511
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
512
 
513
  #. translators: Deactivation message: %s: HTML tags
514
- #: ad-inserter.php:7914
515
  msgid ""
516
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
517
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -522,49 +522,49 @@ msgstr ""
522
  "nam %s in poskušali vam bomo pomagati."
523
 
524
  #. translators: %s: Ad Inserter
525
- #: ad-inserter.php:7957
526
  msgid "%s block."
527
  msgstr "%s blok."
528
 
529
  #. translators: widget title
530
- #: ad-inserter.php:7973 ad-inserter.php:8009
531
  msgid "Processing log"
532
  msgstr "Dnevnik procesiranja"
533
 
534
  #. translators: widget title
535
- #: ad-inserter.php:7975 ad-inserter.php:8010
536
  msgid "Dummy widget"
537
  msgstr "Prazen gradnik"
538
 
539
  #. translators: widget title
540
- #: ad-inserter.php:7977 ad-inserter.php:8008
541
  msgid "Debugging tools"
542
  msgstr "Orodja za razhroščevanje"
543
 
544
  #. translators: block status (widget title)
545
- #: ad-inserter.php:7984
546
  msgctxt "block"
547
  msgid "PAUSED"
548
  msgstr "USTAVLJEN"
549
 
550
- #: ad-inserter.php:7985
551
  msgid "WIDGET DISABLED"
552
  msgstr "GRADNIK ONEMOGOČEN"
553
 
554
- #: ad-inserter.php:7986
555
  msgid "Unknown block"
556
  msgstr "Neznan blok"
557
 
558
- #: ad-inserter.php:7995 includes/functions.php:2635 settings.php:1038
559
  msgid "Title"
560
  msgstr "Naslov"
561
 
562
- #: ad-inserter.php:8017
563
  msgctxt "Widget"
564
  msgid "Sticky"
565
  msgstr "Lepljiv"
566
 
567
- #: ad-inserter.php:8066
568
  msgid ""
569
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
570
  "Inserter you need to first deactivate Ad Inserter Pro."
@@ -573,7 +573,7 @@ msgstr ""
573
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
574
  "Inserter Pro."
575
 
576
- #: ad-inserter.php:8067
577
  msgid ""
578
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
579
  "will clear all settings that are available only in the Pro version "
@@ -608,11 +608,11 @@ msgstr "Pred prispevkom"
608
  msgid "After post"
609
  msgstr "Za prispevkom"
610
 
611
- #: class.php:1957 settings.php:1624 settings.php:3646
612
  msgid "Widget"
613
  msgstr "Gradnik"
614
 
615
- #: class.php:1962 settings.php:3644
616
  msgid "PHP function call"
617
  msgstr "Klic PHP funkcije"
618
 
@@ -649,69 +649,69 @@ msgctxt "block or widget"
649
  msgid "INSERTED BUT NOT VISIBLE"
650
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
651
 
652
- #: class.php:2410 class.php:2469
653
  msgid "ACTIVE GROUPS"
654
  msgstr "AKTIVNE SKUPINE"
655
 
656
  #. translators: %s: list parameters and type
657
- #: class.php:2644
658
  msgid "parameters='%s' type='%s'"
659
  msgstr "parametri='%s' tip='%s'"
660
 
661
  #. translators: %s: list parameters and type
662
- #: class.php:2646
663
  msgid "referers='%s' type='%s'"
664
  msgstr "napotitelji='%s' tip='%s'"
665
 
666
  #. translators: %s: list parameters and type
667
- #: class.php:2707
668
  msgid "countries='%s' type='%s'"
669
  msgstr "države='%s' tip='%s'"
670
 
671
  #. translators: %s: list parameters and type
672
- #: class.php:2709
673
  msgid "ip addresses='%s' type='%s'"
674
  msgstr "ip naslovi='%s' tip='%s'"
675
 
676
- #: class.php:2943 strings.php:228
677
  msgid "BEFORE"
678
  msgstr "PRED"
679
 
680
- #: class.php:2951 strings.php:230
681
  msgid "PREPEND CONTENT"
682
  msgstr "DODAJ PRED VSEBINO"
683
 
684
- #: class.php:2955 strings.php:231
685
  msgid "APPEND CONTENT"
686
  msgstr "DODAJ ZA VSEBINO"
687
 
688
- #: class.php:2959 strings.php:232
689
  msgid "REPLACE CONTENT"
690
  msgstr "NADOMESTI VSEBINO"
691
 
692
- #: class.php:2963 strings.php:233
693
  msgid "REPLACE ELEMENT"
694
  msgstr "NADOMESTI ELEMENT"
695
 
696
- #: class.php:2974 strings.php:229
697
  msgid "AFTER"
698
  msgstr "ZA"
699
 
700
- #: class.php:3041
701
  msgctxt "JavaScript"
702
  msgid "script"
703
  msgstr "skripta"
704
 
705
- #: class.php:3044 settings.php:1893
706
  msgid "for"
707
  msgstr "za"
708
 
709
- #: class.php:5584 class.php:5636
710
  msgctxt "category name"
711
  msgid "Uncategorized"
712
  msgstr "Nekategorizirano"
713
 
714
- #: class.php:6127
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
@@ -720,7 +720,7 @@ msgstr ""
720
  "namestiti DOM razširitev za PHP."
721
 
722
  #: includes/editor.php:7 includes/placeholders.php:345
723
- #: includes/preview.php:1952 strings.php:235
724
  msgid "Use"
725
  msgstr "Uporabi"
726
 
@@ -729,7 +729,7 @@ msgid "Reset"
729
  msgstr "Ponastavi"
730
 
731
  #: includes/editor.php:9 includes/placeholders.php:347
732
- #: includes/preview.php:1955 strings.php:199 strings.php:234
733
  msgid "Cancel"
734
  msgstr "Prekliči"
735
 
@@ -755,29 +755,29 @@ msgstr "Napaka pri nalaganju strani"
755
  msgid "PAGE BLOCKED"
756
  msgstr "STRAN BLOKIRANA"
757
 
758
- #: includes/functions.php:252
759
  msgid "%d of %d names shown"
760
  msgstr "Prikazanih %d od %d imen"
761
 
762
  #. translators: %s: name filter
763
- #: includes/functions.php:271
764
  msgid "No name matches filter"
765
  msgstr "Noben podatek ne ustreza filtru"
766
 
767
- #: includes/functions.php:327 settings.php:174
768
  msgid "Online documentation"
769
  msgstr "Spletna Dokumentacija"
770
 
771
- #: includes/functions.php:327 settings.php:174
772
  msgid "Documentation"
773
  msgstr "Dokumentacija"
774
 
775
- #: includes/functions.php:340 settings.php:187
776
  msgid "Blocks"
777
  msgstr "Bloki"
778
 
779
  #. translators: %s: Ad Inserter Pro
780
- #: includes/functions.php:363
781
  msgid ""
782
  "Import %s settings when saving - if checked, the encoded settings below will "
783
  "be imported for all blocks and settings"
@@ -785,35 +785,35 @@ msgstr ""
785
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
786
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
787
 
788
- #: includes/functions.php:363
789
  msgid "Import Settings for"
790
  msgstr "Uvozi Nastavitve za"
791
 
792
- #: includes/functions.php:367
793
  msgid "Saved settings for"
794
  msgstr "Shranjene nastavitve za"
795
 
796
- #: includes/functions.php:386
797
  msgid "License Key"
798
  msgstr "Licenčni Ključ"
799
 
800
- #: includes/functions.php:389
801
  msgid "License Key for"
802
  msgstr "Licenčni Ključ za"
803
 
804
- #: includes/functions.php:395
805
  msgid "Hide license key"
806
  msgstr "Skrij licenčni ključ"
807
 
808
- #: includes/functions.php:395
809
  msgid "Hide key"
810
  msgstr "Skrij ključ"
811
 
812
- #: includes/functions.php:416
813
  msgid "Main content element"
814
  msgstr "Glavni element vsebine"
815
 
816
- #: includes/functions.php:419
817
  msgid ""
818
  "Main content element (#id or .class) for 'Stick to the content' position. "
819
  "Leave empty unless position is not properly calculated."
@@ -821,66 +821,74 @@ msgstr ""
821
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
822
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
823
 
824
- #: includes/functions.php:420 settings.php:1194 settings.php:2478
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
828
- #: includes/functions.php:425
829
  msgid "Lazy loading offset"
830
  msgstr "Zamik za leno nalaganje"
831
 
832
- #: includes/functions.php:428
833
  msgid "Offset of the block from the visible viewport when it should be loaded"
834
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
835
 
836
- #: includes/functions.php:439
837
  msgid "Export / Import Block Settings"
838
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
839
 
840
- #: includes/functions.php:454
841
  msgid "Track impressions and clicks for this block"
842
  msgstr "Sledi prikazom in klikom za ta blok"
843
 
844
- #: includes/functions.php:454
845
  msgid " - global tracking disabled"
846
  msgstr " - globalno sledenje onemogočeno"
847
 
848
- #: includes/functions.php:461 includes/functions.php:2464
849
- msgid "Generate report"
850
- msgstr "Generiraj poročilo"
851
 
852
- #: includes/functions.php:471
 
 
 
 
 
 
 
 
853
  msgid "Toggle Ad Blocking Statistics"
854
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
855
 
856
- #: includes/functions.php:479 includes/functions.php:2449
857
  msgid "Toggle Statistics"
858
  msgstr "Preklopi Statistiko"
859
 
860
  #. translators: %s: Ad Inserter Pro
861
- #: includes/functions.php:495
862
  msgid "%s license key is not set. Continue?"
863
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
864
 
865
  #. translators: %s: Ad Inserter Pro
866
- #: includes/functions.php:499
867
  msgid "Invalid %s license key. Continue?"
868
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
869
 
870
  #. translators: %s: Ad Inserter Pro
871
- #: includes/functions.php:503
872
  msgid "%s license overused. Continue?"
873
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
874
 
875
- #: includes/functions.php:507 settings.php:1963
876
  msgid "Save Settings"
877
  msgstr "Sharani Nastavitve"
878
 
879
- #: includes/functions.php:567 includes/preview.php:2096
880
  msgid "Horizontal position"
881
  msgstr "Vodoravni položaj"
882
 
883
- #: includes/functions.php:590
884
  msgid ""
885
  "Horizontal margin from the content or screen edge, empty means default value "
886
  "from CSS"
@@ -888,11 +896,11 @@ msgstr ""
888
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
889
  "iz CSS"
890
 
891
- #: includes/functions.php:598 includes/preview.php:2151
892
  msgid "Vertical position"
893
  msgstr "Navpični položaj"
894
 
895
- #: includes/functions.php:613
896
  msgid ""
897
  "Vertical margin from the top or bottom screen edge, empty means default "
898
  "value from CSS"
@@ -900,15 +908,15 @@ msgstr ""
900
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
901
  "iz CSS"
902
 
903
- #: includes/functions.php:638 includes/preview.php:2202
904
  msgid "Animation"
905
  msgstr "Animacija"
906
 
907
- #: includes/functions.php:656
908
  msgid "Trigger"
909
  msgstr "Sporžilec"
910
 
911
- #: includes/functions.php:665
912
  msgid ""
913
  "Trigger value: page scroll in %, page scroll in px or element with selector "
914
  "(#id or .class) becomes visible"
@@ -916,44 +924,44 @@ msgstr ""
916
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
917
  "selektorjem (#id ali .razred) postane viden"
918
 
919
- #: includes/functions.php:669
920
  msgid "Offset"
921
  msgstr "Zamik"
922
 
923
- #: includes/functions.php:669
924
  msgid "Offset of trigger element"
925
  msgstr "Zamik sprožilnega elementa"
926
 
927
- #: includes/functions.php:673
928
  msgid "Delay"
929
  msgstr "Zakasnitev"
930
 
931
- #: includes/functions.php:673
932
  msgid "Delay animation after trigger condition"
933
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
934
 
935
- #: includes/functions.php:677
936
  msgid "Trigger once"
937
  msgstr "Sproži enkrat"
938
 
939
- #: includes/functions.php:679
940
  msgid "Trigger animation only once"
941
  msgstr "Sproži animacijo samo enkrat"
942
 
943
- #: includes/functions.php:718
944
  msgid "Tracking is globally disabled"
945
  msgstr "Sledenje je globalno onemogočeno"
946
 
947
- #: includes/functions.php:722
948
  msgid "Tracking for this block is disabled"
949
  msgstr "Sledenje za ta blok je onemogočeno"
950
 
951
- #: includes/functions.php:732 settings.php:3150 settings.php:3186
952
- #: settings.php:3229 strings.php:209
953
  msgid "Loading..."
954
  msgstr "Nalagam..."
955
 
956
- #: includes/functions.php:748
957
  msgid ""
958
  "Clear statistics data for the selected range - clear both dates to delete "
959
  "all data for this block"
@@ -961,59 +969,59 @@ msgstr ""
961
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
962
  "brisanje vseh podatkov za ta blok"
963
 
964
- #: includes/functions.php:752
965
  msgid "Auto refresh data for the selected range every 60 seconds"
966
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
967
 
968
- #: includes/functions.php:755
969
  msgid "Load data for last month"
970
  msgstr "Naloži podatke za zadnji mesec"
971
 
972
- #: includes/functions.php:755
973
  msgid "Last Month"
974
  msgstr "Zadnji Mesec"
975
 
976
- #: includes/functions.php:758
977
  msgid "Load data for this month"
978
  msgstr "Naloži podatke za ta mesec"
979
 
980
- #: includes/functions.php:758
981
  msgid "This Month"
982
  msgstr "Ta Mesec"
983
 
984
- #: includes/functions.php:761
985
  msgid "Load data for this year"
986
  msgstr "Naloži podatke za to leto"
987
 
988
- #: includes/functions.php:761
989
  msgid "This Year"
990
  msgstr "To Leto"
991
 
992
- #: includes/functions.php:764
993
  msgid "Load data for the last 15 days"
994
  msgstr "Naloži podatke za zadnjih 15 dni"
995
 
996
- #: includes/functions.php:767
997
  msgid "Load data for the last 30 days"
998
  msgstr "Naloži podatke za zadnjih 30 dni"
999
 
1000
- #: includes/functions.php:770
1001
  msgid "Load data for the last 90 days"
1002
  msgstr "Naloži podatke za zadnjih 90 dni"
1003
 
1004
- #: includes/functions.php:773
1005
  msgid "Load data for the last 180 days"
1006
  msgstr "Naloži podatke za zadnjih 180 dni"
1007
 
1008
- #: includes/functions.php:776
1009
  msgid "Load data for the last 365 days"
1010
  msgstr "Naloži podatke za zadnjih 365 dni"
1011
 
1012
- #: includes/functions.php:786
1013
  msgid "Load data for the selected range"
1014
  msgstr "Naloži podatke za izbrano obdobje"
1015
 
1016
- #: includes/functions.php:802
1017
  msgid ""
1018
  "Import settings when saving - if checked, the encoded settings below will be "
1019
  "imported for this block"
@@ -1021,11 +1029,11 @@ msgstr ""
1021
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1022
  "nastavitve spodaj uvozile za ta blok"
1023
 
1024
- #: includes/functions.php:802
1025
  msgid "Import settings for block"
1026
  msgstr "Uvozi nastavitve za blok"
1027
 
1028
- #: includes/functions.php:806
1029
  msgid ""
1030
  "Import block name when saving - if checked and 'Import settings for block' "
1031
  "is also checked, the name from encoded settings below will be imported for "
@@ -1035,41 +1043,41 @@ msgstr ""
1035
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1036
  "uvozilo za ta blok"
1037
 
1038
- #: includes/functions.php:806
1039
  msgid "Import block name"
1040
  msgstr "Uvozi ime bloka"
1041
 
1042
- #: includes/functions.php:810
1043
  msgid "Saved settings for block"
1044
  msgstr "Shranjene nastavitve za blok"
1045
 
1046
- #: includes/functions.php:823
1047
  msgid "Export / Import Ad Inserter Pro Settings"
1048
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1049
 
1050
- #: includes/functions.php:833
1051
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1052
  msgstr ""
1053
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1054
  "bloke?"
1055
 
1056
- #: includes/functions.php:835
1057
  msgid "Clear All Statistics Data"
1058
  msgstr "Pobriši Vse Podatke o Statistiki"
1059
 
1060
- #: includes/functions.php:862
1061
  msgid "Toggle country/city editor"
1062
  msgstr "Preklopi urejevalnik držav/mest"
1063
 
1064
- #: includes/functions.php:868
1065
  msgid "IP Addresses"
1066
  msgstr "IP Naslovi"
1067
 
1068
- #: includes/functions.php:871
1069
  msgid "Toggle IP address editor"
1070
  msgstr "Preklopi urejevalnik IP nslovov"
1071
 
1072
- #: includes/functions.php:874
1073
  msgid ""
1074
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1075
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
@@ -1077,48 +1085,48 @@ msgstr ""
1077
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1078
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1079
 
1080
- #: includes/functions.php:878
1081
  msgid "Blacklist IP addresses"
1082
  msgstr "Črni seznam IP naslovov"
1083
 
1084
- #: includes/functions.php:882
1085
  msgid "Whitelist IP addresses"
1086
  msgstr "Beli seznam IP naslovov"
1087
 
1088
- #: includes/functions.php:893
1089
  msgid "Countries"
1090
  msgstr "Države"
1091
 
1092
- #: includes/functions.php:894
1093
  msgid "Cities"
1094
  msgstr "Mesta"
1095
 
1096
- #: includes/functions.php:898 includes/functions.php:2414
1097
  msgid "Toggle country editor"
1098
  msgstr "Preklopi urejevalnik držav"
1099
 
1100
- #: includes/functions.php:901
1101
  msgid "Toggle city editor"
1102
  msgstr "Preklopi urejevalnik mest"
1103
 
1104
- #: includes/functions.php:905 includes/functions.php:2417
1105
  msgid "Comma separated country ISO Alpha-2 codes"
1106
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1107
 
1108
- #: includes/functions.php:909
1109
  msgid "Blacklist countries"
1110
  msgstr "Črni seznam držav"
1111
 
1112
- #: includes/functions.php:913
1113
  msgid "Whitelist countries"
1114
  msgstr "Beli seznam držav"
1115
 
1116
- #: includes/functions.php:1227 includes/functions.php:1450
1117
  msgid "Enter license key"
1118
  msgstr "Vnesite licenčni ključ"
1119
 
1120
  #. translators: %s: Ad Inserter Pro
1121
- #: includes/functions.php:1233
1122
  msgid ""
1123
  "%s license key is not set. Plugin functionality is limited and updates are "
1124
  "disabled."
@@ -1126,36 +1134,40 @@ msgstr ""
1126
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1127
  "posodobitve onemogočene."
1128
 
1129
- #: includes/functions.php:1242 includes/functions.php:1459
1130
  msgid "Check license key"
1131
  msgstr "Preverite licenčni ključ"
1132
 
1133
  #. translators: %s: Ad Inserter Pro
1134
- #: includes/functions.php:1248
1135
  msgid "Invalid %s license key."
1136
  msgstr "Neveljaven %s licenčni ključ."
1137
 
1138
  #. translators: %s: Ad Inserter Pro
1139
- #: includes/functions.php:1257
1140
  msgid "%s license expired. Plugin updates are disabled."
1141
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1142
 
1143
- #: includes/functions.php:1258
1144
  msgid "Renew license"
1145
  msgstr "Obnovite licenco"
1146
 
1147
  #. translators: %s: Ad Inserter Pro
1148
- #: includes/functions.php:1266
1149
  msgid "%s license overused. Plugin updates are disabled."
1150
  msgstr ""
1151
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1152
 
1153
- #: includes/functions.php:1267
 
 
 
 
1154
  msgid "Upgrade license"
1155
  msgstr "Nadgradite licenco"
1156
 
1157
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1158
- #: includes/functions.php:1452
1159
  msgid ""
1160
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1161
  "limited and updates are disabled."
@@ -1164,12 +1176,12 @@ msgstr ""
1164
  "so omejene in posodobitve onemogočene."
1165
 
1166
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1167
- #: includes/functions.php:1461
1168
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1169
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1170
 
1171
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1172
- #: includes/functions.php:1477
1173
  msgid ""
1174
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1175
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
@@ -1179,7 +1191,7 @@ msgstr ""
1179
  "pogrešate. %3$s"
1180
 
1181
  #. translators: 1, 3: HTML tags, 2: percentage
1182
- #: includes/functions.php:1484
1183
  msgid ""
1184
  "During the license period and 30 days after the license has expired we offer "
1185
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
@@ -1187,113 +1199,114 @@ msgstr ""
1187
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1188
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1189
 
1190
- #: includes/functions.php:1511
1191
  msgid "Renew the licence"
1192
  msgstr "Obnovi licenco"
1193
 
1194
- #: includes/functions.php:1513
1195
  msgid "Update license status"
1196
  msgstr "Posodobi status licence"
1197
 
1198
- #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
1199
- #: includes/functions.php:1524
1200
  msgid ""
1201
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1202
- "Upgrade license %5$s"
1203
  msgstr ""
1204
  "%1$s Opozorilo: %2$s %3$s licenca prekomerno uporabljena. Posodobitve "
1205
- "vtičnika so onemogočene. %4$s Nadgradite licenco %5$s"
 
1206
 
1207
  #. Translators: %s: HTML tag
1208
- #: includes/functions.php:1544
1209
  msgid "Warning: %s MaxMind IP geolocation database not found."
1210
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1211
 
1212
- #: includes/functions.php:2051
1213
  msgid "Geolocation"
1214
  msgstr "Geolokacija"
1215
 
1216
- #: includes/functions.php:2055
1217
  msgid "Exceptions"
1218
  msgstr "Izjeme"
1219
 
1220
- #: includes/functions.php:2060
1221
  msgid "Multisite"
1222
  msgstr "Multisite"
1223
 
1224
- #: includes/functions.php:2065
1225
  msgid "Tracking"
1226
  msgstr "Sledenje"
1227
 
1228
  #. translators: %d: days, hours, minutes
1229
- #: includes/functions.php:2096
1230
  msgid "Scheduled in %d days %d hours %d minutes"
1231
  msgstr "Planirano v %d dneh %d urah %d minutah"
1232
 
1233
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1234
  #. HTML code for long dash separator
1235
- #: includes/functions.php:2105
1236
  msgid "Active %s expires in %d days %d hours %d minutes"
1237
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1238
 
1239
- #: includes/functions.php:2109
1240
  msgid "Expired"
1241
  msgstr "Poteklo"
1242
 
1243
- #: includes/functions.php:2117 settings.php:1277 settings.php:1292
1244
  #: settings.php:1879
1245
  msgid "and"
1246
  msgstr "in"
1247
 
1248
- #: includes/functions.php:2120
1249
  msgid "fallback"
1250
  msgstr "rezerva"
1251
 
1252
- #: includes/functions.php:2121
1253
  msgid "Block to be used when scheduling expires"
1254
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1255
 
1256
- #: includes/functions.php:2146
1257
  msgid "Load in iframe"
1258
  msgstr "Naloži v iframe-u"
1259
 
1260
- #: includes/functions.php:2150 includes/placeholders.php:382
1261
  msgid "Width"
1262
  msgstr "Širina"
1263
 
1264
- #: includes/functions.php:2151
1265
  msgid "iframe width, empty means full width (100%)"
1266
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1267
 
1268
- #: includes/functions.php:2157 includes/placeholders.php:377
1269
  msgid "Height"
1270
  msgstr "Višina"
1271
 
1272
- #: includes/functions.php:2158
1273
  msgid "iframe height, empty means adjust it to iframe content height"
1274
  msgstr ""
1275
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1276
 
1277
- #: includes/functions.php:2165
1278
  msgid "Ad label in iframe"
1279
  msgstr "Oznaka oglasa v iframe-u"
1280
 
1281
- #: includes/functions.php:2170
1282
  msgid "Preview iframe code"
1283
  msgstr "Predpreglej kodo iframe"
1284
 
1285
- #: includes/functions.php:2170 includes/preview.php:1964 settings.php:954
1286
- #: settings.php:2540
1287
  msgid "Preview"
1288
  msgstr "Predogled"
1289
 
1290
- #: includes/functions.php:2184 includes/functions.php:3826
1291
- #: includes/functions.php:3889 settings.php:2014
1292
  msgid "Ad Blocking"
1293
  msgstr "Blokiranje Oglasov"
1294
 
1295
  #. translators: 1, 2 and 3, 4: HTML tags
1296
- #: includes/functions.php:2193
1297
  msgid ""
1298
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1299
  "for tracking!"
@@ -1303,7 +1316,7 @@ msgstr ""
1303
 
1304
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1305
  #. header
1306
- #: includes/functions.php:2202
1307
  msgid ""
1308
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1309
  "enabled and automatic insertion %6$s!"
@@ -1311,49 +1324,49 @@ msgstr ""
1311
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1312
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1313
 
1314
- #: includes/functions.php:2220
1315
  msgid "When ad blocking is detected"
1316
  msgstr "Ko je blokiranje oglasov zaznano"
1317
 
1318
- #: includes/functions.php:2229
1319
  msgid "replacement"
1320
  msgstr "nadomestek"
1321
 
1322
- #: includes/functions.php:2230
1323
  msgid "Block to be shown when ad blocking is detected"
1324
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1325
 
1326
- #: includes/functions.php:2231
1327
  msgctxt "replacement"
1328
  msgid "None"
1329
  msgstr "Noben"
1330
 
1331
- #: includes/functions.php:2248
1332
  msgid "Close button"
1333
  msgstr "Gumb Zapri"
1334
 
1335
- #: includes/functions.php:2295
1336
  msgid "Lazy loading"
1337
  msgstr "Leno nalaganje"
1338
 
1339
  #. Translators: %s MaxMind
1340
- #: includes/functions.php:2349
1341
  msgid "This product includes GeoLite2 data created by %s"
1342
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1343
 
1344
- #: includes/functions.php:2360
1345
  msgid "IP geolocation database"
1346
  msgstr "Podatkovna baza za IP geolokacijo"
1347
 
1348
- #: includes/functions.php:2363
1349
  msgid "Select IP geolocation database."
1350
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1351
 
1352
- #: includes/functions.php:2374
1353
  msgid "Automatic database updates"
1354
  msgstr "Samodejna posodobitev podatkovne baze"
1355
 
1356
- #: includes/functions.php:2377
1357
  msgid ""
1358
  "Automatically download and update free GeoLite2 IP geolocation database by "
1359
  "MaxMind"
@@ -1361,11 +1374,11 @@ msgstr ""
1361
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1362
  "podatkovno bazo MaxMind"
1363
 
1364
- #: includes/functions.php:2385
1365
  msgid "Database"
1366
  msgstr "Podatkovna baza"
1367
 
1368
- #: includes/functions.php:2388
1369
  msgid ""
1370
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1371
  "file"
@@ -1374,35 +1387,39 @@ msgstr ""
1374
  "podatkovne baze"
1375
 
1376
  #. translators: %d: group number
1377
- #: includes/functions.php:2406
1378
  msgid "Group %d"
1379
  msgstr "Skupina %d"
1380
 
1381
- #: includes/functions.php:2412
1382
  msgid "countries"
1383
  msgstr "države"
1384
 
1385
- #: includes/functions.php:2457
1386
  msgid "Enable tracking"
1387
  msgstr "Omogoči sledenje"
1388
 
1389
- #: includes/functions.php:2472
 
 
 
 
1390
  msgid "Impression and Click Tracking"
1391
  msgstr "Sledenje Prikazov in Klikov"
1392
 
1393
- #: includes/functions.php:2488
1394
  msgid "Internal"
1395
  msgstr "Notranje"
1396
 
1397
- #: includes/functions.php:2492
1398
  msgid "Track impressions and clicks with internal tracking and statistics"
1399
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1400
 
1401
- #: includes/functions.php:2497
1402
  msgid "External"
1403
  msgstr "Zunanje"
1404
 
1405
- #: includes/functions.php:2501
1406
  msgid ""
1407
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1408
  "code installed)"
@@ -1410,27 +1427,27 @@ msgstr ""
1410
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1411
  "kodo za sledenje)"
1412
 
1413
- #: includes/functions.php:2506
1414
  msgid "Track Pageviews"
1415
  msgstr "Sledi Ogledom Strani"
1416
 
1417
- #: includes/functions.php:2512
1418
  msgid "Track Pageviews by Device (as configured for viewports)"
1419
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1420
 
1421
- #: includes/functions.php:2522
1422
  msgid "Track for Logged in Users"
1423
  msgstr "Sledi za Prijavljene Upor."
1424
 
1425
- #: includes/functions.php:2528
1426
  msgid "Track impressions and clicks from logged in users"
1427
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1428
 
1429
- #: includes/functions.php:2538
1430
  msgid "Click Detection"
1431
  msgstr "Zaznavanje klikov"
1432
 
1433
- #: includes/functions.php:2544
1434
  msgid ""
1435
  "Standard method detects clicks only on banners with links, Advanced method "
1436
  "can detect clicks on any kind of ads, but it is slightly less accurate"
@@ -1438,140 +1455,166 @@ msgstr ""
1438
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1439
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1440
 
1441
- #: includes/functions.php:2570
1442
  msgid "Report header image"
1443
  msgstr "Slika v glavi poročila"
1444
 
1445
- #: includes/functions.php:2573
1446
  msgid ""
1447
  "Image or logo to be displayed in the header of the statistins report. "
1448
- "Aabsolute path starting with '/' or relative path to the image file."
 
1449
  msgstr ""
1450
  "Slika ali logo, ki bo prikazan v glavi poročila statistike. Absolutna pot, "
1451
- "ki se začne z '/' ali relativna pot do datoteke slike."
 
1452
 
1453
- #: includes/functions.php:2574 strings.php:221
1454
  msgid "Select or upload header image"
1455
  msgstr "Izberi ali naloži sliko glave"
1456
 
1457
- #: includes/functions.php:2579
1458
  msgid "Report header title"
1459
  msgstr "Naslov v glavi poročila"
1460
 
1461
- #: includes/functions.php:2582
1462
  msgid ""
1463
- "Title to be displayed in the header of the statistins report. Text or HTML "
1464
- "code."
1465
  msgstr ""
1466
- "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda."
 
1467
 
1468
- #: includes/functions.php:2587
1469
  msgid "Report header description"
1470
  msgstr "Opis v glavi poročila"
1471
 
1472
- #: includes/functions.php:2590
1473
  msgid ""
1474
- "Description to be displayed in the header of the statistins report. Text or "
1475
- "HTML code."
1476
  msgstr ""
1477
- "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda."
 
1478
 
1479
- #: includes/functions.php:2622
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1480
  msgid "Are you sure you want to clear all exceptions for block"
1481
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1482
 
1483
- #: includes/functions.php:2623 settings.php:1041
1484
  msgid "Clear all exceptions for block"
1485
  msgstr "Pobriši vse izjeme za blok"
1486
 
1487
- #: includes/functions.php:2630
1488
  msgid "Are you sure you want to clear all exceptions?"
1489
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1490
 
1491
- #: includes/functions.php:2630
1492
  msgid "Clear all exceptions for all blocks"
1493
  msgstr "Pobriši vse izjeme za vse bloke"
1494
 
1495
- #: includes/functions.php:2635 settings.php:3378 settings.php:3716
1496
  msgid "Type"
1497
  msgstr "Vrsta"
1498
 
1499
- #: includes/functions.php:2653
1500
  msgid "View"
1501
  msgstr "Poglej"
1502
 
1503
- #: includes/functions.php:2654 includes/placeholders.php:346
1504
  #: includes/preview.php:2271 settings.php:1180
1505
  msgid "Edit"
1506
  msgstr "Uredi"
1507
 
1508
- #: includes/functions.php:2684
1509
  msgid "Are you sure you want to clear all exceptions for"
1510
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1511
 
1512
- #: includes/functions.php:2685
1513
  msgid "Clear all exceptions for"
1514
  msgstr "Pobriši vse izjeme za"
1515
 
1516
- #: includes/functions.php:2698
1517
  msgid "No exceptions"
1518
  msgstr "Brez izjem"
1519
 
1520
  #. translators: %s: Ad Inserter Pro
1521
- #: includes/functions.php:2709
1522
  msgid "%s options for network blogs"
1523
  msgstr "%s izbire za omrežne bloge"
1524
 
1525
  #. translators: %s: Ad Inserter Pro
1526
- #: includes/functions.php:2714
1527
  msgid "Enable %s widgets for sub-sites"
1528
  msgstr "Omogoči %s gradnik za pod-spletišča"
1529
 
1530
- #: includes/functions.php:2714
1531
  msgid "Widgets"
1532
  msgstr "Gradniki"
1533
 
1534
- #: includes/functions.php:2719
1535
  msgid "Enable PHP code processing for sub-sites"
1536
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1537
 
1538
- #: includes/functions.php:2719
1539
  msgid "PHP Processing"
1540
  msgstr "PHP Procesiranje"
1541
 
1542
  #. translators: %s: Ad Inserter Pro
1543
- #: includes/functions.php:2724
1544
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1545
  msgstr ""
1546
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1547
 
1548
- #: includes/functions.php:2724
1549
  msgid "Post/Page exceptions"
1550
  msgstr "Izjeme prispevkov/strani"
1551
 
1552
  #. translators: %s: Ad Inserter Pro
1553
- #: includes/functions.php:2729
1554
  msgid "Enable %s settings page for sub-sites"
1555
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1556
 
1557
- #: includes/functions.php:2729
1558
  msgid "Settings page"
1559
  msgstr "Stran z nastavitvami"
1560
 
1561
  #. translators: %s: Ad Inserter Pro
1562
- #: includes/functions.php:2734
1563
  msgid "Enable %s settings of main site to be used for all blogs"
1564
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1565
 
1566
- #: includes/functions.php:2734
1567
  msgid "Main site settings used for all blogs"
1568
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1569
 
1570
- #: includes/functions.php:2745 settings.php:2436
1571
  msgid "Ad Blocking Detection"
1572
  msgstr "Zaznavanje Blokiranja Oglasov"
1573
 
1574
- #: includes/functions.php:2751
1575
  msgid ""
1576
  "Standard method is reliable but should be used only if Advanced method does "
1577
  "not work. Advanced method recreates files used for detection with random "
@@ -1583,71 +1626,71 @@ msgstr ""
1583
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1584
  "dostopna"
1585
 
1586
- #: includes/functions.php:3371 includes/functions.php:3461
1587
- #: includes/functions.php:3481
1588
  msgid "AD BLOCKING"
1589
  msgstr "BLOKIRANJE OGLASOV"
1590
 
1591
- #: includes/functions.php:3372 includes/functions.php:3412
1592
- #: includes/functions.php:3455 includes/functions.php:3482
1593
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1594
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1595
 
1596
- #: includes/functions.php:3375 includes/functions.php:3454
1597
- #: includes/functions.php:3488
1598
  msgid "NO AD BLOCKING"
1599
  msgstr "NI BLOKIRANJA OGLASOV"
1600
 
1601
- #: includes/functions.php:3411 includes/functions.php:3418
1602
  msgid "AD BLOCKING REPLACEMENT"
1603
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1604
 
1605
- #: includes/functions.php:3679 includes/functions.php:3888
1606
  msgid "Pageviews"
1607
  msgstr "Ogledi strani"
1608
 
1609
- #: includes/functions.php:3825
1610
  msgctxt "Version"
1611
  msgid "Unknown"
1612
  msgstr "Neznana"
1613
 
1614
- #: includes/functions.php:3825
1615
  msgctxt "Times"
1616
  msgid "DISPLAYED"
1617
  msgstr "PRIKAZANO"
1618
 
1619
- #: includes/functions.php:3825
1620
  msgid "No version"
1621
  msgstr "Brez različice"
1622
 
1623
- #: includes/functions.php:3826
1624
  msgctxt "Times"
1625
  msgid "BLOCKED"
1626
  msgstr "BLOKIRANO"
1627
 
1628
- #: includes/functions.php:3888
1629
  msgid "Impressions"
1630
  msgstr "Prikazi"
1631
 
1632
- #: includes/functions.php:3889 includes/functions.php:3890
1633
- #: includes/functions.php:3920
1634
  msgid "Clicks"
1635
  msgstr "Kliki"
1636
 
1637
- #: includes/functions.php:3890
1638
  msgid "events"
1639
  msgstr "dogodki"
1640
 
1641
- #: includes/functions.php:3891
1642
  msgid "Ad Blocking Share"
1643
  msgstr "Delež blokiranja oglasov"
1644
 
1645
  #. translators: CTR as Click Through Rate
1646
- #: includes/functions.php:3891 includes/functions.php:3926
1647
  msgid "CTR"
1648
  msgstr "CTR"
1649
 
1650
- #: includes/functions.php:4008
1651
  msgid "pageviews"
1652
  msgid_plural "pageviews"
1653
  msgstr[0] "ogled strani"
@@ -1655,7 +1698,7 @@ msgstr[1] "ogleda strani"
1655
  msgstr[2] "ogledi strani"
1656
  msgstr[3] "ogledov strani"
1657
 
1658
- #: includes/functions.php:4008
1659
  msgid "impressions"
1660
  msgid_plural "impressions"
1661
  msgstr[0] "prikaz"
@@ -1663,7 +1706,7 @@ msgstr[1] "prikaza"
1663
  msgstr[2] "prikazi"
1664
  msgstr[3] "prikazov"
1665
 
1666
- #: includes/functions.php:4012
1667
  msgid "event"
1668
  msgid_plural "events"
1669
  msgstr[0] "dogodek"
@@ -1671,7 +1714,7 @@ msgstr[1] "dogodka"
1671
  msgstr[2] "dogodki"
1672
  msgstr[3] "dogodkov"
1673
 
1674
- #: includes/functions.php:4012
1675
  msgid "click"
1676
  msgid_plural "clicks"
1677
  msgstr[0] "klik"
@@ -1679,29 +1722,29 @@ msgstr[1] "klika"
1679
  msgstr[2] "kliki"
1680
  msgstr[3] "klikov"
1681
 
1682
- #: includes/functions.php:4107
1683
  msgctxt "Pageviews / Impressions"
1684
  msgid "Average"
1685
  msgstr "Povprečni"
1686
 
1687
- #: includes/functions.php:4128
1688
  msgctxt "Ad Blocking / Clicks"
1689
  msgid "Average"
1690
  msgstr "Povprečno"
1691
 
1692
- #: includes/functions.php:4152
1693
  msgctxt "Ad Blocking Share / CTR"
1694
  msgid "Average"
1695
  msgstr "Povprečni"
1696
 
1697
  #. Translators: %s: Ad Inserter Pro
1698
- #: includes/functions.php:4204
1699
  msgid "%s Report"
1700
  msgstr "%s Poročilo"
1701
 
1702
- #: includes/functions.php:4282
1703
- msgid "Advanced WordPress Ad Management Plugin"
1704
- msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
1705
 
1706
  #: includes/placeholders.php:19
1707
  msgid "Custom"
@@ -1727,7 +1770,7 @@ msgstr "Zapri urejevalnik polnila"
1727
  msgid "Placeholder"
1728
  msgstr "Polnilo"
1729
 
1730
- #: includes/placeholders.php:356 settings.php:808 settings.php:3717
1731
  msgid "Size"
1732
  msgstr "Velikost"
1733
 
@@ -1860,11 +1903,11 @@ msgstr "Prekliči"
1860
  msgid "Ad Blocking Detected Message Preview"
1861
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1862
 
1863
- #: includes/preview-adb.php:348 settings.php:2553
1864
  msgid "Message CSS"
1865
  msgstr "CSS sporočila"
1866
 
1867
- #: includes/preview-adb.php:353 settings.php:2561
1868
  msgid "Overlay CSS"
1869
  msgstr "CSS prevleke"
1870
 
@@ -1905,7 +1948,7 @@ msgid "background"
1905
  msgstr "ozadje"
1906
 
1907
  #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1908
- #: settings.php:3643
1909
  msgid "Alignment"
1910
  msgstr "Poravnava"
1911
 
@@ -2181,7 +2224,7 @@ msgstr ""
2181
  msgid "General Settings"
2182
  msgstr "Splošne Nastavitve"
2183
 
2184
- #: settings.php:592 settings.php:2312 settings.php:2370 settings.php:2533
2185
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2186
  msgstr ""
2187
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
@@ -2218,7 +2261,7 @@ msgstr "Pokaži oglasne enote AdSense"
2218
  msgid "Clear block"
2219
  msgstr "Počisti blok"
2220
 
2221
- #: settings.php:658 settings.php:3611
2222
  msgid "Copy block"
2223
  msgstr "Kopiraj blok"
2224
 
@@ -2391,7 +2434,7 @@ msgstr ""
2391
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2392
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2393
 
2394
- #: settings.php:978 settings.php:3037
2395
  msgid "Posts"
2396
  msgstr "Prispevki"
2397
 
@@ -2405,7 +2448,7 @@ msgstr ""
2405
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2406
  "lahko odvisni od ročic, ki jih tema uporablja)"
2407
 
2408
- #: settings.php:983 settings.php:3039
2409
  msgid "Homepage"
2410
  msgstr "Domača stran"
2411
 
@@ -2413,7 +2456,7 @@ msgstr "Domača stran"
2413
  msgid "Enable insertion on category blog pages (including sub-pages)"
2414
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2415
 
2416
- #: settings.php:988 settings.php:3040
2417
  msgid "Category pages"
2418
  msgstr "Strani kategorij"
2419
 
@@ -2434,7 +2477,7 @@ msgstr ""
2434
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2435
  "izjem."
2436
 
2437
- #: settings.php:1006 settings.php:3038
2438
  msgid "Static pages"
2439
  msgstr "Statične strani"
2440
 
@@ -2442,7 +2485,7 @@ msgstr "Statične strani"
2442
  msgid "Enable insertion on search blog pages"
2443
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2444
 
2445
- #: settings.php:1011 settings.php:3042
2446
  msgid "Search pages"
2447
  msgstr "Iskalne strani"
2448
 
@@ -2563,7 +2606,7 @@ msgstr "HTML element"
2563
  msgid "HTML element selector or comma separated list of selectors"
2564
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2565
 
2566
- #: settings.php:1209 settings.php:2446
2567
  msgid "Action"
2568
  msgstr "Akcija"
2569
 
@@ -2851,7 +2894,7 @@ msgid "Enable shortcode for manual insertion of this block in posts and pages"
2851
  msgstr ""
2852
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2853
 
2854
- #: settings.php:1636 settings.php:3645
2855
  msgid "Shortcode"
2856
  msgstr "Kratka koda"
2857
 
@@ -2915,7 +2958,7 @@ msgstr "Urnik"
2915
  msgid "Display"
2916
  msgstr "Prikaz"
2917
 
2918
- #: settings.php:1760 settings.php:2007
2919
  msgid "General"
2920
  msgstr "Splošno"
2921
 
@@ -2983,7 +3026,7 @@ msgstr ""
2983
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
2984
  "&#9881; / zavihek Splošno)"
2985
 
2986
- #: settings.php:1805 settings.php:2176
2987
  msgid "Max blocks per page"
2988
  msgstr "Največ blokov na stran"
2989
 
@@ -3068,7 +3111,7 @@ msgstr "dni po objavi"
3068
  msgid "Not available"
3069
  msgstr "Ni na razpolago"
3070
 
3071
- #: settings.php:1908 settings.php:2168
3072
  msgid "Ad label"
3073
  msgstr "Oznaka oglasa"
3074
 
@@ -3109,70 +3152,70 @@ msgstr "Ponastavi Vse Nastavitve"
3109
  msgid "Edit ads.txt file"
3110
  msgstr "Uredi datoteko ads.txt"
3111
 
3112
- #: settings.php:2008
3113
  msgid "Viewports"
3114
  msgstr "Pogledi"
3115
 
3116
- #: settings.php:2009
3117
  msgid "Hooks"
3118
  msgstr "Ročice"
3119
 
3120
- #: settings.php:2010
3121
  msgid "Header"
3122
  msgstr "Glava"
3123
 
3124
- #: settings.php:2011 strings.php:30
3125
  msgid "Footer"
3126
  msgstr "Noga"
3127
 
3128
- #: settings.php:2016
3129
  msgid "Debugging"
3130
  msgstr "Razhroščevanje"
3131
 
3132
- #: settings.php:2026
3133
  msgid "Plugin priority"
3134
  msgstr "Prednost vtičnika"
3135
 
3136
- #: settings.php:2034
3137
  msgid "Output buffering"
3138
  msgstr "Predpomnjenje izhoda"
3139
 
3140
- #: settings.php:2037
3141
  msgid "Needed for position Above header but may not work with all themes"
3142
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3143
 
3144
- #: settings.php:2045
3145
  msgid "Syntax highlighting theme"
3146
  msgstr "Tema za poudarjanje sintakse"
3147
 
3148
- #: settings.php:2052
3149
  msgctxt "no syntax highlighting themes"
3150
  msgid "None"
3151
  msgstr "Brez"
3152
 
3153
- #: settings.php:2053
3154
  msgid "No Syntax Highlighting"
3155
  msgstr "Brez Poudarjanja Sintakse"
3156
 
3157
- #: settings.php:2055
3158
  msgctxt "syntax highlighting themes"
3159
  msgid "Light"
3160
  msgstr "Svetle"
3161
 
3162
- #: settings.php:2070
3163
  msgctxt "syntax highlighting themes"
3164
  msgid "Dark"
3165
  msgstr "Temne"
3166
 
3167
- #: settings.php:2096
3168
  msgid "Min. user role for ind. exceptions editing"
3169
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3170
 
3171
- #: settings.php:2106
3172
  msgid "Disable caching for logged in administrators"
3173
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3174
 
3175
- #: settings.php:2109
3176
  msgid ""
3177
  "Enabled means that logged in administrators will see non-cached (live) pages "
3178
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
@@ -3180,11 +3223,11 @@ msgstr ""
3180
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3181
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3182
 
3183
- #: settings.php:2117
3184
  msgid "Sticky widget mode"
3185
  msgstr "Način za lepljive gradnike"
3186
 
3187
- #: settings.php:2120
3188
  msgid ""
3189
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3190
  "mode works with most themes but may reload ads on page load."
@@ -3193,19 +3236,19 @@ msgstr ""
3193
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3194
  "nalaganju strani."
3195
 
3196
- #: settings.php:2128
3197
  msgid "Sticky widget top margin"
3198
  msgstr "Zgornji rob za lepljiv gradnik"
3199
 
3200
- #: settings.php:2136
3201
  msgid "Dynamic blocks"
3202
  msgstr "Dinamični bloki"
3203
 
3204
- #: settings.php:2149
3205
  msgid "Functions for paragraph counting"
3206
  msgstr "Funkcije za štetje odstavkov"
3207
 
3208
- #: settings.php:2152
3209
  msgid ""
3210
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3211
  "functions if paragraphs are not counted properly on non-english pages."
@@ -3214,15 +3257,15 @@ msgstr ""
3214
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3215
  "šteti."
3216
 
3217
- #: settings.php:2160
3218
  msgid "No paragraph counting inside"
3219
  msgstr "Ni štetja odstavkov znotraj"
3220
 
3221
- #: settings.php:2171
3222
  msgid "Label text or HTML code"
3223
  msgstr "Besedilo oznake ali HTML koda"
3224
 
3225
- #: settings.php:2179
3226
  msgid ""
3227
  "Maximum number of inserted blocks per page. You need to enable Max page "
3228
  "insertions (button Misc / tab Insertion) to count block for this limit."
@@ -3231,12 +3274,12 @@ msgstr ""
3231
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3232
  "omejitev."
3233
 
3234
- #: settings.php:2193
3235
  msgid "Plugin usage tracking"
3236
  msgstr "Sledenje uporabe vtičnika"
3237
 
3238
  #. translators: %s: Ad Inserter
3239
- #: settings.php:2196
3240
  msgid ""
3241
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3242
  "Only information regarding the WordPress environment and %s usage is "
@@ -3246,125 +3289,125 @@ msgstr ""
3246
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3247
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3248
 
3249
- #: settings.php:2214
3250
  msgid "CSS class name for the wrapping div"
3251
  msgstr "Ime CSS razreda za div za ovijanje"
3252
 
3253
- #: settings.php:2214
3254
  msgid "Block class name"
3255
  msgstr "Ime razreda za blok"
3256
 
3257
- #: settings.php:2218
3258
  msgid "Include general plugin block class"
3259
  msgstr "Vključi splošni razred vtičnika za blok"
3260
 
3261
- #: settings.php:2218
3262
  msgid "Block class"
3263
  msgstr "Razred bloka"
3264
 
3265
- #: settings.php:2223
3266
  msgid "Include block number class"
3267
  msgstr "Vključi razred številke bloka"
3268
 
3269
- #: settings.php:2223
3270
  msgid "Block number class"
3271
  msgstr "Razred številke bloka"
3272
 
3273
- #: settings.php:2228
3274
  msgid ""
3275
  "Instead of alignment classes generate inline alignment styles for blocks"
3276
  msgstr ""
3277
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3278
 
3279
- #: settings.php:2228
3280
  msgid "Inline styles"
3281
  msgstr "Medvrstični slogi"
3282
 
3283
- #: settings.php:2234
3284
  msgid "Preview of the block wrapping code"
3285
  msgstr "Predogled kode za ovijanje blokov"
3286
 
3287
- #: settings.php:2235
3288
  msgid "Wrapping div"
3289
  msgstr "div za ovijanje"
3290
 
3291
- #: settings.php:2236 settings.php:2636
3292
  msgid "BLOCK CODE"
3293
  msgstr "KODA BLOKA"
3294
 
3295
- #: settings.php:2244
3296
  msgid "Viewport Settings used for client-side device detection"
3297
  msgstr ""
3298
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3299
 
3300
  #. Translators: %d: viewport number
3301
- #: settings.php:2252
3302
  msgid "Viewport %d name"
3303
  msgstr "Ime pogleda %d"
3304
 
3305
- #: settings.php:2255
3306
  msgid "min width"
3307
  msgstr "najmanjša širina"
3308
 
3309
- #: settings.php:2266
3310
  msgid "Custom Hooks"
3311
  msgstr "Ročice Po Meri"
3312
 
3313
- #: settings.php:2278 settings.php:2281
3314
  msgid "Enable hook"
3315
  msgstr "Omogoči ročico"
3316
 
3317
  #. translators: %d: hook number
3318
- #: settings.php:2281
3319
  msgid "Hook %d name"
3320
  msgstr "Ime ročice %d"
3321
 
3322
- #: settings.php:2284
3323
  msgid "Hook name for automatic insertion selection"
3324
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3325
 
3326
- #: settings.php:2287
3327
  msgid "action"
3328
  msgstr "akcija"
3329
 
3330
- #: settings.php:2290
3331
  msgid "Action name as used in the do_action () function"
3332
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3333
 
3334
- #: settings.php:2293
3335
  msgid "priority"
3336
  msgstr "prednost"
3337
 
3338
- #: settings.php:2296
3339
  msgid "Priority for the hook (default is 10)"
3340
  msgstr "Prednost za ročico (privzeta je 10)"
3341
 
3342
- #: settings.php:2317
3343
  msgid "Enable insertion of this code into HTML page header"
3344
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3345
 
3346
- #: settings.php:2321 settings.php:2379 settings.php:2538
3347
  msgid "Process PHP code"
3348
  msgstr "Procesiraj PHP kodo"
3349
 
3350
- #: settings.php:2325
3351
  msgid "HTML Page Header Code"
3352
  msgstr "Koda v Glavi HTML Strani"
3353
 
3354
- #: settings.php:2333
3355
  msgid "Code in the %s section of the HTML page"
3356
  msgstr "Koda v %s delu HTML strani"
3357
 
3358
- #: settings.php:2334 settings.php:2392
3359
- msgctxt "code in header or footer"
3360
- msgid "DISABLED"
3361
- msgstr "ONEMOGOČENA"
3362
 
3363
- #: settings.php:2347 settings.php:2405
3364
  msgid "Use server-side detection to insert code only for"
3365
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3366
 
3367
- #: settings.php:2360
3368
  msgid ""
3369
  "Enable insertion of this code into HTML page header on page for Error 404: "
3370
  "Page not found"
@@ -3372,24 +3415,29 @@ msgstr ""
3372
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3373
  "obstaja"
3374
 
3375
- #: settings.php:2360 settings.php:2418
3376
  msgid "Insert on Error 404 page"
3377
  msgstr "Vstavi na strani Napake 404"
3378
 
3379
- #: settings.php:2375
3380
  msgid "Enable insertion of this code into HTML page footer"
3381
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3382
 
3383
- #: settings.php:2383
3384
  msgid "HTML Page Footer Code"
3385
  msgstr "Koda v Nogi HTML Strani"
3386
 
3387
  #. translators: %s: HTML tags
3388
- #: settings.php:2391
3389
  msgid "Code before the %s tag of the the HTML page"
3390
  msgstr "Koda pred %s značko HTML strani"
3391
 
3392
- #: settings.php:2418
 
 
 
 
 
3393
  msgid ""
3394
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3395
  "Page not found"
@@ -3397,19 +3445,32 @@ msgstr ""
3397
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3398
  "Stran ne obstaja"
3399
 
3400
- #: settings.php:2432
3401
  msgid "Enable detection of ad blocking"
3402
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3403
 
3404
- #: settings.php:2449
 
 
 
 
 
3405
  msgid "Global action when ad blocking is detected"
3406
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3407
 
3408
  #: settings.php:2458
 
 
 
 
 
 
 
 
3409
  msgid "Delay Action"
3410
  msgstr "Zakasni Akcijo"
3411
 
3412
- #: settings.php:2461
3413
  msgid ""
3414
  "Number of page views to delay action when ad blocking is detected. Leave "
3415
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3418,16 +3479,16 @@ msgstr ""
3418
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3419
  "strani). Nastavi piškotek."
3420
 
3421
- #: settings.php:2461
3422
  msgctxt "Delay Action for x "
3423
  msgid "page views"
3424
  msgstr "ogledov strani"
3425
 
3426
- #: settings.php:2466
3427
  msgid "No Action Period"
3428
  msgstr "Obdobje Brez Akcije"
3429
 
3430
- #: settings.php:2469
3431
  msgid ""
3432
  "Number of days to supress action when ad blocking is detected. Leave empty "
3433
  "for no no-action period (action fires always after defined page view delay). "
@@ -3437,16 +3498,16 @@ msgstr ""
3437
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3438
  "strani). Nastavi piškotek."
3439
 
3440
- #: settings.php:2469
3441
  msgctxt "no action period"
3442
  msgid "days"
3443
  msgstr "dni"
3444
 
3445
- #: settings.php:2474
3446
  msgid "Custom Selectors"
3447
  msgstr "Selektorji Po Meri"
3448
 
3449
- #: settings.php:2477
3450
  msgid ""
3451
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3452
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3456,15 +3517,15 @@ msgstr ""
3456
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3457
  "pomeni prisotnost blokiranja oglasov."
3458
 
3459
- #: settings.php:2489
3460
  msgid "Redirection Page"
3461
  msgstr "Stran za Preusmeritev"
3462
 
3463
- #: settings.php:2501
3464
  msgid "Custom Url"
3465
  msgstr "Url Po Meri"
3466
 
3467
- #: settings.php:2506
3468
  msgid ""
3469
  "Static page for redirection when ad blocking is detected. For other pages "
3470
  "select Custom url and set it below."
@@ -3472,27 +3533,35 @@ msgstr ""
3472
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3473
  "strani izberite Url Po Meri in ga nastavite spodaj."
3474
 
3475
- #: settings.php:2515
3476
  msgid "Custom Redirection Url"
3477
  msgstr "Url za Preusmeritev Po Meri"
3478
 
3479
- #: settings.php:2527
3480
  msgid "Message HTML code"
3481
  msgstr "HTML koda sporočila"
3482
 
3483
- #: settings.php:2540
3484
  msgid "Preview message when ad blocking is detected"
3485
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3486
 
3487
- #: settings.php:2569
3488
  msgid "Prevent visitors from closing the warning message"
3489
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3490
 
3491
- #: settings.php:2569
3492
  msgid "Undismissible Message"
3493
  msgstr "Neodstranljivo Sporočilo"
3494
 
3495
- #: settings.php:2582
 
 
 
 
 
 
 
 
3496
  msgid ""
3497
  "Force showing admin toolbar for administrators when viewing site. Enable "
3498
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3501,84 +3570,84 @@ msgstr ""
3501
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3502
  "skrbnike."
3503
 
3504
- #: settings.php:2590
3505
  msgid "Disable header code (Header tab)"
3506
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3507
 
3508
- #: settings.php:2594
3509
  msgid "Disable footer code (Footer tab)"
3510
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3511
 
3512
  #. translators: %s: Ad Inserter
3513
- #: settings.php:2598
3514
  msgid "Disable %s JavaScript code"
3515
  msgstr "Onemogoči %s JavaScript kodo"
3516
 
3517
  #. translators: %s: Ad Inserter
3518
- #: settings.php:2602
3519
  msgid "Disable %s CSS code"
3520
  msgstr "Onemogoči %s CSS kodo"
3521
 
3522
- #: settings.php:2606
3523
  msgid ""
3524
  "Disable PHP code processing (in all blocks including header and footer code)"
3525
  msgstr ""
3526
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3527
 
3528
- #: settings.php:2610
3529
  msgid "Disable insertion of all blocks"
3530
  msgstr "Onemogoči vstavljanje vseh blokov"
3531
 
3532
- #: settings.php:2614
3533
  msgid "Disable insertions"
3534
  msgstr "Onemogoči vstavljanja"
3535
 
3536
  #. translators: %s: Ad Inserter
3537
- #: settings.php:2626
3538
  msgid "%s CSS CODE"
3539
  msgstr "%s CSS KODA"
3540
 
3541
- #: settings.php:2629
3542
  msgid "HEADER CODE"
3543
  msgstr "KODA GLAVE"
3544
 
3545
  #. translators: %s: PHP tags
3546
- #: settings.php:2635
3547
  msgid "BLOCK PHP CODE"
3548
  msgstr "PHP KODA BLOKA"
3549
 
3550
  #. translators: %s: Ad Inserter
3551
- #: settings.php:2641
3552
  msgid "%s JS CODE"
3553
  msgstr "%s JS KODA"
3554
 
3555
- #: settings.php:2644
3556
  msgid "FOOTER CODE"
3557
  msgstr "KODA NOGE"
3558
 
3559
- #: settings.php:2653
3560
  msgid "Force showing admin toolbar when viewing site"
3561
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3562
 
3563
- #: settings.php:2660
3564
  msgid "Enable debugging functions in admin toolbar"
3565
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3566
 
3567
- #: settings.php:2662
3568
  msgid "Debugging functions in admin toolbar"
3569
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3570
 
3571
- #: settings.php:2669
3572
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3573
  msgstr ""
3574
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3575
  "zaslonih"
3576
 
3577
- #: settings.php:2671
3578
  msgid "Debugging functions on mobile screens"
3579
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3580
 
3581
- #: settings.php:2678
3582
  msgid ""
3583
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3584
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3593,11 +3662,11 @@ msgstr ""
3593
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3594
  "vedno omogočeno."
3595
 
3596
- #: settings.php:2680
3597
  msgid "Remote debugging"
3598
  msgstr "Oddaljeno razhroščevanje"
3599
 
3600
- #: settings.php:2687
3601
  msgid ""
3602
  "Disable translation to see original texts for the settings and messages in "
3603
  "English"
@@ -3605,175 +3674,179 @@ msgstr ""
3605
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3606
  "angleščini"
3607
 
3608
- #: settings.php:2689
3609
  msgid "Disable translation"
3610
  msgstr "Onemogoči prevod"
3611
 
3612
- #: settings.php:3025
3613
  msgid "Available positions for current theme"
3614
  msgstr "Razpoložljivi položaji za trenutno temo"
3615
 
3616
- #: settings.php:3026
3617
  msgid "Error checking pages"
3618
  msgstr "Napaka pri preverjanju strani"
3619
 
3620
- #: settings.php:3029
3621
  msgid "Toggle theme checker for available positions for automatic insertion"
3622
  msgstr ""
3623
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3624
 
3625
- #: settings.php:3029
3626
  msgctxt "Button"
3627
  msgid "Check"
3628
  msgstr "Preveri"
3629
 
3630
- #: settings.php:3036
3631
  msgid "Position"
3632
  msgstr "Položaj"
3633
 
3634
- #: settings.php:3041
3635
  msgid "Archive pages"
3636
  msgstr "Strani arhiva"
3637
 
3638
- #: settings.php:3100
3639
  msgid ""
3640
  "Position not available because output buffering (tab [*]) is not enabled"
3641
  msgstr ""
3642
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3643
 
3644
- #: settings.php:3103 strings.php:217
3645
  msgid "Position not checked yet"
3646
  msgstr "Položaj še ni bil preverjen"
3647
 
3648
- #: settings.php:3134
3649
  msgid "Toggle active/all blocks"
3650
  msgstr "Preklopi aktive/vse bloke"
3651
 
3652
- #: settings.php:3138 strings.php:204
3653
  msgid "Rearrange block order"
3654
  msgstr "Preuredi vrstni red blokov"
3655
 
3656
- #: settings.php:3143
3657
  msgid "Save new block order"
3658
  msgstr "Shrani vrstni red blokov"
3659
 
3660
- #: settings.php:3143
3661
  msgid "Save Changes"
3662
  msgstr "Sharani Nastavitve"
3663
 
3664
- #: settings.php:3168
3665
  msgid "Toggle active/all ad units"
3666
  msgstr "Preklopi aktivne/vse oglasne enote"
3667
 
3668
- #: settings.php:3172
3669
  msgid "Reload AdSense ad units"
3670
  msgstr "Ponovno naloži oglasne enote AdSense"
3671
 
3672
- #: settings.php:3176
3673
  msgid "Clear authorization to access AdSense account"
3674
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3675
 
3676
- #: settings.php:3180 settings.php:3802 settings.php:3869 strings.php:212
3677
  msgid "Google AdSense Homepage"
3678
  msgstr "Google AdSense Domača Stran"
3679
 
3680
- #: settings.php:3203
3681
  msgid "Reload ads.txt file"
3682
  msgstr "Ponovno naloži datoteko ads.txt"
3683
 
3684
  #. translators: %s: ads.txt
3685
- #: settings.php:3207
3686
  msgid "Open %s"
3687
  msgstr "Odpri %s"
3688
 
3689
- #: settings.php:3211
3690
  msgid "Switch to table view"
3691
  msgstr "Preklopi na tabelarični pogled"
3692
 
3693
- #: settings.php:3215
3694
  msgid "Switch to editor"
3695
  msgstr "Preklopi na urejevalnik"
3696
 
3697
- #: settings.php:3219
3698
  msgid "Save ads.txt file"
3699
  msgstr "Shrani datoteko ads.txt"
3700
 
3701
- #: settings.php:3350 strings.php:197
3702
  msgid "Warning"
3703
  msgstr "Opozorilo"
3704
 
3705
- #: settings.php:3350
3706
  msgid "ads.txt file must be placed on the root domain"
3707
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3708
 
3709
  #. translators: %s: file path
3710
- #: settings.php:3351
3711
  msgid "WordPress is installed in %s"
3712
  msgstr "WordPress je nameščen v %s"
3713
 
3714
- #: settings.php:3352
3715
  msgid "Showing file"
3716
  msgstr "Prikazana datoteka"
3717
 
3718
- #: settings.php:3359
 
 
 
 
3719
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3720
  msgstr ""
3721
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3722
 
3723
- #: settings.php:3376
3724
  msgid "Advertising system"
3725
  msgstr "Oglaševalski sistem"
3726
 
3727
- #: settings.php:3377
3728
  msgid "Account ID"
3729
  msgstr "ID Računa"
3730
 
3731
- #: settings.php:3379
3732
  msgid "Certification authority ID"
3733
  msgstr "ID organa za potrjevanje"
3734
 
3735
- #: settings.php:3394
3736
  msgid "Account ID found in block and present in ads.txt"
3737
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3738
 
3739
- #: settings.php:3398
3740
  msgid "Account ID found in block but not present in ads.txt"
3741
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3742
 
3743
- #: settings.php:3614
3744
  msgid "Preview block"
3745
  msgstr "Predogled bloka"
3746
 
3747
- #: settings.php:3623
3748
  msgid "Insertion disabled"
3749
  msgstr "Vstavljanje onemogočeno"
3750
 
3751
- #: settings.php:3647
3752
  msgid "Widget positions"
3753
  msgstr "Položaji gradnikov"
3754
 
3755
- #: settings.php:3713
3756
  msgid "Ad unit"
3757
  msgstr "Enota"
3758
 
3759
- #: settings.php:3715
3760
  msgid "Slot ID"
3761
  msgstr "ID mesta"
3762
 
3763
- #: settings.php:3741
3764
  msgid "Copy AdSense code"
3765
  msgstr "Kopiraj kodo AdSense"
3766
 
3767
- #: settings.php:3744
3768
  msgid "Preview AdSense ad"
3769
  msgstr "Predogled oglasa AdSense"
3770
 
3771
- #: settings.php:3747
3772
  msgid "Get AdSense code"
3773
  msgstr "Pridobi kodo AdSense"
3774
 
3775
  #. translators: %s: HTML tags
3776
- #: settings.php:3779
3777
  msgid ""
3778
  "Please %s clear authorization %s with the button %s above and once again "
3779
  "authorize access to your AdSense account."
@@ -3781,16 +3854,16 @@ msgstr ""
3781
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3782
  "avtorizirajte dostop do vašega računa AdSense."
3783
 
3784
- #: settings.php:3798
3785
  msgid "AdSense Integration"
3786
  msgstr "Integracija AdSense"
3787
 
3788
- #: settings.php:3800
3789
  msgid "AdSense Integration - Step 2"
3790
  msgstr "Integracija AdSense - Korak 2"
3791
 
3792
  #. translators: %s: HTML tags
3793
- #: settings.php:3806
3794
  msgid ""
3795
  "Authorize %s to access your AdSense account. Click on the %s Get "
3796
  "Authorization Code %s button to open a new window where you can allow "
@@ -3803,7 +3876,7 @@ msgstr ""
3803
  "Avtoriziraj. %s"
3804
 
3805
  #. translators: %s: HTML tags
3806
- #: settings.php:3813
3807
  msgid ""
3808
  "If you get error, can't access ad units or would like to use own Google API "
3809
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3814,7 +3887,7 @@ msgstr ""
3814
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3815
 
3816
  #. translators: %s: HTML tags
3817
- #: settings.php:3815
3818
  msgid ""
3819
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3820
  "Authorization Code %s button to open a new window where you can allow "
@@ -3827,7 +3900,7 @@ msgstr ""
3827
  "gumb %s Avtoriziraj. %s"
3828
 
3829
  #. translators: %s: HTML tags
3830
- #: settings.php:3822
3831
  msgid ""
3832
  "If you get error %s invalid client %s click on the button %s Clear and "
3833
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -3835,32 +3908,32 @@ msgstr ""
3835
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3836
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3837
 
3838
- #: settings.php:3833
3839
  msgid "Get Authorization Code"
3840
  msgstr "Pridobi Avtoriazcijsko Kodo"
3841
 
3842
- #: settings.php:3836
3843
  msgid "Enter Authorization Code"
3844
  msgstr "Vnesi Avorizacijsko Kodo"
3845
 
3846
- #: settings.php:3846
3847
  msgid "Use own API IDs"
3848
  msgstr "Uporabi lastne API ID-je"
3849
 
3850
- #: settings.php:3848
3851
  msgid "Clear and return to Step 1"
3852
  msgstr "Odstrani in se vrni na Korak 1"
3853
 
3854
- #: settings.php:3852
3855
  msgid "Authorize"
3856
  msgstr "Avtoriziraj"
3857
 
3858
- #: settings.php:3868
3859
  msgid "AdSense Integration - Step 1"
3860
  msgstr "Integracija AdSense - Korak 1"
3861
 
3862
  #. translators: %s: Ad Inserter
3863
- #: settings.php:3872
3864
  msgid ""
3865
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3866
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3873,12 +3946,12 @@ msgstr ""
3873
  "Klienta in Skrivnost Klienta."
3874
 
3875
  #. translators: %s: HTML tags
3876
- #: settings.php:3881
3877
  msgid "Go to %s Google APIs and Services console %s"
3878
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3879
 
3880
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3881
- #: settings.php:3882
3882
  msgid ""
3883
  "Create %1$s project - if the project and IDs are already created click on "
3884
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -3887,7 +3960,7 @@ msgstr ""
3887
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3888
 
3889
  #. translators: %s: HTML tags
3890
- #: settings.php:3883
3891
  msgid ""
3892
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3893
  "create a new project"
@@ -3896,12 +3969,12 @@ msgstr ""
3896
  "ustvaritev novega projekta"
3897
 
3898
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3899
- #: settings.php:3884
3900
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3901
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
3902
 
3903
  #. translators: %s: HTML tags
3904
- #: settings.php:3885
3905
  msgid ""
3906
  "Click on project selection, wait for the project to be created and then and "
3907
  "select %s as the current project"
@@ -3910,39 +3983,39 @@ msgstr ""
3910
  "izberite %s kot trenutni projekt"
3911
 
3912
  #. translators: %s: HTML tags
3913
- #: settings.php:3886
3914
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3915
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
3916
 
3917
  #. translators: %s: HTML tags
3918
- #: settings.php:3887
3919
  msgid "Search for adsense and enable %s"
3920
  msgstr "Poiščite adsense in omogočite %s"
3921
 
3922
  #. translators: %s: HTML tags
3923
- #: settings.php:3888
3924
  msgid "Click on %s CREATE CREDENTIALS %s"
3925
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
3926
 
3927
  #. translators: %s: HTML tags
3928
- #: settings.php:3889
3929
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3930
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
3931
 
3932
  #. translators: %s: HTML tags
3933
- #: settings.php:3890
3934
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3935
  msgstr ""
3936
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
3937
  "podatki %s"
3938
 
3939
  #. translators: %s: HTML tags
3940
- #: settings.php:3891
3941
  msgid "Click on %s What credentials do I need? %s"
3942
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
3943
 
3944
  #. translators: %s: HTML tags
3945
- #: settings.php:3892
3946
  msgid ""
3947
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3948
  "Ad Inserter client %s"
@@ -3951,7 +4024,7 @@ msgstr ""
3951
  "%s Ad Inserter klient %s"
3952
 
3953
  #. translators: %s: HTML tags
3954
- #: settings.php:3893
3955
  msgid ""
3956
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3957
  "enter %s"
@@ -3960,17 +4033,17 @@ msgstr ""
3960
  "uporabnikom %s vnesite %s"
3961
 
3962
  #. translators: %s: HTML tags
3963
- #: settings.php:3894
3964
  msgid "Click on %s Continue %s"
3965
  msgstr "Kliknite na %s Nadaljuj %s"
3966
 
3967
  #. translators: %s: HTML tags
3968
- #: settings.php:3895
3969
  msgid "Click on %s Done %s"
3970
  msgstr "Kliknite na %s Končaj %s"
3971
 
3972
  #. translators: %s: HTML tags
3973
- #: settings.php:3896
3974
  msgid ""
3975
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3976
  "secret %s"
@@ -3978,58 +4051,58 @@ msgstr ""
3978
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
3979
  "Skrivnost klienta %s"
3980
 
3981
- #: settings.php:3897
3982
  msgid "Copy them to the appropriate fields below"
3983
  msgstr "Skopirajte ju na ustrezni polji spodaj"
3984
 
3985
- #: settings.php:3903
3986
  msgid "Client ID"
3987
  msgstr "ID klienta"
3988
 
3989
- #: settings.php:3906
3990
  msgid "Enter Client ID"
3991
  msgstr "Vnesite ID klienta"
3992
 
3993
- #: settings.php:3911
3994
  msgid "Client secret"
3995
  msgstr "Skrivnost klienta"
3996
 
3997
- #: settings.php:3914
3998
  msgid "Enter Client secret"
3999
  msgstr "Vnesite Skrivnost klienta"
4000
 
4001
- #: settings.php:3924
4002
  msgid "Use default API IDs"
4003
  msgstr "Uporabi privzete API ID-je"
4004
 
4005
- #: settings.php:3929
4006
  msgid "Save"
4007
  msgstr "Shrani"
4008
 
4009
- #: settings.php:4205 settings.php:4218 settings.php:4231 settings.php:4246
4010
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4011
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4012
 
4013
- #: settings.php:4210 settings.php:4223 settings.php:4236 settings.php:4251
4014
- #: settings.php:4420 settings.php:4424 settings.php:4426 settings.php:4442
4015
- #: settings.php:4453 settings.php:4456 settings.php:4462 settings.php:4474
4016
  msgid "Looking for AdSense alternative?"
4017
  msgstr "Iščete alternativo za AdSense?"
4018
 
4019
- #: settings.php:4262
4020
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4021
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4022
 
4023
- #: settings.php:4267 settings.php:4422 settings.php:4434 settings.php:4459
4024
- #: settings.php:4482
4025
  msgid "Use Infolinks ads with Adsense to earn more"
4026
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4027
 
4028
- #: settings.php:4286 settings.php:4324
4029
  msgid "Support plugin development"
4030
  msgstr "Podprite razvoj vtičnika"
4031
 
4032
- #: settings.php:4287 settings.php:4325
4033
  msgid ""
4034
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4035
  "reviewing the plugin on WordPres"
@@ -4037,12 +4110,12 @@ msgstr ""
4037
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4038
  "razširiti novico z oceno vtičnika na WordPress-u"
4039
 
4040
- #: settings.php:4287
4041
  msgctxt "Review ad Inserter"
4042
  msgid "Review"
4043
  msgstr "Oceni"
4044
 
4045
- #: settings.php:4288
4046
  msgid ""
4047
  "Support free Ad Inserter development. If you are making money with Ad "
4048
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4051,16 +4124,16 @@ msgstr ""
4051
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4052
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4053
 
4054
- #: settings.php:4288
4055
  msgid "Donate"
4056
  msgstr "Donirajte"
4057
 
4058
- #: settings.php:4295 settings.php:4340
4059
  msgid "Average rating of the plugin - Thank you!"
4060
  msgstr "Povprečna ocena vtičnika - Hvala!"
4061
 
4062
  #. translators: %s: Ad Inserter, HTML tags
4063
- #: settings.php:4306
4064
  msgid ""
4065
  "You've been using %s for a while now, and I hope you're happy with it. "
4066
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4074,24 +4147,24 @@ msgstr ""
4074
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4075
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4076
 
4077
- #: settings.php:4325
4078
  msgid "Review"
4079
  msgstr "Ocena"
4080
 
4081
- #: settings.php:4329
4082
  msgid "Ad Inserter on Twitter"
4083
  msgstr "Ad Inserter na Twitter-ju"
4084
 
4085
- #: settings.php:4330
4086
  msgid "Ad Inserter on Facebook"
4087
  msgstr "Ad Inserter na Facebook-u"
4088
 
4089
- #: settings.php:4333
4090
  msgid "Follow Ad Inserter"
4091
  msgstr "Sledi Ad Inserter-ju"
4092
 
4093
  #. translators: %s: HTML tags
4094
- #: settings.php:4360
4095
  msgid ""
4096
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4097
  "and %s Common Settings %s pages"
@@ -4100,7 +4173,7 @@ msgstr ""
4100
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4101
 
4102
  #. translators: %s: HTML tags
4103
- #: settings.php:4372
4104
  msgid ""
4105
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4106
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
@@ -4110,7 +4183,7 @@ msgstr ""
4110
  "%s"
4111
 
4112
  #. translators: %s: HTML tags
4113
- #: settings.php:4391
4114
  msgid ""
4115
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4116
  "diagnose and fix the problem."
@@ -4119,7 +4192,7 @@ msgstr ""
4119
  "navodili za diagnozo in rešitvami za težave."
4120
 
4121
  #. translators: %s: HTML tags
4122
- #: settings.php:4395
4123
  msgid ""
4124
  "If you need any kind of help or support, please do not hesitate to open a "
4125
  "thread on the %s support forum. %s"
@@ -4127,44 +4200,44 @@ msgstr ""
4127
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4128
  "nit na %s podpornem forumu. %s"
4129
 
4130
- #: settings.php:4438 settings.php:4478
4131
  msgid "A/B testing - Track ad impressions and clicks"
4132
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4133
 
4134
- #: settings.php:4446 settings.php:4470
4135
  msgid "Code preview with visual CSS editor"
4136
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4137
 
4138
- #: settings.php:4488
4139
  msgid "Looking for Pro Ad Management plugin?"
4140
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4141
 
4142
- #: settings.php:4489
4143
  msgid "To Optimally Monetize your WordPress website?"
4144
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4145
 
4146
  #. translators: %s HTML tags
4147
- #: settings.php:4492
4148
  msgid "%s AdSense Integration %s"
4149
  msgstr "%s Integracija AdSense %s"
4150
 
4151
  #. translators: %s HTML tags
4152
- #: settings.php:4493
4153
  msgid "Syntax highlighting %s editor %s"
4154
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4155
 
4156
  #. translators: %s HTML tags
4157
- #: settings.php:4494
4158
  msgid "%s Code preview %s with visual CSS editor"
4159
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4160
 
4161
  #. translators: %s HTML tags
4162
- #: settings.php:4495
4163
  msgid "Simple user interface - all settings on a single page"
4164
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4165
 
4166
  #. translators: %s HTML tags
4167
- #: settings.php:4496
4168
  msgid ""
4169
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4170
  "image / excerpt"
@@ -4173,27 +4246,27 @@ msgstr ""
4173
  "%s / sliko / izvlečkom"
4174
 
4175
  #. translators: %s HTML tags
4176
- #: settings.php:4497
4177
  msgid "%s Automatic insertion %s between posts on blog pages"
4178
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4179
 
4180
  #. translators: %s HTML tags
4181
- #: settings.php:4498
4182
  msgid "%s Automatic insertion %s before, between and after comments"
4183
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4184
 
4185
  #. translators: %s HTML tags
4186
- #: settings.php:4499
4187
  msgid "%s Automatic insertion %s after %s or before %s tag"
4188
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4189
 
4190
  #. translators: %s HTML tags
4191
- #: settings.php:4500
4192
  msgid "Automatic insertion at %s custom hook positions %s"
4193
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4194
 
4195
  #. translators: %s HTML tags
4196
- #: settings.php:4501
4197
  msgid ""
4198
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4199
  "selectors)"
@@ -4202,17 +4275,17 @@ msgstr ""
4202
  "selektorjev)"
4203
 
4204
  #. translators: %s HTML tags
4205
- #: settings.php:4502
4206
  msgid "%s Insertion exceptions %s for individual posts and pages"
4207
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4208
 
4209
  #. translators: %s HTML tags
4210
- #: settings.php:4503
4211
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4212
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4213
 
4214
  #. translators: %s HTML tags
4215
- #: settings.php:4504
4216
  msgid ""
4217
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4218
  "scrolls)"
@@ -4221,19 +4294,19 @@ msgstr ""
4221
  "se stran pomika)"
4222
 
4223
  #. translators: %s HTML tags
4224
- #: settings.php:4505
4225
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4226
  msgstr ""
4227
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4228
 
4229
  #. translators: %s HTML tags
4230
- #: settings.php:4506
4231
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4232
  msgstr ""
4233
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4234
 
4235
  #. translators: %s HTML tags
4236
- #: settings.php:4507
4237
  msgid ""
4238
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4239
  "visible)"
@@ -4242,7 +4315,7 @@ msgstr ""
4242
  "postane viden)"
4243
 
4244
  #. translators: %s HTML tags
4245
- #: settings.php:4508
4246
  msgid ""
4247
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4248
  msgstr ""
@@ -4250,12 +4323,12 @@ msgstr ""
4250
  "strani)"
4251
 
4252
  #. translators: %s HTML tags
4253
- #: settings.php:4509
4254
  msgid "Block %s alignment and style %s customizations"
4255
  msgstr "%s Poravnave in slogi %s bloka po meri"
4256
 
4257
  #. translators: %s HTML tags
4258
- #: settings.php:4510
4259
  msgid ""
4260
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4261
  "TOS)"
@@ -4263,7 +4336,7 @@ msgstr ""
4263
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4264
 
4265
  #. translators: %s HTML tags
4266
- #: settings.php:4511
4267
  msgid ""
4268
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4269
  "feeds"
@@ -4272,12 +4345,17 @@ msgstr ""
4272
  "virih"
4273
 
4274
  #. translators: %s HTML tags
4275
- #: settings.php:4512
4276
  msgid "%s Ad rotation %s (works also with caching)"
4277
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4278
 
4279
  #. translators: %s HTML tags
4280
- #: settings.php:4513
 
 
 
 
 
4281
  msgid ""
4282
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4283
  "AdSense)"
@@ -4286,66 +4364,66 @@ msgstr ""
4286
  "AdSense)"
4287
 
4288
  #. translators: %s HTML tags
4289
- #: settings.php:4514
4290
  msgid "Support for %s A/B testing %s"
4291
  msgstr "Podpora za %s A/B testiranje %s"
4292
 
4293
  #. translators: %s HTML tags
4294
- #: settings.php:4515
4295
  msgid "Support for %s lazy loading %s"
4296
  msgstr "Podpora za %s leno nalaganje %s"
4297
 
4298
  #. translators: %s HTML tags
4299
- #: settings.php:4516
4300
  msgid "Support for ads on %s AMP pages %s"
4301
  msgstr "Podpora za oglase na %s AMP straneh %s"
4302
 
4303
  #. translators: %s HTML tags
4304
- #: settings.php:4517
4305
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4306
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4307
 
4308
  #. translators: %s HTML tags
4309
- #: settings.php:4518
4310
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4311
  msgstr ""
4312
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4313
 
4314
  #. translators: %s HTML tags
4315
- #: settings.php:4519
4316
  msgid "PHP code processing"
4317
  msgstr "Procesiranje PHP kode"
4318
 
4319
  #. translators: %s HTML tags
4320
- #: settings.php:4520
4321
  msgid "%s Banner %s code generator"
4322
  msgstr "Generator kode za %s pasice %s"
4323
 
4324
  #. translators: %s HTML tags
4325
- #: settings.php:4521
4326
  msgid "Support for %s header and footer %s code"
4327
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4328
 
4329
  #. translators: %s HTML tags
4330
- #: settings.php:4522
4331
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4332
  msgstr ""
4333
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4334
 
4335
  #. translators: %s HTML tags
4336
- #: settings.php:4523
4337
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4338
  msgstr ""
4339
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4340
  "strežnika"
4341
 
4342
  #. translators: %s HTML tags
4343
- #: settings.php:4524
4344
  msgid "Client-side %s mobile device detection %s (works with caching)"
4345
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4346
 
4347
  #. translators: %s HTML tags
4348
- #: settings.php:4525
4349
  msgid ""
4350
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4351
  "protection"
@@ -4354,12 +4432,12 @@ msgstr ""
4354
  "vsebine"
4355
 
4356
  #. translators: %s HTML tags
4357
- #: settings.php:4526
4358
  msgid "%s Ad blocking statistics %s"
4359
  msgstr "%s Statistika blokiranja oglasov %s"
4360
 
4361
  #. translators: %s HTML tags
4362
- #: settings.php:4527
4363
  msgid ""
4364
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4365
  "referers"
@@ -4367,75 +4445,75 @@ msgstr ""
4367
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4368
 
4369
  #. translators: %s HTML tags
4370
- #: settings.php:4528
4371
  msgid ""
4372
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4373
  msgstr ""
4374
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4375
 
4376
  #. translators: %s HTML tags
4377
- #: settings.php:4529
4378
  msgid "%s Multisite options %s to limit settings on the sites"
4379
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4380
 
4381
  #. translators: %s HTML tags
4382
- #: settings.php:4530
4383
  msgid "%s Import/Export %s block or plugin settings"
4384
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4385
 
4386
  #. translators: %s HTML tags
4387
- #: settings.php:4531
4388
  msgid "%s Insertion scheduling %s with fallback option"
4389
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4390
 
4391
  #. translators: %s HTML tags
4392
- #: settings.php:4532
4393
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4394
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4395
 
4396
  #. translators: %s HTML tags
4397
- #: settings.php:4533
4398
  msgid "Simple troubleshooting with many %s debugging functions %s"
4399
  msgstr ""
4400
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4401
 
4402
  #. translators: %s HTML tags
4403
- #: settings.php:4534
4404
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4405
  msgstr ""
4406
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4407
 
4408
  #. translators: %s HTML tags
4409
- #: settings.php:4535
4410
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4411
  msgstr ""
4412
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4413
 
4414
  #. translators: %s HTML tags
4415
- #: settings.php:4536
4416
  msgid ""
4417
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4418
  msgstr ""
4419
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4420
 
4421
  #. translators: %s HTML tags
4422
- #: settings.php:4537
4423
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4424
  msgstr ""
4425
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4426
 
4427
  #. translators: %s HTML tags
4428
- #: settings.php:4538
4429
  msgid "No ads on the settings page"
4430
  msgstr "Stran z nastavitvami brez oglasov"
4431
 
4432
  #. translators: %s HTML tags
4433
- #: settings.php:4539
4434
  msgid "Premium support via email"
4435
  msgstr "Vrhunska podpora prek elektronske pošte"
4436
 
4437
  #. translators: %s HTML tags
4438
- #: settings.php:4542
4439
  msgid ""
4440
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4441
  "website with many advertising features to automatically insert adverts on "
@@ -4462,82 +4540,82 @@ msgstr ""
4462
  "bodo ohranile)."
4463
 
4464
  #. translators: %s HTML tags
4465
- #: settings.php:4555
4466
  msgid "Looking for %s Pro Ad Management plugin? %s"
4467
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4468
 
4469
  #. translators: %s HTML tags
4470
- #: settings.php:4560
4471
  msgid "Ads between posts"
4472
  msgstr "Oglasi med prispevki"
4473
 
4474
  #. translators: %s HTML tags
4475
- #: settings.php:4561
4476
  msgid "Ads between comments"
4477
  msgstr "Oglasi med komentarji"
4478
 
4479
  #. translators: %s HTML tags
4480
- #: settings.php:4562
4481
  msgid "Support via email"
4482
  msgstr "Podpora prek elektronske pošte"
4483
 
4484
  #. translators: %s HTML tags
4485
- #: settings.php:4568
4486
  msgid "%s Sticky positions %s"
4487
  msgstr "%s Lepljivi položaji %s"
4488
 
4489
  #. translators: %s HTML tags
4490
- #: settings.php:4569
4491
  msgid "%s Limit insertions %s"
4492
  msgstr "%s Omeji vstavljanja %s"
4493
 
4494
  #. translators: %s HTML tags
4495
- #: settings.php:4570
4496
  msgid "%s Clearance %s options"
4497
  msgstr "Možnosti %s izogibanja %s"
4498
 
4499
  #. translators: %s HTML tags
4500
- #: settings.php:4576
4501
  msgid "Ad rotation"
4502
  msgstr "Vrtenje oglasov"
4503
 
4504
  #. translators: %s HTML tags
4505
- #: settings.php:4577
4506
  msgid "%s A/B testing %s"
4507
  msgstr "%s A/B testiranje %s"
4508
 
4509
  #. translators: %s HTML tags
4510
- #: settings.php:4578
4511
  msgid "%s Ad tracking %s"
4512
  msgstr "%s Sledenje oglasom %s"
4513
 
4514
  #. translators: %s HTML tags
4515
- #: settings.php:4584
4516
  msgid "Support for %s AMP pages %s"
4517
  msgstr "Podpora za %s AMP strani %s"
4518
 
4519
  #. translators: %s HTML tags
4520
- #: settings.php:4585
4521
  msgid "%s Ad blocking detection %s"
4522
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4523
 
4524
  #. translators: %s HTML tags
4525
- #: settings.php:4586
4526
  msgid "%s Mobile device detection %s"
4527
  msgstr "%s Zaznavanje mobilne naprave %s"
4528
 
4529
  #. translators: %s HTML tags
4530
- #: settings.php:4593
4531
  msgid "64 code blocks"
4532
  msgstr "64 kodnih blokov"
4533
 
4534
  #. translators: %s HTML tags
4535
- #: settings.php:4594
4536
  msgid "%s GEO targeting %s"
4537
  msgstr "%s GEO ciljanje %s"
4538
 
4539
  #. translators: %s HTML tags
4540
- #: settings.php:4595
4541
  msgid "%s Scheduling %s"
4542
  msgstr "%s Urnik %s"
4543
 
@@ -5143,47 +5221,47 @@ msgctxt "size"
5143
  msgid "Fixed by viewport"
5144
  msgstr "Fiksna glede na pogled"
5145
 
5146
- #: strings.php:178
5147
- msgid "Ad Inserter Pro Report"
5148
- msgstr "Ad Inserter Pro Poročilo"
5149
-
5150
  #: strings.php:179
5151
  msgid "Impressions and clicks"
5152
  msgstr "Prikazi in Kliki"
5153
 
5154
- #: strings.php:184
 
 
 
 
5155
  msgctxt "Button"
5156
  msgid "Hide"
5157
  msgstr "Skrij"
5158
 
5159
- #: strings.php:185
5160
  msgctxt "Button"
5161
  msgid "Show"
5162
  msgstr "Pokaži"
5163
 
5164
- #: strings.php:186
5165
  msgid "Insertion expired"
5166
  msgstr "Vstavljanje poteklo"
5167
 
5168
- #: strings.php:187
5169
  msgid "Duration"
5170
  msgstr "Trajanje"
5171
 
5172
- #: strings.php:188
5173
  msgid "Invalid end date - must be after start date"
5174
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5175
 
5176
- #: strings.php:189
5177
  msgid "Invalid start date - only data for 1 year back is available"
5178
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5179
 
5180
- #: strings.php:190
5181
  msgid "Invalid date range - only data for 1 year can be displayed"
5182
  msgstr ""
5183
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5184
 
5185
- #: strings.php:191 strings.php:192 strings.php:193 strings.php:194
5186
- #: strings.php:195 strings.php:196
5187
  msgid "day"
5188
  msgid_plural "days"
5189
  msgstr[0] "dan"
@@ -5191,71 +5269,71 @@ msgstr[1] "dni"
5191
  msgstr[2] "dni"
5192
  msgstr[3] "dni"
5193
 
5194
- #: strings.php:198
5195
  msgid "Delete"
5196
  msgstr "Pobriši"
5197
 
5198
- #: strings.php:200
5199
  msgid "Delete all statistics data?"
5200
  msgstr "Pobrišem vse podatke o statistiki?"
5201
 
5202
  #. translators: %s: dates
5203
- #: strings.php:202
5204
  msgid "Delete statistics data between %s and %s?"
5205
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5206
 
5207
- #: strings.php:203
5208
  msgid "Cancel block order rearrangement"
5209
  msgstr "Prekliči preureditev vrstnega reda blokov"
5210
 
5211
- #: strings.php:205
5212
  msgid "downloading..."
5213
  msgstr "prenašam..."
5214
 
5215
- #: strings.php:206
5216
  msgid "download error"
5217
  msgstr "napaka pri prenosu"
5218
 
5219
- #: strings.php:207
5220
  msgid "update error"
5221
  msgstr "napaka pri posodobitvi"
5222
 
5223
- #: strings.php:208
5224
  msgid "Updating..."
5225
  msgstr "Posodabljam..."
5226
 
5227
- #: strings.php:210
5228
  msgid "ERROR"
5229
  msgstr "NAPAKA"
5230
 
5231
- #: strings.php:211
5232
  msgid "Error reloading settings"
5233
  msgstr "Napaka pri nalaganju nastavitev"
5234
 
5235
- #: strings.php:213
5236
  msgctxt "Search field placeholder"
5237
  msgid "Search..."
5238
  msgstr "Išči..."
5239
 
5240
- #: strings.php:214
5241
  msgctxt "Search field placeholder"
5242
  msgid "Filter..."
5243
  msgstr "Filter..."
5244
 
5245
- #: strings.php:215
5246
  msgid "Use filter to limit names in the list"
5247
  msgstr "Uporabite filter za omejitev imen v seznamu"
5248
 
5249
- #: strings.php:216
5250
  msgctxt "Button"
5251
  msgid "Filter"
5252
  msgstr "Filter"
5253
 
5254
- #: strings.php:218
5255
  msgid "Position not available"
5256
  msgstr "Položaj ni na razpolago"
5257
 
5258
- #: strings.php:219
5259
  msgid ""
5260
  "Theme check | Selected position for automatic insertion might not be not "
5261
  "available on this page type"
@@ -5263,60 +5341,60 @@ msgstr ""
5263
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5264
  "razpolago na tem tipu strani"
5265
 
5266
- #: strings.php:220
5267
  msgid "Position available"
5268
  msgstr "Položaj na razpolago"
5269
 
5270
- #: strings.php:222
5271
  msgid "Select or upload banner image"
5272
  msgstr "Izberi ali naloži sliko pasice"
5273
 
5274
- #: strings.php:223
5275
  msgid "Use this image"
5276
  msgstr "Uporabi to sliko"
5277
 
5278
- #: strings.php:236
5279
  msgid "Add"
5280
  msgstr "Dodaj"
5281
 
5282
- #: strings.php:237
5283
  msgid "Parent"
5284
  msgstr "Starš"
5285
 
5286
- #: strings.php:238
5287
  msgid "Cancel element selection"
5288
  msgstr "Prekliči izbor HTML elementa"
5289
 
5290
- #: strings.php:239
5291
  msgid "Select parent element"
5292
  msgstr "Izberi starševski element"
5293
 
5294
- #: strings.php:240
5295
  msgid "CSS selector"
5296
  msgstr "CSS selektor"
5297
 
5298
- #: strings.php:241
5299
  msgid "Use current selector"
5300
  msgstr "Uporabi trenutni selektor"
5301
 
5302
- #: strings.php:242
5303
  msgid "ELEMENT"
5304
  msgstr "ELEMENT"
5305
 
5306
- #: strings.php:243
5307
  msgid "PATH"
5308
  msgstr "POT"
5309
 
5310
- #: strings.php:244
5311
  msgid "SELECTOR"
5312
  msgstr "SELEKTOR"
5313
 
5314
- #: strings.php:245
5315
  msgctxt "Block"
5316
  msgid "VISIBLE"
5317
  msgstr "VIDEN"
5318
 
5319
- #: strings.php:246
5320
  msgctxt "Block"
5321
  msgid "HIDDEN"
5322
  msgstr "SKRIT"
@@ -5329,6 +5407,10 @@ msgstr ""
5329
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5330
  "na optimalna mesta"
5331
 
 
 
 
 
5332
  #~ msgid "Alignment and style"
5333
  #~ msgstr "Poravnava in slog"
5334
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-04-10 18:20:58+00:00\n"
8
+ "PO-Revision-Date: 2019-04-10 20:23+0200\n"
9
  "Last-Translator: Igor Funa\n"
10
  "Language-Team: \n"
11
  "Language: sl_SI\n"
16
  "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
17
  "%100<=4 ? 2 : 3);\n"
18
 
19
+ #: ad-inserter.php:331
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:347
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:354
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:425
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:432
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:441
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:448
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:458
55
  msgctxt "Menu item"
56
  msgid "Log Processing"
57
  msgstr "Beleži procesiranje"
58
 
59
  #. translators: Debugging position name Before HTML element
60
+ #: ad-inserter.php:1039
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1044
66
  msgid "After"
67
  msgstr "Za"
68
 
69
  #. translators: Debugging position name Prepend content of HTML element (before
70
  #. the content of the HTML element)
71
+ #: ad-inserter.php:1049 strings.php:98
72
  msgid "Prepend content"
73
  msgstr "Dodaj pred vsebino"
74
 
75
  #. translators: Debugging position name Append content of HTML element (after
76
  #. the content of the HTML element)
77
+ #: ad-inserter.php:1054 strings.php:99
78
  msgid "Append content"
79
  msgstr "Dodaj za vsebino"
80
 
81
  #. translators: Debugging position name Replace content of HTML element
82
+ #: ad-inserter.php:1059 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1064 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1111
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1115
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1324
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1607 ad-inserter.php:2470
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2041
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2041
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2042
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2043
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2044
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2045
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2046
137
  msgid "AD BLOCKING DETECTED - NO ACTION"
138
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
139
 
140
  #. Translators: 1: number of blocks, 2: Ad Inserter
141
+ #: ad-inserter.php:2241
142
  msgid "Hey, you are now using %1$s %2$s block."
143
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
144
  msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
146
  msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
147
  msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
148
 
149
+ #: ad-inserter.php:2242 includes/functions.php:1521
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
+ #: ad-inserter.php:2245
155
  msgid ""
156
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
157
  msgstr "Hej, %s uporabljate že kar nekaj časa. Upam, da ste zadovoljni z njim."
158
 
159
+ #: ad-inserter.php:2246 includes/functions.php:1524
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
+ #: ad-inserter.php:2256
164
  msgid ""
165
  "I would really appreciate it if you could give the plugin a 5-star rating on "
166
  "WordPres."
168
  "Res bi bili vesel, če bi lahko na WordPress-u vtičnik ocenili s 5-imi "
169
  "zvezicami."
170
 
171
+ #: ad-inserter.php:2258
172
  msgid ""
173
  "Positive reviews are a great incentive to fix bugs and to add new features "
174
  "for better monetization of your website. Thank you, Igor"
177
  "funkcij za boljšo monetizacijo vašega spletnega mesta. Hvala, Igor"
178
 
179
  #. translators: %s: Ad Inserter
180
+ #: ad-inserter.php:2264
181
  msgid "Rate %s"
182
  msgstr "Ocenite %s"
183
 
184
+ #: ad-inserter.php:2269
185
  msgid "I already did."
186
  msgstr "Sem že."
187
 
188
+ #: ad-inserter.php:2283
189
  msgctxt "Menu item"
190
  msgid "Settings"
191
  msgstr "Nastavitve"
192
 
193
  #. translators: %s: Ad Inserter
194
+ #: ad-inserter.php:2357
195
  msgctxt "Meta box name"
196
  msgid "%s Individual Exceptions"
197
  msgstr "Posamezne Izjeme za %s"
198
 
199
+ #: ad-inserter.php:2386 ad-inserter.php:8092 class.php:1967
200
  #: includes/preview.php:1966 includes/preview.php:2010
201
+ #: includes/preview.php:2047 settings.php:3668 strings.php:3
202
  msgid "Block"
203
  msgstr "Blok"
204
 
205
+ #: ad-inserter.php:2387 settings.php:3669 settings.php:3743
206
  msgid "Name"
207
  msgstr "Ime"
208
 
209
+ #: ad-inserter.php:2388 settings.php:3671
210
  msgid "Automatic insertion"
211
  msgstr "Samodejno vstavljanje"
212
 
213
+ #: ad-inserter.php:2391
214
  msgid "Default insertion for pages"
215
  msgstr "Privzeto vstavljanje za strani"
216
 
217
+ #: ad-inserter.php:2392
218
  msgid "Default insertion for posts"
219
  msgstr "Privzeto vstavljanje za prispevke"
220
 
221
  #. translators: For this post or page
222
+ #: ad-inserter.php:2395
223
  msgctxt "Page"
224
  msgid "For this"
225
  msgstr "Za to"
226
 
227
+ #: ad-inserter.php:2396
228
  msgctxt "Post"
229
  msgid "For this"
230
  msgstr "Za ta"
231
 
232
+ #: ad-inserter.php:2404
233
  msgctxt "Enabled/disabled on all"
234
  msgid "pages"
235
  msgstr "straneh"
236
 
237
+ #: ad-inserter.php:2405
238
  msgctxt "Default insertion for"
239
  msgid "pages"
240
  msgstr "strani"
241
 
242
+ #: ad-inserter.php:2409
243
  msgctxt "Enabled/disabled on all"
244
  msgid "posts"
245
  msgstr "prispevkih"
246
 
247
+ #: ad-inserter.php:2410
248
  msgctxt "Default insertion for"
249
  msgid "posts"
250
  msgstr "prispevke"
251
 
252
+ #: ad-inserter.php:2429 ad-inserter.php:2442 strings.php:156
253
  msgid "Enabled"
254
  msgstr "Omogočeno"
255
 
256
  #. translators: Menu items
257
+ #: ad-inserter.php:2429 ad-inserter.php:2442 includes/functions.php:2182
258
  #: strings.php:16
259
  msgid "Disabled"
260
  msgstr "Onemogočeno"
261
 
262
  #. translators: Enabled on all pages or posts
263
+ #: ad-inserter.php:2432
264
  msgid "Enabled on all"
265
  msgstr "Omogočeno na vseh"
266
 
267
  #. translators: Disabled on all pages or posts
268
+ #: ad-inserter.php:2434
269
  msgid "Disabled on all"
270
  msgstr "Onemogočeno na vseh"
271
 
272
  #. translators: No individual exceptions enabled for pages or posts
273
+ #: ad-inserter.php:2462
274
  msgid "No individual exceptions enabled for"
275
  msgstr "Ni omogočenih posameznih izjem za"
276
 
277
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
278
+ #: ad-inserter.php:2467
279
  msgid ""
280
  "Default insertion for %1$s can be configured for each block on %2$s page - "
281
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
285
  "izbira poleg kljukice za vklop <strong>Prispevki</strong> / <strong>Statične "
286
  "strani</strong>.<br />"
287
 
288
+ #: ad-inserter.php:2472
289
  msgid ""
290
  "Default value is <strong>blank</strong> and means no individual exceptions "
291
  "(even if previously defined here).<br />"
293
  "Privzeta vrednost je <strong>prazno</strong> in pomeni brez posameznih izjem "
294
  "(tudi, če so bile predhodno nsatavljene tukaj).<br />"
295
 
296
+ #: ad-inserter.php:2475
297
  msgctxt "Pages"
298
  msgid ""
299
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
302
  "Nastavite na <strong>Posamezno onemogočene</strong> ali <strong>Posamezno "
303
  "omogočene</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
304
 
305
+ #: ad-inserter.php:2476
306
  msgctxt "Posts"
307
  msgid ""
308
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
311
  "Nastavite na <strong>Posamezno onemogočeni</strong> ali <strong>Posamezno "
312
  "omogočeni</strong> za vklop nastavitev posameznih izjem na tej strani.<br />"
313
 
314
+ #: ad-inserter.php:2478
315
  msgid "For more information check page %s"
316
  msgstr "Za več informacij poglejte stran %s"
317
 
318
  #. translators: Ad Inserter Exceptions documentation page
319
+ #: ad-inserter.php:2480
320
  msgid "Individual Exceptions"
321
  msgstr "Posamezne Izjeme"
322
 
323
+ #: ad-inserter.php:2525
324
  msgid "STATIC PAGE"
325
  msgstr "STATIČNA STRAN"
326
 
327
+ #: ad-inserter.php:2528
328
  msgid "POST"
329
  msgstr "PRISPEVEK"
330
 
331
+ #: ad-inserter.php:2531
332
  msgid "HOMEPAGE"
333
  msgstr "DOMAČA STRAN"
334
 
335
+ #: ad-inserter.php:2534
336
  msgid "CATEGORY PAGE"
337
  msgstr "STRAN KATEGORIJE"
338
 
339
+ #: ad-inserter.php:2537
340
  msgid "SEARCH PAGE"
341
  msgstr "STRAN ISKANJE"
342
 
343
+ #: ad-inserter.php:2540
344
  msgid "ARCHIVE PAGE"
345
  msgstr "STRAN ARHIVA"
346
 
347
+ #: ad-inserter.php:2543
348
  msgid "ERROR 404 PAGE"
349
  msgstr "STRAN NAPAKA 404"
350
 
351
+ #: ad-inserter.php:2546
352
  msgid "AJAX CALL"
353
  msgstr "AJAX KLIC"
354
 
355
+ #: ad-inserter.php:2549
356
  msgid "UNKNOWN PAGE TYPE"
357
  msgstr "NEZNAN TIP STRANI"
358
 
359
+ #: ad-inserter.php:2566
360
  msgid "Click to delete ad blocking detection cokies"
361
  msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
362
 
363
+ #: ad-inserter.php:2567
364
  msgid "AD BLOCKING STATUS UNKNOWN"
365
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
366
 
367
  #. translators: %s: AdSense Auto Ads
368
+ #: ad-inserter.php:2591
369
  msgid ""
370
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
371
  "positions"
373
  "Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
374
  "položaje"
375
 
376
+ #: ad-inserter.php:2730
377
  msgid "Code for insertion"
378
  msgstr "Koda za vstavljanje"
379
 
380
+ #: ad-inserter.php:2730
381
  msgid "character"
382
  msgid_plural "characters"
383
  msgstr[0] "znak"
385
  msgstr[2] "znaki"
386
  msgstr[3] "znakov"
387
 
388
+ #: ad-inserter.php:2773
389
  msgid "Header code"
390
  msgstr "Koda v glavi"
391
 
392
+ #: ad-inserter.php:2773
393
  msgctxt "Header code"
394
  msgid "DISABLED"
395
  msgstr "ONEMOGOČENA"
396
 
397
+ #: ad-inserter.php:2773 ad-inserter.php:2995
398
  msgid "character inserted"
399
  msgid_plural "characters inserted"
400
  msgstr[0] "znak vstavljen"
402
  msgstr[2] "znaki vstavljeni"
403
  msgstr[3] "znakov vstavljenih"
404
 
405
+ #: ad-inserter.php:2806
406
  msgid "Automatically placed by AdSense Auto ads code"
407
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
408
 
409
+ #: ad-inserter.php:2995
410
  msgid "Footer code"
411
  msgstr "Koda v nogi"
412
 
413
+ #: ad-inserter.php:2995
414
  msgctxt "Footer code"
415
  msgid "DISABLED"
416
  msgstr "ONEMOGOČENA"
417
 
418
+ #: ad-inserter.php:3001
419
  msgid "JAVASCRIPT NOT WORKING"
420
  msgstr "JAVASCRIPT NE DELA"
421
 
422
+ #: ad-inserter.php:3001
423
  msgid "NO JAVASCRIPT ERRORS"
424
  msgstr "BREZ JAVASCRIPT NAPAK"
425
 
426
+ #: ad-inserter.php:3001
427
  msgid "JAVASCRIPT ERRORS"
428
  msgstr "JAVASCRIPT NAPAKE"
429
 
430
  #. translators: block name (block with default settings)
431
+ #: ad-inserter.php:5133
432
  msgctxt "Block name"
433
  msgid "Default"
434
  msgstr "Privzeti"
435
 
436
  #. translators: %s: Ad Inserter
437
+ #: ad-inserter.php:5700
438
  msgid "Error importing %s settings."
439
  msgstr "Napaka pri uvozu %s nastavitev."
440
 
441
+ #: ad-inserter.php:5701
442
  msgid "Error importing settings for block"
443
  msgid_plural "Error importing settings for blocks:"
444
  msgstr[0] "Napaka pri uvozu nastavitev za blok"
446
  msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
447
  msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
448
 
449
+ #: ad-inserter.php:5750
450
  msgid "Settings saved."
451
  msgstr "Nastavitve shranjene."
452
 
453
+ #: ad-inserter.php:5835
454
  msgid "Settings cleared."
455
  msgstr "Nastavitve ponastavljene."
456
 
457
+ #: ad-inserter.php:6180 ad-inserter.php:6182 ad-inserter.php:6205
458
  msgid "word"
459
  msgid_plural "words"
460
  msgstr[0] "beseda"
462
  msgstr[2] "besede"
463
  msgstr[3] "besed"
464
 
465
+ #: ad-inserter.php:6219 ad-inserter.php:6331
466
  msgid "HTML TAGS REMOVED"
467
  msgstr "HTML ZNAČKE ODSTRANJENE"
468
 
469
+ #: ad-inserter.php:6407
470
  msgid "BEFORE COMMENTS"
471
  msgstr "PRED KOMENTARJI"
472
 
473
+ #: ad-inserter.php:6515
474
  msgid "AFTER COMMENTS"
475
  msgstr "PO KOMETARJIH"
476
 
477
+ #: ad-inserter.php:6578
478
  msgid "BETWEEN COMMENTS"
479
  msgstr "MED KOMENTARJI"
480
 
481
+ #: ad-inserter.php:7739
482
  msgid "requires WordPress 4.0 or newer"
483
  msgstr "potrebuje WordPress 4.0 ali novejši"
484
 
485
+ #: ad-inserter.php:7739
486
  msgid "Please update!"
487
  msgstr "Prosimo, posodobite!"
488
 
489
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
490
  #. name with HTML tags will be added)
491
+ #: ad-inserter.php:7965
492
  msgid "Thank you for installing"
493
  msgstr "Hvala za namestitev vtičnika"
494
 
495
  #. translators: Opt-in message: %s: HTML tags
496
+ #: ad-inserter.php:7967
497
  msgid ""
498
  "We would like to %s track its usage %s on your site. This is completely "
499
  "optional and can be disabled at any time."
501
  "Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
502
  "izbirno in se lahko izključi kadarkoli."
503
 
504
+ #: ad-inserter.php:7969
505
  msgid ""
506
  "We don't record any sensitive data, only information regarding the WordPress "
507
  "environment and plugin usage, which will help us to make improvements to the "
511
  "uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
512
 
513
  #. translators: Deactivation message: %s: HTML tags
514
+ #: ad-inserter.php:8006
515
  msgid ""
516
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
517
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
522
  "nam %s in poskušali vam bomo pomagati."
523
 
524
  #. translators: %s: Ad Inserter
525
+ #: ad-inserter.php:8049
526
  msgid "%s block."
527
  msgstr "%s blok."
528
 
529
  #. translators: widget title
530
+ #: ad-inserter.php:8065 ad-inserter.php:8101
531
  msgid "Processing log"
532
  msgstr "Dnevnik procesiranja"
533
 
534
  #. translators: widget title
535
+ #: ad-inserter.php:8067 ad-inserter.php:8102
536
  msgid "Dummy widget"
537
  msgstr "Prazen gradnik"
538
 
539
  #. translators: widget title
540
+ #: ad-inserter.php:8069 ad-inserter.php:8100
541
  msgid "Debugging tools"
542
  msgstr "Orodja za razhroščevanje"
543
 
544
  #. translators: block status (widget title)
545
+ #: ad-inserter.php:8076
546
  msgctxt "block"
547
  msgid "PAUSED"
548
  msgstr "USTAVLJEN"
549
 
550
+ #: ad-inserter.php:8077
551
  msgid "WIDGET DISABLED"
552
  msgstr "GRADNIK ONEMOGOČEN"
553
 
554
+ #: ad-inserter.php:8078
555
  msgid "Unknown block"
556
  msgstr "Neznan blok"
557
 
558
+ #: ad-inserter.php:8087 includes/functions.php:2711 settings.php:1038
559
  msgid "Title"
560
  msgstr "Naslov"
561
 
562
+ #: ad-inserter.php:8109
563
  msgctxt "Widget"
564
  msgid "Sticky"
565
  msgstr "Lepljiv"
566
 
567
+ #: ad-inserter.php:8158
568
  msgid ""
569
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
570
  "Inserter you need to first deactivate Ad Inserter Pro."
573
  "aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
574
  "Inserter Pro."
575
 
576
+ #: ad-inserter.php:8159
577
  msgid ""
578
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
579
  "will clear all settings that are available only in the Pro version "
608
  msgid "After post"
609
  msgstr "Za prispevkom"
610
 
611
+ #: class.php:1957 settings.php:1624 settings.php:3675
612
  msgid "Widget"
613
  msgstr "Gradnik"
614
 
615
+ #: class.php:1962 settings.php:3673
616
  msgid "PHP function call"
617
  msgstr "Klic PHP funkcije"
618
 
649
  msgid "INSERTED BUT NOT VISIBLE"
650
  msgstr "VSTAVLJEN, VENDAR NI VIDEN"
651
 
652
+ #: class.php:2411 class.php:2470
653
  msgid "ACTIVE GROUPS"
654
  msgstr "AKTIVNE SKUPINE"
655
 
656
  #. translators: %s: list parameters and type
657
+ #: class.php:2645
658
  msgid "parameters='%s' type='%s'"
659
  msgstr "parametri='%s' tip='%s'"
660
 
661
  #. translators: %s: list parameters and type
662
+ #: class.php:2647
663
  msgid "referers='%s' type='%s'"
664
  msgstr "napotitelji='%s' tip='%s'"
665
 
666
  #. translators: %s: list parameters and type
667
+ #: class.php:2708
668
  msgid "countries='%s' type='%s'"
669
  msgstr "države='%s' tip='%s'"
670
 
671
  #. translators: %s: list parameters and type
672
+ #: class.php:2710
673
  msgid "ip addresses='%s' type='%s'"
674
  msgstr "ip naslovi='%s' tip='%s'"
675
 
676
+ #: class.php:2944 strings.php:231
677
  msgid "BEFORE"
678
  msgstr "PRED"
679
 
680
+ #: class.php:2952 strings.php:233
681
  msgid "PREPEND CONTENT"
682
  msgstr "DODAJ PRED VSEBINO"
683
 
684
+ #: class.php:2956 strings.php:234
685
  msgid "APPEND CONTENT"
686
  msgstr "DODAJ ZA VSEBINO"
687
 
688
+ #: class.php:2960 strings.php:235
689
  msgid "REPLACE CONTENT"
690
  msgstr "NADOMESTI VSEBINO"
691
 
692
+ #: class.php:2964 strings.php:236
693
  msgid "REPLACE ELEMENT"
694
  msgstr "NADOMESTI ELEMENT"
695
 
696
+ #: class.php:2975 strings.php:232
697
  msgid "AFTER"
698
  msgstr "ZA"
699
 
700
+ #: class.php:3042
701
  msgctxt "JavaScript"
702
  msgid "script"
703
  msgstr "skripta"
704
 
705
+ #: class.php:3045 settings.php:1893
706
  msgid "for"
707
  msgstr "za"
708
 
709
+ #: class.php:5585 class.php:5637
710
  msgctxt "category name"
711
  msgid "Uncategorized"
712
  msgstr "Nekategorizirano"
713
 
714
+ #: class.php:6128
715
  msgid ""
716
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
717
  "extension for PHP."
720
  "namestiti DOM razširitev za PHP."
721
 
722
  #: includes/editor.php:7 includes/placeholders.php:345
723
+ #: includes/preview.php:1952 strings.php:238
724
  msgid "Use"
725
  msgstr "Uporabi"
726
 
729
  msgstr "Ponastavi"
730
 
731
  #: includes/editor.php:9 includes/placeholders.php:347
732
+ #: includes/preview.php:1955 strings.php:201 strings.php:237
733
  msgid "Cancel"
734
  msgstr "Prekliči"
735
 
755
  msgid "PAGE BLOCKED"
756
  msgstr "STRAN BLOKIRANA"
757
 
758
+ #: includes/functions.php:254
759
  msgid "%d of %d names shown"
760
  msgstr "Prikazanih %d od %d imen"
761
 
762
  #. translators: %s: name filter
763
+ #: includes/functions.php:273
764
  msgid "No name matches filter"
765
  msgstr "Noben podatek ne ustreza filtru"
766
 
767
+ #: includes/functions.php:329 settings.php:174
768
  msgid "Online documentation"
769
  msgstr "Spletna Dokumentacija"
770
 
771
+ #: includes/functions.php:329 settings.php:174
772
  msgid "Documentation"
773
  msgstr "Dokumentacija"
774
 
775
+ #: includes/functions.php:342 settings.php:187
776
  msgid "Blocks"
777
  msgstr "Bloki"
778
 
779
  #. translators: %s: Ad Inserter Pro
780
+ #: includes/functions.php:365
781
  msgid ""
782
  "Import %s settings when saving - if checked, the encoded settings below will "
783
  "be imported for all blocks and settings"
785
  "Uvozi %s nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
786
  "nastavitve spodaj uvozile za vse bloke in nastavitve"
787
 
788
+ #: includes/functions.php:365
789
  msgid "Import Settings for"
790
  msgstr "Uvozi Nastavitve za"
791
 
792
+ #: includes/functions.php:369
793
  msgid "Saved settings for"
794
  msgstr "Shranjene nastavitve za"
795
 
796
+ #: includes/functions.php:388
797
  msgid "License Key"
798
  msgstr "Licenčni Ključ"
799
 
800
+ #: includes/functions.php:391
801
  msgid "License Key for"
802
  msgstr "Licenčni Ključ za"
803
 
804
+ #: includes/functions.php:397
805
  msgid "Hide license key"
806
  msgstr "Skrij licenčni ključ"
807
 
808
+ #: includes/functions.php:397
809
  msgid "Hide key"
810
  msgstr "Skrij ključ"
811
 
812
+ #: includes/functions.php:418
813
  msgid "Main content element"
814
  msgstr "Glavni element vsebine"
815
 
816
+ #: includes/functions.php:421
817
  msgid ""
818
  "Main content element (#id or .class) for 'Stick to the content' position. "
819
  "Leave empty unless position is not properly calculated."
821
  "Glavni element vsebine (#id ali .razred) za položaj 'Lepljiv na vsebino'. "
822
  "Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
823
 
824
+ #: includes/functions.php:422 settings.php:1194 settings.php:2489
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
828
+ #: includes/functions.php:427
829
  msgid "Lazy loading offset"
830
  msgstr "Zamik za leno nalaganje"
831
 
832
+ #: includes/functions.php:430
833
  msgid "Offset of the block from the visible viewport when it should be loaded"
834
  msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
835
 
836
+ #: includes/functions.php:441
837
  msgid "Export / Import Block Settings"
838
  msgstr "Izvozi / Uvozi Nastavitve Bloka"
839
 
840
+ #: includes/functions.php:456
841
  msgid "Track impressions and clicks for this block"
842
  msgstr "Sledi prikazom in klikom za ta blok"
843
 
844
+ #: includes/functions.php:456
845
  msgid " - global tracking disabled"
846
  msgstr " - globalno sledenje onemogočeno"
847
 
848
+ #: includes/functions.php:463
849
+ msgid "Generate PDF report"
850
+ msgstr "Generiraj PDF poročilo"
851
 
852
+ #: includes/functions.php:468 includes/functions.php:469
853
+ msgid "Open public report"
854
+ msgstr "Odpri javno poročilo"
855
+
856
+ #: includes/functions.php:470
857
+ msgid "Open public report with controls"
858
+ msgstr "Odpri javno poročilo s kontrolami"
859
+
860
+ #: includes/functions.php:484
861
  msgid "Toggle Ad Blocking Statistics"
862
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
863
 
864
+ #: includes/functions.php:492 includes/functions.php:2509
865
  msgid "Toggle Statistics"
866
  msgstr "Preklopi Statistiko"
867
 
868
  #. translators: %s: Ad Inserter Pro
869
+ #: includes/functions.php:508
870
  msgid "%s license key is not set. Continue?"
871
  msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
872
 
873
  #. translators: %s: Ad Inserter Pro
874
+ #: includes/functions.php:512
875
  msgid "Invalid %s license key. Continue?"
876
  msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
877
 
878
  #. translators: %s: Ad Inserter Pro
879
+ #: includes/functions.php:516
880
  msgid "%s license overused. Continue?"
881
  msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
882
 
883
+ #: includes/functions.php:520 settings.php:1963
884
  msgid "Save Settings"
885
  msgstr "Sharani Nastavitve"
886
 
887
+ #: includes/functions.php:580 includes/preview.php:2096
888
  msgid "Horizontal position"
889
  msgstr "Vodoravni položaj"
890
 
891
+ #: includes/functions.php:603
892
  msgid ""
893
  "Horizontal margin from the content or screen edge, empty means default value "
894
  "from CSS"
896
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
897
  "iz CSS"
898
 
899
+ #: includes/functions.php:611 includes/preview.php:2151
900
  msgid "Vertical position"
901
  msgstr "Navpični položaj"
902
 
903
+ #: includes/functions.php:626
904
  msgid ""
905
  "Vertical margin from the top or bottom screen edge, empty means default "
906
  "value from CSS"
908
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
909
  "iz CSS"
910
 
911
+ #: includes/functions.php:651 includes/preview.php:2202
912
  msgid "Animation"
913
  msgstr "Animacija"
914
 
915
+ #: includes/functions.php:669
916
  msgid "Trigger"
917
  msgstr "Sporžilec"
918
 
919
+ #: includes/functions.php:678
920
  msgid ""
921
  "Trigger value: page scroll in %, page scroll in px or element with selector "
922
  "(#id or .class) becomes visible"
924
  "Sprožilna vrednost: pomik strani v %, pomik strani v px ali element s "
925
  "selektorjem (#id ali .razred) postane viden"
926
 
927
+ #: includes/functions.php:682
928
  msgid "Offset"
929
  msgstr "Zamik"
930
 
931
+ #: includes/functions.php:682
932
  msgid "Offset of trigger element"
933
  msgstr "Zamik sprožilnega elementa"
934
 
935
+ #: includes/functions.php:686
936
  msgid "Delay"
937
  msgstr "Zakasnitev"
938
 
939
+ #: includes/functions.php:686
940
  msgid "Delay animation after trigger condition"
941
  msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
942
 
943
+ #: includes/functions.php:690
944
  msgid "Trigger once"
945
  msgstr "Sproži enkrat"
946
 
947
+ #: includes/functions.php:692
948
  msgid "Trigger animation only once"
949
  msgstr "Sproži animacijo samo enkrat"
950
 
951
+ #: includes/functions.php:731
952
  msgid "Tracking is globally disabled"
953
  msgstr "Sledenje je globalno onemogočeno"
954
 
955
+ #: includes/functions.php:735
956
  msgid "Tracking for this block is disabled"
957
  msgstr "Sledenje za ta blok je onemogočeno"
958
 
959
+ #: includes/functions.php:745 settings.php:3169 settings.php:3205
960
+ #: settings.php:3248 strings.php:211
961
  msgid "Loading..."
962
  msgstr "Nalagam..."
963
 
964
+ #: includes/functions.php:761
965
  msgid ""
966
  "Clear statistics data for the selected range - clear both dates to delete "
967
  "all data for this block"
969
  "Pobriši podatke o statistiki za izbrano obdobje - pobriši oba datuma za "
970
  "brisanje vseh podatkov za ta blok"
971
 
972
+ #: includes/functions.php:765
973
  msgid "Auto refresh data for the selected range every 60 seconds"
974
  msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
975
 
976
+ #: includes/functions.php:768 includes/functions.php:4681
977
  msgid "Load data for last month"
978
  msgstr "Naloži podatke za zadnji mesec"
979
 
980
+ #: includes/functions.php:768 includes/functions.php:4681
981
  msgid "Last Month"
982
  msgstr "Zadnji Mesec"
983
 
984
+ #: includes/functions.php:771 includes/functions.php:4684
985
  msgid "Load data for this month"
986
  msgstr "Naloži podatke za ta mesec"
987
 
988
+ #: includes/functions.php:771 includes/functions.php:4684
989
  msgid "This Month"
990
  msgstr "Ta Mesec"
991
 
992
+ #: includes/functions.php:774 includes/functions.php:4687
993
  msgid "Load data for this year"
994
  msgstr "Naloži podatke za to leto"
995
 
996
+ #: includes/functions.php:774 includes/functions.php:4687
997
  msgid "This Year"
998
  msgstr "To Leto"
999
 
1000
+ #: includes/functions.php:777 includes/functions.php:4690
1001
  msgid "Load data for the last 15 days"
1002
  msgstr "Naloži podatke za zadnjih 15 dni"
1003
 
1004
+ #: includes/functions.php:780 includes/functions.php:4693
1005
  msgid "Load data for the last 30 days"
1006
  msgstr "Naloži podatke za zadnjih 30 dni"
1007
 
1008
+ #: includes/functions.php:783 includes/functions.php:4696
1009
  msgid "Load data for the last 90 days"
1010
  msgstr "Naloži podatke za zadnjih 90 dni"
1011
 
1012
+ #: includes/functions.php:786 includes/functions.php:4699
1013
  msgid "Load data for the last 180 days"
1014
  msgstr "Naloži podatke za zadnjih 180 dni"
1015
 
1016
+ #: includes/functions.php:789 includes/functions.php:4702
1017
  msgid "Load data for the last 365 days"
1018
  msgstr "Naloži podatke za zadnjih 365 dni"
1019
 
1020
+ #: includes/functions.php:799 includes/functions.php:4712
1021
  msgid "Load data for the selected range"
1022
  msgstr "Naloži podatke za izbrano obdobje"
1023
 
1024
+ #: includes/functions.php:815
1025
  msgid ""
1026
  "Import settings when saving - if checked, the encoded settings below will be "
1027
  "imported for this block"
1029
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1030
  "nastavitve spodaj uvozile za ta blok"
1031
 
1032
+ #: includes/functions.php:815
1033
  msgid "Import settings for block"
1034
  msgstr "Uvozi nastavitve za blok"
1035
 
1036
+ #: includes/functions.php:819
1037
  msgid ""
1038
  "Import block name when saving - if checked and 'Import settings for block' "
1039
  "is also checked, the name from encoded settings below will be imported for "
1043
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1044
  "uvozilo za ta blok"
1045
 
1046
+ #: includes/functions.php:819
1047
  msgid "Import block name"
1048
  msgstr "Uvozi ime bloka"
1049
 
1050
+ #: includes/functions.php:823
1051
  msgid "Saved settings for block"
1052
  msgstr "Shranjene nastavitve za blok"
1053
 
1054
+ #: includes/functions.php:836
1055
  msgid "Export / Import Ad Inserter Pro Settings"
1056
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1057
 
1058
+ #: includes/functions.php:846
1059
  msgid "Are you sure you want to clear all statistics data for all blocks?"
1060
  msgstr ""
1061
  "Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
1062
  "bloke?"
1063
 
1064
+ #: includes/functions.php:848
1065
  msgid "Clear All Statistics Data"
1066
  msgstr "Pobriši Vse Podatke o Statistiki"
1067
 
1068
+ #: includes/functions.php:875
1069
  msgid "Toggle country/city editor"
1070
  msgstr "Preklopi urejevalnik držav/mest"
1071
 
1072
+ #: includes/functions.php:881
1073
  msgid "IP Addresses"
1074
  msgstr "IP Naslovi"
1075
 
1076
+ #: includes/functions.php:884
1077
  msgid "Toggle IP address editor"
1078
  msgstr "Preklopi urejevalnik IP nslovov"
1079
 
1080
+ #: includes/functions.php:887
1081
  msgid ""
1082
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1083
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1085
  "Z vejico ločeni IP naslovi, uporabite lahko tudi delne IP naslove z * (ip-"
1086
  "naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
1087
 
1088
+ #: includes/functions.php:891
1089
  msgid "Blacklist IP addresses"
1090
  msgstr "Črni seznam IP naslovov"
1091
 
1092
+ #: includes/functions.php:895
1093
  msgid "Whitelist IP addresses"
1094
  msgstr "Beli seznam IP naslovov"
1095
 
1096
+ #: includes/functions.php:906
1097
  msgid "Countries"
1098
  msgstr "Države"
1099
 
1100
+ #: includes/functions.php:907
1101
  msgid "Cities"
1102
  msgstr "Mesta"
1103
 
1104
+ #: includes/functions.php:911 includes/functions.php:2474
1105
  msgid "Toggle country editor"
1106
  msgstr "Preklopi urejevalnik držav"
1107
 
1108
+ #: includes/functions.php:914
1109
  msgid "Toggle city editor"
1110
  msgstr "Preklopi urejevalnik mest"
1111
 
1112
+ #: includes/functions.php:918 includes/functions.php:2477
1113
  msgid "Comma separated country ISO Alpha-2 codes"
1114
  msgstr "Z vejico ločene ISO Alpha-2 kode držav"
1115
 
1116
+ #: includes/functions.php:922
1117
  msgid "Blacklist countries"
1118
  msgstr "Črni seznam držav"
1119
 
1120
+ #: includes/functions.php:926
1121
  msgid "Whitelist countries"
1122
  msgstr "Beli seznam držav"
1123
 
1124
+ #: includes/functions.php:1242 includes/functions.php:1477
1125
  msgid "Enter license key"
1126
  msgstr "Vnesite licenčni ključ"
1127
 
1128
  #. translators: %s: Ad Inserter Pro
1129
+ #: includes/functions.php:1248
1130
  msgid ""
1131
  "%s license key is not set. Plugin functionality is limited and updates are "
1132
  "disabled."
1134
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1135
  "posodobitve onemogočene."
1136
 
1137
+ #: includes/functions.php:1260 includes/functions.php:1486
1138
  msgid "Check license key"
1139
  msgstr "Preverite licenčni ključ"
1140
 
1141
  #. translators: %s: Ad Inserter Pro
1142
+ #: includes/functions.php:1266
1143
  msgid "Invalid %s license key."
1144
  msgstr "Neveljaven %s licenčni ključ."
1145
 
1146
  #. translators: %s: Ad Inserter Pro
1147
+ #: includes/functions.php:1275
1148
  msgid "%s license expired. Plugin updates are disabled."
1149
  msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
1150
 
1151
+ #: includes/functions.php:1276
1152
  msgid "Renew license"
1153
  msgstr "Obnovite licenco"
1154
 
1155
  #. translators: %s: Ad Inserter Pro
1156
+ #: includes/functions.php:1284
1157
  msgid "%s license overused. Plugin updates are disabled."
1158
  msgstr ""
1159
  "%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
1160
 
1161
+ #: includes/functions.php:1285
1162
+ msgid "Manage licenses"
1163
+ msgstr "Upravljajte z licencami"
1164
+
1165
+ #: includes/functions.php:1285
1166
  msgid "Upgrade license"
1167
  msgstr "Nadgradite licenco"
1168
 
1169
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1170
+ #: includes/functions.php:1479
1171
  msgid ""
1172
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1173
  "limited and updates are disabled."
1176
  "so omejene in posodobitve onemogočene."
1177
 
1178
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1179
+ #: includes/functions.php:1488
1180
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1181
  msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
1182
 
1183
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1184
+ #: includes/functions.php:1504
1185
  msgid ""
1186
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1187
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1191
  "pogrešate. %3$s"
1192
 
1193
  #. translators: 1, 3: HTML tags, 2: percentage
1194
+ #: includes/functions.php:1511
1195
  msgid ""
1196
  "During the license period and 30 days after the license has expired we offer "
1197
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1199
  "V obdobju licence in 30 dni po tem, ko licenca poteče, vam ponujamo %1$s "
1200
  "%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
1201
 
1202
+ #: includes/functions.php:1538
1203
  msgid "Renew the licence"
1204
  msgstr "Obnovi licenco"
1205
 
1206
+ #: includes/functions.php:1540
1207
  msgid "Update license status"
1208
  msgstr "Posodobi status licence"
1209
 
1210
+ #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1211
+ #: includes/functions.php:1551
1212
  msgid ""
1213
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1214
+ "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1215
  msgstr ""
1216
  "%1$s Opozorilo: %2$s %3$s licenca prekomerno uporabljena. Posodobitve "
1217
+ "vtičnika so onemogočene. %4$s Upravljajte z licencami %5$s &mdash; %6$s "
1218
+ "Nadgradite licenco %7$s"
1219
 
1220
  #. Translators: %s: HTML tag
1221
+ #: includes/functions.php:1573
1222
  msgid "Warning: %s MaxMind IP geolocation database not found."
1223
  msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
1224
 
1225
+ #: includes/functions.php:2111
1226
  msgid "Geolocation"
1227
  msgstr "Geolokacija"
1228
 
1229
+ #: includes/functions.php:2115
1230
  msgid "Exceptions"
1231
  msgstr "Izjeme"
1232
 
1233
+ #: includes/functions.php:2120
1234
  msgid "Multisite"
1235
  msgstr "Multisite"
1236
 
1237
+ #: includes/functions.php:2125
1238
  msgid "Tracking"
1239
  msgstr "Sledenje"
1240
 
1241
  #. translators: %d: days, hours, minutes
1242
+ #: includes/functions.php:2156
1243
  msgid "Scheduled in %d days %d hours %d minutes"
1244
  msgstr "Planirano v %d dneh %d urah %d minutah"
1245
 
1246
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1247
  #. HTML code for long dash separator
1248
+ #: includes/functions.php:2165
1249
  msgid "Active %s expires in %d days %d hours %d minutes"
1250
  msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
1251
 
1252
+ #: includes/functions.php:2169
1253
  msgid "Expired"
1254
  msgstr "Poteklo"
1255
 
1256
+ #: includes/functions.php:2177 settings.php:1277 settings.php:1292
1257
  #: settings.php:1879
1258
  msgid "and"
1259
  msgstr "in"
1260
 
1261
+ #: includes/functions.php:2180
1262
  msgid "fallback"
1263
  msgstr "rezerva"
1264
 
1265
+ #: includes/functions.php:2181
1266
  msgid "Block to be used when scheduling expires"
1267
  msgstr "Blok, ki se bo uporabil, ko urnik poteče"
1268
 
1269
+ #: includes/functions.php:2206
1270
  msgid "Load in iframe"
1271
  msgstr "Naloži v iframe-u"
1272
 
1273
+ #: includes/functions.php:2210 includes/placeholders.php:382
1274
  msgid "Width"
1275
  msgstr "Širina"
1276
 
1277
+ #: includes/functions.php:2211
1278
  msgid "iframe width, empty means full width (100%)"
1279
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1280
 
1281
+ #: includes/functions.php:2217 includes/placeholders.php:377
1282
  msgid "Height"
1283
  msgstr "Višina"
1284
 
1285
+ #: includes/functions.php:2218
1286
  msgid "iframe height, empty means adjust it to iframe content height"
1287
  msgstr ""
1288
  "Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
1289
 
1290
+ #: includes/functions.php:2225
1291
  msgid "Ad label in iframe"
1292
  msgstr "Oznaka oglasa v iframe-u"
1293
 
1294
+ #: includes/functions.php:2230
1295
  msgid "Preview iframe code"
1296
  msgstr "Predpreglej kodo iframe"
1297
 
1298
+ #: includes/functions.php:2230 includes/preview.php:1964 settings.php:954
1299
+ #: settings.php:2551
1300
  msgid "Preview"
1301
  msgstr "Predogled"
1302
 
1303
+ #: includes/functions.php:2244 includes/functions.php:3784
1304
+ #: includes/functions.php:3847 settings.php:2016
1305
  msgid "Ad Blocking"
1306
  msgstr "Blokiranje Oglasov"
1307
 
1308
  #. translators: 1, 2 and 3, 4: HTML tags
1309
+ #: includes/functions.php:2253
1310
  msgid ""
1311
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1312
  "for tracking!"
1316
 
1317
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1318
  #. header
1319
+ #: includes/functions.php:2262
1320
  msgid ""
1321
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1322
  "enabled and automatic insertion %6$s!"
1324
  "%1$s OPOZORILO: %2$s vertikalni položaj %3$s potrebuje %4$s Predpomnjenje "
1325
  "izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
1326
 
1327
+ #: includes/functions.php:2280
1328
  msgid "When ad blocking is detected"
1329
  msgstr "Ko je blokiranje oglasov zaznano"
1330
 
1331
+ #: includes/functions.php:2289
1332
  msgid "replacement"
1333
  msgstr "nadomestek"
1334
 
1335
+ #: includes/functions.php:2290
1336
  msgid "Block to be shown when ad blocking is detected"
1337
  msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
1338
 
1339
+ #: includes/functions.php:2291
1340
  msgctxt "replacement"
1341
  msgid "None"
1342
  msgstr "Noben"
1343
 
1344
+ #: includes/functions.php:2308
1345
  msgid "Close button"
1346
  msgstr "Gumb Zapri"
1347
 
1348
+ #: includes/functions.php:2355
1349
  msgid "Lazy loading"
1350
  msgstr "Leno nalaganje"
1351
 
1352
  #. Translators: %s MaxMind
1353
+ #: includes/functions.php:2409
1354
  msgid "This product includes GeoLite2 data created by %s"
1355
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1356
 
1357
+ #: includes/functions.php:2420
1358
  msgid "IP geolocation database"
1359
  msgstr "Podatkovna baza za IP geolokacijo"
1360
 
1361
+ #: includes/functions.php:2423
1362
  msgid "Select IP geolocation database."
1363
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1364
 
1365
+ #: includes/functions.php:2434
1366
  msgid "Automatic database updates"
1367
  msgstr "Samodejna posodobitev podatkovne baze"
1368
 
1369
+ #: includes/functions.php:2437
1370
  msgid ""
1371
  "Automatically download and update free GeoLite2 IP geolocation database by "
1372
  "MaxMind"
1374
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1375
  "podatkovno bazo MaxMind"
1376
 
1377
+ #: includes/functions.php:2445
1378
  msgid "Database"
1379
  msgstr "Podatkovna baza"
1380
 
1381
+ #: includes/functions.php:2448
1382
  msgid ""
1383
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1384
  "file"
1387
  "podatkovne baze"
1388
 
1389
  #. translators: %d: group number
1390
+ #: includes/functions.php:2466
1391
  msgid "Group %d"
1392
  msgstr "Skupina %d"
1393
 
1394
+ #: includes/functions.php:2472
1395
  msgid "countries"
1396
  msgstr "države"
1397
 
1398
+ #: includes/functions.php:2517
1399
  msgid "Enable tracking"
1400
  msgstr "Omogoči sledenje"
1401
 
1402
+ #: includes/functions.php:2524
1403
+ msgid "Generate report"
1404
+ msgstr "Generiraj poročilo"
1405
+
1406
+ #: includes/functions.php:2532
1407
  msgid "Impression and Click Tracking"
1408
  msgstr "Sledenje Prikazov in Klikov"
1409
 
1410
+ #: includes/functions.php:2548
1411
  msgid "Internal"
1412
  msgstr "Notranje"
1413
 
1414
+ #: includes/functions.php:2552
1415
  msgid "Track impressions and clicks with internal tracking and statistics"
1416
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1417
 
1418
+ #: includes/functions.php:2557
1419
  msgid "External"
1420
  msgstr "Zunanje"
1421
 
1422
+ #: includes/functions.php:2561
1423
  msgid ""
1424
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1425
  "code installed)"
1427
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1428
  "kodo za sledenje)"
1429
 
1430
+ #: includes/functions.php:2566
1431
  msgid "Track Pageviews"
1432
  msgstr "Sledi Ogledom Strani"
1433
 
1434
+ #: includes/functions.php:2572
1435
  msgid "Track Pageviews by Device (as configured for viewports)"
1436
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1437
 
1438
+ #: includes/functions.php:2582
1439
  msgid "Track for Logged in Users"
1440
  msgstr "Sledi za Prijavljene Upor."
1441
 
1442
+ #: includes/functions.php:2588
1443
  msgid "Track impressions and clicks from logged in users"
1444
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1445
 
1446
+ #: includes/functions.php:2598
1447
  msgid "Click Detection"
1448
  msgstr "Zaznavanje klikov"
1449
 
1450
+ #: includes/functions.php:2604
1451
  msgid ""
1452
  "Standard method detects clicks only on banners with links, Advanced method "
1453
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1455
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1456
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1457
 
1458
+ #: includes/functions.php:2630
1459
  msgid "Report header image"
1460
  msgstr "Slika v glavi poročila"
1461
 
1462
+ #: includes/functions.php:2633
1463
  msgid ""
1464
  "Image or logo to be displayed in the header of the statistins report. "
1465
+ "Aabsolute path starting with '/' or relative path to the image file. Clear "
1466
+ "to reset to default image."
1467
  msgstr ""
1468
  "Slika ali logo, ki bo prikazan v glavi poročila statistike. Absolutna pot, "
1469
+ "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1470
+ "ponastavitev na privzeto sliko."
1471
 
1472
+ #: includes/functions.php:2634 strings.php:223
1473
  msgid "Select or upload header image"
1474
  msgstr "Izberi ali naloži sliko glave"
1475
 
1476
+ #: includes/functions.php:2639
1477
  msgid "Report header title"
1478
  msgstr "Naslov v glavi poročila"
1479
 
1480
+ #: includes/functions.php:2642
1481
  msgid ""
1482
+ "Title to be displayed in the header of the statistics report. Text or HTML "
1483
+ "code, clear to reset to default text."
1484
  msgstr ""
1485
+ "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1486
+ "pobrišite za ponastavitev na privzeto besedilo."
1487
 
1488
+ #: includes/functions.php:2647
1489
  msgid "Report header description"
1490
  msgstr "Opis v glavi poročila"
1491
 
1492
+ #: includes/functions.php:2650
1493
  msgid ""
1494
+ "Description to be displayed in the header of the statistics report. Text or "
1495
+ "HTML code, clear to reset to default text."
1496
  msgstr ""
1497
+ "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1498
+ "pobrišite za ponastavitev na privzeto besedilo."
1499
 
1500
+ #: includes/functions.php:2655
1501
+ msgid "Report footer"
1502
+ msgstr "Noga poročila"
1503
+
1504
+ #: includes/functions.php:2658
1505
+ msgid ""
1506
+ "Text to be displayed in the footer of the statistics report. Clear to reset "
1507
+ "to default text."
1508
+ msgstr ""
1509
+ "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1510
+ "koda, pobrišite za ponastavitev na privzeto besedilo."
1511
+
1512
+ #: includes/functions.php:2663
1513
+ msgid "Public report key"
1514
+ msgstr "Ključ za javno poročilo"
1515
+
1516
+ #: includes/functions.php:2666
1517
+ msgid "String to generate unique report IDs. Clear to reset to default value."
1518
+ msgstr ""
1519
+ "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1520
+ "privzeto vrednost."
1521
+
1522
+ #: includes/functions.php:2698
1523
  msgid "Are you sure you want to clear all exceptions for block"
1524
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1525
 
1526
+ #: includes/functions.php:2699 settings.php:1041
1527
  msgid "Clear all exceptions for block"
1528
  msgstr "Pobriši vse izjeme za blok"
1529
 
1530
+ #: includes/functions.php:2706
1531
  msgid "Are you sure you want to clear all exceptions?"
1532
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1533
 
1534
+ #: includes/functions.php:2706
1535
  msgid "Clear all exceptions for all blocks"
1536
  msgstr "Pobriši vse izjeme za vse bloke"
1537
 
1538
+ #: includes/functions.php:2711 settings.php:3407 settings.php:3745
1539
  msgid "Type"
1540
  msgstr "Vrsta"
1541
 
1542
+ #: includes/functions.php:2729
1543
  msgid "View"
1544
  msgstr "Poglej"
1545
 
1546
+ #: includes/functions.php:2730 includes/placeholders.php:346
1547
  #: includes/preview.php:2271 settings.php:1180
1548
  msgid "Edit"
1549
  msgstr "Uredi"
1550
 
1551
+ #: includes/functions.php:2760
1552
  msgid "Are you sure you want to clear all exceptions for"
1553
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1554
 
1555
+ #: includes/functions.php:2761
1556
  msgid "Clear all exceptions for"
1557
  msgstr "Pobriši vse izjeme za"
1558
 
1559
+ #: includes/functions.php:2774
1560
  msgid "No exceptions"
1561
  msgstr "Brez izjem"
1562
 
1563
  #. translators: %s: Ad Inserter Pro
1564
+ #: includes/functions.php:2785
1565
  msgid "%s options for network blogs"
1566
  msgstr "%s izbire za omrežne bloge"
1567
 
1568
  #. translators: %s: Ad Inserter Pro
1569
+ #: includes/functions.php:2790
1570
  msgid "Enable %s widgets for sub-sites"
1571
  msgstr "Omogoči %s gradnik za pod-spletišča"
1572
 
1573
+ #: includes/functions.php:2790
1574
  msgid "Widgets"
1575
  msgstr "Gradniki"
1576
 
1577
+ #: includes/functions.php:2795
1578
  msgid "Enable PHP code processing for sub-sites"
1579
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1580
 
1581
+ #: includes/functions.php:2795
1582
  msgid "PHP Processing"
1583
  msgstr "PHP Procesiranje"
1584
 
1585
  #. translators: %s: Ad Inserter Pro
1586
+ #: includes/functions.php:2800
1587
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1588
  msgstr ""
1589
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1590
 
1591
+ #: includes/functions.php:2800
1592
  msgid "Post/Page exceptions"
1593
  msgstr "Izjeme prispevkov/strani"
1594
 
1595
  #. translators: %s: Ad Inserter Pro
1596
+ #: includes/functions.php:2805
1597
  msgid "Enable %s settings page for sub-sites"
1598
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1599
 
1600
+ #: includes/functions.php:2805
1601
  msgid "Settings page"
1602
  msgstr "Stran z nastavitvami"
1603
 
1604
  #. translators: %s: Ad Inserter Pro
1605
+ #: includes/functions.php:2810
1606
  msgid "Enable %s settings of main site to be used for all blogs"
1607
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1608
 
1609
+ #: includes/functions.php:2810
1610
  msgid "Main site settings used for all blogs"
1611
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1612
 
1613
+ #: includes/functions.php:2821 settings.php:2438
1614
  msgid "Ad Blocking Detection"
1615
  msgstr "Zaznavanje Blokiranja Oglasov"
1616
 
1617
+ #: includes/functions.php:2827
1618
  msgid ""
1619
  "Standard method is reliable but should be used only if Advanced method does "
1620
  "not work. Advanced method recreates files used for detection with random "
1626
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1627
  "dostopna"
1628
 
1629
+ #: includes/functions.php:3447 includes/functions.php:3537
1630
+ #: includes/functions.php:3557
1631
  msgid "AD BLOCKING"
1632
  msgstr "BLOKIRANJE OGLASOV"
1633
 
1634
+ #: includes/functions.php:3448 includes/functions.php:3488
1635
+ #: includes/functions.php:3531 includes/functions.php:3558
1636
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1637
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1638
 
1639
+ #: includes/functions.php:3451 includes/functions.php:3530
1640
+ #: includes/functions.php:3564
1641
  msgid "NO AD BLOCKING"
1642
  msgstr "NI BLOKIRANJA OGLASOV"
1643
 
1644
+ #: includes/functions.php:3487 includes/functions.php:3494
1645
  msgid "AD BLOCKING REPLACEMENT"
1646
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1647
 
1648
+ #: includes/functions.php:3637 includes/functions.php:3846
1649
  msgid "Pageviews"
1650
  msgstr "Ogledi strani"
1651
 
1652
+ #: includes/functions.php:3783
1653
  msgctxt "Version"
1654
  msgid "Unknown"
1655
  msgstr "Neznana"
1656
 
1657
+ #: includes/functions.php:3783
1658
  msgctxt "Times"
1659
  msgid "DISPLAYED"
1660
  msgstr "PRIKAZANO"
1661
 
1662
+ #: includes/functions.php:3783
1663
  msgid "No version"
1664
  msgstr "Brez različice"
1665
 
1666
+ #: includes/functions.php:3784
1667
  msgctxt "Times"
1668
  msgid "BLOCKED"
1669
  msgstr "BLOKIRANO"
1670
 
1671
+ #: includes/functions.php:3846
1672
  msgid "Impressions"
1673
  msgstr "Prikazi"
1674
 
1675
+ #: includes/functions.php:3847 includes/functions.php:3848
1676
+ #: includes/functions.php:3909
1677
  msgid "Clicks"
1678
  msgstr "Kliki"
1679
 
1680
+ #: includes/functions.php:3848
1681
  msgid "events"
1682
  msgstr "dogodki"
1683
 
1684
+ #: includes/functions.php:3849
1685
  msgid "Ad Blocking Share"
1686
  msgstr "Delež blokiranja oglasov"
1687
 
1688
  #. translators: CTR as Click Through Rate
1689
+ #: includes/functions.php:3849 includes/functions.php:3915
1690
  msgid "CTR"
1691
  msgstr "CTR"
1692
 
1693
+ #: includes/functions.php:3997
1694
  msgid "pageviews"
1695
  msgid_plural "pageviews"
1696
  msgstr[0] "ogled strani"
1698
  msgstr[2] "ogledi strani"
1699
  msgstr[3] "ogledov strani"
1700
 
1701
+ #: includes/functions.php:3997
1702
  msgid "impressions"
1703
  msgid_plural "impressions"
1704
  msgstr[0] "prikaz"
1706
  msgstr[2] "prikazi"
1707
  msgstr[3] "prikazov"
1708
 
1709
+ #: includes/functions.php:4001
1710
  msgid "event"
1711
  msgid_plural "events"
1712
  msgstr[0] "dogodek"
1714
  msgstr[2] "dogodki"
1715
  msgstr[3] "dogodkov"
1716
 
1717
+ #: includes/functions.php:4001
1718
  msgid "click"
1719
  msgid_plural "clicks"
1720
  msgstr[0] "klik"
1722
  msgstr[2] "kliki"
1723
  msgstr[3] "klikov"
1724
 
1725
+ #: includes/functions.php:4096
1726
  msgctxt "Pageviews / Impressions"
1727
  msgid "Average"
1728
  msgstr "Povprečni"
1729
 
1730
+ #: includes/functions.php:4117
1731
  msgctxt "Ad Blocking / Clicks"
1732
  msgid "Average"
1733
  msgstr "Povprečno"
1734
 
1735
+ #: includes/functions.php:4141
1736
  msgctxt "Ad Blocking Share / CTR"
1737
  msgid "Average"
1738
  msgstr "Povprečni"
1739
 
1740
  #. Translators: %s: Ad Inserter Pro
1741
+ #: includes/functions.php:4323
1742
  msgid "%s Report"
1743
  msgstr "%s Poročilo"
1744
 
1745
+ #: includes/functions.php:4414 includes/functions.php:4626 strings.php:178
1746
+ msgid "Ad Inserter Pro Report"
1747
+ msgstr "Ad Inserter Pro Poročilo"
1748
 
1749
  #: includes/placeholders.php:19
1750
  msgid "Custom"
1770
  msgid "Placeholder"
1771
  msgstr "Polnilo"
1772
 
1773
+ #: includes/placeholders.php:356 settings.php:808 settings.php:3746
1774
  msgid "Size"
1775
  msgstr "Velikost"
1776
 
1903
  msgid "Ad Blocking Detected Message Preview"
1904
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1905
 
1906
+ #: includes/preview-adb.php:348 settings.php:2564
1907
  msgid "Message CSS"
1908
  msgstr "CSS sporočila"
1909
 
1910
+ #: includes/preview-adb.php:353 settings.php:2572
1911
  msgid "Overlay CSS"
1912
  msgstr "CSS prevleke"
1913
 
1948
  msgstr "ozadje"
1949
 
1950
  #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1951
+ #: settings.php:3672
1952
  msgid "Alignment"
1953
  msgstr "Poravnava"
1954
 
2224
  msgid "General Settings"
2225
  msgstr "Splošne Nastavitve"
2226
 
2227
+ #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2544
2228
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2229
  msgstr ""
2230
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2261
  msgid "Clear block"
2262
  msgstr "Počisti blok"
2263
 
2264
+ #: settings.php:658 settings.php:3640
2265
  msgid "Copy block"
2266
  msgstr "Kopiraj blok"
2267
 
2434
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2435
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2436
 
2437
+ #: settings.php:978 settings.php:3056
2438
  msgid "Posts"
2439
  msgstr "Prispevki"
2440
 
2448
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2449
  "lahko odvisni od ročic, ki jih tema uporablja)"
2450
 
2451
+ #: settings.php:983 settings.php:3058
2452
  msgid "Homepage"
2453
  msgstr "Domača stran"
2454
 
2456
  msgid "Enable insertion on category blog pages (including sub-pages)"
2457
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2458
 
2459
+ #: settings.php:988 settings.php:3059
2460
  msgid "Category pages"
2461
  msgstr "Strani kategorij"
2462
 
2477
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2478
  "izjem."
2479
 
2480
+ #: settings.php:1006 settings.php:3057
2481
  msgid "Static pages"
2482
  msgstr "Statične strani"
2483
 
2485
  msgid "Enable insertion on search blog pages"
2486
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2487
 
2488
+ #: settings.php:1011 settings.php:3061
2489
  msgid "Search pages"
2490
  msgstr "Iskalne strani"
2491
 
2606
  msgid "HTML element selector or comma separated list of selectors"
2607
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2608
 
2609
+ #: settings.php:1209 settings.php:2449
2610
  msgid "Action"
2611
  msgstr "Akcija"
2612
 
2894
  msgstr ""
2895
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2896
 
2897
+ #: settings.php:1636 settings.php:3674
2898
  msgid "Shortcode"
2899
  msgstr "Kratka koda"
2900
 
2958
  msgid "Display"
2959
  msgstr "Prikaz"
2960
 
2961
+ #: settings.php:1760 settings.php:2009
2962
  msgid "General"
2963
  msgstr "Splošno"
2964
 
3026
  "Štej ta blok za omejitev Največ blokov na stran (določena na zavihku "
3027
  "&#9881; / zavihek Splošno)"
3028
 
3029
+ #: settings.php:1805 settings.php:2178
3030
  msgid "Max blocks per page"
3031
  msgstr "Največ blokov na stran"
3032
 
3111
  msgid "Not available"
3112
  msgstr "Ni na razpolago"
3113
 
3114
+ #: settings.php:1908 settings.php:2170
3115
  msgid "Ad label"
3116
  msgstr "Oznaka oglasa"
3117
 
3152
  msgid "Edit ads.txt file"
3153
  msgstr "Uredi datoteko ads.txt"
3154
 
3155
+ #: settings.php:2010
3156
  msgid "Viewports"
3157
  msgstr "Pogledi"
3158
 
3159
+ #: settings.php:2011
3160
  msgid "Hooks"
3161
  msgstr "Ročice"
3162
 
3163
+ #: settings.php:2012
3164
  msgid "Header"
3165
  msgstr "Glava"
3166
 
3167
+ #: settings.php:2013 strings.php:30
3168
  msgid "Footer"
3169
  msgstr "Noga"
3170
 
3171
+ #: settings.php:2018
3172
  msgid "Debugging"
3173
  msgstr "Razhroščevanje"
3174
 
3175
+ #: settings.php:2028
3176
  msgid "Plugin priority"
3177
  msgstr "Prednost vtičnika"
3178
 
3179
+ #: settings.php:2036
3180
  msgid "Output buffering"
3181
  msgstr "Predpomnjenje izhoda"
3182
 
3183
+ #: settings.php:2039
3184
  msgid "Needed for position Above header but may not work with all themes"
3185
  msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
3186
 
3187
+ #: settings.php:2047
3188
  msgid "Syntax highlighting theme"
3189
  msgstr "Tema za poudarjanje sintakse"
3190
 
3191
+ #: settings.php:2054
3192
  msgctxt "no syntax highlighting themes"
3193
  msgid "None"
3194
  msgstr "Brez"
3195
 
3196
+ #: settings.php:2055
3197
  msgid "No Syntax Highlighting"
3198
  msgstr "Brez Poudarjanja Sintakse"
3199
 
3200
+ #: settings.php:2057
3201
  msgctxt "syntax highlighting themes"
3202
  msgid "Light"
3203
  msgstr "Svetle"
3204
 
3205
+ #: settings.php:2072
3206
  msgctxt "syntax highlighting themes"
3207
  msgid "Dark"
3208
  msgstr "Temne"
3209
 
3210
+ #: settings.php:2098
3211
  msgid "Min. user role for ind. exceptions editing"
3212
  msgstr "Najm. uporabniška vloga za urejanje izjem"
3213
 
3214
+ #: settings.php:2108
3215
  msgid "Disable caching for logged in administrators"
3216
  msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
3217
 
3218
+ #: settings.php:2111
3219
  msgid ""
3220
  "Enabled means that logged in administrators will see non-cached (live) pages "
3221
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
3223
  "Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
3224
  "strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
3225
 
3226
+ #: settings.php:2119
3227
  msgid "Sticky widget mode"
3228
  msgstr "Način za lepljive gradnike"
3229
 
3230
+ #: settings.php:2122
3231
  msgid ""
3232
  "CSS mode is the best approach but may not work with all themes. JavaScript "
3233
  "mode works with most themes but may reload ads on page load."
3236
  "Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
3237
  "nalaganju strani."
3238
 
3239
+ #: settings.php:2130
3240
  msgid "Sticky widget top margin"
3241
  msgstr "Zgornji rob za lepljiv gradnik"
3242
 
3243
+ #: settings.php:2138
3244
  msgid "Dynamic blocks"
3245
  msgstr "Dinamični bloki"
3246
 
3247
+ #: settings.php:2151
3248
  msgid "Functions for paragraph counting"
3249
  msgstr "Funkcije za štetje odstavkov"
3250
 
3251
+ #: settings.php:2154
3252
  msgid ""
3253
  "Standard PHP functions are faster and work in most cases, use Multibyte "
3254
  "functions if paragraphs are not counted properly on non-english pages."
3257
  "Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
3258
  "šteti."
3259
 
3260
+ #: settings.php:2162
3261
  msgid "No paragraph counting inside"
3262
  msgstr "Ni štetja odstavkov znotraj"
3263
 
3264
+ #: settings.php:2173
3265
  msgid "Label text or HTML code"
3266
  msgstr "Besedilo oznake ali HTML koda"
3267
 
3268
+ #: settings.php:2181
3269
  msgid ""
3270
  "Maximum number of inserted blocks per page. You need to enable Max page "
3271
  "insertions (button Misc / tab Insertion) to count block for this limit."
3274
  "blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
3275
  "omejitev."
3276
 
3277
+ #: settings.php:2195
3278
  msgid "Plugin usage tracking"
3279
  msgstr "Sledenje uporabe vtičnika"
3280
 
3281
  #. translators: %s: Ad Inserter
3282
+ #: settings.php:2198
3283
  msgid ""
3284
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
3285
  "Only information regarding the WordPress environment and %s usage is "
3289
  "Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
3290
  "mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
3291
 
3292
+ #: settings.php:2216
3293
  msgid "CSS class name for the wrapping div"
3294
  msgstr "Ime CSS razreda za div za ovijanje"
3295
 
3296
+ #: settings.php:2216
3297
  msgid "Block class name"
3298
  msgstr "Ime razreda za blok"
3299
 
3300
+ #: settings.php:2220
3301
  msgid "Include general plugin block class"
3302
  msgstr "Vključi splošni razred vtičnika za blok"
3303
 
3304
+ #: settings.php:2220
3305
  msgid "Block class"
3306
  msgstr "Razred bloka"
3307
 
3308
+ #: settings.php:2225
3309
  msgid "Include block number class"
3310
  msgstr "Vključi razred številke bloka"
3311
 
3312
+ #: settings.php:2225
3313
  msgid "Block number class"
3314
  msgstr "Razred številke bloka"
3315
 
3316
+ #: settings.php:2230
3317
  msgid ""
3318
  "Instead of alignment classes generate inline alignment styles for blocks"
3319
  msgstr ""
3320
  "Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
3321
 
3322
+ #: settings.php:2230
3323
  msgid "Inline styles"
3324
  msgstr "Medvrstični slogi"
3325
 
3326
+ #: settings.php:2236
3327
  msgid "Preview of the block wrapping code"
3328
  msgstr "Predogled kode za ovijanje blokov"
3329
 
3330
+ #: settings.php:2237
3331
  msgid "Wrapping div"
3332
  msgstr "div za ovijanje"
3333
 
3334
+ #: settings.php:2238 settings.php:2655
3335
  msgid "BLOCK CODE"
3336
  msgstr "KODA BLOKA"
3337
 
3338
+ #: settings.php:2246
3339
  msgid "Viewport Settings used for client-side device detection"
3340
  msgstr ""
3341
  "Nastavitve Pogledov, uporabljene za zaznavanje naprav na strani klienta"
3342
 
3343
  #. Translators: %d: viewport number
3344
+ #: settings.php:2254
3345
  msgid "Viewport %d name"
3346
  msgstr "Ime pogleda %d"
3347
 
3348
+ #: settings.php:2257
3349
  msgid "min width"
3350
  msgstr "najmanjša širina"
3351
 
3352
+ #: settings.php:2268
3353
  msgid "Custom Hooks"
3354
  msgstr "Ročice Po Meri"
3355
 
3356
+ #: settings.php:2280 settings.php:2283
3357
  msgid "Enable hook"
3358
  msgstr "Omogoči ročico"
3359
 
3360
  #. translators: %d: hook number
3361
+ #: settings.php:2283
3362
  msgid "Hook %d name"
3363
  msgstr "Ime ročice %d"
3364
 
3365
+ #: settings.php:2286
3366
  msgid "Hook name for automatic insertion selection"
3367
  msgstr "Ime ročice za izbiro samodejnega vstavljanja"
3368
 
3369
+ #: settings.php:2289
3370
  msgid "action"
3371
  msgstr "akcija"
3372
 
3373
+ #: settings.php:2292
3374
  msgid "Action name as used in the do_action () function"
3375
  msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
3376
 
3377
+ #: settings.php:2295
3378
  msgid "priority"
3379
  msgstr "prednost"
3380
 
3381
+ #: settings.php:2298
3382
  msgid "Priority for the hook (default is 10)"
3383
  msgstr "Prednost za ročico (privzeta je 10)"
3384
 
3385
+ #: settings.php:2319
3386
  msgid "Enable insertion of this code into HTML page header"
3387
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3388
 
3389
+ #: settings.php:2323 settings.php:2381 settings.php:2549
3390
  msgid "Process PHP code"
3391
  msgstr "Procesiraj PHP kodo"
3392
 
3393
+ #: settings.php:2327
3394
  msgid "HTML Page Header Code"
3395
  msgstr "Koda v Glavi HTML Strani"
3396
 
3397
+ #: settings.php:2335
3398
  msgid "Code in the %s section of the HTML page"
3399
  msgstr "Koda v %s delu HTML strani"
3400
 
3401
+ #: settings.php:2336
3402
+ msgctxt "code in the header"
3403
+ msgid "NOT ENABLED"
3404
+ msgstr "NI OMOGOČENA"
3405
 
3406
+ #: settings.php:2349 settings.php:2407
3407
  msgid "Use server-side detection to insert code only for"
3408
  msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
3409
 
3410
+ #: settings.php:2362
3411
  msgid ""
3412
  "Enable insertion of this code into HTML page header on page for Error 404: "
3413
  "Page not found"
3415
  "Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
3416
  "obstaja"
3417
 
3418
+ #: settings.php:2362 settings.php:2420
3419
  msgid "Insert on Error 404 page"
3420
  msgstr "Vstavi na strani Napake 404"
3421
 
3422
+ #: settings.php:2377
3423
  msgid "Enable insertion of this code into HTML page footer"
3424
  msgstr "Omogoči vstavljanje te kode v HTML nogi"
3425
 
3426
+ #: settings.php:2385
3427
  msgid "HTML Page Footer Code"
3428
  msgstr "Koda v Nogi HTML Strani"
3429
 
3430
  #. translators: %s: HTML tags
3431
+ #: settings.php:2393
3432
  msgid "Code before the %s tag of the the HTML page"
3433
  msgstr "Koda pred %s značko HTML strani"
3434
 
3435
+ #: settings.php:2394
3436
+ msgctxt "code in the footer"
3437
+ msgid "NOT ENABLED"
3438
+ msgstr "NI OMOGOČENA"
3439
+
3440
+ #: settings.php:2420
3441
  msgid ""
3442
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3443
  "Page not found"
3445
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3446
  "Stran ne obstaja"
3447
 
3448
+ #: settings.php:2434
3449
  msgid "Enable detection of ad blocking"
3450
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3451
 
3452
+ #: settings.php:2439
3453
+ msgctxt "ad blocking detection"
3454
+ msgid "NOT ENABLED"
3455
+ msgstr "NI OMOGOČENO"
3456
+
3457
+ #: settings.php:2452
3458
  msgid "Global action when ad blocking is detected"
3459
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3460
 
3461
  #: settings.php:2458
3462
+ msgid "No action for"
3463
+ msgstr "Ni akcije za"
3464
+
3465
+ #: settings.php:2459
3466
+ msgid "Exceptions for global action when ad blocking is detected."
3467
+ msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3468
+
3469
+ #: settings.php:2469
3470
  msgid "Delay Action"
3471
  msgstr "Zakasni Akcijo"
3472
 
3473
+ #: settings.php:2472
3474
  msgid ""
3475
  "Number of page views to delay action when ad blocking is detected. Leave "
3476
  "empty for no delay (action fires on first page view). Sets cookie."
3479
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3480
  "strani). Nastavi piškotek."
3481
 
3482
+ #: settings.php:2472
3483
  msgctxt "Delay Action for x "
3484
  msgid "page views"
3485
  msgstr "ogledov strani"
3486
 
3487
+ #: settings.php:2477
3488
  msgid "No Action Period"
3489
  msgstr "Obdobje Brez Akcije"
3490
 
3491
+ #: settings.php:2480
3492
  msgid ""
3493
  "Number of days to supress action when ad blocking is detected. Leave empty "
3494
  "for no no-action period (action fires always after defined page view delay). "
3498
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3499
  "strani). Nastavi piškotek."
3500
 
3501
+ #: settings.php:2480
3502
  msgctxt "no action period"
3503
  msgid "days"
3504
  msgstr "dni"
3505
 
3506
+ #: settings.php:2485
3507
  msgid "Custom Selectors"
3508
  msgstr "Selektorji Po Meri"
3509
 
3510
+ #: settings.php:2488
3511
  msgid ""
3512
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3513
  "blocking detection. Invisible element or element with zero height means ad "
3517
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3518
  "pomeni prisotnost blokiranja oglasov."
3519
 
3520
+ #: settings.php:2500
3521
  msgid "Redirection Page"
3522
  msgstr "Stran za Preusmeritev"
3523
 
3524
+ #: settings.php:2512
3525
  msgid "Custom Url"
3526
  msgstr "Url Po Meri"
3527
 
3528
+ #: settings.php:2517
3529
  msgid ""
3530
  "Static page for redirection when ad blocking is detected. For other pages "
3531
  "select Custom url and set it below."
3533
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3534
  "strani izberite Url Po Meri in ga nastavite spodaj."
3535
 
3536
+ #: settings.php:2526
3537
  msgid "Custom Redirection Url"
3538
  msgstr "Url za Preusmeritev Po Meri"
3539
 
3540
+ #: settings.php:2538
3541
  msgid "Message HTML code"
3542
  msgstr "HTML koda sporočila"
3543
 
3544
+ #: settings.php:2551
3545
  msgid "Preview message when ad blocking is detected"
3546
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3547
 
3548
+ #: settings.php:2580
3549
  msgid "Prevent visitors from closing the warning message"
3550
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3551
 
3552
+ #: settings.php:2580
3553
  msgid "Undismissible Message"
3554
  msgstr "Neodstranljivo Sporočilo"
3555
 
3556
+ #: settings.php:2586
3557
+ msgid "Not undismissible for"
3558
+ msgstr "Ni neodstranljivo za"
3559
+
3560
+ #: settings.php:2587
3561
+ msgid "Users which can close the warning message."
3562
+ msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3563
+
3564
+ #: settings.php:2601
3565
  msgid ""
3566
  "Force showing admin toolbar for administrators when viewing site. Enable "
3567
  "this option when you are logged in as admin and you don't see admin toolbar."
3570
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3571
  "skrbnike."
3572
 
3573
+ #: settings.php:2609
3574
  msgid "Disable header code (Header tab)"
3575
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3576
 
3577
+ #: settings.php:2613
3578
  msgid "Disable footer code (Footer tab)"
3579
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3580
 
3581
  #. translators: %s: Ad Inserter
3582
+ #: settings.php:2617
3583
  msgid "Disable %s JavaScript code"
3584
  msgstr "Onemogoči %s JavaScript kodo"
3585
 
3586
  #. translators: %s: Ad Inserter
3587
+ #: settings.php:2621
3588
  msgid "Disable %s CSS code"
3589
  msgstr "Onemogoči %s CSS kodo"
3590
 
3591
+ #: settings.php:2625
3592
  msgid ""
3593
  "Disable PHP code processing (in all blocks including header and footer code)"
3594
  msgstr ""
3595
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3596
 
3597
+ #: settings.php:2629
3598
  msgid "Disable insertion of all blocks"
3599
  msgstr "Onemogoči vstavljanje vseh blokov"
3600
 
3601
+ #: settings.php:2633
3602
  msgid "Disable insertions"
3603
  msgstr "Onemogoči vstavljanja"
3604
 
3605
  #. translators: %s: Ad Inserter
3606
+ #: settings.php:2645
3607
  msgid "%s CSS CODE"
3608
  msgstr "%s CSS KODA"
3609
 
3610
+ #: settings.php:2648
3611
  msgid "HEADER CODE"
3612
  msgstr "KODA GLAVE"
3613
 
3614
  #. translators: %s: PHP tags
3615
+ #: settings.php:2654
3616
  msgid "BLOCK PHP CODE"
3617
  msgstr "PHP KODA BLOKA"
3618
 
3619
  #. translators: %s: Ad Inserter
3620
+ #: settings.php:2660
3621
  msgid "%s JS CODE"
3622
  msgstr "%s JS KODA"
3623
 
3624
+ #: settings.php:2663
3625
  msgid "FOOTER CODE"
3626
  msgstr "KODA NOGE"
3627
 
3628
+ #: settings.php:2672
3629
  msgid "Force showing admin toolbar when viewing site"
3630
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3631
 
3632
+ #: settings.php:2679
3633
  msgid "Enable debugging functions in admin toolbar"
3634
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3635
 
3636
+ #: settings.php:2681
3637
  msgid "Debugging functions in admin toolbar"
3638
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3639
 
3640
+ #: settings.php:2688
3641
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3642
  msgstr ""
3643
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3644
  "zaslonih"
3645
 
3646
+ #: settings.php:2690
3647
  msgid "Debugging functions on mobile screens"
3648
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3649
 
3650
+ #: settings.php:2697
3651
  msgid ""
3652
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3653
  "tags, processing) by url parameters for non-logged in users. Enable this "
3662
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3663
  "vedno omogočeno."
3664
 
3665
+ #: settings.php:2699
3666
  msgid "Remote debugging"
3667
  msgstr "Oddaljeno razhroščevanje"
3668
 
3669
+ #: settings.php:2706
3670
  msgid ""
3671
  "Disable translation to see original texts for the settings and messages in "
3672
  "English"
3674
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3675
  "angleščini"
3676
 
3677
+ #: settings.php:2708
3678
  msgid "Disable translation"
3679
  msgstr "Onemogoči prevod"
3680
 
3681
+ #: settings.php:3044
3682
  msgid "Available positions for current theme"
3683
  msgstr "Razpoložljivi položaji za trenutno temo"
3684
 
3685
+ #: settings.php:3045
3686
  msgid "Error checking pages"
3687
  msgstr "Napaka pri preverjanju strani"
3688
 
3689
+ #: settings.php:3048
3690
  msgid "Toggle theme checker for available positions for automatic insertion"
3691
  msgstr ""
3692
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3693
 
3694
+ #: settings.php:3048
3695
  msgctxt "Button"
3696
  msgid "Check"
3697
  msgstr "Preveri"
3698
 
3699
+ #: settings.php:3055
3700
  msgid "Position"
3701
  msgstr "Položaj"
3702
 
3703
+ #: settings.php:3060
3704
  msgid "Archive pages"
3705
  msgstr "Strani arhiva"
3706
 
3707
+ #: settings.php:3119
3708
  msgid ""
3709
  "Position not available because output buffering (tab [*]) is not enabled"
3710
  msgstr ""
3711
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3712
 
3713
+ #: settings.php:3122 strings.php:219
3714
  msgid "Position not checked yet"
3715
  msgstr "Položaj še ni bil preverjen"
3716
 
3717
+ #: settings.php:3153
3718
  msgid "Toggle active/all blocks"
3719
  msgstr "Preklopi aktive/vse bloke"
3720
 
3721
+ #: settings.php:3157 strings.php:206
3722
  msgid "Rearrange block order"
3723
  msgstr "Preuredi vrstni red blokov"
3724
 
3725
+ #: settings.php:3162
3726
  msgid "Save new block order"
3727
  msgstr "Shrani vrstni red blokov"
3728
 
3729
+ #: settings.php:3162
3730
  msgid "Save Changes"
3731
  msgstr "Sharani Nastavitve"
3732
 
3733
+ #: settings.php:3187
3734
  msgid "Toggle active/all ad units"
3735
  msgstr "Preklopi aktivne/vse oglasne enote"
3736
 
3737
+ #: settings.php:3191
3738
  msgid "Reload AdSense ad units"
3739
  msgstr "Ponovno naloži oglasne enote AdSense"
3740
 
3741
+ #: settings.php:3195
3742
  msgid "Clear authorization to access AdSense account"
3743
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3744
 
3745
+ #: settings.php:3199 settings.php:3831 settings.php:3898 strings.php:214
3746
  msgid "Google AdSense Homepage"
3747
  msgstr "Google AdSense Domača Stran"
3748
 
3749
+ #: settings.php:3222
3750
  msgid "Reload ads.txt file"
3751
  msgstr "Ponovno naloži datoteko ads.txt"
3752
 
3753
  #. translators: %s: ads.txt
3754
+ #: settings.php:3226
3755
  msgid "Open %s"
3756
  msgstr "Odpri %s"
3757
 
3758
+ #: settings.php:3230
3759
  msgid "Switch to table view"
3760
  msgstr "Preklopi na tabelarični pogled"
3761
 
3762
+ #: settings.php:3234
3763
  msgid "Switch to editor"
3764
  msgstr "Preklopi na urejevalnik"
3765
 
3766
+ #: settings.php:3238
3767
  msgid "Save ads.txt file"
3768
  msgstr "Shrani datoteko ads.txt"
3769
 
3770
+ #: settings.php:3373 settings.php:3381 strings.php:199
3771
  msgid "Warning"
3772
  msgstr "Opozorilo"
3773
 
3774
+ #: settings.php:3373
3775
  msgid "ads.txt file must be placed on the root domain"
3776
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3777
 
3778
  #. translators: %s: file path
3779
+ #: settings.php:3374
3780
  msgid "WordPress is installed in %s"
3781
  msgstr "WordPress je nameščen v %s"
3782
 
3783
+ #: settings.php:3375
3784
  msgid "Showing file"
3785
  msgstr "Prikazana datoteka"
3786
 
3787
+ #: settings.php:3381
3788
+ msgid "File %s not found"
3789
+ msgstr "Datoteka %s ni najdena"
3790
+
3791
+ #: settings.php:3388
3792
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3793
  msgstr ""
3794
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3795
 
3796
+ #: settings.php:3405
3797
  msgid "Advertising system"
3798
  msgstr "Oglaševalski sistem"
3799
 
3800
+ #: settings.php:3406
3801
  msgid "Account ID"
3802
  msgstr "ID Računa"
3803
 
3804
+ #: settings.php:3408
3805
  msgid "Certification authority ID"
3806
  msgstr "ID organa za potrjevanje"
3807
 
3808
+ #: settings.php:3423
3809
  msgid "Account ID found in block and present in ads.txt"
3810
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3811
 
3812
+ #: settings.php:3427
3813
  msgid "Account ID found in block but not present in ads.txt"
3814
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3815
 
3816
+ #: settings.php:3643
3817
  msgid "Preview block"
3818
  msgstr "Predogled bloka"
3819
 
3820
+ #: settings.php:3652
3821
  msgid "Insertion disabled"
3822
  msgstr "Vstavljanje onemogočeno"
3823
 
3824
+ #: settings.php:3676
3825
  msgid "Widget positions"
3826
  msgstr "Položaji gradnikov"
3827
 
3828
+ #: settings.php:3742
3829
  msgid "Ad unit"
3830
  msgstr "Enota"
3831
 
3832
+ #: settings.php:3744
3833
  msgid "Slot ID"
3834
  msgstr "ID mesta"
3835
 
3836
+ #: settings.php:3770
3837
  msgid "Copy AdSense code"
3838
  msgstr "Kopiraj kodo AdSense"
3839
 
3840
+ #: settings.php:3773
3841
  msgid "Preview AdSense ad"
3842
  msgstr "Predogled oglasa AdSense"
3843
 
3844
+ #: settings.php:3776
3845
  msgid "Get AdSense code"
3846
  msgstr "Pridobi kodo AdSense"
3847
 
3848
  #. translators: %s: HTML tags
3849
+ #: settings.php:3808
3850
  msgid ""
3851
  "Please %s clear authorization %s with the button %s above and once again "
3852
  "authorize access to your AdSense account."
3854
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3855
  "avtorizirajte dostop do vašega računa AdSense."
3856
 
3857
+ #: settings.php:3827
3858
  msgid "AdSense Integration"
3859
  msgstr "Integracija AdSense"
3860
 
3861
+ #: settings.php:3829
3862
  msgid "AdSense Integration - Step 2"
3863
  msgstr "Integracija AdSense - Korak 2"
3864
 
3865
  #. translators: %s: HTML tags
3866
+ #: settings.php:3835
3867
  msgid ""
3868
  "Authorize %s to access your AdSense account. Click on the %s Get "
3869
  "Authorization Code %s button to open a new window where you can allow "
3876
  "Avtoriziraj. %s"
3877
 
3878
  #. translators: %s: HTML tags
3879
+ #: settings.php:3842
3880
  msgid ""
3881
  "If you get error, can't access ad units or would like to use own Google API "
3882
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3887
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3888
 
3889
  #. translators: %s: HTML tags
3890
+ #: settings.php:3844
3891
  msgid ""
3892
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3893
  "Authorization Code %s button to open a new window where you can allow "
3900
  "gumb %s Avtoriziraj. %s"
3901
 
3902
  #. translators: %s: HTML tags
3903
+ #: settings.php:3851
3904
  msgid ""
3905
  "If you get error %s invalid client %s click on the button %s Clear and "
3906
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3908
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3909
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3910
 
3911
+ #: settings.php:3862
3912
  msgid "Get Authorization Code"
3913
  msgstr "Pridobi Avtoriazcijsko Kodo"
3914
 
3915
+ #: settings.php:3865
3916
  msgid "Enter Authorization Code"
3917
  msgstr "Vnesi Avorizacijsko Kodo"
3918
 
3919
+ #: settings.php:3875
3920
  msgid "Use own API IDs"
3921
  msgstr "Uporabi lastne API ID-je"
3922
 
3923
+ #: settings.php:3877
3924
  msgid "Clear and return to Step 1"
3925
  msgstr "Odstrani in se vrni na Korak 1"
3926
 
3927
+ #: settings.php:3881
3928
  msgid "Authorize"
3929
  msgstr "Avtoriziraj"
3930
 
3931
+ #: settings.php:3897
3932
  msgid "AdSense Integration - Step 1"
3933
  msgstr "Integracija AdSense - Korak 1"
3934
 
3935
  #. translators: %s: Ad Inserter
3936
+ #: settings.php:3901
3937
  msgid ""
3938
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3939
  "To do this you need to authorize %s to access your AdSense account. The "
3946
  "Klienta in Skrivnost Klienta."
3947
 
3948
  #. translators: %s: HTML tags
3949
+ #: settings.php:3910
3950
  msgid "Go to %s Google APIs and Services console %s"
3951
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3952
 
3953
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3954
+ #: settings.php:3911
3955
  msgid ""
3956
  "Create %1$s project - if the project and IDs are already created click on "
3957
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3960
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3961
 
3962
  #. translators: %s: HTML tags
3963
+ #: settings.php:3912
3964
  msgid ""
3965
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3966
  "create a new project"
3969
  "ustvaritev novega projekta"
3970
 
3971
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3972
+ #: settings.php:3913
3973
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3974
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
3975
 
3976
  #. translators: %s: HTML tags
3977
+ #: settings.php:3914
3978
  msgid ""
3979
  "Click on project selection, wait for the project to be created and then and "
3980
  "select %s as the current project"
3983
  "izberite %s kot trenutni projekt"
3984
 
3985
  #. translators: %s: HTML tags
3986
+ #: settings.php:3915
3987
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3988
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
3989
 
3990
  #. translators: %s: HTML tags
3991
+ #: settings.php:3916
3992
  msgid "Search for adsense and enable %s"
3993
  msgstr "Poiščite adsense in omogočite %s"
3994
 
3995
  #. translators: %s: HTML tags
3996
+ #: settings.php:3917
3997
  msgid "Click on %s CREATE CREDENTIALS %s"
3998
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
3999
 
4000
  #. translators: %s: HTML tags
4001
+ #: settings.php:3918
4002
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4003
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4004
 
4005
  #. translators: %s: HTML tags
4006
+ #: settings.php:3919
4007
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4008
  msgstr ""
4009
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4010
  "podatki %s"
4011
 
4012
  #. translators: %s: HTML tags
4013
+ #: settings.php:3920
4014
  msgid "Click on %s What credentials do I need? %s"
4015
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4016
 
4017
  #. translators: %s: HTML tags
4018
+ #: settings.php:3921
4019
  msgid ""
4020
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4021
  "Ad Inserter client %s"
4024
  "%s Ad Inserter klient %s"
4025
 
4026
  #. translators: %s: HTML tags
4027
+ #: settings.php:3922
4028
  msgid ""
4029
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4030
  "enter %s"
4033
  "uporabnikom %s vnesite %s"
4034
 
4035
  #. translators: %s: HTML tags
4036
+ #: settings.php:3923
4037
  msgid "Click on %s Continue %s"
4038
  msgstr "Kliknite na %s Nadaljuj %s"
4039
 
4040
  #. translators: %s: HTML tags
4041
+ #: settings.php:3924
4042
  msgid "Click on %s Done %s"
4043
  msgstr "Kliknite na %s Končaj %s"
4044
 
4045
  #. translators: %s: HTML tags
4046
+ #: settings.php:3925
4047
  msgid ""
4048
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4049
  "secret %s"
4051
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4052
  "Skrivnost klienta %s"
4053
 
4054
+ #: settings.php:3926
4055
  msgid "Copy them to the appropriate fields below"
4056
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4057
 
4058
+ #: settings.php:3932
4059
  msgid "Client ID"
4060
  msgstr "ID klienta"
4061
 
4062
+ #: settings.php:3935
4063
  msgid "Enter Client ID"
4064
  msgstr "Vnesite ID klienta"
4065
 
4066
+ #: settings.php:3940
4067
  msgid "Client secret"
4068
  msgstr "Skrivnost klienta"
4069
 
4070
+ #: settings.php:3943
4071
  msgid "Enter Client secret"
4072
  msgstr "Vnesite Skrivnost klienta"
4073
 
4074
+ #: settings.php:3953
4075
  msgid "Use default API IDs"
4076
  msgstr "Uporabi privzete API ID-je"
4077
 
4078
+ #: settings.php:3958
4079
  msgid "Save"
4080
  msgstr "Shrani"
4081
 
4082
+ #: settings.php:4234 settings.php:4247 settings.php:4260 settings.php:4275
4083
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4084
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4085
 
4086
+ #: settings.php:4239 settings.php:4252 settings.php:4265 settings.php:4280
4087
+ #: settings.php:4451 settings.php:4455 settings.php:4457 settings.php:4473
4088
+ #: settings.php:4485 settings.php:4488 settings.php:4494 settings.php:4506
4089
  msgid "Looking for AdSense alternative?"
4090
  msgstr "Iščete alternativo za AdSense?"
4091
 
4092
+ #: settings.php:4291
4093
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4094
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4095
 
4096
+ #: settings.php:4296 settings.php:4453 settings.php:4465 settings.php:4491
4097
+ #: settings.php:4514
4098
  msgid "Use Infolinks ads with Adsense to earn more"
4099
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4100
 
4101
+ #: settings.php:4315 settings.php:4353
4102
  msgid "Support plugin development"
4103
  msgstr "Podprite razvoj vtičnika"
4104
 
4105
+ #: settings.php:4316 settings.php:4354
4106
  msgid ""
4107
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4108
  "reviewing the plugin on WordPres"
4110
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4111
  "razširiti novico z oceno vtičnika na WordPress-u"
4112
 
4113
+ #: settings.php:4316
4114
  msgctxt "Review ad Inserter"
4115
  msgid "Review"
4116
  msgstr "Oceni"
4117
 
4118
+ #: settings.php:4317
4119
  msgid ""
4120
  "Support free Ad Inserter development. If you are making money with Ad "
4121
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4124
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4125
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4126
 
4127
+ #: settings.php:4317
4128
  msgid "Donate"
4129
  msgstr "Donirajte"
4130
 
4131
+ #: settings.php:4324 settings.php:4369
4132
  msgid "Average rating of the plugin - Thank you!"
4133
  msgstr "Povprečna ocena vtičnika - Hvala!"
4134
 
4135
  #. translators: %s: Ad Inserter, HTML tags
4136
+ #: settings.php:4335
4137
  msgid ""
4138
  "You've been using %s for a while now, and I hope you're happy with it. "
4139
  "Positive %s reviews %s are a great way to show your appreciation for my "
4147
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4148
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4149
 
4150
+ #: settings.php:4354
4151
  msgid "Review"
4152
  msgstr "Ocena"
4153
 
4154
+ #: settings.php:4358
4155
  msgid "Ad Inserter on Twitter"
4156
  msgstr "Ad Inserter na Twitter-ju"
4157
 
4158
+ #: settings.php:4359
4159
  msgid "Ad Inserter on Facebook"
4160
  msgstr "Ad Inserter na Facebook-u"
4161
 
4162
+ #: settings.php:4362
4163
  msgid "Follow Ad Inserter"
4164
  msgstr "Sledi Ad Inserter-ju"
4165
 
4166
  #. translators: %s: HTML tags
4167
+ #: settings.php:4389
4168
  msgid ""
4169
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4170
  "and %s Common Settings %s pages"
4173
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4174
 
4175
  #. translators: %s: HTML tags
4176
+ #: settings.php:4401
4177
  msgid ""
4178
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4179
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
4183
  "%s"
4184
 
4185
  #. translators: %s: HTML tags
4186
+ #: settings.php:4420
4187
  msgid ""
4188
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4189
  "diagnose and fix the problem."
4192
  "navodili za diagnozo in rešitvami za težave."
4193
 
4194
  #. translators: %s: HTML tags
4195
+ #: settings.php:4424
4196
  msgid ""
4197
  "If you need any kind of help or support, please do not hesitate to open a "
4198
  "thread on the %s support forum. %s"
4200
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4201
  "nit na %s podpornem forumu. %s"
4202
 
4203
+ #: settings.php:4469 settings.php:4510
4204
  msgid "A/B testing - Track ad impressions and clicks"
4205
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4206
 
4207
+ #: settings.php:4477 settings.php:4502
4208
  msgid "Code preview with visual CSS editor"
4209
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4210
 
4211
+ #: settings.php:4522
4212
  msgid "Looking for Pro Ad Management plugin?"
4213
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4214
 
4215
+ #: settings.php:4523
4216
  msgid "To Optimally Monetize your WordPress website?"
4217
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4218
 
4219
  #. translators: %s HTML tags
4220
+ #: settings.php:4526
4221
  msgid "%s AdSense Integration %s"
4222
  msgstr "%s Integracija AdSense %s"
4223
 
4224
  #. translators: %s HTML tags
4225
+ #: settings.php:4527
4226
  msgid "Syntax highlighting %s editor %s"
4227
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4228
 
4229
  #. translators: %s HTML tags
4230
+ #: settings.php:4528
4231
  msgid "%s Code preview %s with visual CSS editor"
4232
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4233
 
4234
  #. translators: %s HTML tags
4235
+ #: settings.php:4529
4236
  msgid "Simple user interface - all settings on a single page"
4237
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4238
 
4239
  #. translators: %s HTML tags
4240
+ #: settings.php:4530
4241
  msgid ""
4242
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4243
  "image / excerpt"
4246
  "%s / sliko / izvlečkom"
4247
 
4248
  #. translators: %s HTML tags
4249
+ #: settings.php:4531
4250
  msgid "%s Automatic insertion %s between posts on blog pages"
4251
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4252
 
4253
  #. translators: %s HTML tags
4254
+ #: settings.php:4532
4255
  msgid "%s Automatic insertion %s before, between and after comments"
4256
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4257
 
4258
  #. translators: %s HTML tags
4259
+ #: settings.php:4533
4260
  msgid "%s Automatic insertion %s after %s or before %s tag"
4261
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4262
 
4263
  #. translators: %s HTML tags
4264
+ #: settings.php:4534
4265
  msgid "Automatic insertion at %s custom hook positions %s"
4266
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4267
 
4268
  #. translators: %s HTML tags
4269
+ #: settings.php:4535
4270
  msgid ""
4271
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4272
  "selectors)"
4275
  "selektorjev)"
4276
 
4277
  #. translators: %s HTML tags
4278
+ #: settings.php:4536
4279
  msgid "%s Insertion exceptions %s for individual posts and pages"
4280
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4281
 
4282
  #. translators: %s HTML tags
4283
+ #: settings.php:4537
4284
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4285
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4286
 
4287
  #. translators: %s HTML tags
4288
+ #: settings.php:4538
4289
  msgid ""
4290
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4291
  "scrolls)"
4294
  "se stran pomika)"
4295
 
4296
  #. translators: %s HTML tags
4297
+ #: settings.php:4539
4298
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4299
  msgstr ""
4300
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4301
 
4302
  #. translators: %s HTML tags
4303
+ #: settings.php:4540
4304
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4305
  msgstr ""
4306
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4307
 
4308
  #. translators: %s HTML tags
4309
+ #: settings.php:4541
4310
  msgid ""
4311
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4312
  "visible)"
4315
  "postane viden)"
4316
 
4317
  #. translators: %s HTML tags
4318
+ #: settings.php:4542
4319
  msgid ""
4320
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4321
  msgstr ""
4323
  "strani)"
4324
 
4325
  #. translators: %s HTML tags
4326
+ #: settings.php:4543
4327
  msgid "Block %s alignment and style %s customizations"
4328
  msgstr "%s Poravnave in slogi %s bloka po meri"
4329
 
4330
  #. translators: %s HTML tags
4331
+ #: settings.php:4544
4332
  msgid ""
4333
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4334
  "TOS)"
4336
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4337
 
4338
  #. translators: %s HTML tags
4339
+ #: settings.php:4545
4340
  msgid ""
4341
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4342
  "feeds"
4345
  "virih"
4346
 
4347
  #. translators: %s HTML tags
4348
+ #: settings.php:4546
4349
  msgid "%s Ad rotation %s (works also with caching)"
4350
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4351
 
4352
  #. translators: %s HTML tags
4353
+ #: settings.php:4547
4354
+ msgid "Create, edit and check %s ads.txt %s file"
4355
+ msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4356
+
4357
+ #. translators: %s HTML tags
4358
+ #: settings.php:4548
4359
  msgid ""
4360
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4361
  "AdSense)"
4364
  "AdSense)"
4365
 
4366
  #. translators: %s HTML tags
4367
+ #: settings.php:4549
4368
  msgid "Support for %s A/B testing %s"
4369
  msgstr "Podpora za %s A/B testiranje %s"
4370
 
4371
  #. translators: %s HTML tags
4372
+ #: settings.php:4550
4373
  msgid "Support for %s lazy loading %s"
4374
  msgstr "Podpora za %s leno nalaganje %s"
4375
 
4376
  #. translators: %s HTML tags
4377
+ #: settings.php:4551
4378
  msgid "Support for ads on %s AMP pages %s"
4379
  msgstr "Podpora za oglase na %s AMP straneh %s"
4380
 
4381
  #. translators: %s HTML tags
4382
+ #: settings.php:4552
4383
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4384
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4385
 
4386
  #. translators: %s HTML tags
4387
+ #: settings.php:4553
4388
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4389
  msgstr ""
4390
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4391
 
4392
  #. translators: %s HTML tags
4393
+ #: settings.php:4554
4394
  msgid "PHP code processing"
4395
  msgstr "Procesiranje PHP kode"
4396
 
4397
  #. translators: %s HTML tags
4398
+ #: settings.php:4555
4399
  msgid "%s Banner %s code generator"
4400
  msgstr "Generator kode za %s pasice %s"
4401
 
4402
  #. translators: %s HTML tags
4403
+ #: settings.php:4556
4404
  msgid "Support for %s header and footer %s code"
4405
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4406
 
4407
  #. translators: %s HTML tags
4408
+ #: settings.php:4557
4409
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4410
  msgstr ""
4411
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4412
 
4413
  #. translators: %s HTML tags
4414
+ #: settings.php:4558
4415
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4416
  msgstr ""
4417
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4418
  "strežnika"
4419
 
4420
  #. translators: %s HTML tags
4421
+ #: settings.php:4559
4422
  msgid "Client-side %s mobile device detection %s (works with caching)"
4423
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4424
 
4425
  #. translators: %s HTML tags
4426
+ #: settings.php:4560
4427
  msgid ""
4428
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4429
  "protection"
4432
  "vsebine"
4433
 
4434
  #. translators: %s HTML tags
4435
+ #: settings.php:4561
4436
  msgid "%s Ad blocking statistics %s"
4437
  msgstr "%s Statistika blokiranja oglasov %s"
4438
 
4439
  #. translators: %s HTML tags
4440
+ #: settings.php:4562
4441
  msgid ""
4442
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4443
  "referers"
4445
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4446
 
4447
  #. translators: %s HTML tags
4448
+ #: settings.php:4563
4449
  msgid ""
4450
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4451
  msgstr ""
4452
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4453
 
4454
  #. translators: %s HTML tags
4455
+ #: settings.php:4564
4456
  msgid "%s Multisite options %s to limit settings on the sites"
4457
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4458
 
4459
  #. translators: %s HTML tags
4460
+ #: settings.php:4565
4461
  msgid "%s Import/Export %s block or plugin settings"
4462
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4463
 
4464
  #. translators: %s HTML tags
4465
+ #: settings.php:4566
4466
  msgid "%s Insertion scheduling %s with fallback option"
4467
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4468
 
4469
  #. translators: %s HTML tags
4470
+ #: settings.php:4567
4471
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4472
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4473
 
4474
  #. translators: %s HTML tags
4475
+ #: settings.php:4568
4476
  msgid "Simple troubleshooting with many %s debugging functions %s"
4477
  msgstr ""
4478
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4479
 
4480
  #. translators: %s HTML tags
4481
+ #: settings.php:4569
4482
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4483
  msgstr ""
4484
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4485
 
4486
  #. translators: %s HTML tags
4487
+ #: settings.php:4570
4488
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4489
  msgstr ""
4490
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4491
 
4492
  #. translators: %s HTML tags
4493
+ #: settings.php:4571
4494
  msgid ""
4495
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4496
  msgstr ""
4497
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4498
 
4499
  #. translators: %s HTML tags
4500
+ #: settings.php:4572
4501
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4502
  msgstr ""
4503
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4504
 
4505
  #. translators: %s HTML tags
4506
+ #: settings.php:4573
4507
  msgid "No ads on the settings page"
4508
  msgstr "Stran z nastavitvami brez oglasov"
4509
 
4510
  #. translators: %s HTML tags
4511
+ #: settings.php:4574
4512
  msgid "Premium support via email"
4513
  msgstr "Vrhunska podpora prek elektronske pošte"
4514
 
4515
  #. translators: %s HTML tags
4516
+ #: settings.php:4577
4517
  msgid ""
4518
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4519
  "website with many advertising features to automatically insert adverts on "
4540
  "bodo ohranile)."
4541
 
4542
  #. translators: %s HTML tags
4543
+ #: settings.php:4590
4544
  msgid "Looking for %s Pro Ad Management plugin? %s"
4545
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4546
 
4547
  #. translators: %s HTML tags
4548
+ #: settings.php:4595
4549
  msgid "Ads between posts"
4550
  msgstr "Oglasi med prispevki"
4551
 
4552
  #. translators: %s HTML tags
4553
+ #: settings.php:4596
4554
  msgid "Ads between comments"
4555
  msgstr "Oglasi med komentarji"
4556
 
4557
  #. translators: %s HTML tags
4558
+ #: settings.php:4597
4559
  msgid "Support via email"
4560
  msgstr "Podpora prek elektronske pošte"
4561
 
4562
  #. translators: %s HTML tags
4563
+ #: settings.php:4603
4564
  msgid "%s Sticky positions %s"
4565
  msgstr "%s Lepljivi položaji %s"
4566
 
4567
  #. translators: %s HTML tags
4568
+ #: settings.php:4604
4569
  msgid "%s Limit insertions %s"
4570
  msgstr "%s Omeji vstavljanja %s"
4571
 
4572
  #. translators: %s HTML tags
4573
+ #: settings.php:4605
4574
  msgid "%s Clearance %s options"
4575
  msgstr "Možnosti %s izogibanja %s"
4576
 
4577
  #. translators: %s HTML tags
4578
+ #: settings.php:4611
4579
  msgid "Ad rotation"
4580
  msgstr "Vrtenje oglasov"
4581
 
4582
  #. translators: %s HTML tags
4583
+ #: settings.php:4612
4584
  msgid "%s A/B testing %s"
4585
  msgstr "%s A/B testiranje %s"
4586
 
4587
  #. translators: %s HTML tags
4588
+ #: settings.php:4613
4589
  msgid "%s Ad tracking %s"
4590
  msgstr "%s Sledenje oglasom %s"
4591
 
4592
  #. translators: %s HTML tags
4593
+ #: settings.php:4619
4594
  msgid "Support for %s AMP pages %s"
4595
  msgstr "Podpora za %s AMP strani %s"
4596
 
4597
  #. translators: %s HTML tags
4598
+ #: settings.php:4620
4599
  msgid "%s Ad blocking detection %s"
4600
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4601
 
4602
  #. translators: %s HTML tags
4603
+ #: settings.php:4621
4604
  msgid "%s Mobile device detection %s"
4605
  msgstr "%s Zaznavanje mobilne naprave %s"
4606
 
4607
  #. translators: %s HTML tags
4608
+ #: settings.php:4628
4609
  msgid "64 code blocks"
4610
  msgstr "64 kodnih blokov"
4611
 
4612
  #. translators: %s HTML tags
4613
+ #: settings.php:4629
4614
  msgid "%s GEO targeting %s"
4615
  msgstr "%s GEO ciljanje %s"
4616
 
4617
  #. translators: %s HTML tags
4618
+ #: settings.php:4630
4619
  msgid "%s Scheduling %s"
4620
  msgstr "%s Urnik %s"
4621
 
5221
  msgid "Fixed by viewport"
5222
  msgstr "Fiksna glede na pogled"
5223
 
 
 
 
 
5224
  #: strings.php:179
5225
  msgid "Impressions and clicks"
5226
  msgstr "Prikazi in Kliki"
5227
 
5228
+ #: strings.php:180
5229
+ msgid "Advanced WordPress Ad Management Plugin"
5230
+ msgstr "Napredni WordPress Vtičnik za Upravljanje z Oglasi"
5231
+
5232
+ #: strings.php:186
5233
  msgctxt "Button"
5234
  msgid "Hide"
5235
  msgstr "Skrij"
5236
 
5237
+ #: strings.php:187
5238
  msgctxt "Button"
5239
  msgid "Show"
5240
  msgstr "Pokaži"
5241
 
5242
+ #: strings.php:188
5243
  msgid "Insertion expired"
5244
  msgstr "Vstavljanje poteklo"
5245
 
5246
+ #: strings.php:189
5247
  msgid "Duration"
5248
  msgstr "Trajanje"
5249
 
5250
+ #: strings.php:190
5251
  msgid "Invalid end date - must be after start date"
5252
  msgstr "Neveljaven končni datum - mora biti za začetnim datumom"
5253
 
5254
+ #: strings.php:191
5255
  msgid "Invalid start date - only data for 1 year back is available"
5256
  msgstr "Neveljaven začetni datum - na voljo so samo pdatki za 1 leto nataj"
5257
 
5258
+ #: strings.php:192
5259
  msgid "Invalid date range - only data for 1 year can be displayed"
5260
  msgstr ""
5261
  "Neveljavno časovno oddobje - prikažejo se lahko samo podatki za 1 leto nazaj"
5262
 
5263
+ #: strings.php:193 strings.php:194 strings.php:195 strings.php:196
5264
+ #: strings.php:197 strings.php:198
5265
  msgid "day"
5266
  msgid_plural "days"
5267
  msgstr[0] "dan"
5269
  msgstr[2] "dni"
5270
  msgstr[3] "dni"
5271
 
5272
+ #: strings.php:200
5273
  msgid "Delete"
5274
  msgstr "Pobriši"
5275
 
5276
+ #: strings.php:202
5277
  msgid "Delete all statistics data?"
5278
  msgstr "Pobrišem vse podatke o statistiki?"
5279
 
5280
  #. translators: %s: dates
5281
+ #: strings.php:204
5282
  msgid "Delete statistics data between %s and %s?"
5283
  msgstr "Pobrišem podatke o statistiki med %s in %s?"
5284
 
5285
+ #: strings.php:205
5286
  msgid "Cancel block order rearrangement"
5287
  msgstr "Prekliči preureditev vrstnega reda blokov"
5288
 
5289
+ #: strings.php:207
5290
  msgid "downloading..."
5291
  msgstr "prenašam..."
5292
 
5293
+ #: strings.php:208
5294
  msgid "download error"
5295
  msgstr "napaka pri prenosu"
5296
 
5297
+ #: strings.php:209
5298
  msgid "update error"
5299
  msgstr "napaka pri posodobitvi"
5300
 
5301
+ #: strings.php:210
5302
  msgid "Updating..."
5303
  msgstr "Posodabljam..."
5304
 
5305
+ #: strings.php:212
5306
  msgid "ERROR"
5307
  msgstr "NAPAKA"
5308
 
5309
+ #: strings.php:213
5310
  msgid "Error reloading settings"
5311
  msgstr "Napaka pri nalaganju nastavitev"
5312
 
5313
+ #: strings.php:215
5314
  msgctxt "Search field placeholder"
5315
  msgid "Search..."
5316
  msgstr "Išči..."
5317
 
5318
+ #: strings.php:216
5319
  msgctxt "Search field placeholder"
5320
  msgid "Filter..."
5321
  msgstr "Filter..."
5322
 
5323
+ #: strings.php:217
5324
  msgid "Use filter to limit names in the list"
5325
  msgstr "Uporabite filter za omejitev imen v seznamu"
5326
 
5327
+ #: strings.php:218
5328
  msgctxt "Button"
5329
  msgid "Filter"
5330
  msgstr "Filter"
5331
 
5332
+ #: strings.php:220
5333
  msgid "Position not available"
5334
  msgstr "Položaj ni na razpolago"
5335
 
5336
+ #: strings.php:221
5337
  msgid ""
5338
  "Theme check | Selected position for automatic insertion might not be not "
5339
  "available on this page type"
5341
  "Preverjanje teme | Izbran položaj za samodejno vstavljanje mogoče ni na "
5342
  "razpolago na tem tipu strani"
5343
 
5344
+ #: strings.php:222
5345
  msgid "Position available"
5346
  msgstr "Položaj na razpolago"
5347
 
5348
+ #: strings.php:224
5349
  msgid "Select or upload banner image"
5350
  msgstr "Izberi ali naloži sliko pasice"
5351
 
5352
+ #: strings.php:225
5353
  msgid "Use this image"
5354
  msgstr "Uporabi to sliko"
5355
 
5356
+ #: strings.php:239
5357
  msgid "Add"
5358
  msgstr "Dodaj"
5359
 
5360
+ #: strings.php:240
5361
  msgid "Parent"
5362
  msgstr "Starš"
5363
 
5364
+ #: strings.php:241
5365
  msgid "Cancel element selection"
5366
  msgstr "Prekliči izbor HTML elementa"
5367
 
5368
+ #: strings.php:242
5369
  msgid "Select parent element"
5370
  msgstr "Izberi starševski element"
5371
 
5372
+ #: strings.php:243
5373
  msgid "CSS selector"
5374
  msgstr "CSS selektor"
5375
 
5376
+ #: strings.php:244
5377
  msgid "Use current selector"
5378
  msgstr "Uporabi trenutni selektor"
5379
 
5380
+ #: strings.php:245
5381
  msgid "ELEMENT"
5382
  msgstr "ELEMENT"
5383
 
5384
+ #: strings.php:246
5385
  msgid "PATH"
5386
  msgstr "POT"
5387
 
5388
+ #: strings.php:247
5389
  msgid "SELECTOR"
5390
  msgstr "SELEKTOR"
5391
 
5392
+ #: strings.php:248
5393
  msgctxt "Block"
5394
  msgid "VISIBLE"
5395
  msgstr "VIDEN"
5396
 
5397
+ #: strings.php:249
5398
  msgctxt "Block"
5399
  msgid "HIDDEN"
5400
  msgstr "SKRIT"
5407
  "Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
5408
  "na optimalna mesta"
5409
 
5410
+ #~ msgctxt "code in header or footer"
5411
+ #~ msgid "DISABLED"
5412
+ #~ msgstr "ONEMOGOČENA"
5413
+
5414
  #~ msgid "Alignment and style"
5415
  #~ msgstr "Poravnava in slog"
5416
 
languages/ad-inserter.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Ad Inserter 2.4.11\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-03-19 21:11:59+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,465 +12,465 @@ msgstr ""
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: ad-inserter.php:324
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
- #: ad-inserter.php:340
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
- #: ad-inserter.php:347
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
- #: ad-inserter.php:418
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
- #: ad-inserter.php:425
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
- #: ad-inserter.php:434
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
- #: ad-inserter.php:441
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
- #: ad-inserter.php:451
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
- #: ad-inserter.php:1030
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
- #: ad-inserter.php:1035
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
- #: ad-inserter.php:1040 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
- #: ad-inserter.php:1045 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
- #: ad-inserter.php:1050 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
- #: ad-inserter.php:1055 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
- #: ad-inserter.php:1102
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
- #: ad-inserter.php:1106
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
- #: ad-inserter.php:1315
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
- #: ad-inserter.php:1590 ad-inserter.php:2453
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
- #: ad-inserter.php:2024
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
- #: ad-inserter.php:2024
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
- #: ad-inserter.php:2025
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
- #: ad-inserter.php:2026
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
- #: ad-inserter.php:2027
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
- #: ad-inserter.php:2028
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
- #: ad-inserter.php:2029
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
- #: ad-inserter.php:2224
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
- #: ad-inserter.php:2225 includes/functions.php:1494
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
- #: ad-inserter.php:2228
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
- #: ad-inserter.php:2229 includes/functions.php:1497
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
- #: ad-inserter.php:2239
158
  msgid ""
159
  "I would really appreciate it if you could give the plugin a 5-star rating on "
160
  "WordPres."
161
  msgstr ""
162
 
163
- #: ad-inserter.php:2241
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
- #: ad-inserter.php:2247
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
- #: ad-inserter.php:2252
175
  msgid "I already did."
176
  msgstr ""
177
 
178
- #: ad-inserter.php:2266
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
- #: ad-inserter.php:2340
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
- #: ad-inserter.php:2369 ad-inserter.php:8000 class.php:1967
190
  #: includes/preview.php:1966 includes/preview.php:2010
191
- #: includes/preview.php:2047 settings.php:3639 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
- #: ad-inserter.php:2370 settings.php:3640 settings.php:3714
196
  msgid "Name"
197
  msgstr ""
198
 
199
- #: ad-inserter.php:2371 settings.php:3642
200
  msgid "Automatic insertion"
201
  msgstr ""
202
 
203
- #: ad-inserter.php:2374
204
  msgid "Default insertion for pages"
205
  msgstr ""
206
 
207
- #: ad-inserter.php:2375
208
  msgid "Default insertion for posts"
209
  msgstr ""
210
 
211
  #. translators: For this post or page
212
- #: ad-inserter.php:2378
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr ""
216
 
217
- #: ad-inserter.php:2379
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr ""
221
 
222
- #: ad-inserter.php:2387
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr ""
226
 
227
- #: ad-inserter.php:2388
228
  msgctxt "Default insertion for"
229
  msgid "pages"
230
  msgstr ""
231
 
232
- #: ad-inserter.php:2392
233
  msgctxt "Enabled/disabled on all"
234
  msgid "posts"
235
  msgstr ""
236
 
237
- #: ad-inserter.php:2393
238
  msgctxt "Default insertion for"
239
  msgid "posts"
240
  msgstr ""
241
 
242
- #: ad-inserter.php:2412 ad-inserter.php:2425 strings.php:156
243
  msgid "Enabled"
244
  msgstr ""
245
 
246
  #. translators: Menu items
247
- #: ad-inserter.php:2412 ad-inserter.php:2425 includes/functions.php:2122
248
  #: strings.php:16
249
  msgid "Disabled"
250
  msgstr ""
251
 
252
  #. translators: Enabled on all pages or posts
253
- #: ad-inserter.php:2415
254
  msgid "Enabled on all"
255
  msgstr ""
256
 
257
  #. translators: Disabled on all pages or posts
258
- #: ad-inserter.php:2417
259
  msgid "Disabled on all"
260
  msgstr ""
261
 
262
  #. translators: No individual exceptions enabled for pages or posts
263
- #: ad-inserter.php:2445
264
  msgid "No individual exceptions enabled for"
265
  msgstr ""
266
 
267
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
268
- #: ad-inserter.php:2450
269
  msgid ""
270
  "Default insertion for %1$s can be configured for each block on %2$s page - "
271
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
272
  "checkbox.<br />"
273
  msgstr ""
274
 
275
- #: ad-inserter.php:2455
276
  msgid ""
277
  "Default value is <strong>blank</strong> and means no individual exceptions "
278
  "(even if previously defined here).<br />"
279
  msgstr ""
280
 
281
- #: ad-inserter.php:2458
282
  msgctxt "Pages"
283
  msgid ""
284
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
285
  "enabled</strong> to enable individual exception settings on this page.<br />"
286
  msgstr ""
287
 
288
- #: ad-inserter.php:2459
289
  msgctxt "Posts"
290
  msgid ""
291
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
292
  "enabled</strong> to enable individual exception settings on this page.<br />"
293
  msgstr ""
294
 
295
- #: ad-inserter.php:2461
296
  msgid "For more information check page %s"
297
  msgstr ""
298
 
299
  #. translators: Ad Inserter Exceptions documentation page
300
- #: ad-inserter.php:2463
301
  msgid "Individual Exceptions"
302
  msgstr ""
303
 
304
- #: ad-inserter.php:2508
305
  msgid "STATIC PAGE"
306
  msgstr ""
307
 
308
- #: ad-inserter.php:2511
309
  msgid "POST"
310
  msgstr ""
311
 
312
- #: ad-inserter.php:2514
313
  msgid "HOMEPAGE"
314
  msgstr ""
315
 
316
- #: ad-inserter.php:2517
317
  msgid "CATEGORY PAGE"
318
  msgstr ""
319
 
320
- #: ad-inserter.php:2520
321
  msgid "SEARCH PAGE"
322
  msgstr ""
323
 
324
- #: ad-inserter.php:2523
325
  msgid "ARCHIVE PAGE"
326
  msgstr ""
327
 
328
- #: ad-inserter.php:2526
329
  msgid "ERROR 404 PAGE"
330
  msgstr ""
331
 
332
- #: ad-inserter.php:2529
333
  msgid "AJAX CALL"
334
  msgstr ""
335
 
336
- #: ad-inserter.php:2532
337
  msgid "UNKNOWN PAGE TYPE"
338
  msgstr ""
339
 
340
- #: ad-inserter.php:2549
341
  msgid "Click to delete ad blocking detection cokies"
342
  msgstr ""
343
 
344
- #: ad-inserter.php:2550
345
  msgid "AD BLOCKING STATUS UNKNOWN"
346
  msgstr ""
347
 
348
  #. translators: %s: AdSense Auto Ads
349
- #: ad-inserter.php:2574
350
  msgid ""
351
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
352
  "positions"
353
  msgstr ""
354
 
355
- #: ad-inserter.php:2713
356
  msgid "Code for insertion"
357
  msgstr ""
358
 
359
- #: ad-inserter.php:2713
360
  msgid "character"
361
  msgid_plural "characters"
362
  msgstr[0] ""
363
  msgstr[1] ""
364
 
365
- #: ad-inserter.php:2756
366
  msgid "Header code"
367
  msgstr ""
368
 
369
- #: ad-inserter.php:2756
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr ""
373
 
374
- #: ad-inserter.php:2756 ad-inserter.php:2978
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] ""
378
  msgstr[1] ""
379
 
380
- #: ad-inserter.php:2789
381
  msgid "Automatically placed by AdSense Auto ads code"
382
  msgstr ""
383
 
384
- #: ad-inserter.php:2978
385
  msgid "Footer code"
386
  msgstr ""
387
 
388
- #: ad-inserter.php:2978
389
  msgctxt "Footer code"
390
  msgid "DISABLED"
391
  msgstr ""
392
 
393
- #: ad-inserter.php:2984
394
  msgid "JAVASCRIPT NOT WORKING"
395
  msgstr ""
396
 
397
- #: ad-inserter.php:2984
398
  msgid "NO JAVASCRIPT ERRORS"
399
  msgstr ""
400
 
401
- #: ad-inserter.php:2984
402
  msgid "JAVASCRIPT ERRORS"
403
  msgstr ""
404
 
405
  #. translators: block name (block with default settings)
406
- #: ad-inserter.php:5059
407
  msgctxt "Block name"
408
  msgid "Default"
409
  msgstr ""
410
 
411
  #. translators: %s: Ad Inserter
412
- #: ad-inserter.php:5624
413
  msgid "Error importing %s settings."
414
  msgstr ""
415
 
416
- #: ad-inserter.php:5625
417
  msgid "Error importing settings for block"
418
  msgid_plural "Error importing settings for blocks:"
419
  msgstr[0] ""
420
  msgstr[1] ""
421
 
422
- #: ad-inserter.php:5674
423
  msgid "Settings saved."
424
  msgstr ""
425
 
426
- #: ad-inserter.php:5759
427
  msgid "Settings cleared."
428
  msgstr ""
429
 
430
- #: ad-inserter.php:6104 ad-inserter.php:6106 ad-inserter.php:6129
431
  msgid "word"
432
  msgid_plural "words"
433
  msgstr[0] ""
434
  msgstr[1] ""
435
 
436
- #: ad-inserter.php:6143 ad-inserter.php:6255
437
  msgid "HTML TAGS REMOVED"
438
  msgstr ""
439
 
440
- #: ad-inserter.php:6331
441
  msgid "BEFORE COMMENTS"
442
  msgstr ""
443
 
444
- #: ad-inserter.php:6439
445
  msgid "AFTER COMMENTS"
446
  msgstr ""
447
 
448
- #: ad-inserter.php:6502
449
  msgid "BETWEEN COMMENTS"
450
  msgstr ""
451
 
452
- #: ad-inserter.php:7647
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr ""
455
 
456
- #: ad-inserter.php:7647
457
  msgid "Please update!"
458
  msgstr ""
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
- #: ad-inserter.php:7873
463
  msgid "Thank you for installing"
464
  msgstr ""
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
- #: ad-inserter.php:7875
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
471
  msgstr ""
472
 
473
- #: ad-inserter.php:7877
474
  msgid ""
475
  "We don't record any sensitive data, only information regarding the WordPress "
476
  "environment and plugin usage, which will help us to make improvements to the "
@@ -478,7 +478,7 @@ msgid ""
478
  msgstr ""
479
 
480
  #. translators: Deactivation message: %s: HTML tags
481
- #: ad-inserter.php:7914
482
  msgid ""
483
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
484
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
@@ -486,55 +486,55 @@ msgid ""
486
  msgstr ""
487
 
488
  #. translators: %s: Ad Inserter
489
- #: ad-inserter.php:7957
490
  msgid "%s block."
491
  msgstr ""
492
 
493
  #. translators: widget title
494
- #: ad-inserter.php:7973 ad-inserter.php:8009
495
  msgid "Processing log"
496
  msgstr ""
497
 
498
  #. translators: widget title
499
- #: ad-inserter.php:7975 ad-inserter.php:8010
500
  msgid "Dummy widget"
501
  msgstr ""
502
 
503
  #. translators: widget title
504
- #: ad-inserter.php:7977 ad-inserter.php:8008
505
  msgid "Debugging tools"
506
  msgstr ""
507
 
508
  #. translators: block status (widget title)
509
- #: ad-inserter.php:7984
510
  msgctxt "block"
511
  msgid "PAUSED"
512
  msgstr ""
513
 
514
- #: ad-inserter.php:7985
515
  msgid "WIDGET DISABLED"
516
  msgstr ""
517
 
518
- #: ad-inserter.php:7986
519
  msgid "Unknown block"
520
  msgstr ""
521
 
522
- #: ad-inserter.php:7995 includes/functions.php:2635 settings.php:1038
523
  msgid "Title"
524
  msgstr ""
525
 
526
- #: ad-inserter.php:8017
527
  msgctxt "Widget"
528
  msgid "Sticky"
529
  msgstr ""
530
 
531
- #: ad-inserter.php:8066
532
  msgid ""
533
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
534
  "Inserter you need to first deactivate Ad Inserter Pro."
535
  msgstr ""
536
 
537
- #: ad-inserter.php:8067
538
  msgid ""
539
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
540
  "will clear all settings that are available only in the Pro version "
@@ -566,11 +566,11 @@ msgstr ""
566
  msgid "After post"
567
  msgstr ""
568
 
569
- #: class.php:1957 settings.php:1624 settings.php:3646
570
  msgid "Widget"
571
  msgstr ""
572
 
573
- #: class.php:1962 settings.php:3644
574
  msgid "PHP function call"
575
  msgstr ""
576
 
@@ -607,76 +607,76 @@ msgctxt "block or widget"
607
  msgid "INSERTED BUT NOT VISIBLE"
608
  msgstr ""
609
 
610
- #: class.php:2410 class.php:2469
611
  msgid "ACTIVE GROUPS"
612
  msgstr ""
613
 
614
  #. translators: %s: list parameters and type
615
- #: class.php:2644
616
  msgid "parameters='%s' type='%s'"
617
  msgstr ""
618
 
619
  #. translators: %s: list parameters and type
620
- #: class.php:2646
621
  msgid "referers='%s' type='%s'"
622
  msgstr ""
623
 
624
  #. translators: %s: list parameters and type
625
- #: class.php:2707
626
  msgid "countries='%s' type='%s'"
627
  msgstr ""
628
 
629
  #. translators: %s: list parameters and type
630
- #: class.php:2709
631
  msgid "ip addresses='%s' type='%s'"
632
  msgstr ""
633
 
634
- #: class.php:2943 strings.php:228
635
  msgid "BEFORE"
636
  msgstr ""
637
 
638
- #: class.php:2951 strings.php:230
639
  msgid "PREPEND CONTENT"
640
  msgstr ""
641
 
642
- #: class.php:2955 strings.php:231
643
  msgid "APPEND CONTENT"
644
  msgstr ""
645
 
646
- #: class.php:2959 strings.php:232
647
  msgid "REPLACE CONTENT"
648
  msgstr ""
649
 
650
- #: class.php:2963 strings.php:233
651
  msgid "REPLACE ELEMENT"
652
  msgstr ""
653
 
654
- #: class.php:2974 strings.php:229
655
  msgid "AFTER"
656
  msgstr ""
657
 
658
- #: class.php:3041
659
  msgctxt "JavaScript"
660
  msgid "script"
661
  msgstr ""
662
 
663
- #: class.php:3044 settings.php:1893
664
  msgid "for"
665
  msgstr ""
666
 
667
- #: class.php:5584 class.php:5636
668
  msgctxt "category name"
669
  msgid "Uncategorized"
670
  msgstr ""
671
 
672
- #: class.php:6127
673
  msgid ""
674
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
675
  "extension for PHP."
676
  msgstr ""
677
 
678
  #: includes/editor.php:7 includes/placeholders.php:345
679
- #: includes/preview.php:1952 strings.php:235
680
  msgid "Use"
681
  msgstr ""
682
 
@@ -685,7 +685,7 @@ msgid "Reset"
685
  msgstr ""
686
 
687
  #: includes/editor.php:9 includes/placeholders.php:347
688
- #: includes/preview.php:1955 strings.php:199 strings.php:234
689
  msgid "Cancel"
690
  msgstr ""
691
 
@@ -709,511 +709,523 @@ msgstr ""
709
  msgid "PAGE BLOCKED"
710
  msgstr ""
711
 
712
- #: includes/functions.php:252
713
  msgid "%d of %d names shown"
714
  msgstr ""
715
 
716
  #. translators: %s: name filter
717
- #: includes/functions.php:271
718
  msgid "No name matches filter"
719
  msgstr ""
720
 
721
- #: includes/functions.php:327 settings.php:174
722
  msgid "Online documentation"
723
  msgstr ""
724
 
725
- #: includes/functions.php:327 settings.php:174
726
  msgid "Documentation"
727
  msgstr ""
728
 
729
- #: includes/functions.php:340 settings.php:187
730
  msgid "Blocks"
731
  msgstr ""
732
 
733
  #. translators: %s: Ad Inserter Pro
734
- #: includes/functions.php:363
735
  msgid ""
736
  "Import %s settings when saving - if checked, the encoded settings below will "
737
  "be imported for all blocks and settings"
738
  msgstr ""
739
 
740
- #: includes/functions.php:363
741
  msgid "Import Settings for"
742
  msgstr ""
743
 
744
- #: includes/functions.php:367
745
  msgid "Saved settings for"
746
  msgstr ""
747
 
748
- #: includes/functions.php:386
749
  msgid "License Key"
750
  msgstr ""
751
 
752
- #: includes/functions.php:389
753
  msgid "License Key for"
754
  msgstr ""
755
 
756
- #: includes/functions.php:395
757
  msgid "Hide license key"
758
  msgstr ""
759
 
760
- #: includes/functions.php:395
761
  msgid "Hide key"
762
  msgstr ""
763
 
764
- #: includes/functions.php:416
765
  msgid "Main content element"
766
  msgstr ""
767
 
768
- #: includes/functions.php:419
769
  msgid ""
770
  "Main content element (#id or .class) for 'Stick to the content' position. "
771
  "Leave empty unless position is not properly calculated."
772
  msgstr ""
773
 
774
- #: includes/functions.php:420 settings.php:1194 settings.php:2478
775
  msgid "Open HTML element selector"
776
  msgstr ""
777
 
778
- #: includes/functions.php:425
779
  msgid "Lazy loading offset"
780
  msgstr ""
781
 
782
- #: includes/functions.php:428
783
  msgid "Offset of the block from the visible viewport when it should be loaded"
784
  msgstr ""
785
 
786
- #: includes/functions.php:439
787
  msgid "Export / Import Block Settings"
788
  msgstr ""
789
 
790
- #: includes/functions.php:454
791
  msgid "Track impressions and clicks for this block"
792
  msgstr ""
793
 
794
- #: includes/functions.php:454
795
  msgid " - global tracking disabled"
796
  msgstr ""
797
 
798
- #: includes/functions.php:461 includes/functions.php:2464
799
- msgid "Generate report"
 
 
 
 
 
 
 
 
800
  msgstr ""
801
 
802
- #: includes/functions.php:471
803
  msgid "Toggle Ad Blocking Statistics"
804
  msgstr ""
805
 
806
- #: includes/functions.php:479 includes/functions.php:2449
807
  msgid "Toggle Statistics"
808
  msgstr ""
809
 
810
  #. translators: %s: Ad Inserter Pro
811
- #: includes/functions.php:495
812
  msgid "%s license key is not set. Continue?"
813
  msgstr ""
814
 
815
  #. translators: %s: Ad Inserter Pro
816
- #: includes/functions.php:499
817
  msgid "Invalid %s license key. Continue?"
818
  msgstr ""
819
 
820
  #. translators: %s: Ad Inserter Pro
821
- #: includes/functions.php:503
822
  msgid "%s license overused. Continue?"
823
  msgstr ""
824
 
825
- #: includes/functions.php:507 settings.php:1963
826
  msgid "Save Settings"
827
  msgstr ""
828
 
829
- #: includes/functions.php:567 includes/preview.php:2096
830
  msgid "Horizontal position"
831
  msgstr ""
832
 
833
- #: includes/functions.php:590
834
  msgid ""
835
  "Horizontal margin from the content or screen edge, empty means default value "
836
  "from CSS"
837
  msgstr ""
838
 
839
- #: includes/functions.php:598 includes/preview.php:2151
840
  msgid "Vertical position"
841
  msgstr ""
842
 
843
- #: includes/functions.php:613
844
  msgid ""
845
  "Vertical margin from the top or bottom screen edge, empty means default "
846
  "value from CSS"
847
  msgstr ""
848
 
849
- #: includes/functions.php:638 includes/preview.php:2202
850
  msgid "Animation"
851
  msgstr ""
852
 
853
- #: includes/functions.php:656
854
  msgid "Trigger"
855
  msgstr ""
856
 
857
- #: includes/functions.php:665
858
  msgid ""
859
  "Trigger value: page scroll in %, page scroll in px or element with selector "
860
  "(#id or .class) becomes visible"
861
  msgstr ""
862
 
863
- #: includes/functions.php:669
864
  msgid "Offset"
865
  msgstr ""
866
 
867
- #: includes/functions.php:669
868
  msgid "Offset of trigger element"
869
  msgstr ""
870
 
871
- #: includes/functions.php:673
872
  msgid "Delay"
873
  msgstr ""
874
 
875
- #: includes/functions.php:673
876
  msgid "Delay animation after trigger condition"
877
  msgstr ""
878
 
879
- #: includes/functions.php:677
880
  msgid "Trigger once"
881
  msgstr ""
882
 
883
- #: includes/functions.php:679
884
  msgid "Trigger animation only once"
885
  msgstr ""
886
 
887
- #: includes/functions.php:718
888
  msgid "Tracking is globally disabled"
889
  msgstr ""
890
 
891
- #: includes/functions.php:722
892
  msgid "Tracking for this block is disabled"
893
  msgstr ""
894
 
895
- #: includes/functions.php:732 settings.php:3150 settings.php:3186
896
- #: settings.php:3229 strings.php:209
897
  msgid "Loading..."
898
  msgstr ""
899
 
900
- #: includes/functions.php:748
901
  msgid ""
902
  "Clear statistics data for the selected range - clear both dates to delete "
903
  "all data for this block"
904
  msgstr ""
905
 
906
- #: includes/functions.php:752
907
  msgid "Auto refresh data for the selected range every 60 seconds"
908
  msgstr ""
909
 
910
- #: includes/functions.php:755
911
  msgid "Load data for last month"
912
  msgstr ""
913
 
914
- #: includes/functions.php:755
915
  msgid "Last Month"
916
  msgstr ""
917
 
918
- #: includes/functions.php:758
919
  msgid "Load data for this month"
920
  msgstr ""
921
 
922
- #: includes/functions.php:758
923
  msgid "This Month"
924
  msgstr ""
925
 
926
- #: includes/functions.php:761
927
  msgid "Load data for this year"
928
  msgstr ""
929
 
930
- #: includes/functions.php:761
931
  msgid "This Year"
932
  msgstr ""
933
 
934
- #: includes/functions.php:764
935
  msgid "Load data for the last 15 days"
936
  msgstr ""
937
 
938
- #: includes/functions.php:767
939
  msgid "Load data for the last 30 days"
940
  msgstr ""
941
 
942
- #: includes/functions.php:770
943
  msgid "Load data for the last 90 days"
944
  msgstr ""
945
 
946
- #: includes/functions.php:773
947
  msgid "Load data for the last 180 days"
948
  msgstr ""
949
 
950
- #: includes/functions.php:776
951
  msgid "Load data for the last 365 days"
952
  msgstr ""
953
 
954
- #: includes/functions.php:786
955
  msgid "Load data for the selected range"
956
  msgstr ""
957
 
958
- #: includes/functions.php:802
959
  msgid ""
960
  "Import settings when saving - if checked, the encoded settings below will be "
961
  "imported for this block"
962
  msgstr ""
963
 
964
- #: includes/functions.php:802
965
  msgid "Import settings for block"
966
  msgstr ""
967
 
968
- #: includes/functions.php:806
969
  msgid ""
970
  "Import block name when saving - if checked and 'Import settings for block' "
971
  "is also checked, the name from encoded settings below will be imported for "
972
  "this block"
973
  msgstr ""
974
 
975
- #: includes/functions.php:806
976
  msgid "Import block name"
977
  msgstr ""
978
 
979
- #: includes/functions.php:810
980
  msgid "Saved settings for block"
981
  msgstr ""
982
 
983
- #: includes/functions.php:823
984
  msgid "Export / Import Ad Inserter Pro Settings"
985
  msgstr ""
986
 
987
- #: includes/functions.php:833
988
  msgid "Are you sure you want to clear all statistics data for all blocks?"
989
  msgstr ""
990
 
991
- #: includes/functions.php:835
992
  msgid "Clear All Statistics Data"
993
  msgstr ""
994
 
995
- #: includes/functions.php:862
996
  msgid "Toggle country/city editor"
997
  msgstr ""
998
 
999
- #: includes/functions.php:868
1000
  msgid "IP Addresses"
1001
  msgstr ""
1002
 
1003
- #: includes/functions.php:871
1004
  msgid "Toggle IP address editor"
1005
  msgstr ""
1006
 
1007
- #: includes/functions.php:874
1008
  msgid ""
1009
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1010
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1011
  msgstr ""
1012
 
1013
- #: includes/functions.php:878
1014
  msgid "Blacklist IP addresses"
1015
  msgstr ""
1016
 
1017
- #: includes/functions.php:882
1018
  msgid "Whitelist IP addresses"
1019
  msgstr ""
1020
 
1021
- #: includes/functions.php:893
1022
  msgid "Countries"
1023
  msgstr ""
1024
 
1025
- #: includes/functions.php:894
1026
  msgid "Cities"
1027
  msgstr ""
1028
 
1029
- #: includes/functions.php:898 includes/functions.php:2414
1030
  msgid "Toggle country editor"
1031
  msgstr ""
1032
 
1033
- #: includes/functions.php:901
1034
  msgid "Toggle city editor"
1035
  msgstr ""
1036
 
1037
- #: includes/functions.php:905 includes/functions.php:2417
1038
  msgid "Comma separated country ISO Alpha-2 codes"
1039
  msgstr ""
1040
 
1041
- #: includes/functions.php:909
1042
  msgid "Blacklist countries"
1043
  msgstr ""
1044
 
1045
- #: includes/functions.php:913
1046
  msgid "Whitelist countries"
1047
  msgstr ""
1048
 
1049
- #: includes/functions.php:1227 includes/functions.php:1450
1050
  msgid "Enter license key"
1051
  msgstr ""
1052
 
1053
  #. translators: %s: Ad Inserter Pro
1054
- #: includes/functions.php:1233
1055
  msgid ""
1056
  "%s license key is not set. Plugin functionality is limited and updates are "
1057
  "disabled."
1058
  msgstr ""
1059
 
1060
- #: includes/functions.php:1242 includes/functions.php:1459
1061
  msgid "Check license key"
1062
  msgstr ""
1063
 
1064
  #. translators: %s: Ad Inserter Pro
1065
- #: includes/functions.php:1248
1066
  msgid "Invalid %s license key."
1067
  msgstr ""
1068
 
1069
  #. translators: %s: Ad Inserter Pro
1070
- #: includes/functions.php:1257
1071
  msgid "%s license expired. Plugin updates are disabled."
1072
  msgstr ""
1073
 
1074
- #: includes/functions.php:1258
1075
  msgid "Renew license"
1076
  msgstr ""
1077
 
1078
  #. translators: %s: Ad Inserter Pro
1079
- #: includes/functions.php:1266
1080
  msgid "%s license overused. Plugin updates are disabled."
1081
  msgstr ""
1082
 
1083
- #: includes/functions.php:1267
 
 
 
 
1084
  msgid "Upgrade license"
1085
  msgstr ""
1086
 
1087
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1088
- #: includes/functions.php:1452
1089
  msgid ""
1090
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1091
  "limited and updates are disabled."
1092
  msgstr ""
1093
 
1094
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1095
- #: includes/functions.php:1461
1096
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1097
  msgstr ""
1098
 
1099
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1100
- #: includes/functions.php:1477
1101
  msgid ""
1102
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1103
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1104
  msgstr ""
1105
 
1106
  #. translators: 1, 3: HTML tags, 2: percentage
1107
- #: includes/functions.php:1484
1108
  msgid ""
1109
  "During the license period and 30 days after the license has expired we offer "
1110
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1111
  msgstr ""
1112
 
1113
- #: includes/functions.php:1511
1114
  msgid "Renew the licence"
1115
  msgstr ""
1116
 
1117
- #: includes/functions.php:1513
1118
  msgid "Update license status"
1119
  msgstr ""
1120
 
1121
- #. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
1122
- #: includes/functions.php:1524
1123
  msgid ""
1124
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1125
- "Upgrade license %5$s"
1126
  msgstr ""
1127
 
1128
  #. Translators: %s: HTML tag
1129
- #: includes/functions.php:1544
1130
  msgid "Warning: %s MaxMind IP geolocation database not found."
1131
  msgstr ""
1132
 
1133
- #: includes/functions.php:2051
1134
  msgid "Geolocation"
1135
  msgstr ""
1136
 
1137
- #: includes/functions.php:2055
1138
  msgid "Exceptions"
1139
  msgstr ""
1140
 
1141
- #: includes/functions.php:2060
1142
  msgid "Multisite"
1143
  msgstr ""
1144
 
1145
- #: includes/functions.php:2065
1146
  msgid "Tracking"
1147
  msgstr ""
1148
 
1149
  #. translators: %d: days, hours, minutes
1150
- #: includes/functions.php:2096
1151
  msgid "Scheduled in %d days %d hours %d minutes"
1152
  msgstr ""
1153
 
1154
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1155
  #. HTML code for long dash separator
1156
- #: includes/functions.php:2105
1157
  msgid "Active %s expires in %d days %d hours %d minutes"
1158
  msgstr ""
1159
 
1160
- #: includes/functions.php:2109
1161
  msgid "Expired"
1162
  msgstr ""
1163
 
1164
- #: includes/functions.php:2117 settings.php:1277 settings.php:1292
1165
  #: settings.php:1879
1166
  msgid "and"
1167
  msgstr ""
1168
 
1169
- #: includes/functions.php:2120
1170
  msgid "fallback"
1171
  msgstr ""
1172
 
1173
- #: includes/functions.php:2121
1174
  msgid "Block to be used when scheduling expires"
1175
  msgstr ""
1176
 
1177
- #: includes/functions.php:2146
1178
  msgid "Load in iframe"
1179
  msgstr ""
1180
 
1181
- #: includes/functions.php:2150 includes/placeholders.php:382
1182
  msgid "Width"
1183
  msgstr ""
1184
 
1185
- #: includes/functions.php:2151
1186
  msgid "iframe width, empty means full width (100%)"
1187
  msgstr ""
1188
 
1189
- #: includes/functions.php:2157 includes/placeholders.php:377
1190
  msgid "Height"
1191
  msgstr ""
1192
 
1193
- #: includes/functions.php:2158
1194
  msgid "iframe height, empty means adjust it to iframe content height"
1195
  msgstr ""
1196
 
1197
- #: includes/functions.php:2165
1198
  msgid "Ad label in iframe"
1199
  msgstr ""
1200
 
1201
- #: includes/functions.php:2170
1202
  msgid "Preview iframe code"
1203
  msgstr ""
1204
 
1205
- #: includes/functions.php:2170 includes/preview.php:1964 settings.php:954
1206
- #: settings.php:2540
1207
  msgid "Preview"
1208
  msgstr ""
1209
 
1210
- #: includes/functions.php:2184 includes/functions.php:3826
1211
- #: includes/functions.php:3889 settings.php:2014
1212
  msgid "Ad Blocking"
1213
  msgstr ""
1214
 
1215
  #. translators: 1, 2 and 3, 4: HTML tags
1216
- #: includes/functions.php:2193
1217
  msgid ""
1218
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1219
  "for tracking!"
@@ -1221,260 +1233,283 @@ msgstr ""
1221
 
1222
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1223
  #. header
1224
- #: includes/functions.php:2202
1225
  msgid ""
1226
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1227
  "enabled and automatic insertion %6$s!"
1228
  msgstr ""
1229
 
1230
- #: includes/functions.php:2220
1231
  msgid "When ad blocking is detected"
1232
  msgstr ""
1233
 
1234
- #: includes/functions.php:2229
1235
  msgid "replacement"
1236
  msgstr ""
1237
 
1238
- #: includes/functions.php:2230
1239
  msgid "Block to be shown when ad blocking is detected"
1240
  msgstr ""
1241
 
1242
- #: includes/functions.php:2231
1243
  msgctxt "replacement"
1244
  msgid "None"
1245
  msgstr ""
1246
 
1247
- #: includes/functions.php:2248
1248
  msgid "Close button"
1249
  msgstr ""
1250
 
1251
- #: includes/functions.php:2295
1252
  msgid "Lazy loading"
1253
  msgstr ""
1254
 
1255
  #. Translators: %s MaxMind
1256
- #: includes/functions.php:2349
1257
  msgid "This product includes GeoLite2 data created by %s"
1258
  msgstr ""
1259
 
1260
- #: includes/functions.php:2360
1261
  msgid "IP geolocation database"
1262
  msgstr ""
1263
 
1264
- #: includes/functions.php:2363
1265
  msgid "Select IP geolocation database."
1266
  msgstr ""
1267
 
1268
- #: includes/functions.php:2374
1269
  msgid "Automatic database updates"
1270
  msgstr ""
1271
 
1272
- #: includes/functions.php:2377
1273
  msgid ""
1274
  "Automatically download and update free GeoLite2 IP geolocation database by "
1275
  "MaxMind"
1276
  msgstr ""
1277
 
1278
- #: includes/functions.php:2385
1279
  msgid "Database"
1280
  msgstr ""
1281
 
1282
- #: includes/functions.php:2388
1283
  msgid ""
1284
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1285
  "file"
1286
  msgstr ""
1287
 
1288
  #. translators: %d: group number
1289
- #: includes/functions.php:2406
1290
  msgid "Group %d"
1291
  msgstr ""
1292
 
1293
- #: includes/functions.php:2412
1294
  msgid "countries"
1295
  msgstr ""
1296
 
1297
- #: includes/functions.php:2457
1298
  msgid "Enable tracking"
1299
  msgstr ""
1300
 
1301
- #: includes/functions.php:2472
 
 
 
 
1302
  msgid "Impression and Click Tracking"
1303
  msgstr ""
1304
 
1305
- #: includes/functions.php:2488
1306
  msgid "Internal"
1307
  msgstr ""
1308
 
1309
- #: includes/functions.php:2492
1310
  msgid "Track impressions and clicks with internal tracking and statistics"
1311
  msgstr ""
1312
 
1313
- #: includes/functions.php:2497
1314
  msgid "External"
1315
  msgstr ""
1316
 
1317
- #: includes/functions.php:2501
1318
  msgid ""
1319
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1320
  "code installed)"
1321
  msgstr ""
1322
 
1323
- #: includes/functions.php:2506
1324
  msgid "Track Pageviews"
1325
  msgstr ""
1326
 
1327
- #: includes/functions.php:2512
1328
  msgid "Track Pageviews by Device (as configured for viewports)"
1329
  msgstr ""
1330
 
1331
- #: includes/functions.php:2522
1332
  msgid "Track for Logged in Users"
1333
  msgstr ""
1334
 
1335
- #: includes/functions.php:2528
1336
  msgid "Track impressions and clicks from logged in users"
1337
  msgstr ""
1338
 
1339
- #: includes/functions.php:2538
1340
  msgid "Click Detection"
1341
  msgstr ""
1342
 
1343
- #: includes/functions.php:2544
1344
  msgid ""
1345
  "Standard method detects clicks only on banners with links, Advanced method "
1346
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1347
  msgstr ""
1348
 
1349
- #: includes/functions.php:2570
1350
  msgid "Report header image"
1351
  msgstr ""
1352
 
1353
- #: includes/functions.php:2573
1354
  msgid ""
1355
  "Image or logo to be displayed in the header of the statistins report. "
1356
- "Aabsolute path starting with '/' or relative path to the image file."
 
1357
  msgstr ""
1358
 
1359
- #: includes/functions.php:2574 strings.php:221
1360
  msgid "Select or upload header image"
1361
  msgstr ""
1362
 
1363
- #: includes/functions.php:2579
1364
  msgid "Report header title"
1365
  msgstr ""
1366
 
1367
- #: includes/functions.php:2582
1368
  msgid ""
1369
- "Title to be displayed in the header of the statistins report. Text or HTML "
1370
- "code."
1371
  msgstr ""
1372
 
1373
- #: includes/functions.php:2587
1374
  msgid "Report header description"
1375
  msgstr ""
1376
 
1377
- #: includes/functions.php:2590
1378
  msgid ""
1379
- "Description to be displayed in the header of the statistins report. Text or "
1380
- "HTML code."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1381
  msgstr ""
1382
 
1383
- #: includes/functions.php:2622
1384
  msgid "Are you sure you want to clear all exceptions for block"
1385
  msgstr ""
1386
 
1387
- #: includes/functions.php:2623 settings.php:1041
1388
  msgid "Clear all exceptions for block"
1389
  msgstr ""
1390
 
1391
- #: includes/functions.php:2630
1392
  msgid "Are you sure you want to clear all exceptions?"
1393
  msgstr ""
1394
 
1395
- #: includes/functions.php:2630
1396
  msgid "Clear all exceptions for all blocks"
1397
  msgstr ""
1398
 
1399
- #: includes/functions.php:2635 settings.php:3378 settings.php:3716
1400
  msgid "Type"
1401
  msgstr ""
1402
 
1403
- #: includes/functions.php:2653
1404
  msgid "View"
1405
  msgstr ""
1406
 
1407
- #: includes/functions.php:2654 includes/placeholders.php:346
1408
  #: includes/preview.php:2271 settings.php:1180
1409
  msgid "Edit"
1410
  msgstr ""
1411
 
1412
- #: includes/functions.php:2684
1413
  msgid "Are you sure you want to clear all exceptions for"
1414
  msgstr ""
1415
 
1416
- #: includes/functions.php:2685
1417
  msgid "Clear all exceptions for"
1418
  msgstr ""
1419
 
1420
- #: includes/functions.php:2698
1421
  msgid "No exceptions"
1422
  msgstr ""
1423
 
1424
  #. translators: %s: Ad Inserter Pro
1425
- #: includes/functions.php:2709
1426
  msgid "%s options for network blogs"
1427
  msgstr ""
1428
 
1429
  #. translators: %s: Ad Inserter Pro
1430
- #: includes/functions.php:2714
1431
  msgid "Enable %s widgets for sub-sites"
1432
  msgstr ""
1433
 
1434
- #: includes/functions.php:2714
1435
  msgid "Widgets"
1436
  msgstr ""
1437
 
1438
- #: includes/functions.php:2719
1439
  msgid "Enable PHP code processing for sub-sites"
1440
  msgstr ""
1441
 
1442
- #: includes/functions.php:2719
1443
  msgid "PHP Processing"
1444
  msgstr ""
1445
 
1446
  #. translators: %s: Ad Inserter Pro
1447
- #: includes/functions.php:2724
1448
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1449
  msgstr ""
1450
 
1451
- #: includes/functions.php:2724
1452
  msgid "Post/Page exceptions"
1453
  msgstr ""
1454
 
1455
  #. translators: %s: Ad Inserter Pro
1456
- #: includes/functions.php:2729
1457
  msgid "Enable %s settings page for sub-sites"
1458
  msgstr ""
1459
 
1460
- #: includes/functions.php:2729
1461
  msgid "Settings page"
1462
  msgstr ""
1463
 
1464
  #. translators: %s: Ad Inserter Pro
1465
- #: includes/functions.php:2734
1466
  msgid "Enable %s settings of main site to be used for all blogs"
1467
  msgstr ""
1468
 
1469
- #: includes/functions.php:2734
1470
  msgid "Main site settings used for all blogs"
1471
  msgstr ""
1472
 
1473
- #: includes/functions.php:2745 settings.php:2436
1474
  msgid "Ad Blocking Detection"
1475
  msgstr ""
1476
 
1477
- #: includes/functions.php:2751
1478
  msgid ""
1479
  "Standard method is reliable but should be used only if Advanced method does "
1480
  "not work. Advanced method recreates files used for detection with random "
@@ -1482,116 +1517,116 @@ msgid ""
1482
  "publicly accessible"
1483
  msgstr ""
1484
 
1485
- #: includes/functions.php:3371 includes/functions.php:3461
1486
- #: includes/functions.php:3481
1487
  msgid "AD BLOCKING"
1488
  msgstr ""
1489
 
1490
- #: includes/functions.php:3372 includes/functions.php:3412
1491
- #: includes/functions.php:3455 includes/functions.php:3482
1492
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1493
  msgstr ""
1494
 
1495
- #: includes/functions.php:3375 includes/functions.php:3454
1496
- #: includes/functions.php:3488
1497
  msgid "NO AD BLOCKING"
1498
  msgstr ""
1499
 
1500
- #: includes/functions.php:3411 includes/functions.php:3418
1501
  msgid "AD BLOCKING REPLACEMENT"
1502
  msgstr ""
1503
 
1504
- #: includes/functions.php:3679 includes/functions.php:3888
1505
  msgid "Pageviews"
1506
  msgstr ""
1507
 
1508
- #: includes/functions.php:3825
1509
  msgctxt "Version"
1510
  msgid "Unknown"
1511
  msgstr ""
1512
 
1513
- #: includes/functions.php:3825
1514
  msgctxt "Times"
1515
  msgid "DISPLAYED"
1516
  msgstr ""
1517
 
1518
- #: includes/functions.php:3825
1519
  msgid "No version"
1520
  msgstr ""
1521
 
1522
- #: includes/functions.php:3826
1523
  msgctxt "Times"
1524
  msgid "BLOCKED"
1525
  msgstr ""
1526
 
1527
- #: includes/functions.php:3888
1528
  msgid "Impressions"
1529
  msgstr ""
1530
 
1531
- #: includes/functions.php:3889 includes/functions.php:3890
1532
- #: includes/functions.php:3920
1533
  msgid "Clicks"
1534
  msgstr ""
1535
 
1536
- #: includes/functions.php:3890
1537
  msgid "events"
1538
  msgstr ""
1539
 
1540
- #: includes/functions.php:3891
1541
  msgid "Ad Blocking Share"
1542
  msgstr ""
1543
 
1544
  #. translators: CTR as Click Through Rate
1545
- #: includes/functions.php:3891 includes/functions.php:3926
1546
  msgid "CTR"
1547
  msgstr ""
1548
 
1549
- #: includes/functions.php:4008
1550
  msgid "pageviews"
1551
  msgid_plural "pageviews"
1552
  msgstr[0] ""
1553
  msgstr[1] ""
1554
 
1555
- #: includes/functions.php:4008
1556
  msgid "impressions"
1557
  msgid_plural "impressions"
1558
  msgstr[0] ""
1559
  msgstr[1] ""
1560
 
1561
- #: includes/functions.php:4012
1562
  msgid "event"
1563
  msgid_plural "events"
1564
  msgstr[0] ""
1565
  msgstr[1] ""
1566
 
1567
- #: includes/functions.php:4012
1568
  msgid "click"
1569
  msgid_plural "clicks"
1570
  msgstr[0] ""
1571
  msgstr[1] ""
1572
 
1573
- #: includes/functions.php:4107
1574
  msgctxt "Pageviews / Impressions"
1575
  msgid "Average"
1576
  msgstr ""
1577
 
1578
- #: includes/functions.php:4128
1579
  msgctxt "Ad Blocking / Clicks"
1580
  msgid "Average"
1581
  msgstr ""
1582
 
1583
- #: includes/functions.php:4152
1584
  msgctxt "Ad Blocking Share / CTR"
1585
  msgid "Average"
1586
  msgstr ""
1587
 
1588
  #. Translators: %s: Ad Inserter Pro
1589
- #: includes/functions.php:4204
1590
  msgid "%s Report"
1591
  msgstr ""
1592
 
1593
- #: includes/functions.php:4282
1594
- msgid "Advanced WordPress Ad Management Plugin"
1595
  msgstr ""
1596
 
1597
  #: includes/placeholders.php:19
@@ -1618,7 +1653,7 @@ msgstr ""
1618
  msgid "Placeholder"
1619
  msgstr ""
1620
 
1621
- #: includes/placeholders.php:356 settings.php:808 settings.php:3717
1622
  msgid "Size"
1623
  msgstr ""
1624
 
@@ -1726,11 +1761,11 @@ msgstr ""
1726
  msgid "Ad Blocking Detected Message Preview"
1727
  msgstr ""
1728
 
1729
- #: includes/preview-adb.php:348 settings.php:2553
1730
  msgid "Message CSS"
1731
  msgstr ""
1732
 
1733
- #: includes/preview-adb.php:353 settings.php:2561
1734
  msgid "Overlay CSS"
1735
  msgstr ""
1736
 
@@ -1771,7 +1806,7 @@ msgid "background"
1771
  msgstr ""
1772
 
1773
  #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1774
- #: settings.php:3643
1775
  msgid "Alignment"
1776
  msgstr ""
1777
 
@@ -1977,7 +2012,7 @@ msgstr ""
1977
  msgid "General Settings"
1978
  msgstr ""
1979
 
1980
- #: settings.php:592 settings.php:2312 settings.php:2370 settings.php:2533
1981
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
1982
  msgstr ""
1983
 
@@ -2013,7 +2048,7 @@ msgstr ""
2013
  msgid "Clear block"
2014
  msgstr ""
2015
 
2016
- #: settings.php:658 settings.php:3611
2017
  msgid "Copy block"
2018
  msgstr ""
2019
 
@@ -2177,7 +2212,7 @@ msgid ""
2177
  "editor. Leave blank for no individual post exceptions."
2178
  msgstr ""
2179
 
2180
- #: settings.php:978 settings.php:3037
2181
  msgid "Posts"
2182
  msgstr ""
2183
 
@@ -2188,7 +2223,7 @@ msgid ""
2188
  "theme)"
2189
  msgstr ""
2190
 
2191
- #: settings.php:983 settings.php:3039
2192
  msgid "Homepage"
2193
  msgstr ""
2194
 
@@ -2196,7 +2231,7 @@ msgstr ""
2196
  msgid "Enable insertion on category blog pages (including sub-pages)"
2197
  msgstr ""
2198
 
2199
- #: settings.php:988 settings.php:3040
2200
  msgid "Category pages"
2201
  msgstr ""
2202
 
@@ -2214,7 +2249,7 @@ msgid ""
2214
  "page editor. Leave blank for no individual page exceptions."
2215
  msgstr ""
2216
 
2217
- #: settings.php:1006 settings.php:3038
2218
  msgid "Static pages"
2219
  msgstr ""
2220
 
@@ -2222,7 +2257,7 @@ msgstr ""
2222
  msgid "Enable insertion on search blog pages"
2223
  msgstr ""
2224
 
2225
- #: settings.php:1011 settings.php:3042
2226
  msgid "Search pages"
2227
  msgstr ""
2228
 
@@ -2323,7 +2358,7 @@ msgstr ""
2323
  msgid "HTML element selector or comma separated list of selectors"
2324
  msgstr ""
2325
 
2326
- #: settings.php:1209 settings.php:2446
2327
  msgid "Action"
2328
  msgstr ""
2329
 
@@ -2590,7 +2625,7 @@ msgstr ""
2590
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2591
  msgstr ""
2592
 
2593
- #: settings.php:1636 settings.php:3645
2594
  msgid "Shortcode"
2595
  msgstr ""
2596
 
@@ -2650,7 +2685,7 @@ msgstr ""
2650
  msgid "Display"
2651
  msgstr ""
2652
 
2653
- #: settings.php:1760 settings.php:2007
2654
  msgid "General"
2655
  msgstr ""
2656
 
@@ -2711,7 +2746,7 @@ msgid ""
2711
  "tab General)"
2712
  msgstr ""
2713
 
2714
- #: settings.php:1805 settings.php:2176
2715
  msgid "Max blocks per page"
2716
  msgstr ""
2717
 
@@ -2783,7 +2818,7 @@ msgstr ""
2783
  msgid "Not available"
2784
  msgstr ""
2785
 
2786
- #: settings.php:1908 settings.php:2168
2787
  msgid "Ad label"
2788
  msgstr ""
2789
 
@@ -2822,439 +2857,465 @@ msgstr ""
2822
  msgid "Edit ads.txt file"
2823
  msgstr ""
2824
 
2825
- #: settings.php:2008
2826
  msgid "Viewports"
2827
  msgstr ""
2828
 
2829
- #: settings.php:2009
2830
  msgid "Hooks"
2831
  msgstr ""
2832
 
2833
- #: settings.php:2010
2834
  msgid "Header"
2835
  msgstr ""
2836
 
2837
- #: settings.php:2011 strings.php:30
2838
  msgid "Footer"
2839
  msgstr ""
2840
 
2841
- #: settings.php:2016
2842
  msgid "Debugging"
2843
  msgstr ""
2844
 
2845
- #: settings.php:2026
2846
  msgid "Plugin priority"
2847
  msgstr ""
2848
 
2849
- #: settings.php:2034
2850
  msgid "Output buffering"
2851
  msgstr ""
2852
 
2853
- #: settings.php:2037
2854
  msgid "Needed for position Above header but may not work with all themes"
2855
  msgstr ""
2856
 
2857
- #: settings.php:2045
2858
  msgid "Syntax highlighting theme"
2859
  msgstr ""
2860
 
2861
- #: settings.php:2052
2862
  msgctxt "no syntax highlighting themes"
2863
  msgid "None"
2864
  msgstr ""
2865
 
2866
- #: settings.php:2053
2867
  msgid "No Syntax Highlighting"
2868
  msgstr ""
2869
 
2870
- #: settings.php:2055
2871
  msgctxt "syntax highlighting themes"
2872
  msgid "Light"
2873
  msgstr ""
2874
 
2875
- #: settings.php:2070
2876
  msgctxt "syntax highlighting themes"
2877
  msgid "Dark"
2878
  msgstr ""
2879
 
2880
- #: settings.php:2096
2881
  msgid "Min. user role for ind. exceptions editing"
2882
  msgstr ""
2883
 
2884
- #: settings.php:2106
2885
  msgid "Disable caching for logged in administrators"
2886
  msgstr ""
2887
 
2888
- #: settings.php:2109
2889
  msgid ""
2890
  "Enabled means that logged in administrators will see non-cached (live) pages "
2891
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
2892
  msgstr ""
2893
 
2894
- #: settings.php:2117
2895
  msgid "Sticky widget mode"
2896
  msgstr ""
2897
 
2898
- #: settings.php:2120
2899
  msgid ""
2900
  "CSS mode is the best approach but may not work with all themes. JavaScript "
2901
  "mode works with most themes but may reload ads on page load."
2902
  msgstr ""
2903
 
2904
- #: settings.php:2128
2905
  msgid "Sticky widget top margin"
2906
  msgstr ""
2907
 
2908
- #: settings.php:2136
2909
  msgid "Dynamic blocks"
2910
  msgstr ""
2911
 
2912
- #: settings.php:2149
2913
  msgid "Functions for paragraph counting"
2914
  msgstr ""
2915
 
2916
- #: settings.php:2152
2917
  msgid ""
2918
  "Standard PHP functions are faster and work in most cases, use Multibyte "
2919
  "functions if paragraphs are not counted properly on non-english pages."
2920
  msgstr ""
2921
 
2922
- #: settings.php:2160
2923
  msgid "No paragraph counting inside"
2924
  msgstr ""
2925
 
2926
- #: settings.php:2171
2927
  msgid "Label text or HTML code"
2928
  msgstr ""
2929
 
2930
- #: settings.php:2179
2931
  msgid ""
2932
  "Maximum number of inserted blocks per page. You need to enable Max page "
2933
  "insertions (button Misc / tab Insertion) to count block for this limit."
2934
  msgstr ""
2935
 
2936
- #: settings.php:2193
2937
  msgid "Plugin usage tracking"
2938
  msgstr ""
2939
 
2940
  #. translators: %s: Ad Inserter
2941
- #: settings.php:2196
2942
  msgid ""
2943
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
2944
  "Only information regarding the WordPress environment and %s usage is "
2945
  "recorded (once per month and on events like plugin activation/deactivation)."
2946
  msgstr ""
2947
 
2948
- #: settings.php:2214
2949
  msgid "CSS class name for the wrapping div"
2950
  msgstr ""
2951
 
2952
- #: settings.php:2214
2953
  msgid "Block class name"
2954
  msgstr ""
2955
 
2956
- #: settings.php:2218
2957
  msgid "Include general plugin block class"
2958
  msgstr ""
2959
 
2960
- #: settings.php:2218
2961
  msgid "Block class"
2962
  msgstr ""
2963
 
2964
- #: settings.php:2223
2965
  msgid "Include block number class"
2966
  msgstr ""
2967
 
2968
- #: settings.php:2223
2969
  msgid "Block number class"
2970
  msgstr ""
2971
 
2972
- #: settings.php:2228
2973
  msgid ""
2974
  "Instead of alignment classes generate inline alignment styles for blocks"
2975
  msgstr ""
2976
 
2977
- #: settings.php:2228
2978
  msgid "Inline styles"
2979
  msgstr ""
2980
 
2981
- #: settings.php:2234
2982
  msgid "Preview of the block wrapping code"
2983
  msgstr ""
2984
 
2985
- #: settings.php:2235
2986
  msgid "Wrapping div"
2987
  msgstr ""
2988
 
2989
- #: settings.php:2236 settings.php:2636
2990
  msgid "BLOCK CODE"
2991
  msgstr ""
2992
 
2993
- #: settings.php:2244
2994
  msgid "Viewport Settings used for client-side device detection"
2995
  msgstr ""
2996
 
2997
  #. Translators: %d: viewport number
2998
- #: settings.php:2252
2999
  msgid "Viewport %d name"
3000
  msgstr ""
3001
 
3002
- #: settings.php:2255
3003
  msgid "min width"
3004
  msgstr ""
3005
 
3006
- #: settings.php:2266
3007
  msgid "Custom Hooks"
3008
  msgstr ""
3009
 
3010
- #: settings.php:2278 settings.php:2281
3011
  msgid "Enable hook"
3012
  msgstr ""
3013
 
3014
  #. translators: %d: hook number
3015
- #: settings.php:2281
3016
  msgid "Hook %d name"
3017
  msgstr ""
3018
 
3019
- #: settings.php:2284
3020
  msgid "Hook name for automatic insertion selection"
3021
  msgstr ""
3022
 
3023
- #: settings.php:2287
3024
  msgid "action"
3025
  msgstr ""
3026
 
3027
- #: settings.php:2290
3028
  msgid "Action name as used in the do_action () function"
3029
  msgstr ""
3030
 
3031
- #: settings.php:2293
3032
  msgid "priority"
3033
  msgstr ""
3034
 
3035
- #: settings.php:2296
3036
  msgid "Priority for the hook (default is 10)"
3037
  msgstr ""
3038
 
3039
- #: settings.php:2317
3040
  msgid "Enable insertion of this code into HTML page header"
3041
  msgstr ""
3042
 
3043
- #: settings.php:2321 settings.php:2379 settings.php:2538
3044
  msgid "Process PHP code"
3045
  msgstr ""
3046
 
3047
- #: settings.php:2325
3048
  msgid "HTML Page Header Code"
3049
  msgstr ""
3050
 
3051
- #: settings.php:2333
3052
  msgid "Code in the %s section of the HTML page"
3053
  msgstr ""
3054
 
3055
- #: settings.php:2334 settings.php:2392
3056
- msgctxt "code in header or footer"
3057
- msgid "DISABLED"
3058
  msgstr ""
3059
 
3060
- #: settings.php:2347 settings.php:2405
3061
  msgid "Use server-side detection to insert code only for"
3062
  msgstr ""
3063
 
3064
- #: settings.php:2360
3065
  msgid ""
3066
  "Enable insertion of this code into HTML page header on page for Error 404: "
3067
  "Page not found"
3068
  msgstr ""
3069
 
3070
- #: settings.php:2360 settings.php:2418
3071
  msgid "Insert on Error 404 page"
3072
  msgstr ""
3073
 
3074
- #: settings.php:2375
3075
  msgid "Enable insertion of this code into HTML page footer"
3076
  msgstr ""
3077
 
3078
- #: settings.php:2383
3079
  msgid "HTML Page Footer Code"
3080
  msgstr ""
3081
 
3082
  #. translators: %s: HTML tags
3083
- #: settings.php:2391
3084
  msgid "Code before the %s tag of the the HTML page"
3085
  msgstr ""
3086
 
3087
- #: settings.php:2418
 
 
 
 
 
3088
  msgid ""
3089
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3090
  "Page not found"
3091
  msgstr ""
3092
 
3093
- #: settings.php:2432
3094
  msgid "Enable detection of ad blocking"
3095
  msgstr ""
3096
 
3097
- #: settings.php:2449
 
 
 
 
 
3098
  msgid "Global action when ad blocking is detected"
3099
  msgstr ""
3100
 
3101
  #: settings.php:2458
 
 
 
 
 
 
 
 
3102
  msgid "Delay Action"
3103
  msgstr ""
3104
 
3105
- #: settings.php:2461
3106
  msgid ""
3107
  "Number of page views to delay action when ad blocking is detected. Leave "
3108
  "empty for no delay (action fires on first page view). Sets cookie."
3109
  msgstr ""
3110
 
3111
- #: settings.php:2461
3112
  msgctxt "Delay Action for x "
3113
  msgid "page views"
3114
  msgstr ""
3115
 
3116
- #: settings.php:2466
3117
  msgid "No Action Period"
3118
  msgstr ""
3119
 
3120
- #: settings.php:2469
3121
  msgid ""
3122
  "Number of days to supress action when ad blocking is detected. Leave empty "
3123
  "for no no-action period (action fires always after defined page view delay). "
3124
  "Sets cookie."
3125
  msgstr ""
3126
 
3127
- #: settings.php:2469
3128
  msgctxt "no action period"
3129
  msgid "days"
3130
  msgstr ""
3131
 
3132
- #: settings.php:2474
3133
  msgid "Custom Selectors"
3134
  msgstr ""
3135
 
3136
- #: settings.php:2477
3137
  msgid ""
3138
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3139
  "blocking detection. Invisible element or element with zero height means ad "
3140
  "blocking is present."
3141
  msgstr ""
3142
 
3143
- #: settings.php:2489
3144
  msgid "Redirection Page"
3145
  msgstr ""
3146
 
3147
- #: settings.php:2501
3148
  msgid "Custom Url"
3149
  msgstr ""
3150
 
3151
- #: settings.php:2506
3152
  msgid ""
3153
  "Static page for redirection when ad blocking is detected. For other pages "
3154
  "select Custom url and set it below."
3155
  msgstr ""
3156
 
3157
- #: settings.php:2515
3158
  msgid "Custom Redirection Url"
3159
  msgstr ""
3160
 
3161
- #: settings.php:2527
3162
  msgid "Message HTML code"
3163
  msgstr ""
3164
 
3165
- #: settings.php:2540
3166
  msgid "Preview message when ad blocking is detected"
3167
  msgstr ""
3168
 
3169
- #: settings.php:2569
3170
  msgid "Prevent visitors from closing the warning message"
3171
  msgstr ""
3172
 
3173
- #: settings.php:2569
3174
  msgid "Undismissible Message"
3175
  msgstr ""
3176
 
3177
- #: settings.php:2582
 
 
 
 
 
 
 
 
3178
  msgid ""
3179
  "Force showing admin toolbar for administrators when viewing site. Enable "
3180
  "this option when you are logged in as admin and you don't see admin toolbar."
3181
  msgstr ""
3182
 
3183
- #: settings.php:2590
3184
  msgid "Disable header code (Header tab)"
3185
  msgstr ""
3186
 
3187
- #: settings.php:2594
3188
  msgid "Disable footer code (Footer tab)"
3189
  msgstr ""
3190
 
3191
  #. translators: %s: Ad Inserter
3192
- #: settings.php:2598
3193
  msgid "Disable %s JavaScript code"
3194
  msgstr ""
3195
 
3196
  #. translators: %s: Ad Inserter
3197
- #: settings.php:2602
3198
  msgid "Disable %s CSS code"
3199
  msgstr ""
3200
 
3201
- #: settings.php:2606
3202
  msgid ""
3203
  "Disable PHP code processing (in all blocks including header and footer code)"
3204
  msgstr ""
3205
 
3206
- #: settings.php:2610
3207
  msgid "Disable insertion of all blocks"
3208
  msgstr ""
3209
 
3210
- #: settings.php:2614
3211
  msgid "Disable insertions"
3212
  msgstr ""
3213
 
3214
  #. translators: %s: Ad Inserter
3215
- #: settings.php:2626
3216
  msgid "%s CSS CODE"
3217
  msgstr ""
3218
 
3219
- #: settings.php:2629
3220
  msgid "HEADER CODE"
3221
  msgstr ""
3222
 
3223
  #. translators: %s: PHP tags
3224
- #: settings.php:2635
3225
  msgid "BLOCK PHP CODE"
3226
  msgstr ""
3227
 
3228
  #. translators: %s: Ad Inserter
3229
- #: settings.php:2641
3230
  msgid "%s JS CODE"
3231
  msgstr ""
3232
 
3233
- #: settings.php:2644
3234
  msgid "FOOTER CODE"
3235
  msgstr ""
3236
 
3237
- #: settings.php:2653
3238
  msgid "Force showing admin toolbar when viewing site"
3239
  msgstr ""
3240
 
3241
- #: settings.php:2660
3242
  msgid "Enable debugging functions in admin toolbar"
3243
  msgstr ""
3244
 
3245
- #: settings.php:2662
3246
  msgid "Debugging functions in admin toolbar"
3247
  msgstr ""
3248
 
3249
- #: settings.php:2669
3250
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3251
  msgstr ""
3252
 
3253
- #: settings.php:2671
3254
  msgid "Debugging functions on mobile screens"
3255
  msgstr ""
3256
 
3257
- #: settings.php:2678
3258
  msgid ""
3259
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3260
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3263,197 +3324,201 @@ msgid ""
3263
  "administrators debugging is always enabled."
3264
  msgstr ""
3265
 
3266
- #: settings.php:2680
3267
  msgid "Remote debugging"
3268
  msgstr ""
3269
 
3270
- #: settings.php:2687
3271
  msgid ""
3272
  "Disable translation to see original texts for the settings and messages in "
3273
  "English"
3274
  msgstr ""
3275
 
3276
- #: settings.php:2689
3277
  msgid "Disable translation"
3278
  msgstr ""
3279
 
3280
- #: settings.php:3025
3281
  msgid "Available positions for current theme"
3282
  msgstr ""
3283
 
3284
- #: settings.php:3026
3285
  msgid "Error checking pages"
3286
  msgstr ""
3287
 
3288
- #: settings.php:3029
3289
  msgid "Toggle theme checker for available positions for automatic insertion"
3290
  msgstr ""
3291
 
3292
- #: settings.php:3029
3293
  msgctxt "Button"
3294
  msgid "Check"
3295
  msgstr ""
3296
 
3297
- #: settings.php:3036
3298
  msgid "Position"
3299
  msgstr ""
3300
 
3301
- #: settings.php:3041
3302
  msgid "Archive pages"
3303
  msgstr ""
3304
 
3305
- #: settings.php:3100
3306
  msgid ""
3307
  "Position not available because output buffering (tab [*]) is not enabled"
3308
  msgstr ""
3309
 
3310
- #: settings.php:3103 strings.php:217
3311
  msgid "Position not checked yet"
3312
  msgstr ""
3313
 
3314
- #: settings.php:3134
3315
  msgid "Toggle active/all blocks"
3316
  msgstr ""
3317
 
3318
- #: settings.php:3138 strings.php:204
3319
  msgid "Rearrange block order"
3320
  msgstr ""
3321
 
3322
- #: settings.php:3143
3323
  msgid "Save new block order"
3324
  msgstr ""
3325
 
3326
- #: settings.php:3143
3327
  msgid "Save Changes"
3328
  msgstr ""
3329
 
3330
- #: settings.php:3168
3331
  msgid "Toggle active/all ad units"
3332
  msgstr ""
3333
 
3334
- #: settings.php:3172
3335
  msgid "Reload AdSense ad units"
3336
  msgstr ""
3337
 
3338
- #: settings.php:3176
3339
  msgid "Clear authorization to access AdSense account"
3340
  msgstr ""
3341
 
3342
- #: settings.php:3180 settings.php:3802 settings.php:3869 strings.php:212
3343
  msgid "Google AdSense Homepage"
3344
  msgstr ""
3345
 
3346
- #: settings.php:3203
3347
  msgid "Reload ads.txt file"
3348
  msgstr ""
3349
 
3350
  #. translators: %s: ads.txt
3351
- #: settings.php:3207
3352
  msgid "Open %s"
3353
  msgstr ""
3354
 
3355
- #: settings.php:3211
3356
  msgid "Switch to table view"
3357
  msgstr ""
3358
 
3359
- #: settings.php:3215
3360
  msgid "Switch to editor"
3361
  msgstr ""
3362
 
3363
- #: settings.php:3219
3364
  msgid "Save ads.txt file"
3365
  msgstr ""
3366
 
3367
- #: settings.php:3350 strings.php:197
3368
  msgid "Warning"
3369
  msgstr ""
3370
 
3371
- #: settings.php:3350
3372
  msgid "ads.txt file must be placed on the root domain"
3373
  msgstr ""
3374
 
3375
  #. translators: %s: file path
3376
- #: settings.php:3351
3377
  msgid "WordPress is installed in %s"
3378
  msgstr ""
3379
 
3380
- #: settings.php:3352
3381
  msgid "Showing file"
3382
  msgstr ""
3383
 
3384
- #: settings.php:3359
 
 
 
 
3385
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3386
  msgstr ""
3387
 
3388
- #: settings.php:3376
3389
  msgid "Advertising system"
3390
  msgstr ""
3391
 
3392
- #: settings.php:3377
3393
  msgid "Account ID"
3394
  msgstr ""
3395
 
3396
- #: settings.php:3379
3397
  msgid "Certification authority ID"
3398
  msgstr ""
3399
 
3400
- #: settings.php:3394
3401
  msgid "Account ID found in block and present in ads.txt"
3402
  msgstr ""
3403
 
3404
- #: settings.php:3398
3405
  msgid "Account ID found in block but not present in ads.txt"
3406
  msgstr ""
3407
 
3408
- #: settings.php:3614
3409
  msgid "Preview block"
3410
  msgstr ""
3411
 
3412
- #: settings.php:3623
3413
  msgid "Insertion disabled"
3414
  msgstr ""
3415
 
3416
- #: settings.php:3647
3417
  msgid "Widget positions"
3418
  msgstr ""
3419
 
3420
- #: settings.php:3713
3421
  msgid "Ad unit"
3422
  msgstr ""
3423
 
3424
- #: settings.php:3715
3425
  msgid "Slot ID"
3426
  msgstr ""
3427
 
3428
- #: settings.php:3741
3429
  msgid "Copy AdSense code"
3430
  msgstr ""
3431
 
3432
- #: settings.php:3744
3433
  msgid "Preview AdSense ad"
3434
  msgstr ""
3435
 
3436
- #: settings.php:3747
3437
  msgid "Get AdSense code"
3438
  msgstr ""
3439
 
3440
  #. translators: %s: HTML tags
3441
- #: settings.php:3779
3442
  msgid ""
3443
  "Please %s clear authorization %s with the button %s above and once again "
3444
  "authorize access to your AdSense account."
3445
  msgstr ""
3446
 
3447
- #: settings.php:3798
3448
  msgid "AdSense Integration"
3449
  msgstr ""
3450
 
3451
- #: settings.php:3800
3452
  msgid "AdSense Integration - Step 2"
3453
  msgstr ""
3454
 
3455
  #. translators: %s: HTML tags
3456
- #: settings.php:3806
3457
  msgid ""
3458
  "Authorize %s to access your AdSense account. Click on the %s Get "
3459
  "Authorization Code %s button to open a new window where you can allow "
@@ -3462,7 +3527,7 @@ msgid ""
3462
  msgstr ""
3463
 
3464
  #. translators: %s: HTML tags
3465
- #: settings.php:3813
3466
  msgid ""
3467
  "If you get error, can't access ad units or would like to use own Google API "
3468
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3470,7 +3535,7 @@ msgid ""
3470
  msgstr ""
3471
 
3472
  #. translators: %s: HTML tags
3473
- #: settings.php:3815
3474
  msgid ""
3475
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3476
  "Authorization Code %s button to open a new window where you can allow "
@@ -3479,38 +3544,38 @@ msgid ""
3479
  msgstr ""
3480
 
3481
  #. translators: %s: HTML tags
3482
- #: settings.php:3822
3483
  msgid ""
3484
  "If you get error %s invalid client %s click on the button %s Clear and "
3485
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3486
  msgstr ""
3487
 
3488
- #: settings.php:3833
3489
  msgid "Get Authorization Code"
3490
  msgstr ""
3491
 
3492
- #: settings.php:3836
3493
  msgid "Enter Authorization Code"
3494
  msgstr ""
3495
 
3496
- #: settings.php:3846
3497
  msgid "Use own API IDs"
3498
  msgstr ""
3499
 
3500
- #: settings.php:3848
3501
  msgid "Clear and return to Step 1"
3502
  msgstr ""
3503
 
3504
- #: settings.php:3852
3505
  msgid "Authorize"
3506
  msgstr ""
3507
 
3508
- #: settings.php:3868
3509
  msgid "AdSense Integration - Step 1"
3510
  msgstr ""
3511
 
3512
  #. translators: %s: Ad Inserter
3513
- #: settings.php:3872
3514
  msgid ""
3515
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3516
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3519,176 +3584,176 @@ msgid ""
3519
  msgstr ""
3520
 
3521
  #. translators: %s: HTML tags
3522
- #: settings.php:3881
3523
  msgid "Go to %s Google APIs and Services console %s"
3524
  msgstr ""
3525
 
3526
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3527
- #: settings.php:3882
3528
  msgid ""
3529
  "Create %1$s project - if the project and IDs are already created click on "
3530
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3531
  msgstr ""
3532
 
3533
  #. translators: %s: HTML tags
3534
- #: settings.php:3883
3535
  msgid ""
3536
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3537
  "create a new project"
3538
  msgstr ""
3539
 
3540
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3541
- #: settings.php:3884
3542
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3543
  msgstr ""
3544
 
3545
  #. translators: %s: HTML tags
3546
- #: settings.php:3885
3547
  msgid ""
3548
  "Click on project selection, wait for the project to be created and then and "
3549
  "select %s as the current project"
3550
  msgstr ""
3551
 
3552
  #. translators: %s: HTML tags
3553
- #: settings.php:3886
3554
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3555
  msgstr ""
3556
 
3557
  #. translators: %s: HTML tags
3558
- #: settings.php:3887
3559
  msgid "Search for adsense and enable %s"
3560
  msgstr ""
3561
 
3562
  #. translators: %s: HTML tags
3563
- #: settings.php:3888
3564
  msgid "Click on %s CREATE CREDENTIALS %s"
3565
  msgstr ""
3566
 
3567
  #. translators: %s: HTML tags
3568
- #: settings.php:3889
3569
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3570
  msgstr ""
3571
 
3572
  #. translators: %s: HTML tags
3573
- #: settings.php:3890
3574
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3575
  msgstr ""
3576
 
3577
  #. translators: %s: HTML tags
3578
- #: settings.php:3891
3579
  msgid "Click on %s What credentials do I need? %s"
3580
  msgstr ""
3581
 
3582
  #. translators: %s: HTML tags
3583
- #: settings.php:3892
3584
  msgid ""
3585
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3586
  "Ad Inserter client %s"
3587
  msgstr ""
3588
 
3589
  #. translators: %s: HTML tags
3590
- #: settings.php:3893
3591
  msgid ""
3592
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3593
  "enter %s"
3594
  msgstr ""
3595
 
3596
  #. translators: %s: HTML tags
3597
- #: settings.php:3894
3598
  msgid "Click on %s Continue %s"
3599
  msgstr ""
3600
 
3601
  #. translators: %s: HTML tags
3602
- #: settings.php:3895
3603
  msgid "Click on %s Done %s"
3604
  msgstr ""
3605
 
3606
  #. translators: %s: HTML tags
3607
- #: settings.php:3896
3608
  msgid ""
3609
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3610
  "secret %s"
3611
  msgstr ""
3612
 
3613
- #: settings.php:3897
3614
  msgid "Copy them to the appropriate fields below"
3615
  msgstr ""
3616
 
3617
- #: settings.php:3903
3618
  msgid "Client ID"
3619
  msgstr ""
3620
 
3621
- #: settings.php:3906
3622
  msgid "Enter Client ID"
3623
  msgstr ""
3624
 
3625
- #: settings.php:3911
3626
  msgid "Client secret"
3627
  msgstr ""
3628
 
3629
- #: settings.php:3914
3630
  msgid "Enter Client secret"
3631
  msgstr ""
3632
 
3633
- #: settings.php:3924
3634
  msgid "Use default API IDs"
3635
  msgstr ""
3636
 
3637
- #: settings.php:3929
3638
  msgid "Save"
3639
  msgstr ""
3640
 
3641
- #: settings.php:4205 settings.php:4218 settings.php:4231 settings.php:4246
3642
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3643
  msgstr ""
3644
 
3645
- #: settings.php:4210 settings.php:4223 settings.php:4236 settings.php:4251
3646
- #: settings.php:4420 settings.php:4424 settings.php:4426 settings.php:4442
3647
- #: settings.php:4453 settings.php:4456 settings.php:4462 settings.php:4474
3648
  msgid "Looking for AdSense alternative?"
3649
  msgstr ""
3650
 
3651
- #: settings.php:4262
3652
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3653
  msgstr ""
3654
 
3655
- #: settings.php:4267 settings.php:4422 settings.php:4434 settings.php:4459
3656
- #: settings.php:4482
3657
  msgid "Use Infolinks ads with Adsense to earn more"
3658
  msgstr ""
3659
 
3660
- #: settings.php:4286 settings.php:4324
3661
  msgid "Support plugin development"
3662
  msgstr ""
3663
 
3664
- #: settings.php:4287 settings.php:4325
3665
  msgid ""
3666
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3667
  "reviewing the plugin on WordPres"
3668
  msgstr ""
3669
 
3670
- #: settings.php:4287
3671
  msgctxt "Review ad Inserter"
3672
  msgid "Review"
3673
  msgstr ""
3674
 
3675
- #: settings.php:4288
3676
  msgid ""
3677
  "Support free Ad Inserter development. If you are making money with Ad "
3678
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3679
  "you!"
3680
  msgstr ""
3681
 
3682
- #: settings.php:4288
3683
  msgid "Donate"
3684
  msgstr ""
3685
 
3686
- #: settings.php:4295 settings.php:4340
3687
  msgid "Average rating of the plugin - Thank you!"
3688
  msgstr ""
3689
 
3690
  #. translators: %s: Ad Inserter, HTML tags
3691
- #: settings.php:4306
3692
  msgid ""
3693
  "You've been using %s for a while now, and I hope you're happy with it. "
3694
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3697,329 +3762,334 @@ msgid ""
3697
  "your website. %s Thank you!"
3698
  msgstr ""
3699
 
3700
- #: settings.php:4325
3701
  msgid "Review"
3702
  msgstr ""
3703
 
3704
- #: settings.php:4329
3705
  msgid "Ad Inserter on Twitter"
3706
  msgstr ""
3707
 
3708
- #: settings.php:4330
3709
  msgid "Ad Inserter on Facebook"
3710
  msgstr ""
3711
 
3712
- #: settings.php:4333
3713
  msgid "Follow Ad Inserter"
3714
  msgstr ""
3715
 
3716
  #. translators: %s: HTML tags
3717
- #: settings.php:4360
3718
  msgid ""
3719
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3720
  "and %s Common Settings %s pages"
3721
  msgstr ""
3722
 
3723
  #. translators: %s: HTML tags
3724
- #: settings.php:4372
3725
  msgid ""
3726
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3727
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3728
  msgstr ""
3729
 
3730
  #. translators: %s: HTML tags
3731
- #: settings.php:4391
3732
  msgid ""
3733
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3734
  "diagnose and fix the problem."
3735
  msgstr ""
3736
 
3737
  #. translators: %s: HTML tags
3738
- #: settings.php:4395
3739
  msgid ""
3740
  "If you need any kind of help or support, please do not hesitate to open a "
3741
  "thread on the %s support forum. %s"
3742
  msgstr ""
3743
 
3744
- #: settings.php:4438 settings.php:4478
3745
  msgid "A/B testing - Track ad impressions and clicks"
3746
  msgstr ""
3747
 
3748
- #: settings.php:4446 settings.php:4470
3749
  msgid "Code preview with visual CSS editor"
3750
  msgstr ""
3751
 
3752
- #: settings.php:4488
3753
  msgid "Looking for Pro Ad Management plugin?"
3754
  msgstr ""
3755
 
3756
- #: settings.php:4489
3757
  msgid "To Optimally Monetize your WordPress website?"
3758
  msgstr ""
3759
 
3760
  #. translators: %s HTML tags
3761
- #: settings.php:4492
3762
  msgid "%s AdSense Integration %s"
3763
  msgstr ""
3764
 
3765
  #. translators: %s HTML tags
3766
- #: settings.php:4493
3767
  msgid "Syntax highlighting %s editor %s"
3768
  msgstr ""
3769
 
3770
  #. translators: %s HTML tags
3771
- #: settings.php:4494
3772
  msgid "%s Code preview %s with visual CSS editor"
3773
  msgstr ""
3774
 
3775
  #. translators: %s HTML tags
3776
- #: settings.php:4495
3777
  msgid "Simple user interface - all settings on a single page"
3778
  msgstr ""
3779
 
3780
  #. translators: %s HTML tags
3781
- #: settings.php:4496
3782
  msgid ""
3783
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3784
  "image / excerpt"
3785
  msgstr ""
3786
 
3787
  #. translators: %s HTML tags
3788
- #: settings.php:4497
3789
  msgid "%s Automatic insertion %s between posts on blog pages"
3790
  msgstr ""
3791
 
3792
  #. translators: %s HTML tags
3793
- #: settings.php:4498
3794
  msgid "%s Automatic insertion %s before, between and after comments"
3795
  msgstr ""
3796
 
3797
  #. translators: %s HTML tags
3798
- #: settings.php:4499
3799
  msgid "%s Automatic insertion %s after %s or before %s tag"
3800
  msgstr ""
3801
 
3802
  #. translators: %s HTML tags
3803
- #: settings.php:4500
3804
  msgid "Automatic insertion at %s custom hook positions %s"
3805
  msgstr ""
3806
 
3807
  #. translators: %s HTML tags
3808
- #: settings.php:4501
3809
  msgid ""
3810
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3811
  "selectors)"
3812
  msgstr ""
3813
 
3814
  #. translators: %s HTML tags
3815
- #: settings.php:4502
3816
  msgid "%s Insertion exceptions %s for individual posts and pages"
3817
  msgstr ""
3818
 
3819
  #. translators: %s HTML tags
3820
- #: settings.php:4503
3821
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3822
  msgstr ""
3823
 
3824
  #. translators: %s HTML tags
3825
- #: settings.php:4504
3826
  msgid ""
3827
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3828
  "scrolls)"
3829
  msgstr ""
3830
 
3831
  #. translators: %s HTML tags
3832
- #: settings.php:4505
3833
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3834
  msgstr ""
3835
 
3836
  #. translators: %s HTML tags
3837
- #: settings.php:4506
3838
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3839
  msgstr ""
3840
 
3841
  #. translators: %s HTML tags
3842
- #: settings.php:4507
3843
  msgid ""
3844
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3845
  "visible)"
3846
  msgstr ""
3847
 
3848
  #. translators: %s HTML tags
3849
- #: settings.php:4508
3850
  msgid ""
3851
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3852
  msgstr ""
3853
 
3854
  #. translators: %s HTML tags
3855
- #: settings.php:4509
3856
  msgid "Block %s alignment and style %s customizations"
3857
  msgstr ""
3858
 
3859
  #. translators: %s HTML tags
3860
- #: settings.php:4510
3861
  msgid ""
3862
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3863
  "TOS)"
3864
  msgstr ""
3865
 
3866
  #. translators: %s HTML tags
3867
- #: settings.php:4511
3868
  msgid ""
3869
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3870
  "feeds"
3871
  msgstr ""
3872
 
3873
  #. translators: %s HTML tags
3874
- #: settings.php:4512
3875
  msgid "%s Ad rotation %s (works also with caching)"
3876
  msgstr ""
3877
 
3878
  #. translators: %s HTML tags
3879
- #: settings.php:4513
 
 
 
 
 
3880
  msgid ""
3881
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3882
  "AdSense)"
3883
  msgstr ""
3884
 
3885
  #. translators: %s HTML tags
3886
- #: settings.php:4514
3887
  msgid "Support for %s A/B testing %s"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
- #: settings.php:4515
3892
  msgid "Support for %s lazy loading %s"
3893
  msgstr ""
3894
 
3895
  #. translators: %s HTML tags
3896
- #: settings.php:4516
3897
  msgid "Support for ads on %s AMP pages %s"
3898
  msgstr ""
3899
 
3900
  #. translators: %s HTML tags
3901
- #: settings.php:4517
3902
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
3903
  msgstr ""
3904
 
3905
  #. translators: %s HTML tags
3906
- #: settings.php:4518
3907
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
3908
  msgstr ""
3909
 
3910
  #. translators: %s HTML tags
3911
- #: settings.php:4519
3912
  msgid "PHP code processing"
3913
  msgstr ""
3914
 
3915
  #. translators: %s HTML tags
3916
- #: settings.php:4520
3917
  msgid "%s Banner %s code generator"
3918
  msgstr ""
3919
 
3920
  #. translators: %s HTML tags
3921
- #: settings.php:4521
3922
  msgid "Support for %s header and footer %s code"
3923
  msgstr ""
3924
 
3925
  #. translators: %s HTML tags
3926
- #: settings.php:4522
3927
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
3928
  msgstr ""
3929
 
3930
  #. translators: %s HTML tags
3931
- #: settings.php:4523
3932
  msgid "Desktop, tablet and phone server-side %s device detection %s"
3933
  msgstr ""
3934
 
3935
  #. translators: %s HTML tags
3936
- #: settings.php:4524
3937
  msgid "Client-side %s mobile device detection %s (works with caching)"
3938
  msgstr ""
3939
 
3940
  #. translators: %s HTML tags
3941
- #: settings.php:4525
3942
  msgid ""
3943
  "%s Ad blocking detection %s - popup message, ad replacement, content "
3944
  "protection"
3945
  msgstr ""
3946
 
3947
  #. translators: %s HTML tags
3948
- #: settings.php:4526
3949
  msgid "%s Ad blocking statistics %s"
3950
  msgstr ""
3951
 
3952
  #. translators: %s HTML tags
3953
- #: settings.php:4527
3954
  msgid ""
3955
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
3956
  "referers"
3957
  msgstr ""
3958
 
3959
  #. translators: %s HTML tags
3960
- #: settings.php:4528
3961
  msgid ""
3962
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
3963
  msgstr ""
3964
 
3965
  #. translators: %s HTML tags
3966
- #: settings.php:4529
3967
  msgid "%s Multisite options %s to limit settings on the sites"
3968
  msgstr ""
3969
 
3970
  #. translators: %s HTML tags
3971
- #: settings.php:4530
3972
  msgid "%s Import/Export %s block or plugin settings"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
- #: settings.php:4531
3977
  msgid "%s Insertion scheduling %s with fallback option"
3978
  msgstr ""
3979
 
3980
  #. translators: %s HTML tags
3981
- #: settings.php:4532
3982
  msgid "Country-level %s GEO targeting %s (works also with caching)"
3983
  msgstr ""
3984
 
3985
  #. translators: %s HTML tags
3986
- #: settings.php:4533
3987
  msgid "Simple troubleshooting with many %s debugging functions %s"
3988
  msgstr ""
3989
 
3990
  #. translators: %s HTML tags
3991
- #: settings.php:4534
3992
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
3993
  msgstr ""
3994
 
3995
  #. translators: %s HTML tags
3996
- #: settings.php:4535
3997
  msgid "%s Visualization %s of available positions for automatic ad insertion"
3998
  msgstr ""
3999
 
4000
  #. translators: %s HTML tags
4001
- #: settings.php:4536
4002
  msgid ""
4003
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4004
  msgstr ""
4005
 
4006
  #. translators: %s HTML tags
4007
- #: settings.php:4537
4008
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4009
  msgstr ""
4010
 
4011
  #. translators: %s HTML tags
4012
- #: settings.php:4538
4013
  msgid "No ads on the settings page"
4014
  msgstr ""
4015
 
4016
  #. translators: %s HTML tags
4017
- #: settings.php:4539
4018
  msgid "Premium support via email"
4019
  msgstr ""
4020
 
4021
  #. translators: %s HTML tags
4022
- #: settings.php:4542
4023
  msgid ""
4024
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4025
  "website with many advertising features to automatically insert adverts on "
@@ -4034,82 +4104,82 @@ msgid ""
4034
  msgstr ""
4035
 
4036
  #. translators: %s HTML tags
4037
- #: settings.php:4555
4038
  msgid "Looking for %s Pro Ad Management plugin? %s"
4039
  msgstr ""
4040
 
4041
  #. translators: %s HTML tags
4042
- #: settings.php:4560
4043
  msgid "Ads between posts"
4044
  msgstr ""
4045
 
4046
  #. translators: %s HTML tags
4047
- #: settings.php:4561
4048
  msgid "Ads between comments"
4049
  msgstr ""
4050
 
4051
  #. translators: %s HTML tags
4052
- #: settings.php:4562
4053
  msgid "Support via email"
4054
  msgstr ""
4055
 
4056
  #. translators: %s HTML tags
4057
- #: settings.php:4568
4058
  msgid "%s Sticky positions %s"
4059
  msgstr ""
4060
 
4061
  #. translators: %s HTML tags
4062
- #: settings.php:4569
4063
  msgid "%s Limit insertions %s"
4064
  msgstr ""
4065
 
4066
  #. translators: %s HTML tags
4067
- #: settings.php:4570
4068
  msgid "%s Clearance %s options"
4069
  msgstr ""
4070
 
4071
  #. translators: %s HTML tags
4072
- #: settings.php:4576
4073
  msgid "Ad rotation"
4074
  msgstr ""
4075
 
4076
  #. translators: %s HTML tags
4077
- #: settings.php:4577
4078
  msgid "%s A/B testing %s"
4079
  msgstr ""
4080
 
4081
  #. translators: %s HTML tags
4082
- #: settings.php:4578
4083
  msgid "%s Ad tracking %s"
4084
  msgstr ""
4085
 
4086
  #. translators: %s HTML tags
4087
- #: settings.php:4584
4088
  msgid "Support for %s AMP pages %s"
4089
  msgstr ""
4090
 
4091
  #. translators: %s HTML tags
4092
- #: settings.php:4585
4093
  msgid "%s Ad blocking detection %s"
4094
  msgstr ""
4095
 
4096
  #. translators: %s HTML tags
4097
- #: settings.php:4586
4098
  msgid "%s Mobile device detection %s"
4099
  msgstr ""
4100
 
4101
  #. translators: %s HTML tags
4102
- #: settings.php:4593
4103
  msgid "64 code blocks"
4104
  msgstr ""
4105
 
4106
  #. translators: %s HTML tags
4107
- #: settings.php:4594
4108
  msgid "%s GEO targeting %s"
4109
  msgstr ""
4110
 
4111
  #. translators: %s HTML tags
4112
- #: settings.php:4595
4113
  msgid "%s Scheduling %s"
4114
  msgstr ""
4115
 
@@ -4711,175 +4781,175 @@ msgctxt "size"
4711
  msgid "Fixed by viewport"
4712
  msgstr ""
4713
 
4714
- #: strings.php:178
4715
- msgid "Ad Inserter Pro Report"
4716
- msgstr ""
4717
-
4718
  #: strings.php:179
4719
  msgid "Impressions and clicks"
4720
  msgstr ""
4721
 
4722
- #: strings.php:184
 
 
 
 
4723
  msgctxt "Button"
4724
  msgid "Hide"
4725
  msgstr ""
4726
 
4727
- #: strings.php:185
4728
  msgctxt "Button"
4729
  msgid "Show"
4730
  msgstr ""
4731
 
4732
- #: strings.php:186
4733
  msgid "Insertion expired"
4734
  msgstr ""
4735
 
4736
- #: strings.php:187
4737
  msgid "Duration"
4738
  msgstr ""
4739
 
4740
- #: strings.php:188
4741
  msgid "Invalid end date - must be after start date"
4742
  msgstr ""
4743
 
4744
- #: strings.php:189
4745
  msgid "Invalid start date - only data for 1 year back is available"
4746
  msgstr ""
4747
 
4748
- #: strings.php:190
4749
  msgid "Invalid date range - only data for 1 year can be displayed"
4750
  msgstr ""
4751
 
4752
- #: strings.php:191 strings.php:192 strings.php:193 strings.php:194
4753
- #: strings.php:195 strings.php:196
4754
  msgid "day"
4755
  msgid_plural "days"
4756
  msgstr[0] ""
4757
  msgstr[1] ""
4758
 
4759
- #: strings.php:198
4760
  msgid "Delete"
4761
  msgstr ""
4762
 
4763
- #: strings.php:200
4764
  msgid "Delete all statistics data?"
4765
  msgstr ""
4766
 
4767
  #. translators: %s: dates
4768
- #: strings.php:202
4769
  msgid "Delete statistics data between %s and %s?"
4770
  msgstr ""
4771
 
4772
- #: strings.php:203
4773
  msgid "Cancel block order rearrangement"
4774
  msgstr ""
4775
 
4776
- #: strings.php:205
4777
  msgid "downloading..."
4778
  msgstr ""
4779
 
4780
- #: strings.php:206
4781
  msgid "download error"
4782
  msgstr ""
4783
 
4784
- #: strings.php:207
4785
  msgid "update error"
4786
  msgstr ""
4787
 
4788
- #: strings.php:208
4789
  msgid "Updating..."
4790
  msgstr ""
4791
 
4792
- #: strings.php:210
4793
  msgid "ERROR"
4794
  msgstr ""
4795
 
4796
- #: strings.php:211
4797
  msgid "Error reloading settings"
4798
  msgstr ""
4799
 
4800
- #: strings.php:213
4801
  msgctxt "Search field placeholder"
4802
  msgid "Search..."
4803
  msgstr ""
4804
 
4805
- #: strings.php:214
4806
  msgctxt "Search field placeholder"
4807
  msgid "Filter..."
4808
  msgstr ""
4809
 
4810
- #: strings.php:215
4811
  msgid "Use filter to limit names in the list"
4812
  msgstr ""
4813
 
4814
- #: strings.php:216
4815
  msgctxt "Button"
4816
  msgid "Filter"
4817
  msgstr ""
4818
 
4819
- #: strings.php:218
4820
  msgid "Position not available"
4821
  msgstr ""
4822
 
4823
- #: strings.php:219
4824
  msgid ""
4825
  "Theme check | Selected position for automatic insertion might not be not "
4826
  "available on this page type"
4827
  msgstr ""
4828
 
4829
- #: strings.php:220
4830
  msgid "Position available"
4831
  msgstr ""
4832
 
4833
- #: strings.php:222
4834
  msgid "Select or upload banner image"
4835
  msgstr ""
4836
 
4837
- #: strings.php:223
4838
  msgid "Use this image"
4839
  msgstr ""
4840
 
4841
- #: strings.php:236
4842
  msgid "Add"
4843
  msgstr ""
4844
 
4845
- #: strings.php:237
4846
  msgid "Parent"
4847
  msgstr ""
4848
 
4849
- #: strings.php:238
4850
  msgid "Cancel element selection"
4851
  msgstr ""
4852
 
4853
- #: strings.php:239
4854
  msgid "Select parent element"
4855
  msgstr ""
4856
 
4857
- #: strings.php:240
4858
  msgid "CSS selector"
4859
  msgstr ""
4860
 
4861
- #: strings.php:241
4862
  msgid "Use current selector"
4863
  msgstr ""
4864
 
4865
- #: strings.php:242
4866
  msgid "ELEMENT"
4867
  msgstr ""
4868
 
4869
- #: strings.php:243
4870
  msgid "PATH"
4871
  msgstr ""
4872
 
4873
- #: strings.php:244
4874
  msgid "SELECTOR"
4875
  msgstr ""
4876
 
4877
- #: strings.php:245
4878
  msgctxt "Block"
4879
  msgid "VISIBLE"
4880
  msgstr ""
4881
 
4882
- #: strings.php:246
4883
  msgctxt "Block"
4884
  msgid "HIDDEN"
4885
  msgstr ""
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.4.12\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-04-10 18:20:58+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: ad-inserter.php:331
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:347
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:354
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:425
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:432
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:441
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:448
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:458
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1039
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1044
62
  msgid "After"
63
  msgstr ""
64
 
65
  #. translators: Debugging position name Prepend content of HTML element (before
66
  #. the content of the HTML element)
67
+ #: ad-inserter.php:1049 strings.php:98
68
  msgid "Prepend content"
69
  msgstr ""
70
 
71
  #. translators: Debugging position name Append content of HTML element (after
72
  #. the content of the HTML element)
73
+ #: ad-inserter.php:1054 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1059 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1064 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1111
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1115
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1324
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1607 ad-inserter.php:2470
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2041
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2041
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2042
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2043
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2044
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2045
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2046
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2241
138
  msgid "Hey, you are now using %1$s %2$s block."
139
  msgid_plural "Hey, you are now using %1$s %2$s blocks."
140
  msgstr[0] ""
141
  msgstr[1] ""
142
 
143
+ #: ad-inserter.php:2242 includes/functions.php:1521
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
+ #: ad-inserter.php:2245
149
  msgid ""
150
  "Hey, you've been using %s for a while now, and I hope you're happy with it."
151
  msgstr ""
152
 
153
+ #: ad-inserter.php:2246 includes/functions.php:1524
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
+ #: ad-inserter.php:2256
158
  msgid ""
159
  "I would really appreciate it if you could give the plugin a 5-star rating on "
160
  "WordPres."
161
  msgstr ""
162
 
163
+ #: ad-inserter.php:2258
164
  msgid ""
165
  "Positive reviews are a great incentive to fix bugs and to add new features "
166
  "for better monetization of your website. Thank you, Igor"
167
  msgstr ""
168
 
169
  #. translators: %s: Ad Inserter
170
+ #: ad-inserter.php:2264
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2269
175
  msgid "I already did."
176
  msgstr ""
177
 
178
+ #: ad-inserter.php:2283
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
+ #: ad-inserter.php:2357
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
+ #: ad-inserter.php:2386 ad-inserter.php:8092 class.php:1967
190
  #: includes/preview.php:1966 includes/preview.php:2010
191
+ #: includes/preview.php:2047 settings.php:3668 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2387 settings.php:3669 settings.php:3743
196
  msgid "Name"
197
  msgstr ""
198
 
199
+ #: ad-inserter.php:2388 settings.php:3671
200
  msgid "Automatic insertion"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2391
204
  msgid "Default insertion for pages"
205
  msgstr ""
206
 
207
+ #: ad-inserter.php:2392
208
  msgid "Default insertion for posts"
209
  msgstr ""
210
 
211
  #. translators: For this post or page
212
+ #: ad-inserter.php:2395
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr ""
216
 
217
+ #: ad-inserter.php:2396
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr ""
221
 
222
+ #: ad-inserter.php:2404
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr ""
226
 
227
+ #: ad-inserter.php:2405
228
  msgctxt "Default insertion for"
229
  msgid "pages"
230
  msgstr ""
231
 
232
+ #: ad-inserter.php:2409
233
  msgctxt "Enabled/disabled on all"
234
  msgid "posts"
235
  msgstr ""
236
 
237
+ #: ad-inserter.php:2410
238
  msgctxt "Default insertion for"
239
  msgid "posts"
240
  msgstr ""
241
 
242
+ #: ad-inserter.php:2429 ad-inserter.php:2442 strings.php:156
243
  msgid "Enabled"
244
  msgstr ""
245
 
246
  #. translators: Menu items
247
+ #: ad-inserter.php:2429 ad-inserter.php:2442 includes/functions.php:2182
248
  #: strings.php:16
249
  msgid "Disabled"
250
  msgstr ""
251
 
252
  #. translators: Enabled on all pages or posts
253
+ #: ad-inserter.php:2432
254
  msgid "Enabled on all"
255
  msgstr ""
256
 
257
  #. translators: Disabled on all pages or posts
258
+ #: ad-inserter.php:2434
259
  msgid "Disabled on all"
260
  msgstr ""
261
 
262
  #. translators: No individual exceptions enabled for pages or posts
263
+ #: ad-inserter.php:2462
264
  msgid "No individual exceptions enabled for"
265
  msgstr ""
266
 
267
  #. translators: 1: pages or posts, 2: Ad Inserter Settings (page)
268
+ #: ad-inserter.php:2467
269
  msgid ""
270
  "Default insertion for %1$s can be configured for each block on %2$s page - "
271
  "selection next to <strong>Posts</strong> / <strong>Static pages</strong> "
272
  "checkbox.<br />"
273
  msgstr ""
274
 
275
+ #: ad-inserter.php:2472
276
  msgid ""
277
  "Default value is <strong>blank</strong> and means no individual exceptions "
278
  "(even if previously defined here).<br />"
279
  msgstr ""
280
 
281
+ #: ad-inserter.php:2475
282
  msgctxt "Pages"
283
  msgid ""
284
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
285
  "enabled</strong> to enable individual exception settings on this page.<br />"
286
  msgstr ""
287
 
288
+ #: ad-inserter.php:2476
289
  msgctxt "Posts"
290
  msgid ""
291
  "Set to <strong>Individually disabled</strong> or <strong>Individually "
292
  "enabled</strong> to enable individual exception settings on this page.<br />"
293
  msgstr ""
294
 
295
+ #: ad-inserter.php:2478
296
  msgid "For more information check page %s"
297
  msgstr ""
298
 
299
  #. translators: Ad Inserter Exceptions documentation page
300
+ #: ad-inserter.php:2480
301
  msgid "Individual Exceptions"
302
  msgstr ""
303
 
304
+ #: ad-inserter.php:2525
305
  msgid "STATIC PAGE"
306
  msgstr ""
307
 
308
+ #: ad-inserter.php:2528
309
  msgid "POST"
310
  msgstr ""
311
 
312
+ #: ad-inserter.php:2531
313
  msgid "HOMEPAGE"
314
  msgstr ""
315
 
316
+ #: ad-inserter.php:2534
317
  msgid "CATEGORY PAGE"
318
  msgstr ""
319
 
320
+ #: ad-inserter.php:2537
321
  msgid "SEARCH PAGE"
322
  msgstr ""
323
 
324
+ #: ad-inserter.php:2540
325
  msgid "ARCHIVE PAGE"
326
  msgstr ""
327
 
328
+ #: ad-inserter.php:2543
329
  msgid "ERROR 404 PAGE"
330
  msgstr ""
331
 
332
+ #: ad-inserter.php:2546
333
  msgid "AJAX CALL"
334
  msgstr ""
335
 
336
+ #: ad-inserter.php:2549
337
  msgid "UNKNOWN PAGE TYPE"
338
  msgstr ""
339
 
340
+ #: ad-inserter.php:2566
341
  msgid "Click to delete ad blocking detection cokies"
342
  msgstr ""
343
 
344
+ #: ad-inserter.php:2567
345
  msgid "AD BLOCKING STATUS UNKNOWN"
346
  msgstr ""
347
 
348
  #. translators: %s: AdSense Auto Ads
349
+ #: ad-inserter.php:2591
350
  msgid ""
351
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
352
  "positions"
353
  msgstr ""
354
 
355
+ #: ad-inserter.php:2730
356
  msgid "Code for insertion"
357
  msgstr ""
358
 
359
+ #: ad-inserter.php:2730
360
  msgid "character"
361
  msgid_plural "characters"
362
  msgstr[0] ""
363
  msgstr[1] ""
364
 
365
+ #: ad-inserter.php:2773
366
  msgid "Header code"
367
  msgstr ""
368
 
369
+ #: ad-inserter.php:2773
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr ""
373
 
374
+ #: ad-inserter.php:2773 ad-inserter.php:2995
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] ""
378
  msgstr[1] ""
379
 
380
+ #: ad-inserter.php:2806
381
  msgid "Automatically placed by AdSense Auto ads code"
382
  msgstr ""
383
 
384
+ #: ad-inserter.php:2995
385
  msgid "Footer code"
386
  msgstr ""
387
 
388
+ #: ad-inserter.php:2995
389
  msgctxt "Footer code"
390
  msgid "DISABLED"
391
  msgstr ""
392
 
393
+ #: ad-inserter.php:3001
394
  msgid "JAVASCRIPT NOT WORKING"
395
  msgstr ""
396
 
397
+ #: ad-inserter.php:3001
398
  msgid "NO JAVASCRIPT ERRORS"
399
  msgstr ""
400
 
401
+ #: ad-inserter.php:3001
402
  msgid "JAVASCRIPT ERRORS"
403
  msgstr ""
404
 
405
  #. translators: block name (block with default settings)
406
+ #: ad-inserter.php:5133
407
  msgctxt "Block name"
408
  msgid "Default"
409
  msgstr ""
410
 
411
  #. translators: %s: Ad Inserter
412
+ #: ad-inserter.php:5700
413
  msgid "Error importing %s settings."
414
  msgstr ""
415
 
416
+ #: ad-inserter.php:5701
417
  msgid "Error importing settings for block"
418
  msgid_plural "Error importing settings for blocks:"
419
  msgstr[0] ""
420
  msgstr[1] ""
421
 
422
+ #: ad-inserter.php:5750
423
  msgid "Settings saved."
424
  msgstr ""
425
 
426
+ #: ad-inserter.php:5835
427
  msgid "Settings cleared."
428
  msgstr ""
429
 
430
+ #: ad-inserter.php:6180 ad-inserter.php:6182 ad-inserter.php:6205
431
  msgid "word"
432
  msgid_plural "words"
433
  msgstr[0] ""
434
  msgstr[1] ""
435
 
436
+ #: ad-inserter.php:6219 ad-inserter.php:6331
437
  msgid "HTML TAGS REMOVED"
438
  msgstr ""
439
 
440
+ #: ad-inserter.php:6407
441
  msgid "BEFORE COMMENTS"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:6515
445
  msgid "AFTER COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:6578
449
  msgid "BETWEEN COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7739
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:7739
457
  msgid "Please update!"
458
  msgstr ""
459
 
460
  #. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
461
  #. name with HTML tags will be added)
462
+ #: ad-inserter.php:7965
463
  msgid "Thank you for installing"
464
  msgstr ""
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
+ #: ad-inserter.php:7967
468
  msgid ""
469
  "We would like to %s track its usage %s on your site. This is completely "
470
  "optional and can be disabled at any time."
471
  msgstr ""
472
 
473
+ #: ad-inserter.php:7969
474
  msgid ""
475
  "We don't record any sensitive data, only information regarding the WordPress "
476
  "environment and plugin usage, which will help us to make improvements to the "
478
  msgstr ""
479
 
480
  #. translators: Deactivation message: %s: HTML tags
481
+ #: ad-inserter.php:8006
482
  msgid ""
483
  "Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
484
  "help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
486
  msgstr ""
487
 
488
  #. translators: %s: Ad Inserter
489
+ #: ad-inserter.php:8049
490
  msgid "%s block."
491
  msgstr ""
492
 
493
  #. translators: widget title
494
+ #: ad-inserter.php:8065 ad-inserter.php:8101
495
  msgid "Processing log"
496
  msgstr ""
497
 
498
  #. translators: widget title
499
+ #: ad-inserter.php:8067 ad-inserter.php:8102
500
  msgid "Dummy widget"
501
  msgstr ""
502
 
503
  #. translators: widget title
504
+ #: ad-inserter.php:8069 ad-inserter.php:8100
505
  msgid "Debugging tools"
506
  msgstr ""
507
 
508
  #. translators: block status (widget title)
509
+ #: ad-inserter.php:8076
510
  msgctxt "block"
511
  msgid "PAUSED"
512
  msgstr ""
513
 
514
+ #: ad-inserter.php:8077
515
  msgid "WIDGET DISABLED"
516
  msgstr ""
517
 
518
+ #: ad-inserter.php:8078
519
  msgid "Unknown block"
520
  msgstr ""
521
 
522
+ #: ad-inserter.php:8087 includes/functions.php:2711 settings.php:1038
523
  msgid "Title"
524
  msgstr ""
525
 
526
+ #: ad-inserter.php:8109
527
  msgctxt "Widget"
528
  msgid "Sticky"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:8158
532
  msgid ""
533
  "Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
534
  "Inserter you need to first deactivate Ad Inserter Pro."
535
  msgstr ""
536
 
537
+ #: ad-inserter.php:8159
538
  msgid ""
539
  "<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
540
  "will clear all settings that are available only in the Pro version "
566
  msgid "After post"
567
  msgstr ""
568
 
569
+ #: class.php:1957 settings.php:1624 settings.php:3675
570
  msgid "Widget"
571
  msgstr ""
572
 
573
+ #: class.php:1962 settings.php:3673
574
  msgid "PHP function call"
575
  msgstr ""
576
 
607
  msgid "INSERTED BUT NOT VISIBLE"
608
  msgstr ""
609
 
610
+ #: class.php:2411 class.php:2470
611
  msgid "ACTIVE GROUPS"
612
  msgstr ""
613
 
614
  #. translators: %s: list parameters and type
615
+ #: class.php:2645
616
  msgid "parameters='%s' type='%s'"
617
  msgstr ""
618
 
619
  #. translators: %s: list parameters and type
620
+ #: class.php:2647
621
  msgid "referers='%s' type='%s'"
622
  msgstr ""
623
 
624
  #. translators: %s: list parameters and type
625
+ #: class.php:2708
626
  msgid "countries='%s' type='%s'"
627
  msgstr ""
628
 
629
  #. translators: %s: list parameters and type
630
+ #: class.php:2710
631
  msgid "ip addresses='%s' type='%s'"
632
  msgstr ""
633
 
634
+ #: class.php:2944 strings.php:231
635
  msgid "BEFORE"
636
  msgstr ""
637
 
638
+ #: class.php:2952 strings.php:233
639
  msgid "PREPEND CONTENT"
640
  msgstr ""
641
 
642
+ #: class.php:2956 strings.php:234
643
  msgid "APPEND CONTENT"
644
  msgstr ""
645
 
646
+ #: class.php:2960 strings.php:235
647
  msgid "REPLACE CONTENT"
648
  msgstr ""
649
 
650
+ #: class.php:2964 strings.php:236
651
  msgid "REPLACE ELEMENT"
652
  msgstr ""
653
 
654
+ #: class.php:2975 strings.php:232
655
  msgid "AFTER"
656
  msgstr ""
657
 
658
+ #: class.php:3042
659
  msgctxt "JavaScript"
660
  msgid "script"
661
  msgstr ""
662
 
663
+ #: class.php:3045 settings.php:1893
664
  msgid "for"
665
  msgstr ""
666
 
667
+ #: class.php:5585 class.php:5637
668
  msgctxt "category name"
669
  msgid "Uncategorized"
670
  msgstr ""
671
 
672
+ #: class.php:6128
673
  msgid ""
674
  "ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
675
  "extension for PHP."
676
  msgstr ""
677
 
678
  #: includes/editor.php:7 includes/placeholders.php:345
679
+ #: includes/preview.php:1952 strings.php:238
680
  msgid "Use"
681
  msgstr ""
682
 
685
  msgstr ""
686
 
687
  #: includes/editor.php:9 includes/placeholders.php:347
688
+ #: includes/preview.php:1955 strings.php:201 strings.php:237
689
  msgid "Cancel"
690
  msgstr ""
691
 
709
  msgid "PAGE BLOCKED"
710
  msgstr ""
711
 
712
+ #: includes/functions.php:254
713
  msgid "%d of %d names shown"
714
  msgstr ""
715
 
716
  #. translators: %s: name filter
717
+ #: includes/functions.php:273
718
  msgid "No name matches filter"
719
  msgstr ""
720
 
721
+ #: includes/functions.php:329 settings.php:174
722
  msgid "Online documentation"
723
  msgstr ""
724
 
725
+ #: includes/functions.php:329 settings.php:174
726
  msgid "Documentation"
727
  msgstr ""
728
 
729
+ #: includes/functions.php:342 settings.php:187
730
  msgid "Blocks"
731
  msgstr ""
732
 
733
  #. translators: %s: Ad Inserter Pro
734
+ #: includes/functions.php:365
735
  msgid ""
736
  "Import %s settings when saving - if checked, the encoded settings below will "
737
  "be imported for all blocks and settings"
738
  msgstr ""
739
 
740
+ #: includes/functions.php:365
741
  msgid "Import Settings for"
742
  msgstr ""
743
 
744
+ #: includes/functions.php:369
745
  msgid "Saved settings for"
746
  msgstr ""
747
 
748
+ #: includes/functions.php:388
749
  msgid "License Key"
750
  msgstr ""
751
 
752
+ #: includes/functions.php:391
753
  msgid "License Key for"
754
  msgstr ""
755
 
756
+ #: includes/functions.php:397
757
  msgid "Hide license key"
758
  msgstr ""
759
 
760
+ #: includes/functions.php:397
761
  msgid "Hide key"
762
  msgstr ""
763
 
764
+ #: includes/functions.php:418
765
  msgid "Main content element"
766
  msgstr ""
767
 
768
+ #: includes/functions.php:421
769
  msgid ""
770
  "Main content element (#id or .class) for 'Stick to the content' position. "
771
  "Leave empty unless position is not properly calculated."
772
  msgstr ""
773
 
774
+ #: includes/functions.php:422 settings.php:1194 settings.php:2489
775
  msgid "Open HTML element selector"
776
  msgstr ""
777
 
778
+ #: includes/functions.php:427
779
  msgid "Lazy loading offset"
780
  msgstr ""
781
 
782
+ #: includes/functions.php:430
783
  msgid "Offset of the block from the visible viewport when it should be loaded"
784
  msgstr ""
785
 
786
+ #: includes/functions.php:441
787
  msgid "Export / Import Block Settings"
788
  msgstr ""
789
 
790
+ #: includes/functions.php:456
791
  msgid "Track impressions and clicks for this block"
792
  msgstr ""
793
 
794
+ #: includes/functions.php:456
795
  msgid " - global tracking disabled"
796
  msgstr ""
797
 
798
+ #: includes/functions.php:463
799
+ msgid "Generate PDF report"
800
+ msgstr ""
801
+
802
+ #: includes/functions.php:468 includes/functions.php:469
803
+ msgid "Open public report"
804
+ msgstr ""
805
+
806
+ #: includes/functions.php:470
807
+ msgid "Open public report with controls"
808
  msgstr ""
809
 
810
+ #: includes/functions.php:484
811
  msgid "Toggle Ad Blocking Statistics"
812
  msgstr ""
813
 
814
+ #: includes/functions.php:492 includes/functions.php:2509
815
  msgid "Toggle Statistics"
816
  msgstr ""
817
 
818
  #. translators: %s: Ad Inserter Pro
819
+ #: includes/functions.php:508
820
  msgid "%s license key is not set. Continue?"
821
  msgstr ""
822
 
823
  #. translators: %s: Ad Inserter Pro
824
+ #: includes/functions.php:512
825
  msgid "Invalid %s license key. Continue?"
826
  msgstr ""
827
 
828
  #. translators: %s: Ad Inserter Pro
829
+ #: includes/functions.php:516
830
  msgid "%s license overused. Continue?"
831
  msgstr ""
832
 
833
+ #: includes/functions.php:520 settings.php:1963
834
  msgid "Save Settings"
835
  msgstr ""
836
 
837
+ #: includes/functions.php:580 includes/preview.php:2096
838
  msgid "Horizontal position"
839
  msgstr ""
840
 
841
+ #: includes/functions.php:603
842
  msgid ""
843
  "Horizontal margin from the content or screen edge, empty means default value "
844
  "from CSS"
845
  msgstr ""
846
 
847
+ #: includes/functions.php:611 includes/preview.php:2151
848
  msgid "Vertical position"
849
  msgstr ""
850
 
851
+ #: includes/functions.php:626
852
  msgid ""
853
  "Vertical margin from the top or bottom screen edge, empty means default "
854
  "value from CSS"
855
  msgstr ""
856
 
857
+ #: includes/functions.php:651 includes/preview.php:2202
858
  msgid "Animation"
859
  msgstr ""
860
 
861
+ #: includes/functions.php:669
862
  msgid "Trigger"
863
  msgstr ""
864
 
865
+ #: includes/functions.php:678
866
  msgid ""
867
  "Trigger value: page scroll in %, page scroll in px or element with selector "
868
  "(#id or .class) becomes visible"
869
  msgstr ""
870
 
871
+ #: includes/functions.php:682
872
  msgid "Offset"
873
  msgstr ""
874
 
875
+ #: includes/functions.php:682
876
  msgid "Offset of trigger element"
877
  msgstr ""
878
 
879
+ #: includes/functions.php:686
880
  msgid "Delay"
881
  msgstr ""
882
 
883
+ #: includes/functions.php:686
884
  msgid "Delay animation after trigger condition"
885
  msgstr ""
886
 
887
+ #: includes/functions.php:690
888
  msgid "Trigger once"
889
  msgstr ""
890
 
891
+ #: includes/functions.php:692
892
  msgid "Trigger animation only once"
893
  msgstr ""
894
 
895
+ #: includes/functions.php:731
896
  msgid "Tracking is globally disabled"
897
  msgstr ""
898
 
899
+ #: includes/functions.php:735
900
  msgid "Tracking for this block is disabled"
901
  msgstr ""
902
 
903
+ #: includes/functions.php:745 settings.php:3169 settings.php:3205
904
+ #: settings.php:3248 strings.php:211
905
  msgid "Loading..."
906
  msgstr ""
907
 
908
+ #: includes/functions.php:761
909
  msgid ""
910
  "Clear statistics data for the selected range - clear both dates to delete "
911
  "all data for this block"
912
  msgstr ""
913
 
914
+ #: includes/functions.php:765
915
  msgid "Auto refresh data for the selected range every 60 seconds"
916
  msgstr ""
917
 
918
+ #: includes/functions.php:768 includes/functions.php:4681
919
  msgid "Load data for last month"
920
  msgstr ""
921
 
922
+ #: includes/functions.php:768 includes/functions.php:4681
923
  msgid "Last Month"
924
  msgstr ""
925
 
926
+ #: includes/functions.php:771 includes/functions.php:4684
927
  msgid "Load data for this month"
928
  msgstr ""
929
 
930
+ #: includes/functions.php:771 includes/functions.php:4684
931
  msgid "This Month"
932
  msgstr ""
933
 
934
+ #: includes/functions.php:774 includes/functions.php:4687
935
  msgid "Load data for this year"
936
  msgstr ""
937
 
938
+ #: includes/functions.php:774 includes/functions.php:4687
939
  msgid "This Year"
940
  msgstr ""
941
 
942
+ #: includes/functions.php:777 includes/functions.php:4690
943
  msgid "Load data for the last 15 days"
944
  msgstr ""
945
 
946
+ #: includes/functions.php:780 includes/functions.php:4693
947
  msgid "Load data for the last 30 days"
948
  msgstr ""
949
 
950
+ #: includes/functions.php:783 includes/functions.php:4696
951
  msgid "Load data for the last 90 days"
952
  msgstr ""
953
 
954
+ #: includes/functions.php:786 includes/functions.php:4699
955
  msgid "Load data for the last 180 days"
956
  msgstr ""
957
 
958
+ #: includes/functions.php:789 includes/functions.php:4702
959
  msgid "Load data for the last 365 days"
960
  msgstr ""
961
 
962
+ #: includes/functions.php:799 includes/functions.php:4712
963
  msgid "Load data for the selected range"
964
  msgstr ""
965
 
966
+ #: includes/functions.php:815
967
  msgid ""
968
  "Import settings when saving - if checked, the encoded settings below will be "
969
  "imported for this block"
970
  msgstr ""
971
 
972
+ #: includes/functions.php:815
973
  msgid "Import settings for block"
974
  msgstr ""
975
 
976
+ #: includes/functions.php:819
977
  msgid ""
978
  "Import block name when saving - if checked and 'Import settings for block' "
979
  "is also checked, the name from encoded settings below will be imported for "
980
  "this block"
981
  msgstr ""
982
 
983
+ #: includes/functions.php:819
984
  msgid "Import block name"
985
  msgstr ""
986
 
987
+ #: includes/functions.php:823
988
  msgid "Saved settings for block"
989
  msgstr ""
990
 
991
+ #: includes/functions.php:836
992
  msgid "Export / Import Ad Inserter Pro Settings"
993
  msgstr ""
994
 
995
+ #: includes/functions.php:846
996
  msgid "Are you sure you want to clear all statistics data for all blocks?"
997
  msgstr ""
998
 
999
+ #: includes/functions.php:848
1000
  msgid "Clear All Statistics Data"
1001
  msgstr ""
1002
 
1003
+ #: includes/functions.php:875
1004
  msgid "Toggle country/city editor"
1005
  msgstr ""
1006
 
1007
+ #: includes/functions.php:881
1008
  msgid "IP Addresses"
1009
  msgstr ""
1010
 
1011
+ #: includes/functions.php:884
1012
  msgid "Toggle IP address editor"
1013
  msgstr ""
1014
 
1015
+ #: includes/functions.php:887
1016
  msgid ""
1017
  "Comma separated IP addresses, you can also use partial IP addresses with * "
1018
  "(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
1019
  msgstr ""
1020
 
1021
+ #: includes/functions.php:891
1022
  msgid "Blacklist IP addresses"
1023
  msgstr ""
1024
 
1025
+ #: includes/functions.php:895
1026
  msgid "Whitelist IP addresses"
1027
  msgstr ""
1028
 
1029
+ #: includes/functions.php:906
1030
  msgid "Countries"
1031
  msgstr ""
1032
 
1033
+ #: includes/functions.php:907
1034
  msgid "Cities"
1035
  msgstr ""
1036
 
1037
+ #: includes/functions.php:911 includes/functions.php:2474
1038
  msgid "Toggle country editor"
1039
  msgstr ""
1040
 
1041
+ #: includes/functions.php:914
1042
  msgid "Toggle city editor"
1043
  msgstr ""
1044
 
1045
+ #: includes/functions.php:918 includes/functions.php:2477
1046
  msgid "Comma separated country ISO Alpha-2 codes"
1047
  msgstr ""
1048
 
1049
+ #: includes/functions.php:922
1050
  msgid "Blacklist countries"
1051
  msgstr ""
1052
 
1053
+ #: includes/functions.php:926
1054
  msgid "Whitelist countries"
1055
  msgstr ""
1056
 
1057
+ #: includes/functions.php:1242 includes/functions.php:1477
1058
  msgid "Enter license key"
1059
  msgstr ""
1060
 
1061
  #. translators: %s: Ad Inserter Pro
1062
+ #: includes/functions.php:1248
1063
  msgid ""
1064
  "%s license key is not set. Plugin functionality is limited and updates are "
1065
  "disabled."
1066
  msgstr ""
1067
 
1068
+ #: includes/functions.php:1260 includes/functions.php:1486
1069
  msgid "Check license key"
1070
  msgstr ""
1071
 
1072
  #. translators: %s: Ad Inserter Pro
1073
+ #: includes/functions.php:1266
1074
  msgid "Invalid %s license key."
1075
  msgstr ""
1076
 
1077
  #. translators: %s: Ad Inserter Pro
1078
+ #: includes/functions.php:1275
1079
  msgid "%s license expired. Plugin updates are disabled."
1080
  msgstr ""
1081
 
1082
+ #: includes/functions.php:1276
1083
  msgid "Renew license"
1084
  msgstr ""
1085
 
1086
  #. translators: %s: Ad Inserter Pro
1087
+ #: includes/functions.php:1284
1088
  msgid "%s license overused. Plugin updates are disabled."
1089
  msgstr ""
1090
 
1091
+ #: includes/functions.php:1285
1092
+ msgid "Manage licenses"
1093
+ msgstr ""
1094
+
1095
+ #: includes/functions.php:1285
1096
  msgid "Upgrade license"
1097
  msgstr ""
1098
 
1099
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1100
+ #: includes/functions.php:1479
1101
  msgid ""
1102
  "%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
1103
  "limited and updates are disabled."
1104
  msgstr ""
1105
 
1106
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1107
+ #: includes/functions.php:1488
1108
  msgid "%1$s Warning: %2$s Invalid %3$s license key."
1109
  msgstr ""
1110
 
1111
  #. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
1112
+ #: includes/functions.php:1504
1113
  msgid ""
1114
  "Hey, %1$s license has expired - plugin updates are now disabled. Please "
1115
  "renew the license to enable updates. Check %2$s what you are missing. %3$s"
1116
  msgstr ""
1117
 
1118
  #. translators: 1, 3: HTML tags, 2: percentage
1119
+ #: includes/functions.php:1511
1120
  msgid ""
1121
  "During the license period and 30 days after the license has expired we offer "
1122
  "%1$s %2$s discount on all license renewals and license upgrades. %3$s"
1123
  msgstr ""
1124
 
1125
+ #: includes/functions.php:1538
1126
  msgid "Renew the licence"
1127
  msgstr ""
1128
 
1129
+ #: includes/functions.php:1540
1130
  msgid "Update license status"
1131
  msgstr ""
1132
 
1133
+ #. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
1134
+ #: includes/functions.php:1551
1135
  msgid ""
1136
  "%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
1137
+ "Manage licenses %5$s &mdash; %6$s Upgrade license %7$s"
1138
  msgstr ""
1139
 
1140
  #. Translators: %s: HTML tag
1141
+ #: includes/functions.php:1573
1142
  msgid "Warning: %s MaxMind IP geolocation database not found."
1143
  msgstr ""
1144
 
1145
+ #: includes/functions.php:2111
1146
  msgid "Geolocation"
1147
  msgstr ""
1148
 
1149
+ #: includes/functions.php:2115
1150
  msgid "Exceptions"
1151
  msgstr ""
1152
 
1153
+ #: includes/functions.php:2120
1154
  msgid "Multisite"
1155
  msgstr ""
1156
 
1157
+ #: includes/functions.php:2125
1158
  msgid "Tracking"
1159
  msgstr ""
1160
 
1161
  #. translators: %d: days, hours, minutes
1162
+ #: includes/functions.php:2156
1163
  msgid "Scheduled in %d days %d hours %d minutes"
1164
  msgstr ""
1165
 
1166
  #. translators: %s: HTML dash separator, %d: days, hours, minutes, &mdash; is
1167
  #. HTML code for long dash separator
1168
+ #: includes/functions.php:2165
1169
  msgid "Active %s expires in %d days %d hours %d minutes"
1170
  msgstr ""
1171
 
1172
+ #: includes/functions.php:2169
1173
  msgid "Expired"
1174
  msgstr ""
1175
 
1176
+ #: includes/functions.php:2177 settings.php:1277 settings.php:1292
1177
  #: settings.php:1879
1178
  msgid "and"
1179
  msgstr ""
1180
 
1181
+ #: includes/functions.php:2180
1182
  msgid "fallback"
1183
  msgstr ""
1184
 
1185
+ #: includes/functions.php:2181
1186
  msgid "Block to be used when scheduling expires"
1187
  msgstr ""
1188
 
1189
+ #: includes/functions.php:2206
1190
  msgid "Load in iframe"
1191
  msgstr ""
1192
 
1193
+ #: includes/functions.php:2210 includes/placeholders.php:382
1194
  msgid "Width"
1195
  msgstr ""
1196
 
1197
+ #: includes/functions.php:2211
1198
  msgid "iframe width, empty means full width (100%)"
1199
  msgstr ""
1200
 
1201
+ #: includes/functions.php:2217 includes/placeholders.php:377
1202
  msgid "Height"
1203
  msgstr ""
1204
 
1205
+ #: includes/functions.php:2218
1206
  msgid "iframe height, empty means adjust it to iframe content height"
1207
  msgstr ""
1208
 
1209
+ #: includes/functions.php:2225
1210
  msgid "Ad label in iframe"
1211
  msgstr ""
1212
 
1213
+ #: includes/functions.php:2230
1214
  msgid "Preview iframe code"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions.php:2230 includes/preview.php:1964 settings.php:954
1218
+ #: settings.php:2551
1219
  msgid "Preview"
1220
  msgstr ""
1221
 
1222
+ #: includes/functions.php:2244 includes/functions.php:3784
1223
+ #: includes/functions.php:3847 settings.php:2016
1224
  msgid "Ad Blocking"
1225
  msgstr ""
1226
 
1227
  #. translators: 1, 2 and 3, 4: HTML tags
1228
+ #: includes/functions.php:2253
1229
  msgid ""
1230
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1231
  "for tracking!"
1233
 
1234
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1235
  #. header
1236
+ #: includes/functions.php:2262
1237
  msgid ""
1238
  "%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
1239
  "enabled and automatic insertion %6$s!"
1240
  msgstr ""
1241
 
1242
+ #: includes/functions.php:2280
1243
  msgid "When ad blocking is detected"
1244
  msgstr ""
1245
 
1246
+ #: includes/functions.php:2289
1247
  msgid "replacement"
1248
  msgstr ""
1249
 
1250
+ #: includes/functions.php:2290
1251
  msgid "Block to be shown when ad blocking is detected"
1252
  msgstr ""
1253
 
1254
+ #: includes/functions.php:2291
1255
  msgctxt "replacement"
1256
  msgid "None"
1257
  msgstr ""
1258
 
1259
+ #: includes/functions.php:2308
1260
  msgid "Close button"
1261
  msgstr ""
1262
 
1263
+ #: includes/functions.php:2355
1264
  msgid "Lazy loading"
1265
  msgstr ""
1266
 
1267
  #. Translators: %s MaxMind
1268
+ #: includes/functions.php:2409
1269
  msgid "This product includes GeoLite2 data created by %s"
1270
  msgstr ""
1271
 
1272
+ #: includes/functions.php:2420
1273
  msgid "IP geolocation database"
1274
  msgstr ""
1275
 
1276
+ #: includes/functions.php:2423
1277
  msgid "Select IP geolocation database."
1278
  msgstr ""
1279
 
1280
+ #: includes/functions.php:2434
1281
  msgid "Automatic database updates"
1282
  msgstr ""
1283
 
1284
+ #: includes/functions.php:2437
1285
  msgid ""
1286
  "Automatically download and update free GeoLite2 IP geolocation database by "
1287
  "MaxMind"
1288
  msgstr ""
1289
 
1290
+ #: includes/functions.php:2445
1291
  msgid "Database"
1292
  msgstr ""
1293
 
1294
+ #: includes/functions.php:2448
1295
  msgid ""
1296
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1297
  "file"
1298
  msgstr ""
1299
 
1300
  #. translators: %d: group number
1301
+ #: includes/functions.php:2466
1302
  msgid "Group %d"
1303
  msgstr ""
1304
 
1305
+ #: includes/functions.php:2472
1306
  msgid "countries"
1307
  msgstr ""
1308
 
1309
+ #: includes/functions.php:2517
1310
  msgid "Enable tracking"
1311
  msgstr ""
1312
 
1313
+ #: includes/functions.php:2524
1314
+ msgid "Generate report"
1315
+ msgstr ""
1316
+
1317
+ #: includes/functions.php:2532
1318
  msgid "Impression and Click Tracking"
1319
  msgstr ""
1320
 
1321
+ #: includes/functions.php:2548
1322
  msgid "Internal"
1323
  msgstr ""
1324
 
1325
+ #: includes/functions.php:2552
1326
  msgid "Track impressions and clicks with internal tracking and statistics"
1327
  msgstr ""
1328
 
1329
+ #: includes/functions.php:2557
1330
  msgid "External"
1331
  msgstr ""
1332
 
1333
+ #: includes/functions.php:2561
1334
  msgid ""
1335
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1336
  "code installed)"
1337
  msgstr ""
1338
 
1339
+ #: includes/functions.php:2566
1340
  msgid "Track Pageviews"
1341
  msgstr ""
1342
 
1343
+ #: includes/functions.php:2572
1344
  msgid "Track Pageviews by Device (as configured for viewports)"
1345
  msgstr ""
1346
 
1347
+ #: includes/functions.php:2582
1348
  msgid "Track for Logged in Users"
1349
  msgstr ""
1350
 
1351
+ #: includes/functions.php:2588
1352
  msgid "Track impressions and clicks from logged in users"
1353
  msgstr ""
1354
 
1355
+ #: includes/functions.php:2598
1356
  msgid "Click Detection"
1357
  msgstr ""
1358
 
1359
+ #: includes/functions.php:2604
1360
  msgid ""
1361
  "Standard method detects clicks only on banners with links, Advanced method "
1362
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1363
  msgstr ""
1364
 
1365
+ #: includes/functions.php:2630
1366
  msgid "Report header image"
1367
  msgstr ""
1368
 
1369
+ #: includes/functions.php:2633
1370
  msgid ""
1371
  "Image or logo to be displayed in the header of the statistins report. "
1372
+ "Aabsolute path starting with '/' or relative path to the image file. Clear "
1373
+ "to reset to default image."
1374
  msgstr ""
1375
 
1376
+ #: includes/functions.php:2634 strings.php:223
1377
  msgid "Select or upload header image"
1378
  msgstr ""
1379
 
1380
+ #: includes/functions.php:2639
1381
  msgid "Report header title"
1382
  msgstr ""
1383
 
1384
+ #: includes/functions.php:2642
1385
  msgid ""
1386
+ "Title to be displayed in the header of the statistics report. Text or HTML "
1387
+ "code, clear to reset to default text."
1388
  msgstr ""
1389
 
1390
+ #: includes/functions.php:2647
1391
  msgid "Report header description"
1392
  msgstr ""
1393
 
1394
+ #: includes/functions.php:2650
1395
  msgid ""
1396
+ "Description to be displayed in the header of the statistics report. Text or "
1397
+ "HTML code, clear to reset to default text."
1398
+ msgstr ""
1399
+
1400
+ #: includes/functions.php:2655
1401
+ msgid "Report footer"
1402
+ msgstr ""
1403
+
1404
+ #: includes/functions.php:2658
1405
+ msgid ""
1406
+ "Text to be displayed in the footer of the statistics report. Clear to reset "
1407
+ "to default text."
1408
+ msgstr ""
1409
+
1410
+ #: includes/functions.php:2663
1411
+ msgid "Public report key"
1412
+ msgstr ""
1413
+
1414
+ #: includes/functions.php:2666
1415
+ msgid "String to generate unique report IDs. Clear to reset to default value."
1416
  msgstr ""
1417
 
1418
+ #: includes/functions.php:2698
1419
  msgid "Are you sure you want to clear all exceptions for block"
1420
  msgstr ""
1421
 
1422
+ #: includes/functions.php:2699 settings.php:1041
1423
  msgid "Clear all exceptions for block"
1424
  msgstr ""
1425
 
1426
+ #: includes/functions.php:2706
1427
  msgid "Are you sure you want to clear all exceptions?"
1428
  msgstr ""
1429
 
1430
+ #: includes/functions.php:2706
1431
  msgid "Clear all exceptions for all blocks"
1432
  msgstr ""
1433
 
1434
+ #: includes/functions.php:2711 settings.php:3407 settings.php:3745
1435
  msgid "Type"
1436
  msgstr ""
1437
 
1438
+ #: includes/functions.php:2729
1439
  msgid "View"
1440
  msgstr ""
1441
 
1442
+ #: includes/functions.php:2730 includes/placeholders.php:346
1443
  #: includes/preview.php:2271 settings.php:1180
1444
  msgid "Edit"
1445
  msgstr ""
1446
 
1447
+ #: includes/functions.php:2760
1448
  msgid "Are you sure you want to clear all exceptions for"
1449
  msgstr ""
1450
 
1451
+ #: includes/functions.php:2761
1452
  msgid "Clear all exceptions for"
1453
  msgstr ""
1454
 
1455
+ #: includes/functions.php:2774
1456
  msgid "No exceptions"
1457
  msgstr ""
1458
 
1459
  #. translators: %s: Ad Inserter Pro
1460
+ #: includes/functions.php:2785
1461
  msgid "%s options for network blogs"
1462
  msgstr ""
1463
 
1464
  #. translators: %s: Ad Inserter Pro
1465
+ #: includes/functions.php:2790
1466
  msgid "Enable %s widgets for sub-sites"
1467
  msgstr ""
1468
 
1469
+ #: includes/functions.php:2790
1470
  msgid "Widgets"
1471
  msgstr ""
1472
 
1473
+ #: includes/functions.php:2795
1474
  msgid "Enable PHP code processing for sub-sites"
1475
  msgstr ""
1476
 
1477
+ #: includes/functions.php:2795
1478
  msgid "PHP Processing"
1479
  msgstr ""
1480
 
1481
  #. translators: %s: Ad Inserter Pro
1482
+ #: includes/functions.php:2800
1483
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1484
  msgstr ""
1485
 
1486
+ #: includes/functions.php:2800
1487
  msgid "Post/Page exceptions"
1488
  msgstr ""
1489
 
1490
  #. translators: %s: Ad Inserter Pro
1491
+ #: includes/functions.php:2805
1492
  msgid "Enable %s settings page for sub-sites"
1493
  msgstr ""
1494
 
1495
+ #: includes/functions.php:2805
1496
  msgid "Settings page"
1497
  msgstr ""
1498
 
1499
  #. translators: %s: Ad Inserter Pro
1500
+ #: includes/functions.php:2810
1501
  msgid "Enable %s settings of main site to be used for all blogs"
1502
  msgstr ""
1503
 
1504
+ #: includes/functions.php:2810
1505
  msgid "Main site settings used for all blogs"
1506
  msgstr ""
1507
 
1508
+ #: includes/functions.php:2821 settings.php:2438
1509
  msgid "Ad Blocking Detection"
1510
  msgstr ""
1511
 
1512
+ #: includes/functions.php:2827
1513
  msgid ""
1514
  "Standard method is reliable but should be used only if Advanced method does "
1515
  "not work. Advanced method recreates files used for detection with random "
1517
  "publicly accessible"
1518
  msgstr ""
1519
 
1520
+ #: includes/functions.php:3447 includes/functions.php:3537
1521
+ #: includes/functions.php:3557
1522
  msgid "AD BLOCKING"
1523
  msgstr ""
1524
 
1525
+ #: includes/functions.php:3448 includes/functions.php:3488
1526
+ #: includes/functions.php:3531 includes/functions.php:3558
1527
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1528
  msgstr ""
1529
 
1530
+ #: includes/functions.php:3451 includes/functions.php:3530
1531
+ #: includes/functions.php:3564
1532
  msgid "NO AD BLOCKING"
1533
  msgstr ""
1534
 
1535
+ #: includes/functions.php:3487 includes/functions.php:3494
1536
  msgid "AD BLOCKING REPLACEMENT"
1537
  msgstr ""
1538
 
1539
+ #: includes/functions.php:3637 includes/functions.php:3846
1540
  msgid "Pageviews"
1541
  msgstr ""
1542
 
1543
+ #: includes/functions.php:3783
1544
  msgctxt "Version"
1545
  msgid "Unknown"
1546
  msgstr ""
1547
 
1548
+ #: includes/functions.php:3783
1549
  msgctxt "Times"
1550
  msgid "DISPLAYED"
1551
  msgstr ""
1552
 
1553
+ #: includes/functions.php:3783
1554
  msgid "No version"
1555
  msgstr ""
1556
 
1557
+ #: includes/functions.php:3784
1558
  msgctxt "Times"
1559
  msgid "BLOCKED"
1560
  msgstr ""
1561
 
1562
+ #: includes/functions.php:3846
1563
  msgid "Impressions"
1564
  msgstr ""
1565
 
1566
+ #: includes/functions.php:3847 includes/functions.php:3848
1567
+ #: includes/functions.php:3909
1568
  msgid "Clicks"
1569
  msgstr ""
1570
 
1571
+ #: includes/functions.php:3848
1572
  msgid "events"
1573
  msgstr ""
1574
 
1575
+ #: includes/functions.php:3849
1576
  msgid "Ad Blocking Share"
1577
  msgstr ""
1578
 
1579
  #. translators: CTR as Click Through Rate
1580
+ #: includes/functions.php:3849 includes/functions.php:3915
1581
  msgid "CTR"
1582
  msgstr ""
1583
 
1584
+ #: includes/functions.php:3997
1585
  msgid "pageviews"
1586
  msgid_plural "pageviews"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
+ #: includes/functions.php:3997
1591
  msgid "impressions"
1592
  msgid_plural "impressions"
1593
  msgstr[0] ""
1594
  msgstr[1] ""
1595
 
1596
+ #: includes/functions.php:4001
1597
  msgid "event"
1598
  msgid_plural "events"
1599
  msgstr[0] ""
1600
  msgstr[1] ""
1601
 
1602
+ #: includes/functions.php:4001
1603
  msgid "click"
1604
  msgid_plural "clicks"
1605
  msgstr[0] ""
1606
  msgstr[1] ""
1607
 
1608
+ #: includes/functions.php:4096
1609
  msgctxt "Pageviews / Impressions"
1610
  msgid "Average"
1611
  msgstr ""
1612
 
1613
+ #: includes/functions.php:4117
1614
  msgctxt "Ad Blocking / Clicks"
1615
  msgid "Average"
1616
  msgstr ""
1617
 
1618
+ #: includes/functions.php:4141
1619
  msgctxt "Ad Blocking Share / CTR"
1620
  msgid "Average"
1621
  msgstr ""
1622
 
1623
  #. Translators: %s: Ad Inserter Pro
1624
+ #: includes/functions.php:4323
1625
  msgid "%s Report"
1626
  msgstr ""
1627
 
1628
+ #: includes/functions.php:4414 includes/functions.php:4626 strings.php:178
1629
+ msgid "Ad Inserter Pro Report"
1630
  msgstr ""
1631
 
1632
  #: includes/placeholders.php:19
1653
  msgid "Placeholder"
1654
  msgstr ""
1655
 
1656
+ #: includes/placeholders.php:356 settings.php:808 settings.php:3746
1657
  msgid "Size"
1658
  msgstr ""
1659
 
1761
  msgid "Ad Blocking Detected Message Preview"
1762
  msgstr ""
1763
 
1764
+ #: includes/preview-adb.php:348 settings.php:2564
1765
  msgid "Message CSS"
1766
  msgstr ""
1767
 
1768
+ #: includes/preview-adb.php:353 settings.php:2572
1769
  msgid "Overlay CSS"
1770
  msgstr ""
1771
 
1806
  msgstr ""
1807
 
1808
  #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1809
+ #: settings.php:3672
1810
  msgid "Alignment"
1811
  msgstr ""
1812
 
2012
  msgid "General Settings"
2013
  msgstr ""
2014
 
2015
+ #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2544
2016
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2017
  msgstr ""
2018
 
2048
  msgid "Clear block"
2049
  msgstr ""
2050
 
2051
+ #: settings.php:658 settings.php:3640
2052
  msgid "Copy block"
2053
  msgstr ""
2054
 
2212
  "editor. Leave blank for no individual post exceptions."
2213
  msgstr ""
2214
 
2215
+ #: settings.php:978 settings.php:3056
2216
  msgid "Posts"
2217
  msgstr ""
2218
 
2223
  "theme)"
2224
  msgstr ""
2225
 
2226
+ #: settings.php:983 settings.php:3058
2227
  msgid "Homepage"
2228
  msgstr ""
2229
 
2231
  msgid "Enable insertion on category blog pages (including sub-pages)"
2232
  msgstr ""
2233
 
2234
+ #: settings.php:988 settings.php:3059
2235
  msgid "Category pages"
2236
  msgstr ""
2237
 
2249
  "page editor. Leave blank for no individual page exceptions."
2250
  msgstr ""
2251
 
2252
+ #: settings.php:1006 settings.php:3057
2253
  msgid "Static pages"
2254
  msgstr ""
2255
 
2257
  msgid "Enable insertion on search blog pages"
2258
  msgstr ""
2259
 
2260
+ #: settings.php:1011 settings.php:3061
2261
  msgid "Search pages"
2262
  msgstr ""
2263
 
2358
  msgid "HTML element selector or comma separated list of selectors"
2359
  msgstr ""
2360
 
2361
+ #: settings.php:1209 settings.php:2449
2362
  msgid "Action"
2363
  msgstr ""
2364
 
2625
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2626
  msgstr ""
2627
 
2628
+ #: settings.php:1636 settings.php:3674
2629
  msgid "Shortcode"
2630
  msgstr ""
2631
 
2685
  msgid "Display"
2686
  msgstr ""
2687
 
2688
+ #: settings.php:1760 settings.php:2009
2689
  msgid "General"
2690
  msgstr ""
2691
 
2746
  "tab General)"
2747
  msgstr ""
2748
 
2749
+ #: settings.php:1805 settings.php:2178
2750
  msgid "Max blocks per page"
2751
  msgstr ""
2752
 
2818
  msgid "Not available"
2819
  msgstr ""
2820
 
2821
+ #: settings.php:1908 settings.php:2170
2822
  msgid "Ad label"
2823
  msgstr ""
2824
 
2857
  msgid "Edit ads.txt file"
2858
  msgstr ""
2859
 
2860
+ #: settings.php:2010
2861
  msgid "Viewports"
2862
  msgstr ""
2863
 
2864
+ #: settings.php:2011
2865
  msgid "Hooks"
2866
  msgstr ""
2867
 
2868
+ #: settings.php:2012
2869
  msgid "Header"
2870
  msgstr ""
2871
 
2872
+ #: settings.php:2013 strings.php:30
2873
  msgid "Footer"
2874
  msgstr ""
2875
 
2876
+ #: settings.php:2018
2877
  msgid "Debugging"
2878
  msgstr ""
2879
 
2880
+ #: settings.php:2028
2881
  msgid "Plugin priority"
2882
  msgstr ""
2883
 
2884
+ #: settings.php:2036
2885
  msgid "Output buffering"
2886
  msgstr ""
2887
 
2888
+ #: settings.php:2039
2889
  msgid "Needed for position Above header but may not work with all themes"
2890
  msgstr ""
2891
 
2892
+ #: settings.php:2047
2893
  msgid "Syntax highlighting theme"
2894
  msgstr ""
2895
 
2896
+ #: settings.php:2054
2897
  msgctxt "no syntax highlighting themes"
2898
  msgid "None"
2899
  msgstr ""
2900
 
2901
+ #: settings.php:2055
2902
  msgid "No Syntax Highlighting"
2903
  msgstr ""
2904
 
2905
+ #: settings.php:2057
2906
  msgctxt "syntax highlighting themes"
2907
  msgid "Light"
2908
  msgstr ""
2909
 
2910
+ #: settings.php:2072
2911
  msgctxt "syntax highlighting themes"
2912
  msgid "Dark"
2913
  msgstr ""
2914
 
2915
+ #: settings.php:2098
2916
  msgid "Min. user role for ind. exceptions editing"
2917
  msgstr ""
2918
 
2919
+ #: settings.php:2108
2920
  msgid "Disable caching for logged in administrators"
2921
  msgstr ""
2922
 
2923
+ #: settings.php:2111
2924
  msgid ""
2925
  "Enabled means that logged in administrators will see non-cached (live) pages "
2926
  "(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
2927
  msgstr ""
2928
 
2929
+ #: settings.php:2119
2930
  msgid "Sticky widget mode"
2931
  msgstr ""
2932
 
2933
+ #: settings.php:2122
2934
  msgid ""
2935
  "CSS mode is the best approach but may not work with all themes. JavaScript "
2936
  "mode works with most themes but may reload ads on page load."
2937
  msgstr ""
2938
 
2939
+ #: settings.php:2130
2940
  msgid "Sticky widget top margin"
2941
  msgstr ""
2942
 
2943
+ #: settings.php:2138
2944
  msgid "Dynamic blocks"
2945
  msgstr ""
2946
 
2947
+ #: settings.php:2151
2948
  msgid "Functions for paragraph counting"
2949
  msgstr ""
2950
 
2951
+ #: settings.php:2154
2952
  msgid ""
2953
  "Standard PHP functions are faster and work in most cases, use Multibyte "
2954
  "functions if paragraphs are not counted properly on non-english pages."
2955
  msgstr ""
2956
 
2957
+ #: settings.php:2162
2958
  msgid "No paragraph counting inside"
2959
  msgstr ""
2960
 
2961
+ #: settings.php:2173
2962
  msgid "Label text or HTML code"
2963
  msgstr ""
2964
 
2965
+ #: settings.php:2181
2966
  msgid ""
2967
  "Maximum number of inserted blocks per page. You need to enable Max page "
2968
  "insertions (button Misc / tab Insertion) to count block for this limit."
2969
  msgstr ""
2970
 
2971
+ #: settings.php:2195
2972
  msgid "Plugin usage tracking"
2973
  msgstr ""
2974
 
2975
  #. translators: %s: Ad Inserter
2976
+ #: settings.php:2198
2977
  msgid ""
2978
  "Enable tracking of %s usage and help us to make improvements to the plugin. "
2979
  "Only information regarding the WordPress environment and %s usage is "
2980
  "recorded (once per month and on events like plugin activation/deactivation)."
2981
  msgstr ""
2982
 
2983
+ #: settings.php:2216
2984
  msgid "CSS class name for the wrapping div"
2985
  msgstr ""
2986
 
2987
+ #: settings.php:2216
2988
  msgid "Block class name"
2989
  msgstr ""
2990
 
2991
+ #: settings.php:2220
2992
  msgid "Include general plugin block class"
2993
  msgstr ""
2994
 
2995
+ #: settings.php:2220
2996
  msgid "Block class"
2997
  msgstr ""
2998
 
2999
+ #: settings.php:2225
3000
  msgid "Include block number class"
3001
  msgstr ""
3002
 
3003
+ #: settings.php:2225
3004
  msgid "Block number class"
3005
  msgstr ""
3006
 
3007
+ #: settings.php:2230
3008
  msgid ""
3009
  "Instead of alignment classes generate inline alignment styles for blocks"
3010
  msgstr ""
3011
 
3012
+ #: settings.php:2230
3013
  msgid "Inline styles"
3014
  msgstr ""
3015
 
3016
+ #: settings.php:2236
3017
  msgid "Preview of the block wrapping code"
3018
  msgstr ""
3019
 
3020
+ #: settings.php:2237
3021
  msgid "Wrapping div"
3022
  msgstr ""
3023
 
3024
+ #: settings.php:2238 settings.php:2655
3025
  msgid "BLOCK CODE"
3026
  msgstr ""
3027
 
3028
+ #: settings.php:2246
3029
  msgid "Viewport Settings used for client-side device detection"
3030
  msgstr ""
3031
 
3032
  #. Translators: %d: viewport number
3033
+ #: settings.php:2254
3034
  msgid "Viewport %d name"
3035
  msgstr ""
3036
 
3037
+ #: settings.php:2257
3038
  msgid "min width"
3039
  msgstr ""
3040
 
3041
+ #: settings.php:2268
3042
  msgid "Custom Hooks"
3043
  msgstr ""
3044
 
3045
+ #: settings.php:2280 settings.php:2283
3046
  msgid "Enable hook"
3047
  msgstr ""
3048
 
3049
  #. translators: %d: hook number
3050
+ #: settings.php:2283
3051
  msgid "Hook %d name"
3052
  msgstr ""
3053
 
3054
+ #: settings.php:2286
3055
  msgid "Hook name for automatic insertion selection"
3056
  msgstr ""
3057
 
3058
+ #: settings.php:2289
3059
  msgid "action"
3060
  msgstr ""
3061
 
3062
+ #: settings.php:2292
3063
  msgid "Action name as used in the do_action () function"
3064
  msgstr ""
3065
 
3066
+ #: settings.php:2295
3067
  msgid "priority"
3068
  msgstr ""
3069
 
3070
+ #: settings.php:2298
3071
  msgid "Priority for the hook (default is 10)"
3072
  msgstr ""
3073
 
3074
+ #: settings.php:2319
3075
  msgid "Enable insertion of this code into HTML page header"
3076
  msgstr ""
3077
 
3078
+ #: settings.php:2323 settings.php:2381 settings.php:2549
3079
  msgid "Process PHP code"
3080
  msgstr ""
3081
 
3082
+ #: settings.php:2327
3083
  msgid "HTML Page Header Code"
3084
  msgstr ""
3085
 
3086
+ #: settings.php:2335
3087
  msgid "Code in the %s section of the HTML page"
3088
  msgstr ""
3089
 
3090
+ #: settings.php:2336
3091
+ msgctxt "code in the header"
3092
+ msgid "NOT ENABLED"
3093
  msgstr ""
3094
 
3095
+ #: settings.php:2349 settings.php:2407
3096
  msgid "Use server-side detection to insert code only for"
3097
  msgstr ""
3098
 
3099
+ #: settings.php:2362
3100
  msgid ""
3101
  "Enable insertion of this code into HTML page header on page for Error 404: "
3102
  "Page not found"
3103
  msgstr ""
3104
 
3105
+ #: settings.php:2362 settings.php:2420
3106
  msgid "Insert on Error 404 page"
3107
  msgstr ""
3108
 
3109
+ #: settings.php:2377
3110
  msgid "Enable insertion of this code into HTML page footer"
3111
  msgstr ""
3112
 
3113
+ #: settings.php:2385
3114
  msgid "HTML Page Footer Code"
3115
  msgstr ""
3116
 
3117
  #. translators: %s: HTML tags
3118
+ #: settings.php:2393
3119
  msgid "Code before the %s tag of the the HTML page"
3120
  msgstr ""
3121
 
3122
+ #: settings.php:2394
3123
+ msgctxt "code in the footer"
3124
+ msgid "NOT ENABLED"
3125
+ msgstr ""
3126
+
3127
+ #: settings.php:2420
3128
  msgid ""
3129
  "Enable insertion of this code into HTML page footer on page for Error 404: "
3130
  "Page not found"
3131
  msgstr ""
3132
 
3133
+ #: settings.php:2434
3134
  msgid "Enable detection of ad blocking"
3135
  msgstr ""
3136
 
3137
+ #: settings.php:2439
3138
+ msgctxt "ad blocking detection"
3139
+ msgid "NOT ENABLED"
3140
+ msgstr ""
3141
+
3142
+ #: settings.php:2452
3143
  msgid "Global action when ad blocking is detected"
3144
  msgstr ""
3145
 
3146
  #: settings.php:2458
3147
+ msgid "No action for"
3148
+ msgstr ""
3149
+
3150
+ #: settings.php:2459
3151
+ msgid "Exceptions for global action when ad blocking is detected."
3152
+ msgstr ""
3153
+
3154
+ #: settings.php:2469
3155
  msgid "Delay Action"
3156
  msgstr ""
3157
 
3158
+ #: settings.php:2472
3159
  msgid ""
3160
  "Number of page views to delay action when ad blocking is detected. Leave "
3161
  "empty for no delay (action fires on first page view). Sets cookie."
3162
  msgstr ""
3163
 
3164
+ #: settings.php:2472
3165
  msgctxt "Delay Action for x "
3166
  msgid "page views"
3167
  msgstr ""
3168
 
3169
+ #: settings.php:2477
3170
  msgid "No Action Period"
3171
  msgstr ""
3172
 
3173
+ #: settings.php:2480
3174
  msgid ""
3175
  "Number of days to supress action when ad blocking is detected. Leave empty "
3176
  "for no no-action period (action fires always after defined page view delay). "
3177
  "Sets cookie."
3178
  msgstr ""
3179
 
3180
+ #: settings.php:2480
3181
  msgctxt "no action period"
3182
  msgid "days"
3183
  msgstr ""
3184
 
3185
+ #: settings.php:2485
3186
  msgid "Custom Selectors"
3187
  msgstr ""
3188
 
3189
+ #: settings.php:2488
3190
  msgid ""
3191
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3192
  "blocking detection. Invisible element or element with zero height means ad "
3193
  "blocking is present."
3194
  msgstr ""
3195
 
3196
+ #: settings.php:2500
3197
  msgid "Redirection Page"
3198
  msgstr ""
3199
 
3200
+ #: settings.php:2512
3201
  msgid "Custom Url"
3202
  msgstr ""
3203
 
3204
+ #: settings.php:2517
3205
  msgid ""
3206
  "Static page for redirection when ad blocking is detected. For other pages "
3207
  "select Custom url and set it below."
3208
  msgstr ""
3209
 
3210
+ #: settings.php:2526
3211
  msgid "Custom Redirection Url"
3212
  msgstr ""
3213
 
3214
+ #: settings.php:2538
3215
  msgid "Message HTML code"
3216
  msgstr ""
3217
 
3218
+ #: settings.php:2551
3219
  msgid "Preview message when ad blocking is detected"
3220
  msgstr ""
3221
 
3222
+ #: settings.php:2580
3223
  msgid "Prevent visitors from closing the warning message"
3224
  msgstr ""
3225
 
3226
+ #: settings.php:2580
3227
  msgid "Undismissible Message"
3228
  msgstr ""
3229
 
3230
+ #: settings.php:2586
3231
+ msgid "Not undismissible for"
3232
+ msgstr ""
3233
+
3234
+ #: settings.php:2587
3235
+ msgid "Users which can close the warning message."
3236
+ msgstr ""
3237
+
3238
+ #: settings.php:2601
3239
  msgid ""
3240
  "Force showing admin toolbar for administrators when viewing site. Enable "
3241
  "this option when you are logged in as admin and you don't see admin toolbar."
3242
  msgstr ""
3243
 
3244
+ #: settings.php:2609
3245
  msgid "Disable header code (Header tab)"
3246
  msgstr ""
3247
 
3248
+ #: settings.php:2613
3249
  msgid "Disable footer code (Footer tab)"
3250
  msgstr ""
3251
 
3252
  #. translators: %s: Ad Inserter
3253
+ #: settings.php:2617
3254
  msgid "Disable %s JavaScript code"
3255
  msgstr ""
3256
 
3257
  #. translators: %s: Ad Inserter
3258
+ #: settings.php:2621
3259
  msgid "Disable %s CSS code"
3260
  msgstr ""
3261
 
3262
+ #: settings.php:2625
3263
  msgid ""
3264
  "Disable PHP code processing (in all blocks including header and footer code)"
3265
  msgstr ""
3266
 
3267
+ #: settings.php:2629
3268
  msgid "Disable insertion of all blocks"
3269
  msgstr ""
3270
 
3271
+ #: settings.php:2633
3272
  msgid "Disable insertions"
3273
  msgstr ""
3274
 
3275
  #. translators: %s: Ad Inserter
3276
+ #: settings.php:2645
3277
  msgid "%s CSS CODE"
3278
  msgstr ""
3279
 
3280
+ #: settings.php:2648
3281
  msgid "HEADER CODE"
3282
  msgstr ""
3283
 
3284
  #. translators: %s: PHP tags
3285
+ #: settings.php:2654
3286
  msgid "BLOCK PHP CODE"
3287
  msgstr ""
3288
 
3289
  #. translators: %s: Ad Inserter
3290
+ #: settings.php:2660
3291
  msgid "%s JS CODE"
3292
  msgstr ""
3293
 
3294
+ #: settings.php:2663
3295
  msgid "FOOTER CODE"
3296
  msgstr ""
3297
 
3298
+ #: settings.php:2672
3299
  msgid "Force showing admin toolbar when viewing site"
3300
  msgstr ""
3301
 
3302
+ #: settings.php:2679
3303
  msgid "Enable debugging functions in admin toolbar"
3304
  msgstr ""
3305
 
3306
+ #: settings.php:2681
3307
  msgid "Debugging functions in admin toolbar"
3308
  msgstr ""
3309
 
3310
+ #: settings.php:2688
3311
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3312
  msgstr ""
3313
 
3314
+ #: settings.php:2690
3315
  msgid "Debugging functions on mobile screens"
3316
  msgstr ""
3317
 
3318
+ #: settings.php:2697
3319
  msgid ""
3320
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3321
  "tags, processing) by url parameters for non-logged in users. Enable this "
3324
  "administrators debugging is always enabled."
3325
  msgstr ""
3326
 
3327
+ #: settings.php:2699
3328
  msgid "Remote debugging"
3329
  msgstr ""
3330
 
3331
+ #: settings.php:2706
3332
  msgid ""
3333
  "Disable translation to see original texts for the settings and messages in "
3334
  "English"
3335
  msgstr ""
3336
 
3337
+ #: settings.php:2708
3338
  msgid "Disable translation"
3339
  msgstr ""
3340
 
3341
+ #: settings.php:3044
3342
  msgid "Available positions for current theme"
3343
  msgstr ""
3344
 
3345
+ #: settings.php:3045
3346
  msgid "Error checking pages"
3347
  msgstr ""
3348
 
3349
+ #: settings.php:3048
3350
  msgid "Toggle theme checker for available positions for automatic insertion"
3351
  msgstr ""
3352
 
3353
+ #: settings.php:3048
3354
  msgctxt "Button"
3355
  msgid "Check"
3356
  msgstr ""
3357
 
3358
+ #: settings.php:3055
3359
  msgid "Position"
3360
  msgstr ""
3361
 
3362
+ #: settings.php:3060
3363
  msgid "Archive pages"
3364
  msgstr ""
3365
 
3366
+ #: settings.php:3119
3367
  msgid ""
3368
  "Position not available because output buffering (tab [*]) is not enabled"
3369
  msgstr ""
3370
 
3371
+ #: settings.php:3122 strings.php:219
3372
  msgid "Position not checked yet"
3373
  msgstr ""
3374
 
3375
+ #: settings.php:3153
3376
  msgid "Toggle active/all blocks"
3377
  msgstr ""
3378
 
3379
+ #: settings.php:3157 strings.php:206
3380
  msgid "Rearrange block order"
3381
  msgstr ""
3382
 
3383
+ #: settings.php:3162
3384
  msgid "Save new block order"
3385
  msgstr ""
3386
 
3387
+ #: settings.php:3162
3388
  msgid "Save Changes"
3389
  msgstr ""
3390
 
3391
+ #: settings.php:3187
3392
  msgid "Toggle active/all ad units"
3393
  msgstr ""
3394
 
3395
+ #: settings.php:3191
3396
  msgid "Reload AdSense ad units"
3397
  msgstr ""
3398
 
3399
+ #: settings.php:3195
3400
  msgid "Clear authorization to access AdSense account"
3401
  msgstr ""
3402
 
3403
+ #: settings.php:3199 settings.php:3831 settings.php:3898 strings.php:214
3404
  msgid "Google AdSense Homepage"
3405
  msgstr ""
3406
 
3407
+ #: settings.php:3222
3408
  msgid "Reload ads.txt file"
3409
  msgstr ""
3410
 
3411
  #. translators: %s: ads.txt
3412
+ #: settings.php:3226
3413
  msgid "Open %s"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:3230
3417
  msgid "Switch to table view"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:3234
3421
  msgid "Switch to editor"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:3238
3425
  msgid "Save ads.txt file"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:3373 settings.php:3381 strings.php:199
3429
  msgid "Warning"
3430
  msgstr ""
3431
 
3432
+ #: settings.php:3373
3433
  msgid "ads.txt file must be placed on the root domain"
3434
  msgstr ""
3435
 
3436
  #. translators: %s: file path
3437
+ #: settings.php:3374
3438
  msgid "WordPress is installed in %s"
3439
  msgstr ""
3440
 
3441
+ #: settings.php:3375
3442
  msgid "Showing file"
3443
  msgstr ""
3444
 
3445
+ #: settings.php:3381
3446
+ msgid "File %s not found"
3447
+ msgstr ""
3448
+
3449
+ #: settings.php:3388
3450
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3451
  msgstr ""
3452
 
3453
+ #: settings.php:3405
3454
  msgid "Advertising system"
3455
  msgstr ""
3456
 
3457
+ #: settings.php:3406
3458
  msgid "Account ID"
3459
  msgstr ""
3460
 
3461
+ #: settings.php:3408
3462
  msgid "Certification authority ID"
3463
  msgstr ""
3464
 
3465
+ #: settings.php:3423
3466
  msgid "Account ID found in block and present in ads.txt"
3467
  msgstr ""
3468
 
3469
+ #: settings.php:3427
3470
  msgid "Account ID found in block but not present in ads.txt"
3471
  msgstr ""
3472
 
3473
+ #: settings.php:3643
3474
  msgid "Preview block"
3475
  msgstr ""
3476
 
3477
+ #: settings.php:3652
3478
  msgid "Insertion disabled"
3479
  msgstr ""
3480
 
3481
+ #: settings.php:3676
3482
  msgid "Widget positions"
3483
  msgstr ""
3484
 
3485
+ #: settings.php:3742
3486
  msgid "Ad unit"
3487
  msgstr ""
3488
 
3489
+ #: settings.php:3744
3490
  msgid "Slot ID"
3491
  msgstr ""
3492
 
3493
+ #: settings.php:3770
3494
  msgid "Copy AdSense code"
3495
  msgstr ""
3496
 
3497
+ #: settings.php:3773
3498
  msgid "Preview AdSense ad"
3499
  msgstr ""
3500
 
3501
+ #: settings.php:3776
3502
  msgid "Get AdSense code"
3503
  msgstr ""
3504
 
3505
  #. translators: %s: HTML tags
3506
+ #: settings.php:3808
3507
  msgid ""
3508
  "Please %s clear authorization %s with the button %s above and once again "
3509
  "authorize access to your AdSense account."
3510
  msgstr ""
3511
 
3512
+ #: settings.php:3827
3513
  msgid "AdSense Integration"
3514
  msgstr ""
3515
 
3516
+ #: settings.php:3829
3517
  msgid "AdSense Integration - Step 2"
3518
  msgstr ""
3519
 
3520
  #. translators: %s: HTML tags
3521
+ #: settings.php:3835
3522
  msgid ""
3523
  "Authorize %s to access your AdSense account. Click on the %s Get "
3524
  "Authorization Code %s button to open a new window where you can allow "
3527
  msgstr ""
3528
 
3529
  #. translators: %s: HTML tags
3530
+ #: settings.php:3842
3531
  msgid ""
3532
  "If you get error, can't access ad units or would like to use own Google API "
3533
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3535
  msgstr ""
3536
 
3537
  #. translators: %s: HTML tags
3538
+ #: settings.php:3844
3539
  msgid ""
3540
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3541
  "Authorization Code %s button to open a new window where you can allow "
3544
  msgstr ""
3545
 
3546
  #. translators: %s: HTML tags
3547
+ #: settings.php:3851
3548
  msgid ""
3549
  "If you get error %s invalid client %s click on the button %s Clear and "
3550
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3551
  msgstr ""
3552
 
3553
+ #: settings.php:3862
3554
  msgid "Get Authorization Code"
3555
  msgstr ""
3556
 
3557
+ #: settings.php:3865
3558
  msgid "Enter Authorization Code"
3559
  msgstr ""
3560
 
3561
+ #: settings.php:3875
3562
  msgid "Use own API IDs"
3563
  msgstr ""
3564
 
3565
+ #: settings.php:3877
3566
  msgid "Clear and return to Step 1"
3567
  msgstr ""
3568
 
3569
+ #: settings.php:3881
3570
  msgid "Authorize"
3571
  msgstr ""
3572
 
3573
+ #: settings.php:3897
3574
  msgid "AdSense Integration - Step 1"
3575
  msgstr ""
3576
 
3577
  #. translators: %s: Ad Inserter
3578
+ #: settings.php:3901
3579
  msgid ""
3580
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3581
  "To do this you need to authorize %s to access your AdSense account. The "
3584
  msgstr ""
3585
 
3586
  #. translators: %s: HTML tags
3587
+ #: settings.php:3910
3588
  msgid "Go to %s Google APIs and Services console %s"
3589
  msgstr ""
3590
 
3591
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3592
+ #: settings.php:3911
3593
  msgid ""
3594
  "Create %1$s project - if the project and IDs are already created click on "
3595
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3596
  msgstr ""
3597
 
3598
  #. translators: %s: HTML tags
3599
+ #: settings.php:3912
3600
  msgid ""
3601
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3602
  "create a new project"
3603
  msgstr ""
3604
 
3605
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3606
+ #: settings.php:3913
3607
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3608
  msgstr ""
3609
 
3610
  #. translators: %s: HTML tags
3611
+ #: settings.php:3914
3612
  msgid ""
3613
  "Click on project selection, wait for the project to be created and then and "
3614
  "select %s as the current project"
3615
  msgstr ""
3616
 
3617
  #. translators: %s: HTML tags
3618
+ #: settings.php:3915
3619
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3620
  msgstr ""
3621
 
3622
  #. translators: %s: HTML tags
3623
+ #: settings.php:3916
3624
  msgid "Search for adsense and enable %s"
3625
  msgstr ""
3626
 
3627
  #. translators: %s: HTML tags
3628
+ #: settings.php:3917
3629
  msgid "Click on %s CREATE CREDENTIALS %s"
3630
  msgstr ""
3631
 
3632
  #. translators: %s: HTML tags
3633
+ #: settings.php:3918
3634
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3635
  msgstr ""
3636
 
3637
  #. translators: %s: HTML tags
3638
+ #: settings.php:3919
3639
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3640
  msgstr ""
3641
 
3642
  #. translators: %s: HTML tags
3643
+ #: settings.php:3920
3644
  msgid "Click on %s What credentials do I need? %s"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: HTML tags
3648
+ #: settings.php:3921
3649
  msgid ""
3650
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3651
  "Ad Inserter client %s"
3652
  msgstr ""
3653
 
3654
  #. translators: %s: HTML tags
3655
+ #: settings.php:3922
3656
  msgid ""
3657
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3658
  "enter %s"
3659
  msgstr ""
3660
 
3661
  #. translators: %s: HTML tags
3662
+ #: settings.php:3923
3663
  msgid "Click on %s Continue %s"
3664
  msgstr ""
3665
 
3666
  #. translators: %s: HTML tags
3667
+ #: settings.php:3924
3668
  msgid "Click on %s Done %s"
3669
  msgstr ""
3670
 
3671
  #. translators: %s: HTML tags
3672
+ #: settings.php:3925
3673
  msgid ""
3674
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3675
  "secret %s"
3676
  msgstr ""
3677
 
3678
+ #: settings.php:3926
3679
  msgid "Copy them to the appropriate fields below"
3680
  msgstr ""
3681
 
3682
+ #: settings.php:3932
3683
  msgid "Client ID"
3684
  msgstr ""
3685
 
3686
+ #: settings.php:3935
3687
  msgid "Enter Client ID"
3688
  msgstr ""
3689
 
3690
+ #: settings.php:3940
3691
  msgid "Client secret"
3692
  msgstr ""
3693
 
3694
+ #: settings.php:3943
3695
  msgid "Enter Client secret"
3696
  msgstr ""
3697
 
3698
+ #: settings.php:3953
3699
  msgid "Use default API IDs"
3700
  msgstr ""
3701
 
3702
+ #: settings.php:3958
3703
  msgid "Save"
3704
  msgstr ""
3705
 
3706
+ #: settings.php:4234 settings.php:4247 settings.php:4260 settings.php:4275
3707
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3708
  msgstr ""
3709
 
3710
+ #: settings.php:4239 settings.php:4252 settings.php:4265 settings.php:4280
3711
+ #: settings.php:4451 settings.php:4455 settings.php:4457 settings.php:4473
3712
+ #: settings.php:4485 settings.php:4488 settings.php:4494 settings.php:4506
3713
  msgid "Looking for AdSense alternative?"
3714
  msgstr ""
3715
 
3716
+ #: settings.php:4291
3717
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3718
  msgstr ""
3719
 
3720
+ #: settings.php:4296 settings.php:4453 settings.php:4465 settings.php:4491
3721
+ #: settings.php:4514
3722
  msgid "Use Infolinks ads with Adsense to earn more"
3723
  msgstr ""
3724
 
3725
+ #: settings.php:4315 settings.php:4353
3726
  msgid "Support plugin development"
3727
  msgstr ""
3728
 
3729
+ #: settings.php:4316 settings.php:4354
3730
  msgid ""
3731
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3732
  "reviewing the plugin on WordPres"
3733
  msgstr ""
3734
 
3735
+ #: settings.php:4316
3736
  msgctxt "Review ad Inserter"
3737
  msgid "Review"
3738
  msgstr ""
3739
 
3740
+ #: settings.php:4317
3741
  msgid ""
3742
  "Support free Ad Inserter development. If you are making money with Ad "
3743
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3744
  "you!"
3745
  msgstr ""
3746
 
3747
+ #: settings.php:4317
3748
  msgid "Donate"
3749
  msgstr ""
3750
 
3751
+ #: settings.php:4324 settings.php:4369
3752
  msgid "Average rating of the plugin - Thank you!"
3753
  msgstr ""
3754
 
3755
  #. translators: %s: Ad Inserter, HTML tags
3756
+ #: settings.php:4335
3757
  msgid ""
3758
  "You've been using %s for a while now, and I hope you're happy with it. "
3759
  "Positive %s reviews %s are a great way to show your appreciation for my "
3762
  "your website. %s Thank you!"
3763
  msgstr ""
3764
 
3765
+ #: settings.php:4354
3766
  msgid "Review"
3767
  msgstr ""
3768
 
3769
+ #: settings.php:4358
3770
  msgid "Ad Inserter on Twitter"
3771
  msgstr ""
3772
 
3773
+ #: settings.php:4359
3774
  msgid "Ad Inserter on Facebook"
3775
  msgstr ""
3776
 
3777
+ #: settings.php:4362
3778
  msgid "Follow Ad Inserter"
3779
  msgstr ""
3780
 
3781
  #. translators: %s: HTML tags
3782
+ #: settings.php:4389
3783
  msgid ""
3784
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3785
  "and %s Common Settings %s pages"
3786
  msgstr ""
3787
 
3788
  #. translators: %s: HTML tags
3789
+ #: settings.php:4401
3790
  msgid ""
3791
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3792
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3793
  msgstr ""
3794
 
3795
  #. translators: %s: HTML tags
3796
+ #: settings.php:4420
3797
  msgid ""
3798
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3799
  "diagnose and fix the problem."
3800
  msgstr ""
3801
 
3802
  #. translators: %s: HTML tags
3803
+ #: settings.php:4424
3804
  msgid ""
3805
  "If you need any kind of help or support, please do not hesitate to open a "
3806
  "thread on the %s support forum. %s"
3807
  msgstr ""
3808
 
3809
+ #: settings.php:4469 settings.php:4510
3810
  msgid "A/B testing - Track ad impressions and clicks"
3811
  msgstr ""
3812
 
3813
+ #: settings.php:4477 settings.php:4502
3814
  msgid "Code preview with visual CSS editor"
3815
  msgstr ""
3816
 
3817
+ #: settings.php:4522
3818
  msgid "Looking for Pro Ad Management plugin?"
3819
  msgstr ""
3820
 
3821
+ #: settings.php:4523
3822
  msgid "To Optimally Monetize your WordPress website?"
3823
  msgstr ""
3824
 
3825
  #. translators: %s HTML tags
3826
+ #: settings.php:4526
3827
  msgid "%s AdSense Integration %s"
3828
  msgstr ""
3829
 
3830
  #. translators: %s HTML tags
3831
+ #: settings.php:4527
3832
  msgid "Syntax highlighting %s editor %s"
3833
  msgstr ""
3834
 
3835
  #. translators: %s HTML tags
3836
+ #: settings.php:4528
3837
  msgid "%s Code preview %s with visual CSS editor"
3838
  msgstr ""
3839
 
3840
  #. translators: %s HTML tags
3841
+ #: settings.php:4529
3842
  msgid "Simple user interface - all settings on a single page"
3843
  msgstr ""
3844
 
3845
  #. translators: %s HTML tags
3846
+ #: settings.php:4530
3847
  msgid ""
3848
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3849
  "image / excerpt"
3850
  msgstr ""
3851
 
3852
  #. translators: %s HTML tags
3853
+ #: settings.php:4531
3854
  msgid "%s Automatic insertion %s between posts on blog pages"
3855
  msgstr ""
3856
 
3857
  #. translators: %s HTML tags
3858
+ #: settings.php:4532
3859
  msgid "%s Automatic insertion %s before, between and after comments"
3860
  msgstr ""
3861
 
3862
  #. translators: %s HTML tags
3863
+ #: settings.php:4533
3864
  msgid "%s Automatic insertion %s after %s or before %s tag"
3865
  msgstr ""
3866
 
3867
  #. translators: %s HTML tags
3868
+ #: settings.php:4534
3869
  msgid "Automatic insertion at %s custom hook positions %s"
3870
  msgstr ""
3871
 
3872
  #. translators: %s HTML tags
3873
+ #: settings.php:4535
3874
  msgid ""
3875
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3876
  "selectors)"
3877
  msgstr ""
3878
 
3879
  #. translators: %s HTML tags
3880
+ #: settings.php:4536
3881
  msgid "%s Insertion exceptions %s for individual posts and pages"
3882
  msgstr ""
3883
 
3884
  #. translators: %s HTML tags
3885
+ #: settings.php:4537
3886
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3887
  msgstr ""
3888
 
3889
  #. translators: %s HTML tags
3890
+ #: settings.php:4538
3891
  msgid ""
3892
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3893
  "scrolls)"
3894
  msgstr ""
3895
 
3896
  #. translators: %s HTML tags
3897
+ #: settings.php:4539
3898
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3899
  msgstr ""
3900
 
3901
  #. translators: %s HTML tags
3902
+ #: settings.php:4540
3903
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3904
  msgstr ""
3905
 
3906
  #. translators: %s HTML tags
3907
+ #: settings.php:4541
3908
  msgid ""
3909
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3910
  "visible)"
3911
  msgstr ""
3912
 
3913
  #. translators: %s HTML tags
3914
+ #: settings.php:4542
3915
  msgid ""
3916
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3917
  msgstr ""
3918
 
3919
  #. translators: %s HTML tags
3920
+ #: settings.php:4543
3921
  msgid "Block %s alignment and style %s customizations"
3922
  msgstr ""
3923
 
3924
  #. translators: %s HTML tags
3925
+ #: settings.php:4544
3926
  msgid ""
3927
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3928
  "TOS)"
3929
  msgstr ""
3930
 
3931
  #. translators: %s HTML tags
3932
+ #: settings.php:4545
3933
  msgid ""
3934
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3935
  "feeds"
3936
  msgstr ""
3937
 
3938
  #. translators: %s HTML tags
3939
+ #: settings.php:4546
3940
  msgid "%s Ad rotation %s (works also with caching)"
3941
  msgstr ""
3942
 
3943
  #. translators: %s HTML tags
3944
+ #: settings.php:4547
3945
+ msgid "Create, edit and check %s ads.txt %s file"
3946
+ msgstr ""
3947
+
3948
+ #. translators: %s HTML tags
3949
+ #: settings.php:4548
3950
  msgid ""
3951
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3952
  "AdSense)"
3953
  msgstr ""
3954
 
3955
  #. translators: %s HTML tags
3956
+ #: settings.php:4549
3957
  msgid "Support for %s A/B testing %s"
3958
  msgstr ""
3959
 
3960
  #. translators: %s HTML tags
3961
+ #: settings.php:4550
3962
  msgid "Support for %s lazy loading %s"
3963
  msgstr ""
3964
 
3965
  #. translators: %s HTML tags
3966
+ #: settings.php:4551
3967
  msgid "Support for ads on %s AMP pages %s"
3968
  msgstr ""
3969
 
3970
  #. translators: %s HTML tags
3971
+ #: settings.php:4552
3972
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
+ #: settings.php:4553
3977
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
3978
  msgstr ""
3979
 
3980
  #. translators: %s HTML tags
3981
+ #: settings.php:4554
3982
  msgid "PHP code processing"
3983
  msgstr ""
3984
 
3985
  #. translators: %s HTML tags
3986
+ #: settings.php:4555
3987
  msgid "%s Banner %s code generator"
3988
  msgstr ""
3989
 
3990
  #. translators: %s HTML tags
3991
+ #: settings.php:4556
3992
  msgid "Support for %s header and footer %s code"
3993
  msgstr ""
3994
 
3995
  #. translators: %s HTML tags
3996
+ #: settings.php:4557
3997
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
3998
  msgstr ""
3999
 
4000
  #. translators: %s HTML tags
4001
+ #: settings.php:4558
4002
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4003
  msgstr ""
4004
 
4005
  #. translators: %s HTML tags
4006
+ #: settings.php:4559
4007
  msgid "Client-side %s mobile device detection %s (works with caching)"
4008
  msgstr ""
4009
 
4010
  #. translators: %s HTML tags
4011
+ #: settings.php:4560
4012
  msgid ""
4013
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4014
  "protection"
4015
  msgstr ""
4016
 
4017
  #. translators: %s HTML tags
4018
+ #: settings.php:4561
4019
  msgid "%s Ad blocking statistics %s"
4020
  msgstr ""
4021
 
4022
  #. translators: %s HTML tags
4023
+ #: settings.php:4562
4024
  msgid ""
4025
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4026
  "referers"
4027
  msgstr ""
4028
 
4029
  #. translators: %s HTML tags
4030
+ #: settings.php:4563
4031
  msgid ""
4032
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4033
  msgstr ""
4034
 
4035
  #. translators: %s HTML tags
4036
+ #: settings.php:4564
4037
  msgid "%s Multisite options %s to limit settings on the sites"
4038
  msgstr ""
4039
 
4040
  #. translators: %s HTML tags
4041
+ #: settings.php:4565
4042
  msgid "%s Import/Export %s block or plugin settings"
4043
  msgstr ""
4044
 
4045
  #. translators: %s HTML tags
4046
+ #: settings.php:4566
4047
  msgid "%s Insertion scheduling %s with fallback option"
4048
  msgstr ""
4049
 
4050
  #. translators: %s HTML tags
4051
+ #: settings.php:4567
4052
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4053
  msgstr ""
4054
 
4055
  #. translators: %s HTML tags
4056
+ #: settings.php:4568
4057
  msgid "Simple troubleshooting with many %s debugging functions %s"
4058
  msgstr ""
4059
 
4060
  #. translators: %s HTML tags
4061
+ #: settings.php:4569
4062
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4063
  msgstr ""
4064
 
4065
  #. translators: %s HTML tags
4066
+ #: settings.php:4570
4067
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4068
  msgstr ""
4069
 
4070
  #. translators: %s HTML tags
4071
+ #: settings.php:4571
4072
  msgid ""
4073
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4074
  msgstr ""
4075
 
4076
  #. translators: %s HTML tags
4077
+ #: settings.php:4572
4078
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4079
  msgstr ""
4080
 
4081
  #. translators: %s HTML tags
4082
+ #: settings.php:4573
4083
  msgid "No ads on the settings page"
4084
  msgstr ""
4085
 
4086
  #. translators: %s HTML tags
4087
+ #: settings.php:4574
4088
  msgid "Premium support via email"
4089
  msgstr ""
4090
 
4091
  #. translators: %s HTML tags
4092
+ #: settings.php:4577
4093
  msgid ""
4094
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4095
  "website with many advertising features to automatically insert adverts on "
4104
  msgstr ""
4105
 
4106
  #. translators: %s HTML tags
4107
+ #: settings.php:4590
4108
  msgid "Looking for %s Pro Ad Management plugin? %s"
4109
  msgstr ""
4110
 
4111
  #. translators: %s HTML tags
4112
+ #: settings.php:4595
4113
  msgid "Ads between posts"
4114
  msgstr ""
4115
 
4116
  #. translators: %s HTML tags
4117
+ #: settings.php:4596
4118
  msgid "Ads between comments"
4119
  msgstr ""
4120
 
4121
  #. translators: %s HTML tags
4122
+ #: settings.php:4597
4123
  msgid "Support via email"
4124
  msgstr ""
4125
 
4126
  #. translators: %s HTML tags
4127
+ #: settings.php:4603
4128
  msgid "%s Sticky positions %s"
4129
  msgstr ""
4130
 
4131
  #. translators: %s HTML tags
4132
+ #: settings.php:4604
4133
  msgid "%s Limit insertions %s"
4134
  msgstr ""
4135
 
4136
  #. translators: %s HTML tags
4137
+ #: settings.php:4605
4138
  msgid "%s Clearance %s options"
4139
  msgstr ""
4140
 
4141
  #. translators: %s HTML tags
4142
+ #: settings.php:4611
4143
  msgid "Ad rotation"
4144
  msgstr ""
4145
 
4146
  #. translators: %s HTML tags
4147
+ #: settings.php:4612
4148
  msgid "%s A/B testing %s"
4149
  msgstr ""
4150
 
4151
  #. translators: %s HTML tags
4152
+ #: settings.php:4613
4153
  msgid "%s Ad tracking %s"
4154
  msgstr ""
4155
 
4156
  #. translators: %s HTML tags
4157
+ #: settings.php:4619
4158
  msgid "Support for %s AMP pages %s"
4159
  msgstr ""
4160
 
4161
  #. translators: %s HTML tags
4162
+ #: settings.php:4620
4163
  msgid "%s Ad blocking detection %s"
4164
  msgstr ""
4165
 
4166
  #. translators: %s HTML tags
4167
+ #: settings.php:4621
4168
  msgid "%s Mobile device detection %s"
4169
  msgstr ""
4170
 
4171
  #. translators: %s HTML tags
4172
+ #: settings.php:4628
4173
  msgid "64 code blocks"
4174
  msgstr ""
4175
 
4176
  #. translators: %s HTML tags
4177
+ #: settings.php:4629
4178
  msgid "%s GEO targeting %s"
4179
  msgstr ""
4180
 
4181
  #. translators: %s HTML tags
4182
+ #: settings.php:4630
4183
  msgid "%s Scheduling %s"
4184
  msgstr ""
4185
 
4781
  msgid "Fixed by viewport"
4782
  msgstr ""
4783
 
 
 
 
 
4784
  #: strings.php:179
4785
  msgid "Impressions and clicks"
4786
  msgstr ""
4787
 
4788
+ #: strings.php:180
4789
+ msgid "Advanced WordPress Ad Management Plugin"
4790
+ msgstr ""
4791
+
4792
+ #: strings.php:186
4793
  msgctxt "Button"
4794
  msgid "Hide"
4795
  msgstr ""
4796
 
4797
+ #: strings.php:187
4798
  msgctxt "Button"
4799
  msgid "Show"
4800
  msgstr ""
4801
 
4802
+ #: strings.php:188
4803
  msgid "Insertion expired"
4804
  msgstr ""
4805
 
4806
+ #: strings.php:189
4807
  msgid "Duration"
4808
  msgstr ""
4809
 
4810
+ #: strings.php:190
4811
  msgid "Invalid end date - must be after start date"
4812
  msgstr ""
4813
 
4814
+ #: strings.php:191
4815
  msgid "Invalid start date - only data for 1 year back is available"
4816
  msgstr ""
4817
 
4818
+ #: strings.php:192
4819
  msgid "Invalid date range - only data for 1 year can be displayed"
4820
  msgstr ""
4821
 
4822
+ #: strings.php:193 strings.php:194 strings.php:195 strings.php:196
4823
+ #: strings.php:197 strings.php:198
4824
  msgid "day"
4825
  msgid_plural "days"
4826
  msgstr[0] ""
4827
  msgstr[1] ""
4828
 
4829
+ #: strings.php:200
4830
  msgid "Delete"
4831
  msgstr ""
4832
 
4833
+ #: strings.php:202
4834
  msgid "Delete all statistics data?"
4835
  msgstr ""
4836
 
4837
  #. translators: %s: dates
4838
+ #: strings.php:204
4839
  msgid "Delete statistics data between %s and %s?"
4840
  msgstr ""
4841
 
4842
+ #: strings.php:205
4843
  msgid "Cancel block order rearrangement"
4844
  msgstr ""
4845
 
4846
+ #: strings.php:207
4847
  msgid "downloading..."
4848
  msgstr ""
4849
 
4850
+ #: strings.php:208
4851
  msgid "download error"
4852
  msgstr ""
4853
 
4854
+ #: strings.php:209
4855
  msgid "update error"
4856
  msgstr ""
4857
 
4858
+ #: strings.php:210
4859
  msgid "Updating..."
4860
  msgstr ""
4861
 
4862
+ #: strings.php:212
4863
  msgid "ERROR"
4864
  msgstr ""
4865
 
4866
+ #: strings.php:213
4867
  msgid "Error reloading settings"
4868
  msgstr ""
4869
 
4870
+ #: strings.php:215
4871
  msgctxt "Search field placeholder"
4872
  msgid "Search..."
4873
  msgstr ""
4874
 
4875
+ #: strings.php:216
4876
  msgctxt "Search field placeholder"
4877
  msgid "Filter..."
4878
  msgstr ""
4879
 
4880
+ #: strings.php:217
4881
  msgid "Use filter to limit names in the list"
4882
  msgstr ""
4883
 
4884
+ #: strings.php:218
4885
  msgctxt "Button"
4886
  msgid "Filter"
4887
  msgstr ""
4888
 
4889
+ #: strings.php:220
4890
  msgid "Position not available"
4891
  msgstr ""
4892
 
4893
+ #: strings.php:221
4894
  msgid ""
4895
  "Theme check | Selected position for automatic insertion might not be not "
4896
  "available on this page type"
4897
  msgstr ""
4898
 
4899
+ #: strings.php:222
4900
  msgid "Position available"
4901
  msgstr ""
4902
 
4903
+ #: strings.php:224
4904
  msgid "Select or upload banner image"
4905
  msgstr ""
4906
 
4907
+ #: strings.php:225
4908
  msgid "Use this image"
4909
  msgstr ""
4910
 
4911
+ #: strings.php:239
4912
  msgid "Add"
4913
  msgstr ""
4914
 
4915
+ #: strings.php:240
4916
  msgid "Parent"
4917
  msgstr ""
4918
 
4919
+ #: strings.php:241
4920
  msgid "Cancel element selection"
4921
  msgstr ""
4922
 
4923
+ #: strings.php:242
4924
  msgid "Select parent element"
4925
  msgstr ""
4926
 
4927
+ #: strings.php:243
4928
  msgid "CSS selector"
4929
  msgstr ""
4930
 
4931
+ #: strings.php:244
4932
  msgid "Use current selector"
4933
  msgstr ""
4934
 
4935
+ #: strings.php:245
4936
  msgid "ELEMENT"
4937
  msgstr ""
4938
 
4939
+ #: strings.php:246
4940
  msgid "PATH"
4941
  msgstr ""
4942
 
4943
+ #: strings.php:247
4944
  msgid "SELECTOR"
4945
  msgstr ""
4946
 
4947
+ #: strings.php:248
4948
  msgctxt "Block"
4949
  msgid "VISIBLE"
4950
  msgstr ""
4951
 
4952
+ #: strings.php:249
4953
  msgctxt "Block"
4954
  msgid "HIDDEN"
4955
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
6
  Requires at least: 4.0
7
  Tested up to: 5.1
8
  Requires PHP: 5.6
9
- Stable tag: 2.4.12
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, AMP ads, DFP ads, PHP, tracking, AdSense header and footer code
@@ -138,7 +138,7 @@ If you need statistics for ads and metrics for impressions and clicks, A/B testi
138
  * Country, state, region and city level geotargeting
139
  * Blacklist/Whitelist IP addresses or countries/cities (works also with caching)
140
  * Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
141
- * Statistics reports for clients in PDF format
142
  * External tracking via Google Analytics or Matomo (Piwik)
143
  * A/B testing - discover ads and settings that perform best
144
  * Lazy loading ads (works with AdSense ads)
@@ -278,6 +278,7 @@ Support the advancement of this plugin:
278
 
279
  * Write a short <a href="https://wordpress.org/support/plugin/ad-inserter/reviews/#new-post">review</a> - positive reviews are a great way to show your appreciation for my work. Besides being an incredible boost to my morale, they are also a great incentive to fix any bug found in the software and to add new features for better monetization of your website.
280
  * <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4">Donate</a> if Ad Inserter helps you to make money with ads
 
281
  * Buy license for [Ad Inserter Pro](https://adinserter.pro/) - Top WordPress plugin for ads
282
 
283
  == Installation ==
@@ -488,6 +489,13 @@ Please note that responsive AdSense ads can not work with floating alignments (a
488
 
489
  == Changelog ==
490
 
 
 
 
 
 
 
 
491
  = 2.4.12 =
492
  - Added ads.txt editor
493
  - Added option to prevent disabling caching for logged in administrators
@@ -579,6 +587,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
579
 
580
  == Upgrade Notice ==
581
 
 
 
 
 
 
 
 
582
  = 2.4.12 =
583
  Added ads.txt editor;
584
  Added Added option to prevent disabling caching for logged in administrators;
6
  Requires at least: 4.0
7
  Tested up to: 5.1
8
  Requires PHP: 5.6
9
+ Stable tag: 2.4.13
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense ads, Amazon banners, ad rotation, sticky widget ads, AMP ads, DFP ads, PHP, tracking, AdSense header and footer code
138
  * Country, state, region and city level geotargeting
139
  * Blacklist/Whitelist IP addresses or countries/cities (works also with caching)
140
  * Ad impression and click statistics (works also with `<iframe>` Javascript ads like Google AdSense)
141
+ * Statistics reports for clients in PDF format or public web pages
142
  * External tracking via Google Analytics or Matomo (Piwik)
143
  * A/B testing - discover ads and settings that perform best
144
  * Lazy loading ads (works with AdSense ads)
278
 
279
  * Write a short <a href="https://wordpress.org/support/plugin/ad-inserter/reviews/#new-post">review</a> - positive reviews are a great way to show your appreciation for my work. Besides being an incredible boost to my morale, they are also a great incentive to fix any bug found in the software and to add new features for better monetization of your website.
280
  * <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4">Donate</a> if Ad Inserter helps you to make money with ads
281
+ * Register for [Ad Inserter Pro Affiliate](https://affiliate.adinserter.pro/), promote the plugin on your website and earn commission for each purchase you refer
282
  * Buy license for [Ad Inserter Pro](https://adinserter.pro/) - Top WordPress plugin for ads
283
 
284
  == Installation ==
489
 
490
  == Changelog ==
491
 
492
+ = 2.4.13 =
493
+ - Added shortcode to disable ad blocking detection code
494
+ - Added options to disable ad blocking actions for administrators or logged in users
495
+ - Added option to change PDF report footer (Pro only)
496
+ - Added support for public ad impression and click reports (Pro only)
497
+ - Few minor bug fixes, cosmetic changes and code improvements
498
+
499
  = 2.4.12 =
500
  - Added ads.txt editor
501
  - Added option to prevent disabling caching for logged in administrators
587
 
588
  == Upgrade Notice ==
589
 
590
+ = 2.4.13 =
591
+ Added shortcode to disable ad blocking detection code;
592
+ Added options to disable ad blocking actions for administrators or logged in users;
593
+ Added option to change PDF report footer (Pro only);
594
+ Added support for public ad impression and click reports (Pro only);
595
+ Few minor bug fixes, cosmetic changes and code improvements
596
+
597
  = 2.4.12 =
598
  Added ads.txt editor;
599
  Added Added option to prevent disabling caching for logged in administrators;
settings.php CHANGED
@@ -1995,6 +1995,8 @@ function generate_settings_form (){
1995
  if ($enabled_f) $style_f = "font-weight: bold; color: #66f;"; else if ($footer_code_disabled) $style_f = "font-weight: bold; color: #f66;"; else $style_f = "";
1996
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
1997
  $adb_action = get_adb_action (true);
 
 
1998
  if ($enabled_a) $style_a = "font-weight: bold; color: " . ($adb_action == AI_ADB_ACTION_NONE ? "#66f;" : "#c0f;"); else $style_a = "";
1999
  }
2000
  if ($insertion_disabled) $style_d = "font-weight: bold; color: #e44;"; else $style_d = "";
@@ -2329,7 +2331,7 @@ function generate_settings_form (){
2329
  <div style="width: 100%;">
2330
  <div style="float: left;">
2331
  <?php printf (__('Code in the %s section of the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;">&lt;head&gt;&lt;/head&gt;</pre>'); ?>
2332
- <?php if ($header_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
2333
  </div>
2334
 
2335
  <div style="clear: both;"></div>
@@ -2387,7 +2389,7 @@ function generate_settings_form (){
2387
  <div style="width: 100%;">
2388
  <div style="float: left;">
2389
  <?php /* translators: %s: HTML tags */ printf (__('Code before the %s tag of the the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;">&lt;/body&gt;</pre>'); ?>
2390
- <?php if ($footer_code_disabled) echo '<span style="color: #f00;">', _x ('DISABLED', 'code in header or footer', 'ad-inserter'), '</span>'; ?>
2391
  </div>
2392
 
2393
  <div style="clear: both;"></div>
@@ -2431,7 +2433,8 @@ function generate_settings_form (){
2431
  </div>
2432
 
2433
  <div style="vertical-align: sub; display: inline-block;">
2434
- <h3 style="margin: 0;"><?php _e ('Ad Blocking Detection', 'ad-inserter'); ?></h3>
 
2435
  </div>
2436
 
2437
  <div style="clear: both;"></div>
@@ -2449,6 +2452,14 @@ function generate_settings_form (){
2449
  <option value="<?php echo AI_ADB_ACTION_MESSAGE; ?>" <?php echo ($adb_action == AI_ADB_ACTION_MESSAGE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POPUP_MESSAGE; ?></option>
2450
  <option value="<?php echo AI_ADB_ACTION_REDIRECTION; ?>" <?php echo ($adb_action == AI_ADB_ACTION_REDIRECTION) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_REDIRECTION; ?></option>
2451
  </select>
 
 
 
 
 
 
 
 
2452
  </td>
2453
  </tr>
2454
  <tr>
@@ -2568,7 +2579,15 @@ function generate_settings_form (){
2568
  </td>
2569
  <td>
2570
  <input type="hidden" name="<?php echo AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE; ?>" value="0" />
2571
- <input type="checkbox" name="<?php echo AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE; ?>" id="undismissible-message" value="1" default="<?php echo AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE; ?>" <?php if (get_undismissible_message () == AI_ENABLED) echo 'checked '; ?> />
 
 
 
 
 
 
 
 
2572
  </td>
2573
  </tr>
2574
  </table>
@@ -3277,7 +3296,12 @@ function ads_txt ($action) {
3277
  $ads_txt_file = ABSPATH . 'ads.txt';
3278
  if (file_exists ($ads_txt_file)) {
3279
  $ads = file_get_contents ($ads_txt_file);
3280
- } else $ads = '';
 
 
 
 
 
3281
  $ads_lines = explode ("\n", $ads);
3282
  $rows = array ();
3283
  foreach ($ads_lines as $ads_line) {
@@ -3317,11 +3341,16 @@ function ads_txt ($action) {
3317
  if (site_url ('', 'relative') != '') {
3318
  $right_ads_txt_url = str_replace (site_url ('', 'relative'), '', home_url ('/')) . 'ads.txt';
3319
  echo '<div class="rounded">';
3320
- echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), '</span>: ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $right_ads_txt_url, '" target="_blank" class="simple-link">', $right_ads_txt_url, '</a></strong></div>';
3321
  echo '<div>', /* translators: %s: file path */ sprintf (__('WordPress is installed in %s', 'ad-inserter'), '<strong>' . ABSPATH . '</strong>'), '</div>';
3322
  echo '<div>', __('Showing file', 'ad-inserter'), ' ', $ads_txt_file, '</div>';
3323
  echo '</div>';
3324
  }
 
 
 
 
 
3325
  switch ($action) {
3326
  case 'text':
3327
  if (count ($missing_lines)) {
@@ -4474,6 +4503,7 @@ function sidebar_pro () {
4474
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
4475
  <li><?php /* translators: %s HTML tags */ printf (__('Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS feeds', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
4476
  <li><?php /* translators: %s HTML tags */ printf (__('%s Ad rotation %s (works also with caching)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-rotation" class="simple-link" target="_blank">', '</a>'); ?></li>
 
4477
  <li><?php /* translators: %s HTML tags */ printf (__('Ad impression and click %s tracking %s (works also with Javascript ads like AdSense)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
4478
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
4479
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
1995
  if ($enabled_f) $style_f = "font-weight: bold; color: #66f;"; else if ($footer_code_disabled) $style_f = "font-weight: bold; color: #f66;"; else $style_f = "";
1996
  if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
1997
  $adb_action = get_adb_action (true);
1998
+ $adb_no_action = get_adb_no_action (true);
1999
+ $no_undismissible_message = get_no_undismissible_message (true);
2000
  if ($enabled_a) $style_a = "font-weight: bold; color: " . ($adb_action == AI_ADB_ACTION_NONE ? "#66f;" : "#c0f;"); else $style_a = "";
2001
  }
2002
  if ($insertion_disabled) $style_d = "font-weight: bold; color: #e44;"; else $style_d = "";
2331
  <div style="width: 100%;">
2332
  <div style="float: left;">
2333
  <?php printf (__('Code in the %s section of the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;">&lt;head&gt;&lt;/head&gt;</pre>'); ?>
2334
+ <?php if ($header_code_disabled) echo '<span style="color: #f00;">', _x ('NOT ENABLED', 'code in the header', 'ad-inserter'), '</span>'; ?>
2335
  </div>
2336
 
2337
  <div style="clear: both;"></div>
2389
  <div style="width: 100%;">
2390
  <div style="float: left;">
2391
  <?php /* translators: %s: HTML tags */ printf (__('Code before the %s tag of the the HTML page', 'ad-inserter'), '<pre style="display: inline; color: blue;">&lt;/body&gt;</pre>'); ?>
2392
+ <?php if ($footer_code_disabled) echo '<span style="color: #f00;">', _x ('NOT ENABLED', 'code in the footer', 'ad-inserter'), '</span>'; ?>
2393
  </div>
2394
 
2395
  <div style="clear: both;"></div>
2433
  </div>
2434
 
2435
  <div style="vertical-align: sub; display: inline-block;">
2436
+ <h3 style="margin: 0; display: inline-block;"><?php _e ('Ad Blocking Detection', 'ad-inserter'); ?></h3>
2437
+ <?php if (!$enabled_a && $adb_action != AI_ADB_ACTION_NONE) echo '<span style="color: #f00;"> ', _x ('NOT ENABLED', 'ad blocking detection', 'ad-inserter'), '</span>'; ?>
2438
  </div>
2439
 
2440
  <div style="clear: both;"></div>
2452
  <option value="<?php echo AI_ADB_ACTION_MESSAGE; ?>" <?php echo ($adb_action == AI_ADB_ACTION_MESSAGE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_POPUP_MESSAGE; ?></option>
2453
  <option value="<?php echo AI_ADB_ACTION_REDIRECTION; ?>" <?php echo ($adb_action == AI_ADB_ACTION_REDIRECTION) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_REDIRECTION; ?></option>
2454
  </select>
2455
+ <span style="float: right">
2456
+ <span style="vertical-align: middle;"><?php _e ('No action for', 'ad-inserter'); ?></span>
2457
+ <select id="adb-no-action" name="<?php echo AI_OPTION_ADB_NO_ACTION; ?>" title="<?php _e ('Exceptions for global action when ad blocking is detected.', 'ad-inserter'); ?>" default="<?php echo AI_DEFAULT_ADB_NO_ACTION; ?>" >
2458
+ <option value="<?php echo AI_ADB_NO_ACTION_NONE; ?>" <?php echo ($adb_no_action == AI_ADB_NO_ACTION_NONE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>> </option>
2459
+ <option value="<?php echo AI_ADB_NO_ACTION_LOGGED_IN; ?>" <?php echo ($adb_no_action == AI_ADB_NO_ACTION_LOGGED_IN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_LOGGED_IN_USERS; ?></option>
2460
+ <option value="<?php echo AI_ADB_NO_ACTION_ADMINISTRATORS; ?>" <?php echo ($adb_no_action == AI_ADB_NO_ACTION_ADMINISTRATORS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_ADMINISTRATORS; ?></option>
2461
+ </select>
2462
+ </span>
2463
  </td>
2464
  </tr>
2465
  <tr>
2579
  </td>
2580
  <td>
2581
  <input type="hidden" name="<?php echo AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE; ?>" value="0" />
2582
+ <input type="checkbox" name="<?php echo AI_OPTION_ADB_UNDISMISSIBLE_MESSAGE; ?>" id="undismissible-message" value="1" default="<?php echo AI_DEFAULT_ADB_UNDISMISSIBLE_MESSAGE; ?>" <?php if (get_undismissible_message (true) == AI_ENABLED) echo 'checked '; ?> />
2583
+ <span style="float: right">
2584
+ <span style="vertical-align: middle;"><?php _e ('Not undismissible for', 'ad-inserter'); ?></span>
2585
+ <select id="not-undismissible" name="<?php echo AI_OPTION_ADB_NO_UNDISMISSIBLE_MESSAGE; ?>" title="<?php _e ('Users which can close the warning message.', 'ad-inserter'); ?>" default="<?php echo AI_DEFAULT_ADB_NO_UNDISMISSIBLE_MESSAGE; ?>" >
2586
+ <option value="<?php echo AI_ADB_NO_ACTION_NONE; ?>" <?php echo ($no_undismissible_message == AI_ADB_NO_ACTION_NONE) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>> </option>
2587
+ <option value="<?php echo AI_ADB_NO_ACTION_LOGGED_IN; ?>" <?php echo ($no_undismissible_message == AI_ADB_NO_ACTION_LOGGED_IN) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_LOGGED_IN_USERS; ?></option>
2588
+ <option value="<?php echo AI_ADB_NO_ACTION_ADMINISTRATORS; ?>" <?php echo ($no_undismissible_message == AI_ADB_NO_ACTION_ADMINISTRATORS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_ADMINISTRATORS; ?></option>
2589
+ </select>
2590
+ </span>
2591
  </td>
2592
  </tr>
2593
  </table>
3296
  $ads_txt_file = ABSPATH . 'ads.txt';
3297
  if (file_exists ($ads_txt_file)) {
3298
  $ads = file_get_contents ($ads_txt_file);
3299
+ } else {
3300
+ $ads = '';
3301
+ if ($action == 'table') {
3302
+ $action = 'text';
3303
+ }
3304
+ }
3305
  $ads_lines = explode ("\n", $ads);
3306
  $rows = array ();
3307
  foreach ($ads_lines as $ads_line) {
3341
  if (site_url ('', 'relative') != '') {
3342
  $right_ads_txt_url = str_replace (site_url ('', 'relative'), '', home_url ('/')) . 'ads.txt';
3343
  echo '<div class="rounded">';
3344
+ echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span> ', __('ads.txt file must be placed on the root domain', 'ad-inserter'), ' <a href="', $right_ads_txt_url, '" target="_blank" class="simple-link">', $right_ads_txt_url, '</a></strong></div>';
3345
  echo '<div>', /* translators: %s: file path */ sprintf (__('WordPress is installed in %s', 'ad-inserter'), '<strong>' . ABSPATH . '</strong>'), '</div>';
3346
  echo '<div>', __('Showing file', 'ad-inserter'), ' ', $ads_txt_file, '</div>';
3347
  echo '</div>';
3348
  }
3349
+ if (!file_exists ($ads_txt_file)) {
3350
+ echo '<div id="ads-txt-missing" class="rounded">';
3351
+ echo '<div><strong><span style="color: red;">', __('Warning', 'ad-inserter'), ':</span> ', sprintf (__('File %s not found', 'ad-inserter'), $ads_txt_file), '</div>';
3352
+ echo '</div>';
3353
+ }
3354
  switch ($action) {
3355
  case 'text':
3356
  if (count ($missing_lines)) {
4503
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clearance %s options to avoid insertion near images or headers (AdSense TOS)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/paragraph-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
4504
  <li><?php /* translators: %s HTML tags */ printf (__('Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS feeds', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings" class="simple-link" target="_blank">', '</a>'); ?></li>
4505
  <li><?php /* translators: %s HTML tags */ printf (__('%s Ad rotation %s (works also with caching)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-rotation" class="simple-link" target="_blank">', '</a>'); ?></li>
4506
+ <li><?php /* translators: %s HTML tags */ printf (__('Create, edit and check %s ads.txt %s file', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ads-txt" class="simple-link" target="_blank">', '</a>'); ?></li>
4507
  <li><?php /* translators: %s HTML tags */ printf (__('Ad impression and click %s tracking %s (works also with Javascript ads like AdSense)', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking" class="simple-link" target="_blank">', '</a>'); ?></li>
4508
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s A/B testing %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/ad-impression-and-click-tracking#ab-testing" class="simple-link" target="_blank">', '</a>'); ?></li>
4509
  <li><?php /* translators: %s HTML tags */ printf (__('Support for %s lazy loading %s', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/additional-block-settings#lazy-loading" class="simple-link" target="_blank">', '</a>'); ?></li>
strings.php CHANGED
@@ -177,8 +177,9 @@ define ('AI_TEXT_FIXED_BY_VIEWPORT', _x('Fixed by viewport', 'size', 'ad-in
177
 
178
  define ('DEFAULT_REPORT_HEADER_TITLE', __('Ad Inserter Pro Report', 'ad-inserter'));
179
  define ('DEFAULT_REPORT_HEADER_DESCRIPTION', __('Impressions and clicks', 'ad-inserter'));
 
180
 
181
- global $ai_admin_translations, $ai_front_translations;
182
 
183
  $ai_admin_translations = array (
184
  'hide' => _x('Hide', 'Button', 'ad-inserter'),
@@ -225,6 +226,7 @@ $ai_admin_translations = array (
225
 
226
 
227
  $ai_front_translations = array (
 
228
  'insertion_before' => __('BEFORE', 'ad-inserter'),
229
  'insertion_after' => __('AFTER', 'ad-inserter'),
230
  'insertion_prepend' => __('PREPEND CONTENT', 'ad-inserter'),
177
 
178
  define ('DEFAULT_REPORT_HEADER_TITLE', __('Ad Inserter Pro Report', 'ad-inserter'));
179
  define ('DEFAULT_REPORT_HEADER_DESCRIPTION', __('Impressions and clicks', 'ad-inserter'));
180
+ define ('DEFAULT_REPORT_FOOTER', AD_INSERTER_NAME . ' '. __('Advanced WordPress Ad Management Plugin', 'ad-inserter') . ' https://adinserter.pro/');
181
 
182
+ global $ai_admin_translations, $ai_front_translations, $wp_version;
183
 
184
  $ai_admin_translations = array (
185
  'hide' => _x('Hide', 'Button', 'ad-inserter'),
226
 
227
 
228
  $ai_front_translations = array (
229
+ 'wp_ai' => $wp_version . '+' . AD_INSERTER_VERSION,
230
  'insertion_before' => __('BEFORE', 'ad-inserter'),
231
  'insertion_after' => __('AFTER', 'ad-inserter'),
232
  'insertion_prepend' => __('PREPEND CONTENT', 'ad-inserter'),