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

Version Description

  • 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.17
Comparing to
See all releases

Code changes from version 2.4.15 to 2.4.17

ad-inserter.php CHANGED
@@ -2,7 +2,7 @@
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
- Version: 2.4.15
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,13 @@ Domain Path: /languages
15
 
16
  Change Log
17
 
 
 
 
 
 
 
 
18
  Ad Inserter 2.4.15 - 2019-04-19
19
  - Fix for improved compatibility with other plugins
20
  - Few minor bug fixes and cosmetic changes
@@ -509,9 +516,12 @@ function set_page_type () {
509
  elseif (is_404()) $ai_wp_data [AI_WP_PAGE_TYPE] = AI_PT_404;
510
 
511
  if (
512
- // AMP, Accelerated Mobile Pages
513
  function_exists ('is_amp_endpoint') && is_amp_endpoint () ||
514
 
 
 
 
515
  // WP AMP Ninja
516
  isset ($_GET ['wpamp']) ||
517
 
@@ -1774,14 +1784,7 @@ function ai_wp_enqueue_scripts_hook () {
1774
  wp_localize_script ('ai-jquery-js', 'ai_front', $ai_front_translations);
1775
 
1776
  if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
1777
- $wp_scripts = wp_scripts();
1778
- wp_enqueue_style (
1779
- 'jquery-ui-theme-smoothness',
1780
- sprintf (
1781
- '//ajax.googleapis.com/ajax/libs/jqueryui/%s/themes/smoothness/jquery-ui.css',
1782
- $wp_scripts->registered ['jquery-ui-core']->ver
1783
- )
1784
- );
1785
  }
1786
 
1787
  if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
@@ -5453,6 +5456,10 @@ function generate_selection_css () {
5453
  width: 100%;
5454
  border: 1px solid #000;
5455
  }
 
 
 
 
5456
  #ai-selector-data table {
5457
  width: 100%;
5458
  margin: 5px;
@@ -7988,7 +7995,7 @@ if (defined ('AI_PLUGIN_TRACKING') && AI_PLUGIN_TRACKING) {
7988
  __("Thank you for installing", 'ad-inserter') . ' [STRONG][NAME][/STRONG]. ' .
7989
  // translators: Opt-in message: %s: HTML tags
7990
  sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
7991
- '<a href="https://wordpress.org/plugins/ad-inserter/#what%20is%20plugin%20usage%20tracking%3F" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
7992
  __("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
7993
 
7994
  return $text;
2
 
3
  /*
4
  Plugin Name: Ad Inserter
5
+ Version: 2.4.17
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.17 - 2019-05-13
19
+ - Few minor bug fixes, cosmetic changes and code improvements
20
+
21
+ Ad Inserter 2.4.16 - 2019-04-21
22
+ - Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress
23
+ - Few minor bug fixes
24
+
25
  Ad Inserter 2.4.15 - 2019-04-19
26
  - Fix for improved compatibility with other plugins
27
  - Few minor bug fixes and cosmetic changes
516
  elseif (is_404()) $ai_wp_data [AI_WP_PAGE_TYPE] = AI_PT_404;
517
 
518
  if (
519
+ // AMP, AMP WP
520
  function_exists ('is_amp_endpoint') && is_amp_endpoint () ||
521
 
522
+ // AMP for WP - Accelerated Mobile Pages for WordPress
523
+ function_exists ('ampforwp_is_amp_endpoint') && ampforwp_is_amp_endpoint () ||
524
+
525
  // WP AMP Ninja
526
  isset ($_GET ['wpamp']) ||
527
 
1784
  wp_localize_script ('ai-jquery-js', 'ai_front', $ai_front_translations);
1785
 
1786
  if ($ai_wp_data [AI_HTML_ELEMENT_SELECTION]) {
1787
+ wp_enqueue_style ('ai-html-jquery-ui', plugins_url ('css/jquery-ui-1.10.3.custom.min.css', __FILE__), array (), null);
 
 
 
 
 
 
 
1788
  }
1789
 
1790
  if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
5456
  width: 100%;
5457
  border: 1px solid #000;
5458
  }
5459
+ #ai-selector-data kbd {
5460
+ background-color: #fff;
5461
+ box-shadow: none;
5462
+ }
5463
  #ai-selector-data table {
5464
  width: 100%;
5465
  margin: 5px;
7995
  __("Thank you for installing", 'ad-inserter') . ' [STRONG][NAME][/STRONG]. ' .
7996
  // translators: Opt-in message: %s: HTML tags
7997
  sprintf (__("We would like to %s track its usage %s on your site. This is completely optional and can be disabled at any time.", 'ad-inserter'),
7998
+ '<a href="https://wordpress.org/plugins/ad-inserter/#privacy%20policy%20%E2%80%93%20plugin%20usage%20tracking" target=_blank" style="text-decoration: none; box-shadow: 0 0 0;">', '</a>') . '[P]' .
7999
  __("We don't record any sensitive data, only information regarding the WordPress environment and plugin usage, which will help us to make improvements to the plugin.", 'ad-inserter');
8000
 
8001
  return $text;
class.php CHANGED
@@ -730,7 +730,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
730
  if (!$translate) return AI_TEXT_ENG_BEFORE_IMAGE;
731
  return AI_TEXT_BEFORE_IMAGE;
732
  break;
733
- case AI_AUTOMATIC_INSERTION_AFTER_PARAGRAPH:
734
  if (!$translate) return AI_TEXT_ENG_AFTER_IMAGE;
735
  return AI_TEXT_AFTER_IMAGE;
736
  break;
@@ -2404,7 +2404,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
2404
  $ai_wp_data [AI_ACTIVE_GROUP_NAMES] = json_decode (base64_decode ($matches [1]));
2405
  $processed_code = preg_replace ($groups_marker, '', $processed_code);
2406
 
2407
- if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) ai_log ('GROUP NAMES SET: "' . $ai_wp_data [AI_ACTIVE_GROUP_NAMES] . '"');
2408
 
2409
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
2410
  $debug_list = new ai_block_labels ('ai-debug-iframe');
730
  if (!$translate) return AI_TEXT_ENG_BEFORE_IMAGE;
731
  return AI_TEXT_BEFORE_IMAGE;
732
  break;
733
+ case AI_AUTOMATIC_INSERTION_AFTER_IMAGE:
734
  if (!$translate) return AI_TEXT_ENG_AFTER_IMAGE;
735
  return AI_TEXT_AFTER_IMAGE;
736
  break;
2404
  $ai_wp_data [AI_ACTIVE_GROUP_NAMES] = json_decode (base64_decode ($matches [1]));
2405
  $processed_code = preg_replace ($groups_marker, '', $processed_code);
2406
 
2407
+ if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0) ai_log ('GROUP NAMES SET: "' . implode (', ', $ai_wp_data [AI_ACTIVE_GROUP_NAMES]) . '"');
2408
 
2409
  if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
2410
  $debug_list = new ai_block_labels ('ai-debug-iframe');
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.15');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
29
  define ('AD_INSERTER_NAME', 'Ad Inserter');
30
 
31
  if (!defined( 'AD_INSERTER_VERSION'))
32
+ define ('AD_INSERTER_VERSION', '2.4.17');
33
 
34
  if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
35
  define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
css/ai-settings.css CHANGED
@@ -1,5 +1,5 @@
1
  #ai-data {
2
- font-family: "2.4.15"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
1
  #ai-data {
2
+ font-family: "2.4.17"; /* Used for version number of the file */
3
  }
4
 
5
  #blocked-warning {
includes/ace/LICENSE ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Copyright (c) 2010, Ajax.org B.V.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are met:
6
+ * Redistributions of source code must retain the above copyright
7
+ notice, this list of conditions and the following disclaimer.
8
+ * Redistributions in binary form must reproduce the above copyright
9
+ notice, this list of conditions and the following disclaimer in the
10
+ documentation and/or other materials provided with the distribution.
11
+ * Neither the name of Ajax.org B.V. nor the
12
+ names of its contributors may be used to endorse or promote products
13
+ derived from this software without specific prior written permission.
14
+
15
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
+ ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
+ DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
19
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
includes/ace/Readme.md ADDED
@@ -0,0 +1,164 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Ace (Ajax.org Cloud9 Editor)
2
+ ============================
3
+
4
+ [![Build Status](https://secure.travis-ci.org/ajaxorg/ace.svg?branch=master)](http://travis-ci.org/ajaxorg/ace) [![npm](https://img.shields.io/npm/v/ace-builds.svg)](https://www.npmjs.com/package/ace-builds)
5
+
6
+ _Note_: The new site at http://ace.c9.io contains all the info below along with an embedding guide and all the other resources you need to get started with Ace.
7
+
8
+ Ace is a standalone code editor written in JavaScript. Our goal is to create a browser based editor that matches and extends the features, usability and performance of existing native editors such as TextMate, Vim or Eclipse. It can be easily embedded in any web page or JavaScript application. Ace is developed as the primary editor for [Cloud9 IDE](https://c9.io/) and the successor of the Mozilla Skywriter (Bespin) Project.
9
+
10
+ Features
11
+ --------
12
+
13
+ * Syntax highlighting for over 120 languages (TextMate/Sublime/_.tmlanguage_ files can be imported)
14
+ * Over 20 themes (TextMate/Sublime/_.tmtheme_ files can be imported)
15
+ * Automatic indent and outdent
16
+ * An optional command line
17
+ * Handles huge documents (at last check, 4,000,000 lines is the upper limit)
18
+ * Fully customizable key bindings including vim and Emacs modes
19
+ * Search and replace with regular expressions
20
+ * Highlight matching parentheses
21
+ * Toggle between soft tabs and real tabs
22
+ * Displays hidden characters
23
+ * Drag and drop text using the mouse
24
+ * Line wrapping
25
+ * Code folding
26
+ * Multiple cursors and selections
27
+ * Live syntax checker (currently JavaScript/CoffeeScript/CSS/XQuery)
28
+ * Cut, copy, and paste functionality
29
+
30
+ Take Ace for a spin!
31
+ --------------------
32
+
33
+ Check out the Ace live [demo](http://ace.c9.io/build/kitchen-sink.html) or get a [Cloud9 IDE account](https://c9.io/) to experience Ace while editing one of your own GitHub projects.
34
+
35
+ If you want, you can use Ace as a textarea replacement thanks to the [Ace Bookmarklet](http://ajaxorg.github.io/ace/build/demo/bookmarklet/index.html).
36
+
37
+ Embedding Ace
38
+ -------------
39
+
40
+ Ace can be easily embedded into any existing web page. You can either use one of pre-packaged versions of [ace](https://github.com/ajaxorg/ace-builds/) (just copy one of `src*` subdirectories somewhere into your project), or use requireJS to load contents of [lib/ace](https://github.com/ajaxorg/ace/tree/master/lib/ace) as `ace`
41
+
42
+
43
+ The easiest version is simply:
44
+
45
+ ```html
46
+ <div id="editor">some text</div>
47
+ <script src="src/ace.js" type="text/javascript" charset="utf-8"></script>
48
+ <script>
49
+ var editor = ace.edit("editor");
50
+ </script>
51
+ ```
52
+
53
+ With "editor" being the id of the DOM element, which should be converted to an editor. Note that this element must be explicitly sized and positioned `absolute` or `relative` for Ace to work. e.g.
54
+
55
+ ```css
56
+ #editor {
57
+ position: absolute;
58
+ width: 500px;
59
+ height: 400px;
60
+ }
61
+ ```
62
+
63
+ To change the theme simply include the Theme's JavaScript file
64
+
65
+ ```html
66
+ <script src="src/theme-twilight.js" type="text/javascript" charset="utf-8"></script>
67
+ ```
68
+
69
+ and configure the editor to use the theme:
70
+
71
+ ```javascript
72
+ editor.setTheme("ace/theme/twilight");
73
+ ```
74
+
75
+ By default the editor only supports plain text mode; many other languages are available as separate modules. After including the mode's JavaScript file:
76
+
77
+ ```html
78
+ <script src="src/mode-javascript.js" type="text/javascript" charset="utf-8"></script>
79
+ ```
80
+
81
+ The mode can then be used like this:
82
+
83
+ ```javascript
84
+ var JavaScriptMode = ace.require("ace/mode/javascript").Mode;
85
+ editor.session.setMode(new JavaScriptMode());
86
+ ```
87
+
88
+ to destroy editor use
89
+
90
+ ```javascript
91
+ editor.destroy();
92
+ editor.container.remove();
93
+ ```
94
+
95
+
96
+ Documentation
97
+ -------------
98
+
99
+ Additional usage information, including events to listen to and extending syntax highlighters, can be found [on the main Ace website](http://ace.c9.io).
100
+
101
+ You can also find API documentation at [http://ace.c9.io/#nav=api](http://ace.c9.io/#nav=api).
102
+
103
+ Also check out the sample code for the kitchen sink [demo app](https://github.com/ajaxorg/ace/blob/master/demo/kitchen-sink/demo.js).
104
+
105
+ If you still need help, feel free to drop a mail on the [ace mailing list](http://groups.google.com/group/ace-discuss), or at `irc.freenode.net#ace`.
106
+
107
+ Running Ace
108
+ -----------
109
+
110
+ After the checkout Ace works out of the box. No build step is required. To try it out, simply start the bundled mini HTTP server using Node.JS
111
+
112
+ ```bash
113
+ node ./static.js
114
+ ```
115
+
116
+ The editor can then be opened at http://localhost:8888/kitchen-sink.html.
117
+
118
+ To open the editor with a file:/// URL see [the wiki](https://github.com/ajaxorg/ace/wiki/Running-Ace-from-file).
119
+
120
+ Building Ace
121
+ -----------
122
+
123
+ You do not generally need to build ACE. The [ace-builds repository](https://github.com/ajaxorg/ace-builds/) endeavours to maintain the latest build, and you can just copy one of _src*_ subdirectories somewhere into your project.
124
+
125
+ However, all you need is Node.js and npm installed to package ACE. Just run `npm install` in the ace folder to install dependencies:
126
+
127
+ ```bash
128
+ npm install
129
+ node ./Makefile.dryice.js
130
+ ```
131
+
132
+ To package Ace, we use the dryice build tool developed by the Mozilla Skywriter team. Call `node Makefile.dryice.js` on the command-line to start the packing. This build script accepts the following options
133
+
134
+ ```bash
135
+ -m minify build files with uglify-js
136
+ -nc namespace require and define calls with "ace"
137
+ -bm builds the bookmarklet version
138
+ --target ./path specify relative path for output folder (default value is "./build")
139
+ ```
140
+
141
+ To generate all the files in the ace-builds repository, run `node Makefile.dryice.js full --target ../ace-builds`
142
+
143
+ Running the Unit Tests
144
+ ----------------------
145
+
146
+ The Ace unit tests can run on node.js. Assuming you have already done `npm install`, just call:
147
+
148
+ ```bash
149
+ node lib/ace/test/all.js
150
+ ```
151
+
152
+ You can also run the tests in your browser by serving:
153
+
154
+ http://localhost:8888/lib/ace/test/tests.html
155
+
156
+ This makes debugging failing tests way more easier.
157
+
158
+ Contributing
159
+ -----------------------------
160
+
161
+ Ace is a community project and wouldn't be what it is without contributions! We actively encourage and support contributions. The Ace source code is released under the BSD License. This license is very simple, and is friendly to all kinds of projects, whether open source or not. Take charge of your editor and add your favorite language highlighting and keybindings!
162
+
163
+ Feel free to fork and improve/enhance Ace any way you want. If you feel that the editor or the Ace community will benefit from your changes, please open a pull request. For more information on our contributing guidelines, see [CONTRIBUTING.md](https://github.com/ajaxorg/ace/blob/master/CONTRIBUTING.md).
164
+
includes/dst/dst.php CHANGED
@@ -6,6 +6,7 @@
6
  *
7
  * @version 1.0.6
8
  * @author Igor Funa <igor.funa/gmail.com>
 
9
  */
10
 
11
  /*
6
  *
7
  * @version 1.0.6
8
  * @author Igor Funa <igor.funa/gmail.com>
9
+ * @license MIT
10
  */
11
 
12
  /*
includes/placeholders.php CHANGED
@@ -4,6 +4,7 @@
4
  //error_reporting (E_ALL);
5
 
6
  function generate_placeholder_editor ($placeholder_url, $block) {
 
7
 
8
  $placeholder_protocol = 'http://';
9
  $placeholder_domain = 'via.placeholder.com';
@@ -101,10 +102,16 @@ function generate_placeholder_editor ($placeholder_url, $block) {
101
  <head>
102
  <title><?php echo AD_INSERTER_NAME; ?> <?php _e ('Placeholder Editor', 'ad-inserter'); ?></title>
103
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
104
- <script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>
105
- <script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js'></script>
 
 
 
 
 
 
 
106
  <script src='<?php echo plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE); ?>'></script>
107
- <link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css'>
108
  <link rel="stylesheet" href='<?php echo plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE); ?>'>
109
  <script>
110
 
4
  //error_reporting (E_ALL);
5
 
6
  function generate_placeholder_editor ($placeholder_url, $block) {
7
+ global $wp_version;
8
 
9
  $placeholder_protocol = 'http://';
10
  $placeholder_domain = 'via.placeholder.com';
102
  <head>
103
  <title><?php echo AD_INSERTER_NAME; ?> <?php _e ('Placeholder Editor', 'ad-inserter'); ?></title>
104
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
105
+
106
+ <script type='text/javascript' src='<?php echo includes_url ('js/jquery/jquery.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
107
+ <script type='text/javascript' src='<?php echo admin_url ('load-scripts.php?c=0&amp;load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&amp;ver='); ?><?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
108
+ <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/effect.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
109
+ <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/widget.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
110
+ <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/button.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
111
+ <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/spinner.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
112
+ <link rel='stylesheet' href='<?php echo plugins_url ('css/jquery-ui-1.10.3.custom.min.css', AD_INSERTER_FILE); ?>?ver=<?php echo AD_INSERTER_VERSION; ?>' type='text/css' media='all' />
113
+
114
  <script src='<?php echo plugins_url ('includes/colorpicker/js/bootstrap-colorpicker.min.js', AD_INSERTER_FILE); ?>'></script>
 
115
  <link rel="stylesheet" href='<?php echo plugins_url ('includes/colorpicker/css/bootstrap-colorpicker.min.css', AD_INSERTER_FILE); ?>'>
116
  <script>
117
 
includes/preview.php CHANGED
@@ -210,10 +210,6 @@ function generate_code_preview (
210
  <title><?php echo AD_INSERTER_NAME; ?> <?php if ($sticky) _e ('Sticky Code Preview', 'ad-inserter'); else _e ('Code Preview', 'ad-inserter'); ?></title>
211
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
212
 
213
- <!--<script src='https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js'></script>-->
214
- <!--<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js'></script>-->
215
- <!--<link rel='stylesheet' href='https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css'>-->
216
-
217
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/jquery.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
218
  <script type='text/javascript' src='<?php echo admin_url ('load-scripts.php?c=0&amp;load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&amp;ver='); ?><?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
219
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/effect.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
210
  <title><?php echo AD_INSERTER_NAME; ?> <?php if ($sticky) _e ('Sticky Code Preview', 'ad-inserter'); else _e ('Code Preview', 'ad-inserter'); ?></title>
211
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
212
 
 
 
 
 
213
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/jquery.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
214
  <script type='text/javascript' src='<?php echo admin_url ('load-scripts.php?c=0&amp;load%5B%5D=jquery-core,jquery-migrate,utils,jquery-ui-core&amp;ver='); ?><?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
215
  <script type='text/javascript' src='<?php echo includes_url ('js/jquery/ui/effect.min.js'); ?>?ver=<?php echo $wp_version, '+', AD_INSERTER_VERSION; ?>'></script>
js/ad-inserter.js CHANGED
@@ -1,4 +1,4 @@
1
- var javascript_version = "2.4.15";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
1
+ var javascript_version = "2.4.17";
2
  var ignore_key = true;
3
  var start = 1;
4
  var end = 16;
languages/ad-inserter-sl_SI.mo CHANGED
Binary file
languages/ad-inserter-sl_SI.po CHANGED
@@ -4,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-04-13 09:21:04+00:00\n"
8
- "PO-Revision-Date: 2019-04-13 11:24+0200\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: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,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:2242 includes/functions.php:1526
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:1529
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,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: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,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: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:2187
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,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:2472
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:2475
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:2476
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: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,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: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,16 +385,16 @@ msgstr[1] "znaka"
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,43 +402,43 @@ msgstr[1] "znaka vstavljena"
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,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: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,38 +462,38 @@ msgstr[1] "besedi"
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,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: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,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: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,49 +522,49 @@ msgstr ""
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:2716 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,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: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,11 +608,11 @@ msgstr "Pred prispevkom"
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
 
@@ -719,17 +719,17 @@ msgstr ""
719
  "NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
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
 
727
- #: includes/editor.php:8 includes/preview.php:1953
728
  msgid "Reset"
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
 
@@ -738,7 +738,7 @@ msgid "Visual Code Editor"
738
  msgstr "Vizualni Urejevalnik Kode"
739
 
740
  #: includes/editor.php:262 includes/preview-adb.php:289
741
- #: includes/preview.php:1942
742
  msgid ""
743
  "This page was not loaded properly. Please check browser, plugins and ad "
744
  "blockers."
@@ -751,7 +751,7 @@ msgid "Error loading page"
751
  msgstr "Napaka pri nalaganju strani"
752
 
753
  #: includes/editor.php:264 includes/preview-adb.php:291
754
- #: includes/preview.php:1944
755
  msgid "PAGE BLOCKED"
756
  msgstr "STRAN BLOKIRANA"
757
 
@@ -821,7 +821,7 @@ 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:422 settings.php:1194 settings.php:2489
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
@@ -857,7 +857,7 @@ msgstr "Odpri javno poročilo"
857
  msgid "Toggle Ad Blocking Statistics"
858
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
859
 
860
- #: includes/functions.php:490 includes/functions.php:2514
861
  msgid "Toggle Statistics"
862
  msgstr "Preklopi Statistiko"
863
 
@@ -880,7 +880,7 @@ msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
880
  msgid "Save Settings"
881
  msgstr "Sharani Nastavitve"
882
 
883
- #: includes/functions.php:578 includes/preview.php:2096
884
  msgid "Horizontal position"
885
  msgstr "Vodoravni položaj"
886
 
@@ -892,7 +892,7 @@ msgstr ""
892
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
893
  "iz CSS"
894
 
895
- #: includes/functions.php:609 includes/preview.php:2151
896
  msgid "Vertical position"
897
  msgstr "Navpični položaj"
898
 
@@ -904,7 +904,7 @@ msgstr ""
904
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
905
  "iz CSS"
906
 
907
- #: includes/functions.php:649 includes/preview.php:2202
908
  msgid "Animation"
909
  msgstr "Animacija"
910
 
@@ -956,12 +956,12 @@ msgstr "Sledenje za ta blok je onemogočeno"
956
  msgid "Double click to toggle controls in public reports"
957
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
958
 
959
- #: includes/functions.php:749 settings.php:3169 settings.php:3205
960
- #: settings.php:3248 strings.php:211
961
  msgid "Loading..."
962
  msgstr "Nalagam..."
963
 
964
- #: includes/functions.php:766
965
  msgid ""
966
  "Clear statistics data for the selected range - clear both dates to delete "
967
  "all data for this block"
@@ -969,59 +969,59 @@ msgstr ""
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:770
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:773 includes/functions.php:4729
977
  msgid "Load data for last month"
978
  msgstr "Naloži podatke za zadnji mesec"
979
 
980
- #: includes/functions.php:773 includes/functions.php:4729
981
  msgid "Last Month"
982
  msgstr "Zadnji Mesec"
983
 
984
- #: includes/functions.php:776 includes/functions.php:4732
985
  msgid "Load data for this month"
986
  msgstr "Naloži podatke za ta mesec"
987
 
988
- #: includes/functions.php:776 includes/functions.php:4732
989
  msgid "This Month"
990
  msgstr "Ta Mesec"
991
 
992
- #: includes/functions.php:779 includes/functions.php:4735
993
  msgid "Load data for this year"
994
  msgstr "Naloži podatke za to leto"
995
 
996
- #: includes/functions.php:779 includes/functions.php:4735
997
  msgid "This Year"
998
  msgstr "To Leto"
999
 
1000
- #: includes/functions.php:782 includes/functions.php:4738
1001
  msgid "Load data for the last 15 days"
1002
  msgstr "Naloži podatke za zadnjih 15 dni"
1003
 
1004
- #: includes/functions.php:785 includes/functions.php:4741
1005
  msgid "Load data for the last 30 days"
1006
  msgstr "Naloži podatke za zadnjih 30 dni"
1007
 
1008
- #: includes/functions.php:788 includes/functions.php:4744
1009
  msgid "Load data for the last 90 days"
1010
  msgstr "Naloži podatke za zadnjih 90 dni"
1011
 
1012
- #: includes/functions.php:791 includes/functions.php:4747
1013
  msgid "Load data for the last 180 days"
1014
  msgstr "Naloži podatke za zadnjih 180 dni"
1015
 
1016
- #: includes/functions.php:794 includes/functions.php:4750
1017
  msgid "Load data for the last 365 days"
1018
  msgstr "Naloži podatke za zadnjih 365 dni"
1019
 
1020
- #: includes/functions.php:804 includes/functions.php:4760
1021
  msgid "Load data for the selected range"
1022
  msgstr "Naloži podatke za izbrano obdobje"
1023
 
1024
- #: includes/functions.php:820
1025
  msgid ""
1026
  "Import settings when saving - if checked, the encoded settings below will be "
1027
  "imported for this block"
@@ -1029,11 +1029,11 @@ msgstr ""
1029
  "Uvozi nastavitve pri shranjevanju - če je odkljukano, se bodo kodirane "
1030
  "nastavitve spodaj uvozile za ta blok"
1031
 
1032
- #: includes/functions.php:820
1033
  msgid "Import settings for block"
1034
  msgstr "Uvozi nastavitve za blok"
1035
 
1036
- #: includes/functions.php:824
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,41 +1043,41 @@ msgstr ""
1043
  "nastavitve za blok' odkljukano, se bo ime iz kodiranih nastavitev spodaj "
1044
  "uvozilo za ta blok"
1045
 
1046
- #: includes/functions.php:824
1047
  msgid "Import block name"
1048
  msgstr "Uvozi ime bloka"
1049
 
1050
- #: includes/functions.php:828
1051
  msgid "Saved settings for block"
1052
  msgstr "Shranjene nastavitve za blok"
1053
 
1054
- #: includes/functions.php:841
1055
  msgid "Export / Import Ad Inserter Pro Settings"
1056
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1057
 
1058
- #: includes/functions.php:851
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:853
1065
  msgid "Clear All Statistics Data"
1066
  msgstr "Pobriši Vse Podatke o Statistiki"
1067
 
1068
- #: includes/functions.php:880
1069
  msgid "Toggle country/city editor"
1070
  msgstr "Preklopi urejevalnik držav/mest"
1071
 
1072
- #: includes/functions.php:886
1073
  msgid "IP Addresses"
1074
  msgstr "IP Naslovi"
1075
 
1076
- #: includes/functions.php:889
1077
  msgid "Toggle IP address editor"
1078
  msgstr "Preklopi urejevalnik IP nslovov"
1079
 
1080
- #: includes/functions.php:892
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,48 +1085,48 @@ msgstr ""
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:896
1089
  msgid "Blacklist IP addresses"
1090
  msgstr "Črni seznam IP naslovov"
1091
 
1092
- #: includes/functions.php:900
1093
  msgid "Whitelist IP addresses"
1094
  msgstr "Beli seznam IP naslovov"
1095
 
1096
- #: includes/functions.php:911
1097
  msgid "Countries"
1098
  msgstr "Države"
1099
 
1100
- #: includes/functions.php:912
1101
  msgid "Cities"
1102
  msgstr "Mesta"
1103
 
1104
- #: includes/functions.php:916 includes/functions.php:2479
1105
  msgid "Toggle country editor"
1106
  msgstr "Preklopi urejevalnik držav"
1107
 
1108
- #: includes/functions.php:919
1109
  msgid "Toggle city editor"
1110
  msgstr "Preklopi urejevalnik mest"
1111
 
1112
- #: includes/functions.php:923 includes/functions.php:2482
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:927
1117
  msgid "Blacklist countries"
1118
  msgstr "Črni seznam držav"
1119
 
1120
- #: includes/functions.php:931
1121
  msgid "Whitelist countries"
1122
  msgstr "Beli seznam držav"
1123
 
1124
- #: includes/functions.php:1247 includes/functions.php:1482
1125
  msgid "Enter license key"
1126
  msgstr "Vnesite licenčni ključ"
1127
 
1128
  #. translators: %s: Ad Inserter Pro
1129
- #: includes/functions.php:1253
1130
  msgid ""
1131
  "%s license key is not set. Plugin functionality is limited and updates are "
1132
  "disabled."
@@ -1134,40 +1134,40 @@ msgstr ""
1134
  "%s licenčni ključ ni vnešen. Funkcionalnosti vtičnika so omejene in "
1135
  "posodobitve onemogočene."
1136
 
1137
- #: includes/functions.php:1265 includes/functions.php:1491
1138
  msgid "Check license key"
1139
  msgstr "Preverite licenčni ključ"
1140
 
1141
  #. translators: %s: Ad Inserter Pro
1142
- #: includes/functions.php:1271
1143
  msgid "Invalid %s license key."
1144
  msgstr "Neveljaven %s licenčni ključ."
1145
 
1146
  #. translators: %s: Ad Inserter Pro
1147
- #: includes/functions.php:1280
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:1281
1152
  msgid "Renew license"
1153
  msgstr "Obnovite licenco"
1154
 
1155
  #. translators: %s: Ad Inserter Pro
1156
- #: includes/functions.php:1289
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:1290
1162
  msgid "Manage licenses"
1163
  msgstr "Upravljajte z licencami"
1164
 
1165
- #: includes/functions.php:1290
1166
  msgid "Upgrade license"
1167
  msgstr "Nadgradite licenco"
1168
 
1169
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1170
- #: includes/functions.php:1484
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,12 +1176,12 @@ msgstr ""
1176
  "so omejene in posodobitve onemogočene."
1177
 
1178
  #. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
1179
- #: includes/functions.php:1493
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:1509
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,7 +1191,7 @@ msgstr ""
1191
  "pogrešate. %3$s"
1192
 
1193
  #. translators: 1, 3: HTML tags, 2: percentage
1194
- #: includes/functions.php:1516
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,16 +1199,16 @@ msgstr ""
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:1543
1203
  msgid "Renew the licence"
1204
  msgstr "Obnovi licenco"
1205
 
1206
- #: includes/functions.php:1545
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:1556
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"
@@ -1218,95 +1218,95 @@ msgstr ""
1218
  "Nadgradite licenco %7$s"
1219
 
1220
  #. Translators: %s: HTML tag
1221
- #: includes/functions.php:1578
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:2116
1226
  msgid "Geolocation"
1227
  msgstr "Geolokacija"
1228
 
1229
- #: includes/functions.php:2120
1230
  msgid "Exceptions"
1231
  msgstr "Izjeme"
1232
 
1233
- #: includes/functions.php:2125
1234
  msgid "Multisite"
1235
  msgstr "Multisite"
1236
 
1237
- #: includes/functions.php:2130
1238
  msgid "Tracking"
1239
  msgstr "Sledenje"
1240
 
1241
  #. translators: %d: days, hours, minutes
1242
- #: includes/functions.php:2161
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:2170
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:2174
1253
  msgid "Expired"
1254
  msgstr "Poteklo"
1255
 
1256
- #: includes/functions.php:2182 settings.php:1277 settings.php:1292
1257
  #: settings.php:1879
1258
  msgid "and"
1259
  msgstr "in"
1260
 
1261
- #: includes/functions.php:2185
1262
  msgid "fallback"
1263
  msgstr "rezerva"
1264
 
1265
- #: includes/functions.php:2186
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:2211
1270
  msgid "Load in iframe"
1271
  msgstr "Naloži v iframe-u"
1272
 
1273
- #: includes/functions.php:2215 includes/placeholders.php:382
1274
  msgid "Width"
1275
  msgstr "Širina"
1276
 
1277
- #: includes/functions.php:2216
1278
  msgid "iframe width, empty means full width (100%)"
1279
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1280
 
1281
- #: includes/functions.php:2222 includes/placeholders.php:377
1282
  msgid "Height"
1283
  msgstr "Višina"
1284
 
1285
- #: includes/functions.php:2223
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:2230
1291
  msgid "Ad label in iframe"
1292
  msgstr "Oznaka oglasa v iframe-u"
1293
 
1294
- #: includes/functions.php:2235
1295
  msgid "Preview iframe code"
1296
  msgstr "Predpreglej kodo iframe"
1297
 
1298
- #: includes/functions.php:2235 includes/preview.php:1964 settings.php:954
1299
- #: settings.php:2551
1300
  msgid "Preview"
1301
  msgstr "Predogled"
1302
 
1303
- #: includes/functions.php:2249 includes/functions.php:3789
1304
- #: includes/functions.php:3852 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:2258
1310
  msgid ""
1311
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1312
  "for tracking!"
@@ -1316,7 +1316,7 @@ msgstr ""
1316
 
1317
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1318
  #. header
1319
- #: includes/functions.php:2267
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,49 +1324,49 @@ msgstr ""
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:2285
1328
  msgid "When ad blocking is detected"
1329
  msgstr "Ko je blokiranje oglasov zaznano"
1330
 
1331
- #: includes/functions.php:2294
1332
  msgid "replacement"
1333
  msgstr "nadomestek"
1334
 
1335
- #: includes/functions.php:2295
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:2296
1340
  msgctxt "replacement"
1341
  msgid "None"
1342
  msgstr "Noben"
1343
 
1344
- #: includes/functions.php:2313
1345
  msgid "Close button"
1346
  msgstr "Gumb Zapri"
1347
 
1348
- #: includes/functions.php:2360
1349
  msgid "Lazy loading"
1350
  msgstr "Leno nalaganje"
1351
 
1352
  #. Translators: %s MaxMind
1353
- #: includes/functions.php:2414
1354
  msgid "This product includes GeoLite2 data created by %s"
1355
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1356
 
1357
- #: includes/functions.php:2425
1358
  msgid "IP geolocation database"
1359
  msgstr "Podatkovna baza za IP geolokacijo"
1360
 
1361
- #: includes/functions.php:2428
1362
  msgid "Select IP geolocation database."
1363
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1364
 
1365
- #: includes/functions.php:2439
1366
  msgid "Automatic database updates"
1367
  msgstr "Samodejna posodobitev podatkovne baze"
1368
 
1369
- #: includes/functions.php:2442
1370
  msgid ""
1371
  "Automatically download and update free GeoLite2 IP geolocation database by "
1372
  "MaxMind"
@@ -1374,11 +1374,11 @@ msgstr ""
1374
  "Samodejno prenesi in posodobi prostodostopno GeoLite2 IP geolokacijsko "
1375
  "podatkovno bazo MaxMind"
1376
 
1377
- #: includes/functions.php:2450
1378
  msgid "Database"
1379
  msgstr "Podatkovna baza"
1380
 
1381
- #: includes/functions.php:2453
1382
  msgid ""
1383
  "Aabsolute path starting with '/' or relative path to the MaxMind database "
1384
  "file"
@@ -1387,39 +1387,44 @@ msgstr ""
1387
  "podatkovne baze"
1388
 
1389
  #. translators: %d: group number
1390
- #: includes/functions.php:2471
1391
  msgid "Group %d"
1392
  msgstr "Skupina %d"
1393
 
1394
- #: includes/functions.php:2477
1395
  msgid "countries"
1396
  msgstr "države"
1397
 
1398
- #: includes/functions.php:2522
1399
  msgid "Enable tracking"
1400
  msgstr "Omogoči sledenje"
1401
 
1402
- #: includes/functions.php:2529
1403
  msgid "Generate report"
1404
  msgstr "Generiraj poročilo"
1405
 
1406
- #: includes/functions.php:2537
1407
  msgid "Impression and Click Tracking"
1408
  msgstr "Sledenje Prikazov in Klikov"
1409
 
1410
- #: includes/functions.php:2553
 
 
 
 
 
1411
  msgid "Internal"
1412
  msgstr "Notranje"
1413
 
1414
- #: includes/functions.php:2557
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:2562
1419
  msgid "External"
1420
  msgstr "Zunanje"
1421
 
1422
- #: includes/functions.php:2566
1423
  msgid ""
1424
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1425
  "code installed)"
@@ -1427,27 +1432,27 @@ msgstr ""
1427
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1428
  "kodo za sledenje)"
1429
 
1430
- #: includes/functions.php:2571
1431
  msgid "Track Pageviews"
1432
  msgstr "Sledi Ogledom Strani"
1433
 
1434
- #: includes/functions.php:2577
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:2587
1439
  msgid "Track for Logged in Users"
1440
  msgstr "Sledi za Prijavljene Upor."
1441
 
1442
- #: includes/functions.php:2593
1443
  msgid "Track impressions and clicks from logged in users"
1444
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1445
 
1446
- #: includes/functions.php:2603
1447
  msgid "Click Detection"
1448
  msgstr "Zaznavanje klikov"
1449
 
1450
- #: includes/functions.php:2609
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,11 +1460,11 @@ msgstr ""
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:2635
1459
  msgid "Report header image"
1460
  msgstr "Slika v glavi poročila"
1461
 
1462
- #: includes/functions.php:2638
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 "
@@ -1469,15 +1474,15 @@ msgstr ""
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:2639 strings.php:223
1473
  msgid "Select or upload header image"
1474
  msgstr "Izberi ali naloži sliko glave"
1475
 
1476
- #: includes/functions.php:2644
1477
  msgid "Report header title"
1478
  msgstr "Naslov v glavi poročila"
1479
 
1480
- #: includes/functions.php:2647
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."
@@ -1485,11 +1490,11 @@ 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:2652
1489
  msgid "Report header description"
1490
  msgstr "Opis v glavi poročila"
1491
 
1492
- #: includes/functions.php:2655
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."
@@ -1497,11 +1502,11 @@ 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:2660
1501
  msgid "Report footer"
1502
  msgstr "Noga poročila"
1503
 
1504
- #: includes/functions.php:2663
1505
  msgid ""
1506
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1507
  "to default text."
@@ -1509,112 +1514,112 @@ 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:2668
1513
  msgid "Public report key"
1514
  msgstr "Ključ za javno poročilo"
1515
 
1516
- #: includes/functions.php:2671
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:2703
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:2704 settings.php:1041
1527
  msgid "Clear all exceptions for block"
1528
  msgstr "Pobriši vse izjeme za blok"
1529
 
1530
- #: includes/functions.php:2711
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:2711
1535
  msgid "Clear all exceptions for all blocks"
1536
  msgstr "Pobriši vse izjeme za vse bloke"
1537
 
1538
- #: includes/functions.php:2716 settings.php:3407 settings.php:3745
1539
  msgid "Type"
1540
  msgstr "Vrsta"
1541
 
1542
- #: includes/functions.php:2734
1543
  msgid "View"
1544
  msgstr "Poglej"
1545
 
1546
- #: includes/functions.php:2735 includes/placeholders.php:346
1547
- #: includes/preview.php:2271 settings.php:1180
1548
  msgid "Edit"
1549
  msgstr "Uredi"
1550
 
1551
- #: includes/functions.php:2765
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:2766
1556
  msgid "Clear all exceptions for"
1557
  msgstr "Pobriši vse izjeme za"
1558
 
1559
- #: includes/functions.php:2779
1560
  msgid "No exceptions"
1561
  msgstr "Brez izjem"
1562
 
1563
  #. translators: %s: Ad Inserter Pro
1564
- #: includes/functions.php:2790
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:2795
1570
  msgid "Enable %s widgets for sub-sites"
1571
  msgstr "Omogoči %s gradnik za pod-spletišča"
1572
 
1573
- #: includes/functions.php:2795
1574
  msgid "Widgets"
1575
  msgstr "Gradniki"
1576
 
1577
- #: includes/functions.php:2800
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:2800
1582
  msgid "PHP Processing"
1583
  msgstr "PHP Procesiranje"
1584
 
1585
  #. translators: %s: Ad Inserter Pro
1586
- #: includes/functions.php:2805
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:2805
1592
  msgid "Post/Page exceptions"
1593
  msgstr "Izjeme prispevkov/strani"
1594
 
1595
  #. translators: %s: Ad Inserter Pro
1596
- #: includes/functions.php:2810
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:2810
1601
  msgid "Settings page"
1602
  msgstr "Stran z nastavitvami"
1603
 
1604
  #. translators: %s: Ad Inserter Pro
1605
- #: includes/functions.php:2815
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:2815
1610
  msgid "Main site settings used for all blogs"
1611
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1612
 
1613
- #: includes/functions.php:2826 settings.php:2438
1614
  msgid "Ad Blocking Detection"
1615
  msgstr "Zaznavanje Blokiranja Oglasov"
1616
 
1617
- #: includes/functions.php:2832
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,71 +1631,71 @@ msgstr ""
1626
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1627
  "dostopna"
1628
 
1629
- #: includes/functions.php:3452 includes/functions.php:3542
1630
- #: includes/functions.php:3562
1631
  msgid "AD BLOCKING"
1632
  msgstr "BLOKIRANJE OGLASOV"
1633
 
1634
- #: includes/functions.php:3453 includes/functions.php:3493
1635
- #: includes/functions.php:3536 includes/functions.php:3563
1636
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1637
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1638
 
1639
- #: includes/functions.php:3456 includes/functions.php:3535
1640
- #: includes/functions.php:3569
1641
  msgid "NO AD BLOCKING"
1642
  msgstr "NI BLOKIRANJA OGLASOV"
1643
 
1644
- #: includes/functions.php:3492 includes/functions.php:3499
1645
  msgid "AD BLOCKING REPLACEMENT"
1646
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1647
 
1648
- #: includes/functions.php:3642 includes/functions.php:3851
1649
  msgid "Pageviews"
1650
  msgstr "Ogledi strani"
1651
 
1652
- #: includes/functions.php:3788
1653
  msgctxt "Version"
1654
  msgid "Unknown"
1655
  msgstr "Neznana"
1656
 
1657
- #: includes/functions.php:3788
1658
  msgctxt "Times"
1659
  msgid "DISPLAYED"
1660
  msgstr "PRIKAZANO"
1661
 
1662
- #: includes/functions.php:3788
1663
  msgid "No version"
1664
  msgstr "Brez različice"
1665
 
1666
- #: includes/functions.php:3789
1667
  msgctxt "Times"
1668
  msgid "BLOCKED"
1669
  msgstr "BLOKIRANO"
1670
 
1671
- #: includes/functions.php:3851
1672
  msgid "Impressions"
1673
  msgstr "Prikazi"
1674
 
1675
- #: includes/functions.php:3852 includes/functions.php:3853
1676
- #: includes/functions.php:3908
1677
  msgid "Clicks"
1678
  msgstr "Kliki"
1679
 
1680
- #: includes/functions.php:3853
1681
  msgid "events"
1682
  msgstr "dogodki"
1683
 
1684
- #: includes/functions.php:3854
1685
  msgid "Ad Blocking Share"
1686
  msgstr "Delež blokiranja oglasov"
1687
 
1688
  #. translators: CTR as Click Through Rate
1689
- #: includes/functions.php:3854 includes/functions.php:3914
1690
  msgid "CTR"
1691
  msgstr "CTR"
1692
 
1693
- #: includes/functions.php:3996
1694
  msgid "pageviews"
1695
  msgid_plural "pageviews"
1696
  msgstr[0] "ogled strani"
@@ -1698,7 +1703,7 @@ msgstr[1] "ogleda strani"
1698
  msgstr[2] "ogledi strani"
1699
  msgstr[3] "ogledov strani"
1700
 
1701
- #: includes/functions.php:3996
1702
  msgid "impressions"
1703
  msgid_plural "impressions"
1704
  msgstr[0] "prikaz"
@@ -1706,7 +1711,7 @@ msgstr[1] "prikaza"
1706
  msgstr[2] "prikazi"
1707
  msgstr[3] "prikazov"
1708
 
1709
- #: includes/functions.php:4000
1710
  msgid "event"
1711
  msgid_plural "events"
1712
  msgstr[0] "dogodek"
@@ -1714,7 +1719,7 @@ msgstr[1] "dogodka"
1714
  msgstr[2] "dogodki"
1715
  msgstr[3] "dogodkov"
1716
 
1717
- #: includes/functions.php:4000
1718
  msgid "click"
1719
  msgid_plural "clicks"
1720
  msgstr[0] "klik"
@@ -1722,104 +1727,104 @@ msgstr[1] "klika"
1722
  msgstr[2] "kliki"
1723
  msgstr[3] "klikov"
1724
 
1725
- #: includes/functions.php:4095
1726
  msgctxt "Pageviews / Impressions"
1727
  msgid "Average"
1728
  msgstr "Povprečni"
1729
 
1730
- #: includes/functions.php:4116
1731
  msgctxt "Ad Blocking / Clicks"
1732
  msgid "Average"
1733
  msgstr "Povprečno"
1734
 
1735
- #: includes/functions.php:4140
1736
  msgctxt "Ad Blocking Share / CTR"
1737
  msgid "Average"
1738
  msgstr "Povprečni"
1739
 
1740
  #. Translators: %s: Ad Inserter Pro
1741
- #: includes/functions.php:4322
1742
  msgid "%s Report"
1743
  msgstr "%s Poročilo"
1744
 
1745
  #. translators: for report range description
1746
- #: includes/functions.php:4413 includes/functions.php:4674 strings.php:178
1747
  msgid "Ad Inserter Pro Report"
1748
  msgstr "Ad Inserter Pro Poročilo"
1749
 
1750
- #: includes/functions.php:4580
1751
  msgid "for last month"
1752
  msgstr "za zadnji mesec"
1753
 
1754
- #: includes/functions.php:4585
1755
  msgid "for this month"
1756
  msgstr "za ta mesec"
1757
 
1758
- #: includes/functions.php:4590
1759
  msgid "for this year"
1760
  msgstr "za to leto"
1761
 
1762
- #: includes/functions.php:4595
1763
  msgid "for the last 15 days"
1764
  msgstr "za zadnjih 15 dni"
1765
 
1766
- #: includes/functions.php:4600
1767
  msgid "for the last 30 days"
1768
  msgstr "za zadnjih 30 dni"
1769
 
1770
- #: includes/functions.php:4605
1771
  msgid "for the last 90 days"
1772
  msgstr "za zadnjih 90 dni"
1773
 
1774
- #: includes/functions.php:4610
1775
  msgid "for the last 180 days"
1776
  msgstr "za zadnjih 180 dni"
1777
 
1778
- #: includes/functions.php:4615
1779
  msgid "for the last 365 days"
1780
  msgstr "za zadnjih 365 dni"
1781
 
1782
- #: includes/placeholders.php:19
1783
  msgid "Custom"
1784
  msgstr "Po meri"
1785
 
1786
- #: includes/placeholders.php:102
1787
  msgid "Placeholder Editor"
1788
  msgstr "Urejevalnik Polnila"
1789
 
1790
- #: includes/placeholders.php:345
1791
  msgid "Select placeholder"
1792
  msgstr "Izberi polnilo"
1793
 
1794
- #: includes/placeholders.php:346
1795
  msgid "Edit placeholder size, colors and text"
1796
  msgstr "Uredi velikost, barve in besedilo polnila"
1797
 
1798
- #: includes/placeholders.php:347
1799
  msgid "Close placeholder editor"
1800
  msgstr "Zapri urejevalnik polnila"
1801
 
1802
- #: includes/placeholders.php:351
1803
  msgid "Placeholder"
1804
  msgstr "Polnilo"
1805
 
1806
- #: includes/placeholders.php:356 settings.php:808 settings.php:3746
1807
  msgid "Size"
1808
  msgstr "Velikost"
1809
 
1810
- #: includes/placeholders.php:372
1811
  msgid "Background color"
1812
  msgstr "Barva ozadja"
1813
 
1814
- #: includes/placeholders.php:391
1815
  msgid "Text"
1816
  msgstr "Besedilo"
1817
 
1818
- #: includes/placeholders.php:396
1819
  msgid "Text color"
1820
  msgstr "Barva besedila"
1821
 
1822
- #: includes/placeholders.php:405
1823
  msgid ""
1824
  "Here you can create a universal placeholder image that can be used in place "
1825
  "of ads when they are not available yet.\n"
@@ -1831,7 +1836,7 @@ msgstr ""
1831
  "Slikovna polnila, ki jih ustvarite tukaj, se bodo obnašala kot katerakoli "
1832
  "slika. Lahko jih tudi shranite na lokalni računalnik ali strežnik."
1833
 
1834
- #: includes/placeholders.php:410
1835
  msgid ""
1836
  "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
1837
  "300x600 or define custom size.\n"
@@ -1849,7 +1854,7 @@ msgstr ""
1849
  "Lahko naredite tudi prazen pravokotnik z enotno barvo tako, da pobrišete "
1850
  "besedilo polnila."
1851
 
1852
- #: includes/placeholders.php:414
1853
  msgid ""
1854
  "<strong>Please note</strong>: if you have active rotation editor the code "
1855
  "window shows only the code for the currently selected option.\n"
@@ -1861,7 +1866,7 @@ msgstr ""
1861
  "Zato bo generator kode v tem primeru uvozil ali generiral kodo za trenutno "
1862
  "izbrano različico."
1863
 
1864
- #: includes/placeholders.php:417
1865
  msgid ""
1866
  "Code generator for banners and AdSense generates the code only when you "
1867
  "click on the button Generate code.\n"
@@ -1876,7 +1881,7 @@ msgstr ""
1876
  "različicami, morate tudi (po potrebi) uvoziti in generirati kodo za vsako "
1877
  "različico rotacije."
1878
 
1879
- #: includes/placeholders.php:420
1880
  msgid ""
1881
  "Ad Inserter has a simple code generator for banners and placeholders.\n"
1882
  "You can select banner image (or placeholder), optionally define link (web "
@@ -1896,7 +1901,7 @@ msgstr "Dodaj testni odstavek"
1896
  msgid "Remove dummy paragraph"
1897
  msgstr "Odstrani testni odstavek"
1898
 
1899
- #: includes/preview-adb.php:9 includes/preview.php:1952
1900
  msgid "Use current settings"
1901
  msgstr "Uporabi trenutne nastavitve"
1902
 
@@ -1923,7 +1928,7 @@ msgctxt "Button"
1923
  msgid "Default"
1924
  msgstr "Privzeto"
1925
 
1926
- #: includes/preview-adb.php:12 includes/preview.php:1955
1927
  msgid "Close preview window"
1928
  msgstr "Zapri okno predogleda"
1929
 
@@ -1936,11 +1941,11 @@ msgstr "Prekliči"
1936
  msgid "Ad Blocking Detected Message Preview"
1937
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1938
 
1939
- #: includes/preview-adb.php:348 settings.php:2564
1940
  msgid "Message CSS"
1941
  msgstr "CSS sporočila"
1942
 
1943
- #: includes/preview-adb.php:353 settings.php:2572
1944
  msgid "Overlay CSS"
1945
  msgstr "CSS prevleke"
1946
 
@@ -1952,52 +1957,52 @@ msgstr "Predogled Lepljive Kode"
1952
  msgid "Code Preview"
1953
  msgstr "Predogled Kode"
1954
 
1955
- #: includes/preview.php:1950
1956
  msgid "Highlight inserted code"
1957
  msgstr "Označi vstavljeno kodo"
1958
 
1959
- #: includes/preview.php:1950
1960
  msgid "Highlight"
1961
  msgstr "Označi"
1962
 
1963
- #: includes/preview.php:1953
1964
  msgid "Reset to block settings"
1965
  msgstr "Ponastavi na nastavitve bloka"
1966
 
1967
- #: includes/preview.php:1968
1968
  msgid "AdSense ad unit"
1969
  msgstr "Oglasna enota AdSense"
1970
 
1971
- #: includes/preview.php:2010 includes/preview.php:2047
1972
  msgid "Code"
1973
  msgstr "Koda"
1974
 
1975
- #: includes/preview.php:2036
1976
  msgid "wrapping div"
1977
  msgstr "div za ovijanje"
1978
 
1979
- #: includes/preview.php:2041 includes/preview.php:2048
1980
  msgid "background"
1981
  msgstr "ozadje"
1982
 
1983
- #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1984
- #: settings.php:3672
1985
  msgid "Alignment"
1986
  msgstr "Poravnava"
1987
 
1988
- #: includes/preview.php:2143
1989
  msgid "Horizontal margin"
1990
  msgstr "Vodoravni odmik"
1991
 
1992
- #: includes/preview.php:2192
1993
  msgid "Vertical margin"
1994
  msgstr "Navpični odmik"
1995
 
1996
- #: includes/preview.php:2214
1997
  msgid "Animate"
1998
  msgstr "Animiraj"
1999
 
2000
- #: includes/preview.php:2280
2001
  msgid ""
2002
  "This is a preview of the code between dummy paragraphs. Here you can test "
2003
  "various block alignments, visually edit margin and padding values of the "
@@ -2012,7 +2017,7 @@ msgstr ""
2012
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2013
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2014
 
2015
- #: includes/preview.php:2283
2016
  msgid ""
2017
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2018
  "code with the alignment and style as it is set for this block. Highlight "
@@ -2022,7 +2027,7 @@ msgstr ""
2022
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2023
  "margin območje div-a za ovijanje in območje kode."
2024
 
2025
- #: includes/preview.php:2285
2026
  msgid ""
2027
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2028
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -2034,7 +2039,7 @@ msgstr ""
2034
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2035
  "Označi za označitev bloka."
2036
 
2037
- #: includes/preview.php:2291
2038
  msgid ""
2039
  "You can resize the window (and refresh the page to reload ads) to check "
2040
  "display with different screen widths.\n"
@@ -2046,7 +2051,7 @@ msgstr ""
2046
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2047
  "prenesle v aktivni blok."
2048
 
2049
- #: includes/preview.php:2293
2050
  msgid ""
2051
  "Please note that the code, block name, alignment and style are taken from "
2052
  "the current block settings (may not be saved).\n"
@@ -2059,9 +2064,9 @@ msgstr ""
2059
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2060
  "kodo za blok."
2061
 
2062
- #: includes/preview.php:2298 includes/preview.php:2312
2063
- #: includes/preview.php:2322 includes/preview.php:2332
2064
- #: includes/preview.php:2342
2065
  msgid ""
2066
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2067
  "code with it's settings is called a block.\n"
@@ -2085,9 +2090,9 @@ msgstr ""
2085
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2086
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2087
 
2088
- #: includes/preview.php:2303 includes/preview.php:2317
2089
- #: includes/preview.php:2327 includes/preview.php:2337
2090
- #: includes/preview.php:2347
2091
  msgid ""
2092
  "Few very important things you need to know in order to insert code and "
2093
  "display some ad:\n"
@@ -2110,7 +2115,7 @@ msgstr ""
2110
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2111
  "uporabljate posamezne izjeme za prispevke/strani."
2112
 
2113
- #: includes/preview.php:2309
2114
  msgid ""
2115
  "This is a preview of the code for sticky ads. Here you can test various "
2116
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2257,7 +2262,7 @@ msgstr ""
2257
  msgid "General Settings"
2258
  msgstr "Splošne Nastavitve"
2259
 
2260
- #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2544
2261
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2262
  msgstr ""
2263
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
@@ -2294,7 +2299,7 @@ msgstr "Pokaži oglasne enote AdSense"
2294
  msgid "Clear block"
2295
  msgstr "Počisti blok"
2296
 
2297
- #: settings.php:658 settings.php:3640
2298
  msgid "Copy block"
2299
  msgstr "Kopiraj blok"
2300
 
@@ -2467,7 +2472,7 @@ msgstr ""
2467
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2468
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2469
 
2470
- #: settings.php:978 settings.php:3056
2471
  msgid "Posts"
2472
  msgstr "Prispevki"
2473
 
@@ -2481,7 +2486,7 @@ msgstr ""
2481
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2482
  "lahko odvisni od ročic, ki jih tema uporablja)"
2483
 
2484
- #: settings.php:983 settings.php:3058
2485
  msgid "Homepage"
2486
  msgstr "Domača stran"
2487
 
@@ -2489,7 +2494,7 @@ msgstr "Domača stran"
2489
  msgid "Enable insertion on category blog pages (including sub-pages)"
2490
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2491
 
2492
- #: settings.php:988 settings.php:3059
2493
  msgid "Category pages"
2494
  msgstr "Strani kategorij"
2495
 
@@ -2510,7 +2515,7 @@ msgstr ""
2510
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2511
  "izjem."
2512
 
2513
- #: settings.php:1006 settings.php:3057
2514
  msgid "Static pages"
2515
  msgstr "Statične strani"
2516
 
@@ -2518,7 +2523,7 @@ msgstr "Statične strani"
2518
  msgid "Enable insertion on search blog pages"
2519
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2520
 
2521
- #: settings.php:1011 settings.php:3061
2522
  msgid "Search pages"
2523
  msgstr "Iskalne strani"
2524
 
@@ -2639,7 +2644,7 @@ msgstr "HTML element"
2639
  msgid "HTML element selector or comma separated list of selectors"
2640
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2641
 
2642
- #: settings.php:1209 settings.php:2449
2643
  msgid "Action"
2644
  msgstr "Akcija"
2645
 
@@ -2927,7 +2932,7 @@ msgid "Enable shortcode for manual insertion of this block in posts and pages"
2927
  msgstr ""
2928
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2929
 
2930
- #: settings.php:1636 settings.php:3674
2931
  msgid "Shortcode"
2932
  msgstr "Kratka koda"
2933
 
@@ -3364,7 +3369,7 @@ msgstr "Predogled kode za ovijanje blokov"
3364
  msgid "Wrapping div"
3365
  msgstr "div za ovijanje"
3366
 
3367
- #: settings.php:2238 settings.php:2655
3368
  msgid "BLOCK CODE"
3369
  msgstr "KODA BLOKA"
3370
 
@@ -3419,7 +3424,7 @@ msgstr "Prednost za ročico (privzeta je 10)"
3419
  msgid "Enable insertion of this code into HTML page header"
3420
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3421
 
3422
- #: settings.php:2323 settings.php:2381 settings.php:2549
3423
  msgid "Process PHP code"
3424
  msgstr "Procesiraj PHP kodo"
3425
 
@@ -3478,32 +3483,32 @@ msgstr ""
3478
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3479
  "Stran ne obstaja"
3480
 
3481
- #: settings.php:2434
 
 
 
 
 
3482
  msgid "Enable detection of ad blocking"
3483
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3484
 
3485
- #: settings.php:2439
3486
- msgctxt "ad blocking detection"
3487
- msgid "NOT ENABLED"
3488
- msgstr "NI OMOGOČENO"
3489
-
3490
- #: settings.php:2452
3491
  msgid "Global action when ad blocking is detected"
3492
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3493
 
3494
- #: settings.php:2458
3495
  msgid "No action for"
3496
  msgstr "Ni akcije za"
3497
 
3498
- #: settings.php:2459
3499
  msgid "Exceptions for global action when ad blocking is detected."
3500
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3501
 
3502
- #: settings.php:2469
3503
  msgid "Delay Action"
3504
  msgstr "Zakasni Akcijo"
3505
 
3506
- #: settings.php:2472
3507
  msgid ""
3508
  "Number of page views to delay action when ad blocking is detected. Leave "
3509
  "empty for no delay (action fires on first page view). Sets cookie."
@@ -3512,16 +3517,16 @@ msgstr ""
3512
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3513
  "strani). Nastavi piškotek."
3514
 
3515
- #: settings.php:2472
3516
  msgctxt "Delay Action for x "
3517
  msgid "page views"
3518
  msgstr "ogledov strani"
3519
 
3520
- #: settings.php:2477
3521
  msgid "No Action Period"
3522
  msgstr "Obdobje Brez Akcije"
3523
 
3524
- #: settings.php:2480
3525
  msgid ""
3526
  "Number of days to supress action when ad blocking is detected. Leave empty "
3527
  "for no no-action period (action fires always after defined page view delay). "
@@ -3531,16 +3536,16 @@ msgstr ""
3531
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3532
  "strani). Nastavi piškotek."
3533
 
3534
- #: settings.php:2480
3535
  msgctxt "no action period"
3536
  msgid "days"
3537
  msgstr "dni"
3538
 
3539
- #: settings.php:2485
3540
  msgid "Custom Selectors"
3541
  msgstr "Selektorji Po Meri"
3542
 
3543
- #: settings.php:2488
3544
  msgid ""
3545
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3546
  "blocking detection. Invisible element or element with zero height means ad "
@@ -3550,15 +3555,15 @@ msgstr ""
3550
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3551
  "pomeni prisotnost blokiranja oglasov."
3552
 
3553
- #: settings.php:2500
3554
  msgid "Redirection Page"
3555
  msgstr "Stran za Preusmeritev"
3556
 
3557
- #: settings.php:2512
3558
  msgid "Custom Url"
3559
  msgstr "Url Po Meri"
3560
 
3561
- #: settings.php:2517
3562
  msgid ""
3563
  "Static page for redirection when ad blocking is detected. For other pages "
3564
  "select Custom url and set it below."
@@ -3566,35 +3571,35 @@ msgstr ""
3566
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3567
  "strani izberite Url Po Meri in ga nastavite spodaj."
3568
 
3569
- #: settings.php:2526
3570
  msgid "Custom Redirection Url"
3571
  msgstr "Url za Preusmeritev Po Meri"
3572
 
3573
- #: settings.php:2538
3574
  msgid "Message HTML code"
3575
  msgstr "HTML koda sporočila"
3576
 
3577
- #: settings.php:2551
3578
  msgid "Preview message when ad blocking is detected"
3579
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3580
 
3581
- #: settings.php:2580
3582
  msgid "Prevent visitors from closing the warning message"
3583
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3584
 
3585
- #: settings.php:2580
3586
  msgid "Undismissible Message"
3587
  msgstr "Neodstranljivo Sporočilo"
3588
 
3589
- #: settings.php:2586
3590
  msgid "Not undismissible for"
3591
  msgstr "Ni neodstranljivo za"
3592
 
3593
- #: settings.php:2587
3594
  msgid "Users which can close the warning message."
3595
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3596
 
3597
- #: settings.php:2601
3598
  msgid ""
3599
  "Force showing admin toolbar for administrators when viewing site. Enable "
3600
  "this option when you are logged in as admin and you don't see admin toolbar."
@@ -3603,84 +3608,84 @@ msgstr ""
3603
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3604
  "skrbnike."
3605
 
3606
- #: settings.php:2609
3607
  msgid "Disable header code (Header tab)"
3608
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3609
 
3610
- #: settings.php:2613
3611
  msgid "Disable footer code (Footer tab)"
3612
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3613
 
3614
  #. translators: %s: Ad Inserter
3615
- #: settings.php:2617
3616
  msgid "Disable %s JavaScript code"
3617
  msgstr "Onemogoči %s JavaScript kodo"
3618
 
3619
  #. translators: %s: Ad Inserter
3620
- #: settings.php:2621
3621
  msgid "Disable %s CSS code"
3622
  msgstr "Onemogoči %s CSS kodo"
3623
 
3624
- #: settings.php:2625
3625
  msgid ""
3626
  "Disable PHP code processing (in all blocks including header and footer code)"
3627
  msgstr ""
3628
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3629
 
3630
- #: settings.php:2629
3631
  msgid "Disable insertion of all blocks"
3632
  msgstr "Onemogoči vstavljanje vseh blokov"
3633
 
3634
- #: settings.php:2633
3635
  msgid "Disable insertions"
3636
  msgstr "Onemogoči vstavljanja"
3637
 
3638
  #. translators: %s: Ad Inserter
3639
- #: settings.php:2645
3640
  msgid "%s CSS CODE"
3641
  msgstr "%s CSS KODA"
3642
 
3643
- #: settings.php:2648
3644
  msgid "HEADER CODE"
3645
  msgstr "KODA GLAVE"
3646
 
3647
  #. translators: %s: PHP tags
3648
- #: settings.php:2654
3649
  msgid "BLOCK PHP CODE"
3650
  msgstr "PHP KODA BLOKA"
3651
 
3652
  #. translators: %s: Ad Inserter
3653
- #: settings.php:2660
3654
  msgid "%s JS CODE"
3655
  msgstr "%s JS KODA"
3656
 
3657
- #: settings.php:2663
3658
  msgid "FOOTER CODE"
3659
  msgstr "KODA NOGE"
3660
 
3661
- #: settings.php:2672
3662
  msgid "Force showing admin toolbar when viewing site"
3663
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3664
 
3665
- #: settings.php:2679
3666
  msgid "Enable debugging functions in admin toolbar"
3667
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3668
 
3669
- #: settings.php:2681
3670
  msgid "Debugging functions in admin toolbar"
3671
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3672
 
3673
- #: settings.php:2688
3674
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3675
  msgstr ""
3676
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3677
  "zaslonih"
3678
 
3679
- #: settings.php:2690
3680
  msgid "Debugging functions on mobile screens"
3681
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3682
 
3683
- #: settings.php:2697
3684
  msgid ""
3685
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3686
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3695,11 +3700,11 @@ msgstr ""
3695
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3696
  "vedno omogočeno."
3697
 
3698
- #: settings.php:2699
3699
  msgid "Remote debugging"
3700
  msgstr "Oddaljeno razhroščevanje"
3701
 
3702
- #: settings.php:2706
3703
  msgid ""
3704
  "Disable translation to see original texts for the settings and messages in "
3705
  "English"
@@ -3707,179 +3712,179 @@ msgstr ""
3707
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3708
  "angleščini"
3709
 
3710
- #: settings.php:2708
3711
  msgid "Disable translation"
3712
  msgstr "Onemogoči prevod"
3713
 
3714
- #: settings.php:3044
3715
  msgid "Available positions for current theme"
3716
  msgstr "Razpoložljivi položaji za trenutno temo"
3717
 
3718
- #: settings.php:3045
3719
  msgid "Error checking pages"
3720
  msgstr "Napaka pri preverjanju strani"
3721
 
3722
- #: settings.php:3048
3723
  msgid "Toggle theme checker for available positions for automatic insertion"
3724
  msgstr ""
3725
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3726
 
3727
- #: settings.php:3048
3728
  msgctxt "Button"
3729
  msgid "Check"
3730
  msgstr "Preveri"
3731
 
3732
- #: settings.php:3055
3733
  msgid "Position"
3734
  msgstr "Položaj"
3735
 
3736
- #: settings.php:3060
3737
  msgid "Archive pages"
3738
  msgstr "Strani arhiva"
3739
 
3740
- #: settings.php:3119
3741
  msgid ""
3742
  "Position not available because output buffering (tab [*]) is not enabled"
3743
  msgstr ""
3744
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3745
 
3746
- #: settings.php:3122 strings.php:219
3747
  msgid "Position not checked yet"
3748
  msgstr "Položaj še ni bil preverjen"
3749
 
3750
- #: settings.php:3153
3751
  msgid "Toggle active/all blocks"
3752
  msgstr "Preklopi aktive/vse bloke"
3753
 
3754
- #: settings.php:3157 strings.php:206
3755
  msgid "Rearrange block order"
3756
  msgstr "Preuredi vrstni red blokov"
3757
 
3758
- #: settings.php:3162
3759
  msgid "Save new block order"
3760
  msgstr "Shrani vrstni red blokov"
3761
 
3762
- #: settings.php:3162
3763
  msgid "Save Changes"
3764
  msgstr "Sharani Nastavitve"
3765
 
3766
- #: settings.php:3187
3767
  msgid "Toggle active/all ad units"
3768
  msgstr "Preklopi aktivne/vse oglasne enote"
3769
 
3770
- #: settings.php:3191
3771
  msgid "Reload AdSense ad units"
3772
  msgstr "Ponovno naloži oglasne enote AdSense"
3773
 
3774
- #: settings.php:3195
3775
  msgid "Clear authorization to access AdSense account"
3776
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3777
 
3778
- #: settings.php:3199 settings.php:3831 settings.php:3898 strings.php:214
3779
  msgid "Google AdSense Homepage"
3780
  msgstr "Google AdSense Domača Stran"
3781
 
3782
- #: settings.php:3222
3783
  msgid "Reload ads.txt file"
3784
  msgstr "Ponovno naloži datoteko ads.txt"
3785
 
3786
  #. translators: %s: ads.txt
3787
- #: settings.php:3226
3788
  msgid "Open %s"
3789
  msgstr "Odpri %s"
3790
 
3791
- #: settings.php:3230
3792
  msgid "Switch to table view"
3793
  msgstr "Preklopi na tabelarični pogled"
3794
 
3795
- #: settings.php:3234
3796
  msgid "Switch to editor"
3797
  msgstr "Preklopi na urejevalnik"
3798
 
3799
- #: settings.php:3238
3800
  msgid "Save ads.txt file"
3801
  msgstr "Shrani datoteko ads.txt"
3802
 
3803
- #: settings.php:3373 settings.php:3381 strings.php:199
3804
  msgid "Warning"
3805
  msgstr "Opozorilo"
3806
 
3807
- #: settings.php:3373
3808
  msgid "ads.txt file must be placed on the root domain"
3809
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3810
 
3811
  #. translators: %s: file path
3812
- #: settings.php:3374
3813
  msgid "WordPress is installed in %s"
3814
  msgstr "WordPress je nameščen v %s"
3815
 
3816
- #: settings.php:3375
3817
  msgid "Showing file"
3818
  msgstr "Prikazana datoteka"
3819
 
3820
- #: settings.php:3381
3821
  msgid "File %s not found"
3822
  msgstr "Datoteka %s ni najdena"
3823
 
3824
- #: settings.php:3388
3825
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3826
  msgstr ""
3827
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3828
 
3829
- #: settings.php:3405
3830
  msgid "Advertising system"
3831
  msgstr "Oglaševalski sistem"
3832
 
3833
- #: settings.php:3406
3834
  msgid "Account ID"
3835
  msgstr "ID Računa"
3836
 
3837
- #: settings.php:3408
3838
  msgid "Certification authority ID"
3839
  msgstr "ID organa za potrjevanje"
3840
 
3841
- #: settings.php:3423
3842
  msgid "Account ID found in block and present in ads.txt"
3843
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3844
 
3845
- #: settings.php:3427
3846
  msgid "Account ID found in block but not present in ads.txt"
3847
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3848
 
3849
- #: settings.php:3643
3850
  msgid "Preview block"
3851
  msgstr "Predogled bloka"
3852
 
3853
- #: settings.php:3652
3854
  msgid "Insertion disabled"
3855
  msgstr "Vstavljanje onemogočeno"
3856
 
3857
- #: settings.php:3676
3858
  msgid "Widget positions"
3859
  msgstr "Položaji gradnikov"
3860
 
3861
- #: settings.php:3742
3862
  msgid "Ad unit"
3863
  msgstr "Enota"
3864
 
3865
- #: settings.php:3744
3866
  msgid "Slot ID"
3867
  msgstr "ID mesta"
3868
 
3869
- #: settings.php:3770
3870
  msgid "Copy AdSense code"
3871
  msgstr "Kopiraj kodo AdSense"
3872
 
3873
- #: settings.php:3773
3874
  msgid "Preview AdSense ad"
3875
  msgstr "Predogled oglasa AdSense"
3876
 
3877
- #: settings.php:3776
3878
  msgid "Get AdSense code"
3879
  msgstr "Pridobi kodo AdSense"
3880
 
3881
  #. translators: %s: HTML tags
3882
- #: settings.php:3808
3883
  msgid ""
3884
  "Please %s clear authorization %s with the button %s above and once again "
3885
  "authorize access to your AdSense account."
@@ -3887,16 +3892,16 @@ msgstr ""
3887
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3888
  "avtorizirajte dostop do vašega računa AdSense."
3889
 
3890
- #: settings.php:3827
3891
  msgid "AdSense Integration"
3892
  msgstr "Integracija AdSense"
3893
 
3894
- #: settings.php:3829
3895
  msgid "AdSense Integration - Step 2"
3896
  msgstr "Integracija AdSense - Korak 2"
3897
 
3898
  #. translators: %s: HTML tags
3899
- #: settings.php:3835
3900
  msgid ""
3901
  "Authorize %s to access your AdSense account. Click on the %s Get "
3902
  "Authorization Code %s button to open a new window where you can allow "
@@ -3909,7 +3914,7 @@ msgstr ""
3909
  "Avtoriziraj. %s"
3910
 
3911
  #. translators: %s: HTML tags
3912
- #: settings.php:3842
3913
  msgid ""
3914
  "If you get error, can't access ad units or would like to use own Google API "
3915
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3920,7 +3925,7 @@ msgstr ""
3920
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3921
 
3922
  #. translators: %s: HTML tags
3923
- #: settings.php:3844
3924
  msgid ""
3925
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3926
  "Authorization Code %s button to open a new window where you can allow "
@@ -3933,7 +3938,7 @@ msgstr ""
3933
  "gumb %s Avtoriziraj. %s"
3934
 
3935
  #. translators: %s: HTML tags
3936
- #: settings.php:3851
3937
  msgid ""
3938
  "If you get error %s invalid client %s click on the button %s Clear and "
3939
  "return to Step 1 %s to re-enter Client ID and Client Secret."
@@ -3941,32 +3946,32 @@ msgstr ""
3941
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3942
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3943
 
3944
- #: settings.php:3862
3945
  msgid "Get Authorization Code"
3946
  msgstr "Pridobi Avtoriazcijsko Kodo"
3947
 
3948
- #: settings.php:3865
3949
  msgid "Enter Authorization Code"
3950
  msgstr "Vnesi Avorizacijsko Kodo"
3951
 
3952
- #: settings.php:3875
3953
  msgid "Use own API IDs"
3954
  msgstr "Uporabi lastne API ID-je"
3955
 
3956
- #: settings.php:3877
3957
  msgid "Clear and return to Step 1"
3958
  msgstr "Odstrani in se vrni na Korak 1"
3959
 
3960
- #: settings.php:3881
3961
  msgid "Authorize"
3962
  msgstr "Avtoriziraj"
3963
 
3964
- #: settings.php:3897
3965
  msgid "AdSense Integration - Step 1"
3966
  msgstr "Integracija AdSense - Korak 1"
3967
 
3968
  #. translators: %s: Ad Inserter
3969
- #: settings.php:3901
3970
  msgid ""
3971
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3972
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3979,12 +3984,12 @@ msgstr ""
3979
  "Klienta in Skrivnost Klienta."
3980
 
3981
  #. translators: %s: HTML tags
3982
- #: settings.php:3910
3983
  msgid "Go to %s Google APIs and Services console %s"
3984
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3985
 
3986
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3987
- #: settings.php:3911
3988
  msgid ""
3989
  "Create %1$s project - if the project and IDs are already created click on "
3990
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
@@ -3993,7 +3998,7 @@ msgstr ""
3993
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3994
 
3995
  #. translators: %s: HTML tags
3996
- #: settings.php:3912
3997
  msgid ""
3998
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3999
  "create a new project"
@@ -4002,12 +4007,12 @@ msgstr ""
4002
  "ustvaritev novega projekta"
4003
 
4004
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4005
- #: settings.php:3913
4006
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4007
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4008
 
4009
  #. translators: %s: HTML tags
4010
- #: settings.php:3914
4011
  msgid ""
4012
  "Click on project selection, wait for the project to be created and then and "
4013
  "select %s as the current project"
@@ -4016,39 +4021,39 @@ msgstr ""
4016
  "izberite %s kot trenutni projekt"
4017
 
4018
  #. translators: %s: HTML tags
4019
- #: settings.php:3915
4020
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4021
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4022
 
4023
  #. translators: %s: HTML tags
4024
- #: settings.php:3916
4025
  msgid "Search for adsense and enable %s"
4026
  msgstr "Poiščite adsense in omogočite %s"
4027
 
4028
  #. translators: %s: HTML tags
4029
- #: settings.php:3917
4030
  msgid "Click on %s CREATE CREDENTIALS %s"
4031
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4032
 
4033
  #. translators: %s: HTML tags
4034
- #: settings.php:3918
4035
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4036
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4037
 
4038
  #. translators: %s: HTML tags
4039
- #: settings.php:3919
4040
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4041
  msgstr ""
4042
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4043
  "podatki %s"
4044
 
4045
  #. translators: %s: HTML tags
4046
- #: settings.php:3920
4047
  msgid "Click on %s What credentials do I need? %s"
4048
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4049
 
4050
  #. translators: %s: HTML tags
4051
- #: settings.php:3921
4052
  msgid ""
4053
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4054
  "Ad Inserter client %s"
@@ -4057,7 +4062,7 @@ msgstr ""
4057
  "%s Ad Inserter klient %s"
4058
 
4059
  #. translators: %s: HTML tags
4060
- #: settings.php:3922
4061
  msgid ""
4062
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4063
  "enter %s"
@@ -4066,17 +4071,17 @@ msgstr ""
4066
  "uporabnikom %s vnesite %s"
4067
 
4068
  #. translators: %s: HTML tags
4069
- #: settings.php:3923
4070
  msgid "Click on %s Continue %s"
4071
  msgstr "Kliknite na %s Nadaljuj %s"
4072
 
4073
  #. translators: %s: HTML tags
4074
- #: settings.php:3924
4075
  msgid "Click on %s Done %s"
4076
  msgstr "Kliknite na %s Končaj %s"
4077
 
4078
  #. translators: %s: HTML tags
4079
- #: settings.php:3925
4080
  msgid ""
4081
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4082
  "secret %s"
@@ -4084,58 +4089,58 @@ msgstr ""
4084
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4085
  "Skrivnost klienta %s"
4086
 
4087
- #: settings.php:3926
4088
  msgid "Copy them to the appropriate fields below"
4089
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4090
 
4091
- #: settings.php:3932
4092
  msgid "Client ID"
4093
  msgstr "ID klienta"
4094
 
4095
- #: settings.php:3935
4096
  msgid "Enter Client ID"
4097
  msgstr "Vnesite ID klienta"
4098
 
4099
- #: settings.php:3940
4100
  msgid "Client secret"
4101
  msgstr "Skrivnost klienta"
4102
 
4103
- #: settings.php:3943
4104
  msgid "Enter Client secret"
4105
  msgstr "Vnesite Skrivnost klienta"
4106
 
4107
- #: settings.php:3953
4108
  msgid "Use default API IDs"
4109
  msgstr "Uporabi privzete API ID-je"
4110
 
4111
- #: settings.php:3958
4112
  msgid "Save"
4113
  msgstr "Shrani"
4114
 
4115
- #: settings.php:4234 settings.php:4247 settings.php:4260 settings.php:4275
4116
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4117
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4118
 
4119
- #: settings.php:4239 settings.php:4252 settings.php:4265 settings.php:4280
4120
- #: settings.php:4451 settings.php:4455 settings.php:4457 settings.php:4473
4121
- #: settings.php:4485 settings.php:4488 settings.php:4494 settings.php:4506
4122
  msgid "Looking for AdSense alternative?"
4123
  msgstr "Iščete alternativo za AdSense?"
4124
 
4125
- #: settings.php:4291
4126
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4127
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4128
 
4129
- #: settings.php:4296 settings.php:4453 settings.php:4465 settings.php:4491
4130
- #: settings.php:4514
4131
  msgid "Use Infolinks ads with Adsense to earn more"
4132
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4133
 
4134
- #: settings.php:4315 settings.php:4353
4135
  msgid "Support plugin development"
4136
  msgstr "Podprite razvoj vtičnika"
4137
 
4138
- #: settings.php:4316 settings.php:4354
4139
  msgid ""
4140
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4141
  "reviewing the plugin on WordPres"
@@ -4143,12 +4148,12 @@ msgstr ""
4143
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4144
  "razširiti novico z oceno vtičnika na WordPress-u"
4145
 
4146
- #: settings.php:4316
4147
  msgctxt "Review ad Inserter"
4148
  msgid "Review"
4149
  msgstr "Oceni"
4150
 
4151
- #: settings.php:4317
4152
  msgid ""
4153
  "Support free Ad Inserter development. If you are making money with Ad "
4154
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
@@ -4157,16 +4162,16 @@ msgstr ""
4157
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4158
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4159
 
4160
- #: settings.php:4317
4161
  msgid "Donate"
4162
  msgstr "Donirajte"
4163
 
4164
- #: settings.php:4324 settings.php:4369
4165
  msgid "Average rating of the plugin - Thank you!"
4166
  msgstr "Povprečna ocena vtičnika - Hvala!"
4167
 
4168
  #. translators: %s: Ad Inserter, HTML tags
4169
- #: settings.php:4335
4170
  msgid ""
4171
  "You've been using %s for a while now, and I hope you're happy with it. "
4172
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -4180,24 +4185,24 @@ msgstr ""
4180
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4181
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4182
 
4183
- #: settings.php:4354
4184
  msgid "Review"
4185
  msgstr "Ocena"
4186
 
4187
- #: settings.php:4358
4188
  msgid "Ad Inserter on Twitter"
4189
  msgstr "Ad Inserter na Twitter-ju"
4190
 
4191
- #: settings.php:4359
4192
  msgid "Ad Inserter on Facebook"
4193
  msgstr "Ad Inserter na Facebook-u"
4194
 
4195
- #: settings.php:4362
4196
  msgid "Follow Ad Inserter"
4197
  msgstr "Sledi Ad Inserter-ju"
4198
 
4199
  #. translators: %s: HTML tags
4200
- #: settings.php:4389
4201
  msgid ""
4202
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4203
  "and %s Common Settings %s pages"
@@ -4206,7 +4211,7 @@ msgstr ""
4206
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4207
 
4208
  #. translators: %s: HTML tags
4209
- #: settings.php:4401
4210
  msgid ""
4211
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4212
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
@@ -4216,7 +4221,16 @@ msgstr ""
4216
  "%s"
4217
 
4218
  #. translators: %s: HTML tags
4219
- #: settings.php:4420
 
 
 
 
 
 
 
 
 
4220
  msgid ""
4221
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4222
  "diagnose and fix the problem."
@@ -4225,7 +4239,7 @@ msgstr ""
4225
  "navodili za diagnozo in rešitvami za težave."
4226
 
4227
  #. translators: %s: HTML tags
4228
- #: settings.php:4424
4229
  msgid ""
4230
  "If you need any kind of help or support, please do not hesitate to open a "
4231
  "thread on the %s support forum. %s"
@@ -4233,44 +4247,44 @@ msgstr ""
4233
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4234
  "nit na %s podpornem forumu. %s"
4235
 
4236
- #: settings.php:4469 settings.php:4510
4237
  msgid "A/B testing - Track ad impressions and clicks"
4238
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4239
 
4240
- #: settings.php:4477 settings.php:4502
4241
  msgid "Code preview with visual CSS editor"
4242
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4243
 
4244
- #: settings.php:4522
4245
  msgid "Looking for Pro Ad Management plugin?"
4246
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4247
 
4248
- #: settings.php:4523
4249
  msgid "To Optimally Monetize your WordPress website?"
4250
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4251
 
4252
  #. translators: %s HTML tags
4253
- #: settings.php:4526
4254
  msgid "%s AdSense Integration %s"
4255
  msgstr "%s Integracija AdSense %s"
4256
 
4257
  #. translators: %s HTML tags
4258
- #: settings.php:4527
4259
  msgid "Syntax highlighting %s editor %s"
4260
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4261
 
4262
  #. translators: %s HTML tags
4263
- #: settings.php:4528
4264
  msgid "%s Code preview %s with visual CSS editor"
4265
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4266
 
4267
  #. translators: %s HTML tags
4268
- #: settings.php:4529
4269
  msgid "Simple user interface - all settings on a single page"
4270
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4271
 
4272
  #. translators: %s HTML tags
4273
- #: settings.php:4530
4274
  msgid ""
4275
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4276
  "image / excerpt"
@@ -4279,27 +4293,27 @@ msgstr ""
4279
  "%s / sliko / izvlečkom"
4280
 
4281
  #. translators: %s HTML tags
4282
- #: settings.php:4531
4283
  msgid "%s Automatic insertion %s between posts on blog pages"
4284
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4285
 
4286
  #. translators: %s HTML tags
4287
- #: settings.php:4532
4288
  msgid "%s Automatic insertion %s before, between and after comments"
4289
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4290
 
4291
  #. translators: %s HTML tags
4292
- #: settings.php:4533
4293
  msgid "%s Automatic insertion %s after %s or before %s tag"
4294
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4295
 
4296
  #. translators: %s HTML tags
4297
- #: settings.php:4534
4298
  msgid "Automatic insertion at %s custom hook positions %s"
4299
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4300
 
4301
  #. translators: %s HTML tags
4302
- #: settings.php:4535
4303
  msgid ""
4304
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4305
  "selectors)"
@@ -4308,17 +4322,17 @@ msgstr ""
4308
  "selektorjev)"
4309
 
4310
  #. translators: %s HTML tags
4311
- #: settings.php:4536
4312
  msgid "%s Insertion exceptions %s for individual posts and pages"
4313
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4314
 
4315
  #. translators: %s HTML tags
4316
- #: settings.php:4537
4317
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4318
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4319
 
4320
  #. translators: %s HTML tags
4321
- #: settings.php:4538
4322
  msgid ""
4323
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4324
  "scrolls)"
@@ -4327,19 +4341,19 @@ msgstr ""
4327
  "se stran pomika)"
4328
 
4329
  #. translators: %s HTML tags
4330
- #: settings.php:4539
4331
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4332
  msgstr ""
4333
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4334
 
4335
  #. translators: %s HTML tags
4336
- #: settings.php:4540
4337
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4338
  msgstr ""
4339
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4340
 
4341
  #. translators: %s HTML tags
4342
- #: settings.php:4541
4343
  msgid ""
4344
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4345
  "visible)"
@@ -4348,7 +4362,7 @@ msgstr ""
4348
  "postane viden)"
4349
 
4350
  #. translators: %s HTML tags
4351
- #: settings.php:4542
4352
  msgid ""
4353
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4354
  msgstr ""
@@ -4356,12 +4370,12 @@ msgstr ""
4356
  "strani)"
4357
 
4358
  #. translators: %s HTML tags
4359
- #: settings.php:4543
4360
  msgid "Block %s alignment and style %s customizations"
4361
  msgstr "%s Poravnave in slogi %s bloka po meri"
4362
 
4363
  #. translators: %s HTML tags
4364
- #: settings.php:4544
4365
  msgid ""
4366
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4367
  "TOS)"
@@ -4369,7 +4383,7 @@ msgstr ""
4369
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4370
 
4371
  #. translators: %s HTML tags
4372
- #: settings.php:4545
4373
  msgid ""
4374
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4375
  "feeds"
@@ -4378,17 +4392,17 @@ msgstr ""
4378
  "virih"
4379
 
4380
  #. translators: %s HTML tags
4381
- #: settings.php:4546
4382
  msgid "%s Ad rotation %s (works also with caching)"
4383
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4384
 
4385
  #. translators: %s HTML tags
4386
- #: settings.php:4547
4387
  msgid "Create, edit and check %s ads.txt %s file"
4388
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4389
 
4390
  #. translators: %s HTML tags
4391
- #: settings.php:4548
4392
  msgid ""
4393
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4394
  "AdSense)"
@@ -4397,66 +4411,76 @@ msgstr ""
4397
  "AdSense)"
4398
 
4399
  #. translators: %s HTML tags
4400
- #: settings.php:4549
 
 
 
 
 
 
 
 
 
 
4401
  msgid "Support for %s A/B testing %s"
4402
  msgstr "Podpora za %s A/B testiranje %s"
4403
 
4404
  #. translators: %s HTML tags
4405
- #: settings.php:4550
4406
  msgid "Support for %s lazy loading %s"
4407
  msgstr "Podpora za %s leno nalaganje %s"
4408
 
4409
  #. translators: %s HTML tags
4410
- #: settings.php:4551
4411
  msgid "Support for ads on %s AMP pages %s"
4412
  msgstr "Podpora za oglase na %s AMP straneh %s"
4413
 
4414
  #. translators: %s HTML tags
4415
- #: settings.php:4552
4416
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4417
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4418
 
4419
  #. translators: %s HTML tags
4420
- #: settings.php:4553
4421
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4422
  msgstr ""
4423
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4424
 
4425
  #. translators: %s HTML tags
4426
- #: settings.php:4554
4427
  msgid "PHP code processing"
4428
  msgstr "Procesiranje PHP kode"
4429
 
4430
  #. translators: %s HTML tags
4431
- #: settings.php:4555
4432
  msgid "%s Banner %s code generator"
4433
  msgstr "Generator kode za %s pasice %s"
4434
 
4435
  #. translators: %s HTML tags
4436
- #: settings.php:4556
4437
  msgid "Support for %s header and footer %s code"
4438
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4439
 
4440
  #. translators: %s HTML tags
4441
- #: settings.php:4557
4442
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4443
  msgstr ""
4444
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4445
 
4446
  #. translators: %s HTML tags
4447
- #: settings.php:4558
4448
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4449
  msgstr ""
4450
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4451
  "strežnika"
4452
 
4453
  #. translators: %s HTML tags
4454
- #: settings.php:4559
4455
  msgid "Client-side %s mobile device detection %s (works with caching)"
4456
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4457
 
4458
  #. translators: %s HTML tags
4459
- #: settings.php:4560
4460
  msgid ""
4461
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4462
  "protection"
@@ -4465,12 +4489,12 @@ msgstr ""
4465
  "vsebine"
4466
 
4467
  #. translators: %s HTML tags
4468
- #: settings.php:4561
4469
  msgid "%s Ad blocking statistics %s"
4470
  msgstr "%s Statistika blokiranja oglasov %s"
4471
 
4472
  #. translators: %s HTML tags
4473
- #: settings.php:4562
4474
  msgid ""
4475
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4476
  "referers"
@@ -4478,75 +4502,75 @@ msgstr ""
4478
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4479
 
4480
  #. translators: %s HTML tags
4481
- #: settings.php:4563
4482
  msgid ""
4483
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4484
  msgstr ""
4485
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4486
 
4487
  #. translators: %s HTML tags
4488
- #: settings.php:4564
4489
  msgid "%s Multisite options %s to limit settings on the sites"
4490
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4491
 
4492
  #. translators: %s HTML tags
4493
- #: settings.php:4565
4494
  msgid "%s Import/Export %s block or plugin settings"
4495
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4496
 
4497
  #. translators: %s HTML tags
4498
- #: settings.php:4566
4499
  msgid "%s Insertion scheduling %s with fallback option"
4500
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4501
 
4502
  #. translators: %s HTML tags
4503
- #: settings.php:4567
4504
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4505
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4506
 
4507
  #. translators: %s HTML tags
4508
- #: settings.php:4568
4509
  msgid "Simple troubleshooting with many %s debugging functions %s"
4510
  msgstr ""
4511
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4512
 
4513
  #. translators: %s HTML tags
4514
- #: settings.php:4569
4515
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4516
  msgstr ""
4517
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4518
 
4519
  #. translators: %s HTML tags
4520
- #: settings.php:4570
4521
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4522
  msgstr ""
4523
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4524
 
4525
  #. translators: %s HTML tags
4526
- #: settings.php:4571
4527
  msgid ""
4528
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4529
  msgstr ""
4530
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4531
 
4532
  #. translators: %s HTML tags
4533
- #: settings.php:4572
4534
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4535
  msgstr ""
4536
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4537
 
4538
  #. translators: %s HTML tags
4539
- #: settings.php:4573
4540
  msgid "No ads on the settings page"
4541
  msgstr "Stran z nastavitvami brez oglasov"
4542
 
4543
  #. translators: %s HTML tags
4544
- #: settings.php:4574
4545
- msgid "Premium support via email"
4546
- msgstr "Vrhunska podpora prek elektronske pošte"
4547
 
4548
  #. translators: %s HTML tags
4549
- #: settings.php:4577
4550
  msgid ""
4551
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4552
  "website with many advertising features to automatically insert adverts on "
@@ -4573,82 +4597,82 @@ msgstr ""
4573
  "bodo ohranile)."
4574
 
4575
  #. translators: %s HTML tags
4576
- #: settings.php:4590
4577
  msgid "Looking for %s Pro Ad Management plugin? %s"
4578
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4579
 
4580
  #. translators: %s HTML tags
4581
- #: settings.php:4595
4582
  msgid "Ads between posts"
4583
  msgstr "Oglasi med prispevki"
4584
 
4585
  #. translators: %s HTML tags
4586
- #: settings.php:4596
4587
  msgid "Ads between comments"
4588
  msgstr "Oglasi med komentarji"
4589
 
4590
  #. translators: %s HTML tags
4591
- #: settings.php:4597
4592
  msgid "Support via email"
4593
  msgstr "Podpora prek elektronske pošte"
4594
 
4595
  #. translators: %s HTML tags
4596
- #: settings.php:4603
4597
  msgid "%s Sticky positions %s"
4598
  msgstr "%s Lepljivi položaji %s"
4599
 
4600
  #. translators: %s HTML tags
4601
- #: settings.php:4604
4602
  msgid "%s Limit insertions %s"
4603
  msgstr "%s Omeji vstavljanja %s"
4604
 
4605
  #. translators: %s HTML tags
4606
- #: settings.php:4605
4607
  msgid "%s Clearance %s options"
4608
  msgstr "Možnosti %s izogibanja %s"
4609
 
4610
  #. translators: %s HTML tags
4611
- #: settings.php:4611
4612
  msgid "Ad rotation"
4613
  msgstr "Vrtenje oglasov"
4614
 
4615
  #. translators: %s HTML tags
4616
- #: settings.php:4612
4617
  msgid "%s A/B testing %s"
4618
  msgstr "%s A/B testiranje %s"
4619
 
4620
  #. translators: %s HTML tags
4621
- #: settings.php:4613
4622
  msgid "%s Ad tracking %s"
4623
  msgstr "%s Sledenje oglasom %s"
4624
 
4625
  #. translators: %s HTML tags
4626
- #: settings.php:4619
4627
  msgid "Support for %s AMP pages %s"
4628
  msgstr "Podpora za %s AMP strani %s"
4629
 
4630
  #. translators: %s HTML tags
4631
- #: settings.php:4620
4632
  msgid "%s Ad blocking detection %s"
4633
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4634
 
4635
  #. translators: %s HTML tags
4636
- #: settings.php:4621
4637
  msgid "%s Mobile device detection %s"
4638
  msgstr "%s Zaznavanje mobilne naprave %s"
4639
 
4640
  #. translators: %s HTML tags
4641
- #: settings.php:4628
4642
  msgid "64 code blocks"
4643
  msgstr "64 kodnih blokov"
4644
 
4645
  #. translators: %s HTML tags
4646
- #: settings.php:4629
4647
  msgid "%s GEO targeting %s"
4648
  msgstr "%s GEO ciljanje %s"
4649
 
4650
  #. translators: %s HTML tags
4651
- #: settings.php:4630
4652
  msgid "%s Scheduling %s"
4653
  msgstr "%s Urnik %s"
4654
 
4
  msgstr ""
5
  "Project-Id-Version: Ad Inserter 2.4.2\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-05-13 18:40:34+00:00\n"
8
+ "PO-Revision-Date: 2019-05-13 20:42+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:347
20
  msgctxt "Menu item"
21
  msgid "Debugging DEMO"
22
  msgstr "DEMO Razhroščevanje"
23
 
24
+ #: ad-inserter.php:363
25
  msgctxt "Menu item"
26
  msgid "Label Blocks"
27
  msgstr "Označi bloke"
28
 
29
+ #: ad-inserter.php:370
30
  msgctxt "Menu item"
31
  msgid "Show Positions"
32
  msgstr "Pokaži položaje"
33
 
34
+ #: ad-inserter.php:441
35
  msgctxt "Menu item"
36
  msgid "Show HTML Tags"
37
  msgstr "Pokaži HTML značke"
38
 
39
+ #: ad-inserter.php:448
40
  msgctxt "Menu item"
41
  msgid "Disable Insertion"
42
  msgstr "Onemogoči vstavljanje"
43
 
44
+ #: ad-inserter.php:457
45
  msgctxt "Menu item"
46
  msgid "Ad Blocking Status"
47
  msgstr "Status blokiranja oglasov"
48
 
49
+ #: ad-inserter.php:464
50
  msgctxt "Menu item"
51
  msgid "Simulate Ad Blocking"
52
  msgstr "Simuliraj blokiranje oglasov"
53
 
54
+ #: ad-inserter.php:474
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:1071
61
  msgid "Before"
62
  msgstr "Pred"
63
 
64
  #. translators: Debugging position name After HTML element
65
+ #: ad-inserter.php:1076
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:1081 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:1086 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:1091 strings.php:100
83
  msgid "Replace content"
84
  msgstr "Nadomesti vsebino"
85
 
86
  #. translators: Debugging position name Replace HTML element
87
+ #: ad-inserter.php:1096 strings.php:150
88
  msgid "Replace"
89
  msgstr "Nadomesti"
90
 
91
  #. translators: Debugging message when output buffering is enabled
92
+ #: ad-inserter.php:1143
93
  msgid "OUTPUT BUFFERING"
94
  msgstr "PREDPOMNJENJE IZHODA"
95
 
96
  #. translators: Debugging position
97
+ #: ad-inserter.php:1147
98
  msgid "Above Header"
99
  msgstr "Nad Glavo"
100
 
101
+ #: ad-inserter.php:1356
102
  msgctxt "Menu item"
103
  msgid "Log In"
104
  msgstr "Prijava"
105
 
106
  #. translators: %s: Ad Inserter
107
+ #: ad-inserter.php:1637 ad-inserter.php:2489
108
  msgid "%s Settings"
109
  msgstr "%s Nastavitve"
110
 
111
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
112
+ #: ad-inserter.php:2060
113
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
114
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
115
 
116
+ #: ad-inserter.php:2060
117
  msgid "NO ACTION"
118
  msgstr "NI AKCIJE"
119
 
120
+ #: ad-inserter.php:2061
121
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
122
  msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
123
 
124
+ #: ad-inserter.php:2062
125
  msgid "AD BLOCKING DETECTED - ACTION"
126
  msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
127
 
128
+ #: ad-inserter.php:2063
129
  msgid "AD BLOCKING NOT DETECTED"
130
  msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
131
 
132
+ #: ad-inserter.php:2064
133
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
134
  msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
135
 
136
+ #: ad-inserter.php:2065
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:2260
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:2261 includes/functions.php:1530
150
  msgid "No, thank you."
151
  msgstr "Ne, hvala."
152
 
153
  #. Translators: %s: Ad Inserter
154
+ #: ad-inserter.php:2264
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:2265 includes/functions.php:1533
160
  msgid "Not now, maybe later."
161
  msgstr "Ne zdaj, mogoče kasneje."
162
 
163
+ #: ad-inserter.php:2275
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:2277
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:2283
181
  msgid "Rate %s"
182
  msgstr "Ocenite %s"
183
 
184
+ #: ad-inserter.php:2288
185
  msgid "I already did."
186
  msgstr "Sem že."
187
 
188
+ #: ad-inserter.php:2302
189
  msgctxt "Menu item"
190
  msgid "Settings"
191
  msgstr "Nastavitve"
192
 
193
  #. translators: %s: Ad Inserter
194
+ #: ad-inserter.php:2376
195
  msgctxt "Meta box name"
196
  msgid "%s Individual Exceptions"
197
  msgstr "Posamezne Izjeme za %s"
198
 
199
+ #: ad-inserter.php:2405 ad-inserter.php:8122 class.php:1967
200
+ #: includes/preview.php:1976 includes/preview.php:2020
201
+ #: includes/preview.php:2057 settings.php:3672 strings.php:3
202
  msgid "Block"
203
  msgstr "Blok"
204
 
205
+ #: ad-inserter.php:2406 settings.php:3673 settings.php:3747
206
  msgid "Name"
207
  msgstr "Ime"
208
 
209
+ #: ad-inserter.php:2407 settings.php:3675
210
  msgid "Automatic insertion"
211
  msgstr "Samodejno vstavljanje"
212
 
213
+ #: ad-inserter.php:2410
214
  msgid "Default insertion for pages"
215
  msgstr "Privzeto vstavljanje za strani"
216
 
217
+ #: ad-inserter.php:2411
218
  msgid "Default insertion for posts"
219
  msgstr "Privzeto vstavljanje za prispevke"
220
 
221
  #. translators: For this post or page
222
+ #: ad-inserter.php:2414
223
  msgctxt "Page"
224
  msgid "For this"
225
  msgstr "Za to"
226
 
227
+ #: ad-inserter.php:2415
228
  msgctxt "Post"
229
  msgid "For this"
230
  msgstr "Za ta"
231
 
232
+ #: ad-inserter.php:2423
233
  msgctxt "Enabled/disabled on all"
234
  msgid "pages"
235
  msgstr "straneh"
236
 
237
+ #: ad-inserter.php:2424
238
  msgctxt "Default insertion for"
239
  msgid "pages"
240
  msgstr "strani"
241
 
242
+ #: ad-inserter.php:2428
243
  msgctxt "Enabled/disabled on all"
244
  msgid "posts"
245
  msgstr "prispevkih"
246
 
247
+ #: ad-inserter.php:2429
248
  msgctxt "Default insertion for"
249
  msgid "posts"
250
  msgstr "prispevke"
251
 
252
+ #: ad-inserter.php:2448 ad-inserter.php:2461 strings.php:156
253
  msgid "Enabled"
254
  msgstr "Omogočeno"
255
 
256
  #. translators: Menu items
257
+ #: ad-inserter.php:2448 ad-inserter.php:2461 includes/functions.php:2191
258
  #: strings.php:16
259
  msgid "Disabled"
260
  msgstr "Onemogočeno"
261
 
262
  #. translators: Enabled on all pages or posts
263
+ #: ad-inserter.php:2451
264
  msgid "Enabled on all"
265
  msgstr "Omogočeno na vseh"
266
 
267
  #. translators: Disabled on all pages or posts
268
+ #: ad-inserter.php:2453
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:2481
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:2486
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:2491
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:2494
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:2495
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:2497
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:2499
320
  msgid "Individual Exceptions"
321
  msgstr "Posamezne Izjeme"
322
 
323
+ #: ad-inserter.php:2544
324
  msgid "STATIC PAGE"
325
  msgstr "STATIČNA STRAN"
326
 
327
+ #: ad-inserter.php:2547
328
  msgid "POST"
329
  msgstr "PRISPEVEK"
330
 
331
+ #: ad-inserter.php:2550
332
  msgid "HOMEPAGE"
333
  msgstr "DOMAČA STRAN"
334
 
335
+ #: ad-inserter.php:2553
336
  msgid "CATEGORY PAGE"
337
  msgstr "STRAN KATEGORIJE"
338
 
339
+ #: ad-inserter.php:2556
340
  msgid "SEARCH PAGE"
341
  msgstr "STRAN ISKANJE"
342
 
343
+ #: ad-inserter.php:2559
344
  msgid "ARCHIVE PAGE"
345
  msgstr "STRAN ARHIVA"
346
 
347
+ #: ad-inserter.php:2562
348
  msgid "ERROR 404 PAGE"
349
  msgstr "STRAN NAPAKA 404"
350
 
351
+ #: ad-inserter.php:2565
352
  msgid "AJAX CALL"
353
  msgstr "AJAX KLIC"
354
 
355
+ #: ad-inserter.php:2568
356
  msgid "UNKNOWN PAGE TYPE"
357
  msgstr "NEZNAN TIP STRANI"
358
 
359
+ #: ad-inserter.php:2585
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:2586
364
  msgid "AD BLOCKING STATUS UNKNOWN"
365
  msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
366
 
367
  #. translators: %s: AdSense Auto Ads
368
+ #: ad-inserter.php:2610
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:2749
377
  msgid "Code for insertion"
378
  msgstr "Koda za vstavljanje"
379
 
380
+ #: ad-inserter.php:2749
381
  msgid "character"
382
  msgid_plural "characters"
383
  msgstr[0] "znak"
385
  msgstr[2] "znaki"
386
  msgstr[3] "znakov"
387
 
388
+ #: ad-inserter.php:2792
389
  msgid "Header code"
390
  msgstr "Koda v glavi"
391
 
392
+ #: ad-inserter.php:2792
393
  msgctxt "Header code"
394
  msgid "DISABLED"
395
  msgstr "ONEMOGOČENA"
396
 
397
+ #: ad-inserter.php:2792 ad-inserter.php:3014
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:2825
406
  msgid "Automatically placed by AdSense Auto ads code"
407
  msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
408
 
409
+ #: ad-inserter.php:3014
410
  msgid "Footer code"
411
  msgstr "Koda v nogi"
412
 
413
+ #: ad-inserter.php:3014
414
  msgctxt "Footer code"
415
  msgid "DISABLED"
416
  msgstr "ONEMOGOČENA"
417
 
418
+ #: ad-inserter.php:3020
419
  msgid "JAVASCRIPT NOT WORKING"
420
  msgstr "JAVASCRIPT NE DELA"
421
 
422
+ #: ad-inserter.php:3020
423
  msgid "NO JAVASCRIPT ERRORS"
424
  msgstr "BREZ JAVASCRIPT NAPAK"
425
 
426
+ #: ad-inserter.php:3020
427
  msgid "JAVASCRIPT ERRORS"
428
  msgstr "JAVASCRIPT NAPAKE"
429
 
430
  #. translators: block name (block with default settings)
431
+ #: ad-inserter.php:5152
432
  msgctxt "Block name"
433
  msgid "Default"
434
  msgstr "Privzeti"
435
 
436
  #. translators: %s: Ad Inserter
437
+ #: ad-inserter.php:5723
438
  msgid "Error importing %s settings."
439
  msgstr "Napaka pri uvozu %s nastavitev."
440
 
441
+ #: ad-inserter.php:5724
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:5773
450
  msgid "Settings saved."
451
  msgstr "Nastavitve shranjene."
452
 
453
+ #: ad-inserter.php:5858
454
  msgid "Settings cleared."
455
  msgstr "Nastavitve ponastavljene."
456
 
457
+ #: ad-inserter.php:6203 ad-inserter.php:6205 ad-inserter.php:6228
458
  msgid "word"
459
  msgid_plural "words"
460
  msgstr[0] "beseda"
462
  msgstr[2] "besede"
463
  msgstr[3] "besed"
464
 
465
+ #: ad-inserter.php:6242 ad-inserter.php:6354
466
  msgid "HTML TAGS REMOVED"
467
  msgstr "HTML ZNAČKE ODSTRANJENE"
468
 
469
+ #: ad-inserter.php:6430
470
  msgid "BEFORE COMMENTS"
471
  msgstr "PRED KOMENTARJI"
472
 
473
+ #: ad-inserter.php:6538
474
  msgid "AFTER COMMENTS"
475
  msgstr "PO KOMETARJIH"
476
 
477
+ #: ad-inserter.php:6601
478
  msgid "BETWEEN COMMENTS"
479
  msgstr "MED KOMENTARJI"
480
 
481
+ #: ad-inserter.php:7762
482
  msgid "requires WordPress 4.0 or newer"
483
  msgstr "potrebuje WordPress 4.0 ali novejši"
484
 
485
+ #: ad-inserter.php:7762
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:7995
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:7997
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:7999
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:8036
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:8079
526
  msgid "%s block."
527
  msgstr "%s blok."
528
 
529
  #. translators: widget title
530
+ #: ad-inserter.php:8095 ad-inserter.php:8131
531
  msgid "Processing log"
532
  msgstr "Dnevnik procesiranja"
533
 
534
  #. translators: widget title
535
+ #: ad-inserter.php:8097 ad-inserter.php:8132
536
  msgid "Dummy widget"
537
  msgstr "Prazen gradnik"
538
 
539
  #. translators: widget title
540
+ #: ad-inserter.php:8099 ad-inserter.php:8130
541
  msgid "Debugging tools"
542
  msgstr "Orodja za razhroščevanje"
543
 
544
  #. translators: block status (widget title)
545
+ #: ad-inserter.php:8106
546
  msgctxt "block"
547
  msgid "PAUSED"
548
  msgstr "USTAVLJEN"
549
 
550
+ #: ad-inserter.php:8107
551
  msgid "WIDGET DISABLED"
552
  msgstr "GRADNIK ONEMOGOČEN"
553
 
554
+ #: ad-inserter.php:8108
555
  msgid "Unknown block"
556
  msgstr "Neznan blok"
557
 
558
+ #: ad-inserter.php:8117 includes/functions.php:2721 settings.php:1038
559
  msgid "Title"
560
  msgstr "Naslov"
561
 
562
+ #: ad-inserter.php:8139
563
  msgctxt "Widget"
564
  msgid "Sticky"
565
  msgstr "Lepljiv"
566
 
567
+ #: ad-inserter.php:8188
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:8189
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:3679
612
  msgid "Widget"
613
  msgstr "Gradnik"
614
 
615
+ #: class.php:1962 settings.php:3677
616
  msgid "PHP function call"
617
  msgstr "Klic PHP funkcije"
618
 
719
  "NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
720
  "namestiti DOM razširitev za PHP."
721
 
722
+ #: includes/editor.php:7 includes/placeholders.php:352
723
+ #: includes/preview.php:1962 strings.php:238
724
  msgid "Use"
725
  msgstr "Uporabi"
726
 
727
+ #: includes/editor.php:8 includes/preview.php:1963
728
  msgid "Reset"
729
  msgstr "Ponastavi"
730
 
731
+ #: includes/editor.php:9 includes/placeholders.php:354
732
+ #: includes/preview.php:1965 strings.php:201 strings.php:237
733
  msgid "Cancel"
734
  msgstr "Prekliči"
735
 
738
  msgstr "Vizualni Urejevalnik Kode"
739
 
740
  #: includes/editor.php:262 includes/preview-adb.php:289
741
+ #: includes/preview.php:1952
742
  msgid ""
743
  "This page was not loaded properly. Please check browser, plugins and ad "
744
  "blockers."
751
  msgstr "Napaka pri nalaganju strani"
752
 
753
  #: includes/editor.php:264 includes/preview-adb.php:291
754
+ #: includes/preview.php:1954
755
  msgid "PAGE BLOCKED"
756
  msgstr "STRAN BLOKIRANA"
757
 
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:2493
825
  msgid "Open HTML element selector"
826
  msgstr "Odpri izbirnik HTML elementa"
827
 
857
  msgid "Toggle Ad Blocking Statistics"
858
  msgstr "Preklopi Statistiko Blokiranja Oglasov"
859
 
860
+ #: includes/functions.php:490 includes/functions.php:2518
861
  msgid "Toggle Statistics"
862
  msgstr "Preklopi Statistiko"
863
 
880
  msgid "Save Settings"
881
  msgstr "Sharani Nastavitve"
882
 
883
+ #: includes/functions.php:578 includes/preview.php:2106
884
  msgid "Horizontal position"
885
  msgstr "Vodoravni položaj"
886
 
892
  "Vodoravni odmik od vsebine ali roba zaslona, prazno pomeni privzeta vrednost "
893
  "iz CSS"
894
 
895
+ #: includes/functions.php:609 includes/preview.php:2161
896
  msgid "Vertical position"
897
  msgstr "Navpični položaj"
898
 
904
  "Navpični odmik od roba vrha ali dna zaslona, prazno pomeni privzeta vrednost "
905
  "iz CSS"
906
 
907
+ #: includes/functions.php:649 includes/preview.php:2212
908
  msgid "Animation"
909
  msgstr "Animacija"
910
 
956
  msgid "Double click to toggle controls in public reports"
957
  msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
958
 
959
+ #: includes/functions.php:749 settings.php:3173 settings.php:3209
960
+ #: settings.php:3252 strings.php:211
961
  msgid "Loading..."
962
  msgstr "Nalagam..."
963
 
964
+ #: includes/functions.php:770
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:774
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:777 includes/functions.php:4734
977
  msgid "Load data for last month"
978
  msgstr "Naloži podatke za zadnji mesec"
979
 
980
+ #: includes/functions.php:777 includes/functions.php:4734
981
  msgid "Last Month"
982
  msgstr "Zadnji Mesec"
983
 
984
+ #: includes/functions.php:780 includes/functions.php:4737
985
  msgid "Load data for this month"
986
  msgstr "Naloži podatke za ta mesec"
987
 
988
+ #: includes/functions.php:780 includes/functions.php:4737
989
  msgid "This Month"
990
  msgstr "Ta Mesec"
991
 
992
+ #: includes/functions.php:783 includes/functions.php:4740
993
  msgid "Load data for this year"
994
  msgstr "Naloži podatke za to leto"
995
 
996
+ #: includes/functions.php:783 includes/functions.php:4740
997
  msgid "This Year"
998
  msgstr "To Leto"
999
 
1000
+ #: includes/functions.php:786 includes/functions.php:4743
1001
  msgid "Load data for the last 15 days"
1002
  msgstr "Naloži podatke za zadnjih 15 dni"
1003
 
1004
+ #: includes/functions.php:789 includes/functions.php:4746
1005
  msgid "Load data for the last 30 days"
1006
  msgstr "Naloži podatke za zadnjih 30 dni"
1007
 
1008
+ #: includes/functions.php:792 includes/functions.php:4749
1009
  msgid "Load data for the last 90 days"
1010
  msgstr "Naloži podatke za zadnjih 90 dni"
1011
 
1012
+ #: includes/functions.php:795 includes/functions.php:4752
1013
  msgid "Load data for the last 180 days"
1014
  msgstr "Naloži podatke za zadnjih 180 dni"
1015
 
1016
+ #: includes/functions.php:798 includes/functions.php:4755
1017
  msgid "Load data for the last 365 days"
1018
  msgstr "Naloži podatke za zadnjih 365 dni"
1019
 
1020
+ #: includes/functions.php:808 includes/functions.php:4765
1021
  msgid "Load data for the selected range"
1022
  msgstr "Naloži podatke za izbrano obdobje"
1023
 
1024
+ #: includes/functions.php:824
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:824
1033
  msgid "Import settings for block"
1034
  msgstr "Uvozi nastavitve za blok"
1035
 
1036
+ #: includes/functions.php:828
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:828
1047
  msgid "Import block name"
1048
  msgstr "Uvozi ime bloka"
1049
 
1050
+ #: includes/functions.php:832
1051
  msgid "Saved settings for block"
1052
  msgstr "Shranjene nastavitve za blok"
1053
 
1054
+ #: includes/functions.php:845
1055
  msgid "Export / Import Ad Inserter Pro Settings"
1056
  msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
1057
 
1058
+ #: includes/functions.php:855
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:857
1065
  msgid "Clear All Statistics Data"
1066
  msgstr "Pobriši Vse Podatke o Statistiki"
1067
 
1068
+ #: includes/functions.php:884
1069
  msgid "Toggle country/city editor"
1070
  msgstr "Preklopi urejevalnik držav/mest"
1071
 
1072
+ #: includes/functions.php:890
1073
  msgid "IP Addresses"
1074
  msgstr "IP Naslovi"
1075
 
1076
+ #: includes/functions.php:893
1077
  msgid "Toggle IP address editor"
1078
  msgstr "Preklopi urejevalnik IP nslovov"
1079
 
1080
+ #: includes/functions.php:896
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:900
1089
  msgid "Blacklist IP addresses"
1090
  msgstr "Črni seznam IP naslovov"
1091
 
1092
+ #: includes/functions.php:904
1093
  msgid "Whitelist IP addresses"
1094
  msgstr "Beli seznam IP naslovov"
1095
 
1096
+ #: includes/functions.php:915
1097
  msgid "Countries"
1098
  msgstr "Države"
1099
 
1100
+ #: includes/functions.php:916
1101
  msgid "Cities"
1102
  msgstr "Mesta"
1103
 
1104
+ #: includes/functions.php:920 includes/functions.php:2483
1105
  msgid "Toggle country editor"
1106
  msgstr "Preklopi urejevalnik držav"
1107
 
1108
+ #: includes/functions.php:923
1109
  msgid "Toggle city editor"
1110
  msgstr "Preklopi urejevalnik mest"
1111
 
1112
+ #: includes/functions.php:927 includes/functions.php:2486
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:931
1117
  msgid "Blacklist countries"
1118
  msgstr "Črni seznam držav"
1119
 
1120
+ #: includes/functions.php:935
1121
  msgid "Whitelist countries"
1122
  msgstr "Beli seznam držav"
1123
 
1124
+ #: includes/functions.php:1251 includes/functions.php:1486
1125
  msgid "Enter license key"
1126
  msgstr "Vnesite licenčni ključ"
1127
 
1128
  #. translators: %s: Ad Inserter Pro
1129
+ #: includes/functions.php:1257
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:1269 includes/functions.php:1495
1138
  msgid "Check license key"
1139
  msgstr "Preverite licenčni ključ"
1140
 
1141
  #. translators: %s: Ad Inserter Pro
1142
+ #: includes/functions.php:1275
1143
  msgid "Invalid %s license key."
1144
  msgstr "Neveljaven %s licenčni ključ."
1145
 
1146
  #. translators: %s: Ad Inserter Pro
1147
+ #: includes/functions.php:1284
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:1285
1152
  msgid "Renew license"
1153
  msgstr "Obnovite licenco"
1154
 
1155
  #. translators: %s: Ad Inserter Pro
1156
+ #: includes/functions.php:1293
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:1294
1162
  msgid "Manage licenses"
1163
  msgstr "Upravljajte z licencami"
1164
 
1165
+ #: includes/functions.php:1294
1166
  msgid "Upgrade license"
1167
  msgstr "Nadgradite licenco"
1168
 
1169
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1170
+ #: includes/functions.php:1488
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:1497
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:1513
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:1520
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:1547
1203
  msgid "Renew the licence"
1204
  msgstr "Obnovi licenco"
1205
 
1206
+ #: includes/functions.php:1549
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:1560
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"
1218
  "Nadgradite licenco %7$s"
1219
 
1220
  #. Translators: %s: HTML tag
1221
+ #: includes/functions.php:1582
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:2120
1226
  msgid "Geolocation"
1227
  msgstr "Geolokacija"
1228
 
1229
+ #: includes/functions.php:2124
1230
  msgid "Exceptions"
1231
  msgstr "Izjeme"
1232
 
1233
+ #: includes/functions.php:2129
1234
  msgid "Multisite"
1235
  msgstr "Multisite"
1236
 
1237
+ #: includes/functions.php:2134
1238
  msgid "Tracking"
1239
  msgstr "Sledenje"
1240
 
1241
  #. translators: %d: days, hours, minutes
1242
+ #: includes/functions.php:2165
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:2174
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:2178
1253
  msgid "Expired"
1254
  msgstr "Poteklo"
1255
 
1256
+ #: includes/functions.php:2186 settings.php:1277 settings.php:1292
1257
  #: settings.php:1879
1258
  msgid "and"
1259
  msgstr "in"
1260
 
1261
+ #: includes/functions.php:2189
1262
  msgid "fallback"
1263
  msgstr "rezerva"
1264
 
1265
+ #: includes/functions.php:2190
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:2215
1270
  msgid "Load in iframe"
1271
  msgstr "Naloži v iframe-u"
1272
 
1273
+ #: includes/functions.php:2219 includes/placeholders.php:389
1274
  msgid "Width"
1275
  msgstr "Širina"
1276
 
1277
+ #: includes/functions.php:2220
1278
  msgid "iframe width, empty means full width (100%)"
1279
  msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
1280
 
1281
+ #: includes/functions.php:2226 includes/placeholders.php:384
1282
  msgid "Height"
1283
  msgstr "Višina"
1284
 
1285
+ #: includes/functions.php:2227
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:2234
1291
  msgid "Ad label in iframe"
1292
  msgstr "Oznaka oglasa v iframe-u"
1293
 
1294
+ #: includes/functions.php:2239
1295
  msgid "Preview iframe code"
1296
  msgstr "Predpreglej kodo iframe"
1297
 
1298
+ #: includes/functions.php:2239 includes/preview.php:1974 settings.php:954
1299
+ #: settings.php:2555
1300
  msgid "Preview"
1301
  msgstr "Predogled"
1302
 
1303
+ #: includes/functions.php:2253 includes/functions.php:3794
1304
+ #: includes/functions.php:3857 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:2262
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:2271
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:2289
1328
  msgid "When ad blocking is detected"
1329
  msgstr "Ko je blokiranje oglasov zaznano"
1330
 
1331
+ #: includes/functions.php:2298
1332
  msgid "replacement"
1333
  msgstr "nadomestek"
1334
 
1335
+ #: includes/functions.php:2299
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:2300
1340
  msgctxt "replacement"
1341
  msgid "None"
1342
  msgstr "Noben"
1343
 
1344
+ #: includes/functions.php:2317
1345
  msgid "Close button"
1346
  msgstr "Gumb Zapri"
1347
 
1348
+ #: includes/functions.php:2364
1349
  msgid "Lazy loading"
1350
  msgstr "Leno nalaganje"
1351
 
1352
  #. Translators: %s MaxMind
1353
+ #: includes/functions.php:2418
1354
  msgid "This product includes GeoLite2 data created by %s"
1355
  msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
1356
 
1357
+ #: includes/functions.php:2429
1358
  msgid "IP geolocation database"
1359
  msgstr "Podatkovna baza za IP geolokacijo"
1360
 
1361
+ #: includes/functions.php:2432
1362
  msgid "Select IP geolocation database."
1363
  msgstr "Izberite podatkovno bazo za IP geolokacijo."
1364
 
1365
+ #: includes/functions.php:2443
1366
  msgid "Automatic database updates"
1367
  msgstr "Samodejna posodobitev podatkovne baze"
1368
 
1369
+ #: includes/functions.php:2446
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:2454
1378
  msgid "Database"
1379
  msgstr "Podatkovna baza"
1380
 
1381
+ #: includes/functions.php:2457
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:2475
1391
  msgid "Group %d"
1392
  msgstr "Skupina %d"
1393
 
1394
+ #: includes/functions.php:2481
1395
  msgid "countries"
1396
  msgstr "države"
1397
 
1398
+ #: includes/functions.php:2526
1399
  msgid "Enable tracking"
1400
  msgstr "Omogoči sledenje"
1401
 
1402
+ #: includes/functions.php:2533
1403
  msgid "Generate report"
1404
  msgstr "Generiraj poročilo"
1405
 
1406
+ #: includes/functions.php:2541
1407
  msgid "Impression and Click Tracking"
1408
  msgstr "Sledenje Prikazov in Klikov"
1409
 
1410
+ #: includes/functions.php:2542 settings.php:2443
1411
+ msgctxt "ad blocking detection"
1412
+ msgid "NOT ENABLED"
1413
+ msgstr "NI OMOGOČENO"
1414
+
1415
+ #: includes/functions.php:2558
1416
  msgid "Internal"
1417
  msgstr "Notranje"
1418
 
1419
+ #: includes/functions.php:2562
1420
  msgid "Track impressions and clicks with internal tracking and statistics"
1421
  msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
1422
 
1423
+ #: includes/functions.php:2567
1424
  msgid "External"
1425
  msgstr "Zunanje"
1426
 
1427
+ #: includes/functions.php:2571
1428
  msgid ""
1429
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1430
  "code installed)"
1432
  "Sledi prikazom in klikom z Google Analytics ali Matomo (potrebuje nameščeno "
1433
  "kodo za sledenje)"
1434
 
1435
+ #: includes/functions.php:2576
1436
  msgid "Track Pageviews"
1437
  msgstr "Sledi Ogledom Strani"
1438
 
1439
+ #: includes/functions.php:2582
1440
  msgid "Track Pageviews by Device (as configured for viewports)"
1441
  msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
1442
 
1443
+ #: includes/functions.php:2592
1444
  msgid "Track for Logged in Users"
1445
  msgstr "Sledi za Prijavljene Upor."
1446
 
1447
+ #: includes/functions.php:2598
1448
  msgid "Track impressions and clicks from logged in users"
1449
  msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
1450
 
1451
+ #: includes/functions.php:2608
1452
  msgid "Click Detection"
1453
  msgstr "Zaznavanje klikov"
1454
 
1455
+ #: includes/functions.php:2614
1456
  msgid ""
1457
  "Standard method detects clicks only on banners with links, Advanced method "
1458
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1460
  "Standardni način zazna klike samo na pasicah s povezavami, Napredni način "
1461
  "lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
1462
 
1463
+ #: includes/functions.php:2640
1464
  msgid "Report header image"
1465
  msgstr "Slika v glavi poročila"
1466
 
1467
+ #: includes/functions.php:2643
1468
  msgid ""
1469
  "Image or logo to be displayed in the header of the statistins report. "
1470
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1474
  "ki se začne z '/' ali relativna pot do datoteke slike. Pobrišite za "
1475
  "ponastavitev na privzeto sliko."
1476
 
1477
+ #: includes/functions.php:2644 strings.php:223
1478
  msgid "Select or upload header image"
1479
  msgstr "Izberi ali naloži sliko glave"
1480
 
1481
+ #: includes/functions.php:2649
1482
  msgid "Report header title"
1483
  msgstr "Naslov v glavi poročila"
1484
 
1485
+ #: includes/functions.php:2652
1486
  msgid ""
1487
  "Title to be displayed in the header of the statistics report. Text or HTML "
1488
  "code, clear to reset to default text."
1490
  "Naslov, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1491
  "pobrišite za ponastavitev na privzeto besedilo."
1492
 
1493
+ #: includes/functions.php:2657
1494
  msgid "Report header description"
1495
  msgstr "Opis v glavi poročila"
1496
 
1497
+ #: includes/functions.php:2660
1498
  msgid ""
1499
  "Description to be displayed in the header of the statistics report. Text or "
1500
  "HTML code, clear to reset to default text."
1502
  "Opis, ki bo prikazan v glavi poročila statistike. Besedilo ali HTML koda, "
1503
  "pobrišite za ponastavitev na privzeto besedilo."
1504
 
1505
+ #: includes/functions.php:2665
1506
  msgid "Report footer"
1507
  msgstr "Noga poročila"
1508
 
1509
+ #: includes/functions.php:2668
1510
  msgid ""
1511
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1512
  "to default text."
1514
  "Besedilo, ki bo prikazano v nogi poročila statistike. Besedilo ali HTML "
1515
  "koda, pobrišite za ponastavitev na privzeto besedilo."
1516
 
1517
+ #: includes/functions.php:2673
1518
  msgid "Public report key"
1519
  msgstr "Ključ za javno poročilo"
1520
 
1521
+ #: includes/functions.php:2676
1522
  msgid "String to generate unique report IDs. Clear to reset to default value."
1523
  msgstr ""
1524
  "Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
1525
  "privzeto vrednost."
1526
 
1527
+ #: includes/functions.php:2708
1528
  msgid "Are you sure you want to clear all exceptions for block"
1529
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
1530
 
1531
+ #: includes/functions.php:2709 settings.php:1041
1532
  msgid "Clear all exceptions for block"
1533
  msgstr "Pobriši vse izjeme za blok"
1534
 
1535
+ #: includes/functions.php:2716
1536
  msgid "Are you sure you want to clear all exceptions?"
1537
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
1538
 
1539
+ #: includes/functions.php:2716
1540
  msgid "Clear all exceptions for all blocks"
1541
  msgstr "Pobriši vse izjeme za vse bloke"
1542
 
1543
+ #: includes/functions.php:2721 settings.php:3411 settings.php:3749
1544
  msgid "Type"
1545
  msgstr "Vrsta"
1546
 
1547
+ #: includes/functions.php:2739
1548
  msgid "View"
1549
  msgstr "Poglej"
1550
 
1551
+ #: includes/functions.php:2740 includes/placeholders.php:353
1552
+ #: includes/preview.php:2281 settings.php:1180
1553
  msgid "Edit"
1554
  msgstr "Uredi"
1555
 
1556
+ #: includes/functions.php:2770
1557
  msgid "Are you sure you want to clear all exceptions for"
1558
  msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
1559
 
1560
+ #: includes/functions.php:2771
1561
  msgid "Clear all exceptions for"
1562
  msgstr "Pobriši vse izjeme za"
1563
 
1564
+ #: includes/functions.php:2784
1565
  msgid "No exceptions"
1566
  msgstr "Brez izjem"
1567
 
1568
  #. translators: %s: Ad Inserter Pro
1569
+ #: includes/functions.php:2795
1570
  msgid "%s options for network blogs"
1571
  msgstr "%s izbire za omrežne bloge"
1572
 
1573
  #. translators: %s: Ad Inserter Pro
1574
+ #: includes/functions.php:2800
1575
  msgid "Enable %s widgets for sub-sites"
1576
  msgstr "Omogoči %s gradnik za pod-spletišča"
1577
 
1578
+ #: includes/functions.php:2800
1579
  msgid "Widgets"
1580
  msgstr "Gradniki"
1581
 
1582
+ #: includes/functions.php:2805
1583
  msgid "Enable PHP code processing for sub-sites"
1584
  msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
1585
 
1586
+ #: includes/functions.php:2805
1587
  msgid "PHP Processing"
1588
  msgstr "PHP Procesiranje"
1589
 
1590
  #. translators: %s: Ad Inserter Pro
1591
+ #: includes/functions.php:2810
1592
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1593
  msgstr ""
1594
  "Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
1595
 
1596
+ #: includes/functions.php:2810
1597
  msgid "Post/Page exceptions"
1598
  msgstr "Izjeme prispevkov/strani"
1599
 
1600
  #. translators: %s: Ad Inserter Pro
1601
+ #: includes/functions.php:2815
1602
  msgid "Enable %s settings page for sub-sites"
1603
  msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
1604
 
1605
+ #: includes/functions.php:2815
1606
  msgid "Settings page"
1607
  msgstr "Stran z nastavitvami"
1608
 
1609
  #. translators: %s: Ad Inserter Pro
1610
+ #: includes/functions.php:2820
1611
  msgid "Enable %s settings of main site to be used for all blogs"
1612
  msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
1613
 
1614
+ #: includes/functions.php:2820
1615
  msgid "Main site settings used for all blogs"
1616
  msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
1617
 
1618
+ #: includes/functions.php:2831 settings.php:2442
1619
  msgid "Ad Blocking Detection"
1620
  msgstr "Zaznavanje Blokiranja Oglasov"
1621
 
1622
+ #: includes/functions.php:2837
1623
  msgid ""
1624
  "Standard method is reliable but should be used only if Advanced method does "
1625
  "not work. Advanced method recreates files used for detection with random "
1631
  "imeni in mogoče ne bo deloval s skriptami v upload mapi, če ta ni javno "
1632
  "dostopna"
1633
 
1634
+ #: includes/functions.php:3457 includes/functions.php:3547
1635
+ #: includes/functions.php:3567
1636
  msgid "AD BLOCKING"
1637
  msgstr "BLOKIRANJE OGLASOV"
1638
 
1639
+ #: includes/functions.php:3458 includes/functions.php:3498
1640
+ #: includes/functions.php:3541 includes/functions.php:3568
1641
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1642
  msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
1643
 
1644
+ #: includes/functions.php:3461 includes/functions.php:3540
1645
+ #: includes/functions.php:3574
1646
  msgid "NO AD BLOCKING"
1647
  msgstr "NI BLOKIRANJA OGLASOV"
1648
 
1649
+ #: includes/functions.php:3497 includes/functions.php:3504
1650
  msgid "AD BLOCKING REPLACEMENT"
1651
  msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
1652
 
1653
+ #: includes/functions.php:3647 includes/functions.php:3856
1654
  msgid "Pageviews"
1655
  msgstr "Ogledi strani"
1656
 
1657
+ #: includes/functions.php:3793
1658
  msgctxt "Version"
1659
  msgid "Unknown"
1660
  msgstr "Neznana"
1661
 
1662
+ #: includes/functions.php:3793
1663
  msgctxt "Times"
1664
  msgid "DISPLAYED"
1665
  msgstr "PRIKAZANO"
1666
 
1667
+ #: includes/functions.php:3793
1668
  msgid "No version"
1669
  msgstr "Brez različice"
1670
 
1671
+ #: includes/functions.php:3794
1672
  msgctxt "Times"
1673
  msgid "BLOCKED"
1674
  msgstr "BLOKIRANO"
1675
 
1676
+ #: includes/functions.php:3856
1677
  msgid "Impressions"
1678
  msgstr "Prikazi"
1679
 
1680
+ #: includes/functions.php:3857 includes/functions.php:3858
1681
+ #: includes/functions.php:3913
1682
  msgid "Clicks"
1683
  msgstr "Kliki"
1684
 
1685
+ #: includes/functions.php:3858
1686
  msgid "events"
1687
  msgstr "dogodki"
1688
 
1689
+ #: includes/functions.php:3859
1690
  msgid "Ad Blocking Share"
1691
  msgstr "Delež blokiranja oglasov"
1692
 
1693
  #. translators: CTR as Click Through Rate
1694
+ #: includes/functions.php:3859 includes/functions.php:3919
1695
  msgid "CTR"
1696
  msgstr "CTR"
1697
 
1698
+ #: includes/functions.php:4001
1699
  msgid "pageviews"
1700
  msgid_plural "pageviews"
1701
  msgstr[0] "ogled strani"
1703
  msgstr[2] "ogledi strani"
1704
  msgstr[3] "ogledov strani"
1705
 
1706
+ #: includes/functions.php:4001
1707
  msgid "impressions"
1708
  msgid_plural "impressions"
1709
  msgstr[0] "prikaz"
1711
  msgstr[2] "prikazi"
1712
  msgstr[3] "prikazov"
1713
 
1714
+ #: includes/functions.php:4005
1715
  msgid "event"
1716
  msgid_plural "events"
1717
  msgstr[0] "dogodek"
1719
  msgstr[2] "dogodki"
1720
  msgstr[3] "dogodkov"
1721
 
1722
+ #: includes/functions.php:4005
1723
  msgid "click"
1724
  msgid_plural "clicks"
1725
  msgstr[0] "klik"
1727
  msgstr[2] "kliki"
1728
  msgstr[3] "klikov"
1729
 
1730
+ #: includes/functions.php:4100
1731
  msgctxt "Pageviews / Impressions"
1732
  msgid "Average"
1733
  msgstr "Povprečni"
1734
 
1735
+ #: includes/functions.php:4121
1736
  msgctxt "Ad Blocking / Clicks"
1737
  msgid "Average"
1738
  msgstr "Povprečno"
1739
 
1740
+ #: includes/functions.php:4145
1741
  msgctxt "Ad Blocking Share / CTR"
1742
  msgid "Average"
1743
  msgstr "Povprečni"
1744
 
1745
  #. Translators: %s: Ad Inserter Pro
1746
+ #: includes/functions.php:4327
1747
  msgid "%s Report"
1748
  msgstr "%s Poročilo"
1749
 
1750
  #. translators: for report range description
1751
+ #: includes/functions.php:4418 includes/functions.php:4679 strings.php:178
1752
  msgid "Ad Inserter Pro Report"
1753
  msgstr "Ad Inserter Pro Poročilo"
1754
 
1755
+ #: includes/functions.php:4585
1756
  msgid "for last month"
1757
  msgstr "za zadnji mesec"
1758
 
1759
+ #: includes/functions.php:4590
1760
  msgid "for this month"
1761
  msgstr "za ta mesec"
1762
 
1763
+ #: includes/functions.php:4595
1764
  msgid "for this year"
1765
  msgstr "za to leto"
1766
 
1767
+ #: includes/functions.php:4600
1768
  msgid "for the last 15 days"
1769
  msgstr "za zadnjih 15 dni"
1770
 
1771
+ #: includes/functions.php:4605
1772
  msgid "for the last 30 days"
1773
  msgstr "za zadnjih 30 dni"
1774
 
1775
+ #: includes/functions.php:4610
1776
  msgid "for the last 90 days"
1777
  msgstr "za zadnjih 90 dni"
1778
 
1779
+ #: includes/functions.php:4615
1780
  msgid "for the last 180 days"
1781
  msgstr "za zadnjih 180 dni"
1782
 
1783
+ #: includes/functions.php:4620
1784
  msgid "for the last 365 days"
1785
  msgstr "za zadnjih 365 dni"
1786
 
1787
+ #: includes/placeholders.php:20
1788
  msgid "Custom"
1789
  msgstr "Po meri"
1790
 
1791
+ #: includes/placeholders.php:103
1792
  msgid "Placeholder Editor"
1793
  msgstr "Urejevalnik Polnila"
1794
 
1795
+ #: includes/placeholders.php:352
1796
  msgid "Select placeholder"
1797
  msgstr "Izberi polnilo"
1798
 
1799
+ #: includes/placeholders.php:353
1800
  msgid "Edit placeholder size, colors and text"
1801
  msgstr "Uredi velikost, barve in besedilo polnila"
1802
 
1803
+ #: includes/placeholders.php:354
1804
  msgid "Close placeholder editor"
1805
  msgstr "Zapri urejevalnik polnila"
1806
 
1807
+ #: includes/placeholders.php:358
1808
  msgid "Placeholder"
1809
  msgstr "Polnilo"
1810
 
1811
+ #: includes/placeholders.php:363 settings.php:808 settings.php:3750
1812
  msgid "Size"
1813
  msgstr "Velikost"
1814
 
1815
+ #: includes/placeholders.php:379
1816
  msgid "Background color"
1817
  msgstr "Barva ozadja"
1818
 
1819
+ #: includes/placeholders.php:398
1820
  msgid "Text"
1821
  msgstr "Besedilo"
1822
 
1823
+ #: includes/placeholders.php:403
1824
  msgid "Text color"
1825
  msgstr "Barva besedila"
1826
 
1827
+ #: includes/placeholders.php:412
1828
  msgid ""
1829
  "Here you can create a universal placeholder image that can be used in place "
1830
  "of ads when they are not available yet.\n"
1836
  "Slikovna polnila, ki jih ustvarite tukaj, se bodo obnašala kot katerakoli "
1837
  "slika. Lahko jih tudi shranite na lokalni računalnik ali strežnik."
1838
 
1839
+ #: includes/placeholders.php:417
1840
  msgid ""
1841
  "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
1842
  "300x600 or define custom size.\n"
1854
  "Lahko naredite tudi prazen pravokotnik z enotno barvo tako, da pobrišete "
1855
  "besedilo polnila."
1856
 
1857
+ #: includes/placeholders.php:421
1858
  msgid ""
1859
  "<strong>Please note</strong>: if you have active rotation editor the code "
1860
  "window shows only the code for the currently selected option.\n"
1866
  "Zato bo generator kode v tem primeru uvozil ali generiral kodo za trenutno "
1867
  "izbrano različico."
1868
 
1869
+ #: includes/placeholders.php:424
1870
  msgid ""
1871
  "Code generator for banners and AdSense generates the code only when you "
1872
  "click on the button Generate code.\n"
1881
  "različicami, morate tudi (po potrebi) uvoziti in generirati kodo za vsako "
1882
  "različico rotacije."
1883
 
1884
+ #: includes/placeholders.php:427
1885
  msgid ""
1886
  "Ad Inserter has a simple code generator for banners and placeholders.\n"
1887
  "You can select banner image (or placeholder), optionally define link (web "
1901
  msgid "Remove dummy paragraph"
1902
  msgstr "Odstrani testni odstavek"
1903
 
1904
+ #: includes/preview-adb.php:9 includes/preview.php:1962
1905
  msgid "Use current settings"
1906
  msgstr "Uporabi trenutne nastavitve"
1907
 
1928
  msgid "Default"
1929
  msgstr "Privzeto"
1930
 
1931
+ #: includes/preview-adb.php:12 includes/preview.php:1965
1932
  msgid "Close preview window"
1933
  msgstr "Zapri okno predogleda"
1934
 
1941
  msgid "Ad Blocking Detected Message Preview"
1942
  msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
1943
 
1944
+ #: includes/preview-adb.php:348 settings.php:2568
1945
  msgid "Message CSS"
1946
  msgstr "CSS sporočila"
1947
 
1948
+ #: includes/preview-adb.php:353 settings.php:2576
1949
  msgid "Overlay CSS"
1950
  msgstr "CSS prevleke"
1951
 
1957
  msgid "Code Preview"
1958
  msgstr "Predogled Kode"
1959
 
1960
+ #: includes/preview.php:1960
1961
  msgid "Highlight inserted code"
1962
  msgstr "Označi vstavljeno kodo"
1963
 
1964
+ #: includes/preview.php:1960
1965
  msgid "Highlight"
1966
  msgstr "Označi"
1967
 
1968
+ #: includes/preview.php:1963
1969
  msgid "Reset to block settings"
1970
  msgstr "Ponastavi na nastavitve bloka"
1971
 
1972
+ #: includes/preview.php:1978
1973
  msgid "AdSense ad unit"
1974
  msgstr "Oglasna enota AdSense"
1975
 
1976
+ #: includes/preview.php:2020 includes/preview.php:2057
1977
  msgid "Code"
1978
  msgstr "Koda"
1979
 
1980
+ #: includes/preview.php:2046
1981
  msgid "wrapping div"
1982
  msgstr "div za ovijanje"
1983
 
1984
+ #: includes/preview.php:2051 includes/preview.php:2058
1985
  msgid "background"
1986
  msgstr "ozadje"
1987
 
1988
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1141
1989
+ #: settings.php:3676
1990
  msgid "Alignment"
1991
  msgstr "Poravnava"
1992
 
1993
+ #: includes/preview.php:2153
1994
  msgid "Horizontal margin"
1995
  msgstr "Vodoravni odmik"
1996
 
1997
+ #: includes/preview.php:2202
1998
  msgid "Vertical margin"
1999
  msgstr "Navpični odmik"
2000
 
2001
+ #: includes/preview.php:2224
2002
  msgid "Animate"
2003
  msgstr "Animiraj"
2004
 
2005
+ #: includes/preview.php:2290
2006
  msgid ""
2007
  "This is a preview of the code between dummy paragraphs. Here you can test "
2008
  "various block alignments, visually edit margin and padding values of the "
2017
  "označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
2018
  "Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
2019
 
2020
+ #: includes/preview.php:2293
2021
  msgid ""
2022
  "This is a preview of the saved block between dummy paragraphs. It shows the "
2023
  "code with the alignment and style as it is set for this block. Highlight "
2027
  "poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
2028
  "margin območje div-a za ovijanje in območje kode."
2029
 
2030
+ #: includes/preview.php:2295
2031
  msgid ""
2032
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
2033
  "code was loaded from your AdSense account. The ad block is displayed on a "
2039
  "testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
2040
  "Označi za označitev bloka."
2041
 
2042
+ #: includes/preview.php:2301
2043
  msgid ""
2044
  "You can resize the window (and refresh the page to reload ads) to check "
2045
  "display with different screen widths.\n"
2051
  "Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
2052
  "prenesle v aktivni blok."
2053
 
2054
+ #: includes/preview.php:2303
2055
  msgid ""
2056
  "Please note that the code, block name, alignment and style are taken from "
2057
  "the current block settings (may not be saved).\n"
2064
  "margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
2065
  "kodo za blok."
2066
 
2067
+ #: includes/preview.php:2308 includes/preview.php:2322
2068
+ #: includes/preview.php:2332 includes/preview.php:2342
2069
+ #: includes/preview.php:2352
2070
  msgid ""
2071
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
2072
  "code with it's settings is called a block.\n"
2090
  "številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
2091
  "številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
2092
 
2093
+ #: includes/preview.php:2313 includes/preview.php:2327
2094
+ #: includes/preview.php:2337 includes/preview.php:2347
2095
+ #: includes/preview.php:2357
2096
  msgid ""
2097
  "Few very important things you need to know in order to insert code and "
2098
  "display some ad:\n"
2115
  "za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
2116
  "uporabljate posamezne izjeme za prispevke/strani."
2117
 
2118
+ #: includes/preview.php:2319
2119
  msgid ""
2120
  "This is a preview of the code for sticky ads. Here you can test various "
2121
  "horizontal and vertical alignments, close button locations, visually edit "
2262
  msgid "General Settings"
2263
  msgstr "Splošne Nastavitve"
2264
 
2265
+ #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2548
2266
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2267
  msgstr ""
2268
  "Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
2299
  msgid "Clear block"
2300
  msgstr "Počisti blok"
2301
 
2302
+ #: settings.php:658 settings.php:3644
2303
  msgid "Copy block"
2304
  msgstr "Kopiraj blok"
2305
 
2472
  "Posamezne izjeme za prispevke (če so omogočene tukaj) se lahko nastavijo v "
2473
  "urejevalniku prispevka. Pustite prazno za prispevke brez posameznih izjem."
2474
 
2475
+ #: settings.php:978 settings.php:3060
2476
  msgid "Posts"
2477
  msgstr "Prispevki"
2478
 
2486
  "podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
2487
  "lahko odvisni od ročic, ki jih tema uporablja)"
2488
 
2489
+ #: settings.php:983 settings.php:3062
2490
  msgid "Homepage"
2491
  msgstr "Domača stran"
2492
 
2494
  msgid "Enable insertion on category blog pages (including sub-pages)"
2495
  msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
2496
 
2497
+ #: settings.php:988 settings.php:3063
2498
  msgid "Category pages"
2499
  msgstr "Strani kategorij"
2500
 
2515
  "nastavijo v urejevalniku strani. Pustite prazno za strani brez posameznih "
2516
  "izjem."
2517
 
2518
+ #: settings.php:1006 settings.php:3061
2519
  msgid "Static pages"
2520
  msgstr "Statične strani"
2521
 
2523
  msgid "Enable insertion on search blog pages"
2524
  msgstr "Omogoči vstavljanje na iskalnih straneh"
2525
 
2526
+ #: settings.php:1011 settings.php:3065
2527
  msgid "Search pages"
2528
  msgstr "Iskalne strani"
2529
 
2644
  msgid "HTML element selector or comma separated list of selectors"
2645
  msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
2646
 
2647
+ #: settings.php:1209 settings.php:2453
2648
  msgid "Action"
2649
  msgstr "Akcija"
2650
 
2932
  msgstr ""
2933
  "Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
2934
 
2935
+ #: settings.php:1636 settings.php:3678
2936
  msgid "Shortcode"
2937
  msgstr "Kratka koda"
2938
 
3369
  msgid "Wrapping div"
3370
  msgstr "div za ovijanje"
3371
 
3372
+ #: settings.php:2238 settings.php:2659
3373
  msgid "BLOCK CODE"
3374
  msgstr "KODA BLOKA"
3375
 
3424
  msgid "Enable insertion of this code into HTML page header"
3425
  msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
3426
 
3427
+ #: settings.php:2323 settings.php:2381 settings.php:2553
3428
  msgid "Process PHP code"
3429
  msgstr "Procesiraj PHP kodo"
3430
 
3483
  "Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
3484
  "Stran ne obstaja"
3485
 
3486
+ #: settings.php:2433
3487
+ msgid "Code for ad blocking detection inserted. Click for details."
3488
+ msgstr ""
3489
+ "Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
3490
+
3491
+ #: settings.php:2438
3492
  msgid "Enable detection of ad blocking"
3493
  msgstr "Omogoči zaznavanje blokiranja oglasov"
3494
 
3495
+ #: settings.php:2456
 
 
 
 
 
3496
  msgid "Global action when ad blocking is detected"
3497
  msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
3498
 
3499
+ #: settings.php:2462
3500
  msgid "No action for"
3501
  msgstr "Ni akcije za"
3502
 
3503
+ #: settings.php:2463
3504
  msgid "Exceptions for global action when ad blocking is detected."
3505
  msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
3506
 
3507
+ #: settings.php:2473
3508
  msgid "Delay Action"
3509
  msgstr "Zakasni Akcijo"
3510
 
3511
+ #: settings.php:2476
3512
  msgid ""
3513
  "Number of page views to delay action when ad blocking is detected. Leave "
3514
  "empty for no delay (action fires on first page view). Sets cookie."
3517
  "oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
3518
  "strani). Nastavi piškotek."
3519
 
3520
+ #: settings.php:2476
3521
  msgctxt "Delay Action for x "
3522
  msgid "page views"
3523
  msgstr "ogledov strani"
3524
 
3525
+ #: settings.php:2481
3526
  msgid "No Action Period"
3527
  msgstr "Obdobje Brez Akcije"
3528
 
3529
+ #: settings.php:2484
3530
  msgid ""
3531
  "Number of days to supress action when ad blocking is detected. Leave empty "
3532
  "for no no-action period (action fires always after defined page view delay). "
3536
  "pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
3537
  "strani). Nastavi piškotek."
3538
 
3539
+ #: settings.php:2484
3540
  msgctxt "no action period"
3541
  msgid "days"
3542
  msgstr "dni"
3543
 
3544
+ #: settings.php:2489
3545
  msgid "Custom Selectors"
3546
  msgstr "Selektorji Po Meri"
3547
 
3548
+ #: settings.php:2492
3549
  msgid ""
3550
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3551
  "blocking detection. Invisible element or element with zero height means ad "
3555
  "zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
3556
  "pomeni prisotnost blokiranja oglasov."
3557
 
3558
+ #: settings.php:2504
3559
  msgid "Redirection Page"
3560
  msgstr "Stran za Preusmeritev"
3561
 
3562
+ #: settings.php:2516
3563
  msgid "Custom Url"
3564
  msgstr "Url Po Meri"
3565
 
3566
+ #: settings.php:2521
3567
  msgid ""
3568
  "Static page for redirection when ad blocking is detected. For other pages "
3569
  "select Custom url and set it below."
3571
  "Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
3572
  "strani izberite Url Po Meri in ga nastavite spodaj."
3573
 
3574
+ #: settings.php:2530
3575
  msgid "Custom Redirection Url"
3576
  msgstr "Url za Preusmeritev Po Meri"
3577
 
3578
+ #: settings.php:2542
3579
  msgid "Message HTML code"
3580
  msgstr "HTML koda sporočila"
3581
 
3582
+ #: settings.php:2555
3583
  msgid "Preview message when ad blocking is detected"
3584
  msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
3585
 
3586
+ #: settings.php:2584
3587
  msgid "Prevent visitors from closing the warning message"
3588
  msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
3589
 
3590
+ #: settings.php:2584
3591
  msgid "Undismissible Message"
3592
  msgstr "Neodstranljivo Sporočilo"
3593
 
3594
+ #: settings.php:2590
3595
  msgid "Not undismissible for"
3596
  msgstr "Ni neodstranljivo za"
3597
 
3598
+ #: settings.php:2591
3599
  msgid "Users which can close the warning message."
3600
  msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo"
3601
 
3602
+ #: settings.php:2605
3603
  msgid ""
3604
  "Force showing admin toolbar for administrators when viewing site. Enable "
3605
  "this option when you are logged in as admin and you don't see admin toolbar."
3608
  "možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
3609
  "skrbnike."
3610
 
3611
+ #: settings.php:2613
3612
  msgid "Disable header code (Header tab)"
3613
  msgstr "Onemogoči kodo v glavi (zavihek Glava)"
3614
 
3615
+ #: settings.php:2617
3616
  msgid "Disable footer code (Footer tab)"
3617
  msgstr "Onemogoči kodo v nogi (zavihek Noga)"
3618
 
3619
  #. translators: %s: Ad Inserter
3620
+ #: settings.php:2621
3621
  msgid "Disable %s JavaScript code"
3622
  msgstr "Onemogoči %s JavaScript kodo"
3623
 
3624
  #. translators: %s: Ad Inserter
3625
+ #: settings.php:2625
3626
  msgid "Disable %s CSS code"
3627
  msgstr "Onemogoči %s CSS kodo"
3628
 
3629
+ #: settings.php:2629
3630
  msgid ""
3631
  "Disable PHP code processing (in all blocks including header and footer code)"
3632
  msgstr ""
3633
  "Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
3634
 
3635
+ #: settings.php:2633
3636
  msgid "Disable insertion of all blocks"
3637
  msgstr "Onemogoči vstavljanje vseh blokov"
3638
 
3639
+ #: settings.php:2637
3640
  msgid "Disable insertions"
3641
  msgstr "Onemogoči vstavljanja"
3642
 
3643
  #. translators: %s: Ad Inserter
3644
+ #: settings.php:2649
3645
  msgid "%s CSS CODE"
3646
  msgstr "%s CSS KODA"
3647
 
3648
+ #: settings.php:2652
3649
  msgid "HEADER CODE"
3650
  msgstr "KODA GLAVE"
3651
 
3652
  #. translators: %s: PHP tags
3653
+ #: settings.php:2658
3654
  msgid "BLOCK PHP CODE"
3655
  msgstr "PHP KODA BLOKA"
3656
 
3657
  #. translators: %s: Ad Inserter
3658
+ #: settings.php:2664
3659
  msgid "%s JS CODE"
3660
  msgstr "%s JS KODA"
3661
 
3662
+ #: settings.php:2667
3663
  msgid "FOOTER CODE"
3664
  msgstr "KODA NOGE"
3665
 
3666
+ #: settings.php:2676
3667
  msgid "Force showing admin toolbar when viewing site"
3668
  msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
3669
 
3670
+ #: settings.php:2683
3671
  msgid "Enable debugging functions in admin toolbar"
3672
  msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
3673
 
3674
+ #: settings.php:2685
3675
  msgid "Debugging functions in admin toolbar"
3676
  msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
3677
 
3678
+ #: settings.php:2692
3679
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3680
  msgstr ""
3681
  "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
3682
  "zaslonih"
3683
 
3684
+ #: settings.php:2694
3685
  msgid "Debugging functions on mobile screens"
3686
  msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
3687
 
3688
+ #: settings.php:2701
3689
  msgid ""
3690
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3691
  "tags, processing) by url parameters for non-logged in users. Enable this "
3700
  "pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
3701
  "vedno omogočeno."
3702
 
3703
+ #: settings.php:2703
3704
  msgid "Remote debugging"
3705
  msgstr "Oddaljeno razhroščevanje"
3706
 
3707
+ #: settings.php:2710
3708
  msgid ""
3709
  "Disable translation to see original texts for the settings and messages in "
3710
  "English"
3712
  "Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
3713
  "angleščini"
3714
 
3715
+ #: settings.php:2712
3716
  msgid "Disable translation"
3717
  msgstr "Onemogoči prevod"
3718
 
3719
+ #: settings.php:3048
3720
  msgid "Available positions for current theme"
3721
  msgstr "Razpoložljivi položaji za trenutno temo"
3722
 
3723
+ #: settings.php:3049
3724
  msgid "Error checking pages"
3725
  msgstr "Napaka pri preverjanju strani"
3726
 
3727
+ #: settings.php:3052
3728
  msgid "Toggle theme checker for available positions for automatic insertion"
3729
  msgstr ""
3730
  "Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
3731
 
3732
+ #: settings.php:3052
3733
  msgctxt "Button"
3734
  msgid "Check"
3735
  msgstr "Preveri"
3736
 
3737
+ #: settings.php:3059
3738
  msgid "Position"
3739
  msgstr "Položaj"
3740
 
3741
+ #: settings.php:3064
3742
  msgid "Archive pages"
3743
  msgstr "Strani arhiva"
3744
 
3745
+ #: settings.php:3123
3746
  msgid ""
3747
  "Position not available because output buffering (tab [*]) is not enabled"
3748
  msgstr ""
3749
  "Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
3750
 
3751
+ #: settings.php:3126 strings.php:219
3752
  msgid "Position not checked yet"
3753
  msgstr "Položaj še ni bil preverjen"
3754
 
3755
+ #: settings.php:3157
3756
  msgid "Toggle active/all blocks"
3757
  msgstr "Preklopi aktive/vse bloke"
3758
 
3759
+ #: settings.php:3161 strings.php:206
3760
  msgid "Rearrange block order"
3761
  msgstr "Preuredi vrstni red blokov"
3762
 
3763
+ #: settings.php:3166
3764
  msgid "Save new block order"
3765
  msgstr "Shrani vrstni red blokov"
3766
 
3767
+ #: settings.php:3166
3768
  msgid "Save Changes"
3769
  msgstr "Sharani Nastavitve"
3770
 
3771
+ #: settings.php:3191
3772
  msgid "Toggle active/all ad units"
3773
  msgstr "Preklopi aktivne/vse oglasne enote"
3774
 
3775
+ #: settings.php:3195
3776
  msgid "Reload AdSense ad units"
3777
  msgstr "Ponovno naloži oglasne enote AdSense"
3778
 
3779
+ #: settings.php:3199
3780
  msgid "Clear authorization to access AdSense account"
3781
  msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
3782
 
3783
+ #: settings.php:3203 settings.php:3835 settings.php:3902 strings.php:214
3784
  msgid "Google AdSense Homepage"
3785
  msgstr "Google AdSense Domača Stran"
3786
 
3787
+ #: settings.php:3226
3788
  msgid "Reload ads.txt file"
3789
  msgstr "Ponovno naloži datoteko ads.txt"
3790
 
3791
  #. translators: %s: ads.txt
3792
+ #: settings.php:3230
3793
  msgid "Open %s"
3794
  msgstr "Odpri %s"
3795
 
3796
+ #: settings.php:3234
3797
  msgid "Switch to table view"
3798
  msgstr "Preklopi na tabelarični pogled"
3799
 
3800
+ #: settings.php:3238
3801
  msgid "Switch to editor"
3802
  msgstr "Preklopi na urejevalnik"
3803
 
3804
+ #: settings.php:3242
3805
  msgid "Save ads.txt file"
3806
  msgstr "Shrani datoteko ads.txt"
3807
 
3808
+ #: settings.php:3377 settings.php:3385 strings.php:199
3809
  msgid "Warning"
3810
  msgstr "Opozorilo"
3811
 
3812
+ #: settings.php:3377
3813
  msgid "ads.txt file must be placed on the root domain"
3814
  msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
3815
 
3816
  #. translators: %s: file path
3817
+ #: settings.php:3378
3818
  msgid "WordPress is installed in %s"
3819
  msgstr "WordPress je nameščen v %s"
3820
 
3821
+ #: settings.php:3379
3822
  msgid "Showing file"
3823
  msgstr "Prikazana datoteka"
3824
 
3825
+ #: settings.php:3385
3826
  msgid "File %s not found"
3827
  msgstr "Datoteka %s ni najdena"
3828
 
3829
+ #: settings.php:3392
3830
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3831
  msgstr ""
3832
  "IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
3833
 
3834
+ #: settings.php:3409
3835
  msgid "Advertising system"
3836
  msgstr "Oglaševalski sistem"
3837
 
3838
+ #: settings.php:3410
3839
  msgid "Account ID"
3840
  msgstr "ID Računa"
3841
 
3842
+ #: settings.php:3412
3843
  msgid "Certification authority ID"
3844
  msgstr "ID organa za potrjevanje"
3845
 
3846
+ #: settings.php:3427
3847
  msgid "Account ID found in block and present in ads.txt"
3848
  msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
3849
 
3850
+ #: settings.php:3431
3851
  msgid "Account ID found in block but not present in ads.txt"
3852
  msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
3853
 
3854
+ #: settings.php:3647
3855
  msgid "Preview block"
3856
  msgstr "Predogled bloka"
3857
 
3858
+ #: settings.php:3656
3859
  msgid "Insertion disabled"
3860
  msgstr "Vstavljanje onemogočeno"
3861
 
3862
+ #: settings.php:3680
3863
  msgid "Widget positions"
3864
  msgstr "Položaji gradnikov"
3865
 
3866
+ #: settings.php:3746
3867
  msgid "Ad unit"
3868
  msgstr "Enota"
3869
 
3870
+ #: settings.php:3748
3871
  msgid "Slot ID"
3872
  msgstr "ID mesta"
3873
 
3874
+ #: settings.php:3774
3875
  msgid "Copy AdSense code"
3876
  msgstr "Kopiraj kodo AdSense"
3877
 
3878
+ #: settings.php:3777
3879
  msgid "Preview AdSense ad"
3880
  msgstr "Predogled oglasa AdSense"
3881
 
3882
+ #: settings.php:3780
3883
  msgid "Get AdSense code"
3884
  msgstr "Pridobi kodo AdSense"
3885
 
3886
  #. translators: %s: HTML tags
3887
+ #: settings.php:3812
3888
  msgid ""
3889
  "Please %s clear authorization %s with the button %s above and once again "
3890
  "authorize access to your AdSense account."
3892
  "Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
3893
  "avtorizirajte dostop do vašega računa AdSense."
3894
 
3895
+ #: settings.php:3831
3896
  msgid "AdSense Integration"
3897
  msgstr "Integracija AdSense"
3898
 
3899
+ #: settings.php:3833
3900
  msgid "AdSense Integration - Step 2"
3901
  msgstr "Integracija AdSense - Korak 2"
3902
 
3903
  #. translators: %s: HTML tags
3904
+ #: settings.php:3839
3905
  msgid ""
3906
  "Authorize %s to access your AdSense account. Click on the %s Get "
3907
  "Authorization Code %s button to open a new window where you can allow "
3914
  "Avtoriziraj. %s"
3915
 
3916
  #. translators: %s: HTML tags
3917
+ #: settings.php:3846
3918
  msgid ""
3919
  "If you get error, can't access ad units or would like to use own Google API "
3920
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3925
  "je %s za vnos podatkov ID Klienta in Skrivnost Klienta."
3926
 
3927
  #. translators: %s: HTML tags
3928
+ #: settings.php:3848
3929
  msgid ""
3930
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3931
  "Authorization Code %s button to open a new window where you can allow "
3938
  "gumb %s Avtoriziraj. %s"
3939
 
3940
  #. translators: %s: HTML tags
3941
+ #: settings.php:3855
3942
  msgid ""
3943
  "If you get error %s invalid client %s click on the button %s Clear and "
3944
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3946
  "Če se pojavi napaka %s neveljaven klient %s, kliknite na gumb %s Odstrani in "
3947
  "se vrni na Korak 1 %s za ponoven vnos ID klienta in Skrivnost Klienta."
3948
 
3949
+ #: settings.php:3866
3950
  msgid "Get Authorization Code"
3951
  msgstr "Pridobi Avtoriazcijsko Kodo"
3952
 
3953
+ #: settings.php:3869
3954
  msgid "Enter Authorization Code"
3955
  msgstr "Vnesi Avorizacijsko Kodo"
3956
 
3957
+ #: settings.php:3879
3958
  msgid "Use own API IDs"
3959
  msgstr "Uporabi lastne API ID-je"
3960
 
3961
+ #: settings.php:3881
3962
  msgid "Clear and return to Step 1"
3963
  msgstr "Odstrani in se vrni na Korak 1"
3964
 
3965
+ #: settings.php:3885
3966
  msgid "Authorize"
3967
  msgstr "Avtoriziraj"
3968
 
3969
+ #: settings.php:3901
3970
  msgid "AdSense Integration - Step 1"
3971
  msgstr "Integracija AdSense - Korak 1"
3972
 
3973
  #. translators: %s: Ad Inserter
3974
+ #: settings.php:3905
3975
  msgid ""
3976
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3977
  "To do this you need to authorize %s to access your AdSense account. The "
3984
  "Klienta in Skrivnost Klienta."
3985
 
3986
  #. translators: %s: HTML tags
3987
+ #: settings.php:3914
3988
  msgid "Go to %s Google APIs and Services console %s"
3989
  msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
3990
 
3991
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3992
+ #: settings.php:3915
3993
  msgid ""
3994
  "Create %1$s project - if the project and IDs are already created click on "
3995
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3998
  "%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
3999
 
4000
  #. translators: %s: HTML tags
4001
+ #: settings.php:3916
4002
  msgid ""
4003
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
4004
  "create a new project"
4007
  "ustvaritev novega projekta"
4008
 
4009
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
4010
+ #: settings.php:3917
4011
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
4012
  msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
4013
 
4014
  #. translators: %s: HTML tags
4015
+ #: settings.php:3918
4016
  msgid ""
4017
  "Click on project selection, wait for the project to be created and then and "
4018
  "select %s as the current project"
4021
  "izberite %s kot trenutni projekt"
4022
 
4023
  #. translators: %s: HTML tags
4024
+ #: settings.php:3919
4025
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
4026
  msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
4027
 
4028
  #. translators: %s: HTML tags
4029
+ #: settings.php:3920
4030
  msgid "Search for adsense and enable %s"
4031
  msgstr "Poiščite adsense in omogočite %s"
4032
 
4033
  #. translators: %s: HTML tags
4034
+ #: settings.php:3921
4035
  msgid "Click on %s CREATE CREDENTIALS %s"
4036
  msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
4037
 
4038
  #. translators: %s: HTML tags
4039
+ #: settings.php:3922
4040
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
4041
  msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
4042
 
4043
  #. translators: %s: HTML tags
4044
+ #: settings.php:3923
4045
  msgid "For %s What data will you be accessing? %s select %s User data %s"
4046
  msgstr ""
4047
  "Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
4048
  "podatki %s"
4049
 
4050
  #. translators: %s: HTML tags
4051
+ #: settings.php:3924
4052
  msgid "Click on %s What credentials do I need? %s"
4053
  msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
4054
 
4055
  #. translators: %s: HTML tags
4056
+ #: settings.php:3925
4057
  msgid ""
4058
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
4059
  "Ad Inserter client %s"
4062
  "%s Ad Inserter klient %s"
4063
 
4064
  #. translators: %s: HTML tags
4065
+ #: settings.php:3926
4066
  msgid ""
4067
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
4068
  "enter %s"
4071
  "uporabnikom %s vnesite %s"
4072
 
4073
  #. translators: %s: HTML tags
4074
+ #: settings.php:3927
4075
  msgid "Click on %s Continue %s"
4076
  msgstr "Kliknite na %s Nadaljuj %s"
4077
 
4078
  #. translators: %s: HTML tags
4079
+ #: settings.php:3928
4080
  msgid "Click on %s Done %s"
4081
  msgstr "Kliknite na %s Končaj %s"
4082
 
4083
  #. translators: %s: HTML tags
4084
+ #: settings.php:3929
4085
  msgid ""
4086
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
4087
  "secret %s"
4089
  "Kliknite na %s Ad Inserter klient, %s da bi dobili %s ID klienta %s in %s "
4090
  "Skrivnost klienta %s"
4091
 
4092
+ #: settings.php:3930
4093
  msgid "Copy them to the appropriate fields below"
4094
  msgstr "Skopirajte ju na ustrezni polji spodaj"
4095
 
4096
+ #: settings.php:3936
4097
  msgid "Client ID"
4098
  msgstr "ID klienta"
4099
 
4100
+ #: settings.php:3939
4101
  msgid "Enter Client ID"
4102
  msgstr "Vnesite ID klienta"
4103
 
4104
+ #: settings.php:3944
4105
  msgid "Client secret"
4106
  msgstr "Skrivnost klienta"
4107
 
4108
+ #: settings.php:3947
4109
  msgid "Enter Client secret"
4110
  msgstr "Vnesite Skrivnost klienta"
4111
 
4112
+ #: settings.php:3957
4113
  msgid "Use default API IDs"
4114
  msgstr "Uporabi privzete API ID-je"
4115
 
4116
+ #: settings.php:3962
4117
  msgid "Save"
4118
  msgstr "Shrani"
4119
 
4120
+ #: settings.php:4238 settings.php:4251 settings.php:4264 settings.php:4279
4121
  msgid "Blank ad blocks? Looking for AdSense alternative?"
4122
  msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
4123
 
4124
+ #: settings.php:4243 settings.php:4256 settings.php:4269 settings.php:4284
4125
+ #: settings.php:4460 settings.php:4464 settings.php:4466 settings.php:4482
4126
+ #: settings.php:4494 settings.php:4497 settings.php:4503 settings.php:4515
4127
  msgid "Looking for AdSense alternative?"
4128
  msgstr "Iščete alternativo za AdSense?"
4129
 
4130
+ #: settings.php:4295
4131
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
4132
  msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
4133
 
4134
+ #: settings.php:4300 settings.php:4462 settings.php:4474 settings.php:4500
4135
+ #: settings.php:4523
4136
  msgid "Use Infolinks ads with Adsense to earn more"
4137
  msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
4138
 
4139
+ #: settings.php:4319 settings.php:4357
4140
  msgid "Support plugin development"
4141
  msgstr "Podprite razvoj vtičnika"
4142
 
4143
+ #: settings.php:4320 settings.php:4358
4144
  msgid ""
4145
  "If you like Ad Inserter and have a moment, please help me spread the word by "
4146
  "reviewing the plugin on WordPres"
4148
  "Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
4149
  "razširiti novico z oceno vtičnika na WordPress-u"
4150
 
4151
+ #: settings.php:4320
4152
  msgctxt "Review ad Inserter"
4153
  msgid "Review"
4154
  msgstr "Oceni"
4155
 
4156
+ #: settings.php:4321
4157
  msgid ""
4158
  "Support free Ad Inserter development. If you are making money with Ad "
4159
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
4162
  "Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
4163
  "jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
4164
 
4165
+ #: settings.php:4321
4166
  msgid "Donate"
4167
  msgstr "Donirajte"
4168
 
4169
+ #: settings.php:4328 settings.php:4373
4170
  msgid "Average rating of the plugin - Thank you!"
4171
  msgstr "Povprečna ocena vtičnika - Hvala!"
4172
 
4173
  #. translators: %s: Ad Inserter, HTML tags
4174
+ #: settings.php:4339
4175
  msgid ""
4176
  "You've been using %s for a while now, and I hope you're happy with it. "
4177
  "Positive %s reviews %s are a great way to show your appreciation for my "
4185
  "vzpodbuda za odpravo hroščev in dodajanje novih funkcij za boljšo "
4186
  "monetizacijo vašega spletnega mesta. %s Hvala!"
4187
 
4188
+ #: settings.php:4358
4189
  msgid "Review"
4190
  msgstr "Ocena"
4191
 
4192
+ #: settings.php:4362
4193
  msgid "Ad Inserter on Twitter"
4194
  msgstr "Ad Inserter na Twitter-ju"
4195
 
4196
+ #: settings.php:4363
4197
  msgid "Ad Inserter on Facebook"
4198
  msgstr "Ad Inserter na Facebook-u"
4199
 
4200
+ #: settings.php:4366
4201
  msgid "Follow Ad Inserter"
4202
  msgstr "Sledi Ad Inserter-ju"
4203
 
4204
  #. translators: %s: HTML tags
4205
+ #: settings.php:4393
4206
  msgid ""
4207
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
4208
  "and %s Common Settings %s pages"
4211
  "Urejanje Kode, %s %s Pogoste Nastavitve %s"
4212
 
4213
  #. translators: %s: HTML tags
4214
+ #: settings.php:4405
4215
  msgid ""
4216
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
4217
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
4221
  "%s"
4222
 
4223
  #. translators: %s: HTML tags
4224
+ #: settings.php:4424
4225
+ msgid ""
4226
+ "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
4227
+ "purchase you refer to us."
4228
+ msgstr ""
4229
+ "Postanite %s partner %s Ad Inserter Pro in zaslužite provizijo za vsak "
4230
+ "nakup, ki nam ga posredujete."
4231
+
4232
+ #. translators: %s: HTML tags
4233
+ #: settings.php:4429
4234
  msgid ""
4235
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
4236
  "diagnose and fix the problem."
4239
  "navodili za diagnozo in rešitvami za težave."
4240
 
4241
  #. translators: %s: HTML tags
4242
+ #: settings.php:4433
4243
  msgid ""
4244
  "If you need any kind of help or support, please do not hesitate to open a "
4245
  "thread on the %s support forum. %s"
4247
  "Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
4248
  "nit na %s podpornem forumu. %s"
4249
 
4250
+ #: settings.php:4478 settings.php:4519
4251
  msgid "A/B testing - Track ad impressions and clicks"
4252
  msgstr "A/B testiranje - Sledi prikazom in klikom"
4253
 
4254
+ #: settings.php:4486 settings.php:4511
4255
  msgid "Code preview with visual CSS editor"
4256
  msgstr "Predogled kode z vizualnim CSS urejevalnikom"
4257
 
4258
+ #: settings.php:4531
4259
  msgid "Looking for Pro Ad Management plugin?"
4260
  msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
4261
 
4262
+ #: settings.php:4532
4263
  msgid "To Optimally Monetize your WordPress website?"
4264
  msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
4265
 
4266
  #. translators: %s HTML tags
4267
+ #: settings.php:4535
4268
  msgid "%s AdSense Integration %s"
4269
  msgstr "%s Integracija AdSense %s"
4270
 
4271
  #. translators: %s HTML tags
4272
+ #: settings.php:4536
4273
  msgid "Syntax highlighting %s editor %s"
4274
  msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
4275
 
4276
  #. translators: %s HTML tags
4277
+ #: settings.php:4537
4278
  msgid "%s Code preview %s with visual CSS editor"
4279
  msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
4280
 
4281
  #. translators: %s HTML tags
4282
+ #: settings.php:4538
4283
  msgid "Simple user interface - all settings on a single page"
4284
  msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
4285
 
4286
  #. translators: %s HTML tags
4287
+ #: settings.php:4539
4288
  msgid ""
4289
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
4290
  "image / excerpt"
4293
  "%s / sliko / izvlečkom"
4294
 
4295
  #. translators: %s HTML tags
4296
+ #: settings.php:4540
4297
  msgid "%s Automatic insertion %s between posts on blog pages"
4298
  msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
4299
 
4300
  #. translators: %s HTML tags
4301
+ #: settings.php:4541
4302
  msgid "%s Automatic insertion %s before, between and after comments"
4303
  msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
4304
 
4305
  #. translators: %s HTML tags
4306
+ #: settings.php:4542
4307
  msgid "%s Automatic insertion %s after %s or before %s tag"
4308
  msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
4309
 
4310
  #. translators: %s HTML tags
4311
+ #: settings.php:4543
4312
  msgid "Automatic insertion at %s custom hook positions %s"
4313
  msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
4314
 
4315
  #. translators: %s HTML tags
4316
+ #: settings.php:4544
4317
  msgid ""
4318
  "Insertion %s before or after any HTML element on the page %s (using CSS "
4319
  "selectors)"
4322
  "selektorjev)"
4323
 
4324
  #. translators: %s HTML tags
4325
+ #: settings.php:4545
4326
  msgid "%s Insertion exceptions %s for individual posts and pages"
4327
  msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
4328
 
4329
  #. translators: %s HTML tags
4330
+ #: settings.php:4546
4331
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
4332
  msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
4333
 
4334
  #. translators: %s HTML tags
4335
+ #: settings.php:4547
4336
  msgid ""
4337
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
4338
  "scrolls)"
4341
  "se stran pomika)"
4342
 
4343
  #. translators: %s HTML tags
4344
+ #: settings.php:4548
4345
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
4346
  msgstr ""
4347
  "%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
4348
 
4349
  #. translators: %s HTML tags
4350
+ #: settings.php:4549
4351
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
4352
  msgstr ""
4353
  "%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
4354
 
4355
  #. translators: %s HTML tags
4356
+ #: settings.php:4550
4357
  msgid ""
4358
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
4359
  "visible)"
4362
  "postane viden)"
4363
 
4364
  #. translators: %s HTML tags
4365
+ #: settings.php:4551
4366
  msgid ""
4367
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
4368
  msgstr ""
4370
  "strani)"
4371
 
4372
  #. translators: %s HTML tags
4373
+ #: settings.php:4552
4374
  msgid "Block %s alignment and style %s customizations"
4375
  msgstr "%s Poravnave in slogi %s bloka po meri"
4376
 
4377
  #. translators: %s HTML tags
4378
+ #: settings.php:4553
4379
  msgid ""
4380
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
4381
  "TOS)"
4383
  "%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
4384
 
4385
  #. translators: %s HTML tags
4386
+ #: settings.php:4554
4387
  msgid ""
4388
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
4389
  "feeds"
4392
  "virih"
4393
 
4394
  #. translators: %s HTML tags
4395
+ #: settings.php:4555
4396
  msgid "%s Ad rotation %s (works also with caching)"
4397
  msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
4398
 
4399
  #. translators: %s HTML tags
4400
+ #: settings.php:4556
4401
  msgid "Create, edit and check %s ads.txt %s file"
4402
  msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
4403
 
4404
  #. translators: %s HTML tags
4405
+ #: settings.php:4557
4406
  msgid ""
4407
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
4408
  "AdSense)"
4411
  "AdSense)"
4412
 
4413
  #. translators: %s HTML tags
4414
+ #: settings.php:4558
4415
+ msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4416
+ msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
4417
+
4418
+ #. translators: %s HTML tags
4419
+ #: settings.php:4559
4420
+ msgid "%s Public web reports %s for clients, export to PDF"
4421
+ msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
4422
+
4423
+ #. translators: %s HTML tags
4424
+ #: settings.php:4560
4425
  msgid "Support for %s A/B testing %s"
4426
  msgstr "Podpora za %s A/B testiranje %s"
4427
 
4428
  #. translators: %s HTML tags
4429
+ #: settings.php:4561
4430
  msgid "Support for %s lazy loading %s"
4431
  msgstr "Podpora za %s leno nalaganje %s"
4432
 
4433
  #. translators: %s HTML tags
4434
+ #: settings.php:4562
4435
  msgid "Support for ads on %s AMP pages %s"
4436
  msgstr "Podpora za oglase na %s AMP straneh %s"
4437
 
4438
  #. translators: %s HTML tags
4439
+ #: settings.php:4563
4440
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4441
  msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
4442
 
4443
  #. translators: %s HTML tags
4444
+ #: settings.php:4564
4445
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4446
  msgstr ""
4447
  "Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
4448
 
4449
  #. translators: %s HTML tags
4450
+ #: settings.php:4565
4451
  msgid "PHP code processing"
4452
  msgstr "Procesiranje PHP kode"
4453
 
4454
  #. translators: %s HTML tags
4455
+ #: settings.php:4566
4456
  msgid "%s Banner %s code generator"
4457
  msgstr "Generator kode za %s pasice %s"
4458
 
4459
  #. translators: %s HTML tags
4460
+ #: settings.php:4567
4461
  msgid "Support for %s header and footer %s code"
4462
  msgstr "Podpora za kodo v %s glavi in nogi %s"
4463
 
4464
  #. translators: %s HTML tags
4465
+ #: settings.php:4568
4466
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4467
  msgstr ""
4468
  "Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
4469
 
4470
  #. translators: %s HTML tags
4471
+ #: settings.php:4569
4472
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4473
  msgstr ""
4474
  "%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
4475
  "strežnika"
4476
 
4477
  #. translators: %s HTML tags
4478
+ #: settings.php:4570
4479
  msgid "Client-side %s mobile device detection %s (works with caching)"
4480
  msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
4481
 
4482
  #. translators: %s HTML tags
4483
+ #: settings.php:4571
4484
  msgid ""
4485
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4486
  "protection"
4489
  "vsebine"
4490
 
4491
  #. translators: %s HTML tags
4492
+ #: settings.php:4572
4493
  msgid "%s Ad blocking statistics %s"
4494
  msgstr "%s Statistika blokiranja oglasov %s"
4495
 
4496
  #. translators: %s HTML tags
4497
+ #: settings.php:4573
4498
  msgid ""
4499
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4500
  "referers"
4502
  "%s Črni/Beli seznam %s kategorij, oznak, taksonomij, uporabnikov, url-jev"
4503
 
4504
  #. translators: %s HTML tags
4505
+ #: settings.php:4574
4506
  msgid ""
4507
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4508
  msgstr ""
4509
  "%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
4510
 
4511
  #. translators: %s HTML tags
4512
+ #: settings.php:4575
4513
  msgid "%s Multisite options %s to limit settings on the sites"
4514
  msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
4515
 
4516
  #. translators: %s HTML tags
4517
+ #: settings.php:4576
4518
  msgid "%s Import/Export %s block or plugin settings"
4519
  msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
4520
 
4521
  #. translators: %s HTML tags
4522
+ #: settings.php:4577
4523
  msgid "%s Insertion scheduling %s with fallback option"
4524
  msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
4525
 
4526
  #. translators: %s HTML tags
4527
+ #: settings.php:4578
4528
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4529
  msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
4530
 
4531
  #. translators: %s HTML tags
4532
+ #: settings.php:4579
4533
  msgid "Simple troubleshooting with many %s debugging functions %s"
4534
  msgstr ""
4535
  "Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
4536
 
4537
  #. translators: %s HTML tags
4538
+ #: settings.php:4580
4539
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4540
  msgstr ""
4541
  "%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
4542
 
4543
  #. translators: %s HTML tags
4544
+ #: settings.php:4581
4545
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4546
  msgstr ""
4547
  "%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
4548
 
4549
  #. translators: %s HTML tags
4550
+ #: settings.php:4582
4551
  msgid ""
4552
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4553
  msgstr ""
4554
  "%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
4555
 
4556
  #. translators: %s HTML tags
4557
+ #: settings.php:4583
4558
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4559
  msgstr ""
4560
  "%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
4561
 
4562
  #. translators: %s HTML tags
4563
+ #: settings.php:4584
4564
  msgid "No ads on the settings page"
4565
  msgstr "Stran z nastavitvami brez oglasov"
4566
 
4567
  #. translators: %s HTML tags
4568
+ #: settings.php:4585
4569
+ msgid "Premium support"
4570
+ msgstr "Vrhunska podpora"
4571
 
4572
  #. translators: %s HTML tags
4573
+ #: settings.php:4588
4574
  msgid ""
4575
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4576
  "website with many advertising features to automatically insert adverts on "
4597
  "bodo ohranile)."
4598
 
4599
  #. translators: %s HTML tags
4600
+ #: settings.php:4601
4601
  msgid "Looking for %s Pro Ad Management plugin? %s"
4602
  msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
4603
 
4604
  #. translators: %s HTML tags
4605
+ #: settings.php:4606
4606
  msgid "Ads between posts"
4607
  msgstr "Oglasi med prispevki"
4608
 
4609
  #. translators: %s HTML tags
4610
+ #: settings.php:4607
4611
  msgid "Ads between comments"
4612
  msgstr "Oglasi med komentarji"
4613
 
4614
  #. translators: %s HTML tags
4615
+ #: settings.php:4608
4616
  msgid "Support via email"
4617
  msgstr "Podpora prek elektronske pošte"
4618
 
4619
  #. translators: %s HTML tags
4620
+ #: settings.php:4614
4621
  msgid "%s Sticky positions %s"
4622
  msgstr "%s Lepljivi položaji %s"
4623
 
4624
  #. translators: %s HTML tags
4625
+ #: settings.php:4615
4626
  msgid "%s Limit insertions %s"
4627
  msgstr "%s Omeji vstavljanja %s"
4628
 
4629
  #. translators: %s HTML tags
4630
+ #: settings.php:4616
4631
  msgid "%s Clearance %s options"
4632
  msgstr "Možnosti %s izogibanja %s"
4633
 
4634
  #. translators: %s HTML tags
4635
+ #: settings.php:4622
4636
  msgid "Ad rotation"
4637
  msgstr "Vrtenje oglasov"
4638
 
4639
  #. translators: %s HTML tags
4640
+ #: settings.php:4623
4641
  msgid "%s A/B testing %s"
4642
  msgstr "%s A/B testiranje %s"
4643
 
4644
  #. translators: %s HTML tags
4645
+ #: settings.php:4624
4646
  msgid "%s Ad tracking %s"
4647
  msgstr "%s Sledenje oglasom %s"
4648
 
4649
  #. translators: %s HTML tags
4650
+ #: settings.php:4630
4651
  msgid "Support for %s AMP pages %s"
4652
  msgstr "Podpora za %s AMP strani %s"
4653
 
4654
  #. translators: %s HTML tags
4655
+ #: settings.php:4631
4656
  msgid "%s Ad blocking detection %s"
4657
  msgstr "%s Zaznavanje blokiranja oglasov %s"
4658
 
4659
  #. translators: %s HTML tags
4660
+ #: settings.php:4632
4661
  msgid "%s Mobile device detection %s"
4662
  msgstr "%s Zaznavanje mobilne naprave %s"
4663
 
4664
  #. translators: %s HTML tags
4665
+ #: settings.php:4639
4666
  msgid "64 code blocks"
4667
  msgstr "64 kodnih blokov"
4668
 
4669
  #. translators: %s HTML tags
4670
+ #: settings.php:4640
4671
  msgid "%s GEO targeting %s"
4672
  msgstr "%s GEO ciljanje %s"
4673
 
4674
  #. translators: %s HTML tags
4675
+ #: settings.php:4641
4676
  msgid "%s Scheduling %s"
4677
  msgstr "%s Urnik %s"
4678
 
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.13\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
- "POT-Creation-Date: 2019-04-13 09:21:04+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: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:1526
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:1529
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:2187
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,7 +478,7 @@ msgid ""
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,55 +486,55 @@ msgid ""
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:2716 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,11 +566,11 @@ msgstr ""
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
 
@@ -675,17 +675,17 @@ msgid ""
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
 
683
- #: includes/editor.php:8 includes/preview.php:1953
684
  msgid "Reset"
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
 
@@ -694,7 +694,7 @@ msgid "Visual Code Editor"
694
  msgstr ""
695
 
696
  #: includes/editor.php:262 includes/preview-adb.php:289
697
- #: includes/preview.php:1942
698
  msgid ""
699
  "This page was not loaded properly. Please check browser, plugins and ad "
700
  "blockers."
@@ -705,7 +705,7 @@ msgid "Error loading page"
705
  msgstr ""
706
 
707
  #: includes/editor.php:264 includes/preview-adb.php:291
708
- #: includes/preview.php:1944
709
  msgid "PAGE BLOCKED"
710
  msgstr ""
711
 
@@ -771,7 +771,7 @@ msgid ""
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
 
@@ -807,7 +807,7 @@ msgstr ""
807
  msgid "Toggle Ad Blocking Statistics"
808
  msgstr ""
809
 
810
- #: includes/functions.php:490 includes/functions.php:2514
811
  msgid "Toggle Statistics"
812
  msgstr ""
813
 
@@ -830,7 +830,7 @@ msgstr ""
830
  msgid "Save Settings"
831
  msgstr ""
832
 
833
- #: includes/functions.php:578 includes/preview.php:2096
834
  msgid "Horizontal position"
835
  msgstr ""
836
 
@@ -840,7 +840,7 @@ msgid ""
840
  "from CSS"
841
  msgstr ""
842
 
843
- #: includes/functions.php:609 includes/preview.php:2151
844
  msgid "Vertical position"
845
  msgstr ""
846
 
@@ -850,7 +850,7 @@ msgid ""
850
  "value from CSS"
851
  msgstr ""
852
 
853
- #: includes/functions.php:649 includes/preview.php:2202
854
  msgid "Animation"
855
  msgstr ""
856
 
@@ -900,332 +900,332 @@ msgstr ""
900
  msgid "Double click to toggle controls in public reports"
901
  msgstr ""
902
 
903
- #: includes/functions.php:749 settings.php:3169 settings.php:3205
904
- #: settings.php:3248 strings.php:211
905
  msgid "Loading..."
906
  msgstr ""
907
 
908
- #: includes/functions.php:766
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:770
915
  msgid "Auto refresh data for the selected range every 60 seconds"
916
  msgstr ""
917
 
918
- #: includes/functions.php:773 includes/functions.php:4729
919
  msgid "Load data for last month"
920
  msgstr ""
921
 
922
- #: includes/functions.php:773 includes/functions.php:4729
923
  msgid "Last Month"
924
  msgstr ""
925
 
926
- #: includes/functions.php:776 includes/functions.php:4732
927
  msgid "Load data for this month"
928
  msgstr ""
929
 
930
- #: includes/functions.php:776 includes/functions.php:4732
931
  msgid "This Month"
932
  msgstr ""
933
 
934
- #: includes/functions.php:779 includes/functions.php:4735
935
  msgid "Load data for this year"
936
  msgstr ""
937
 
938
- #: includes/functions.php:779 includes/functions.php:4735
939
  msgid "This Year"
940
  msgstr ""
941
 
942
- #: includes/functions.php:782 includes/functions.php:4738
943
  msgid "Load data for the last 15 days"
944
  msgstr ""
945
 
946
- #: includes/functions.php:785 includes/functions.php:4741
947
  msgid "Load data for the last 30 days"
948
  msgstr ""
949
 
950
- #: includes/functions.php:788 includes/functions.php:4744
951
  msgid "Load data for the last 90 days"
952
  msgstr ""
953
 
954
- #: includes/functions.php:791 includes/functions.php:4747
955
  msgid "Load data for the last 180 days"
956
  msgstr ""
957
 
958
- #: includes/functions.php:794 includes/functions.php:4750
959
  msgid "Load data for the last 365 days"
960
  msgstr ""
961
 
962
- #: includes/functions.php:804 includes/functions.php:4760
963
  msgid "Load data for the selected range"
964
  msgstr ""
965
 
966
- #: includes/functions.php:820
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:820
973
  msgid "Import settings for block"
974
  msgstr ""
975
 
976
- #: includes/functions.php:824
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:824
984
  msgid "Import block name"
985
  msgstr ""
986
 
987
- #: includes/functions.php:828
988
  msgid "Saved settings for block"
989
  msgstr ""
990
 
991
- #: includes/functions.php:841
992
  msgid "Export / Import Ad Inserter Pro Settings"
993
  msgstr ""
994
 
995
- #: includes/functions.php:851
996
  msgid "Are you sure you want to clear all statistics data for all blocks?"
997
  msgstr ""
998
 
999
- #: includes/functions.php:853
1000
  msgid "Clear All Statistics Data"
1001
  msgstr ""
1002
 
1003
- #: includes/functions.php:880
1004
  msgid "Toggle country/city editor"
1005
  msgstr ""
1006
 
1007
- #: includes/functions.php:886
1008
  msgid "IP Addresses"
1009
  msgstr ""
1010
 
1011
- #: includes/functions.php:889
1012
  msgid "Toggle IP address editor"
1013
  msgstr ""
1014
 
1015
- #: includes/functions.php:892
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:896
1022
  msgid "Blacklist IP addresses"
1023
  msgstr ""
1024
 
1025
- #: includes/functions.php:900
1026
  msgid "Whitelist IP addresses"
1027
  msgstr ""
1028
 
1029
- #: includes/functions.php:911
1030
  msgid "Countries"
1031
  msgstr ""
1032
 
1033
- #: includes/functions.php:912
1034
  msgid "Cities"
1035
  msgstr ""
1036
 
1037
- #: includes/functions.php:916 includes/functions.php:2479
1038
  msgid "Toggle country editor"
1039
  msgstr ""
1040
 
1041
- #: includes/functions.php:919
1042
  msgid "Toggle city editor"
1043
  msgstr ""
1044
 
1045
- #: includes/functions.php:923 includes/functions.php:2482
1046
  msgid "Comma separated country ISO Alpha-2 codes"
1047
  msgstr ""
1048
 
1049
- #: includes/functions.php:927
1050
  msgid "Blacklist countries"
1051
  msgstr ""
1052
 
1053
- #: includes/functions.php:931
1054
  msgid "Whitelist countries"
1055
  msgstr ""
1056
 
1057
- #: includes/functions.php:1247 includes/functions.php:1482
1058
  msgid "Enter license key"
1059
  msgstr ""
1060
 
1061
  #. translators: %s: Ad Inserter Pro
1062
- #: includes/functions.php:1253
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:1265 includes/functions.php:1491
1069
  msgid "Check license key"
1070
  msgstr ""
1071
 
1072
  #. translators: %s: Ad Inserter Pro
1073
- #: includes/functions.php:1271
1074
  msgid "Invalid %s license key."
1075
  msgstr ""
1076
 
1077
  #. translators: %s: Ad Inserter Pro
1078
- #: includes/functions.php:1280
1079
  msgid "%s license expired. Plugin updates are disabled."
1080
  msgstr ""
1081
 
1082
- #: includes/functions.php:1281
1083
  msgid "Renew license"
1084
  msgstr ""
1085
 
1086
  #. translators: %s: Ad Inserter Pro
1087
- #: includes/functions.php:1289
1088
  msgid "%s license overused. Plugin updates are disabled."
1089
  msgstr ""
1090
 
1091
- #: includes/functions.php:1290
1092
  msgid "Manage licenses"
1093
  msgstr ""
1094
 
1095
- #: includes/functions.php:1290
1096
  msgid "Upgrade license"
1097
  msgstr ""
1098
 
1099
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1100
- #: includes/functions.php:1484
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:1493
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:1509
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:1516
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:1543
1126
  msgid "Renew the licence"
1127
  msgstr ""
1128
 
1129
- #: includes/functions.php:1545
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:1556
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:1578
1142
  msgid "Warning: %s MaxMind IP geolocation database not found."
1143
  msgstr ""
1144
 
1145
- #: includes/functions.php:2116
1146
  msgid "Geolocation"
1147
  msgstr ""
1148
 
1149
- #: includes/functions.php:2120
1150
  msgid "Exceptions"
1151
  msgstr ""
1152
 
1153
- #: includes/functions.php:2125
1154
  msgid "Multisite"
1155
  msgstr ""
1156
 
1157
- #: includes/functions.php:2130
1158
  msgid "Tracking"
1159
  msgstr ""
1160
 
1161
  #. translators: %d: days, hours, minutes
1162
- #: includes/functions.php:2161
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:2170
1169
  msgid "Active %s expires in %d days %d hours %d minutes"
1170
  msgstr ""
1171
 
1172
- #: includes/functions.php:2174
1173
  msgid "Expired"
1174
  msgstr ""
1175
 
1176
- #: includes/functions.php:2182 settings.php:1277 settings.php:1292
1177
  #: settings.php:1879
1178
  msgid "and"
1179
  msgstr ""
1180
 
1181
- #: includes/functions.php:2185
1182
  msgid "fallback"
1183
  msgstr ""
1184
 
1185
- #: includes/functions.php:2186
1186
  msgid "Block to be used when scheduling expires"
1187
  msgstr ""
1188
 
1189
- #: includes/functions.php:2211
1190
  msgid "Load in iframe"
1191
  msgstr ""
1192
 
1193
- #: includes/functions.php:2215 includes/placeholders.php:382
1194
  msgid "Width"
1195
  msgstr ""
1196
 
1197
- #: includes/functions.php:2216
1198
  msgid "iframe width, empty means full width (100%)"
1199
  msgstr ""
1200
 
1201
- #: includes/functions.php:2222 includes/placeholders.php:377
1202
  msgid "Height"
1203
  msgstr ""
1204
 
1205
- #: includes/functions.php:2223
1206
  msgid "iframe height, empty means adjust it to iframe content height"
1207
  msgstr ""
1208
 
1209
- #: includes/functions.php:2230
1210
  msgid "Ad label in iframe"
1211
  msgstr ""
1212
 
1213
- #: includes/functions.php:2235
1214
  msgid "Preview iframe code"
1215
  msgstr ""
1216
 
1217
- #: includes/functions.php:2235 includes/preview.php:1964 settings.php:954
1218
- #: settings.php:2551
1219
  msgid "Preview"
1220
  msgstr ""
1221
 
1222
- #: includes/functions.php:2249 includes/functions.php:3789
1223
- #: includes/functions.php:3852 settings.php:2016
1224
  msgid "Ad Blocking"
1225
  msgstr ""
1226
 
1227
  #. translators: 1, 2 and 3, 4: HTML tags
1228
- #: includes/functions.php:2258
1229
  msgid ""
1230
  "%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
1231
  "for tracking!"
@@ -1233,283 +1233,288 @@ msgstr ""
1233
 
1234
  #. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
1235
  #. header
1236
- #: includes/functions.php:2267
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:2285
1243
  msgid "When ad blocking is detected"
1244
  msgstr ""
1245
 
1246
- #: includes/functions.php:2294
1247
  msgid "replacement"
1248
  msgstr ""
1249
 
1250
- #: includes/functions.php:2295
1251
  msgid "Block to be shown when ad blocking is detected"
1252
  msgstr ""
1253
 
1254
- #: includes/functions.php:2296
1255
  msgctxt "replacement"
1256
  msgid "None"
1257
  msgstr ""
1258
 
1259
- #: includes/functions.php:2313
1260
  msgid "Close button"
1261
  msgstr ""
1262
 
1263
- #: includes/functions.php:2360
1264
  msgid "Lazy loading"
1265
  msgstr ""
1266
 
1267
  #. Translators: %s MaxMind
1268
- #: includes/functions.php:2414
1269
  msgid "This product includes GeoLite2 data created by %s"
1270
  msgstr ""
1271
 
1272
- #: includes/functions.php:2425
1273
  msgid "IP geolocation database"
1274
  msgstr ""
1275
 
1276
- #: includes/functions.php:2428
1277
  msgid "Select IP geolocation database."
1278
  msgstr ""
1279
 
1280
- #: includes/functions.php:2439
1281
  msgid "Automatic database updates"
1282
  msgstr ""
1283
 
1284
- #: includes/functions.php:2442
1285
  msgid ""
1286
  "Automatically download and update free GeoLite2 IP geolocation database by "
1287
  "MaxMind"
1288
  msgstr ""
1289
 
1290
- #: includes/functions.php:2450
1291
  msgid "Database"
1292
  msgstr ""
1293
 
1294
- #: includes/functions.php:2453
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:2471
1302
  msgid "Group %d"
1303
  msgstr ""
1304
 
1305
- #: includes/functions.php:2477
1306
  msgid "countries"
1307
  msgstr ""
1308
 
1309
- #: includes/functions.php:2522
1310
  msgid "Enable tracking"
1311
  msgstr ""
1312
 
1313
- #: includes/functions.php:2529
1314
  msgid "Generate report"
1315
  msgstr ""
1316
 
1317
- #: includes/functions.php:2537
1318
  msgid "Impression and Click Tracking"
1319
  msgstr ""
1320
 
1321
- #: includes/functions.php:2553
 
 
 
 
 
1322
  msgid "Internal"
1323
  msgstr ""
1324
 
1325
- #: includes/functions.php:2557
1326
  msgid "Track impressions and clicks with internal tracking and statistics"
1327
  msgstr ""
1328
 
1329
- #: includes/functions.php:2562
1330
  msgid "External"
1331
  msgstr ""
1332
 
1333
- #: includes/functions.php:2566
1334
  msgid ""
1335
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1336
  "code installed)"
1337
  msgstr ""
1338
 
1339
- #: includes/functions.php:2571
1340
  msgid "Track Pageviews"
1341
  msgstr ""
1342
 
1343
- #: includes/functions.php:2577
1344
  msgid "Track Pageviews by Device (as configured for viewports)"
1345
  msgstr ""
1346
 
1347
- #: includes/functions.php:2587
1348
  msgid "Track for Logged in Users"
1349
  msgstr ""
1350
 
1351
- #: includes/functions.php:2593
1352
  msgid "Track impressions and clicks from logged in users"
1353
  msgstr ""
1354
 
1355
- #: includes/functions.php:2603
1356
  msgid "Click Detection"
1357
  msgstr ""
1358
 
1359
- #: includes/functions.php:2609
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:2635
1366
  msgid "Report header image"
1367
  msgstr ""
1368
 
1369
- #: includes/functions.php:2638
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:2639 strings.php:223
1377
  msgid "Select or upload header image"
1378
  msgstr ""
1379
 
1380
- #: includes/functions.php:2644
1381
  msgid "Report header title"
1382
  msgstr ""
1383
 
1384
- #: includes/functions.php:2647
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:2652
1391
  msgid "Report header description"
1392
  msgstr ""
1393
 
1394
- #: includes/functions.php:2655
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:2660
1401
  msgid "Report footer"
1402
  msgstr ""
1403
 
1404
- #: includes/functions.php:2663
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:2668
1411
  msgid "Public report key"
1412
  msgstr ""
1413
 
1414
- #: includes/functions.php:2671
1415
  msgid "String to generate unique report IDs. Clear to reset to default value."
1416
  msgstr ""
1417
 
1418
- #: includes/functions.php:2703
1419
  msgid "Are you sure you want to clear all exceptions for block"
1420
  msgstr ""
1421
 
1422
- #: includes/functions.php:2704 settings.php:1041
1423
  msgid "Clear all exceptions for block"
1424
  msgstr ""
1425
 
1426
- #: includes/functions.php:2711
1427
  msgid "Are you sure you want to clear all exceptions?"
1428
  msgstr ""
1429
 
1430
- #: includes/functions.php:2711
1431
  msgid "Clear all exceptions for all blocks"
1432
  msgstr ""
1433
 
1434
- #: includes/functions.php:2716 settings.php:3407 settings.php:3745
1435
  msgid "Type"
1436
  msgstr ""
1437
 
1438
- #: includes/functions.php:2734
1439
  msgid "View"
1440
  msgstr ""
1441
 
1442
- #: includes/functions.php:2735 includes/placeholders.php:346
1443
- #: includes/preview.php:2271 settings.php:1180
1444
  msgid "Edit"
1445
  msgstr ""
1446
 
1447
- #: includes/functions.php:2765
1448
  msgid "Are you sure you want to clear all exceptions for"
1449
  msgstr ""
1450
 
1451
- #: includes/functions.php:2766
1452
  msgid "Clear all exceptions for"
1453
  msgstr ""
1454
 
1455
- #: includes/functions.php:2779
1456
  msgid "No exceptions"
1457
  msgstr ""
1458
 
1459
  #. translators: %s: Ad Inserter Pro
1460
- #: includes/functions.php:2790
1461
  msgid "%s options for network blogs"
1462
  msgstr ""
1463
 
1464
  #. translators: %s: Ad Inserter Pro
1465
- #: includes/functions.php:2795
1466
  msgid "Enable %s widgets for sub-sites"
1467
  msgstr ""
1468
 
1469
- #: includes/functions.php:2795
1470
  msgid "Widgets"
1471
  msgstr ""
1472
 
1473
- #: includes/functions.php:2800
1474
  msgid "Enable PHP code processing for sub-sites"
1475
  msgstr ""
1476
 
1477
- #: includes/functions.php:2800
1478
  msgid "PHP Processing"
1479
  msgstr ""
1480
 
1481
  #. translators: %s: Ad Inserter Pro
1482
- #: includes/functions.php:2805
1483
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1484
  msgstr ""
1485
 
1486
- #: includes/functions.php:2805
1487
  msgid "Post/Page exceptions"
1488
  msgstr ""
1489
 
1490
  #. translators: %s: Ad Inserter Pro
1491
- #: includes/functions.php:2810
1492
  msgid "Enable %s settings page for sub-sites"
1493
  msgstr ""
1494
 
1495
- #: includes/functions.php:2810
1496
  msgid "Settings page"
1497
  msgstr ""
1498
 
1499
  #. translators: %s: Ad Inserter Pro
1500
- #: includes/functions.php:2815
1501
  msgid "Enable %s settings of main site to be used for all blogs"
1502
  msgstr ""
1503
 
1504
- #: includes/functions.php:2815
1505
  msgid "Main site settings used for all blogs"
1506
  msgstr ""
1507
 
1508
- #: includes/functions.php:2826 settings.php:2438
1509
  msgid "Ad Blocking Detection"
1510
  msgstr ""
1511
 
1512
- #: includes/functions.php:2832
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,192 +1522,192 @@ msgid ""
1517
  "publicly accessible"
1518
  msgstr ""
1519
 
1520
- #: includes/functions.php:3452 includes/functions.php:3542
1521
- #: includes/functions.php:3562
1522
  msgid "AD BLOCKING"
1523
  msgstr ""
1524
 
1525
- #: includes/functions.php:3453 includes/functions.php:3493
1526
- #: includes/functions.php:3536 includes/functions.php:3563
1527
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1528
  msgstr ""
1529
 
1530
- #: includes/functions.php:3456 includes/functions.php:3535
1531
- #: includes/functions.php:3569
1532
  msgid "NO AD BLOCKING"
1533
  msgstr ""
1534
 
1535
- #: includes/functions.php:3492 includes/functions.php:3499
1536
  msgid "AD BLOCKING REPLACEMENT"
1537
  msgstr ""
1538
 
1539
- #: includes/functions.php:3642 includes/functions.php:3851
1540
  msgid "Pageviews"
1541
  msgstr ""
1542
 
1543
- #: includes/functions.php:3788
1544
  msgctxt "Version"
1545
  msgid "Unknown"
1546
  msgstr ""
1547
 
1548
- #: includes/functions.php:3788
1549
  msgctxt "Times"
1550
  msgid "DISPLAYED"
1551
  msgstr ""
1552
 
1553
- #: includes/functions.php:3788
1554
  msgid "No version"
1555
  msgstr ""
1556
 
1557
- #: includes/functions.php:3789
1558
  msgctxt "Times"
1559
  msgid "BLOCKED"
1560
  msgstr ""
1561
 
1562
- #: includes/functions.php:3851
1563
  msgid "Impressions"
1564
  msgstr ""
1565
 
1566
- #: includes/functions.php:3852 includes/functions.php:3853
1567
- #: includes/functions.php:3908
1568
  msgid "Clicks"
1569
  msgstr ""
1570
 
1571
- #: includes/functions.php:3853
1572
  msgid "events"
1573
  msgstr ""
1574
 
1575
- #: includes/functions.php:3854
1576
  msgid "Ad Blocking Share"
1577
  msgstr ""
1578
 
1579
  #. translators: CTR as Click Through Rate
1580
- #: includes/functions.php:3854 includes/functions.php:3914
1581
  msgid "CTR"
1582
  msgstr ""
1583
 
1584
- #: includes/functions.php:3996
1585
  msgid "pageviews"
1586
  msgid_plural "pageviews"
1587
  msgstr[0] ""
1588
  msgstr[1] ""
1589
 
1590
- #: includes/functions.php:3996
1591
  msgid "impressions"
1592
  msgid_plural "impressions"
1593
  msgstr[0] ""
1594
  msgstr[1] ""
1595
 
1596
- #: includes/functions.php:4000
1597
  msgid "event"
1598
  msgid_plural "events"
1599
  msgstr[0] ""
1600
  msgstr[1] ""
1601
 
1602
- #: includes/functions.php:4000
1603
  msgid "click"
1604
  msgid_plural "clicks"
1605
  msgstr[0] ""
1606
  msgstr[1] ""
1607
 
1608
- #: includes/functions.php:4095
1609
  msgctxt "Pageviews / Impressions"
1610
  msgid "Average"
1611
  msgstr ""
1612
 
1613
- #: includes/functions.php:4116
1614
  msgctxt "Ad Blocking / Clicks"
1615
  msgid "Average"
1616
  msgstr ""
1617
 
1618
- #: includes/functions.php:4140
1619
  msgctxt "Ad Blocking Share / CTR"
1620
  msgid "Average"
1621
  msgstr ""
1622
 
1623
  #. Translators: %s: Ad Inserter Pro
1624
- #: includes/functions.php:4322
1625
  msgid "%s Report"
1626
  msgstr ""
1627
 
1628
  #. translators: for report range description
1629
- #: includes/functions.php:4413 includes/functions.php:4674 strings.php:178
1630
  msgid "Ad Inserter Pro Report"
1631
  msgstr ""
1632
 
1633
- #: includes/functions.php:4580
1634
  msgid "for last month"
1635
  msgstr ""
1636
 
1637
- #: includes/functions.php:4585
1638
  msgid "for this month"
1639
  msgstr ""
1640
 
1641
- #: includes/functions.php:4590
1642
  msgid "for this year"
1643
  msgstr ""
1644
 
1645
- #: includes/functions.php:4595
1646
  msgid "for the last 15 days"
1647
  msgstr ""
1648
 
1649
- #: includes/functions.php:4600
1650
  msgid "for the last 30 days"
1651
  msgstr ""
1652
 
1653
- #: includes/functions.php:4605
1654
  msgid "for the last 90 days"
1655
  msgstr ""
1656
 
1657
- #: includes/functions.php:4610
1658
  msgid "for the last 180 days"
1659
  msgstr ""
1660
 
1661
- #: includes/functions.php:4615
1662
  msgid "for the last 365 days"
1663
  msgstr ""
1664
 
1665
- #: includes/placeholders.php:19
1666
  msgid "Custom"
1667
  msgstr ""
1668
 
1669
- #: includes/placeholders.php:102
1670
  msgid "Placeholder Editor"
1671
  msgstr ""
1672
 
1673
- #: includes/placeholders.php:345
1674
  msgid "Select placeholder"
1675
  msgstr ""
1676
 
1677
- #: includes/placeholders.php:346
1678
  msgid "Edit placeholder size, colors and text"
1679
  msgstr ""
1680
 
1681
- #: includes/placeholders.php:347
1682
  msgid "Close placeholder editor"
1683
  msgstr ""
1684
 
1685
- #: includes/placeholders.php:351
1686
  msgid "Placeholder"
1687
  msgstr ""
1688
 
1689
- #: includes/placeholders.php:356 settings.php:808 settings.php:3746
1690
  msgid "Size"
1691
  msgstr ""
1692
 
1693
- #: includes/placeholders.php:372
1694
  msgid "Background color"
1695
  msgstr ""
1696
 
1697
- #: includes/placeholders.php:391
1698
  msgid "Text"
1699
  msgstr ""
1700
 
1701
- #: includes/placeholders.php:396
1702
  msgid "Text color"
1703
  msgstr ""
1704
 
1705
- #: includes/placeholders.php:405
1706
  msgid ""
1707
  "Here you can create a universal placeholder image that can be used in place "
1708
  "of ads when they are not available yet.\n"
@@ -1710,7 +1715,7 @@ msgid ""
1710
  "save them to local computer or server."
1711
  msgstr ""
1712
 
1713
- #: includes/placeholders.php:410
1714
  msgid ""
1715
  "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
1716
  "300x600 or define custom size.\n"
@@ -1721,7 +1726,7 @@ msgid ""
1721
  "text."
1722
  msgstr ""
1723
 
1724
- #: includes/placeholders.php:414
1725
  msgid ""
1726
  "<strong>Please note</strong>: if you have active rotation editor the code "
1727
  "window shows only the code for the currently selected option.\n"
@@ -1729,7 +1734,7 @@ msgid ""
1729
  "currently selected option."
1730
  msgstr ""
1731
 
1732
- #: includes/placeholders.php:417
1733
  msgid ""
1734
  "Code generator for banners and AdSense generates the code only when you "
1735
  "click on the button Generate code.\n"
@@ -1738,7 +1743,7 @@ msgid ""
1738
  "need to (optionally) import and generate code for each rotation option."
1739
  msgstr ""
1740
 
1741
- #: includes/placeholders.php:420
1742
  msgid ""
1743
  "Ad Inserter has a simple code generator for banners and placeholders.\n"
1744
  "You can select banner image (or placeholder), optionally define link (web "
@@ -1754,7 +1759,7 @@ msgstr ""
1754
  msgid "Remove dummy paragraph"
1755
  msgstr ""
1756
 
1757
- #: includes/preview-adb.php:9 includes/preview.php:1952
1758
  msgid "Use current settings"
1759
  msgstr ""
1760
 
@@ -1781,7 +1786,7 @@ msgctxt "Button"
1781
  msgid "Default"
1782
  msgstr ""
1783
 
1784
- #: includes/preview-adb.php:12 includes/preview.php:1955
1785
  msgid "Close preview window"
1786
  msgstr ""
1787
 
@@ -1794,11 +1799,11 @@ msgstr ""
1794
  msgid "Ad Blocking Detected Message Preview"
1795
  msgstr ""
1796
 
1797
- #: includes/preview-adb.php:348 settings.php:2564
1798
  msgid "Message CSS"
1799
  msgstr ""
1800
 
1801
- #: includes/preview-adb.php:353 settings.php:2572
1802
  msgid "Overlay CSS"
1803
  msgstr ""
1804
 
@@ -1810,52 +1815,52 @@ msgstr ""
1810
  msgid "Code Preview"
1811
  msgstr ""
1812
 
1813
- #: includes/preview.php:1950
1814
  msgid "Highlight inserted code"
1815
  msgstr ""
1816
 
1817
- #: includes/preview.php:1950
1818
  msgid "Highlight"
1819
  msgstr ""
1820
 
1821
- #: includes/preview.php:1953
1822
  msgid "Reset to block settings"
1823
  msgstr ""
1824
 
1825
- #: includes/preview.php:1968
1826
  msgid "AdSense ad unit"
1827
  msgstr ""
1828
 
1829
- #: includes/preview.php:2010 includes/preview.php:2047
1830
  msgid "Code"
1831
  msgstr ""
1832
 
1833
- #: includes/preview.php:2036
1834
  msgid "wrapping div"
1835
  msgstr ""
1836
 
1837
- #: includes/preview.php:2041 includes/preview.php:2048
1838
  msgid "background"
1839
  msgstr ""
1840
 
1841
- #: includes/preview.php:2075 includes/preview.php:2226 settings.php:1141
1842
- #: settings.php:3672
1843
  msgid "Alignment"
1844
  msgstr ""
1845
 
1846
- #: includes/preview.php:2143
1847
  msgid "Horizontal margin"
1848
  msgstr ""
1849
 
1850
- #: includes/preview.php:2192
1851
  msgid "Vertical margin"
1852
  msgstr ""
1853
 
1854
- #: includes/preview.php:2214
1855
  msgid "Animate"
1856
  msgstr ""
1857
 
1858
- #: includes/preview.php:2280
1859
  msgid ""
1860
  "This is a preview of the code between dummy paragraphs. Here you can test "
1861
  "various block alignments, visually edit margin and padding values of the "
@@ -1865,14 +1870,14 @@ msgid ""
1865
  "restores all the values to those of the current block."
1866
  msgstr ""
1867
 
1868
- #: includes/preview.php:2283
1869
  msgid ""
1870
  "This is a preview of the saved block between dummy paragraphs. It shows the "
1871
  "code with the alignment and style as it is set for this block. Highlight "
1872
  "button highlights background, wrapping div margin and code area."
1873
  msgstr ""
1874
 
1875
- #: includes/preview.php:2285
1876
  msgid ""
1877
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
1878
  "code was loaded from your AdSense account. The ad block is displayed on a "
@@ -1880,7 +1885,7 @@ msgid ""
1880
  "highlight ad block."
1881
  msgstr ""
1882
 
1883
- #: includes/preview.php:2291
1884
  msgid ""
1885
  "You can resize the window (and refresh the page to reload ads) to check "
1886
  "display with different screen widths.\n"
@@ -1888,7 +1893,7 @@ msgid ""
1888
  "settings will be copied to the active block."
1889
  msgstr ""
1890
 
1891
- #: includes/preview.php:2293
1892
  msgid ""
1893
  "Please note that the code, block name, alignment and style are taken from "
1894
  "the current block settings (may not be saved).\n"
@@ -1896,9 +1901,9 @@ msgid ""
1896
  "padding can't be set. However, you can use own HTML code for the block."
1897
  msgstr ""
1898
 
1899
- #: includes/preview.php:2298 includes/preview.php:2312
1900
- #: includes/preview.php:2322 includes/preview.php:2332
1901
- #: includes/preview.php:2342
1902
  msgid ""
1903
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
1904
  "code with it's settings is called a block.\n"
@@ -1912,9 +1917,9 @@ msgid ""
1912
  "and manual insertion."
1913
  msgstr ""
1914
 
1915
- #: includes/preview.php:2303 includes/preview.php:2317
1916
- #: includes/preview.php:2327 includes/preview.php:2337
1917
- #: includes/preview.php:2347
1918
  msgid ""
1919
  "Few very important things you need to know in order to insert code and "
1920
  "display some ad:\n"
@@ -1927,7 +1932,7 @@ msgid ""
1927
  "individual post/page exceptions."
1928
  msgstr ""
1929
 
1930
- #: includes/preview.php:2309
1931
  msgid ""
1932
  "This is a preview of the code for sticky ads. Here you can test various "
1933
  "horizontal and vertical alignments, close button locations, visually edit "
@@ -2045,7 +2050,7 @@ msgstr ""
2045
  msgid "General Settings"
2046
  msgstr ""
2047
 
2048
- #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2544
2049
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2050
  msgstr ""
2051
 
@@ -2081,7 +2086,7 @@ msgstr ""
2081
  msgid "Clear block"
2082
  msgstr ""
2083
 
2084
- #: settings.php:658 settings.php:3640
2085
  msgid "Copy block"
2086
  msgstr ""
2087
 
@@ -2245,7 +2250,7 @@ msgid ""
2245
  "editor. Leave blank for no individual post exceptions."
2246
  msgstr ""
2247
 
2248
- #: settings.php:978 settings.php:3056
2249
  msgid "Posts"
2250
  msgstr ""
2251
 
@@ -2256,7 +2261,7 @@ msgid ""
2256
  "theme)"
2257
  msgstr ""
2258
 
2259
- #: settings.php:983 settings.php:3058
2260
  msgid "Homepage"
2261
  msgstr ""
2262
 
@@ -2264,7 +2269,7 @@ msgstr ""
2264
  msgid "Enable insertion on category blog pages (including sub-pages)"
2265
  msgstr ""
2266
 
2267
- #: settings.php:988 settings.php:3059
2268
  msgid "Category pages"
2269
  msgstr ""
2270
 
@@ -2282,7 +2287,7 @@ msgid ""
2282
  "page editor. Leave blank for no individual page exceptions."
2283
  msgstr ""
2284
 
2285
- #: settings.php:1006 settings.php:3057
2286
  msgid "Static pages"
2287
  msgstr ""
2288
 
@@ -2290,7 +2295,7 @@ msgstr ""
2290
  msgid "Enable insertion on search blog pages"
2291
  msgstr ""
2292
 
2293
- #: settings.php:1011 settings.php:3061
2294
  msgid "Search pages"
2295
  msgstr ""
2296
 
@@ -2391,7 +2396,7 @@ msgstr ""
2391
  msgid "HTML element selector or comma separated list of selectors"
2392
  msgstr ""
2393
 
2394
- #: settings.php:1209 settings.php:2449
2395
  msgid "Action"
2396
  msgstr ""
2397
 
@@ -2658,7 +2663,7 @@ msgstr ""
2658
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2659
  msgstr ""
2660
 
2661
- #: settings.php:1636 settings.php:3674
2662
  msgid "Shortcode"
2663
  msgstr ""
2664
 
@@ -3054,7 +3059,7 @@ msgstr ""
3054
  msgid "Wrapping div"
3055
  msgstr ""
3056
 
3057
- #: settings.php:2238 settings.php:2655
3058
  msgid "BLOCK CODE"
3059
  msgstr ""
3060
 
@@ -3108,7 +3113,7 @@ msgstr ""
3108
  msgid "Enable insertion of this code into HTML page header"
3109
  msgstr ""
3110
 
3111
- #: settings.php:2323 settings.php:2381 settings.php:2549
3112
  msgid "Process PHP code"
3113
  msgstr ""
3114
 
@@ -3163,192 +3168,191 @@ msgid ""
3163
  "Page not found"
3164
  msgstr ""
3165
 
3166
- #: settings.php:2434
3167
- msgid "Enable detection of ad blocking"
3168
  msgstr ""
3169
 
3170
- #: settings.php:2439
3171
- msgctxt "ad blocking detection"
3172
- msgid "NOT ENABLED"
3173
  msgstr ""
3174
 
3175
- #: settings.php:2452
3176
  msgid "Global action when ad blocking is detected"
3177
  msgstr ""
3178
 
3179
- #: settings.php:2458
3180
  msgid "No action for"
3181
  msgstr ""
3182
 
3183
- #: settings.php:2459
3184
  msgid "Exceptions for global action when ad blocking is detected."
3185
  msgstr ""
3186
 
3187
- #: settings.php:2469
3188
  msgid "Delay Action"
3189
  msgstr ""
3190
 
3191
- #: settings.php:2472
3192
  msgid ""
3193
  "Number of page views to delay action when ad blocking is detected. Leave "
3194
  "empty for no delay (action fires on first page view). Sets cookie."
3195
  msgstr ""
3196
 
3197
- #: settings.php:2472
3198
  msgctxt "Delay Action for x "
3199
  msgid "page views"
3200
  msgstr ""
3201
 
3202
- #: settings.php:2477
3203
  msgid "No Action Period"
3204
  msgstr ""
3205
 
3206
- #: settings.php:2480
3207
  msgid ""
3208
  "Number of days to supress action when ad blocking is detected. Leave empty "
3209
  "for no no-action period (action fires always after defined page view delay). "
3210
  "Sets cookie."
3211
  msgstr ""
3212
 
3213
- #: settings.php:2480
3214
  msgctxt "no action period"
3215
  msgid "days"
3216
  msgstr ""
3217
 
3218
- #: settings.php:2485
3219
  msgid "Custom Selectors"
3220
  msgstr ""
3221
 
3222
- #: settings.php:2488
3223
  msgid ""
3224
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3225
  "blocking detection. Invisible element or element with zero height means ad "
3226
  "blocking is present."
3227
  msgstr ""
3228
 
3229
- #: settings.php:2500
3230
  msgid "Redirection Page"
3231
  msgstr ""
3232
 
3233
- #: settings.php:2512
3234
  msgid "Custom Url"
3235
  msgstr ""
3236
 
3237
- #: settings.php:2517
3238
  msgid ""
3239
  "Static page for redirection when ad blocking is detected. For other pages "
3240
  "select Custom url and set it below."
3241
  msgstr ""
3242
 
3243
- #: settings.php:2526
3244
  msgid "Custom Redirection Url"
3245
  msgstr ""
3246
 
3247
- #: settings.php:2538
3248
  msgid "Message HTML code"
3249
  msgstr ""
3250
 
3251
- #: settings.php:2551
3252
  msgid "Preview message when ad blocking is detected"
3253
  msgstr ""
3254
 
3255
- #: settings.php:2580
3256
  msgid "Prevent visitors from closing the warning message"
3257
  msgstr ""
3258
 
3259
- #: settings.php:2580
3260
  msgid "Undismissible Message"
3261
  msgstr ""
3262
 
3263
- #: settings.php:2586
3264
  msgid "Not undismissible for"
3265
  msgstr ""
3266
 
3267
- #: settings.php:2587
3268
  msgid "Users which can close the warning message."
3269
  msgstr ""
3270
 
3271
- #: settings.php:2601
3272
  msgid ""
3273
  "Force showing admin toolbar for administrators when viewing site. Enable "
3274
  "this option when you are logged in as admin and you don't see admin toolbar."
3275
  msgstr ""
3276
 
3277
- #: settings.php:2609
3278
  msgid "Disable header code (Header tab)"
3279
  msgstr ""
3280
 
3281
- #: settings.php:2613
3282
  msgid "Disable footer code (Footer tab)"
3283
  msgstr ""
3284
 
3285
  #. translators: %s: Ad Inserter
3286
- #: settings.php:2617
3287
  msgid "Disable %s JavaScript code"
3288
  msgstr ""
3289
 
3290
  #. translators: %s: Ad Inserter
3291
- #: settings.php:2621
3292
  msgid "Disable %s CSS code"
3293
  msgstr ""
3294
 
3295
- #: settings.php:2625
3296
  msgid ""
3297
  "Disable PHP code processing (in all blocks including header and footer code)"
3298
  msgstr ""
3299
 
3300
- #: settings.php:2629
3301
  msgid "Disable insertion of all blocks"
3302
  msgstr ""
3303
 
3304
- #: settings.php:2633
3305
  msgid "Disable insertions"
3306
  msgstr ""
3307
 
3308
  #. translators: %s: Ad Inserter
3309
- #: settings.php:2645
3310
  msgid "%s CSS CODE"
3311
  msgstr ""
3312
 
3313
- #: settings.php:2648
3314
  msgid "HEADER CODE"
3315
  msgstr ""
3316
 
3317
  #. translators: %s: PHP tags
3318
- #: settings.php:2654
3319
  msgid "BLOCK PHP CODE"
3320
  msgstr ""
3321
 
3322
  #. translators: %s: Ad Inserter
3323
- #: settings.php:2660
3324
  msgid "%s JS CODE"
3325
  msgstr ""
3326
 
3327
- #: settings.php:2663
3328
  msgid "FOOTER CODE"
3329
  msgstr ""
3330
 
3331
- #: settings.php:2672
3332
  msgid "Force showing admin toolbar when viewing site"
3333
  msgstr ""
3334
 
3335
- #: settings.php:2679
3336
  msgid "Enable debugging functions in admin toolbar"
3337
  msgstr ""
3338
 
3339
- #: settings.php:2681
3340
  msgid "Debugging functions in admin toolbar"
3341
  msgstr ""
3342
 
3343
- #: settings.php:2688
3344
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3345
  msgstr ""
3346
 
3347
- #: settings.php:2690
3348
  msgid "Debugging functions on mobile screens"
3349
  msgstr ""
3350
 
3351
- #: settings.php:2697
3352
  msgid ""
3353
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3354
  "tags, processing) by url parameters for non-logged in users. Enable this "
@@ -3357,201 +3361,201 @@ msgid ""
3357
  "administrators debugging is always enabled."
3358
  msgstr ""
3359
 
3360
- #: settings.php:2699
3361
  msgid "Remote debugging"
3362
  msgstr ""
3363
 
3364
- #: settings.php:2706
3365
  msgid ""
3366
  "Disable translation to see original texts for the settings and messages in "
3367
  "English"
3368
  msgstr ""
3369
 
3370
- #: settings.php:2708
3371
  msgid "Disable translation"
3372
  msgstr ""
3373
 
3374
- #: settings.php:3044
3375
  msgid "Available positions for current theme"
3376
  msgstr ""
3377
 
3378
- #: settings.php:3045
3379
  msgid "Error checking pages"
3380
  msgstr ""
3381
 
3382
- #: settings.php:3048
3383
  msgid "Toggle theme checker for available positions for automatic insertion"
3384
  msgstr ""
3385
 
3386
- #: settings.php:3048
3387
  msgctxt "Button"
3388
  msgid "Check"
3389
  msgstr ""
3390
 
3391
- #: settings.php:3055
3392
  msgid "Position"
3393
  msgstr ""
3394
 
3395
- #: settings.php:3060
3396
  msgid "Archive pages"
3397
  msgstr ""
3398
 
3399
- #: settings.php:3119
3400
  msgid ""
3401
  "Position not available because output buffering (tab [*]) is not enabled"
3402
  msgstr ""
3403
 
3404
- #: settings.php:3122 strings.php:219
3405
  msgid "Position not checked yet"
3406
  msgstr ""
3407
 
3408
- #: settings.php:3153
3409
  msgid "Toggle active/all blocks"
3410
  msgstr ""
3411
 
3412
- #: settings.php:3157 strings.php:206
3413
  msgid "Rearrange block order"
3414
  msgstr ""
3415
 
3416
- #: settings.php:3162
3417
  msgid "Save new block order"
3418
  msgstr ""
3419
 
3420
- #: settings.php:3162
3421
  msgid "Save Changes"
3422
  msgstr ""
3423
 
3424
- #: settings.php:3187
3425
  msgid "Toggle active/all ad units"
3426
  msgstr ""
3427
 
3428
- #: settings.php:3191
3429
  msgid "Reload AdSense ad units"
3430
  msgstr ""
3431
 
3432
- #: settings.php:3195
3433
  msgid "Clear authorization to access AdSense account"
3434
  msgstr ""
3435
 
3436
- #: settings.php:3199 settings.php:3831 settings.php:3898 strings.php:214
3437
  msgid "Google AdSense Homepage"
3438
  msgstr ""
3439
 
3440
- #: settings.php:3222
3441
  msgid "Reload ads.txt file"
3442
  msgstr ""
3443
 
3444
  #. translators: %s: ads.txt
3445
- #: settings.php:3226
3446
  msgid "Open %s"
3447
  msgstr ""
3448
 
3449
- #: settings.php:3230
3450
  msgid "Switch to table view"
3451
  msgstr ""
3452
 
3453
- #: settings.php:3234
3454
  msgid "Switch to editor"
3455
  msgstr ""
3456
 
3457
- #: settings.php:3238
3458
  msgid "Save ads.txt file"
3459
  msgstr ""
3460
 
3461
- #: settings.php:3373 settings.php:3381 strings.php:199
3462
  msgid "Warning"
3463
  msgstr ""
3464
 
3465
- #: settings.php:3373
3466
  msgid "ads.txt file must be placed on the root domain"
3467
  msgstr ""
3468
 
3469
  #. translators: %s: file path
3470
- #: settings.php:3374
3471
  msgid "WordPress is installed in %s"
3472
  msgstr ""
3473
 
3474
- #: settings.php:3375
3475
  msgid "Showing file"
3476
  msgstr ""
3477
 
3478
- #: settings.php:3381
3479
  msgid "File %s not found"
3480
  msgstr ""
3481
 
3482
- #: settings.php:3388
3483
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3484
  msgstr ""
3485
 
3486
- #: settings.php:3405
3487
  msgid "Advertising system"
3488
  msgstr ""
3489
 
3490
- #: settings.php:3406
3491
  msgid "Account ID"
3492
  msgstr ""
3493
 
3494
- #: settings.php:3408
3495
  msgid "Certification authority ID"
3496
  msgstr ""
3497
 
3498
- #: settings.php:3423
3499
  msgid "Account ID found in block and present in ads.txt"
3500
  msgstr ""
3501
 
3502
- #: settings.php:3427
3503
  msgid "Account ID found in block but not present in ads.txt"
3504
  msgstr ""
3505
 
3506
- #: settings.php:3643
3507
  msgid "Preview block"
3508
  msgstr ""
3509
 
3510
- #: settings.php:3652
3511
  msgid "Insertion disabled"
3512
  msgstr ""
3513
 
3514
- #: settings.php:3676
3515
  msgid "Widget positions"
3516
  msgstr ""
3517
 
3518
- #: settings.php:3742
3519
  msgid "Ad unit"
3520
  msgstr ""
3521
 
3522
- #: settings.php:3744
3523
  msgid "Slot ID"
3524
  msgstr ""
3525
 
3526
- #: settings.php:3770
3527
  msgid "Copy AdSense code"
3528
  msgstr ""
3529
 
3530
- #: settings.php:3773
3531
  msgid "Preview AdSense ad"
3532
  msgstr ""
3533
 
3534
- #: settings.php:3776
3535
  msgid "Get AdSense code"
3536
  msgstr ""
3537
 
3538
  #. translators: %s: HTML tags
3539
- #: settings.php:3808
3540
  msgid ""
3541
  "Please %s clear authorization %s with the button %s above and once again "
3542
  "authorize access to your AdSense account."
3543
  msgstr ""
3544
 
3545
- #: settings.php:3827
3546
  msgid "AdSense Integration"
3547
  msgstr ""
3548
 
3549
- #: settings.php:3829
3550
  msgid "AdSense Integration - Step 2"
3551
  msgstr ""
3552
 
3553
  #. translators: %s: HTML tags
3554
- #: settings.php:3835
3555
  msgid ""
3556
  "Authorize %s to access your AdSense account. Click on the %s Get "
3557
  "Authorization Code %s button to open a new window where you can allow "
@@ -3560,7 +3564,7 @@ msgid ""
3560
  msgstr ""
3561
 
3562
  #. translators: %s: HTML tags
3563
- #: settings.php:3842
3564
  msgid ""
3565
  "If you get error, can't access ad units or would like to use own Google API "
3566
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
@@ -3568,7 +3572,7 @@ msgid ""
3568
  msgstr ""
3569
 
3570
  #. translators: %s: HTML tags
3571
- #: settings.php:3844
3572
  msgid ""
3573
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3574
  "Authorization Code %s button to open a new window where you can allow "
@@ -3577,38 +3581,38 @@ msgid ""
3577
  msgstr ""
3578
 
3579
  #. translators: %s: HTML tags
3580
- #: settings.php:3851
3581
  msgid ""
3582
  "If you get error %s invalid client %s click on the button %s Clear and "
3583
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3584
  msgstr ""
3585
 
3586
- #: settings.php:3862
3587
  msgid "Get Authorization Code"
3588
  msgstr ""
3589
 
3590
- #: settings.php:3865
3591
  msgid "Enter Authorization Code"
3592
  msgstr ""
3593
 
3594
- #: settings.php:3875
3595
  msgid "Use own API IDs"
3596
  msgstr ""
3597
 
3598
- #: settings.php:3877
3599
  msgid "Clear and return to Step 1"
3600
  msgstr ""
3601
 
3602
- #: settings.php:3881
3603
  msgid "Authorize"
3604
  msgstr ""
3605
 
3606
- #: settings.php:3897
3607
  msgid "AdSense Integration - Step 1"
3608
  msgstr ""
3609
 
3610
  #. translators: %s: Ad Inserter
3611
- #: settings.php:3901
3612
  msgid ""
3613
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3614
  "To do this you need to authorize %s to access your AdSense account. The "
@@ -3617,176 +3621,176 @@ msgid ""
3617
  msgstr ""
3618
 
3619
  #. translators: %s: HTML tags
3620
- #: settings.php:3910
3621
  msgid "Go to %s Google APIs and Services console %s"
3622
  msgstr ""
3623
 
3624
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3625
- #: settings.php:3911
3626
  msgid ""
3627
  "Create %1$s project - if the project and IDs are already created click on "
3628
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3629
  msgstr ""
3630
 
3631
  #. translators: %s: HTML tags
3632
- #: settings.php:3912
3633
  msgid ""
3634
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3635
  "create a new project"
3636
  msgstr ""
3637
 
3638
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3639
- #: settings.php:3913
3640
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3641
  msgstr ""
3642
 
3643
  #. translators: %s: HTML tags
3644
- #: settings.php:3914
3645
  msgid ""
3646
  "Click on project selection, wait for the project to be created and then and "
3647
  "select %s as the current project"
3648
  msgstr ""
3649
 
3650
  #. translators: %s: HTML tags
3651
- #: settings.php:3915
3652
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3653
  msgstr ""
3654
 
3655
  #. translators: %s: HTML tags
3656
- #: settings.php:3916
3657
  msgid "Search for adsense and enable %s"
3658
  msgstr ""
3659
 
3660
  #. translators: %s: HTML tags
3661
- #: settings.php:3917
3662
  msgid "Click on %s CREATE CREDENTIALS %s"
3663
  msgstr ""
3664
 
3665
  #. translators: %s: HTML tags
3666
- #: settings.php:3918
3667
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3668
  msgstr ""
3669
 
3670
  #. translators: %s: HTML tags
3671
- #: settings.php:3919
3672
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3673
  msgstr ""
3674
 
3675
  #. translators: %s: HTML tags
3676
- #: settings.php:3920
3677
  msgid "Click on %s What credentials do I need? %s"
3678
  msgstr ""
3679
 
3680
  #. translators: %s: HTML tags
3681
- #: settings.php:3921
3682
  msgid ""
3683
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3684
  "Ad Inserter client %s"
3685
  msgstr ""
3686
 
3687
  #. translators: %s: HTML tags
3688
- #: settings.php:3922
3689
  msgid ""
3690
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3691
  "enter %s"
3692
  msgstr ""
3693
 
3694
  #. translators: %s: HTML tags
3695
- #: settings.php:3923
3696
  msgid "Click on %s Continue %s"
3697
  msgstr ""
3698
 
3699
  #. translators: %s: HTML tags
3700
- #: settings.php:3924
3701
  msgid "Click on %s Done %s"
3702
  msgstr ""
3703
 
3704
  #. translators: %s: HTML tags
3705
- #: settings.php:3925
3706
  msgid ""
3707
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3708
  "secret %s"
3709
  msgstr ""
3710
 
3711
- #: settings.php:3926
3712
  msgid "Copy them to the appropriate fields below"
3713
  msgstr ""
3714
 
3715
- #: settings.php:3932
3716
  msgid "Client ID"
3717
  msgstr ""
3718
 
3719
- #: settings.php:3935
3720
  msgid "Enter Client ID"
3721
  msgstr ""
3722
 
3723
- #: settings.php:3940
3724
  msgid "Client secret"
3725
  msgstr ""
3726
 
3727
- #: settings.php:3943
3728
  msgid "Enter Client secret"
3729
  msgstr ""
3730
 
3731
- #: settings.php:3953
3732
  msgid "Use default API IDs"
3733
  msgstr ""
3734
 
3735
- #: settings.php:3958
3736
  msgid "Save"
3737
  msgstr ""
3738
 
3739
- #: settings.php:4234 settings.php:4247 settings.php:4260 settings.php:4275
3740
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3741
  msgstr ""
3742
 
3743
- #: settings.php:4239 settings.php:4252 settings.php:4265 settings.php:4280
3744
- #: settings.php:4451 settings.php:4455 settings.php:4457 settings.php:4473
3745
- #: settings.php:4485 settings.php:4488 settings.php:4494 settings.php:4506
3746
  msgid "Looking for AdSense alternative?"
3747
  msgstr ""
3748
 
3749
- #: settings.php:4291
3750
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3751
  msgstr ""
3752
 
3753
- #: settings.php:4296 settings.php:4453 settings.php:4465 settings.php:4491
3754
- #: settings.php:4514
3755
  msgid "Use Infolinks ads with Adsense to earn more"
3756
  msgstr ""
3757
 
3758
- #: settings.php:4315 settings.php:4353
3759
  msgid "Support plugin development"
3760
  msgstr ""
3761
 
3762
- #: settings.php:4316 settings.php:4354
3763
  msgid ""
3764
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3765
  "reviewing the plugin on WordPres"
3766
  msgstr ""
3767
 
3768
- #: settings.php:4316
3769
  msgctxt "Review ad Inserter"
3770
  msgid "Review"
3771
  msgstr ""
3772
 
3773
- #: settings.php:4317
3774
  msgid ""
3775
  "Support free Ad Inserter development. If you are making money with Ad "
3776
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3777
  "you!"
3778
  msgstr ""
3779
 
3780
- #: settings.php:4317
3781
  msgid "Donate"
3782
  msgstr ""
3783
 
3784
- #: settings.php:4324 settings.php:4369
3785
  msgid "Average rating of the plugin - Thank you!"
3786
  msgstr ""
3787
 
3788
  #. translators: %s: Ad Inserter, HTML tags
3789
- #: settings.php:4335
3790
  msgid ""
3791
  "You've been using %s for a while now, and I hope you're happy with it. "
3792
  "Positive %s reviews %s are a great way to show your appreciation for my "
@@ -3795,334 +3799,351 @@ msgid ""
3795
  "your website. %s Thank you!"
3796
  msgstr ""
3797
 
3798
- #: settings.php:4354
3799
  msgid "Review"
3800
  msgstr ""
3801
 
3802
- #: settings.php:4358
3803
  msgid "Ad Inserter on Twitter"
3804
  msgstr ""
3805
 
3806
- #: settings.php:4359
3807
  msgid "Ad Inserter on Facebook"
3808
  msgstr ""
3809
 
3810
- #: settings.php:4362
3811
  msgid "Follow Ad Inserter"
3812
  msgstr ""
3813
 
3814
  #. translators: %s: HTML tags
3815
- #: settings.php:4389
3816
  msgid ""
3817
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3818
  "and %s Common Settings %s pages"
3819
  msgstr ""
3820
 
3821
  #. translators: %s: HTML tags
3822
- #: settings.php:4401
3823
  msgid ""
3824
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3825
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3826
  msgstr ""
3827
 
3828
  #. translators: %s: HTML tags
3829
- #: settings.php:4420
 
 
 
 
 
 
 
3830
  msgid ""
3831
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3832
  "diagnose and fix the problem."
3833
  msgstr ""
3834
 
3835
  #. translators: %s: HTML tags
3836
- #: settings.php:4424
3837
  msgid ""
3838
  "If you need any kind of help or support, please do not hesitate to open a "
3839
  "thread on the %s support forum. %s"
3840
  msgstr ""
3841
 
3842
- #: settings.php:4469 settings.php:4510
3843
  msgid "A/B testing - Track ad impressions and clicks"
3844
  msgstr ""
3845
 
3846
- #: settings.php:4477 settings.php:4502
3847
  msgid "Code preview with visual CSS editor"
3848
  msgstr ""
3849
 
3850
- #: settings.php:4522
3851
  msgid "Looking for Pro Ad Management plugin?"
3852
  msgstr ""
3853
 
3854
- #: settings.php:4523
3855
  msgid "To Optimally Monetize your WordPress website?"
3856
  msgstr ""
3857
 
3858
  #. translators: %s HTML tags
3859
- #: settings.php:4526
3860
  msgid "%s AdSense Integration %s"
3861
  msgstr ""
3862
 
3863
  #. translators: %s HTML tags
3864
- #: settings.php:4527
3865
  msgid "Syntax highlighting %s editor %s"
3866
  msgstr ""
3867
 
3868
  #. translators: %s HTML tags
3869
- #: settings.php:4528
3870
  msgid "%s Code preview %s with visual CSS editor"
3871
  msgstr ""
3872
 
3873
  #. translators: %s HTML tags
3874
- #: settings.php:4529
3875
  msgid "Simple user interface - all settings on a single page"
3876
  msgstr ""
3877
 
3878
  #. translators: %s HTML tags
3879
- #: settings.php:4530
3880
  msgid ""
3881
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3882
  "image / excerpt"
3883
  msgstr ""
3884
 
3885
  #. translators: %s HTML tags
3886
- #: settings.php:4531
3887
  msgid "%s Automatic insertion %s between posts on blog pages"
3888
  msgstr ""
3889
 
3890
  #. translators: %s HTML tags
3891
- #: settings.php:4532
3892
  msgid "%s Automatic insertion %s before, between and after comments"
3893
  msgstr ""
3894
 
3895
  #. translators: %s HTML tags
3896
- #: settings.php:4533
3897
  msgid "%s Automatic insertion %s after %s or before %s tag"
3898
  msgstr ""
3899
 
3900
  #. translators: %s HTML tags
3901
- #: settings.php:4534
3902
  msgid "Automatic insertion at %s custom hook positions %s"
3903
  msgstr ""
3904
 
3905
  #. translators: %s HTML tags
3906
- #: settings.php:4535
3907
  msgid ""
3908
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3909
  "selectors)"
3910
  msgstr ""
3911
 
3912
  #. translators: %s HTML tags
3913
- #: settings.php:4536
3914
  msgid "%s Insertion exceptions %s for individual posts and pages"
3915
  msgstr ""
3916
 
3917
  #. translators: %s HTML tags
3918
- #: settings.php:4537
3919
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3920
  msgstr ""
3921
 
3922
  #. translators: %s HTML tags
3923
- #: settings.php:4538
3924
  msgid ""
3925
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3926
  "scrolls)"
3927
  msgstr ""
3928
 
3929
  #. translators: %s HTML tags
3930
- #: settings.php:4539
3931
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3932
  msgstr ""
3933
 
3934
  #. translators: %s HTML tags
3935
- #: settings.php:4540
3936
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3937
  msgstr ""
3938
 
3939
  #. translators: %s HTML tags
3940
- #: settings.php:4541
3941
  msgid ""
3942
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3943
  "visible)"
3944
  msgstr ""
3945
 
3946
  #. translators: %s HTML tags
3947
- #: settings.php:4542
3948
  msgid ""
3949
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3950
  msgstr ""
3951
 
3952
  #. translators: %s HTML tags
3953
- #: settings.php:4543
3954
  msgid "Block %s alignment and style %s customizations"
3955
  msgstr ""
3956
 
3957
  #. translators: %s HTML tags
3958
- #: settings.php:4544
3959
  msgid ""
3960
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3961
  "TOS)"
3962
  msgstr ""
3963
 
3964
  #. translators: %s HTML tags
3965
- #: settings.php:4545
3966
  msgid ""
3967
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3968
  "feeds"
3969
  msgstr ""
3970
 
3971
  #. translators: %s HTML tags
3972
- #: settings.php:4546
3973
  msgid "%s Ad rotation %s (works also with caching)"
3974
  msgstr ""
3975
 
3976
  #. translators: %s HTML tags
3977
- #: settings.php:4547
3978
  msgid "Create, edit and check %s ads.txt %s file"
3979
  msgstr ""
3980
 
3981
  #. translators: %s HTML tags
3982
- #: settings.php:4548
3983
  msgid ""
3984
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3985
  "AdSense)"
3986
  msgstr ""
3987
 
3988
  #. translators: %s HTML tags
3989
- #: settings.php:4549
 
 
 
 
 
 
 
 
 
 
3990
  msgid "Support for %s A/B testing %s"
3991
  msgstr ""
3992
 
3993
  #. translators: %s HTML tags
3994
- #: settings.php:4550
3995
  msgid "Support for %s lazy loading %s"
3996
  msgstr ""
3997
 
3998
  #. translators: %s HTML tags
3999
- #: settings.php:4551
4000
  msgid "Support for ads on %s AMP pages %s"
4001
  msgstr ""
4002
 
4003
  #. translators: %s HTML tags
4004
- #: settings.php:4552
4005
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4006
  msgstr ""
4007
 
4008
  #. translators: %s HTML tags
4009
- #: settings.php:4553
4010
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4011
  msgstr ""
4012
 
4013
  #. translators: %s HTML tags
4014
- #: settings.php:4554
4015
  msgid "PHP code processing"
4016
  msgstr ""
4017
 
4018
  #. translators: %s HTML tags
4019
- #: settings.php:4555
4020
  msgid "%s Banner %s code generator"
4021
  msgstr ""
4022
 
4023
  #. translators: %s HTML tags
4024
- #: settings.php:4556
4025
  msgid "Support for %s header and footer %s code"
4026
  msgstr ""
4027
 
4028
  #. translators: %s HTML tags
4029
- #: settings.php:4557
4030
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4031
  msgstr ""
4032
 
4033
  #. translators: %s HTML tags
4034
- #: settings.php:4558
4035
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4036
  msgstr ""
4037
 
4038
  #. translators: %s HTML tags
4039
- #: settings.php:4559
4040
  msgid "Client-side %s mobile device detection %s (works with caching)"
4041
  msgstr ""
4042
 
4043
  #. translators: %s HTML tags
4044
- #: settings.php:4560
4045
  msgid ""
4046
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4047
  "protection"
4048
  msgstr ""
4049
 
4050
  #. translators: %s HTML tags
4051
- #: settings.php:4561
4052
  msgid "%s Ad blocking statistics %s"
4053
  msgstr ""
4054
 
4055
  #. translators: %s HTML tags
4056
- #: settings.php:4562
4057
  msgid ""
4058
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4059
  "referers"
4060
  msgstr ""
4061
 
4062
  #. translators: %s HTML tags
4063
- #: settings.php:4563
4064
  msgid ""
4065
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4066
  msgstr ""
4067
 
4068
  #. translators: %s HTML tags
4069
- #: settings.php:4564
4070
  msgid "%s Multisite options %s to limit settings on the sites"
4071
  msgstr ""
4072
 
4073
  #. translators: %s HTML tags
4074
- #: settings.php:4565
4075
  msgid "%s Import/Export %s block or plugin settings"
4076
  msgstr ""
4077
 
4078
  #. translators: %s HTML tags
4079
- #: settings.php:4566
4080
  msgid "%s Insertion scheduling %s with fallback option"
4081
  msgstr ""
4082
 
4083
  #. translators: %s HTML tags
4084
- #: settings.php:4567
4085
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4086
  msgstr ""
4087
 
4088
  #. translators: %s HTML tags
4089
- #: settings.php:4568
4090
  msgid "Simple troubleshooting with many %s debugging functions %s"
4091
  msgstr ""
4092
 
4093
  #. translators: %s HTML tags
4094
- #: settings.php:4569
4095
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4096
  msgstr ""
4097
 
4098
  #. translators: %s HTML tags
4099
- #: settings.php:4570
4100
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4101
  msgstr ""
4102
 
4103
  #. translators: %s HTML tags
4104
- #: settings.php:4571
4105
  msgid ""
4106
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4107
  msgstr ""
4108
 
4109
  #. translators: %s HTML tags
4110
- #: settings.php:4572
4111
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4112
  msgstr ""
4113
 
4114
  #. translators: %s HTML tags
4115
- #: settings.php:4573
4116
  msgid "No ads on the settings page"
4117
  msgstr ""
4118
 
4119
  #. translators: %s HTML tags
4120
- #: settings.php:4574
4121
- msgid "Premium support via email"
4122
  msgstr ""
4123
 
4124
  #. translators: %s HTML tags
4125
- #: settings.php:4577
4126
  msgid ""
4127
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4128
  "website with many advertising features to automatically insert adverts on "
@@ -4137,82 +4158,82 @@ msgid ""
4137
  msgstr ""
4138
 
4139
  #. translators: %s HTML tags
4140
- #: settings.php:4590
4141
  msgid "Looking for %s Pro Ad Management plugin? %s"
4142
  msgstr ""
4143
 
4144
  #. translators: %s HTML tags
4145
- #: settings.php:4595
4146
  msgid "Ads between posts"
4147
  msgstr ""
4148
 
4149
  #. translators: %s HTML tags
4150
- #: settings.php:4596
4151
  msgid "Ads between comments"
4152
  msgstr ""
4153
 
4154
  #. translators: %s HTML tags
4155
- #: settings.php:4597
4156
  msgid "Support via email"
4157
  msgstr ""
4158
 
4159
  #. translators: %s HTML tags
4160
- #: settings.php:4603
4161
  msgid "%s Sticky positions %s"
4162
  msgstr ""
4163
 
4164
  #. translators: %s HTML tags
4165
- #: settings.php:4604
4166
  msgid "%s Limit insertions %s"
4167
  msgstr ""
4168
 
4169
  #. translators: %s HTML tags
4170
- #: settings.php:4605
4171
  msgid "%s Clearance %s options"
4172
  msgstr ""
4173
 
4174
  #. translators: %s HTML tags
4175
- #: settings.php:4611
4176
  msgid "Ad rotation"
4177
  msgstr ""
4178
 
4179
  #. translators: %s HTML tags
4180
- #: settings.php:4612
4181
  msgid "%s A/B testing %s"
4182
  msgstr ""
4183
 
4184
  #. translators: %s HTML tags
4185
- #: settings.php:4613
4186
  msgid "%s Ad tracking %s"
4187
  msgstr ""
4188
 
4189
  #. translators: %s HTML tags
4190
- #: settings.php:4619
4191
  msgid "Support for %s AMP pages %s"
4192
  msgstr ""
4193
 
4194
  #. translators: %s HTML tags
4195
- #: settings.php:4620
4196
  msgid "%s Ad blocking detection %s"
4197
  msgstr ""
4198
 
4199
  #. translators: %s HTML tags
4200
- #: settings.php:4621
4201
  msgid "%s Mobile device detection %s"
4202
  msgstr ""
4203
 
4204
  #. translators: %s HTML tags
4205
- #: settings.php:4628
4206
  msgid "64 code blocks"
4207
  msgstr ""
4208
 
4209
  #. translators: %s HTML tags
4210
- #: settings.php:4629
4211
  msgid "%s GEO targeting %s"
4212
  msgstr ""
4213
 
4214
  #. translators: %s HTML tags
4215
- #: settings.php:4630
4216
  msgid "%s Scheduling %s"
4217
  msgstr ""
4218
 
2
  # This file is distributed under the same license as the Ad Inserter package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Ad Inserter 2.4.17\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
7
+ "POT-Creation-Date: 2019-05-13 18:40:34+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:347
16
  msgctxt "Menu item"
17
  msgid "Debugging DEMO"
18
  msgstr ""
19
 
20
+ #: ad-inserter.php:363
21
  msgctxt "Menu item"
22
  msgid "Label Blocks"
23
  msgstr ""
24
 
25
+ #: ad-inserter.php:370
26
  msgctxt "Menu item"
27
  msgid "Show Positions"
28
  msgstr ""
29
 
30
+ #: ad-inserter.php:441
31
  msgctxt "Menu item"
32
  msgid "Show HTML Tags"
33
  msgstr ""
34
 
35
+ #: ad-inserter.php:448
36
  msgctxt "Menu item"
37
  msgid "Disable Insertion"
38
  msgstr ""
39
 
40
+ #: ad-inserter.php:457
41
  msgctxt "Menu item"
42
  msgid "Ad Blocking Status"
43
  msgstr ""
44
 
45
+ #: ad-inserter.php:464
46
  msgctxt "Menu item"
47
  msgid "Simulate Ad Blocking"
48
  msgstr ""
49
 
50
+ #: ad-inserter.php:474
51
  msgctxt "Menu item"
52
  msgid "Log Processing"
53
  msgstr ""
54
 
55
  #. translators: Debugging position name Before HTML element
56
+ #: ad-inserter.php:1071
57
  msgid "Before"
58
  msgstr ""
59
 
60
  #. translators: Debugging position name After HTML element
61
+ #: ad-inserter.php:1076
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:1081 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:1086 strings.php:99
74
  msgid "Append content"
75
  msgstr ""
76
 
77
  #. translators: Debugging position name Replace content of HTML element
78
+ #: ad-inserter.php:1091 strings.php:100
79
  msgid "Replace content"
80
  msgstr ""
81
 
82
  #. translators: Debugging position name Replace HTML element
83
+ #: ad-inserter.php:1096 strings.php:150
84
  msgid "Replace"
85
  msgstr ""
86
 
87
  #. translators: Debugging message when output buffering is enabled
88
+ #: ad-inserter.php:1143
89
  msgid "OUTPUT BUFFERING"
90
  msgstr ""
91
 
92
  #. translators: Debugging position
93
+ #: ad-inserter.php:1147
94
  msgid "Above Header"
95
  msgstr ""
96
 
97
+ #: ad-inserter.php:1356
98
  msgctxt "Menu item"
99
  msgid "Log In"
100
  msgstr ""
101
 
102
  #. translators: %s: Ad Inserter
103
+ #: ad-inserter.php:1637 ad-inserter.php:2489
104
  msgid "%s Settings"
105
  msgstr ""
106
 
107
  #. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
108
+ #: ad-inserter.php:2060
109
  msgid "AD BLOCKING DETECTED, PAGE VIEWS"
110
  msgstr ""
111
 
112
+ #: ad-inserter.php:2060
113
  msgid "NO ACTION"
114
  msgstr ""
115
 
116
+ #: ad-inserter.php:2061
117
  msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
118
  msgstr ""
119
 
120
+ #: ad-inserter.php:2062
121
  msgid "AD BLOCKING DETECTED - ACTION"
122
  msgstr ""
123
 
124
+ #: ad-inserter.php:2063
125
  msgid "AD BLOCKING NOT DETECTED"
126
  msgstr ""
127
 
128
+ #: ad-inserter.php:2064
129
  msgid "AD BLOCKING DETECTION COOKIES DELETED"
130
  msgstr ""
131
 
132
+ #: ad-inserter.php:2065
133
  msgid "AD BLOCKING DETECTED - NO ACTION"
134
  msgstr ""
135
 
136
  #. Translators: 1: number of blocks, 2: Ad Inserter
137
+ #: ad-inserter.php:2260
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:2261 includes/functions.php:1530
144
  msgid "No, thank you."
145
  msgstr ""
146
 
147
  #. Translators: %s: Ad Inserter
148
+ #: ad-inserter.php:2264
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:2265 includes/functions.php:1533
154
  msgid "Not now, maybe later."
155
  msgstr ""
156
 
157
+ #: ad-inserter.php:2275
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:2277
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:2283
171
  msgid "Rate %s"
172
  msgstr ""
173
 
174
+ #: ad-inserter.php:2288
175
  msgid "I already did."
176
  msgstr ""
177
 
178
+ #: ad-inserter.php:2302
179
  msgctxt "Menu item"
180
  msgid "Settings"
181
  msgstr ""
182
 
183
  #. translators: %s: Ad Inserter
184
+ #: ad-inserter.php:2376
185
  msgctxt "Meta box name"
186
  msgid "%s Individual Exceptions"
187
  msgstr ""
188
 
189
+ #: ad-inserter.php:2405 ad-inserter.php:8122 class.php:1967
190
+ #: includes/preview.php:1976 includes/preview.php:2020
191
+ #: includes/preview.php:2057 settings.php:3672 strings.php:3
192
  msgid "Block"
193
  msgstr ""
194
 
195
+ #: ad-inserter.php:2406 settings.php:3673 settings.php:3747
196
  msgid "Name"
197
  msgstr ""
198
 
199
+ #: ad-inserter.php:2407 settings.php:3675
200
  msgid "Automatic insertion"
201
  msgstr ""
202
 
203
+ #: ad-inserter.php:2410
204
  msgid "Default insertion for pages"
205
  msgstr ""
206
 
207
+ #: ad-inserter.php:2411
208
  msgid "Default insertion for posts"
209
  msgstr ""
210
 
211
  #. translators: For this post or page
212
+ #: ad-inserter.php:2414
213
  msgctxt "Page"
214
  msgid "For this"
215
  msgstr ""
216
 
217
+ #: ad-inserter.php:2415
218
  msgctxt "Post"
219
  msgid "For this"
220
  msgstr ""
221
 
222
+ #: ad-inserter.php:2423
223
  msgctxt "Enabled/disabled on all"
224
  msgid "pages"
225
  msgstr ""
226
 
227
+ #: ad-inserter.php:2424
228
  msgctxt "Default insertion for"
229
  msgid "pages"
230
  msgstr ""
231
 
232
+ #: ad-inserter.php:2428
233
  msgctxt "Enabled/disabled on all"
234
  msgid "posts"
235
  msgstr ""
236
 
237
+ #: ad-inserter.php:2429
238
  msgctxt "Default insertion for"
239
  msgid "posts"
240
  msgstr ""
241
 
242
+ #: ad-inserter.php:2448 ad-inserter.php:2461 strings.php:156
243
  msgid "Enabled"
244
  msgstr ""
245
 
246
  #. translators: Menu items
247
+ #: ad-inserter.php:2448 ad-inserter.php:2461 includes/functions.php:2191
248
  #: strings.php:16
249
  msgid "Disabled"
250
  msgstr ""
251
 
252
  #. translators: Enabled on all pages or posts
253
+ #: ad-inserter.php:2451
254
  msgid "Enabled on all"
255
  msgstr ""
256
 
257
  #. translators: Disabled on all pages or posts
258
+ #: ad-inserter.php:2453
259
  msgid "Disabled on all"
260
  msgstr ""
261
 
262
  #. translators: No individual exceptions enabled for pages or posts
263
+ #: ad-inserter.php:2481
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:2486
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:2491
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:2494
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:2495
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:2497
296
  msgid "For more information check page %s"
297
  msgstr ""
298
 
299
  #. translators: Ad Inserter Exceptions documentation page
300
+ #: ad-inserter.php:2499
301
  msgid "Individual Exceptions"
302
  msgstr ""
303
 
304
+ #: ad-inserter.php:2544
305
  msgid "STATIC PAGE"
306
  msgstr ""
307
 
308
+ #: ad-inserter.php:2547
309
  msgid "POST"
310
  msgstr ""
311
 
312
+ #: ad-inserter.php:2550
313
  msgid "HOMEPAGE"
314
  msgstr ""
315
 
316
+ #: ad-inserter.php:2553
317
  msgid "CATEGORY PAGE"
318
  msgstr ""
319
 
320
+ #: ad-inserter.php:2556
321
  msgid "SEARCH PAGE"
322
  msgstr ""
323
 
324
+ #: ad-inserter.php:2559
325
  msgid "ARCHIVE PAGE"
326
  msgstr ""
327
 
328
+ #: ad-inserter.php:2562
329
  msgid "ERROR 404 PAGE"
330
  msgstr ""
331
 
332
+ #: ad-inserter.php:2565
333
  msgid "AJAX CALL"
334
  msgstr ""
335
 
336
+ #: ad-inserter.php:2568
337
  msgid "UNKNOWN PAGE TYPE"
338
  msgstr ""
339
 
340
+ #: ad-inserter.php:2585
341
  msgid "Click to delete ad blocking detection cokies"
342
  msgstr ""
343
 
344
+ #: ad-inserter.php:2586
345
  msgid "AD BLOCKING STATUS UNKNOWN"
346
  msgstr ""
347
 
348
  #. translators: %s: AdSense Auto Ads
349
+ #: ad-inserter.php:2610
350
  msgid ""
351
  "Code for %s detected - Code will automatically insert AdSense ads at optimal "
352
  "positions"
353
  msgstr ""
354
 
355
+ #: ad-inserter.php:2749
356
  msgid "Code for insertion"
357
  msgstr ""
358
 
359
+ #: ad-inserter.php:2749
360
  msgid "character"
361
  msgid_plural "characters"
362
  msgstr[0] ""
363
  msgstr[1] ""
364
 
365
+ #: ad-inserter.php:2792
366
  msgid "Header code"
367
  msgstr ""
368
 
369
+ #: ad-inserter.php:2792
370
  msgctxt "Header code"
371
  msgid "DISABLED"
372
  msgstr ""
373
 
374
+ #: ad-inserter.php:2792 ad-inserter.php:3014
375
  msgid "character inserted"
376
  msgid_plural "characters inserted"
377
  msgstr[0] ""
378
  msgstr[1] ""
379
 
380
+ #: ad-inserter.php:2825
381
  msgid "Automatically placed by AdSense Auto ads code"
382
  msgstr ""
383
 
384
+ #: ad-inserter.php:3014
385
  msgid "Footer code"
386
  msgstr ""
387
 
388
+ #: ad-inserter.php:3014
389
  msgctxt "Footer code"
390
  msgid "DISABLED"
391
  msgstr ""
392
 
393
+ #: ad-inserter.php:3020
394
  msgid "JAVASCRIPT NOT WORKING"
395
  msgstr ""
396
 
397
+ #: ad-inserter.php:3020
398
  msgid "NO JAVASCRIPT ERRORS"
399
  msgstr ""
400
 
401
+ #: ad-inserter.php:3020
402
  msgid "JAVASCRIPT ERRORS"
403
  msgstr ""
404
 
405
  #. translators: block name (block with default settings)
406
+ #: ad-inserter.php:5152
407
  msgctxt "Block name"
408
  msgid "Default"
409
  msgstr ""
410
 
411
  #. translators: %s: Ad Inserter
412
+ #: ad-inserter.php:5723
413
  msgid "Error importing %s settings."
414
  msgstr ""
415
 
416
+ #: ad-inserter.php:5724
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:5773
423
  msgid "Settings saved."
424
  msgstr ""
425
 
426
+ #: ad-inserter.php:5858
427
  msgid "Settings cleared."
428
  msgstr ""
429
 
430
+ #: ad-inserter.php:6203 ad-inserter.php:6205 ad-inserter.php:6228
431
  msgid "word"
432
  msgid_plural "words"
433
  msgstr[0] ""
434
  msgstr[1] ""
435
 
436
+ #: ad-inserter.php:6242 ad-inserter.php:6354
437
  msgid "HTML TAGS REMOVED"
438
  msgstr ""
439
 
440
+ #: ad-inserter.php:6430
441
  msgid "BEFORE COMMENTS"
442
  msgstr ""
443
 
444
+ #: ad-inserter.php:6538
445
  msgid "AFTER COMMENTS"
446
  msgstr ""
447
 
448
+ #: ad-inserter.php:6601
449
  msgid "BETWEEN COMMENTS"
450
  msgstr ""
451
 
452
+ #: ad-inserter.php:7762
453
  msgid "requires WordPress 4.0 or newer"
454
  msgstr ""
455
 
456
+ #: ad-inserter.php:7762
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:7995
463
  msgid "Thank you for installing"
464
  msgstr ""
465
 
466
  #. translators: Opt-in message: %s: HTML tags
467
+ #: ad-inserter.php:7997
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:7999
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:8036
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:8079
490
  msgid "%s block."
491
  msgstr ""
492
 
493
  #. translators: widget title
494
+ #: ad-inserter.php:8095 ad-inserter.php:8131
495
  msgid "Processing log"
496
  msgstr ""
497
 
498
  #. translators: widget title
499
+ #: ad-inserter.php:8097 ad-inserter.php:8132
500
  msgid "Dummy widget"
501
  msgstr ""
502
 
503
  #. translators: widget title
504
+ #: ad-inserter.php:8099 ad-inserter.php:8130
505
  msgid "Debugging tools"
506
  msgstr ""
507
 
508
  #. translators: block status (widget title)
509
+ #: ad-inserter.php:8106
510
  msgctxt "block"
511
  msgid "PAUSED"
512
  msgstr ""
513
 
514
+ #: ad-inserter.php:8107
515
  msgid "WIDGET DISABLED"
516
  msgstr ""
517
 
518
+ #: ad-inserter.php:8108
519
  msgid "Unknown block"
520
  msgstr ""
521
 
522
+ #: ad-inserter.php:8117 includes/functions.php:2721 settings.php:1038
523
  msgid "Title"
524
  msgstr ""
525
 
526
+ #: ad-inserter.php:8139
527
  msgctxt "Widget"
528
  msgid "Sticky"
529
  msgstr ""
530
 
531
+ #: ad-inserter.php:8188
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:8189
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:3679
570
  msgid "Widget"
571
  msgstr ""
572
 
573
+ #: class.php:1962 settings.php:3677
574
  msgid "PHP function call"
575
  msgstr ""
576
 
675
  "extension for PHP."
676
  msgstr ""
677
 
678
+ #: includes/editor.php:7 includes/placeholders.php:352
679
+ #: includes/preview.php:1962 strings.php:238
680
  msgid "Use"
681
  msgstr ""
682
 
683
+ #: includes/editor.php:8 includes/preview.php:1963
684
  msgid "Reset"
685
  msgstr ""
686
 
687
+ #: includes/editor.php:9 includes/placeholders.php:354
688
+ #: includes/preview.php:1965 strings.php:201 strings.php:237
689
  msgid "Cancel"
690
  msgstr ""
691
 
694
  msgstr ""
695
 
696
  #: includes/editor.php:262 includes/preview-adb.php:289
697
+ #: includes/preview.php:1952
698
  msgid ""
699
  "This page was not loaded properly. Please check browser, plugins and ad "
700
  "blockers."
705
  msgstr ""
706
 
707
  #: includes/editor.php:264 includes/preview-adb.php:291
708
+ #: includes/preview.php:1954
709
  msgid "PAGE BLOCKED"
710
  msgstr ""
711
 
771
  "Leave empty unless position is not properly calculated."
772
  msgstr ""
773
 
774
+ #: includes/functions.php:422 settings.php:1194 settings.php:2493
775
  msgid "Open HTML element selector"
776
  msgstr ""
777
 
807
  msgid "Toggle Ad Blocking Statistics"
808
  msgstr ""
809
 
810
+ #: includes/functions.php:490 includes/functions.php:2518
811
  msgid "Toggle Statistics"
812
  msgstr ""
813
 
830
  msgid "Save Settings"
831
  msgstr ""
832
 
833
+ #: includes/functions.php:578 includes/preview.php:2106
834
  msgid "Horizontal position"
835
  msgstr ""
836
 
840
  "from CSS"
841
  msgstr ""
842
 
843
+ #: includes/functions.php:609 includes/preview.php:2161
844
  msgid "Vertical position"
845
  msgstr ""
846
 
850
  "value from CSS"
851
  msgstr ""
852
 
853
+ #: includes/functions.php:649 includes/preview.php:2212
854
  msgid "Animation"
855
  msgstr ""
856
 
900
  msgid "Double click to toggle controls in public reports"
901
  msgstr ""
902
 
903
+ #: includes/functions.php:749 settings.php:3173 settings.php:3209
904
+ #: settings.php:3252 strings.php:211
905
  msgid "Loading..."
906
  msgstr ""
907
 
908
+ #: includes/functions.php:770
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:774
915
  msgid "Auto refresh data for the selected range every 60 seconds"
916
  msgstr ""
917
 
918
+ #: includes/functions.php:777 includes/functions.php:4734
919
  msgid "Load data for last month"
920
  msgstr ""
921
 
922
+ #: includes/functions.php:777 includes/functions.php:4734
923
  msgid "Last Month"
924
  msgstr ""
925
 
926
+ #: includes/functions.php:780 includes/functions.php:4737
927
  msgid "Load data for this month"
928
  msgstr ""
929
 
930
+ #: includes/functions.php:780 includes/functions.php:4737
931
  msgid "This Month"
932
  msgstr ""
933
 
934
+ #: includes/functions.php:783 includes/functions.php:4740
935
  msgid "Load data for this year"
936
  msgstr ""
937
 
938
+ #: includes/functions.php:783 includes/functions.php:4740
939
  msgid "This Year"
940
  msgstr ""
941
 
942
+ #: includes/functions.php:786 includes/functions.php:4743
943
  msgid "Load data for the last 15 days"
944
  msgstr ""
945
 
946
+ #: includes/functions.php:789 includes/functions.php:4746
947
  msgid "Load data for the last 30 days"
948
  msgstr ""
949
 
950
+ #: includes/functions.php:792 includes/functions.php:4749
951
  msgid "Load data for the last 90 days"
952
  msgstr ""
953
 
954
+ #: includes/functions.php:795 includes/functions.php:4752
955
  msgid "Load data for the last 180 days"
956
  msgstr ""
957
 
958
+ #: includes/functions.php:798 includes/functions.php:4755
959
  msgid "Load data for the last 365 days"
960
  msgstr ""
961
 
962
+ #: includes/functions.php:808 includes/functions.php:4765
963
  msgid "Load data for the selected range"
964
  msgstr ""
965
 
966
+ #: includes/functions.php:824
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:824
973
  msgid "Import settings for block"
974
  msgstr ""
975
 
976
+ #: includes/functions.php:828
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:828
984
  msgid "Import block name"
985
  msgstr ""
986
 
987
+ #: includes/functions.php:832
988
  msgid "Saved settings for block"
989
  msgstr ""
990
 
991
+ #: includes/functions.php:845
992
  msgid "Export / Import Ad Inserter Pro Settings"
993
  msgstr ""
994
 
995
+ #: includes/functions.php:855
996
  msgid "Are you sure you want to clear all statistics data for all blocks?"
997
  msgstr ""
998
 
999
+ #: includes/functions.php:857
1000
  msgid "Clear All Statistics Data"
1001
  msgstr ""
1002
 
1003
+ #: includes/functions.php:884
1004
  msgid "Toggle country/city editor"
1005
  msgstr ""
1006
 
1007
+ #: includes/functions.php:890
1008
  msgid "IP Addresses"
1009
  msgstr ""
1010
 
1011
+ #: includes/functions.php:893
1012
  msgid "Toggle IP address editor"
1013
  msgstr ""
1014
 
1015
+ #: includes/functions.php:896
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:900
1022
  msgid "Blacklist IP addresses"
1023
  msgstr ""
1024
 
1025
+ #: includes/functions.php:904
1026
  msgid "Whitelist IP addresses"
1027
  msgstr ""
1028
 
1029
+ #: includes/functions.php:915
1030
  msgid "Countries"
1031
  msgstr ""
1032
 
1033
+ #: includes/functions.php:916
1034
  msgid "Cities"
1035
  msgstr ""
1036
 
1037
+ #: includes/functions.php:920 includes/functions.php:2483
1038
  msgid "Toggle country editor"
1039
  msgstr ""
1040
 
1041
+ #: includes/functions.php:923
1042
  msgid "Toggle city editor"
1043
  msgstr ""
1044
 
1045
+ #: includes/functions.php:927 includes/functions.php:2486
1046
  msgid "Comma separated country ISO Alpha-2 codes"
1047
  msgstr ""
1048
 
1049
+ #: includes/functions.php:931
1050
  msgid "Blacklist countries"
1051
  msgstr ""
1052
 
1053
+ #: includes/functions.php:935
1054
  msgid "Whitelist countries"
1055
  msgstr ""
1056
 
1057
+ #: includes/functions.php:1251 includes/functions.php:1486
1058
  msgid "Enter license key"
1059
  msgstr ""
1060
 
1061
  #. translators: %s: Ad Inserter Pro
1062
+ #: includes/functions.php:1257
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:1269 includes/functions.php:1495
1069
  msgid "Check license key"
1070
  msgstr ""
1071
 
1072
  #. translators: %s: Ad Inserter Pro
1073
+ #: includes/functions.php:1275
1074
  msgid "Invalid %s license key."
1075
  msgstr ""
1076
 
1077
  #. translators: %s: Ad Inserter Pro
1078
+ #: includes/functions.php:1284
1079
  msgid "%s license expired. Plugin updates are disabled."
1080
  msgstr ""
1081
 
1082
+ #: includes/functions.php:1285
1083
  msgid "Renew license"
1084
  msgstr ""
1085
 
1086
  #. translators: %s: Ad Inserter Pro
1087
+ #: includes/functions.php:1293
1088
  msgid "%s license overused. Plugin updates are disabled."
1089
  msgstr ""
1090
 
1091
+ #: includes/functions.php:1294
1092
  msgid "Manage licenses"
1093
  msgstr ""
1094
 
1095
+ #: includes/functions.php:1294
1096
  msgid "Upgrade license"
1097
  msgstr ""
1098
 
1099
  #. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
1100
+ #: includes/functions.php:1488
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:1497
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:1513
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:1520
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:1547
1126
  msgid "Renew the licence"
1127
  msgstr ""
1128
 
1129
+ #: includes/functions.php:1549
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:1560
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:1582
1142
  msgid "Warning: %s MaxMind IP geolocation database not found."
1143
  msgstr ""
1144
 
1145
+ #: includes/functions.php:2120
1146
  msgid "Geolocation"
1147
  msgstr ""
1148
 
1149
+ #: includes/functions.php:2124
1150
  msgid "Exceptions"
1151
  msgstr ""
1152
 
1153
+ #: includes/functions.php:2129
1154
  msgid "Multisite"
1155
  msgstr ""
1156
 
1157
+ #: includes/functions.php:2134
1158
  msgid "Tracking"
1159
  msgstr ""
1160
 
1161
  #. translators: %d: days, hours, minutes
1162
+ #: includes/functions.php:2165
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:2174
1169
  msgid "Active %s expires in %d days %d hours %d minutes"
1170
  msgstr ""
1171
 
1172
+ #: includes/functions.php:2178
1173
  msgid "Expired"
1174
  msgstr ""
1175
 
1176
+ #: includes/functions.php:2186 settings.php:1277 settings.php:1292
1177
  #: settings.php:1879
1178
  msgid "and"
1179
  msgstr ""
1180
 
1181
+ #: includes/functions.php:2189
1182
  msgid "fallback"
1183
  msgstr ""
1184
 
1185
+ #: includes/functions.php:2190
1186
  msgid "Block to be used when scheduling expires"
1187
  msgstr ""
1188
 
1189
+ #: includes/functions.php:2215
1190
  msgid "Load in iframe"
1191
  msgstr ""
1192
 
1193
+ #: includes/functions.php:2219 includes/placeholders.php:389
1194
  msgid "Width"
1195
  msgstr ""
1196
 
1197
+ #: includes/functions.php:2220
1198
  msgid "iframe width, empty means full width (100%)"
1199
  msgstr ""
1200
 
1201
+ #: includes/functions.php:2226 includes/placeholders.php:384
1202
  msgid "Height"
1203
  msgstr ""
1204
 
1205
+ #: includes/functions.php:2227
1206
  msgid "iframe height, empty means adjust it to iframe content height"
1207
  msgstr ""
1208
 
1209
+ #: includes/functions.php:2234
1210
  msgid "Ad label in iframe"
1211
  msgstr ""
1212
 
1213
+ #: includes/functions.php:2239
1214
  msgid "Preview iframe code"
1215
  msgstr ""
1216
 
1217
+ #: includes/functions.php:2239 includes/preview.php:1974 settings.php:954
1218
+ #: settings.php:2555
1219
  msgid "Preview"
1220
  msgstr ""
1221
 
1222
+ #: includes/functions.php:2253 includes/functions.php:3794
1223
+ #: includes/functions.php:3857 settings.php:2016
1224
  msgid "Ad Blocking"
1225
  msgstr ""
1226
 
1227
  #. translators: 1, 2 and 3, 4: HTML tags
1228
+ #: includes/functions.php:2262
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:2271
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:2289
1243
  msgid "When ad blocking is detected"
1244
  msgstr ""
1245
 
1246
+ #: includes/functions.php:2298
1247
  msgid "replacement"
1248
  msgstr ""
1249
 
1250
+ #: includes/functions.php:2299
1251
  msgid "Block to be shown when ad blocking is detected"
1252
  msgstr ""
1253
 
1254
+ #: includes/functions.php:2300
1255
  msgctxt "replacement"
1256
  msgid "None"
1257
  msgstr ""
1258
 
1259
+ #: includes/functions.php:2317
1260
  msgid "Close button"
1261
  msgstr ""
1262
 
1263
+ #: includes/functions.php:2364
1264
  msgid "Lazy loading"
1265
  msgstr ""
1266
 
1267
  #. Translators: %s MaxMind
1268
+ #: includes/functions.php:2418
1269
  msgid "This product includes GeoLite2 data created by %s"
1270
  msgstr ""
1271
 
1272
+ #: includes/functions.php:2429
1273
  msgid "IP geolocation database"
1274
  msgstr ""
1275
 
1276
+ #: includes/functions.php:2432
1277
  msgid "Select IP geolocation database."
1278
  msgstr ""
1279
 
1280
+ #: includes/functions.php:2443
1281
  msgid "Automatic database updates"
1282
  msgstr ""
1283
 
1284
+ #: includes/functions.php:2446
1285
  msgid ""
1286
  "Automatically download and update free GeoLite2 IP geolocation database by "
1287
  "MaxMind"
1288
  msgstr ""
1289
 
1290
+ #: includes/functions.php:2454
1291
  msgid "Database"
1292
  msgstr ""
1293
 
1294
+ #: includes/functions.php:2457
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:2475
1302
  msgid "Group %d"
1303
  msgstr ""
1304
 
1305
+ #: includes/functions.php:2481
1306
  msgid "countries"
1307
  msgstr ""
1308
 
1309
+ #: includes/functions.php:2526
1310
  msgid "Enable tracking"
1311
  msgstr ""
1312
 
1313
+ #: includes/functions.php:2533
1314
  msgid "Generate report"
1315
  msgstr ""
1316
 
1317
+ #: includes/functions.php:2541
1318
  msgid "Impression and Click Tracking"
1319
  msgstr ""
1320
 
1321
+ #: includes/functions.php:2542 settings.php:2443
1322
+ msgctxt "ad blocking detection"
1323
+ msgid "NOT ENABLED"
1324
+ msgstr ""
1325
+
1326
+ #: includes/functions.php:2558
1327
  msgid "Internal"
1328
  msgstr ""
1329
 
1330
+ #: includes/functions.php:2562
1331
  msgid "Track impressions and clicks with internal tracking and statistics"
1332
  msgstr ""
1333
 
1334
+ #: includes/functions.php:2567
1335
  msgid "External"
1336
  msgstr ""
1337
 
1338
+ #: includes/functions.php:2571
1339
  msgid ""
1340
  "Track impressions and clicks with Google Analytics or Matomo (needs tracking "
1341
  "code installed)"
1342
  msgstr ""
1343
 
1344
+ #: includes/functions.php:2576
1345
  msgid "Track Pageviews"
1346
  msgstr ""
1347
 
1348
+ #: includes/functions.php:2582
1349
  msgid "Track Pageviews by Device (as configured for viewports)"
1350
  msgstr ""
1351
 
1352
+ #: includes/functions.php:2592
1353
  msgid "Track for Logged in Users"
1354
  msgstr ""
1355
 
1356
+ #: includes/functions.php:2598
1357
  msgid "Track impressions and clicks from logged in users"
1358
  msgstr ""
1359
 
1360
+ #: includes/functions.php:2608
1361
  msgid "Click Detection"
1362
  msgstr ""
1363
 
1364
+ #: includes/functions.php:2614
1365
  msgid ""
1366
  "Standard method detects clicks only on banners with links, Advanced method "
1367
  "can detect clicks on any kind of ads, but it is slightly less accurate"
1368
  msgstr ""
1369
 
1370
+ #: includes/functions.php:2640
1371
  msgid "Report header image"
1372
  msgstr ""
1373
 
1374
+ #: includes/functions.php:2643
1375
  msgid ""
1376
  "Image or logo to be displayed in the header of the statistins report. "
1377
  "Aabsolute path starting with '/' or relative path to the image file. Clear "
1378
  "to reset to default image."
1379
  msgstr ""
1380
 
1381
+ #: includes/functions.php:2644 strings.php:223
1382
  msgid "Select or upload header image"
1383
  msgstr ""
1384
 
1385
+ #: includes/functions.php:2649
1386
  msgid "Report header title"
1387
  msgstr ""
1388
 
1389
+ #: includes/functions.php:2652
1390
  msgid ""
1391
  "Title to be displayed in the header of the statistics report. Text or HTML "
1392
  "code, clear to reset to default text."
1393
  msgstr ""
1394
 
1395
+ #: includes/functions.php:2657
1396
  msgid "Report header description"
1397
  msgstr ""
1398
 
1399
+ #: includes/functions.php:2660
1400
  msgid ""
1401
  "Description to be displayed in the header of the statistics report. Text or "
1402
  "HTML code, clear to reset to default text."
1403
  msgstr ""
1404
 
1405
+ #: includes/functions.php:2665
1406
  msgid "Report footer"
1407
  msgstr ""
1408
 
1409
+ #: includes/functions.php:2668
1410
  msgid ""
1411
  "Text to be displayed in the footer of the statistics report. Clear to reset "
1412
  "to default text."
1413
  msgstr ""
1414
 
1415
+ #: includes/functions.php:2673
1416
  msgid "Public report key"
1417
  msgstr ""
1418
 
1419
+ #: includes/functions.php:2676
1420
  msgid "String to generate unique report IDs. Clear to reset to default value."
1421
  msgstr ""
1422
 
1423
+ #: includes/functions.php:2708
1424
  msgid "Are you sure you want to clear all exceptions for block"
1425
  msgstr ""
1426
 
1427
+ #: includes/functions.php:2709 settings.php:1041
1428
  msgid "Clear all exceptions for block"
1429
  msgstr ""
1430
 
1431
+ #: includes/functions.php:2716
1432
  msgid "Are you sure you want to clear all exceptions?"
1433
  msgstr ""
1434
 
1435
+ #: includes/functions.php:2716
1436
  msgid "Clear all exceptions for all blocks"
1437
  msgstr ""
1438
 
1439
+ #: includes/functions.php:2721 settings.php:3411 settings.php:3749
1440
  msgid "Type"
1441
  msgstr ""
1442
 
1443
+ #: includes/functions.php:2739
1444
  msgid "View"
1445
  msgstr ""
1446
 
1447
+ #: includes/functions.php:2740 includes/placeholders.php:353
1448
+ #: includes/preview.php:2281 settings.php:1180
1449
  msgid "Edit"
1450
  msgstr ""
1451
 
1452
+ #: includes/functions.php:2770
1453
  msgid "Are you sure you want to clear all exceptions for"
1454
  msgstr ""
1455
 
1456
+ #: includes/functions.php:2771
1457
  msgid "Clear all exceptions for"
1458
  msgstr ""
1459
 
1460
+ #: includes/functions.php:2784
1461
  msgid "No exceptions"
1462
  msgstr ""
1463
 
1464
  #. translators: %s: Ad Inserter Pro
1465
+ #: includes/functions.php:2795
1466
  msgid "%s options for network blogs"
1467
  msgstr ""
1468
 
1469
  #. translators: %s: Ad Inserter Pro
1470
+ #: includes/functions.php:2800
1471
  msgid "Enable %s widgets for sub-sites"
1472
  msgstr ""
1473
 
1474
+ #: includes/functions.php:2800
1475
  msgid "Widgets"
1476
  msgstr ""
1477
 
1478
+ #: includes/functions.php:2805
1479
  msgid "Enable PHP code processing for sub-sites"
1480
  msgstr ""
1481
 
1482
+ #: includes/functions.php:2805
1483
  msgid "PHP Processing"
1484
  msgstr ""
1485
 
1486
  #. translators: %s: Ad Inserter Pro
1487
+ #: includes/functions.php:2810
1488
  msgid "Enable %s block exceptions in post/page editor for sub-sites"
1489
  msgstr ""
1490
 
1491
+ #: includes/functions.php:2810
1492
  msgid "Post/Page exceptions"
1493
  msgstr ""
1494
 
1495
  #. translators: %s: Ad Inserter Pro
1496
+ #: includes/functions.php:2815
1497
  msgid "Enable %s settings page for sub-sites"
1498
  msgstr ""
1499
 
1500
+ #: includes/functions.php:2815
1501
  msgid "Settings page"
1502
  msgstr ""
1503
 
1504
  #. translators: %s: Ad Inserter Pro
1505
+ #: includes/functions.php:2820
1506
  msgid "Enable %s settings of main site to be used for all blogs"
1507
  msgstr ""
1508
 
1509
+ #: includes/functions.php:2820
1510
  msgid "Main site settings used for all blogs"
1511
  msgstr ""
1512
 
1513
+ #: includes/functions.php:2831 settings.php:2442
1514
  msgid "Ad Blocking Detection"
1515
  msgstr ""
1516
 
1517
+ #: includes/functions.php:2837
1518
  msgid ""
1519
  "Standard method is reliable but should be used only if Advanced method does "
1520
  "not work. Advanced method recreates files used for detection with random "
1522
  "publicly accessible"
1523
  msgstr ""
1524
 
1525
+ #: includes/functions.php:3457 includes/functions.php:3547
1526
+ #: includes/functions.php:3567
1527
  msgid "AD BLOCKING"
1528
  msgstr ""
1529
 
1530
+ #: includes/functions.php:3458 includes/functions.php:3498
1531
+ #: includes/functions.php:3541 includes/functions.php:3568
1532
  msgid "BLOCK INSERTED BUT NOT VISIBLE"
1533
  msgstr ""
1534
 
1535
+ #: includes/functions.php:3461 includes/functions.php:3540
1536
+ #: includes/functions.php:3574
1537
  msgid "NO AD BLOCKING"
1538
  msgstr ""
1539
 
1540
+ #: includes/functions.php:3497 includes/functions.php:3504
1541
  msgid "AD BLOCKING REPLACEMENT"
1542
  msgstr ""
1543
 
1544
+ #: includes/functions.php:3647 includes/functions.php:3856
1545
  msgid "Pageviews"
1546
  msgstr ""
1547
 
1548
+ #: includes/functions.php:3793
1549
  msgctxt "Version"
1550
  msgid "Unknown"
1551
  msgstr ""
1552
 
1553
+ #: includes/functions.php:3793
1554
  msgctxt "Times"
1555
  msgid "DISPLAYED"
1556
  msgstr ""
1557
 
1558
+ #: includes/functions.php:3793
1559
  msgid "No version"
1560
  msgstr ""
1561
 
1562
+ #: includes/functions.php:3794
1563
  msgctxt "Times"
1564
  msgid "BLOCKED"
1565
  msgstr ""
1566
 
1567
+ #: includes/functions.php:3856
1568
  msgid "Impressions"
1569
  msgstr ""
1570
 
1571
+ #: includes/functions.php:3857 includes/functions.php:3858
1572
+ #: includes/functions.php:3913
1573
  msgid "Clicks"
1574
  msgstr ""
1575
 
1576
+ #: includes/functions.php:3858
1577
  msgid "events"
1578
  msgstr ""
1579
 
1580
+ #: includes/functions.php:3859
1581
  msgid "Ad Blocking Share"
1582
  msgstr ""
1583
 
1584
  #. translators: CTR as Click Through Rate
1585
+ #: includes/functions.php:3859 includes/functions.php:3919
1586
  msgid "CTR"
1587
  msgstr ""
1588
 
1589
+ #: includes/functions.php:4001
1590
  msgid "pageviews"
1591
  msgid_plural "pageviews"
1592
  msgstr[0] ""
1593
  msgstr[1] ""
1594
 
1595
+ #: includes/functions.php:4001
1596
  msgid "impressions"
1597
  msgid_plural "impressions"
1598
  msgstr[0] ""
1599
  msgstr[1] ""
1600
 
1601
+ #: includes/functions.php:4005
1602
  msgid "event"
1603
  msgid_plural "events"
1604
  msgstr[0] ""
1605
  msgstr[1] ""
1606
 
1607
+ #: includes/functions.php:4005
1608
  msgid "click"
1609
  msgid_plural "clicks"
1610
  msgstr[0] ""
1611
  msgstr[1] ""
1612
 
1613
+ #: includes/functions.php:4100
1614
  msgctxt "Pageviews / Impressions"
1615
  msgid "Average"
1616
  msgstr ""
1617
 
1618
+ #: includes/functions.php:4121
1619
  msgctxt "Ad Blocking / Clicks"
1620
  msgid "Average"
1621
  msgstr ""
1622
 
1623
+ #: includes/functions.php:4145
1624
  msgctxt "Ad Blocking Share / CTR"
1625
  msgid "Average"
1626
  msgstr ""
1627
 
1628
  #. Translators: %s: Ad Inserter Pro
1629
+ #: includes/functions.php:4327
1630
  msgid "%s Report"
1631
  msgstr ""
1632
 
1633
  #. translators: for report range description
1634
+ #: includes/functions.php:4418 includes/functions.php:4679 strings.php:178
1635
  msgid "Ad Inserter Pro Report"
1636
  msgstr ""
1637
 
1638
+ #: includes/functions.php:4585
1639
  msgid "for last month"
1640
  msgstr ""
1641
 
1642
+ #: includes/functions.php:4590
1643
  msgid "for this month"
1644
  msgstr ""
1645
 
1646
+ #: includes/functions.php:4595
1647
  msgid "for this year"
1648
  msgstr ""
1649
 
1650
+ #: includes/functions.php:4600
1651
  msgid "for the last 15 days"
1652
  msgstr ""
1653
 
1654
+ #: includes/functions.php:4605
1655
  msgid "for the last 30 days"
1656
  msgstr ""
1657
 
1658
+ #: includes/functions.php:4610
1659
  msgid "for the last 90 days"
1660
  msgstr ""
1661
 
1662
+ #: includes/functions.php:4615
1663
  msgid "for the last 180 days"
1664
  msgstr ""
1665
 
1666
+ #: includes/functions.php:4620
1667
  msgid "for the last 365 days"
1668
  msgstr ""
1669
 
1670
+ #: includes/placeholders.php:20
1671
  msgid "Custom"
1672
  msgstr ""
1673
 
1674
+ #: includes/placeholders.php:103
1675
  msgid "Placeholder Editor"
1676
  msgstr ""
1677
 
1678
+ #: includes/placeholders.php:352
1679
  msgid "Select placeholder"
1680
  msgstr ""
1681
 
1682
+ #: includes/placeholders.php:353
1683
  msgid "Edit placeholder size, colors and text"
1684
  msgstr ""
1685
 
1686
+ #: includes/placeholders.php:354
1687
  msgid "Close placeholder editor"
1688
  msgstr ""
1689
 
1690
+ #: includes/placeholders.php:358
1691
  msgid "Placeholder"
1692
  msgstr ""
1693
 
1694
+ #: includes/placeholders.php:363 settings.php:808 settings.php:3750
1695
  msgid "Size"
1696
  msgstr ""
1697
 
1698
+ #: includes/placeholders.php:379
1699
  msgid "Background color"
1700
  msgstr ""
1701
 
1702
+ #: includes/placeholders.php:398
1703
  msgid "Text"
1704
  msgstr ""
1705
 
1706
+ #: includes/placeholders.php:403
1707
  msgid "Text color"
1708
  msgstr ""
1709
 
1710
+ #: includes/placeholders.php:412
1711
  msgid ""
1712
  "Here you can create a universal placeholder image that can be used in place "
1713
  "of ads when they are not available yet.\n"
1715
  "save them to local computer or server."
1716
  msgstr ""
1717
 
1718
+ #: includes/placeholders.php:417
1719
  msgid ""
1720
  "Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
1721
  "300x600 or define custom size.\n"
1726
  "text."
1727
  msgstr ""
1728
 
1729
+ #: includes/placeholders.php:421
1730
  msgid ""
1731
  "<strong>Please note</strong>: if you have active rotation editor the code "
1732
  "window shows only the code for the currently selected option.\n"
1734
  "currently selected option."
1735
  msgstr ""
1736
 
1737
+ #: includes/placeholders.php:424
1738
  msgid ""
1739
  "Code generator for banners and AdSense generates the code only when you "
1740
  "click on the button Generate code.\n"
1743
  "need to (optionally) import and generate code for each rotation option."
1744
  msgstr ""
1745
 
1746
+ #: includes/placeholders.php:427
1747
  msgid ""
1748
  "Ad Inserter has a simple code generator for banners and placeholders.\n"
1749
  "You can select banner image (or placeholder), optionally define link (web "
1759
  msgid "Remove dummy paragraph"
1760
  msgstr ""
1761
 
1762
+ #: includes/preview-adb.php:9 includes/preview.php:1962
1763
  msgid "Use current settings"
1764
  msgstr ""
1765
 
1786
  msgid "Default"
1787
  msgstr ""
1788
 
1789
+ #: includes/preview-adb.php:12 includes/preview.php:1965
1790
  msgid "Close preview window"
1791
  msgstr ""
1792
 
1799
  msgid "Ad Blocking Detected Message Preview"
1800
  msgstr ""
1801
 
1802
+ #: includes/preview-adb.php:348 settings.php:2568
1803
  msgid "Message CSS"
1804
  msgstr ""
1805
 
1806
+ #: includes/preview-adb.php:353 settings.php:2576
1807
  msgid "Overlay CSS"
1808
  msgstr ""
1809
 
1815
  msgid "Code Preview"
1816
  msgstr ""
1817
 
1818
+ #: includes/preview.php:1960
1819
  msgid "Highlight inserted code"
1820
  msgstr ""
1821
 
1822
+ #: includes/preview.php:1960
1823
  msgid "Highlight"
1824
  msgstr ""
1825
 
1826
+ #: includes/preview.php:1963
1827
  msgid "Reset to block settings"
1828
  msgstr ""
1829
 
1830
+ #: includes/preview.php:1978
1831
  msgid "AdSense ad unit"
1832
  msgstr ""
1833
 
1834
+ #: includes/preview.php:2020 includes/preview.php:2057
1835
  msgid "Code"
1836
  msgstr ""
1837
 
1838
+ #: includes/preview.php:2046
1839
  msgid "wrapping div"
1840
  msgstr ""
1841
 
1842
+ #: includes/preview.php:2051 includes/preview.php:2058
1843
  msgid "background"
1844
  msgstr ""
1845
 
1846
+ #: includes/preview.php:2085 includes/preview.php:2236 settings.php:1141
1847
+ #: settings.php:3676
1848
  msgid "Alignment"
1849
  msgstr ""
1850
 
1851
+ #: includes/preview.php:2153
1852
  msgid "Horizontal margin"
1853
  msgstr ""
1854
 
1855
+ #: includes/preview.php:2202
1856
  msgid "Vertical margin"
1857
  msgstr ""
1858
 
1859
+ #: includes/preview.php:2224
1860
  msgid "Animate"
1861
  msgstr ""
1862
 
1863
+ #: includes/preview.php:2290
1864
  msgid ""
1865
  "This is a preview of the code between dummy paragraphs. Here you can test "
1866
  "various block alignments, visually edit margin and padding values of the "
1870
  "restores all the values to those of the current block."
1871
  msgstr ""
1872
 
1873
+ #: includes/preview.php:2293
1874
  msgid ""
1875
  "This is a preview of the saved block between dummy paragraphs. It shows the "
1876
  "code with the alignment and style as it is set for this block. Highlight "
1877
  "button highlights background, wrapping div margin and code area."
1878
  msgstr ""
1879
 
1880
+ #: includes/preview.php:2295
1881
  msgid ""
1882
  "This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
1883
  "code was loaded from your AdSense account. The ad block is displayed on a "
1885
  "highlight ad block."
1886
  msgstr ""
1887
 
1888
+ #: includes/preview.php:2301
1889
  msgid ""
1890
  "You can resize the window (and refresh the page to reload ads) to check "
1891
  "display with different screen widths.\n"
1893
  "settings will be copied to the active block."
1894
  msgstr ""
1895
 
1896
+ #: includes/preview.php:2303
1897
  msgid ""
1898
  "Please note that the code, block name, alignment and style are taken from "
1899
  "the current block settings (may not be saved).\n"
1901
  "padding can't be set. However, you can use own HTML code for the block."
1902
  msgstr ""
1903
 
1904
+ #: includes/preview.php:2308 includes/preview.php:2322
1905
+ #: includes/preview.php:2332 includes/preview.php:2342
1906
+ #: includes/preview.php:2352
1907
  msgid ""
1908
  "Ad Inserter can be configured to insert any code anywhere on the page. Each "
1909
  "code with it's settings is called a block.\n"
1917
  "and manual insertion."
1918
  msgstr ""
1919
 
1920
+ #: includes/preview.php:2313 includes/preview.php:2327
1921
+ #: includes/preview.php:2337 includes/preview.php:2347
1922
+ #: includes/preview.php:2357
1923
  msgid ""
1924
  "Few very important things you need to know in order to insert code and "
1925
  "display some ad:\n"
1932
  "individual post/page exceptions."
1933
  msgstr ""
1934
 
1935
+ #: includes/preview.php:2319
1936
  msgid ""
1937
  "This is a preview of the code for sticky ads. Here you can test various "
1938
  "horizontal and vertical alignments, close button locations, visually edit "
2050
  msgid "General Settings"
2051
  msgstr ""
2052
 
2053
+ #: settings.php:592 settings.php:2314 settings.php:2372 settings.php:2548
2054
  msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
2055
  msgstr ""
2056
 
2086
  msgid "Clear block"
2087
  msgstr ""
2088
 
2089
+ #: settings.php:658 settings.php:3644
2090
  msgid "Copy block"
2091
  msgstr ""
2092
 
2250
  "editor. Leave blank for no individual post exceptions."
2251
  msgstr ""
2252
 
2253
+ #: settings.php:978 settings.php:3060
2254
  msgid "Posts"
2255
  msgstr ""
2256
 
2261
  "theme)"
2262
  msgstr ""
2263
 
2264
+ #: settings.php:983 settings.php:3062
2265
  msgid "Homepage"
2266
  msgstr ""
2267
 
2269
  msgid "Enable insertion on category blog pages (including sub-pages)"
2270
  msgstr ""
2271
 
2272
+ #: settings.php:988 settings.php:3063
2273
  msgid "Category pages"
2274
  msgstr ""
2275
 
2287
  "page editor. Leave blank for no individual page exceptions."
2288
  msgstr ""
2289
 
2290
+ #: settings.php:1006 settings.php:3061
2291
  msgid "Static pages"
2292
  msgstr ""
2293
 
2295
  msgid "Enable insertion on search blog pages"
2296
  msgstr ""
2297
 
2298
+ #: settings.php:1011 settings.php:3065
2299
  msgid "Search pages"
2300
  msgstr ""
2301
 
2396
  msgid "HTML element selector or comma separated list of selectors"
2397
  msgstr ""
2398
 
2399
+ #: settings.php:1209 settings.php:2453
2400
  msgid "Action"
2401
  msgstr ""
2402
 
2663
  msgid "Enable shortcode for manual insertion of this block in posts and pages"
2664
  msgstr ""
2665
 
2666
+ #: settings.php:1636 settings.php:3678
2667
  msgid "Shortcode"
2668
  msgstr ""
2669
 
3059
  msgid "Wrapping div"
3060
  msgstr ""
3061
 
3062
+ #: settings.php:2238 settings.php:2659
3063
  msgid "BLOCK CODE"
3064
  msgstr ""
3065
 
3113
  msgid "Enable insertion of this code into HTML page header"
3114
  msgstr ""
3115
 
3116
+ #: settings.php:2323 settings.php:2381 settings.php:2553
3117
  msgid "Process PHP code"
3118
  msgstr ""
3119
 
3168
  "Page not found"
3169
  msgstr ""
3170
 
3171
+ #: settings.php:2433
3172
+ msgid "Code for ad blocking detection inserted. Click for details."
3173
  msgstr ""
3174
 
3175
+ #: settings.php:2438
3176
+ msgid "Enable detection of ad blocking"
 
3177
  msgstr ""
3178
 
3179
+ #: settings.php:2456
3180
  msgid "Global action when ad blocking is detected"
3181
  msgstr ""
3182
 
3183
+ #: settings.php:2462
3184
  msgid "No action for"
3185
  msgstr ""
3186
 
3187
+ #: settings.php:2463
3188
  msgid "Exceptions for global action when ad blocking is detected."
3189
  msgstr ""
3190
 
3191
+ #: settings.php:2473
3192
  msgid "Delay Action"
3193
  msgstr ""
3194
 
3195
+ #: settings.php:2476
3196
  msgid ""
3197
  "Number of page views to delay action when ad blocking is detected. Leave "
3198
  "empty for no delay (action fires on first page view). Sets cookie."
3199
  msgstr ""
3200
 
3201
+ #: settings.php:2476
3202
  msgctxt "Delay Action for x "
3203
  msgid "page views"
3204
  msgstr ""
3205
 
3206
+ #: settings.php:2481
3207
  msgid "No Action Period"
3208
  msgstr ""
3209
 
3210
+ #: settings.php:2484
3211
  msgid ""
3212
  "Number of days to supress action when ad blocking is detected. Leave empty "
3213
  "for no no-action period (action fires always after defined page view delay). "
3214
  "Sets cookie."
3215
  msgstr ""
3216
 
3217
+ #: settings.php:2484
3218
  msgctxt "no action period"
3219
  msgid "days"
3220
  msgstr ""
3221
 
3222
+ #: settings.php:2489
3223
  msgid "Custom Selectors"
3224
  msgstr ""
3225
 
3226
+ #: settings.php:2492
3227
  msgid ""
3228
  "Comma seprarated list of selectors (.class, #id) used for additional ad "
3229
  "blocking detection. Invisible element or element with zero height means ad "
3230
  "blocking is present."
3231
  msgstr ""
3232
 
3233
+ #: settings.php:2504
3234
  msgid "Redirection Page"
3235
  msgstr ""
3236
 
3237
+ #: settings.php:2516
3238
  msgid "Custom Url"
3239
  msgstr ""
3240
 
3241
+ #: settings.php:2521
3242
  msgid ""
3243
  "Static page for redirection when ad blocking is detected. For other pages "
3244
  "select Custom url and set it below."
3245
  msgstr ""
3246
 
3247
+ #: settings.php:2530
3248
  msgid "Custom Redirection Url"
3249
  msgstr ""
3250
 
3251
+ #: settings.php:2542
3252
  msgid "Message HTML code"
3253
  msgstr ""
3254
 
3255
+ #: settings.php:2555
3256
  msgid "Preview message when ad blocking is detected"
3257
  msgstr ""
3258
 
3259
+ #: settings.php:2584
3260
  msgid "Prevent visitors from closing the warning message"
3261
  msgstr ""
3262
 
3263
+ #: settings.php:2584
3264
  msgid "Undismissible Message"
3265
  msgstr ""
3266
 
3267
+ #: settings.php:2590
3268
  msgid "Not undismissible for"
3269
  msgstr ""
3270
 
3271
+ #: settings.php:2591
3272
  msgid "Users which can close the warning message."
3273
  msgstr ""
3274
 
3275
+ #: settings.php:2605
3276
  msgid ""
3277
  "Force showing admin toolbar for administrators when viewing site. Enable "
3278
  "this option when you are logged in as admin and you don't see admin toolbar."
3279
  msgstr ""
3280
 
3281
+ #: settings.php:2613
3282
  msgid "Disable header code (Header tab)"
3283
  msgstr ""
3284
 
3285
+ #: settings.php:2617
3286
  msgid "Disable footer code (Footer tab)"
3287
  msgstr ""
3288
 
3289
  #. translators: %s: Ad Inserter
3290
+ #: settings.php:2621
3291
  msgid "Disable %s JavaScript code"
3292
  msgstr ""
3293
 
3294
  #. translators: %s: Ad Inserter
3295
+ #: settings.php:2625
3296
  msgid "Disable %s CSS code"
3297
  msgstr ""
3298
 
3299
+ #: settings.php:2629
3300
  msgid ""
3301
  "Disable PHP code processing (in all blocks including header and footer code)"
3302
  msgstr ""
3303
 
3304
+ #: settings.php:2633
3305
  msgid "Disable insertion of all blocks"
3306
  msgstr ""
3307
 
3308
+ #: settings.php:2637
3309
  msgid "Disable insertions"
3310
  msgstr ""
3311
 
3312
  #. translators: %s: Ad Inserter
3313
+ #: settings.php:2649
3314
  msgid "%s CSS CODE"
3315
  msgstr ""
3316
 
3317
+ #: settings.php:2652
3318
  msgid "HEADER CODE"
3319
  msgstr ""
3320
 
3321
  #. translators: %s: PHP tags
3322
+ #: settings.php:2658
3323
  msgid "BLOCK PHP CODE"
3324
  msgstr ""
3325
 
3326
  #. translators: %s: Ad Inserter
3327
+ #: settings.php:2664
3328
  msgid "%s JS CODE"
3329
  msgstr ""
3330
 
3331
+ #: settings.php:2667
3332
  msgid "FOOTER CODE"
3333
  msgstr ""
3334
 
3335
+ #: settings.php:2676
3336
  msgid "Force showing admin toolbar when viewing site"
3337
  msgstr ""
3338
 
3339
+ #: settings.php:2683
3340
  msgid "Enable debugging functions in admin toolbar"
3341
  msgstr ""
3342
 
3343
+ #: settings.php:2685
3344
  msgid "Debugging functions in admin toolbar"
3345
  msgstr ""
3346
 
3347
+ #: settings.php:2692
3348
  msgid "Enable debugging functions in admin toolbar on mobile screens"
3349
  msgstr ""
3350
 
3351
+ #: settings.php:2694
3352
  msgid "Debugging functions on mobile screens"
3353
  msgstr ""
3354
 
3355
+ #: settings.php:2701
3356
  msgid ""
3357
  "Enable Debugger widget and code insertion debugging (blocks, positions, "
3358
  "tags, processing) by url parameters for non-logged in users. Enable this "
3361
  "administrators debugging is always enabled."
3362
  msgstr ""
3363
 
3364
+ #: settings.php:2703
3365
  msgid "Remote debugging"
3366
  msgstr ""
3367
 
3368
+ #: settings.php:2710
3369
  msgid ""
3370
  "Disable translation to see original texts for the settings and messages in "
3371
  "English"
3372
  msgstr ""
3373
 
3374
+ #: settings.php:2712
3375
  msgid "Disable translation"
3376
  msgstr ""
3377
 
3378
+ #: settings.php:3048
3379
  msgid "Available positions for current theme"
3380
  msgstr ""
3381
 
3382
+ #: settings.php:3049
3383
  msgid "Error checking pages"
3384
  msgstr ""
3385
 
3386
+ #: settings.php:3052
3387
  msgid "Toggle theme checker for available positions for automatic insertion"
3388
  msgstr ""
3389
 
3390
+ #: settings.php:3052
3391
  msgctxt "Button"
3392
  msgid "Check"
3393
  msgstr ""
3394
 
3395
+ #: settings.php:3059
3396
  msgid "Position"
3397
  msgstr ""
3398
 
3399
+ #: settings.php:3064
3400
  msgid "Archive pages"
3401
  msgstr ""
3402
 
3403
+ #: settings.php:3123
3404
  msgid ""
3405
  "Position not available because output buffering (tab [*]) is not enabled"
3406
  msgstr ""
3407
 
3408
+ #: settings.php:3126 strings.php:219
3409
  msgid "Position not checked yet"
3410
  msgstr ""
3411
 
3412
+ #: settings.php:3157
3413
  msgid "Toggle active/all blocks"
3414
  msgstr ""
3415
 
3416
+ #: settings.php:3161 strings.php:206
3417
  msgid "Rearrange block order"
3418
  msgstr ""
3419
 
3420
+ #: settings.php:3166
3421
  msgid "Save new block order"
3422
  msgstr ""
3423
 
3424
+ #: settings.php:3166
3425
  msgid "Save Changes"
3426
  msgstr ""
3427
 
3428
+ #: settings.php:3191
3429
  msgid "Toggle active/all ad units"
3430
  msgstr ""
3431
 
3432
+ #: settings.php:3195
3433
  msgid "Reload AdSense ad units"
3434
  msgstr ""
3435
 
3436
+ #: settings.php:3199
3437
  msgid "Clear authorization to access AdSense account"
3438
  msgstr ""
3439
 
3440
+ #: settings.php:3203 settings.php:3835 settings.php:3902 strings.php:214
3441
  msgid "Google AdSense Homepage"
3442
  msgstr ""
3443
 
3444
+ #: settings.php:3226
3445
  msgid "Reload ads.txt file"
3446
  msgstr ""
3447
 
3448
  #. translators: %s: ads.txt
3449
+ #: settings.php:3230
3450
  msgid "Open %s"
3451
  msgstr ""
3452
 
3453
+ #: settings.php:3234
3454
  msgid "Switch to table view"
3455
  msgstr ""
3456
 
3457
+ #: settings.php:3238
3458
  msgid "Switch to editor"
3459
  msgstr ""
3460
 
3461
+ #: settings.php:3242
3462
  msgid "Save ads.txt file"
3463
  msgstr ""
3464
 
3465
+ #: settings.php:3377 settings.php:3385 strings.php:199
3466
  msgid "Warning"
3467
  msgstr ""
3468
 
3469
+ #: settings.php:3377
3470
  msgid "ads.txt file must be placed on the root domain"
3471
  msgstr ""
3472
 
3473
  #. translators: %s: file path
3474
+ #: settings.php:3378
3475
  msgid "WordPress is installed in %s"
3476
  msgstr ""
3477
 
3478
+ #: settings.php:3379
3479
  msgid "Showing file"
3480
  msgstr ""
3481
 
3482
+ #: settings.php:3385
3483
  msgid "File %s not found"
3484
  msgstr ""
3485
 
3486
+ #: settings.php:3392
3487
  msgid "Account IDs found in blocks but not present in the ads.txt file"
3488
  msgstr ""
3489
 
3490
+ #: settings.php:3409
3491
  msgid "Advertising system"
3492
  msgstr ""
3493
 
3494
+ #: settings.php:3410
3495
  msgid "Account ID"
3496
  msgstr ""
3497
 
3498
+ #: settings.php:3412
3499
  msgid "Certification authority ID"
3500
  msgstr ""
3501
 
3502
+ #: settings.php:3427
3503
  msgid "Account ID found in block and present in ads.txt"
3504
  msgstr ""
3505
 
3506
+ #: settings.php:3431
3507
  msgid "Account ID found in block but not present in ads.txt"
3508
  msgstr ""
3509
 
3510
+ #: settings.php:3647
3511
  msgid "Preview block"
3512
  msgstr ""
3513
 
3514
+ #: settings.php:3656
3515
  msgid "Insertion disabled"
3516
  msgstr ""
3517
 
3518
+ #: settings.php:3680
3519
  msgid "Widget positions"
3520
  msgstr ""
3521
 
3522
+ #: settings.php:3746
3523
  msgid "Ad unit"
3524
  msgstr ""
3525
 
3526
+ #: settings.php:3748
3527
  msgid "Slot ID"
3528
  msgstr ""
3529
 
3530
+ #: settings.php:3774
3531
  msgid "Copy AdSense code"
3532
  msgstr ""
3533
 
3534
+ #: settings.php:3777
3535
  msgid "Preview AdSense ad"
3536
  msgstr ""
3537
 
3538
+ #: settings.php:3780
3539
  msgid "Get AdSense code"
3540
  msgstr ""
3541
 
3542
  #. translators: %s: HTML tags
3543
+ #: settings.php:3812
3544
  msgid ""
3545
  "Please %s clear authorization %s with the button %s above and once again "
3546
  "authorize access to your AdSense account."
3547
  msgstr ""
3548
 
3549
+ #: settings.php:3831
3550
  msgid "AdSense Integration"
3551
  msgstr ""
3552
 
3553
+ #: settings.php:3833
3554
  msgid "AdSense Integration - Step 2"
3555
  msgstr ""
3556
 
3557
  #. translators: %s: HTML tags
3558
+ #: settings.php:3839
3559
  msgid ""
3560
  "Authorize %s to access your AdSense account. Click on the %s Get "
3561
  "Authorization Code %s button to open a new window where you can allow "
3564
  msgstr ""
3565
 
3566
  #. translators: %s: HTML tags
3567
+ #: settings.php:3846
3568
  msgid ""
3569
  "If you get error, can't access ad units or would like to use own Google API "
3570
  "IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
3572
  msgstr ""
3573
 
3574
  #. translators: %s: HTML tags
3575
+ #: settings.php:3848
3576
  msgid ""
3577
  "Now you can authorize %s to access your AdSense account. Click on the %s Get "
3578
  "Authorization Code %s button to open a new window where you can allow "
3581
  msgstr ""
3582
 
3583
  #. translators: %s: HTML tags
3584
+ #: settings.php:3855
3585
  msgid ""
3586
  "If you get error %s invalid client %s click on the button %s Clear and "
3587
  "return to Step 1 %s to re-enter Client ID and Client Secret."
3588
  msgstr ""
3589
 
3590
+ #: settings.php:3866
3591
  msgid "Get Authorization Code"
3592
  msgstr ""
3593
 
3594
+ #: settings.php:3869
3595
  msgid "Enter Authorization Code"
3596
  msgstr ""
3597
 
3598
+ #: settings.php:3879
3599
  msgid "Use own API IDs"
3600
  msgstr ""
3601
 
3602
+ #: settings.php:3881
3603
  msgid "Clear and return to Step 1"
3604
  msgstr ""
3605
 
3606
+ #: settings.php:3885
3607
  msgid "Authorize"
3608
  msgstr ""
3609
 
3610
+ #: settings.php:3901
3611
  msgid "AdSense Integration - Step 1"
3612
  msgstr ""
3613
 
3614
  #. translators: %s: Ad Inserter
3615
+ #: settings.php:3905
3616
  msgid ""
3617
  "Here can %s list configured AdSense ad units and get code for AdSense ads. "
3618
  "To do this you need to authorize %s to access your AdSense account. The "
3621
  msgstr ""
3622
 
3623
  #. translators: %s: HTML tags
3624
+ #: settings.php:3914
3625
  msgid "Go to %s Google APIs and Services console %s"
3626
  msgstr ""
3627
 
3628
  #. translators: %1: Ad Inserter, 2, 3: HTML tags
3629
+ #: settings.php:3915
3630
  msgid ""
3631
  "Create %1$s project - if the project and IDs are already created click on "
3632
  "the %2$s Credentials %3$s in the sidebar and go to step 16"
3633
  msgstr ""
3634
 
3635
  #. translators: %s: HTML tags
3636
+ #: settings.php:3916
3637
  msgid ""
3638
  "Click on project selection and then click on the %s NEW PROJECT %s button to "
3639
  "create a new project"
3640
  msgstr ""
3641
 
3642
  #. translators: 1: Ad Inserter, 2, 3: HTML tags
3643
+ #: settings.php:3917
3644
  msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
3645
  msgstr ""
3646
 
3647
  #. translators: %s: HTML tags
3648
+ #: settings.php:3918
3649
  msgid ""
3650
  "Click on project selection, wait for the project to be created and then and "
3651
  "select %s as the current project"
3652
  msgstr ""
3653
 
3654
  #. translators: %s: HTML tags
3655
+ #: settings.php:3919
3656
  msgid "Click on %s ENABLE APIS AND SERVICES %s"
3657
  msgstr ""
3658
 
3659
  #. translators: %s: HTML tags
3660
+ #: settings.php:3920
3661
  msgid "Search for adsense and enable %s"
3662
  msgstr ""
3663
 
3664
  #. translators: %s: HTML tags
3665
+ #: settings.php:3921
3666
  msgid "Click on %s CREATE CREDENTIALS %s"
3667
  msgstr ""
3668
 
3669
  #. translators: %s: HTML tags
3670
+ #: settings.php:3922
3671
  msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
3672
  msgstr ""
3673
 
3674
  #. translators: %s: HTML tags
3675
+ #: settings.php:3923
3676
  msgid "For %s What data will you be accessing? %s select %s User data %s"
3677
  msgstr ""
3678
 
3679
  #. translators: %s: HTML tags
3680
+ #: settings.php:3924
3681
  msgid "Click on %s What credentials do I need? %s"
3682
  msgstr ""
3683
 
3684
  #. translators: %s: HTML tags
3685
+ #: settings.php:3925
3686
  msgid ""
3687
  "Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
3688
  "Ad Inserter client %s"
3689
  msgstr ""
3690
 
3691
  #. translators: %s: HTML tags
3692
+ #: settings.php:3926
3693
  msgid ""
3694
  "Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
3695
  "enter %s"
3696
  msgstr ""
3697
 
3698
  #. translators: %s: HTML tags
3699
+ #: settings.php:3927
3700
  msgid "Click on %s Continue %s"
3701
  msgstr ""
3702
 
3703
  #. translators: %s: HTML tags
3704
+ #: settings.php:3928
3705
  msgid "Click on %s Done %s"
3706
  msgstr ""
3707
 
3708
  #. translators: %s: HTML tags
3709
+ #: settings.php:3929
3710
  msgid ""
3711
  "Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
3712
  "secret %s"
3713
  msgstr ""
3714
 
3715
+ #: settings.php:3930
3716
  msgid "Copy them to the appropriate fields below"
3717
  msgstr ""
3718
 
3719
+ #: settings.php:3936
3720
  msgid "Client ID"
3721
  msgstr ""
3722
 
3723
+ #: settings.php:3939
3724
  msgid "Enter Client ID"
3725
  msgstr ""
3726
 
3727
+ #: settings.php:3944
3728
  msgid "Client secret"
3729
  msgstr ""
3730
 
3731
+ #: settings.php:3947
3732
  msgid "Enter Client secret"
3733
  msgstr ""
3734
 
3735
+ #: settings.php:3957
3736
  msgid "Use default API IDs"
3737
  msgstr ""
3738
 
3739
+ #: settings.php:3962
3740
  msgid "Save"
3741
  msgstr ""
3742
 
3743
+ #: settings.php:4238 settings.php:4251 settings.php:4264 settings.php:4279
3744
  msgid "Blank ad blocks? Looking for AdSense alternative?"
3745
  msgstr ""
3746
 
3747
+ #: settings.php:4243 settings.php:4256 settings.php:4269 settings.php:4284
3748
+ #: settings.php:4460 settings.php:4464 settings.php:4466 settings.php:4482
3749
+ #: settings.php:4494 settings.php:4497 settings.php:4503 settings.php:4515
3750
  msgid "Looking for AdSense alternative?"
3751
  msgstr ""
3752
 
3753
+ #: settings.php:4295
3754
  msgid "Try Infolinks Ads with Adsense or Media.net ads"
3755
  msgstr ""
3756
 
3757
+ #: settings.php:4300 settings.php:4462 settings.php:4474 settings.php:4500
3758
+ #: settings.php:4523
3759
  msgid "Use Infolinks ads with Adsense to earn more"
3760
  msgstr ""
3761
 
3762
+ #: settings.php:4319 settings.php:4357
3763
  msgid "Support plugin development"
3764
  msgstr ""
3765
 
3766
+ #: settings.php:4320 settings.php:4358
3767
  msgid ""
3768
  "If you like Ad Inserter and have a moment, please help me spread the word by "
3769
  "reviewing the plugin on WordPres"
3770
  msgstr ""
3771
 
3772
+ #: settings.php:4320
3773
  msgctxt "Review ad Inserter"
3774
  msgid "Review"
3775
  msgstr ""
3776
 
3777
+ #: settings.php:4321
3778
  msgid ""
3779
  "Support free Ad Inserter development. If you are making money with Ad "
3780
  "Inserter consider donating some small amount. Even 1 dollar counts. Thank "
3781
  "you!"
3782
  msgstr ""
3783
 
3784
+ #: settings.php:4321
3785
  msgid "Donate"
3786
  msgstr ""
3787
 
3788
+ #: settings.php:4328 settings.php:4373
3789
  msgid "Average rating of the plugin - Thank you!"
3790
  msgstr ""
3791
 
3792
  #. translators: %s: Ad Inserter, HTML tags
3793
+ #: settings.php:4339
3794
  msgid ""
3795
  "You've been using %s for a while now, and I hope you're happy with it. "
3796
  "Positive %s reviews %s are a great way to show your appreciation for my "
3799
  "your website. %s Thank you!"
3800
  msgstr ""
3801
 
3802
+ #: settings.php:4358
3803
  msgid "Review"
3804
  msgstr ""
3805
 
3806
+ #: settings.php:4362
3807
  msgid "Ad Inserter on Twitter"
3808
  msgstr ""
3809
 
3810
+ #: settings.php:4363
3811
  msgid "Ad Inserter on Facebook"
3812
  msgstr ""
3813
 
3814
+ #: settings.php:4366
3815
  msgid "Follow Ad Inserter"
3816
  msgstr ""
3817
 
3818
  #. translators: %s: HTML tags
3819
+ #: settings.php:4393
3820
  msgid ""
3821
  "Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
3822
  "and %s Common Settings %s pages"
3823
  msgstr ""
3824
 
3825
  #. translators: %s: HTML tags
3826
+ #: settings.php:4405
3827
  msgid ""
3828
  "%s New to %s AdSense? %s %s %s Connect your site %s - Advanced %s AdSense "
3829
  "code: %s %s In-feed ads, %s %s Auto ads, %s %s AMP ads %s"
3830
  msgstr ""
3831
 
3832
  #. translators: %s: HTML tags
3833
+ #: settings.php:4424
3834
+ msgid ""
3835
+ "Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
3836
+ "purchase you refer to us."
3837
+ msgstr ""
3838
+
3839
+ #. translators: %s: HTML tags
3840
+ #: settings.php:4429
3841
  msgid ""
3842
  "Ads are not showing? Check %s troubleshooting guide %s to find out how to "
3843
  "diagnose and fix the problem."
3844
  msgstr ""
3845
 
3846
  #. translators: %s: HTML tags
3847
+ #: settings.php:4433
3848
  msgid ""
3849
  "If you need any kind of help or support, please do not hesitate to open a "
3850
  "thread on the %s support forum. %s"
3851
  msgstr ""
3852
 
3853
+ #: settings.php:4478 settings.php:4519
3854
  msgid "A/B testing - Track ad impressions and clicks"
3855
  msgstr ""
3856
 
3857
+ #: settings.php:4486 settings.php:4511
3858
  msgid "Code preview with visual CSS editor"
3859
  msgstr ""
3860
 
3861
+ #: settings.php:4531
3862
  msgid "Looking for Pro Ad Management plugin?"
3863
  msgstr ""
3864
 
3865
+ #: settings.php:4532
3866
  msgid "To Optimally Monetize your WordPress website?"
3867
  msgstr ""
3868
 
3869
  #. translators: %s HTML tags
3870
+ #: settings.php:4535
3871
  msgid "%s AdSense Integration %s"
3872
  msgstr ""
3873
 
3874
  #. translators: %s HTML tags
3875
+ #: settings.php:4536
3876
  msgid "Syntax highlighting %s editor %s"
3877
  msgstr ""
3878
 
3879
  #. translators: %s HTML tags
3880
+ #: settings.php:4537
3881
  msgid "%s Code preview %s with visual CSS editor"
3882
  msgstr ""
3883
 
3884
  #. translators: %s HTML tags
3885
+ #: settings.php:4538
3886
  msgid "Simple user interface - all settings on a single page"
3887
  msgstr ""
3888
 
3889
  #. translators: %s HTML tags
3890
+ #: settings.php:4539
3891
  msgid ""
3892
  "%s Automatic insertion %s before or after post / content / %s paragraph %s / "
3893
  "image / excerpt"
3894
  msgstr ""
3895
 
3896
  #. translators: %s HTML tags
3897
+ #: settings.php:4540
3898
  msgid "%s Automatic insertion %s between posts on blog pages"
3899
  msgstr ""
3900
 
3901
  #. translators: %s HTML tags
3902
+ #: settings.php:4541
3903
  msgid "%s Automatic insertion %s before, between and after comments"
3904
  msgstr ""
3905
 
3906
  #. translators: %s HTML tags
3907
+ #: settings.php:4542
3908
  msgid "%s Automatic insertion %s after %s or before %s tag"
3909
  msgstr ""
3910
 
3911
  #. translators: %s HTML tags
3912
+ #: settings.php:4543
3913
  msgid "Automatic insertion at %s custom hook positions %s"
3914
  msgstr ""
3915
 
3916
  #. translators: %s HTML tags
3917
+ #: settings.php:4544
3918
  msgid ""
3919
  "Insertion %s before or after any HTML element on the page %s (using CSS "
3920
  "selectors)"
3921
  msgstr ""
3922
 
3923
  #. translators: %s HTML tags
3924
+ #: settings.php:4545
3925
  msgid "%s Insertion exceptions %s for individual posts and pages"
3926
  msgstr ""
3927
 
3928
  #. translators: %s HTML tags
3929
+ #: settings.php:4546
3930
  msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
3931
  msgstr ""
3932
 
3933
  #. translators: %s HTML tags
3934
+ #: settings.php:4547
3935
  msgid ""
3936
  "%s Sticky ads %s with optional close button (ads stay fixed when the page "
3937
  "scrolls)"
3938
  msgstr ""
3939
 
3940
  #. translators: %s HTML tags
3941
+ #: settings.php:4548
3942
  msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
3943
  msgstr ""
3944
 
3945
  #. translators: %s HTML tags
3946
+ #: settings.php:4549
3947
  msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
3948
  msgstr ""
3949
 
3950
  #. translators: %s HTML tags
3951
+ #: settings.php:4550
3952
  msgid ""
3953
  "%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
3954
  "visible)"
3955
  msgstr ""
3956
 
3957
  #. translators: %s HTML tags
3958
+ #: settings.php:4551
3959
  msgid ""
3960
  "%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
3961
  msgstr ""
3962
 
3963
  #. translators: %s HTML tags
3964
+ #: settings.php:4552
3965
  msgid "Block %s alignment and style %s customizations"
3966
  msgstr ""
3967
 
3968
  #. translators: %s HTML tags
3969
+ #: settings.php:4553
3970
  msgid ""
3971
  "%s Clearance %s options to avoid insertion near images or headers (AdSense "
3972
  "TOS)"
3973
  msgstr ""
3974
 
3975
  #. translators: %s HTML tags
3976
+ #: settings.php:4554
3977
  msgid ""
3978
  "Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
3979
  "feeds"
3980
  msgstr ""
3981
 
3982
  #. translators: %s HTML tags
3983
+ #: settings.php:4555
3984
  msgid "%s Ad rotation %s (works also with caching)"
3985
  msgstr ""
3986
 
3987
  #. translators: %s HTML tags
3988
+ #: settings.php:4556
3989
  msgid "Create, edit and check %s ads.txt %s file"
3990
  msgstr ""
3991
 
3992
  #. translators: %s HTML tags
3993
+ #: settings.php:4557
3994
  msgid ""
3995
  "Ad impression and click %s tracking %s (works also with Javascript ads like "
3996
  "AdSense)"
3997
  msgstr ""
3998
 
3999
  #. translators: %s HTML tags
4000
+ #: settings.php:4558
4001
+ msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
4002
+ msgstr ""
4003
+
4004
+ #. translators: %s HTML tags
4005
+ #: settings.php:4559
4006
+ msgid "%s Public web reports %s for clients, export to PDF"
4007
+ msgstr ""
4008
+
4009
+ #. translators: %s HTML tags
4010
+ #: settings.php:4560
4011
  msgid "Support for %s A/B testing %s"
4012
  msgstr ""
4013
 
4014
  #. translators: %s HTML tags
4015
+ #: settings.php:4561
4016
  msgid "Support for %s lazy loading %s"
4017
  msgstr ""
4018
 
4019
  #. translators: %s HTML tags
4020
+ #: settings.php:4562
4021
  msgid "Support for ads on %s AMP pages %s"
4022
  msgstr ""
4023
 
4024
  #. translators: %s HTML tags
4025
+ #: settings.php:4563
4026
  msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
4027
  msgstr ""
4028
 
4029
  #. translators: %s HTML tags
4030
+ #: settings.php:4564
4031
  msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
4032
  msgstr ""
4033
 
4034
  #. translators: %s HTML tags
4035
+ #: settings.php:4565
4036
  msgid "PHP code processing"
4037
  msgstr ""
4038
 
4039
  #. translators: %s HTML tags
4040
+ #: settings.php:4566
4041
  msgid "%s Banner %s code generator"
4042
  msgstr ""
4043
 
4044
  #. translators: %s HTML tags
4045
+ #: settings.php:4567
4046
  msgid "Support for %s header and footer %s code"
4047
  msgstr ""
4048
 
4049
  #. translators: %s HTML tags
4050
+ #: settings.php:4568
4051
  msgid "Support for Google Analytics, Matomo or any other web analytics code"
4052
  msgstr ""
4053
 
4054
  #. translators: %s HTML tags
4055
+ #: settings.php:4569
4056
  msgid "Desktop, tablet and phone server-side %s device detection %s"
4057
  msgstr ""
4058
 
4059
  #. translators: %s HTML tags
4060
+ #: settings.php:4570
4061
  msgid "Client-side %s mobile device detection %s (works with caching)"
4062
  msgstr ""
4063
 
4064
  #. translators: %s HTML tags
4065
+ #: settings.php:4571
4066
  msgid ""
4067
  "%s Ad blocking detection %s - popup message, ad replacement, content "
4068
  "protection"
4069
  msgstr ""
4070
 
4071
  #. translators: %s HTML tags
4072
+ #: settings.php:4572
4073
  msgid "%s Ad blocking statistics %s"
4074
  msgstr ""
4075
 
4076
  #. translators: %s HTML tags
4077
+ #: settings.php:4573
4078
  msgid ""
4079
  "%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
4080
  "referers"
4081
  msgstr ""
4082
 
4083
  #. translators: %s HTML tags
4084
+ #: settings.php:4574
4085
  msgid ""
4086
  "%s Black/White-list %s IP addresses or countries (works also with caching)"
4087
  msgstr ""
4088
 
4089
  #. translators: %s HTML tags
4090
+ #: settings.php:4575
4091
  msgid "%s Multisite options %s to limit settings on the sites"
4092
  msgstr ""
4093
 
4094
  #. translators: %s HTML tags
4095
+ #: settings.php:4576
4096
  msgid "%s Import/Export %s block or plugin settings"
4097
  msgstr ""
4098
 
4099
  #. translators: %s HTML tags
4100
+ #: settings.php:4577
4101
  msgid "%s Insertion scheduling %s with fallback option"
4102
  msgstr ""
4103
 
4104
  #. translators: %s HTML tags
4105
+ #: settings.php:4578
4106
  msgid "Country-level %s GEO targeting %s (works also with caching)"
4107
  msgstr ""
4108
 
4109
  #. translators: %s HTML tags
4110
+ #: settings.php:4579
4111
  msgid "Simple troubleshooting with many %s debugging functions %s"
4112
  msgstr ""
4113
 
4114
  #. translators: %s HTML tags
4115
+ #: settings.php:4580
4116
  msgid "%s Visualization %s of inserted blocks or ads for easier placement"
4117
  msgstr ""
4118
 
4119
  #. translators: %s HTML tags
4120
+ #: settings.php:4581
4121
  msgid "%s Visualization %s of available positions for automatic ad insertion"
4122
  msgstr ""
4123
 
4124
  #. translators: %s HTML tags
4125
+ #: settings.php:4582
4126
  msgid ""
4127
  "%s Visualization %s of HTML tags for easier ad placement between paragraphs"
4128
  msgstr ""
4129
 
4130
  #. translators: %s HTML tags
4131
+ #: settings.php:4583
4132
  msgid "%s Clipboard support %s to easily copy blocks or settings"
4133
  msgstr ""
4134
 
4135
  #. translators: %s HTML tags
4136
+ #: settings.php:4584
4137
  msgid "No ads on the settings page"
4138
  msgstr ""
4139
 
4140
  #. translators: %s HTML tags
4141
+ #: settings.php:4585
4142
+ msgid "Premium support"
4143
  msgstr ""
4144
 
4145
  #. translators: %s HTML tags
4146
+ #: settings.php:4588
4147
  msgid ""
4148
  "Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
4149
  "website with many advertising features to automatically insert adverts on "
4158
  msgstr ""
4159
 
4160
  #. translators: %s HTML tags
4161
+ #: settings.php:4601
4162
  msgid "Looking for %s Pro Ad Management plugin? %s"
4163
  msgstr ""
4164
 
4165
  #. translators: %s HTML tags
4166
+ #: settings.php:4606
4167
  msgid "Ads between posts"
4168
  msgstr ""
4169
 
4170
  #. translators: %s HTML tags
4171
+ #: settings.php:4607
4172
  msgid "Ads between comments"
4173
  msgstr ""
4174
 
4175
  #. translators: %s HTML tags
4176
+ #: settings.php:4608
4177
  msgid "Support via email"
4178
  msgstr ""
4179
 
4180
  #. translators: %s HTML tags
4181
+ #: settings.php:4614
4182
  msgid "%s Sticky positions %s"
4183
  msgstr ""
4184
 
4185
  #. translators: %s HTML tags
4186
+ #: settings.php:4615
4187
  msgid "%s Limit insertions %s"
4188
  msgstr ""
4189
 
4190
  #. translators: %s HTML tags
4191
+ #: settings.php:4616
4192
  msgid "%s Clearance %s options"
4193
  msgstr ""
4194
 
4195
  #. translators: %s HTML tags
4196
+ #: settings.php:4622
4197
  msgid "Ad rotation"
4198
  msgstr ""
4199
 
4200
  #. translators: %s HTML tags
4201
+ #: settings.php:4623
4202
  msgid "%s A/B testing %s"
4203
  msgstr ""
4204
 
4205
  #. translators: %s HTML tags
4206
+ #: settings.php:4624
4207
  msgid "%s Ad tracking %s"
4208
  msgstr ""
4209
 
4210
  #. translators: %s HTML tags
4211
+ #: settings.php:4630
4212
  msgid "Support for %s AMP pages %s"
4213
  msgstr ""
4214
 
4215
  #. translators: %s HTML tags
4216
+ #: settings.php:4631
4217
  msgid "%s Ad blocking detection %s"
4218
  msgstr ""
4219
 
4220
  #. translators: %s HTML tags
4221
+ #: settings.php:4632
4222
  msgid "%s Mobile device detection %s"
4223
  msgstr ""
4224
 
4225
  #. translators: %s HTML tags
4226
+ #: settings.php:4639
4227
  msgid "64 code blocks"
4228
  msgstr ""
4229
 
4230
  #. translators: %s HTML tags
4231
+ #: settings.php:4640
4232
  msgid "%s GEO targeting %s"
4233
  msgstr ""
4234
 
4235
  #. translators: %s HTML tags
4236
+ #: settings.php:4641
4237
  msgid "%s Scheduling %s"
4238
  msgstr ""
4239
 
readme.txt CHANGED
@@ -1,12 +1,12 @@
1
- === WordPress Ad Manager & AdSense Ads - Ad Inserter ===
2
 
3
  Contributors: spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
  Requires at least: 4.0
7
- Tested up to: 5.1
8
  Requires PHP: 5.6
9
- Stable tag: 2.4.15
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
@@ -97,7 +97,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
97
 
98
  > Native Shopping Ads provide highly relevant and dynamic product recommendations in a stylishly designed and responsive ad unit that can be placed at the end or within your content to create a more compelling visitor experience and shopping opportunity.
99
 
100
- **Pro version** - supports additional [advanced features](https://adinserter.pro/documentation/features):
101
 
102
  * Geolocation using Webnet77 or [MaxMind](http://www.maxmind.com/) databases (works also with caching)
103
  * Country, state, region and city level geotargeting
@@ -255,6 +255,10 @@ For example, If you are using one of the following plugins for cookie consent yo
255
  * [Cookie Notice for GDPR](https://wordpress.org/plugins/cookie-notice/) - Whitelist `cookie_notice_accepted=true`
256
  * [Cookie Consent](https://wordpress.org/plugins/uk-cookie-consent/) - Whitelist `catAccCookies=1`
257
 
 
 
 
 
258
  = Privacy Policy - Plugin Usage Tracking =
259
 
260
  When enabled, the information regarding WordPress environment and Ad Inserter usage will be collected and sent to plugin developers (once per month and on events like plugin activation/deactivation).
@@ -297,6 +301,13 @@ If you are not happy to reveal this information and you have opted in, simply di
297
 
298
  == Changelog ==
299
 
 
 
 
 
 
 
 
300
  = 2.4.15 =
301
  - Fix for improved compatibility with other plugins
302
  - Few minor bug fixes and cosmetic changes
@@ -404,6 +415,13 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
404
 
405
  == Upgrade Notice ==
406
 
 
 
 
 
 
 
 
407
  = 2.4.15 =
408
  Fix for improved compatibility with other plugins;
409
  Few minor bug fixes and cosmetic changes
1
+ === Ad Inserter - Ad Manager & AdSense Ads ===
2
 
3
  Contributors: spacetime
4
  Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
5
  Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
6
  Requires at least: 4.0
7
+ Tested up to: 5.2
8
  Requires PHP: 5.6
9
+ Stable tag: 2.4.17
10
  License: GPLv3
11
 
12
  Manage ads: Google AdSense, Media.net, Amazon banners, ad rotation, sticky widgets, AMP ads, DFP, PHP, tracking, AdSense header and footer code
97
 
98
  > Native Shopping Ads provide highly relevant and dynamic product recommendations in a stylishly designed and responsive ad unit that can be placed at the end or within your content to create a more compelling visitor experience and shopping opportunity.
99
 
100
+ **Pro version** supports additional [advanced features](https://adinserter.pro/documentation/features):
101
 
102
  * Geolocation using Webnet77 or [MaxMind](http://www.maxmind.com/) databases (works also with caching)
103
  * Country, state, region and city level geotargeting
255
  * [Cookie Notice for GDPR](https://wordpress.org/plugins/cookie-notice/) - Whitelist `cookie_notice_accepted=true`
256
  * [Cookie Consent](https://wordpress.org/plugins/uk-cookie-consent/) - Whitelist `catAccCookies=1`
257
 
258
+ = What is plugin usage tracking? =
259
+
260
+ When enabled, the information regarding WordPress environment and Ad Inserter usage will be collected and sent to plugin developers (once per month and on events like plugin activation/deactivation). See detailed explanation below.
261
+
262
  = Privacy Policy - Plugin Usage Tracking =
263
 
264
  When enabled, the information regarding WordPress environment and Ad Inserter usage will be collected and sent to plugin developers (once per month and on events like plugin activation/deactivation).
301
 
302
  == Changelog ==
303
 
304
+ = 2.4.17 =
305
+ - Few minor bug fixes, cosmetic changes and code improvements
306
+
307
+ = 2.4.16 =
308
+ - Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress
309
+ - Few minor bug fixes
310
+
311
  = 2.4.15 =
312
  - Fix for improved compatibility with other plugins
313
  - Few minor bug fixes and cosmetic changes
415
 
416
  == Upgrade Notice ==
417
 
418
+ = 2.4.17 =
419
+ Few minor bug fixes, cosmetic changes and code improvements
420
+
421
+ = 2.4.16 =
422
+ Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress;
423
+ Few minor bug fixes
424
+
425
  = 2.4.15 =
426
  Fix for improved compatibility with other plugins;
427
  Few minor bug fixes and cosmetic changes
settings.php CHANGED
@@ -2429,6 +2429,10 @@ function generate_settings_form (){
2429
  <div id="tab-adblocking" style="margin: 0; padding: 0;">
2430
  <div style="margin: 8px 0; line-height: 24px;">
2431
  <div style="float: right;">
 
 
 
 
2432
  <input type="hidden" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" value="0" />
2433
  <input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" id="enable-adb-detection" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adA->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
2434
  <label class="checkbox-button" style="margin-left: 10px;" for="enable-adb-detection" title="<?php _e ('Enable detection of ad blocking', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adA->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
@@ -2436,7 +2440,7 @@ function generate_settings_form (){
2436
 
2437
  <div style="vertical-align: sub; display: inline-block;">
2438
  <h3 style="margin: 0; display: inline-block;"><?php _e ('Ad Blocking Detection', 'ad-inserter'); ?></h3>
2439
- <?php if (!$enabled_a && $adb_action != AI_ADB_ACTION_NONE) echo '<span style="color: #f00;"> ', _x ('NOT ENABLED', 'ad blocking detection', 'ad-inserter'), '</span>'; ?>
2440
  </div>
2441
 
2442
  <div style="clear: both;"></div>
@@ -4417,6 +4421,11 @@ function sidebar_help () { ?>
4417
 
4418
  </div>
4419
  <hr />
 
 
 
 
 
4420
  <div><?php /* translators: %s: HTML tags */ printf (__('Ads are not showing? Check %s troubleshooting guide %s to find out how to diagnose and fix the problem.', 'ad-inserter'),
4421
  '<a href="https://adinserter.pro/documentation/adsense-ads#ads-not-displayed" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4422
  '</a>'
@@ -4573,7 +4582,7 @@ function sidebar_pro () {
4573
  <li><?php /* translators: %s HTML tags */ printf (__('%s Visualization %s of HTML tags for easier ad placement between paragraphs', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/debugging#visualization" class="simple-link" target="_blank">', '</a>'); ?></li>
4574
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clipboard support %s to easily copy blocks or settings', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/code-editing#clipboard" class="simple-link" target="_blank">', '</a>'); ?></li>
4575
  <li><?php /* translators: %s HTML tags */ printf (__('No ads on the settings page', 'ad-inserter')); ?></li>
4576
- <li><?php /* translators: %s HTML tags */ printf (__('Premium support via email', 'ad-inserter')); ?></li>
4577
  </ul>
4578
 
4579
  <p style="text-align: justify;"><?php /* translators: %s HTML tags */ printf (__('Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress website with many advertising features to automatically insert adverts on posts and pages. With Ad Inserter Pro you also get <strong>one year of free updates and support via email</strong>. If you find Ad Inserter useful and need ad statistics for impressions and clicks, A/B testing, sticky ads, slider ads, pop-up ads, geotargeting or geolocation to serve country-specific ads, to protect content or to serve different ads for users using ad blockers, multisite options to limit settings for ads, to block some IP addresses, to schedule ads, then you can simply upgrade to %s Ad Inserter Pro %s (existing settings will be preserved).', 'ad-inserter'), '<a href="https://adinserter.pro/" style="text-decoration: none;" target="_blank">', '</a>'); ?></p>
2429
  <div id="tab-adblocking" style="margin: 0; padding: 0;">
2430
  <div style="margin: 8px 0; line-height: 24px;">
2431
  <div style="float: right;">
2432
+ <?php if ($adA->get_enable_manual () == AI_ENABLED): ?>
2433
+ <span class="ai-toolbar-button text" title='<?php _e ('Code for ad blocking detection inserted. Click for details.', 'ad-inserter'); ?>' style='display: inline-block; font-size: 20px; vertical-align: bottom; padding: 0;'><a href="https://adinserter.pro/documentation/ad-blocking-detection#detection" class="clear-link" target="_blank">&#x26A0;</a></span>
2434
+ <?php endif; ?>
2435
+
2436
  <input type="hidden" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" value="0" />
2437
  <input type="checkbox" name="<?php echo AI_OPTION_ENABLE_MANUAL, '_block_a'; ?>" id="enable-adb-detection" value="1" default="<?php echo $default->get_enable_manual(); ?>" <?php if ($adA->get_enable_manual () == AI_ENABLED) echo 'checked '; ?> style="display: none;" />
2438
  <label class="checkbox-button" style="margin-left: 10px;" for="enable-adb-detection" title="<?php _e ('Enable detection of ad blocking', 'ad-inserter'); ?>"><span class="checkbox-icon icon-enabled<?php if ($adA->get_enable_manual () == AI_ENABLED) echo ' on'; ?>"></span></label>
2440
 
2441
  <div style="vertical-align: sub; display: inline-block;">
2442
  <h3 style="margin: 0; display: inline-block;"><?php _e ('Ad Blocking Detection', 'ad-inserter'); ?></h3>
2443
+ <?php if (!$enabled_a && $adb_action != AI_ADB_ACTION_NONE) echo '<span style="color: #f00;"> &nbsp; ', _x ('NOT ENABLED', 'ad blocking detection', 'ad-inserter'), '</span>'; ?>
2444
  </div>
2445
 
2446
  <div style="clear: both;"></div>
4421
 
4422
  </div>
4423
  <hr />
4424
+ <div><?php /* translators: %s: HTML tags */ printf (__('Become an %s affiliate %s for Ad Inserter Pro and earn commission for each purchase you refer to us.', 'ad-inserter'),
4425
+ '<a href="https://affiliate.adinserter.pro/" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4426
+ '</a>'
4427
+ ); ?></div>
4428
+ <hr />
4429
  <div><?php /* translators: %s: HTML tags */ printf (__('Ads are not showing? Check %s troubleshooting guide %s to find out how to diagnose and fix the problem.', 'ad-inserter'),
4430
  '<a href="https://adinserter.pro/documentation/adsense-ads#ads-not-displayed" style="text-decoration: none; box-shadow: 0 0 0;" target="_blank">',
4431
  '</a>'
4582
  <li><?php /* translators: %s HTML tags */ printf (__('%s Visualization %s of HTML tags for easier ad placement between paragraphs', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/debugging#visualization" class="simple-link" target="_blank">', '</a>'); ?></li>
4583
  <li><?php /* translators: %s HTML tags */ printf (__('%s Clipboard support %s to easily copy blocks or settings', 'ad-inserter'), '<a href="https://adinserter.pro/documentation/code-editing#clipboard" class="simple-link" target="_blank">', '</a>'); ?></li>
4584
  <li><?php /* translators: %s HTML tags */ printf (__('No ads on the settings page', 'ad-inserter')); ?></li>
4585
+ <li><?php /* translators: %s HTML tags */ printf (__('Premium support', 'ad-inserter')); ?></li>
4586
  </ul>
4587
 
4588
  <p style="text-align: justify;"><?php /* translators: %s HTML tags */ printf (__('Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress website with many advertising features to automatically insert adverts on posts and pages. With Ad Inserter Pro you also get <strong>one year of free updates and support via email</strong>. If you find Ad Inserter useful and need ad statistics for impressions and clicks, A/B testing, sticky ads, slider ads, pop-up ads, geotargeting or geolocation to serve country-specific ads, to protect content or to serve different ads for users using ad blockers, multisite options to limit settings for ads, to block some IP addresses, to schedule ads, then you can simply upgrade to %s Ad Inserter Pro %s (existing settings will be preserved).', 'ad-inserter'), '<a href="https://adinserter.pro/" style="text-decoration: none;" target="_blank">', '</a>'); ?></p>