Version Description
- Added option for paragraph counting to search only tag attributes for text
- Added option to embed block Javascript code (to be loaded with Ajax calls)
- Added support to prevent duplicate insertions when the_content filter is called more than once (experimental)
- Added support for the client list to check for partial user agent strings
- Added support for check of cookie object properties
- Improved ad blocking detection
- Viewports no longer need to be in descending width order
- Added option to protect inserted block content (Pro only)
- Added support for adb scripts path filter hook (Pro only)
- Added support to export statistics data to CSV file (Pro only)
- Few minor bug fixes, cosmetic changes and code improvements
Download this release
Release Info
Developer | spacetime |
Plugin | Ad Inserter – WordPress Ads Management with AdSense Header Integration |
Version | 2.6.9 |
Comparing to | |
See all releases |
Code changes from version 2.6.8 to 2.6.9
- ad-inserter.php +313 -54
- class.php +274 -136
- constants.php +9 -4
- css/ai-settings.css +1 -1
- includes/js/ai-adb.js +266 -101
- includes/js/ai-adb.min.js +20 -19
- includes/js/ai-base64.js +0 -6
- includes/js/ai-cookie.js +10 -4
- includes/js/ai-cookie.min.js +13 -13
- includes/js/ai-insert.js +45 -17
- includes/js/ai-insert.min.js +9 -10
- includes/js/ai-lists.js +123 -21
- includes/js/ai-lists.min.js +14 -11
- includes/js/ai-rotate.js +4 -17
- includes/js/ai-rotate.min.js +1 -1
- includes/js/theia-sticky-sidebar.js +1 -2
- includes/preview.php +21 -4
- js/ad-inserter.js +53 -7
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +1176 -1131
- languages/ad-inserter.pot +1108 -1125
- readme.txt +28 -2
- settings.php +61 -97
- strings.php +1 -0
ad-inserter.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
-
Version: 2.6.
|
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,19 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.6.8 - 2020-04-27
|
19 |
- Added support to disable PHP processing by PHP constant
|
20 |
- Added support to repeat COUNT options
|
@@ -1797,6 +1810,13 @@ function ai_init_hook () {
|
|
1797 |
ai_wp_hook ();
|
1798 |
}
|
1799 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1800 |
// add_shortcode ('adinserter', 'ai_process_shortcodes');
|
1801 |
// add_shortcode ('ADINSERTER', 'ai_process_shortcodes');
|
1802 |
|
@@ -2296,6 +2316,36 @@ function ai_get_js ($js_name, $replace_js_data = true) {
|
|
2296 |
return ai_replace_js_data ($script, $js_name);
|
2297 |
}
|
2298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2299 |
function ai_replace_js_data ($js) {
|
2300 |
global $block_object, $ai_wp_data;
|
2301 |
|
@@ -2367,12 +2417,86 @@ function ai_replace_js_data ($js) {
|
|
2367 |
}
|
2368 |
|
2369 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
2370 |
-
if (strpos ($js, '
|
2371 |
$adb = $block_object [AI_ADB_MESSAGE_OPTION_NAME];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2372 |
|
2373 |
-
$js = str_replace ('
|
2374 |
-
$
|
2375 |
-
base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), do_shortcode ($adb->ai_getCode ()))) . "')})"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2376 |
|
2377 |
$js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
|
2378 |
|
@@ -2399,6 +2523,8 @@ function ai_replace_js_data ($js) {
|
|
2399 |
}
|
2400 |
}
|
2401 |
|
|
|
|
|
2402 |
$js = str_replace ('AI_NONCE', wp_create_nonce ("adinserter_data"), $js);
|
2403 |
$js = str_replace ('AI_AJAXURL', admin_url ('admin-ajax.php'), $js);
|
2404 |
$js = str_replace ('AI_SITE_URL', wp_make_link_relative (get_site_url()), $js);
|
@@ -2415,21 +2541,33 @@ function ai_replace_js_data ($js) {
|
|
2415 |
$js = str_replace ('AI_TRACK_PAGEVIEWS', get_track_pageviews () == AI_TRACKING_ENABLED && $ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] ? 1 : 0, $js);
|
2416 |
$js = str_replace ('AI_ADVANCED_CLICK_DETECTION', get_click_detection () == AI_CLICK_DETECTION_ADVANCED ? 1 : 0, $js);
|
2417 |
|
2418 |
-
if (!isset ($ai_wp_data [
|
2419 |
-
|
2420 |
-
$
|
2421 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
2422 |
$viewport_name = get_viewport_name ($viewport);
|
2423 |
$viewport_width = get_viewport_width ($viewport);
|
2424 |
if ($viewport_name != '') {
|
2425 |
-
$
|
2426 |
-
$viewport_names [$viewport] = $viewport_name;
|
2427 |
}
|
2428 |
}
|
2429 |
-
|
2430 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2431 |
}
|
2432 |
-
$js = str_replace ('
|
|
|
2433 |
$js = str_replace ('AI_VIEWPORT_NAMES', base64_encode ('["' . implode ('","', $ai_wp_data [AI_VIEWPORT_NAMES]) . '"]'), $js);
|
2434 |
}
|
2435 |
// Deprecated
|
@@ -2612,6 +2750,8 @@ function add_footer_inline_scripts () {
|
|
2612 |
echo ai_js_dom_ready ("\n".$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY], false);
|
2613 |
}
|
2614 |
|
|
|
|
|
2615 |
// Wait for jQuery - for iframe pages it is always loaded
|
2616 |
if ($wait_for_jquery && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2617 |
global $wp_scripts;
|
@@ -3812,12 +3952,15 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3812 |
elseif (AI_PHONE) echo "PHONE\n";
|
3813 |
else echo "?\n";
|
3814 |
}
|
|
|
3815 |
echo 'CLIENT-SIDE DETECTION: ', $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ? 'USED' : "NOT USED", "\n";
|
3816 |
-
echo '
|
3817 |
-
echo '
|
3818 |
|
3819 |
if (function_exists ('ai_debug_features')) ai_debug_features ();
|
3820 |
|
|
|
|
|
3821 |
$enabled_custom_hooks = array ();
|
3822 |
foreach ($ai_custom_hooks as $ai_custom_hook) {
|
3823 |
$hook = $ai_custom_hook ['index'];
|
@@ -3897,6 +4040,8 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3897 |
echo 'FOOTER: ', $block_object [AI_FOOTER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
|
3898 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
3899 |
echo 'AD BLOCKING DETECTION: ', $ai_wp_data [AI_ADB_DETECTION] ? 'ENABLED' : 'DISABLED', "\n";
|
|
|
|
|
3900 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
3901 |
echo 'ADB ACTION: ';
|
3902 |
switch (get_adb_action (true)) {
|
@@ -3950,7 +4095,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3950 |
if (!empty ($ai_wp_data [AI_CLIENTS])) {
|
3951 |
$ai_wp_data [AI_CLIENTS] = array_unique ($ai_wp_data [AI_CLIENTS]);
|
3952 |
foreach ($ai_wp_data [AI_CLIENTS] as $client) {
|
3953 |
-
echo sprintf (" %-23s", $client.':'),
|
3954 |
}
|
3955 |
}
|
3956 |
}
|
@@ -4147,7 +4292,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4147 |
$post_meta = get_post_meta ($page->ID, '_adinserter_block_exceptions', true);
|
4148 |
if ($post_meta == '') continue;
|
4149 |
$post_type_object = get_post_type_object ($page->post_type);
|
4150 |
-
echo sprintf ("%-24s %-6s %-24s %-64s %s", $post_meta, $page->ID, $post_type_object->labels->singular_name,
|
4151 |
}
|
4152 |
echo "\n";
|
4153 |
}
|
@@ -4451,6 +4596,7 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
4451 |
if (!isset ($plugin_options ['DISABLE_HEADER_CODE'])) $plugin_options ['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
4452 |
if (!isset ($plugin_options ['DISABLE_FOOTER_CODE'])) $plugin_options ['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
4453 |
|
|
|
4454 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
4455 |
$viewport_name_option_name = 'VIEWPORT_NAME_' . $viewport;
|
4456 |
$viewport_width_option_name = 'VIEWPORT_WIDTH_' . $viewport;
|
@@ -4462,6 +4608,8 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
4462 |
$plugin_options [$viewport_name_option_name] = constant ("DEFAULT_VIEWPORT_NAME_1");
|
4463 |
|
4464 |
if ($plugin_options [$viewport_name_option_name] != '') {
|
|
|
|
|
4465 |
if (!isset ($plugin_options [$viewport_width_option_name])) $plugin_options [$viewport_width_option_name] =
|
4466 |
defined ("DEFAULT_VIEWPORT_WIDTH_" . $viewport) ? constant ("DEFAULT_VIEWPORT_WIDTH_" . $viewport) : 0;
|
4467 |
|
@@ -4481,19 +4629,26 @@ function ai_check_plugin_options ($plugin_options = array ()) {
|
|
4481 |
$viewport_width = 9999;
|
4482 |
}
|
4483 |
|
4484 |
-
if ($viewport > 1) {
|
4485 |
-
if ($viewport_width >= $previous_viewport_option_width)
|
4486 |
-
$viewport_width = $previous_viewport_option_width - 1;
|
4487 |
-
}
|
4488 |
|
4489 |
$viewport_width = intval ($viewport_width);
|
4490 |
if ($viewport_width < 0) {
|
4491 |
$viewport_width = 0;
|
4492 |
}
|
4493 |
|
|
|
|
|
|
|
|
|
4494 |
$plugin_options [$viewport_width_option_name] = $viewport_width;
|
4495 |
} else $plugin_options [$viewport_width_option_name] = '';
|
4496 |
}
|
|
|
|
|
|
|
4497 |
|
4498 |
for ($hook = 1; $hook <= 20; $hook ++) {
|
4499 |
$hook_enabled_settins_name = 'HOOK_ENABLED_' . $hook;
|
@@ -5246,7 +5401,6 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
5246 |
$option == AI_OPTION_TAXONOMY_LIST ||
|
5247 |
$option == AI_OPTION_ID_LIST ||
|
5248 |
$option == AI_OPTION_URL_LIST ||
|
5249 |
-
$option == AI_OPTION_URL_PARAMETER_LIST ||
|
5250 |
$option == AI_OPTION_PARAGRAPH_NUMBER ||
|
5251 |
$option == AI_OPTION_MIN_PARAGRAPHS ||
|
5252 |
$option == AI_OPTION_MAX_PARAGRAPHS ||
|
@@ -5303,6 +5457,10 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
5303 |
$value = str_replace (array ("\"", "<", ">", "[", "]"), "", $value);
|
5304 |
$value = esc_html ($value);
|
5305 |
}
|
|
|
|
|
|
|
|
|
5306 |
elseif ($option == 'AD_LABEL' ||
|
5307 |
$option == 'REPORT_HEADER_TITLE' ||
|
5308 |
$option == 'REPORT_HEADER_DESCRIPTION' ||
|
@@ -6016,6 +6174,12 @@ function ai_load_settings () {
|
|
6016 |
}
|
6017 |
|
6018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6019 |
function generate_viewport_css () {
|
6020 |
|
6021 |
$viewports = array ();
|
@@ -6027,27 +6191,36 @@ function generate_viewport_css () {
|
|
6027 |
}
|
6028 |
}
|
6029 |
|
|
|
|
|
6030 |
$viewport_styles = '';
|
6031 |
-
|
|
|
6032 |
$viewport_styles = ".ai-viewports {--ai: 1;}\n"; // Dummy style to prevent not loading viewport rules when optimizers join them with other (broken) styles on the page
|
6033 |
foreach ($viewports as $index => $viewport) {
|
6034 |
-
if ($viewport ['index'] == 1) {
|
|
|
6035 |
foreach (array_reverse ($viewports) as $index2 => $viewport2) {
|
6036 |
-
if ($viewport2 ['index'] != 1) {
|
|
|
6037 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: none !important;}\n";
|
6038 |
}
|
6039 |
}
|
6040 |
-
$viewport_styles .= ".ai-viewport-1 { display: inherit !important;}\n";
|
|
|
6041 |
$viewport_styles .= ".ai-viewport-0 { display: none !important;}\n";
|
6042 |
} else {
|
6043 |
$viewport_styles .= "@media ";
|
6044 |
-
if ($index != count ($viewports) - 1)
|
|
|
6045 |
$viewport_styles .= "(min-width: " . $viewport ['width'] . "px) and ";
|
6046 |
$viewport_styles .= "(max-width: " . ($viewports [$index - 1]['width'] - 1) . "px) {\n";
|
6047 |
foreach ($viewports as $index2 => $viewport2) {
|
6048 |
-
if ($viewport2 ['index'] == 1)
|
|
|
6049 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: none !important;}\n";
|
6050 |
-
elseif ($viewport ['index'] == $viewport2 ['index'])
|
|
|
6051 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: inherit !important;}\n";
|
6052 |
|
6053 |
}
|
@@ -6275,7 +6448,7 @@ pre.ai-w3tc-debug {font-size: 12px;}
|
|
6275 |
|
6276 |
pre.ai-w3tc-debug.ai-w3tc-run {color: #00f;}
|
6277 |
|
6278 |
-
pre.ai-processing-log {padding: 10px; font-family: monospace; font-size: 12px; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;}
|
6279 |
|
6280 |
<?php
|
6281 |
}
|
@@ -6980,6 +7153,18 @@ function ai_content_hook ($content = '') {
|
|
6980 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return $content;
|
6981 |
|
6982 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6983 |
$globals_name = AI_CONTENT_COUNTER_NAME;
|
6984 |
|
6985 |
$special_element_tags = explode (',', str_replace (' ', '', get_no_paragraph_counting_inside ()));
|
@@ -7207,18 +7392,19 @@ function ai_content_hook ($content = '') {
|
|
7207 |
$content = '<kbd class="ai-debug-invisible">[' . __('HTML TAGS REMOVED', 'ad-inserter') . ']</kbd>' . $content;
|
7208 |
}
|
7209 |
|
7210 |
-
if ($debug_processing) {
|
7211 |
-
$ai_total_plugin_time += microtime (true) - $start_time;
|
7212 |
-
ai_log ("CONTENT HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
7213 |
-
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
7214 |
-
}
|
7215 |
-
|
7216 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
7217 |
if ($ai_wp_data [AI_CLOSE_BUTTONS]) {
|
7218 |
$content .= '<script>if (typeof ai_install_close_buttons == "function") {ai_install_close_buttons (document);}</script>';
|
7219 |
}
|
7220 |
}
|
7221 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7222 |
|
7223 |
return $content;
|
7224 |
}
|
@@ -8055,8 +8241,8 @@ function ai_process_shortcode (&$block, $atts) {
|
|
8055 |
|
8056 |
switch ($counter_name) {
|
8057 |
case 'block':
|
8058 |
-
if (isset ($ai_wp_data [
|
8059 |
-
return $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $ai_wp_data [
|
8060 |
}
|
8061 |
break;
|
8062 |
case 'content':
|
@@ -8080,13 +8266,13 @@ function ai_process_shortcode (&$block, $atts) {
|
|
8080 |
}
|
8081 |
break;
|
8082 |
case 'widget':
|
8083 |
-
if (isset ($ai_wp_data [
|
8084 |
-
return $ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data [
|
8085 |
}
|
8086 |
break;
|
8087 |
case 'php':
|
8088 |
-
if (isset ($ai_wp_data [
|
8089 |
-
return $ad_inserter_globals [AI_PHP_FUNCTION_CALL_COUNTER_NAME . $ai_wp_data [
|
8090 |
}
|
8091 |
break;
|
8092 |
}
|
@@ -8218,8 +8404,8 @@ function ai_process_shortcode (&$block, $atts) {
|
|
8218 |
$saved_atts = $ai_wp_data [AI_SHORTCODES]['atts'];
|
8219 |
}
|
8220 |
$ai_wp_data [AI_SHORTCODES]['atts'] = $atts;
|
8221 |
-
if (isset ($ai_wp_data [
|
8222 |
-
$saved_block_number = $ai_wp_data [
|
8223 |
}
|
8224 |
|
8225 |
$code = $obj->get_code_for_serverside_insertion (true, false, $code_only);
|
@@ -8246,8 +8432,8 @@ function ai_process_shortcode (&$block, $atts) {
|
|
8246 |
$ai_wp_data [AI_SHORTCODES]['atts'] = $saved_atts;
|
8247 |
} else unset ($ai_wp_data [AI_SHORTCODES]['atts']);
|
8248 |
if (isset ($saved_block_number)) {
|
8249 |
-
$ai_wp_data [
|
8250 |
-
} else unset ($ai_wp_data [
|
8251 |
|
8252 |
// Must be after get_code_for_serverside_insertion ()
|
8253 |
$ai_last_check = AI_CHECK_INSERTED;
|
@@ -8602,6 +8788,48 @@ function ai_special_widget ($args, $instance, $block) {
|
|
8602 |
echo $args ['after_widget'];
|
8603 |
}
|
8604 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8605 |
function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$found) {
|
8606 |
$parameter_list = trim ($list);
|
8607 |
$return = $white_list;
|
@@ -8616,8 +8844,14 @@ function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$fou
|
|
8616 |
|
8617 |
$found = true;
|
8618 |
|
|
|
8619 |
foreach ($parameters as $index => $parameter) {
|
|
|
8620 |
if (is_string ($parameter)) {
|
|
|
|
|
|
|
|
|
8621 |
$parameters [$index] = urlencode ($parameter);
|
8622 |
}
|
8623 |
}
|
@@ -8634,9 +8868,16 @@ function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$fou
|
|
8634 |
}
|
8635 |
elseif (strpos ($parameter, "=") !== false) {
|
8636 |
$parameter_value = explode ("=", $parameter);
|
|
|
8637 |
if (array_key_exists ($parameter_value [0], $parameters) && $parameters [$parameter_value [0]] == $parameter_value [1]) return $return;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8638 |
}
|
8639 |
-
else if (array_key_exists ($parameter, $parameters)) return $return;
|
8640 |
}
|
8641 |
|
8642 |
$found = false;
|
@@ -8747,7 +8988,20 @@ function check_client_list ($clients, $white_list) {
|
|
8747 |
$client = trim ($client);
|
8748 |
if ($client == "") continue;
|
8749 |
|
8750 |
-
if ($
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8751 |
}
|
8752 |
return !$return;
|
8753 |
} else {
|
@@ -9117,12 +9371,16 @@ function ai_add_rewrite_rules () {
|
|
9117 |
if (function_exists ('ai_add_rewrite_rules_2')) ai_add_rewrite_rules_2 ();
|
9118 |
}
|
9119 |
|
9120 |
-
function ai_js_dom_ready ($js_code, $script_tag = true) {
|
9121 |
$id = rand (100000, 999999) . rand (100000, 999999);
|
9122 |
$code = '';
|
9123 |
|
|
|
|
|
|
|
|
|
9124 |
if ($script_tag) {
|
9125 |
-
$code .= "<!-- AI_JS --><script>
|
9126 |
";
|
9127 |
|
9128 |
$js_code = '/* AI_JS */' . $js_code . '/* AI_JS */';
|
@@ -9878,15 +10136,17 @@ if (isset ($_GET [AI_URL_DEBUG_JAVASCRIPT]) && $_GET [AI_URL_DEBUG_JAVASCRIPT] =
|
|
9878 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
9879 |
$ai_wp_data [AI_ADB_DETECTION] = $block_object [AI_ADB_MESSAGE_OPTION_NAME]->get_enable_manual ();
|
9880 |
|
|
|
|
|
9881 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
9882 |
$adb_2_name = AI_ADB_2_DEFAULT_NAME;
|
9883 |
-
define ('AI_ADB_COOKIE_VALUE', substr (preg_replace ("/[^A-Za-z]+/", '', strtolower (md5 (
|
9884 |
|
9885 |
$script_path = AD_INSERTER_PLUGIN_DIR.'js';
|
9886 |
$script = $script_path.'/sponsors.js';
|
9887 |
|
9888 |
if (is_writable ($script_path) && is_writable ($script)) {
|
9889 |
-
$adb_2_name = substr (preg_replace ("/[^A-Za-z]+/", '', strtolower (md5 (
|
9890 |
|
9891 |
$js_ok = false;
|
9892 |
if (file_exists ($script)) {
|
@@ -9900,8 +10160,6 @@ if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
|
9900 |
}
|
9901 |
|
9902 |
define ('AI_ADB_2_NAME', $adb_2_name);
|
9903 |
-
|
9904 |
-
if (function_exists ('ai_check_files')) ai_check_files ();
|
9905 |
}
|
9906 |
}
|
9907 |
|
@@ -9997,6 +10255,7 @@ if (is_admin () === true) {
|
|
9997 |
add_action ('wp_ajax_nopriv_ai_ajax', 'ai_ajax');
|
9998 |
}
|
9999 |
|
|
|
10000 |
if (!get_option (AI_INSTALL_NAME)) {
|
10001 |
update_option (AI_INSTALL_NAME, time ());
|
10002 |
}
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.6.9
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.6.9 - 2020-05-22
|
19 |
+
- Added option for paragraph counting to search only tag attributes for text
|
20 |
+
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
21 |
+
- Added support to prevent duplicate insertions when the_content filter is called more than once (experimental)
|
22 |
+
- Added support for the client list to check for partial user agent strings
|
23 |
+
- Added support for check of cookie object properties
|
24 |
+
- Improved ad blocking detection
|
25 |
+
- Viewports no longer need to be in descending width order
|
26 |
+
- Added option to protect inserted block content (Pro only)
|
27 |
+
- Added support for adb scripts path filter hook (Pro only)
|
28 |
+
- Added support to export statistics data to CSV file (Pro only)
|
29 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
30 |
+
|
31 |
Ad Inserter 2.6.8 - 2020-04-27
|
32 |
- Added support to disable PHP processing by PHP constant
|
33 |
- Added support to repeat COUNT options
|
1810 |
ai_wp_hook ();
|
1811 |
}
|
1812 |
|
1813 |
+
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
1814 |
+
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
1815 |
+
if (function_exists ('ai_check_files')) ai_check_files ();
|
1816 |
+
}
|
1817 |
+
}
|
1818 |
+
|
1819 |
+
|
1820 |
// add_shortcode ('adinserter', 'ai_process_shortcodes');
|
1821 |
// add_shortcode ('ADINSERTER', 'ai_process_shortcodes');
|
1822 |
|
2316 |
return ai_replace_js_data ($script, $js_name);
|
2317 |
}
|
2318 |
|
2319 |
+
function ai_randomize_properties ($style, $z_index_min = null, $z_index_max = null) {
|
2320 |
+
$style_array = explode (';', trim ($style, ';'));
|
2321 |
+
foreach ($style_array as $index => $property) {
|
2322 |
+
$property = trim ($property);
|
2323 |
+
if ($z_index_min != null && $z_index_max != null && strpos ($property, 'z-index') === 0) {
|
2324 |
+
$style_array [$index] = 'z-index: ' . rand ($z_index_min, $z_index_max);
|
2325 |
+
}
|
2326 |
+
if (strpos ($property, 'opacity') === 0) {
|
2327 |
+
$value = str_replace (array ('opacity', ':', ' ', ';'), '', $property);
|
2328 |
+
if (is_numeric ($value)) {
|
2329 |
+
$value = 100 * $value - 5 + rand (0, 10);
|
2330 |
+
if ($value > 100) $value = 100;
|
2331 |
+
$style_array [$index] = 'opacity: ' . ($value / 100);
|
2332 |
+
}
|
2333 |
+
}
|
2334 |
+
elseif (strpos ($property, '50%') !== false) {
|
2335 |
+
$style_array [$index] = str_replace ('50%', (47 + rand (0, 6)) . '.' . rand (1, 99) . '%', $style_array [$index]);
|
2336 |
+
}
|
2337 |
+
elseif (strpos ($property, '100%') !== false) {
|
2338 |
+
$style_array [$index] = str_replace ('100%', '100.' . rand (1, 99) . '%', $style_array [$index]);
|
2339 |
+
}
|
2340 |
+
elseif (strpos ($property, '#000') !== false) {
|
2341 |
+
$color = rand (0, 2) . rand (0, 9);
|
2342 |
+
$style_array [$index] = str_replace ('#000', '#' . $color . $color . $color, $style_array [$index]);
|
2343 |
+
}
|
2344 |
+
}
|
2345 |
+
shuffle ($style_array);
|
2346 |
+
return trim (implode ('; ', $style_array)) . ';';
|
2347 |
+
}
|
2348 |
+
|
2349 |
function ai_replace_js_data ($js) {
|
2350 |
global $block_object, $ai_wp_data;
|
2351 |
|
2417 |
}
|
2418 |
|
2419 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
2420 |
+
if (strpos ($js, 'AI_ADB_OVERLAY_WINDOW') !== false) {
|
2421 |
$adb = $block_object [AI_ADB_MESSAGE_OPTION_NAME];
|
2422 |
+
$tags = array ('div', 'span', 'ins', 'section', 'kbd');
|
2423 |
+
$message_tag = $tags [rand (0, count ($tags) - 1)];
|
2424 |
+
$overlay_tag = $tags [rand (0, count ($tags) - 1)];
|
2425 |
+
|
2426 |
+
$basic_adb_overlay_css = AI_BASIC_ADB_OVERLAY_CSS;
|
2427 |
+
$basic_adb_message_css = AI_BASIC_ADB_MESSAGE_CSS;
|
2428 |
+
|
2429 |
+
if (strpos ($js, 'AI_ADB_STATUS_MESSAGE') === false) {
|
2430 |
+
$basic_adb_overlay_css = str_replace ('pointer', 'no-drop', $basic_adb_overlay_css);
|
2431 |
+
$basic_adb_message_css = str_replace ('pointer', 'no-drop', $basic_adb_message_css);
|
2432 |
+
}
|
2433 |
+
|
2434 |
+
// $js = str_replace ('AI_ADB_OVERLAY_WINDOW', "jQuery ('<div>', {attr: {'id': 'ai-adb-overlay', 'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), $basic_adb_overlay_css) . get_overlay_css ()) . "')}})", $js);
|
2435 |
+
$overlay_code = "jQuery ('<".$overlay_tag.">', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_overlay_css, 10002, 14998)) . ai_randomize_properties (get_overlay_css ())) . "')}})";
|
2436 |
+
|
2437 |
+
for ($level = 1; $level <= 5; $level ++) {
|
2438 |
+
switch (rand (1, 10)) {
|
2439 |
+
case 1:
|
2440 |
+
case 2:
|
2441 |
+
case 3:
|
2442 |
+
case 4:
|
2443 |
+
$tag = 'div';
|
2444 |
+
break;
|
2445 |
+
case 5:
|
2446 |
+
case 6:
|
2447 |
+
case 7:
|
2448 |
+
$tag = $tags [rand (0, count ($tags) - 1)];
|
2449 |
+
break;
|
2450 |
+
default:
|
2451 |
+
continue 2;
|
2452 |
+
}
|
2453 |
+
|
2454 |
+
$overlay_code .= ".append (jQuery ('<div>')).append (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_overlay_css, 100, 9999))) . "')}}))";
|
2455 |
+
|
2456 |
+
$overlay_code = "jQuery ('<".$tag.">').append (" . $overlay_code . ')';
|
2457 |
+
|
2458 |
+
if (rand (1, 10) > 5) $overlay_code .= ".append (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_overlay_css, 100, 9999))) . "')}}))";
|
2459 |
+
if (rand (1, 10) > 5) $overlay_code .= ".append (jQuery ('<div>'))";
|
2460 |
+
if (rand (1, 10) > 5) $overlay_code .= ".prepend (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_overlay_css, 100, 9999))) . "')}}))";
|
2461 |
+
if (rand (1, 10) > 5) $overlay_code .= ".prepend (jQuery ('<div>'))";
|
2462 |
+
}
|
2463 |
+
|
2464 |
+
$js = str_replace ('AI_ADB_OVERLAY_WINDOW', $overlay_code, $js);
|
2465 |
|
2466 |
+
// $js = str_replace ('AI_ADB_MESSAGE_WINDOW', "jQuery ('<div>', {attr: {'id': 'ai-adb-message', 'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), $basic_adb_message_css) . get_message_css ()) . "')}, 'html': b64d ('" .
|
2467 |
+
$message_code = "jQuery ('<".$message_tag.">', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_message_css, 14999, 19998)) . ai_randomize_properties (get_message_css ())) . "')}, 'html': b64d ('" .
|
2468 |
+
base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), do_shortcode ($adb->ai_getCode ()))) . "')})";
|
2469 |
+
|
2470 |
+
for ($level = 1; $level <= 5; $level ++) {
|
2471 |
+
switch (rand (1, 10)) {
|
2472 |
+
case 1:
|
2473 |
+
case 2:
|
2474 |
+
case 3:
|
2475 |
+
$tag = 'div';
|
2476 |
+
break;
|
2477 |
+
case 4:
|
2478 |
+
case 5:
|
2479 |
+
$tag = 'p';
|
2480 |
+
break;
|
2481 |
+
case 6:
|
2482 |
+
case 7:
|
2483 |
+
$tag = $tags [rand (0, count ($tags) - 1)];
|
2484 |
+
break;
|
2485 |
+
default:
|
2486 |
+
continue 2;
|
2487 |
+
}
|
2488 |
+
|
2489 |
+
$message_code .= ".append (jQuery ('<p>')).append (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_message_css, 100, 9999))) . "')}}))";
|
2490 |
+
|
2491 |
+
$message_code = "jQuery ('<".$tag.">').append (" . $message_code . ')';
|
2492 |
+
if (rand (1, 10) > 7) $message_code .= ".append (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_message_css, 100, 9999))) . "')}}))";
|
2493 |
+
if (rand (1, 10) > 7) $message_code .= ".append (jQuery ('<p>'))";
|
2494 |
+
if (rand (1, 10) > 7) $message_code .= ".prepend (jQuery ('<div>', {attr: {'style': b64d ('" . base64_encode (str_replace (array ("'", "\r", "\n"), array ("\'", '', ''), ai_randomize_properties ($basic_adb_message_css, 100, 9999))) . "')}}))";
|
2495 |
+
if (rand (1, 10) > 7) $message_code .= ".prepend (jQuery ('<p>'))";
|
2496 |
+
if (rand (1, 10) > 3) $message_code .= ".prepend (jQuery ('<p>'))";
|
2497 |
+
}
|
2498 |
+
|
2499 |
+
$js = str_replace ('AI_ADB_MESSAGE_WINDOW', $message_code, $js);
|
2500 |
|
2501 |
$js = str_replace ('AI_ADB_SELECTORS', get_adb_selectors (true), $js);
|
2502 |
|
2523 |
}
|
2524 |
}
|
2525 |
|
2526 |
+
$js = str_replace ('AI_ADB_ATTR_NAME', "b64d ('" . base64_encode ('data-'.(defined ('AI_ADB_ATTR') ? AI_ADB_ATTR : 'data-mask')) . "')", $js);
|
2527 |
+
|
2528 |
$js = str_replace ('AI_NONCE', wp_create_nonce ("adinserter_data"), $js);
|
2529 |
$js = str_replace ('AI_AJAXURL', admin_url ('admin-ajax.php'), $js);
|
2530 |
$js = str_replace ('AI_SITE_URL', wp_make_link_relative (get_site_url()), $js);
|
2541 |
$js = str_replace ('AI_TRACK_PAGEVIEWS', get_track_pageviews () == AI_TRACKING_ENABLED && $ai_wp_data [AI_WP_PAGE_TYPE] != AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] ? 1 : 0, $js);
|
2542 |
$js = str_replace ('AI_ADVANCED_CLICK_DETECTION', get_click_detection () == AI_CLICK_DETECTION_ADVANCED ? 1 : 0, $js);
|
2543 |
|
2544 |
+
if (!isset ($ai_wp_data [AI_VIEWPORT_WIDTHS])) {
|
2545 |
+
|
2546 |
+
$viewport_data = array ();
|
2547 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
2548 |
$viewport_name = get_viewport_name ($viewport);
|
2549 |
$viewport_width = get_viewport_width ($viewport);
|
2550 |
if ($viewport_name != '') {
|
2551 |
+
$viewport_data []= array ('index' => $viewport, 'name' => $viewport_name, 'width' => $viewport_width);
|
|
|
2552 |
}
|
2553 |
}
|
2554 |
+
|
2555 |
+
usort ($viewport_data, 'ai_compare_viewport');
|
2556 |
+
|
2557 |
+
$viewport_widthss = array ();
|
2558 |
+
$viewport_indexes = array ();
|
2559 |
+
$viewport_names = array ();
|
2560 |
+
foreach ($viewport_data as $viewport) {
|
2561 |
+
$viewport_widthss []= $viewport ['width'];
|
2562 |
+
$viewport_indexes []= $viewport ['index'];
|
2563 |
+
$viewport_names []= $viewport ['name'];
|
2564 |
+
}
|
2565 |
+
$ai_wp_data [AI_VIEWPORT_WIDTHS] = $viewport_widthss;
|
2566 |
+
$ai_wp_data [AI_VIEWPORT_INDEXES] = $viewport_indexes;
|
2567 |
+
$ai_wp_data [AI_VIEWPORT_NAMES] = $viewport_names;
|
2568 |
}
|
2569 |
+
$js = str_replace ('AI_VIEWPORT_WIDTHS', '[' . implode (',', $ai_wp_data [AI_VIEWPORT_WIDTHS]) . ']', $js);
|
2570 |
+
$js = str_replace ('AI_VIEWPORT_INDEXES', '[' . implode (',', $ai_wp_data [AI_VIEWPORT_INDEXES]) . ']', $js);
|
2571 |
$js = str_replace ('AI_VIEWPORT_NAMES', base64_encode ('["' . implode ('","', $ai_wp_data [AI_VIEWPORT_NAMES]) . '"]'), $js);
|
2572 |
}
|
2573 |
// Deprecated
|
2750 |
echo ai_js_dom_ready ("\n".$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY], false);
|
2751 |
}
|
2752 |
|
2753 |
+
echo ("\nai_js_code = true;\n");
|
2754 |
+
|
2755 |
// Wait for jQuery - for iframe pages it is always loaded
|
2756 |
if ($wait_for_jquery && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2757 |
global $wp_scripts;
|
3952 |
elseif (AI_PHONE) echo "PHONE\n";
|
3953 |
else echo "?\n";
|
3954 |
}
|
3955 |
+
|
3956 |
echo 'CLIENT-SIDE DETECTION: ', $ai_wp_data [AI_CLIENT_SIDE_DETECTION] ? 'USED' : "NOT USED", "\n";
|
3957 |
+
echo 'DISABLE CACHING: ', $ai_wp_data [AI_DISABLE_CACHING] ? 'USED' : "NOT USED", "\n";
|
3958 |
+
echo 'STICKY WIDGETS: ', $ai_wp_data [AI_STICKY_WIDGETS] ? 'USED' : "NOT USED", "\n";
|
3959 |
|
3960 |
if (function_exists ('ai_debug_features')) ai_debug_features ();
|
3961 |
|
3962 |
+
echo 'PHP PROCESSING DISABLED: ', defined ('AI_NO_PHP_PROCESSING') ? 'YES' : "NO", "\n";
|
3963 |
+
|
3964 |
$enabled_custom_hooks = array ();
|
3965 |
foreach ($ai_custom_hooks as $ai_custom_hook) {
|
3966 |
$hook = $ai_custom_hook ['index'];
|
4040 |
echo 'FOOTER: ', $block_object [AI_FOOTER_OPTION_NAME]->get_enable_manual () ? 'ENABLED' : 'DISABLED', "\n";
|
4041 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
4042 |
echo 'AD BLOCKING DETECTION: ', $ai_wp_data [AI_ADB_DETECTION] ? 'ENABLED' : 'DISABLED', "\n";
|
4043 |
+
echo 'DISABLED BY SHORTCODE: ', isset ($ai_wp_data [AI_ADB_SHORTCODE_DISABLED]) ? 'YES' : "NO", "\n";
|
4044 |
+
|
4045 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
4046 |
echo 'ADB ACTION: ';
|
4047 |
switch (get_adb_action (true)) {
|
4095 |
if (!empty ($ai_wp_data [AI_CLIENTS])) {
|
4096 |
$ai_wp_data [AI_CLIENTS] = array_unique ($ai_wp_data [AI_CLIENTS]);
|
4097 |
foreach ($ai_wp_data [AI_CLIENTS] as $client) {
|
4098 |
+
echo sprintf (" %-23s", $client.':'), check_client_list ($client, true) ? 'YES' : 'NO', "\n";
|
4099 |
}
|
4100 |
}
|
4101 |
}
|
4292 |
$post_meta = get_post_meta ($page->ID, '_adinserter_block_exceptions', true);
|
4293 |
if ($post_meta == '') continue;
|
4294 |
$post_type_object = get_post_type_object ($page->post_type);
|
4295 |
+
echo sprintf ("%-24s %-6s %-24s %-64s %s", $post_meta, $page->ID, $post_type_object->labels->singular_name, mb_substr ($page->post_title, 0, 64), get_permalink ($page->ID)), "\n";
|
4296 |
}
|
4297 |
echo "\n";
|
4298 |
}
|
4596 |
if (!isset ($plugin_options ['DISABLE_HEADER_CODE'])) $plugin_options ['DISABLE_HEADER_CODE'] = DEFAULT_DISABLE_HEADER_CODE;
|
4597 |
if (!isset ($plugin_options ['DISABLE_FOOTER_CODE'])) $plugin_options ['DISABLE_FOOTER_CODE'] = DEFAULT_DISABLE_FOOTER_CODE;
|
4598 |
|
4599 |
+
$min_width_0_defined = false;
|
4600 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
4601 |
$viewport_name_option_name = 'VIEWPORT_NAME_' . $viewport;
|
4602 |
$viewport_width_option_name = 'VIEWPORT_WIDTH_' . $viewport;
|
4608 |
$plugin_options [$viewport_name_option_name] = constant ("DEFAULT_VIEWPORT_NAME_1");
|
4609 |
|
4610 |
if ($plugin_options [$viewport_name_option_name] != '') {
|
4611 |
+
$last_viewport_width_option_name = $viewport_width_option_name;
|
4612 |
+
|
4613 |
if (!isset ($plugin_options [$viewport_width_option_name])) $plugin_options [$viewport_width_option_name] =
|
4614 |
defined ("DEFAULT_VIEWPORT_WIDTH_" . $viewport) ? constant ("DEFAULT_VIEWPORT_WIDTH_" . $viewport) : 0;
|
4615 |
|
4629 |
$viewport_width = 9999;
|
4630 |
}
|
4631 |
|
4632 |
+
// if ($viewport > 1) {
|
4633 |
+
// if ($viewport_width >= $previous_viewport_option_width)
|
4634 |
+
// $viewport_width = $previous_viewport_option_width - 1;
|
4635 |
+
// }
|
4636 |
|
4637 |
$viewport_width = intval ($viewport_width);
|
4638 |
if ($viewport_width < 0) {
|
4639 |
$viewport_width = 0;
|
4640 |
}
|
4641 |
|
4642 |
+
if ($viewport_width == 0) {
|
4643 |
+
$min_width_0_defined = true;
|
4644 |
+
}
|
4645 |
+
|
4646 |
$plugin_options [$viewport_width_option_name] = $viewport_width;
|
4647 |
} else $plugin_options [$viewport_width_option_name] = '';
|
4648 |
}
|
4649 |
+
if (!$min_width_0_defined) {
|
4650 |
+
$plugin_options [$last_viewport_width_option_name] = 0;
|
4651 |
+
}
|
4652 |
|
4653 |
for ($hook = 1; $hook <= 20; $hook ++) {
|
4654 |
$hook_enabled_settins_name = 'HOOK_ENABLED_' . $hook;
|
5401 |
$option == AI_OPTION_TAXONOMY_LIST ||
|
5402 |
$option == AI_OPTION_ID_LIST ||
|
5403 |
$option == AI_OPTION_URL_LIST ||
|
|
|
5404 |
$option == AI_OPTION_PARAGRAPH_NUMBER ||
|
5405 |
$option == AI_OPTION_MIN_PARAGRAPHS ||
|
5406 |
$option == AI_OPTION_MAX_PARAGRAPHS ||
|
5457 |
$value = str_replace (array ("\"", "<", ">", "[", "]"), "", $value);
|
5458 |
$value = esc_html ($value);
|
5459 |
}
|
5460 |
+
elseif ($option == AI_OPTION_URL_PARAMETER_LIST) {
|
5461 |
+
$value = str_replace (array ("\"", "<", ">"), "", $value);
|
5462 |
+
$value = esc_html ($value);
|
5463 |
+
}
|
5464 |
elseif ($option == 'AD_LABEL' ||
|
5465 |
$option == 'REPORT_HEADER_TITLE' ||
|
5466 |
$option == 'REPORT_HEADER_DESCRIPTION' ||
|
6174 |
}
|
6175 |
|
6176 |
|
6177 |
+
function ai_compare_viewport ($a, $b) {
|
6178 |
+
|
6179 |
+
if ($a ['width'] == $b ['width']) return 0;
|
6180 |
+
return ($a ['width'] > $b ['width']) ? - 1 : 1;
|
6181 |
+
}
|
6182 |
+
|
6183 |
function generate_viewport_css () {
|
6184 |
|
6185 |
$viewports = array ();
|
6191 |
}
|
6192 |
}
|
6193 |
|
6194 |
+
usort ($viewports, 'ai_compare_viewport');
|
6195 |
+
|
6196 |
$viewport_styles = '';
|
6197 |
+
$number_of_viewports = count ($viewports);
|
6198 |
+
if ($number_of_viewports != 0) {
|
6199 |
$viewport_styles = ".ai-viewports {--ai: 1;}\n"; // Dummy style to prevent not loading viewport rules when optimizers join them with other (broken) styles on the page
|
6200 |
foreach ($viewports as $index => $viewport) {
|
6201 |
+
// if ($viewport ['index'] == 1) {
|
6202 |
+
if ($index == 0) {
|
6203 |
foreach (array_reverse ($viewports) as $index2 => $viewport2) {
|
6204 |
+
// if ($viewport2 ['index'] != 1) {
|
6205 |
+
if ($index2 != $number_of_viewports - 1) {
|
6206 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: none !important;}\n";
|
6207 |
}
|
6208 |
}
|
6209 |
+
// $viewport_styles .= ".ai-viewport-1 { display: inherit !important;}\n";
|
6210 |
+
$viewport_styles .= ".ai-viewport-".$viewports [0]['index']." { display: inherit !important;}\n";
|
6211 |
$viewport_styles .= ".ai-viewport-0 { display: none !important;}\n";
|
6212 |
} else {
|
6213 |
$viewport_styles .= "@media ";
|
6214 |
+
// if ($index != count ($viewports) - 1)
|
6215 |
+
if ($viewport ['width'] != 0)
|
6216 |
$viewport_styles .= "(min-width: " . $viewport ['width'] . "px) and ";
|
6217 |
$viewport_styles .= "(max-width: " . ($viewports [$index - 1]['width'] - 1) . "px) {\n";
|
6218 |
foreach ($viewports as $index2 => $viewport2) {
|
6219 |
+
// if ($viewport2 ['index'] == 1)
|
6220 |
+
if ($index2 == 0)
|
6221 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: none !important;}\n";
|
6222 |
+
// elseif ($viewport ['index'] == $viewport2 ['index'])
|
6223 |
+
elseif ($index == $index2)
|
6224 |
$viewport_styles .= ".ai-viewport-" . $viewport2 ['index'] . " { display: inherit !important;}\n";
|
6225 |
|
6226 |
}
|
6448 |
|
6449 |
pre.ai-w3tc-debug.ai-w3tc-run {color: #00f;}
|
6450 |
|
6451 |
+
pre.ai-processing-log {padding: 10px; background: #eee; color: #000; font-family: monospace; font-size: 12px; line-height: 18px; white-space: pre-wrap; white-space: -moz-pre-wrap; white-space: -pre-wrap; white-space: -o-pre-wrap; word-wrap: break-word;}
|
6452 |
|
6453 |
<?php
|
6454 |
}
|
7153 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_ADMIN) return $content;
|
7154 |
|
7155 |
$debug_processing = ($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_PROCESSING) != 0;
|
7156 |
+
|
7157 |
+
// TEMP CHECK
|
7158 |
+
if (get_plugin_priority () % 2 == 1) {
|
7159 |
+
if (strpos ($content, '<!-- ' . AI_CONTENT_MARKER) !== false) {
|
7160 |
+
if ($debug_processing) {
|
7161 |
+
ai_log ("THE CONTENT ALREADY PROCESSED\n");
|
7162 |
+
}
|
7163 |
+
|
7164 |
+
return $content;
|
7165 |
+
}
|
7166 |
+
}
|
7167 |
+
|
7168 |
$globals_name = AI_CONTENT_COUNTER_NAME;
|
7169 |
|
7170 |
$special_element_tags = explode (',', str_replace (' ', '', get_no_paragraph_counting_inside ()));
|
7392 |
$content = '<kbd class="ai-debug-invisible">[' . __('HTML TAGS REMOVED', 'ad-inserter') . ']</kbd>' . $content;
|
7393 |
}
|
7394 |
|
|
|
|
|
|
|
|
|
|
|
|
|
7395 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
7396 |
if ($ai_wp_data [AI_CLOSE_BUTTONS]) {
|
7397 |
$content .= '<script>if (typeof ai_install_close_buttons == "function") {ai_install_close_buttons (document);}</script>';
|
7398 |
}
|
7399 |
}
|
7400 |
|
7401 |
+
$content .= '<!-- ' . AI_CONTENT_MARKER . ' ' . $ad_inserter_globals [$globals_name] . " -->\n";
|
7402 |
+
|
7403 |
+
if ($debug_processing) {
|
7404 |
+
$ai_total_plugin_time += microtime (true) - $start_time;
|
7405 |
+
ai_log ("CONTENT HOOK END: ". number_format (1000 * (microtime (true) - $start_time), 2)." ms\n");
|
7406 |
+
$ai_wp_data [AI_PROCESSING_TIME] = false;
|
7407 |
+
}
|
7408 |
|
7409 |
return $content;
|
7410 |
}
|
8241 |
|
8242 |
switch ($counter_name) {
|
8243 |
case 'block':
|
8244 |
+
if (isset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]) && isset ($ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]])) {
|
8245 |
+
return $ad_inserter_globals [AI_BLOCK_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]];
|
8246 |
}
|
8247 |
break;
|
8248 |
case 'content':
|
8266 |
}
|
8267 |
break;
|
8268 |
case 'widget':
|
8269 |
+
if (isset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]) && isset ($ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]])) {
|
8270 |
+
return $ad_inserter_globals [AI_WIDGET_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]];
|
8271 |
}
|
8272 |
break;
|
8273 |
case 'php':
|
8274 |
+
if (isset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]) && isset ($ad_inserter_globals [AI_PHP_FUNCTION_CALL_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]])) {
|
8275 |
+
return $ad_inserter_globals [AI_PHP_FUNCTION_CALL_COUNTER_NAME . $ai_wp_data [AI_CURRENT_BLOCK_NUMBER]];
|
8276 |
}
|
8277 |
break;
|
8278 |
}
|
8404 |
$saved_atts = $ai_wp_data [AI_SHORTCODES]['atts'];
|
8405 |
}
|
8406 |
$ai_wp_data [AI_SHORTCODES]['atts'] = $atts;
|
8407 |
+
if (isset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER])) {
|
8408 |
+
$saved_block_number = $ai_wp_data [AI_CURRENT_BLOCK_NUMBER];
|
8409 |
}
|
8410 |
|
8411 |
$code = $obj->get_code_for_serverside_insertion (true, false, $code_only);
|
8432 |
$ai_wp_data [AI_SHORTCODES]['atts'] = $saved_atts;
|
8433 |
} else unset ($ai_wp_data [AI_SHORTCODES]['atts']);
|
8434 |
if (isset ($saved_block_number)) {
|
8435 |
+
$ai_wp_data [AI_CURRENT_BLOCK_NUMBER] = $saved_block_number;
|
8436 |
+
} else unset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]);
|
8437 |
|
8438 |
// Must be after get_code_for_serverside_insertion ()
|
8439 |
$ai_last_check = AI_CHECK_INSERTED;
|
8788 |
echo $args ['after_widget'];
|
8789 |
}
|
8790 |
|
8791 |
+
function ai_is_json ($string, $return_data = false) {
|
8792 |
+
$data = json_decode ($string);
|
8793 |
+
return (json_last_error () == JSON_ERROR_NONE) ? ($return_data ? $data : true) : false;
|
8794 |
+
}
|
8795 |
+
|
8796 |
+
function ai_structured_data_item ($indexes, $data, $value = '!@!') {
|
8797 |
+
if (is_object ($data)) $data = (array) $data;
|
8798 |
+
|
8799 |
+
if (empty ($indexes)) {
|
8800 |
+
if ($value == '!@!') return true;
|
8801 |
+
|
8802 |
+
return $data == $value;
|
8803 |
+
}
|
8804 |
+
|
8805 |
+
if (!is_array ($data)) return false;
|
8806 |
+
|
8807 |
+
// Workaround because after json decode array indexes are strings and can't be accessed
|
8808 |
+
$data = array_combine (array_keys ($data), array_values ($data));
|
8809 |
+
|
8810 |
+
$index = array_shift ($indexes);
|
8811 |
+
|
8812 |
+
if ($index == '*') {
|
8813 |
+
foreach ($data as $data_index => $data_item) {
|
8814 |
+
if (ai_structured_data_item ($indexes, $data_item, $value)) return true;
|
8815 |
+
}
|
8816 |
+
}
|
8817 |
+
elseif (isset ($data [$index])) {
|
8818 |
+
return ai_structured_data_item ($indexes, $data [$index], $value);
|
8819 |
+
}
|
8820 |
+
|
8821 |
+
return false;
|
8822 |
+
}
|
8823 |
+
|
8824 |
+
function ai_structured_data ($data, $selector, $value = '') {
|
8825 |
+
if (!is_array ($data)) return false;
|
8826 |
+
if (strpos ($selector, '[') === false) return false;
|
8827 |
+
|
8828 |
+
$indexes = explode ('[', str_replace (array (']', ' '), '', $selector));
|
8829 |
+
|
8830 |
+
return ai_structured_data_item ($indexes, $data, $value);
|
8831 |
+
}
|
8832 |
+
|
8833 |
function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$found) {
|
8834 |
$parameter_list = trim ($list);
|
8835 |
$return = $white_list;
|
8844 |
|
8845 |
$found = true;
|
8846 |
|
8847 |
+
$parameter_data = array ();
|
8848 |
foreach ($parameters as $index => $parameter) {
|
8849 |
+
$parameter_data [$index] = false;
|
8850 |
if (is_string ($parameter)) {
|
8851 |
+
$data = trim (stripslashes ($parameter));
|
8852 |
+
if (strpos ($data, '{') === 0) {
|
8853 |
+
$parameter_data [$index] = ai_is_json ($data, true);
|
8854 |
+
}
|
8855 |
$parameters [$index] = urlencode ($parameter);
|
8856 |
}
|
8857 |
}
|
8868 |
}
|
8869 |
elseif (strpos ($parameter, "=") !== false) {
|
8870 |
$parameter_value = explode ("=", $parameter);
|
8871 |
+
|
8872 |
if (array_key_exists ($parameter_value [0], $parameters) && $parameters [$parameter_value [0]] == $parameter_value [1]) return $return;
|
8873 |
+
|
8874 |
+
if (ai_structured_data ($parameter_data, $parameter_value [0], $parameter_value [1])) return $return;
|
8875 |
+
}
|
8876 |
+
else {
|
8877 |
+
if (array_key_exists ($parameter, $parameters)) return $return;
|
8878 |
+
|
8879 |
+
if (ai_structured_data ($parameter_data, $parameter)) return $return;
|
8880 |
}
|
|
|
8881 |
}
|
8882 |
|
8883 |
$found = false;
|
8988 |
$client = trim ($client);
|
8989 |
if ($client == "") continue;
|
8990 |
|
8991 |
+
if ($client [0] == '*') {
|
8992 |
+
if ($client [strlen ($client) - 1] == '*') {
|
8993 |
+
$client = substr ($client, 1, strlen ($client) - 2);
|
8994 |
+
if (stripos ($agent->getUserAgent (), $client) !== false) return $return;
|
8995 |
+
} else {
|
8996 |
+
$client = substr ($client, 1);
|
8997 |
+
if (strtolower (substr ($agent->getUserAgent (), - strlen ($client))) == strtolower ($client)) return $return;
|
8998 |
+
}
|
8999 |
+
}
|
9000 |
+
elseif ($client [strlen ($client) - 1] == '*') {
|
9001 |
+
$client = substr ($client, 0, strlen ($client) - 1);
|
9002 |
+
if (stripos ($agent->getUserAgent (), $client) === 0) return $return;
|
9003 |
+
}
|
9004 |
+
elseif ($agent->is ($client)) return $return;
|
9005 |
}
|
9006 |
return !$return;
|
9007 |
} else {
|
9371 |
if (function_exists ('ai_add_rewrite_rules_2')) ai_add_rewrite_rules_2 ();
|
9372 |
}
|
9373 |
|
9374 |
+
function ai_js_dom_ready ($js_code, $script_tag = true, $script_class = '') {
|
9375 |
$id = rand (100000, 999999) . rand (100000, 999999);
|
9376 |
$code = '';
|
9377 |
|
9378 |
+
if ($script_class != '') {
|
9379 |
+
$script_class = ' class="' . $script_class . '"';
|
9380 |
+
}
|
9381 |
+
|
9382 |
if ($script_tag) {
|
9383 |
+
$code .= "<!-- AI_JS --><script{$script_class}>
|
9384 |
";
|
9385 |
|
9386 |
$js_code = '/* AI_JS */' . $js_code . '/* AI_JS */';
|
10136 |
if (defined ('AI_ADBLOCKING_DETECTION') && AI_ADBLOCKING_DETECTION) {
|
10137 |
$ai_wp_data [AI_ADB_DETECTION] = $block_object [AI_ADB_MESSAGE_OPTION_NAME]->get_enable_manual ();
|
10138 |
|
10139 |
+
$logged_in_key = defined ('LOGGED_IN_KEY') ? LOGGED_IN_KEY : 'key';
|
10140 |
+
|
10141 |
if ($ai_wp_data [AI_ADB_DETECTION]) {
|
10142 |
$adb_2_name = AI_ADB_2_DEFAULT_NAME;
|
10143 |
+
define ('AI_ADB_COOKIE_VALUE', substr (preg_replace ("/[^A-Za-z]+/", '', strtolower (md5 ($logged_in_key.md5 (NONCE_KEY)))), 0, 8));
|
10144 |
|
10145 |
$script_path = AD_INSERTER_PLUGIN_DIR.'js';
|
10146 |
$script = $script_path.'/sponsors.js';
|
10147 |
|
10148 |
if (is_writable ($script_path) && is_writable ($script)) {
|
10149 |
+
$adb_2_name = substr (preg_replace ("/[^A-Za-z]+/", '', strtolower (md5 ($logged_in_key).md5 (NONCE_KEY))), 0, 8);
|
10150 |
|
10151 |
$js_ok = false;
|
10152 |
if (file_exists ($script)) {
|
10160 |
}
|
10161 |
|
10162 |
define ('AI_ADB_2_NAME', $adb_2_name);
|
|
|
|
|
10163 |
}
|
10164 |
}
|
10165 |
|
10255 |
add_action ('wp_ajax_nopriv_ai_ajax', 'ai_ajax');
|
10256 |
}
|
10257 |
|
10258 |
+
|
10259 |
if (!get_option (AI_INSTALL_NAME)) {
|
10260 |
update_option (AI_INSTALL_NAME, time ());
|
10261 |
}
|
class.php
CHANGED
@@ -583,6 +583,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
583 |
$this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
|
584 |
$this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
|
585 |
$this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
|
|
|
586 |
$this->wp_options [AI_OPTION_MANUAL_LOADING] = AI_MANUAL_LOADING_DISABLED;
|
587 |
$this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
|
588 |
$this->wp_options [AI_OPTION_LABEL_IN_IFRAME] = AI_DISABLED;
|
@@ -609,6 +610,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
609 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS] = AD_EMPTY_DATA;
|
610 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN] = DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN;
|
611 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT] = AD_EMPTY_DATA;
|
|
|
612 |
$this->wp_options [AI_OPTION_PARAGRAPH_TAGS] = DEFAULT_PARAGRAPH_TAGS;
|
613 |
$this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] = AD_EMPTY_DATA;
|
614 |
$this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_BELOW] = AD_EMPTY_DATA;
|
@@ -677,6 +679,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
677 |
$this->wp_options [AI_OPTION_DISABLE_CACHING] = AI_DISABLED;
|
678 |
$this->wp_options [AI_OPTION_MAX_PAGE_BLOCKS_ENABLED] = AI_DISABLED;
|
679 |
$this->wp_options [AI_OPTION_ONLY_IN_THE_LOOP] = AI_DISABLED;
|
|
|
680 |
$this->wp_options [AI_OPTION_ENABLE_FEED] = AI_DISABLED;
|
681 |
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES] = AI_IGNORE_EXCEPTIONS;
|
682 |
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS] = AI_IGNORE_EXCEPTIONS;
|
@@ -737,6 +740,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
737 |
return $lazy_loading;
|
738 |
}
|
739 |
|
|
|
|
|
|
|
|
|
|
|
740 |
public function get_manual_loading (){
|
741 |
$manual_loading = isset ($this->wp_options [AI_OPTION_MANUAL_LOADING]) ? $this->wp_options [AI_OPTION_MANUAL_LOADING] : AI_MANUAL_LOADING_DISABLED;
|
742 |
if ($manual_loading == '') $manual_loading = AI_MANUAL_LOADING_DISABLED;
|
@@ -1410,7 +1418,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1410 |
|
1411 |
$delay = $this->get_animation_trigger_delay ();
|
1412 |
if (is_numeric ($delay) && $delay > 0) {
|
1413 |
-
$delay = intval ($delay);
|
|
|
|
|
|
|
|
|
|
|
1414 |
|
1415 |
$sticky_parameters .= ' data-aos-delay="'.$delay.'"';
|
1416 |
}
|
@@ -1716,6 +1729,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
1716 |
return $option;
|
1717 |
}
|
1718 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1719 |
public function get_avoid_paragraphs_above(){
|
1720 |
$option = isset ($this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE]) ? $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] : "";
|
1721 |
return $option;
|
@@ -2040,6 +2059,11 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2040 |
return $option;
|
2041 |
}
|
2042 |
|
|
|
|
|
|
|
|
|
|
|
2043 |
// Used for shortcodes
|
2044 |
public function get_enable_manual (){
|
2045 |
$option = isset ($this->wp_options [AI_OPTION_ENABLE_MANUAL]) ? $this->wp_options [AI_OPTION_ENABLE_MANUAL] : AI_DISABLED;
|
@@ -2520,6 +2544,26 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2520 |
return (base64_encode ($code));
|
2521 |
}
|
2522 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2523 |
public function ai_processViewportSeparators ($processed_code) {
|
2524 |
global $ai_wp_data;
|
2525 |
|
@@ -2586,7 +2630,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2586 |
if ($viewport_parameters [$viewport_code_index]['viewport'] != '') {
|
2587 |
// Invalid viewport - Code will never be inserted
|
2588 |
|
2589 |
-
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
2590 |
$invisible_debug_viewport = new ai_block_labels ('ai-debug-viewport-invisible');
|
2591 |
$invisible_label = $invisible_debug_viewport->bar ("VIEWPORT='".$viewport_parameters [$viewport_code_index]['viewport']."'", '', _x('HIDDEN', 'Block', 'ad-inserter'), ' ');
|
2592 |
|
@@ -2596,7 +2640,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2596 |
$processed_code .= "<div class='{$code_id}-dbg' data-insertion='after' data-selector='.{$code_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
2597 |
// $js_code = "ai_insert_code (document.getElementsByClassName ('{$code_id}-dbg') [0]);";
|
2598 |
$js_code = "ai_insert_code_by_class ('{$code_id}-dbg');";
|
2599 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
2600 |
}
|
2601 |
|
2602 |
continue;
|
@@ -2653,7 +2697,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2653 |
if (!get_disable_js_code ()) {
|
2654 |
$js_code = "ai_insert_viewport_code ('$code_id');";
|
2655 |
|
2656 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
2657 |
|
2658 |
if ($invisible_label != '') {
|
2659 |
if ($invisible_viewport_classes != '') {
|
@@ -2662,7 +2706,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2662 |
$ai_dbg_code = base64_encode ($invisible_label);
|
2663 |
$processed_code .= "<div class='$invisible_viewport_classes {$code_id}-dbg' data-insertion='after' data-selector='.{$code_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
2664 |
$js_code = "ai_insert_code_by_class ('{$code_id}-dbg');";
|
2665 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
2666 |
}
|
2667 |
}
|
2668 |
} else {
|
@@ -2883,10 +2927,10 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2883 |
unset ($ai_wp_data [AI_SHORTCODES]['head']);
|
2884 |
unset ($ai_wp_data [AI_SHORTCODES]['viewport']);
|
2885 |
|
2886 |
-
$ai_wp_data [
|
2887 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2888 |
$code = replace_ai_tags (do_shortcode ($this->ai_getCode ()), $this->get_ad_general_tag());
|
2889 |
-
unset ($ai_wp_data [
|
2890 |
|
2891 |
if (isset ($ai_wp_data [AI_SHORTCODES])) {
|
2892 |
$this->shortcodes = $ai_wp_data [AI_SHORTCODES];
|
@@ -3275,7 +3319,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3275 |
$processed_code .= "</div>\n";
|
3276 |
|
3277 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3278 |
-
$processed_code .= "<script>var ai_block_div = jQuery ('.{$block_id}'); ai_process_rotation (ai_block_div); ai_block_div.removeClass ('{$block_id}');</script>\n";
|
3279 |
}
|
3280 |
|
3281 |
break;
|
@@ -3433,8 +3477,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3433 |
} else $processed_code = $additional_code . $processed_code;
|
3434 |
|
3435 |
|
3436 |
-
|
3437 |
-
|
|
|
|
|
|
|
|
|
3438 |
if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
3439 |
|
3440 |
if ($this->w3tc_code != '') {
|
@@ -3452,10 +3500,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3452 |
$processed_code = $this->regenerate_w3tc_code ($processed_code);
|
3453 |
}
|
3454 |
}
|
3455 |
-
}
|
3456 |
|
3457 |
-
|
3458 |
-
if (!$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
3459 |
if ($this->get_manual_loading () == AI_MANUAL_LOADING_ALWAYS && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
3460 |
|
3461 |
if ($this->w3tc_code != '') {
|
@@ -3475,16 +3521,17 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3475 |
}
|
3476 |
}
|
3477 |
|
3478 |
-
// LISTS, COOKIE
|
3479 |
if ($not_iframe_or_inside) {
|
3480 |
|
|
|
|
|
3481 |
// Reset if multiple block insertions
|
3482 |
$this->client_side_list_detection = false;
|
3483 |
|
3484 |
$lists_dynamic_blocks = $dynamic_blocks; // replace with $this->server_side_check
|
3485 |
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE] || ($lists_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || $lists_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) && $ai_wp_data [AI_WP_AMP_PAGE]) $lists_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
3486 |
|
3487 |
-
// LISTS
|
3488 |
if ($lists_dynamic_blocks != AI_DYNAMIC_BLOCKS_SERVER_SIDE) {
|
3489 |
// Url parameters, cookies, referrers, clients
|
3490 |
do {
|
@@ -3628,7 +3675,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3628 |
$processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}{$code_data}{$fallback_code_data}></div>\n";
|
3629 |
|
3630 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3631 |
-
$processed_code .= "<script>var ai_block_div = jQuery ('.{$block_id}'); ai_process_lists (ai_block_div); ai_block_div.removeClass ('{$block_id}');</script>\n";
|
3632 |
}
|
3633 |
|
3634 |
break;
|
@@ -3812,7 +3859,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3812 |
$processed_code = "\n<div class='ai-dynamic{$ip_class} ai-ip-data' $ip_address_attributes $country_attributes $code_data></div>\n";
|
3813 |
|
3814 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && function_exists ('add_footer_inline_scripts_2') && !get_disable_js_code ()) {
|
3815 |
-
$processed_code .= "<script>var ai_block_div = jQuery ('.{$block_id}'); ai_process_ip_addresses (ai_block_div); ai_block_div.removeClass ('{$block_id}');</script>\n";
|
3816 |
}
|
3817 |
break;
|
3818 |
}
|
@@ -3958,7 +4005,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3958 |
if (!get_disable_js_code ()) {
|
3959 |
$js_code = "ai_insert_list_code ('{$class_id}');";
|
3960 |
|
3961 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
3962 |
|
3963 |
if ($invisible_label != '') {
|
3964 |
if ($invisible_viewport_classes != '') {
|
@@ -3967,7 +4014,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3967 |
$ai_dbg_code = base64_encode ($invisible_label);
|
3968 |
$processed_code .= "<div class='{$invisible_viewport_classes} {$class_id}-dbg' data-insertion='after' data-selector='.{$class_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
3969 |
$js_code = "ai_insert_code_by_class ('{$class_id}-dbg');";
|
3970 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
3971 |
}
|
3972 |
}
|
3973 |
} else {
|
@@ -3992,7 +4039,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3992 |
|
3993 |
|
3994 |
// COOKIE
|
3995 |
-
|
3996 |
if ($check_block_code && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
3997 |
// Check for cookie
|
3998 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
|
@@ -4031,7 +4077,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4031 |
|
4032 |
if (!get_disable_js_code ()) {
|
4033 |
$js_code = "{$ai_check_block_js_code}ai_check_and_insert_block ({$this->number}, 'ai-check-{$block_id}');";
|
4034 |
-
$processed_code .= ai_js_dom_ready ($js_code);
|
4035 |
}
|
4036 |
}
|
4037 |
}
|
@@ -4053,7 +4099,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4053 |
$processed_code = "<div class='ai-code'>\n" . $processed_code ."\n</div>\n";
|
4054 |
}
|
4055 |
|
4056 |
-
if (function_exists ('ai_adb_block_actions') && $not_iframe_or_inside) ai_adb_block_actions ($this, $this->hide_debug_labels);
|
4057 |
|
4058 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
4059 |
$this->ai_generateDebugLabel ();
|
@@ -4351,7 +4397,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4351 |
$js_code = "ai_insert_viewport_code ('$block_id');";
|
4352 |
|
4353 |
// $serverside_insertion_code .= "<script>$js_code</script>\n";
|
4354 |
-
$serverside_insertion_code .= ai_js_dom_ready ($js_code);
|
4355 |
}
|
4356 |
}
|
4357 |
elseif ($viewports_insertion && $html_element_insertion) {
|
@@ -4366,7 +4412,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4366 |
// $serverside_insertion_code .= "<script>ai_insert_code (document.getElementsByClassName ('$block_id') [0]);</script>\n";
|
4367 |
// $js_code = "var ai_block_div = document.getElementsByClassName ('$block_id') [0]; ai_insert_code (ai_block_div); ai_block_div.classList.remove ('$block_id')";
|
4368 |
$js_code = "ai_insert_viewport_code ('$block_id');";
|
4369 |
-
$serverside_insertion_code .= ai_js_dom_ready ($js_code);
|
4370 |
}
|
4371 |
}
|
4372 |
else { // only HTML element insertion
|
@@ -4393,7 +4439,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4393 |
$serverside_insertion_code = '';
|
4394 |
if (!get_disable_js_code ()) {
|
4395 |
$js_code = "ai_insert ('$insertion', '$selector', b64d ('[#AI_CODE#]'));";
|
4396 |
-
$serverside_insertion_code .= ai_js_dom_ready ($js_code);
|
4397 |
}
|
4398 |
}
|
4399 |
|
@@ -5294,8 +5340,9 @@ echo '</body>
|
|
5294 |
if ($element_tags != '') {
|
5295 |
$special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
|
5296 |
|
5297 |
-
$count_inside
|
5298 |
-
$element_text_type
|
|
|
5299 |
|
5300 |
$element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
|
5301 |
if (strpos ($element_text, ",") !== false) {
|
@@ -5307,67 +5354,96 @@ echo '</body>
|
|
5307 |
|
5308 |
foreach ($special_element_tags_array as $special_element_tag) {
|
5309 |
preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
|
5310 |
-
|
5311 |
-
$nesting = array ();
|
5312 |
$special_elements = $special_elements [0];
|
5313 |
-
foreach ($special_elements as $index => $special_element) {
|
5314 |
-
if (isset ($special_elements [$index + 1][0])) {
|
5315 |
-
$tag1 = strtolower ($special_element [0]);
|
5316 |
-
$tag2 = strtolower ($special_elements [$index + 1][0]);
|
5317 |
|
5318 |
-
|
5319 |
-
|
|
|
5320 |
|
5321 |
-
|
5322 |
-
|
5323 |
-
|
5324 |
-
$tag2_end = $tag2 == "</$special_element_tag";
|
5325 |
|
5326 |
-
|
5327 |
-
|
5328 |
-
continue;
|
5329 |
-
}
|
5330 |
-
elseif ($tag1_end && $tag2_end) {
|
5331 |
-
$start_offset = array_pop ($nesting);
|
5332 |
-
if (count ($nesting) == 0) $nesting_ended = true;
|
5333 |
-
}
|
5334 |
|
5335 |
-
|
|
|
|
|
|
|
5336 |
|
5337 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5338 |
|
5339 |
-
if ($
|
5340 |
-
$element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)) + 1, mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
|
5341 |
-
} else {
|
5342 |
-
$element_offsets = array ($start_offset + 1, $special_elements [$index + 1][1]);
|
5343 |
-
}
|
5344 |
|
5345 |
-
if (
|
5346 |
-
|
5347 |
-
|
5348 |
-
|
5349 |
-
|
5350 |
-
|
5351 |
}
|
5352 |
-
|
5353 |
-
|
5354 |
-
|
5355 |
-
|
5356 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5357 |
}
|
5358 |
-
|
5359 |
-
|
5360 |
-
|
5361 |
-
|
5362 |
}
|
5363 |
-
|
5364 |
-
|
5365 |
-
|
5366 |
-
|
5367 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5368 |
}
|
5369 |
}
|
5370 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5371 |
}
|
5372 |
|
5373 |
$inside_special_element = array ();
|
@@ -5572,6 +5648,7 @@ echo '</body>
|
|
5572 |
|
5573 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
5574 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
|
|
5575 |
if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
|
5576 |
}
|
5577 |
}
|
@@ -5606,6 +5683,7 @@ echo '</body>
|
|
5606 |
|
5607 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
5608 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
|
|
5609 |
if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
|
5610 |
}
|
5611 |
}
|
@@ -6113,6 +6191,7 @@ echo '</body>
|
|
6113 |
|
6114 |
$count_inside = $this->get_count_inside ();
|
6115 |
$element_text_type = $this->get_count_inside_elements_contain ();
|
|
|
6116 |
|
6117 |
$element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
|
6118 |
if (strpos ($element_text, ",") !== false) {
|
@@ -6124,67 +6203,94 @@ echo '</body>
|
|
6124 |
|
6125 |
foreach ($special_element_tags_array as $special_element_tag) {
|
6126 |
preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
|
6127 |
-
|
6128 |
-
$nesting = array ();
|
6129 |
$special_elements = $special_elements [0];
|
6130 |
-
foreach ($special_elements as $index => $special_element) {
|
6131 |
-
if (isset ($special_elements [$index + 1][0])) {
|
6132 |
-
$tag1 = strtolower ($special_element [0]);
|
6133 |
-
$tag2 = strtolower ($special_elements [$index + 1][0]);
|
6134 |
|
6135 |
-
|
6136 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6137 |
|
6138 |
-
|
6139 |
-
$tag2_start = $tag2 == "<$special_element_tag";
|
6140 |
-
$tag1_end = $tag1 == "</$special_element_tag";
|
6141 |
-
$tag2_end = $tag2 == "</$special_element_tag";
|
6142 |
|
6143 |
-
|
6144 |
-
array_push ($nesting, $start_offset);
|
6145 |
-
continue;
|
6146 |
-
}
|
6147 |
-
elseif ($tag1_end && $tag2_end) {
|
6148 |
-
$start_offset = array_pop ($nesting);
|
6149 |
-
if (count ($nesting) == 0) $nesting_ended = true;
|
6150 |
-
}
|
6151 |
-
|
6152 |
-
if (count ($nesting) != 0) continue;
|
6153 |
|
6154 |
-
|
|
|
|
|
|
|
|
|
6155 |
|
6156 |
-
|
6157 |
-
|
6158 |
-
|
6159 |
-
|
6160 |
-
}
|
6161 |
|
6162 |
-
|
6163 |
-
|
6164 |
-
|
6165 |
-
|
6166 |
-
|
6167 |
-
break;
|
6168 |
-
}
|
6169 |
-
}
|
6170 |
-
switch ($element_text_type) {
|
6171 |
-
case AI_CONTAIN:
|
6172 |
-
if ($check) {
|
6173 |
-
$special_element_offsets []= $element_offsets;
|
6174 |
}
|
6175 |
-
|
6176 |
-
|
6177 |
-
|
6178 |
-
|
6179 |
}
|
6180 |
-
|
6181 |
-
|
6182 |
-
|
6183 |
-
|
6184 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6185 |
}
|
6186 |
}
|
6187 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6188 |
}
|
6189 |
|
6190 |
$inside_special_element = array ();
|
@@ -6392,6 +6498,7 @@ echo '</body>
|
|
6392 |
|
6393 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
6394 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
|
|
6395 |
if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
|
6396 |
}
|
6397 |
}
|
@@ -6426,6 +6533,7 @@ echo '</body>
|
|
6426 |
|
6427 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
6428 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
|
|
6429 |
if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
|
6430 |
}
|
6431 |
}
|
@@ -6668,7 +6776,7 @@ echo '</body>
|
|
6668 |
$direction = AI_ABOVE;
|
6669 |
$checks = $max_checks;
|
6670 |
$position = $saved_position;
|
6671 |
-
|
6672 |
// Already at the top - do not insert
|
6673 |
if ($position == 0) {
|
6674 |
$failed_clearance_positions [$positions [$position_index]] = $ai_last_check;
|
@@ -8143,14 +8251,28 @@ class ai_code_generator {
|
|
8143 |
$code = '<style>
|
8144 |
';
|
8145 |
$display_inline = false;
|
8146 |
-
|
|
|
|
|
8147 |
$viewport_name = get_viewport_name ($viewport);
|
8148 |
$viewport_width = get_viewport_width ($viewport);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8149 |
|
8150 |
-
|
|
|
|
|
|
|
8151 |
|
8152 |
-
|
8153 |
-
|
|
|
|
|
8154 |
|
8155 |
if ($viewport_name != '') {
|
8156 |
if ($adsense_width > 0 && $adsense_height > 0) {
|
@@ -8291,20 +8413,37 @@ class ai_code_generator {
|
|
8291 |
$style = preg_match ("#<style>(.+?)</style>#s", $code, $style_match);
|
8292 |
$style_lines = explode ("\n", trim ($style_match [1]));
|
8293 |
|
8294 |
-
|
8295 |
-
$
|
8296 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
8297 |
$viewport_name = get_viewport_name ($viewport);
|
8298 |
$viewport_width = get_viewport_width ($viewport);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8299 |
if ($viewport_name != '') {
|
8300 |
$viewport_widths [] = $viewport_width;
|
|
|
8301 |
$sizes []= array (0 => '', 1 => '');
|
8302 |
}
|
8303 |
}
|
8304 |
-
$viewport_widths = array_reverse ($viewport_widths);
|
8305 |
|
8306 |
if (count ($style_lines) == count ($sizes)) {
|
8307 |
foreach ($style_lines as $index => $style_line) {
|
|
|
|
|
8308 |
if (strpos ($style_line, $viewport_class) !== false) {
|
8309 |
|
8310 |
$min_width = preg_match ("/min-width\s*:\s*(\d+)px/", $style_line, $min_width_match);
|
@@ -8320,12 +8459,11 @@ class ai_code_generator {
|
|
8320 |
$style_height = preg_match ("/height\s*:\s*(\d+)px/", $style_line, $height_match);
|
8321 |
$adsense_height = $style_height ? $height_match [1] : '';
|
8322 |
|
8323 |
-
$sizes [$
|
8324 |
}
|
8325 |
|
8326 |
-
} else $sizes [$
|
8327 |
}
|
8328 |
-
$sizes = array_reverse ($sizes);
|
8329 |
}
|
8330 |
|
8331 |
$data ['adsense-sizes'] = $sizes;
|
583 |
$this->wp_options [AI_OPTION_DISABLE_INSERTION] = AI_DISABLED;
|
584 |
$this->wp_options [AI_OPTION_SHOW_LABEL] = AI_DISABLED;
|
585 |
$this->wp_options [AI_OPTION_LAZY_LOADING] = AI_DISABLED;
|
586 |
+
$this->wp_options [AI_OPTION_PROTECTED] = AI_DISABLED;
|
587 |
$this->wp_options [AI_OPTION_MANUAL_LOADING] = AI_MANUAL_LOADING_DISABLED;
|
588 |
$this->wp_options [AI_OPTION_IFRAME] = AI_DISABLED;
|
589 |
$this->wp_options [AI_OPTION_LABEL_IN_IFRAME] = AI_DISABLED;
|
610 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS] = AD_EMPTY_DATA;
|
611 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN] = DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN;
|
612 |
$this->wp_options [AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT] = AD_EMPTY_DATA;
|
613 |
+
$this->wp_options [AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES] = AI_DISABLED;
|
614 |
$this->wp_options [AI_OPTION_PARAGRAPH_TAGS] = DEFAULT_PARAGRAPH_TAGS;
|
615 |
$this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] = AD_EMPTY_DATA;
|
616 |
$this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_BELOW] = AD_EMPTY_DATA;
|
679 |
$this->wp_options [AI_OPTION_DISABLE_CACHING] = AI_DISABLED;
|
680 |
$this->wp_options [AI_OPTION_MAX_PAGE_BLOCKS_ENABLED] = AI_DISABLED;
|
681 |
$this->wp_options [AI_OPTION_ONLY_IN_THE_LOOP] = AI_DISABLED;
|
682 |
+
$this->wp_options [AI_OPTION_EMBED_JS_CODE] = AI_DISABLED;
|
683 |
$this->wp_options [AI_OPTION_ENABLE_FEED] = AI_DISABLED;
|
684 |
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_PAGES] = AI_IGNORE_EXCEPTIONS;
|
685 |
// $this->wp_options [AI_OPTION_ENABLED_ON_WHICH_POSTS] = AI_IGNORE_EXCEPTIONS;
|
740 |
return $lazy_loading;
|
741 |
}
|
742 |
|
743 |
+
public function get_protected (){
|
744 |
+
$protected = isset ($this->wp_options [AI_OPTION_PROTECTED]) ? $this->wp_options [AI_OPTION_PROTECTED] : AI_DISABLED;
|
745 |
+
return $protected;
|
746 |
+
}
|
747 |
+
|
748 |
public function get_manual_loading (){
|
749 |
$manual_loading = isset ($this->wp_options [AI_OPTION_MANUAL_LOADING]) ? $this->wp_options [AI_OPTION_MANUAL_LOADING] : AI_MANUAL_LOADING_DISABLED;
|
750 |
if ($manual_loading == '') $manual_loading = AI_MANUAL_LOADING_DISABLED;
|
1418 |
|
1419 |
$delay = $this->get_animation_trigger_delay ();
|
1420 |
if (is_numeric ($delay) && $delay > 0) {
|
1421 |
+
$delay = 50 * intval ($delay / 50);
|
1422 |
+
|
1423 |
+
// Limitation of AOS
|
1424 |
+
if ($delay > 3000) $delay = 3000;
|
1425 |
+
|
1426 |
+
echo $delay;
|
1427 |
|
1428 |
$sticky_parameters .= ' data-aos-delay="'.$delay.'"';
|
1429 |
}
|
1729 |
return $option;
|
1730 |
}
|
1731 |
|
1732 |
+
public function get_check_only_tag_attributes (){
|
1733 |
+
$option = isset ($this->wp_options [AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES]) ? $this->wp_options [AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES] : AI_DISABLED;
|
1734 |
+
return $option;
|
1735 |
+
}
|
1736 |
+
|
1737 |
+
|
1738 |
public function get_avoid_paragraphs_above(){
|
1739 |
$option = isset ($this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE]) ? $this->wp_options [AI_OPTION_AVOID_PARAGRAPHS_ABOVE] : "";
|
1740 |
return $option;
|
2059 |
return $option;
|
2060 |
}
|
2061 |
|
2062 |
+
public function get_embed_js_code (){
|
2063 |
+
$option = isset ($this->wp_options [AI_OPTION_EMBED_JS_CODE]) ? $this->wp_options [AI_OPTION_EMBED_JS_CODE] : AI_DISABLED;
|
2064 |
+
return $option;
|
2065 |
+
}
|
2066 |
+
|
2067 |
// Used for shortcodes
|
2068 |
public function get_enable_manual (){
|
2069 |
$option = isset ($this->wp_options [AI_OPTION_ENABLE_MANUAL]) ? $this->wp_options [AI_OPTION_ENABLE_MANUAL] : AI_DISABLED;
|
2544 |
return (base64_encode ($code));
|
2545 |
}
|
2546 |
|
2547 |
+
public function ai_js_dom_ready ($js_code, $script_tag = true, $script_class = '') {
|
2548 |
+
global $ai_wp_data;
|
2549 |
+
|
2550 |
+
if ($this->get_embed_js_code ()) {
|
2551 |
+
$id = rand (100000, 999999) . rand (100000, 999999);
|
2552 |
+
|
2553 |
+
if ($script_class != '') {
|
2554 |
+
$script_class = ' class="' . $script_class . '"';
|
2555 |
+
}
|
2556 |
+
|
2557 |
+
$code = "<script{$script_class}>
|
2558 |
+
ai_run_{$id} = function(){if (typeof ai_js_code == 'boolean') {{$js_code}};};
|
2559 |
+
if (document.readyState === 'complete' || (document.readyState !== 'loading' && !document.documentElement.doScroll)) ai_run_{$id} (); else document.addEventListener ('DOMContentLoaded', ai_run_{$id});
|
2560 |
+
</script>
|
2561 |
+
";
|
2562 |
+
} else $code = '';
|
2563 |
+
|
2564 |
+
return $code . ai_js_dom_ready ($js_code, $script_tag, $script_class);
|
2565 |
+
}
|
2566 |
+
|
2567 |
public function ai_processViewportSeparators ($processed_code) {
|
2568 |
global $ai_wp_data;
|
2569 |
|
2630 |
if ($viewport_parameters [$viewport_code_index]['viewport'] != '') {
|
2631 |
// Invalid viewport - Code will never be inserted
|
2632 |
|
2633 |
+
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels && !get_disable_js_code ()) {
|
2634 |
$invisible_debug_viewport = new ai_block_labels ('ai-debug-viewport-invisible');
|
2635 |
$invisible_label = $invisible_debug_viewport->bar ("VIEWPORT='".$viewport_parameters [$viewport_code_index]['viewport']."'", '', _x('HIDDEN', 'Block', 'ad-inserter'), ' ');
|
2636 |
|
2640 |
$processed_code .= "<div class='{$code_id}-dbg' data-insertion='after' data-selector='.{$code_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
2641 |
// $js_code = "ai_insert_code (document.getElementsByClassName ('{$code_id}-dbg') [0]);";
|
2642 |
$js_code = "ai_insert_code_by_class ('{$code_id}-dbg');";
|
2643 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
2644 |
}
|
2645 |
|
2646 |
continue;
|
2697 |
if (!get_disable_js_code ()) {
|
2698 |
$js_code = "ai_insert_viewport_code ('$code_id');";
|
2699 |
|
2700 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
2701 |
|
2702 |
if ($invisible_label != '') {
|
2703 |
if ($invisible_viewport_classes != '') {
|
2706 |
$ai_dbg_code = base64_encode ($invisible_label);
|
2707 |
$processed_code .= "<div class='$invisible_viewport_classes {$code_id}-dbg' data-insertion='after' data-selector='.{$code_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
2708 |
$js_code = "ai_insert_code_by_class ('{$code_id}-dbg');";
|
2709 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
2710 |
}
|
2711 |
}
|
2712 |
} else {
|
2927 |
unset ($ai_wp_data [AI_SHORTCODES]['head']);
|
2928 |
unset ($ai_wp_data [AI_SHORTCODES]['viewport']);
|
2929 |
|
2930 |
+
$ai_wp_data [AI_CURRENT_BLOCK_NUMBER] = $this->number;
|
2931 |
// $code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true)); // Does not expand shortcodes inside HTML <div id='div-gpt-ad-1234567890-[ADINSERTER counter="block"]'>
|
2932 |
$code = replace_ai_tags (do_shortcode ($this->ai_getCode ()), $this->get_ad_general_tag());
|
2933 |
+
unset ($ai_wp_data [AI_CURRENT_BLOCK_NUMBER]);
|
2934 |
|
2935 |
if (isset ($ai_wp_data [AI_SHORTCODES])) {
|
2936 |
$this->shortcodes = $ai_wp_data [AI_SHORTCODES];
|
3319 |
$processed_code .= "</div>\n";
|
3320 |
|
3321 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3322 |
+
$processed_code .= "<script>if (typeof ai_js_code == 'boolean') {var ai_block_div = jQuery ('.{$block_id}'); ai_process_rotation (ai_block_div); ai_block_div.removeClass ('{$block_id}');};</script>\n";
|
3323 |
}
|
3324 |
|
3325 |
break;
|
3477 |
} else $processed_code = $additional_code . $processed_code;
|
3478 |
|
3479 |
|
3480 |
+
if (!$ai_wp_data [AI_CODE_FOR_IFRAME] && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE]) {
|
3481 |
+
|
3482 |
+
// PROTECTED
|
3483 |
+
if (function_exists ('ai_process_protected_code')) $processed_code = ai_process_protected_code ($this, $processed_code);
|
3484 |
+
|
3485 |
+
// LAZY LOADING
|
3486 |
if ($this->get_lazy_loading () && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
3487 |
|
3488 |
if ($this->w3tc_code != '') {
|
3500 |
$processed_code = $this->regenerate_w3tc_code ($processed_code);
|
3501 |
}
|
3502 |
}
|
|
|
3503 |
|
3504 |
+
// MANUAL LOADING
|
|
|
3505 |
if ($this->get_manual_loading () == AI_MANUAL_LOADING_ALWAYS && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
3506 |
|
3507 |
if ($this->w3tc_code != '') {
|
3521 |
}
|
3522 |
}
|
3523 |
|
|
|
3524 |
if ($not_iframe_or_inside) {
|
3525 |
|
3526 |
+
if (function_exists ('ai_adb_check') && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] && $not_iframe_or_inside) $processed_code = ai_adb_check ($this, $processed_code);
|
3527 |
+
|
3528 |
// Reset if multiple block insertions
|
3529 |
$this->client_side_list_detection = false;
|
3530 |
|
3531 |
$lists_dynamic_blocks = $dynamic_blocks; // replace with $this->server_side_check
|
3532 |
if ($ai_wp_data [AI_FORCE_SERVERSIDE_CODE] || ($lists_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || $lists_dynamic_blocks == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT) && $ai_wp_data [AI_WP_AMP_PAGE]) $lists_dynamic_blocks = AI_DYNAMIC_BLOCKS_SERVER_SIDE;
|
3533 |
|
3534 |
+
// LISTS, COOKIE
|
3535 |
if ($lists_dynamic_blocks != AI_DYNAMIC_BLOCKS_SERVER_SIDE) {
|
3536 |
// Url parameters, cookies, referrers, clients
|
3537 |
do {
|
3675 |
$processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}{$code_data}{$fallback_code_data}></div>\n";
|
3676 |
|
3677 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3678 |
+
$processed_code .= "<script>if (typeof ai_js_code == 'boolean') {var ai_block_div = jQuery ('.{$block_id}'); ai_process_lists (ai_block_div); ai_block_div.removeClass ('{$block_id}');};</script>\n";
|
3679 |
}
|
3680 |
|
3681 |
break;
|
3859 |
$processed_code = "\n<div class='ai-dynamic{$ip_class} ai-ip-data' $ip_address_attributes $country_attributes $code_data></div>\n";
|
3860 |
|
3861 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && function_exists ('add_footer_inline_scripts_2') && !get_disable_js_code ()) {
|
3862 |
+
$processed_code .= "<script>if (typeof ai_js_code == 'boolean') {var ai_block_div = jQuery ('.{$block_id}'); ai_process_ip_addresses (ai_block_div); ai_block_div.removeClass ('{$block_id}');};</script>\n";
|
3863 |
}
|
3864 |
break;
|
3865 |
}
|
4005 |
if (!get_disable_js_code ()) {
|
4006 |
$js_code = "ai_insert_list_code ('{$class_id}');";
|
4007 |
|
4008 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
4009 |
|
4010 |
if ($invisible_label != '') {
|
4011 |
if ($invisible_viewport_classes != '') {
|
4014 |
$ai_dbg_code = base64_encode ($invisible_label);
|
4015 |
$processed_code .= "<div class='{$invisible_viewport_classes} {$class_id}-dbg' data-insertion='after' data-selector='.{$class_id}-dbg' data-insertion-no-dbg data-code='$ai_dbg_code'></div>\n";
|
4016 |
$js_code = "ai_insert_code_by_class ('{$class_id}-dbg');";
|
4017 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
4018 |
}
|
4019 |
}
|
4020 |
} else {
|
4039 |
|
4040 |
|
4041 |
// COOKIE
|
|
|
4042 |
if ($check_block_code && !$ai_wp_data [AI_FORCE_SERVERSIDE_CODE] && !$ai_wp_data [AI_WP_AMP_PAGE]) {
|
4043 |
// Check for cookie
|
4044 |
if (get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC')) {
|
4077 |
|
4078 |
if (!get_disable_js_code ()) {
|
4079 |
$js_code = "{$ai_check_block_js_code}ai_check_and_insert_block ({$this->number}, 'ai-check-{$block_id}');";
|
4080 |
+
$processed_code .= $this->ai_js_dom_ready ($js_code);
|
4081 |
}
|
4082 |
}
|
4083 |
}
|
4099 |
$processed_code = "<div class='ai-code'>\n" . $processed_code ."\n</div>\n";
|
4100 |
}
|
4101 |
|
4102 |
+
// if (function_exists ('ai_adb_block_actions') && $not_iframe_or_inside) ai_adb_block_actions ($this, $this->hide_debug_labels);
|
4103 |
|
4104 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
4105 |
$this->ai_generateDebugLabel ();
|
4397 |
$js_code = "ai_insert_viewport_code ('$block_id');";
|
4398 |
|
4399 |
// $serverside_insertion_code .= "<script>$js_code</script>\n";
|
4400 |
+
$serverside_insertion_code .= $this->ai_js_dom_ready ($js_code);
|
4401 |
}
|
4402 |
}
|
4403 |
elseif ($viewports_insertion && $html_element_insertion) {
|
4412 |
// $serverside_insertion_code .= "<script>ai_insert_code (document.getElementsByClassName ('$block_id') [0]);</script>\n";
|
4413 |
// $js_code = "var ai_block_div = document.getElementsByClassName ('$block_id') [0]; ai_insert_code (ai_block_div); ai_block_div.classList.remove ('$block_id')";
|
4414 |
$js_code = "ai_insert_viewport_code ('$block_id');";
|
4415 |
+
$serverside_insertion_code .= $this->ai_js_dom_ready ($js_code);
|
4416 |
}
|
4417 |
}
|
4418 |
else { // only HTML element insertion
|
4439 |
$serverside_insertion_code = '';
|
4440 |
if (!get_disable_js_code ()) {
|
4441 |
$js_code = "ai_insert ('$insertion', '$selector', b64d ('[#AI_CODE#]'));";
|
4442 |
+
$serverside_insertion_code .= $this->ai_js_dom_ready ($js_code);
|
4443 |
}
|
4444 |
}
|
4445 |
|
5340 |
if ($element_tags != '') {
|
5341 |
$special_element_tags_array = explode (',', str_replace (' ', '', $element_tags));
|
5342 |
|
5343 |
+
$count_inside = $this->get_count_inside ();
|
5344 |
+
$element_text_type = $this->get_count_inside_elements_contain ();
|
5345 |
+
$check_only_tag_attributes = $this->get_check_only_tag_attributes ();
|
5346 |
|
5347 |
$element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
|
5348 |
if (strpos ($element_text, ",") !== false) {
|
5354 |
|
5355 |
foreach ($special_element_tags_array as $special_element_tag) {
|
5356 |
preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
|
|
|
|
|
5357 |
$special_elements = $special_elements [0];
|
|
|
|
|
|
|
|
|
5358 |
|
5359 |
+
do {
|
5360 |
+
$nesting = array ();
|
5361 |
+
foreach ($special_elements as $index => $special_element) {
|
5362 |
|
5363 |
+
if (isset ($special_elements [$index + 1][0])) {
|
5364 |
+
$tag1 = strtolower ($special_element [0]);
|
5365 |
+
$tag2 = strtolower ($special_elements [$index + 1][0]);
|
|
|
5366 |
|
5367 |
+
$start_offset = $special_element [1];
|
5368 |
+
$nesting_ended = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
5369 |
|
5370 |
+
$tag1_start = $tag1 == "<$special_element_tag";
|
5371 |
+
$tag2_start = $tag2 == "<$special_element_tag";
|
5372 |
+
$tag1_end = $tag1 == "</$special_element_tag";
|
5373 |
+
$tag2_end = $tag2 == "</$special_element_tag";
|
5374 |
|
5375 |
+
if ($tag1_start && $tag2_start) {
|
5376 |
+
array_push ($nesting, $start_offset);
|
5377 |
+
continue;
|
5378 |
+
}
|
5379 |
+
elseif ($tag1_end && $tag2_end) {
|
5380 |
+
$start_offset = array_pop ($nesting);
|
5381 |
+
if (count ($nesting) == 0) $nesting_ended = true;
|
5382 |
+
}
|
5383 |
|
5384 |
+
if (count ($nesting) != 0) continue;
|
|
|
|
|
|
|
|
|
5385 |
|
5386 |
+
if (($nesting_ended || $tag1_start) && $tag2_end) {
|
5387 |
+
|
5388 |
+
if ($multibyte) {
|
5389 |
+
$element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)) + 1, mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
|
5390 |
+
} else {
|
5391 |
+
$element_offsets = array ($start_offset + 1, $special_elements [$index + 1][1]);
|
5392 |
}
|
5393 |
+
|
5394 |
+
if (!empty ($element_texts)) {
|
5395 |
+
$check = false;
|
5396 |
+
foreach ($element_texts as $element_text) {
|
5397 |
+
|
5398 |
+
$search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
|
5399 |
+
|
5400 |
+
if ($check_only_tag_attributes) {
|
5401 |
+
preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
|
5402 |
+
if (isset ($search_content_tag [1])) {
|
5403 |
+
$search_content = $search_content_tag [1];
|
5404 |
+
}
|
5405 |
}
|
5406 |
+
|
5407 |
+
if (stripos ($search_content, $element_text)) {
|
5408 |
+
$check = true;
|
5409 |
+
break;
|
5410 |
}
|
5411 |
+
}
|
5412 |
+
switch ($element_text_type) {
|
5413 |
+
case AI_CONTAIN:
|
5414 |
+
if ($check) {
|
5415 |
+
$special_element_offsets []= $element_offsets;
|
5416 |
+
}
|
5417 |
+
break;
|
5418 |
+
default:
|
5419 |
+
if (!$check) {
|
5420 |
+
$special_element_offsets []= $element_offsets;
|
5421 |
+
}
|
5422 |
+
break;
|
5423 |
+
}
|
5424 |
+
} else {
|
5425 |
+
$special_element_offsets []= $element_offsets;
|
5426 |
+
}
|
5427 |
+
}
|
5428 |
}
|
5429 |
}
|
5430 |
+
|
5431 |
+
if ($check_only_tag_attributes) {
|
5432 |
+
array_shift ($special_elements);
|
5433 |
+
if (count ($special_elements) == 0) break;
|
5434 |
+
|
5435 |
+
if ($special_elements [0][0][1] == '/') {
|
5436 |
+
// Closing tag is next
|
5437 |
+
array_shift ($special_elements);
|
5438 |
+
}
|
5439 |
+
elseif ($special_elements [count ($special_elements) - 1][0][1] == '/') {
|
5440 |
+
// Closing tag is last
|
5441 |
+
array_pop ($special_elements);
|
5442 |
+
}
|
5443 |
+
else break; // Invalid tags
|
5444 |
+
}
|
5445 |
+
|
5446 |
+
} while ($check_only_tag_attributes && count ($special_elements) >= 2);
|
5447 |
}
|
5448 |
|
5449 |
$inside_special_element = array ();
|
5648 |
|
5649 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
5650 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
5651 |
+
if ($index + 1 < $offset_value) continue;
|
5652 |
if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
|
5653 |
}
|
5654 |
}
|
5683 |
|
5684 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
5685 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
5686 |
+
if ($index + 1 < $offset_value) continue;
|
5687 |
if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
|
5688 |
}
|
5689 |
}
|
6191 |
|
6192 |
$count_inside = $this->get_count_inside ();
|
6193 |
$element_text_type = $this->get_count_inside_elements_contain ();
|
6194 |
+
$check_only_tag_attributes = $this->get_check_only_tag_attributes ();
|
6195 |
|
6196 |
$element_text = str_replace (' ', '', html_entity_decode ($this->get_count_inside_elements_text ()));
|
6197 |
if (strpos ($element_text, ",") !== false) {
|
6203 |
|
6204 |
foreach ($special_element_tags_array as $special_element_tag) {
|
6205 |
preg_match_all ("/<\/?$special_element_tag/i", $content, $special_elements, PREG_OFFSET_CAPTURE);
|
|
|
|
|
6206 |
$special_elements = $special_elements [0];
|
|
|
|
|
|
|
|
|
6207 |
|
6208 |
+
do {
|
6209 |
+
$nesting = array ();
|
6210 |
+
foreach ($special_elements as $index => $special_element) {
|
6211 |
+
if (isset ($special_elements [$index + 1][0])) {
|
6212 |
+
$tag1 = strtolower ($special_element [0]);
|
6213 |
+
$tag2 = strtolower ($special_elements [$index + 1][0]);
|
6214 |
+
|
6215 |
+
$start_offset = $special_element [1];
|
6216 |
+
$nesting_ended = false;
|
6217 |
+
|
6218 |
+
$tag1_start = $tag1 == "<$special_element_tag";
|
6219 |
+
$tag2_start = $tag2 == "<$special_element_tag";
|
6220 |
+
$tag1_end = $tag1 == "</$special_element_tag";
|
6221 |
+
$tag2_end = $tag2 == "</$special_element_tag";
|
6222 |
+
|
6223 |
+
if ($tag1_start && $tag2_start) {
|
6224 |
+
array_push ($nesting, $start_offset);
|
6225 |
+
continue;
|
6226 |
+
}
|
6227 |
+
elseif ($tag1_end && $tag2_end) {
|
6228 |
+
$start_offset = array_pop ($nesting);
|
6229 |
+
if (count ($nesting) == 0) $nesting_ended = true;
|
6230 |
+
}
|
6231 |
|
6232 |
+
if (count ($nesting) != 0) continue;
|
|
|
|
|
|
|
6233 |
|
6234 |
+
if (($nesting_ended || $tag1_start) && $tag2_end) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6235 |
|
6236 |
+
if ($multibyte) {
|
6237 |
+
$element_offsets = array (mb_strlen (substr ($content, 0, $start_offset)), mb_strlen (substr ($content, 0, $special_elements [$index + 1][1])));
|
6238 |
+
} else {
|
6239 |
+
$element_offsets = array ($start_offset, $special_elements [$index + 1][1]);
|
6240 |
+
}
|
6241 |
|
6242 |
+
if (!empty ($element_texts)) {
|
6243 |
+
$check = false;
|
6244 |
+
foreach ($element_texts as $element_text) {
|
6245 |
+
$search_content = substr ($content, $element_offsets [0], $element_offsets [1] - $element_offsets [0]);
|
|
|
6246 |
|
6247 |
+
if ($check_only_tag_attributes) {
|
6248 |
+
preg_match ('#([^>]+?)>#', $search_content, $search_content_tag);
|
6249 |
+
if (isset ($search_content_tag [1])) {
|
6250 |
+
$search_content = $search_content_tag [1];
|
6251 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6252 |
}
|
6253 |
+
|
6254 |
+
if (stripos ($search_content, $element_text)) {
|
6255 |
+
$check = true;
|
6256 |
+
break;
|
6257 |
}
|
6258 |
+
}
|
6259 |
+
switch ($element_text_type) {
|
6260 |
+
case AI_CONTAIN:
|
6261 |
+
if ($check) {
|
6262 |
+
$special_element_offsets []= $element_offsets;
|
6263 |
+
}
|
6264 |
+
break;
|
6265 |
+
default:
|
6266 |
+
if (!$check) {
|
6267 |
+
$special_element_offsets []= $element_offsets;
|
6268 |
+
}
|
6269 |
+
break;
|
6270 |
+
}
|
6271 |
+
} else {
|
6272 |
+
$special_element_offsets []= $element_offsets;
|
6273 |
+
}
|
6274 |
+
}
|
6275 |
}
|
6276 |
}
|
6277 |
+
|
6278 |
+
if ($check_only_tag_attributes) {
|
6279 |
+
array_shift ($special_elements);
|
6280 |
+
if (count ($special_elements) == 0) break;
|
6281 |
+
|
6282 |
+
if ($special_elements [0][0][1] == '/') {
|
6283 |
+
// Closing tag is next
|
6284 |
+
array_shift ($special_elements);
|
6285 |
+
}
|
6286 |
+
elseif ($special_elements [count ($special_elements) - 1][0][1] == '/') {
|
6287 |
+
// Closing tag is last
|
6288 |
+
array_pop ($special_elements);
|
6289 |
+
}
|
6290 |
+
else break; // Invalid tags
|
6291 |
+
}
|
6292 |
+
|
6293 |
+
} while ($check_only_tag_attributes && count ($special_elements) >= 2);
|
6294 |
}
|
6295 |
|
6296 |
$inside_special_element = array ();
|
6498 |
|
6499 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
6500 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
6501 |
+
if ($index + 1 < $offset_value) continue;
|
6502 |
if (($index + 1 - $offset_value) % $mod_value == 0) $new_positions []= $index;
|
6503 |
}
|
6504 |
}
|
6533 |
|
6534 |
if (is_numeric ($mod_value) && $mod_value > 0 && is_numeric ($offset_value)) {
|
6535 |
foreach ($paragraph_positions as $index => $paragraph_position) {
|
6536 |
+
if ($index + 1 < $offset_value) continue;
|
6537 |
if (($index + 1 - $offset_value) % $mod_value == 0) $positions []= $index;
|
6538 |
}
|
6539 |
}
|
6776 |
$direction = AI_ABOVE;
|
6777 |
$checks = $max_checks;
|
6778 |
$position = $saved_position;
|
6779 |
+
$ai_last_check = AI_CHECK_AD_ABOVE;
|
6780 |
// Already at the top - do not insert
|
6781 |
if ($position == 0) {
|
6782 |
$failed_clearance_positions [$positions [$position_index]] = $ai_last_check;
|
8251 |
$code = '<style>
|
8252 |
';
|
8253 |
$display_inline = false;
|
8254 |
+
|
8255 |
+
$viewport_data = array ();
|
8256 |
+
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
8257 |
$viewport_name = get_viewport_name ($viewport);
|
8258 |
$viewport_width = get_viewport_width ($viewport);
|
8259 |
+
if ($viewport_name != '') {
|
8260 |
+
$viewport_data []= array ('index' => $viewport, 'name' => $viewport_name, 'width' => $viewport_width);
|
8261 |
+
}
|
8262 |
+
}
|
8263 |
+
|
8264 |
+
usort ($viewport_data, 'ai_compare_viewport');
|
8265 |
+
$viewport_data = array_reverse ($viewport_data);
|
8266 |
|
8267 |
+
// for ($viewport = 6; $viewport >= 1; $viewport --) {
|
8268 |
+
foreach ($viewport_data as $index => $viewport) {
|
8269 |
+
$viewport_name = $viewport ['name'];
|
8270 |
+
$viewport_width = $viewport ['width'];
|
8271 |
|
8272 |
+
if (!isset ($data ['adsense-viewports'][$index])) continue;
|
8273 |
+
|
8274 |
+
$adsense_width = $data ['adsense-viewports'][$viewport ['index'] - 1]['width'];
|
8275 |
+
$adsense_height = $data ['adsense-viewports'][$viewport ['index'] - 1]['height'];
|
8276 |
|
8277 |
if ($viewport_name != '') {
|
8278 |
if ($adsense_width > 0 && $adsense_height > 0) {
|
8413 |
$style = preg_match ("#<style>(.+?)</style>#s", $code, $style_match);
|
8414 |
$style_lines = explode ("\n", trim ($style_match [1]));
|
8415 |
|
8416 |
+
|
8417 |
+
$viewport_data = array ();
|
8418 |
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
8419 |
$viewport_name = get_viewport_name ($viewport);
|
8420 |
$viewport_width = get_viewport_width ($viewport);
|
8421 |
+
if ($viewport_name != '') {
|
8422 |
+
$viewport_data []= array ('index' => $viewport, 'name' => $viewport_name, 'width' => $viewport_width);
|
8423 |
+
}
|
8424 |
+
}
|
8425 |
+
|
8426 |
+
usort ($viewport_data, 'ai_compare_viewport');
|
8427 |
+
$viewport_data = array_reverse ($viewport_data);
|
8428 |
+
|
8429 |
+
$sizes = array ();
|
8430 |
+
$viewport_widths = array ();
|
8431 |
+
$viewport_indexes = array ();
|
8432 |
+
foreach ($viewport_data as $index => $viewport) {
|
8433 |
+
$viewport_name = $viewport ['name'];
|
8434 |
+
$viewport_width = $viewport ['width'];
|
8435 |
+
$viewport_index = $viewport ['index'];
|
8436 |
if ($viewport_name != '') {
|
8437 |
$viewport_widths [] = $viewport_width;
|
8438 |
+
$viewport_indexes [] = $viewport_index;
|
8439 |
$sizes []= array (0 => '', 1 => '');
|
8440 |
}
|
8441 |
}
|
|
|
8442 |
|
8443 |
if (count ($style_lines) == count ($sizes)) {
|
8444 |
foreach ($style_lines as $index => $style_line) {
|
8445 |
+
$viewport_index = $viewport_indexes [$index] - 1;
|
8446 |
+
|
8447 |
if (strpos ($style_line, $viewport_class) !== false) {
|
8448 |
|
8449 |
$min_width = preg_match ("/min-width\s*:\s*(\d+)px/", $style_line, $min_width_match);
|
8459 |
$style_height = preg_match ("/height\s*:\s*(\d+)px/", $style_line, $height_match);
|
8460 |
$adsense_height = $style_height ? $height_match [1] : '';
|
8461 |
|
8462 |
+
$sizes [$viewport_index] = array (0 => $adsense_width, 1 => $adsense_height);
|
8463 |
}
|
8464 |
|
8465 |
+
} else $sizes [$viewport_index] = array ('', '');
|
8466 |
}
|
|
|
8467 |
}
|
8468 |
|
8469 |
$data ['adsense-sizes'] = $sizes;
|
constants.php
CHANGED
@@ -31,7 +31,7 @@ if (!defined( 'AD_INSERTER_NAME'))
|
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
-
define ('AD_INSERTER_VERSION', '2.6.
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
@@ -70,6 +70,7 @@ define ('AI_OPTION_PROCESS_PHP', 'process_php');
|
|
70 |
define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
|
71 |
define ('AI_OPTION_SHOW_LABEL', 'show_label');
|
72 |
define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
|
|
|
73 |
define ('AI_OPTION_MANUAL_LOADING', 'manual_loading');
|
74 |
define ('AI_OPTION_IFRAME', 'iframe');
|
75 |
define ('AI_OPTION_IFRAME_WIDTH', 'iframe_width');
|
@@ -82,6 +83,7 @@ define ('AI_OPTION_ENABLE_404', 'enable_404');
|
|
82 |
define ('AI_OPTION_DISABLE_CACHING', 'disable_caching');
|
83 |
define ('AI_OPTION_MAX_PAGE_BLOCKS_ENABLED', 'max_page_blocks');
|
84 |
define ('AI_OPTION_ONLY_IN_THE_LOOP', 'only_in_the_loop');
|
|
|
85 |
define ('AI_OPTION_BLOCK_NAME', 'name');
|
86 |
define ('AI_OPTION_AUTOMATIC_INSERTION', 'display_type');
|
87 |
define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
|
@@ -95,6 +97,7 @@ define ('AI_OPTION_COUNT_INSIDE', 'count_inside');
|
|
95 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS', 'count_inside_el');
|
96 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN','count_inside_el_contain');
|
97 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT', 'count_inside_el_text');
|
|
|
98 |
define ('AI_OPTION_MIN_WORDS', 'min_words');
|
99 |
define ('AI_OPTION_MAX_WORDS', 'max_words');
|
100 |
define ('AI_OPTION_MIN_PARAGRAPH_WORDS', 'min_paragraph_words');
|
@@ -939,9 +942,9 @@ define ('AI_ADB_CONTENT_DELETE_BEGIN', 'ai-adb-delete-begin');
|
|
939 |
define ('AI_ADB_CONTENT_DELETE_END', 'ai-adb-delete-end');
|
940 |
define ('AI_ADB_CONTENT_REPLACE_BEGIN', 'ai-adb-replace-begin');
|
941 |
define ('AI_ADB_CONTENT_REPLACE_END', 'ai-adb-replace-end');
|
942 |
-
define ('AI_BASIC_ADB_OVERLAY_CSS', "position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99998; user-select: none;");
|
943 |
define ('AI_DEFAULT_ADB_OVERLAY_CSS', "background: #000; opacity: 0.85;");
|
944 |
-
define ('AI_BASIC_ADB_MESSAGE_CSS', "position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 99999; background: #000; color: #fff; user-select: none;");
|
945 |
define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
|
946 |
//define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
|
947 |
define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
|
@@ -962,6 +965,7 @@ define ('DEFAULT_VIEWPORT_WIDTH_3', 0);
|
|
962 |
|
963 |
define ('AI_MARKER_START', '%##');
|
964 |
define ('AI_MARKER_END', '##%');
|
|
|
965 |
|
966 |
define ('CONTENT_HOOK_BLOCKS', 'content_hook');
|
967 |
define ('EXCERPT_HOOK_BLOCKS', 'excerpt_hook');
|
@@ -1089,7 +1093,7 @@ define ('AI_WP_AMP_PAGE', 17);
|
|
1089 |
define ('AI_INSTALL_TIME_DIFFERENCE', 18);
|
1090 |
define ('AI_DAYS_SINCE_INSTAL', 19);
|
1091 |
define ('AI_TAGS', 20);
|
1092 |
-
define ('
|
1093 |
define ('AI_WORD_COUNT', 22);
|
1094 |
define ('AI_ADB_SHORTCODE_ACTION', 23);
|
1095 |
define ('AI_SHORTCODES', 24);
|
@@ -1137,6 +1141,7 @@ define ('AI_HEAD', 66);
|
|
1137 |
define ('AI_DISABLED_BLOCKS', 67);
|
1138 |
define ('AI_BODY_STYLE', 68);
|
1139 |
define ('AI_COUNT_REPEAT', 69);
|
|
|
1140 |
|
1141 |
define ('AI_CONTEXT_NONE', 0);
|
1142 |
define ('AI_CONTEXT_CONTENT', 1);
|
31 |
define ('AD_INSERTER_NAME', 'Ad Inserter');
|
32 |
|
33 |
if (!defined( 'AD_INSERTER_VERSION'))
|
34 |
+
define ('AD_INSERTER_VERSION', '2.6.9');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
70 |
define ('AI_OPTION_DISABLE_INSERTION', 'disable_insertion');
|
71 |
define ('AI_OPTION_SHOW_LABEL', 'show_label');
|
72 |
define ('AI_OPTION_LAZY_LOADING', 'lazy_loading');
|
73 |
+
define ('AI_OPTION_PROTECTED', 'protected');
|
74 |
define ('AI_OPTION_MANUAL_LOADING', 'manual_loading');
|
75 |
define ('AI_OPTION_IFRAME', 'iframe');
|
76 |
define ('AI_OPTION_IFRAME_WIDTH', 'iframe_width');
|
83 |
define ('AI_OPTION_DISABLE_CACHING', 'disable_caching');
|
84 |
define ('AI_OPTION_MAX_PAGE_BLOCKS_ENABLED', 'max_page_blocks');
|
85 |
define ('AI_OPTION_ONLY_IN_THE_LOOP', 'only_in_the_loop');
|
86 |
+
define ('AI_OPTION_EMBED_JS_CODE', 'embed_js');
|
87 |
define ('AI_OPTION_BLOCK_NAME', 'name');
|
88 |
define ('AI_OPTION_AUTOMATIC_INSERTION', 'display_type');
|
89 |
define ('AI_OPTION_PARAGRAPH_NUMBER', 'paragraph_number');
|
97 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS', 'count_inside_el');
|
98 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_CONTAIN','count_inside_el_contain');
|
99 |
define ('AI_OPTION_COUNT_INSIDE_ELEMENTS_TEXT', 'count_inside_el_text');
|
100 |
+
define ('AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES', 'check_only_tag_attr');
|
101 |
define ('AI_OPTION_MIN_WORDS', 'min_words');
|
102 |
define ('AI_OPTION_MAX_WORDS', 'max_words');
|
103 |
define ('AI_OPTION_MIN_PARAGRAPH_WORDS', 'min_paragraph_words');
|
942 |
define ('AI_ADB_CONTENT_DELETE_END', 'ai-adb-delete-end');
|
943 |
define ('AI_ADB_CONTENT_REPLACE_BEGIN', 'ai-adb-replace-begin');
|
944 |
define ('AI_ADB_CONTENT_REPLACE_END', 'ai-adb-replace-end');
|
945 |
+
define ('AI_BASIC_ADB_OVERLAY_CSS', "position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99998; user-select: none; cursor: pointer;");
|
946 |
define ('AI_DEFAULT_ADB_OVERLAY_CSS', "background: #000; opacity: 0.85;");
|
947 |
+
define ('AI_BASIC_ADB_MESSAGE_CSS', "position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 99999; background: #000; color: #fff; user-select: none; cursor: pointer;");
|
948 |
define ('AI_DEFAULT_ADB_MESSAGE_CSS', "width: 300px; padding: 10px; border: 5px solid #f00; border-radius: 5px;");
|
949 |
//define ('AI_DEFAULT_ADB_MESSAGE', "<p><strong>Blocked because of Ad Blocker</strong></p>\n<p>It seems that you are using some ad blocking software which is preventing the page from fully loading. Please whitelist this website or disable ad blocking software.</p>");
|
950 |
define ('AI_DEFAULT_ADB_ACTION', AI_ADB_ACTION_NONE);
|
965 |
|
966 |
define ('AI_MARKER_START', '%##');
|
967 |
define ('AI_MARKER_END', '##%');
|
968 |
+
define ('AI_CONTENT_MARKER', 'AI CONTENT END');
|
969 |
|
970 |
define ('CONTENT_HOOK_BLOCKS', 'content_hook');
|
971 |
define ('EXCERPT_HOOK_BLOCKS', 'excerpt_hook');
|
1093 |
define ('AI_INSTALL_TIME_DIFFERENCE', 18);
|
1094 |
define ('AI_DAYS_SINCE_INSTAL', 19);
|
1095 |
define ('AI_TAGS', 20);
|
1096 |
+
define ('AI_VIEWPORT_WIDTHS', 21);
|
1097 |
define ('AI_WORD_COUNT', 22);
|
1098 |
define ('AI_ADB_SHORTCODE_ACTION', 23);
|
1099 |
define ('AI_SHORTCODES', 24);
|
1141 |
define ('AI_DISABLED_BLOCKS', 67);
|
1142 |
define ('AI_BODY_STYLE', 68);
|
1143 |
define ('AI_COUNT_REPEAT', 69);
|
1144 |
+
define ('AI_VIEWPORT_INDEXES', 70);
|
1145 |
|
1146 |
define ('AI_CONTEXT_NONE', 0);
|
1147 |
define ('AI_CONTEXT_CONTENT', 1);
|
css/ai-settings.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
#ai-data {
|
2 |
-
font-family: "2.6.
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
1 |
#ai-data {
|
2 |
+
font-family: "2.6.9"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
includes/js/ai-adb.js
CHANGED
@@ -128,6 +128,159 @@ function ai_adb_process_content () {
|
|
128 |
}(jQuery));
|
129 |
}
|
130 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
ai_adb_detection_type_log = function (n) {
|
132 |
var type = ai_adb_detection_type (n);
|
133 |
var ai_adb_events = jQuery('#ai-adb-events');
|
@@ -142,7 +295,7 @@ ai_adb_detection_type_log = function (n) {
|
|
142 |
|
143 |
ai_adb_detection_type = function (n) {
|
144 |
|
145 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
146 |
// var ai_adb_debugging = false;
|
147 |
|
148 |
if (ai_adb_debugging) {
|
@@ -204,7 +357,7 @@ var ai_disable_processing = function (element) {
|
|
204 |
|
205 |
var ai_adb_detected_actions = function(n) {
|
206 |
|
207 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
208 |
// var ai_adb_debugging = false;
|
209 |
|
210 |
if (ai_adb_debugging && n == 0) console.log ('');
|
@@ -213,95 +366,100 @@ var ai_adb_detected_actions = function(n) {
|
|
213 |
if (!ai_adb_active) {
|
214 |
ai_adb_active = true;
|
215 |
|
|
|
|
|
216 |
(function ($) {
|
217 |
|
218 |
$(window).ready(function () {
|
219 |
|
220 |
-
if (ai_adb_debugging) console.log ("AI AD BLOCKING block actions");
|
221 |
|
222 |
-
var code_inserted = false;
|
223 |
|
224 |
-
do {
|
225 |
-
var code_insertion = false;
|
226 |
|
227 |
-
// Don't use data () as the value will be cached - wrong value for tracking
|
228 |
-
$(".ai-adb-hide").each (function () {
|
229 |
-
$(this).css ({"display": "none", "visibility": "hidden"});
|
230 |
|
231 |
-
$(this).removeClass ('ai-adb-hide');
|
232 |
|
233 |
-
// Disable tracking
|
234 |
-
var wrapping_div = $(this).closest ('div[data-ai]');
|
235 |
-
if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
236 |
-
var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
237 |
-
if (typeof data !== "undefined" && data.constructor === Array) {
|
238 |
-
data [1] = "";
|
239 |
|
240 |
-
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
241 |
|
242 |
-
wrapping_div.attr ("data-ai", b64e (JSON.stringify (data)));
|
243 |
-
}
|
244 |
-
}
|
245 |
|
246 |
-
ai_disable_processing ($(this));
|
247 |
|
248 |
-
if (ai_adb_debugging) {
|
249 |
-
var debug_info = $(this).data ("ai-debug");
|
250 |
-
console.log ("AI AD BLOCKING HIDE", typeof debug_info != "undefined" ? debug_info : "");
|
251 |
-
}
|
252 |
-
});
|
253 |
|
254 |
-
// after hide to update tracking data on replace
|
255 |
-
// Don't use data () as the value will be cached - wrong value for tracking
|
256 |
-
$(".ai-adb-show").each (function () {
|
257 |
-
$(this).css ({"display": "block", "visibility": "visible"});
|
258 |
|
259 |
-
$(this).removeClass ('ai-adb-show');
|
260 |
|
261 |
-
if (typeof $(this).data ('code') != 'undefined') {
|
262 |
-
var adb_code = b64d ($(this).data ('code'));
|
263 |
|
264 |
-
if (ai_adb_debugging) console.log ('AI AD BLOCKING SHOW INSERT CODE');
|
265 |
-
if (ai_adb_debugging) console.log ('');
|
266 |
|
267 |
-
$(this).append (adb_code);
|
268 |
|
269 |
-
code_insertion = true;
|
270 |
-
code_inserted = true;
|
271 |
|
272 |
-
// Process rotations to set versions before tracking data is set
|
273 |
-
if (typeof ai_process_elements == 'function') {
|
274 |
-
ai_process_elements ();
|
275 |
-
}
|
276 |
-
}
|
277 |
|
278 |
-
var tracking_data = $(this).attr ('data-ai-tracking');
|
279 |
-
if (typeof tracking_data != 'undefined') {
|
280 |
-
var wrapping_div = $(this).closest ('div[data-ai]');
|
281 |
-
if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
282 |
-
if ($(this).hasClass ('ai-no-tracking')) {
|
283 |
-
var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
284 |
-
if (typeof data !== "undefined" && data.constructor === Array) {
|
285 |
-
data [1] = "";
|
286 |
-
tracking_data = b64e (JSON.stringify (data));
|
287 |
-
}
|
288 |
-
}
|
289 |
|
290 |
-
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', b64d (tracking_data));
|
291 |
|
292 |
-
wrapping_div.attr ("data-ai", tracking_data);
|
293 |
-
}
|
294 |
-
}
|
295 |
|
296 |
-
if (ai_adb_debugging) {
|
297 |
-
var debug_info = $(this).data ("ai-debug");
|
298 |
-
console.log ("AI AD BLOCKING SHOW", typeof debug_info != "undefined" ? debug_info : "");
|
299 |
-
}
|
300 |
-
});
|
301 |
-
} while (code_insertion);
|
302 |
|
303 |
-
setTimeout (ai_adb_process_content, 10);
|
304 |
|
|
|
|
|
|
|
305 |
// if (code_inserted && typeof ai_process_elements == 'function') {
|
306 |
// setTimeout (ai_process_elements, 20);
|
307 |
// }
|
@@ -355,11 +513,11 @@ var ai_adb_detected_actions = function(n) {
|
|
355 |
ai_adb_overlay.click (function () {
|
356 |
$(this).remove();
|
357 |
ai_adb_message_window.remove();
|
358 |
-
})
|
359 |
ai_adb_message_window.click (function () {
|
360 |
$(this).remove();
|
361 |
ai_adb_overlay.remove();
|
362 |
-
})
|
363 |
window.onkeydown = function( event ) {
|
364 |
if (event.keyCode === 27 ) {
|
365 |
ai_adb_overlay.click ();
|
@@ -370,11 +528,18 @@ var ai_adb_detected_actions = function(n) {
|
|
370 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING MESSAGE click detection installed");
|
371 |
|
372 |
} else {
|
373 |
-
//
|
|
|
|
|
|
|
374 |
}
|
375 |
|
376 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING MESSAGE");
|
377 |
-
|
|
|
|
|
|
|
|
|
378 |
break;
|
379 |
case 2:
|
380 |
if (ai_adb_redirection_url != "") {
|
@@ -408,8 +573,6 @@ var ai_adb_detected_actions = function(n) {
|
|
408 |
}
|
409 |
|
410 |
}(jQuery));
|
411 |
-
|
412 |
-
jQuery(b64d ("Ym9keQ==")).attr (b64d ("ZGF0YS1hb3MtbWFza2luZw=="), b64d ("bWFzaw=="));
|
413 |
}
|
414 |
}
|
415 |
|
@@ -417,7 +580,7 @@ var ai_adb_detected_actions = function(n) {
|
|
417 |
var ai_adb_undetected = function(n) {
|
418 |
ai_adb_counter ++;
|
419 |
|
420 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
421 |
// var ai_adb_debugging = false;
|
422 |
|
423 |
// if (ai_adb_debugging && n == 1) console.log ('');
|
@@ -426,40 +589,42 @@ var ai_adb_undetected = function(n) {
|
|
426 |
if (!ai_adb_active && ai_adb_counter == 4) {
|
427 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
|
428 |
|
429 |
-
jQuery(b64d ("Ym9keQ==")).attr (
|
430 |
|
431 |
-
|
432 |
-
|
433 |
-
|
|
|
|
|
|
|
|
|
434 |
|
435 |
-
if (jQuery(this).outerHeight () == 0 && jQuery(this).closest ('.ai-adb-show').length == 0) {
|
436 |
-
// Top level (not nested) block
|
437 |
-
var wrapper = jQuery(this).closest ('div[data-ai]');
|
438 |
-
if (typeof wrapper.attr ("data-ai") != "undefined") {
|
439 |
-
var data = JSON.parse (b64d (wrapper.attr ("data-ai")));
|
440 |
-
if (typeof data !== "undefined" && data.constructor === Array) {
|
441 |
-
data [1] = "";
|
442 |
|
443 |
-
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING DISABLED: ", b64d (wrapper.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
444 |
|
445 |
-
wrapper.attr ("data-ai", b64e (JSON.stringify (data)));
|
446 |
|
447 |
-
// Hide block (wrapping div with margin)
|
448 |
-
wrapper.addClass ('ai-viewport-0').css ("display", "none");
|
449 |
-
}
|
450 |
-
}
|
451 |
-
|
452 |
-
}
|
453 |
-
});
|
454 |
|
455 |
-
|
456 |
-
|
457 |
-
});
|
458 |
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
|
|
|
|
|
463 |
// var redirected_page = false;
|
464 |
// if (ai_adb_redirection_url.toLowerCase().substring (0, 4) == "http") {
|
465 |
// if (window.location.href == ai_adb_redirection_url) var redirected_page = true;
|
@@ -486,7 +651,7 @@ if (AI_DBG_AI_DEBUG_AD_BLOCKING) jQuery (document).ready (function () {ai_adb_de
|
|
486 |
jQuery (document).ready (function ($) {
|
487 |
$(window).ready (function () {
|
488 |
|
489 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
490 |
// var ai_adb_debugging = false;
|
491 |
|
492 |
// var ai_debugging_active = typeof ai_adb_fe_dbg !== 'undefined';
|
@@ -555,7 +720,7 @@ jQuery (document).ready (function ($) {
|
|
555 |
});
|
556 |
|
557 |
function ai_adb_get_script (ai_adb_script, ai_adb_action) {
|
558 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
559 |
// var ai_adb_debugging = false;
|
560 |
|
561 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING loading script", ai_adb_script);
|
@@ -598,7 +763,7 @@ function ai_adb_get_script (ai_adb_script, ai_adb_action) {
|
|
598 |
};
|
599 |
|
600 |
jQuery (window).on ('load', function () {
|
601 |
-
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; //
|
602 |
// var ai_adb_debugging = false;
|
603 |
|
604 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
|
128 |
}(jQuery));
|
129 |
}
|
130 |
|
131 |
+
function ai_adb_process_blocks (element) {
|
132 |
+
(function ($) {
|
133 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 2
|
134 |
+
// var ai_adb_debugging = false;
|
135 |
+
|
136 |
+
if (typeof element == 'undefined') {
|
137 |
+
element = $('body');
|
138 |
+
if (ai_adb_debugging) console.log ('');
|
139 |
+
}
|
140 |
+
|
141 |
+
var ai_adb_data = $(b64d ("Ym9keQ==")).attr (AI_ADB_ATTR_NAME);
|
142 |
+
if (typeof ai_adb_data === "string") {
|
143 |
+
var ai_adb_active = ai_adb_data == b64d ("bWFzaw==");
|
144 |
+
} else {
|
145 |
+
var ai_adb_actives = null;
|
146 |
+
}
|
147 |
+
|
148 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING block actions:", ai_adb_active, $(element).prop ("tagName") + '.' + $(element).attr ('class'));
|
149 |
+
|
150 |
+
if (typeof ai_adb_data === "string" && typeof ai_adb_active === "boolean") {
|
151 |
+
if (ai_adb_active) {
|
152 |
+
|
153 |
+
var code_inserted = false;
|
154 |
+
|
155 |
+
do {
|
156 |
+
var code_insertion = false;
|
157 |
+
|
158 |
+
// Don't use data () as the value will be cached - wrong value for tracking
|
159 |
+
$(".ai-adb-hide", element).each (function () {
|
160 |
+
$(this).css ({"display": "none", "visibility": "hidden"});
|
161 |
+
|
162 |
+
$(this).removeClass ('ai-adb-hide');
|
163 |
+
|
164 |
+
// Disable tracking
|
165 |
+
var wrapping_div = $(this).closest ('div[data-ai]');
|
166 |
+
if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
167 |
+
var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
168 |
+
if (typeof data !== "undefined" && data.constructor === Array) {
|
169 |
+
data [1] = "";
|
170 |
+
|
171 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
172 |
+
|
173 |
+
wrapping_div.attr ("data-ai", b64e (JSON.stringify (data)));
|
174 |
+
}
|
175 |
+
}
|
176 |
+
|
177 |
+
ai_disable_processing ($(this));
|
178 |
+
|
179 |
+
if (ai_adb_debugging) {
|
180 |
+
var debug_info = $(this).data ("ai-debug");
|
181 |
+
console.log ("AI AD BLOCKING HIDE", typeof debug_info != "undefined" ? debug_info : "");
|
182 |
+
}
|
183 |
+
});
|
184 |
+
|
185 |
+
// after hide to update tracking data on replace
|
186 |
+
// Don't use data () as the value will be cached - wrong value for tracking
|
187 |
+
$(".ai-adb-show", element).each (function () {
|
188 |
+
$(this).css ({"display": "block", "visibility": "visible"});
|
189 |
+
|
190 |
+
$(this).removeClass ('ai-adb-show');
|
191 |
+
|
192 |
+
if (typeof $(this).data ('code') != 'undefined') {
|
193 |
+
var adb_code = b64d ($(this).data ('code'));
|
194 |
+
|
195 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING SHOW INSERT CODE');
|
196 |
+
if (ai_adb_debugging) console.log ('');
|
197 |
+
|
198 |
+
$(this).append (adb_code);
|
199 |
+
|
200 |
+
code_insertion = true;
|
201 |
+
code_inserted = true;
|
202 |
+
|
203 |
+
// Process rotations to set versions before tracking data is set
|
204 |
+
if (typeof ai_process_elements == 'function') {
|
205 |
+
ai_process_elements ();
|
206 |
+
}
|
207 |
+
}
|
208 |
+
|
209 |
+
var tracking_data = $(this).attr ('data-ai-tracking');
|
210 |
+
if (typeof tracking_data != 'undefined') {
|
211 |
+
var wrapping_div = $(this).closest ('div[data-ai]');
|
212 |
+
if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
213 |
+
if ($(this).hasClass ('ai-no-tracking')) {
|
214 |
+
var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
215 |
+
if (typeof data !== "undefined" && data.constructor === Array) {
|
216 |
+
data [1] = "";
|
217 |
+
tracking_data = b64e (JSON.stringify (data));
|
218 |
+
}
|
219 |
+
}
|
220 |
+
|
221 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', b64d (tracking_data));
|
222 |
+
|
223 |
+
wrapping_div.attr ("data-ai", tracking_data);
|
224 |
+
}
|
225 |
+
}
|
226 |
+
if (ai_adb_debugging) {
|
227 |
+
var debug_info = $(this).data ("ai-debug");
|
228 |
+
console.log ("AI AD BLOCKING SHOW", typeof debug_info != "undefined" ? debug_info : "");
|
229 |
+
}
|
230 |
+
});
|
231 |
+
} while (code_insertion);
|
232 |
+
|
233 |
+
setTimeout (function() {
|
234 |
+
if (typeof ai_process_impressions == 'function' && ai_tracking_finished == true) {
|
235 |
+
ai_process_impressions ();
|
236 |
+
}
|
237 |
+
if (typeof ai_install_click_trackers == 'function' && ai_tracking_finished == true) {
|
238 |
+
ai_install_click_trackers ();
|
239 |
+
}
|
240 |
+
}, 15);
|
241 |
+
|
242 |
+
setTimeout (ai_adb_process_content, 10);
|
243 |
+
} else {
|
244 |
+
// Prevent tracking if block was not displayed because of cookie
|
245 |
+
$(".ai-adb-hide", element).each (function () {
|
246 |
+
if (ai_adb_debugging) console.log ('AI ai-adb-hide', $(this), $(this).outerHeight (), $(this).closest ('.ai-adb-show').length);
|
247 |
+
|
248 |
+
$(this).removeClass ('ai-adb-hide');
|
249 |
+
|
250 |
+
if ($(this).outerHeight () == 0 && $(this).closest ('.ai-adb-show').length == 0) {
|
251 |
+
// Top level (not nested) block
|
252 |
+
var wrapper = $(this).closest ('div[data-ai]');
|
253 |
+
if (typeof wrapper.attr ("data-ai") != "undefined") {
|
254 |
+
var data = JSON.parse (b64d (wrapper.attr ("data-ai")));
|
255 |
+
if (typeof data !== "undefined" && data.constructor === Array) {
|
256 |
+
data [1] = "";
|
257 |
+
|
258 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING DISABLED: ", b64d (wrapper.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
259 |
+
|
260 |
+
wrapper.attr ("data-ai", b64e (JSON.stringify (data)));
|
261 |
+
|
262 |
+
// Hide block (wrapping div with margin)
|
263 |
+
wrapper.addClass ('ai-viewport-0').css ("display", "none");
|
264 |
+
}
|
265 |
+
}
|
266 |
+
|
267 |
+
}
|
268 |
+
});
|
269 |
+
|
270 |
+
$(".ai-adb-show", element).each (function () {
|
271 |
+
ai_disable_processing ($(this));
|
272 |
+
|
273 |
+
$(this).removeClass ('ai-adb-show');
|
274 |
+
|
275 |
+
if (ai_adb_debugging) console.log ('AI AD BLOCKING SHOW disable processing', $(this).prop ("tagName") + '.' + $(this).attr ('class'));
|
276 |
+
});
|
277 |
+
}
|
278 |
+
}
|
279 |
+
|
280 |
+
if (ai_adb_debugging) console.log ("AI AD BLOCKING block actions END");
|
281 |
+
}(jQuery));
|
282 |
+
}
|
283 |
+
|
284 |
ai_adb_detection_type_log = function (n) {
|
285 |
var type = ai_adb_detection_type (n);
|
286 |
var ai_adb_events = jQuery('#ai-adb-events');
|
295 |
|
296 |
ai_adb_detection_type = function (n) {
|
297 |
|
298 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 3
|
299 |
// var ai_adb_debugging = false;
|
300 |
|
301 |
if (ai_adb_debugging) {
|
357 |
|
358 |
var ai_adb_detected_actions = function(n) {
|
359 |
|
360 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 4
|
361 |
// var ai_adb_debugging = false;
|
362 |
|
363 |
if (ai_adb_debugging && n == 0) console.log ('');
|
366 |
if (!ai_adb_active) {
|
367 |
ai_adb_active = true;
|
368 |
|
369 |
+
jQuery(b64d ("Ym9keQ==")).attr (AI_ADB_ATTR_NAME, b64d ("bWFzaw=="));
|
370 |
+
|
371 |
(function ($) {
|
372 |
|
373 |
$(window).ready(function () {
|
374 |
|
375 |
+
// if (ai_adb_debugging) console.log ("AI AD BLOCKING block actions");
|
376 |
|
377 |
+
// var code_inserted = false;
|
378 |
|
379 |
+
// do {
|
380 |
+
// var code_insertion = false;
|
381 |
|
382 |
+
// // Don't use data () as the value will be cached - wrong value for tracking
|
383 |
+
// $(".ai-adb-hide").each (function () {
|
384 |
+
// $(this).css ({"display": "none", "visibility": "hidden"});
|
385 |
|
386 |
+
// $(this).removeClass ('ai-adb-hide');
|
387 |
|
388 |
+
// // Disable tracking
|
389 |
+
// var wrapping_div = $(this).closest ('div[data-ai]');
|
390 |
+
// if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
391 |
+
// var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
392 |
+
// if (typeof data !== "undefined" && data.constructor === Array) {
|
393 |
+
// data [1] = "";
|
394 |
|
395 |
+
// if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
396 |
|
397 |
+
// wrapping_div.attr ("data-ai", b64e (JSON.stringify (data)));
|
398 |
+
// }
|
399 |
+
// }
|
400 |
|
401 |
+
// ai_disable_processing ($(this));
|
402 |
|
403 |
+
// if (ai_adb_debugging) {
|
404 |
+
// var debug_info = $(this).data ("ai-debug");
|
405 |
+
// console.log ("AI AD BLOCKING HIDE", typeof debug_info != "undefined" ? debug_info : "");
|
406 |
+
// }
|
407 |
+
// });
|
408 |
|
409 |
+
// // after hide to update tracking data on replace
|
410 |
+
// // Don't use data () as the value will be cached - wrong value for tracking
|
411 |
+
// $(".ai-adb-show").each (function () {
|
412 |
+
// $(this).css ({"display": "block", "visibility": "visible"});
|
413 |
|
414 |
+
// $(this).removeClass ('ai-adb-show');
|
415 |
|
416 |
+
// if (typeof $(this).data ('code') != 'undefined') {
|
417 |
+
// var adb_code = b64d ($(this).data ('code'));
|
418 |
|
419 |
+
// if (ai_adb_debugging) console.log ('AI AD BLOCKING SHOW INSERT CODE');
|
420 |
+
// if (ai_adb_debugging) console.log ('');
|
421 |
|
422 |
+
// $(this).append (adb_code);
|
423 |
|
424 |
+
// code_insertion = true;
|
425 |
+
// code_inserted = true;
|
426 |
|
427 |
+
// // Process rotations to set versions before tracking data is set
|
428 |
+
// if (typeof ai_process_elements == 'function') {
|
429 |
+
// ai_process_elements ();
|
430 |
+
// }
|
431 |
+
// }
|
432 |
|
433 |
+
// var tracking_data = $(this).attr ('data-ai-tracking');
|
434 |
+
// if (typeof tracking_data != 'undefined') {
|
435 |
+
// var wrapping_div = $(this).closest ('div[data-ai]');
|
436 |
+
// if (typeof wrapping_div.attr ("data-ai") != "undefined") {
|
437 |
+
// if ($(this).hasClass ('ai-no-tracking')) {
|
438 |
+
// var data = JSON.parse (b64d (wrapping_div.attr ("data-ai")));
|
439 |
+
// if (typeof data !== "undefined" && data.constructor === Array) {
|
440 |
+
// data [1] = "";
|
441 |
+
// tracking_data = b64e (JSON.stringify (data));
|
442 |
+
// }
|
443 |
+
// }
|
444 |
|
445 |
+
// if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING ", b64d (wrapping_div.attr ("data-ai")), ' <= ', b64d (tracking_data));
|
446 |
|
447 |
+
// wrapping_div.attr ("data-ai", tracking_data);
|
448 |
+
// }
|
449 |
+
// }
|
450 |
|
451 |
+
// if (ai_adb_debugging) {
|
452 |
+
// var debug_info = $(this).data ("ai-debug");
|
453 |
+
// console.log ("AI AD BLOCKING SHOW", typeof debug_info != "undefined" ? debug_info : "");
|
454 |
+
// }
|
455 |
+
// });
|
456 |
+
// } while (code_insertion);
|
457 |
|
458 |
+
// setTimeout (ai_adb_process_content, 10);
|
459 |
|
460 |
+
ai_adb_process_blocks ();
|
461 |
+
|
462 |
+
|
463 |
// if (code_inserted && typeof ai_process_elements == 'function') {
|
464 |
// setTimeout (ai_process_elements, 20);
|
465 |
// }
|
513 |
ai_adb_overlay.click (function () {
|
514 |
$(this).remove();
|
515 |
ai_adb_message_window.remove();
|
516 |
+
});
|
517 |
ai_adb_message_window.click (function () {
|
518 |
$(this).remove();
|
519 |
ai_adb_overlay.remove();
|
520 |
+
});
|
521 |
window.onkeydown = function( event ) {
|
522 |
if (event.keyCode === 27 ) {
|
523 |
ai_adb_overlay.click ();
|
528 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING MESSAGE click detection installed");
|
529 |
|
530 |
} else {
|
531 |
+
// AiCookies.remove (ai_adb_act_cookie_name, {path: "/" });
|
532 |
+
|
533 |
+
ai_adb_overlay.find ('[style*="cursor"]').css ("cursor", "no-drop");
|
534 |
+
ai_adb_message_window.find ('[style*="cursor"]').css ("cursor", "no-drop");
|
535 |
}
|
536 |
|
537 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING MESSAGE");
|
538 |
+
|
539 |
+
var body_children = $(b64d ("Ym9keQ==")).children ();
|
540 |
+
body_children.eq (Math.floor (Math.random() * body_children.length)).after (ai_adb_overlay);
|
541 |
+
body_children.eq (Math.floor (Math.random() * body_children.length)).after (ai_adb_message_window);
|
542 |
+
|
543 |
break;
|
544 |
case 2:
|
545 |
if (ai_adb_redirection_url != "") {
|
573 |
}
|
574 |
|
575 |
}(jQuery));
|
|
|
|
|
576 |
}
|
577 |
}
|
578 |
|
580 |
var ai_adb_undetected = function(n) {
|
581 |
ai_adb_counter ++;
|
582 |
|
583 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 5
|
584 |
// var ai_adb_debugging = false;
|
585 |
|
586 |
// if (ai_adb_debugging && n == 1) console.log ('');
|
589 |
if (!ai_adb_active && ai_adb_counter == 4) {
|
590 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING NOT DETECTED");
|
591 |
|
592 |
+
jQuery(b64d ("Ym9keQ==")).attr (AI_ADB_ATTR_NAME, b64d ("Y2xlYXI="));
|
593 |
|
594 |
+
ai_dummy = 11; // Do not remove - to prevent optimization
|
595 |
+
window.AI_ADB_STATUS_MESSAGE=4; // Check replacement code {}
|
596 |
+
ai_dummy = 14; // Do not remove - to prevent optimization
|
597 |
+
|
598 |
+
// // Prevent tracking if block was not displayed because of cookie
|
599 |
+
// jQuery(".ai-adb-hide").each (function () {
|
600 |
+
// if (ai_adb_debugging) console.log ('AI ai-adb-hide', jQuery(this), jQuery(this).outerHeight (), jQuery(this).closest ('.ai-adb-show').length);
|
601 |
|
602 |
+
// if (jQuery(this).outerHeight () == 0 && jQuery(this).closest ('.ai-adb-show').length == 0) {
|
603 |
+
// // Top level (not nested) block
|
604 |
+
// var wrapper = jQuery(this).closest ('div[data-ai]');
|
605 |
+
// if (typeof wrapper.attr ("data-ai") != "undefined") {
|
606 |
+
// var data = JSON.parse (b64d (wrapper.attr ("data-ai")));
|
607 |
+
// if (typeof data !== "undefined" && data.constructor === Array) {
|
608 |
+
// data [1] = "";
|
609 |
|
610 |
+
// if (ai_adb_debugging) console.log ("AI AD BLOCKING TRACKING DISABLED: ", b64d (wrapper.attr ("data-ai")), ' <= ', JSON.stringify (data));
|
611 |
|
612 |
+
// wrapper.attr ("data-ai", b64e (JSON.stringify (data)));
|
613 |
|
614 |
+
// // Hide block (wrapping div with margin)
|
615 |
+
// wrapper.addClass ('ai-viewport-0').css ("display", "none");
|
616 |
+
// }
|
617 |
+
// }
|
|
|
|
|
|
|
618 |
|
619 |
+
// }
|
620 |
+
// });
|
|
|
621 |
|
622 |
+
// jQuery(".ai-adb-show").each (function () {
|
623 |
+
// ai_disable_processing (jQuery (this));
|
624 |
+
// });
|
625 |
|
626 |
+
ai_adb_process_blocks ();
|
627 |
+
|
628 |
// var redirected_page = false;
|
629 |
// if (ai_adb_redirection_url.toLowerCase().substring (0, 4) == "http") {
|
630 |
// if (window.location.href == ai_adb_redirection_url) var redirected_page = true;
|
651 |
jQuery (document).ready (function ($) {
|
652 |
$(window).ready (function () {
|
653 |
|
654 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 6
|
655 |
// var ai_adb_debugging = false;
|
656 |
|
657 |
// var ai_debugging_active = typeof ai_adb_fe_dbg !== 'undefined';
|
720 |
});
|
721 |
|
722 |
function ai_adb_get_script (ai_adb_script, ai_adb_action) {
|
723 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 7
|
724 |
// var ai_adb_debugging = false;
|
725 |
|
726 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING loading script", ai_adb_script);
|
763 |
};
|
764 |
|
765 |
jQuery (window).on ('load', function () {
|
766 |
+
var ai_adb_debugging = typeof ai_debugging !== 'undefined'; // 8
|
767 |
// var ai_adb_debugging = false;
|
768 |
|
769 |
if (ai_adb_debugging) console.log ("AI AD BLOCKING window load");
|
includes/js/ai-adb.min.js
CHANGED
@@ -1,21 +1,22 @@
|
|
1 |
var ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url="AI_ADB_REDIRECTION_PAGE";
|
2 |
-
function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var
|
3 |
-
e=!1;else if(e){var
|
4 |
-
(a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var
|
5 |
-
f=!1;else if(f){if(0!=
|
6 |
-
|
|
|
|
|
|
|
|
|
7 |
var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-manual").removeClass("ai-manual");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=
|
8 |
-
function(a){ai_adb_active||(ai_adb_active=!0,
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
"undefined"
|
14 |
-
|
15 |
-
|
16 |
-
jQuery(
|
17 |
-
a
|
18 |
-
|
19 |
-
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function c(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}setTimeout(function(){var b="undefined"!==typeof ai_adb_fe_dbg;jQuery(b64d("I2FpLWFkYi1hZHM=")).length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?a():ai_adb_get_script("ads",
|
20 |
-
a));jQuery(b64d("I2FpLWFkYi1nYQ==")).length&&("function"==typeof ga&&30<ga.toString().length||"function"==typeof __gaTracker&&30<__gaTracker.toString().length?ai_adb_undetected(5):ai_adb_active&&!b||ai_adb_detected(5));jQuery(b64d("I2FpLWFkYi1zcG9uc29ycw==")).length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?ai_adb_get_script("sponsors",c):c());var d=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVy"),e=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVyIGltZw==");jQuery(d).length&&0<jQuery(e).length&&(0===jQuery(e).outerHeight()?
|
21 |
-
(!ai_adb_active||b)&&ai_adb_detected(3):ai_adb_undetected(3),jQuery(e).remove());jQuery(b64d("I2FpLWFkYi1tbg==")).length&&("object"==typeof _mNDetails&&400<JSON.stringify(_mNDetails).length?ai_adb_undetected(6):ai_adb_active&&!b||ai_adb_detected(6))},120)});
|
1 |
var ai_adb_active=!1,ai_adb_counter=0,ai_adb_act_cookie_name="aiADB",ai_adb_pgv_cookie_name="aiADB_PV",ai_adb_page_redirection_cookie_name="aiADB_PR",ai_adb_overlay=AI_ADB_OVERLAY_WINDOW,ai_adb_message_window=AI_ADB_MESSAGE_WINDOW,ai_adb_message_undismissible=AI_FUNCB_GET_UNDISMISSIBLE_MESSAGE,ai_adb_message_cookie_lifetime=AI_FUNCT_GET_NO_ACTION_PERIOD,ai_adb_action=AI_FUNC_GET_ADB_ACTION,ai_adb_page_views=AI_FUNCT_GET_DELAY_ACTION,ai_adb_selectors="AI_ADB_SELECTORS",ai_adb_redirection_url="AI_ADB_REDIRECTION_PAGE";
|
2 |
+
function ai_adb_process_content(){(function(a){a(".AI_ADB_CONTENT_CSS_BEGIN_CLASS").each(function(){var b=a(this).parent(),c=a(this).data("css");"undefined"==typeof c&&(c="display: none !important;");var d=a(this).data("selectors");if("undefined"==typeof d||""==d)d="p";var e=!1;a(b).find(".AI_ADB_CONTENT_CSS_BEGIN_CLASS, .AI_ADB_CONTENT_CSS_END_CLASS, "+d).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_CSS_BEGIN_CLASS"))a(this).remove(),e=!0;else if(a(this).hasClass("AI_ADB_CONTENT_CSS_END_CLASS"))a(this).remove(),
|
3 |
+
e=!1;else if(e){var b=a(this).attr("style");"undefined"==typeof b?b="":(b=b.trim(),""!=b&&";"!=b[b.length-1]&&(b+=";"));a(this).attr("style",b+" "+c)}})});a(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS").each(function(){var b=a(this).parent(),c=a(this).data("selectors");if("undefined"==typeof c||""==c)c="p";var d=!1;a(b).find(".AI_ADB_CONTENT_DELETE_BEGIN_CLASS, .AI_ADB_CONTENT_DELETE_END_CLASS, "+c).each(function(){a(this).hasClass("AI_ADB_CONTENT_DELETE_BEGIN_CLASS")?(a(this).remove(),d=!0):a(this).hasClass("AI_ADB_CONTENT_DELETE_END_CLASS")?
|
4 |
+
(a(this).remove(),d=!1):d&&a(this).remove()})});a(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS").each(function(){var b=a(this).parent(),c=a(this).data("text");"undefined"==typeof c&&(c="");var d=a(this).data("css");"undefined"==typeof d&&(d="");var e=a(this).data("selectors");if("undefined"==typeof e||""==e)e="p";var f=!1;a(b).find(".AI_ADB_CONTENT_REPLACE_BEGIN_CLASS, .AI_ADB_CONTENT_REPLACE_END_CLASS, "+e).each(function(){if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_BEGIN_CLASS"))a(this).remove(),f=!0;else if(a(this).hasClass("AI_ADB_CONTENT_REPLACE_END_CLASS"))a(this).remove(),
|
5 |
+
f=!1;else if(f){if(0!=c.length){var b=Math.round(a(this).text().length/(c.length+1));a(this).text(Array(b+1).join(c+" ").trim())}else a(this).text("");""!=d&&(b=a(this).attr("style"),"undefined"==typeof b?b="":(b=b.trim(),""!=b&&";"!=b[b.length-1]&&(b+=";")),""!=d&&(d=" "+d),a(this).attr("style",b+d))}})})})(jQuery)}
|
6 |
+
function ai_adb_process_blocks(a){(function(b){"undefined"==typeof a&&(a=b("body"));var c=b(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME);if("string"===typeof c)var d=c==b64d("bWFzaw==");if("string"===typeof c&&"boolean"===typeof d)if(d){do{var e=!1;b(".ai-adb-hide",a).each(function(){b(this).css({display:"none",visibility:"hidden"});b(this).removeClass("ai-adb-hide");var a=b(this).closest("div[data-ai]");if("undefined"!=typeof a.attr("data-ai")){var c=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==
|
7 |
+
typeof c&&c.constructor===Array&&(c[1]="",a.attr("data-ai",b64e(JSON.stringify(c))))}ai_disable_processing(b(this))});b(".ai-adb-show",a).each(function(){b(this).css({display:"block",visibility:"visible"});b(this).removeClass("ai-adb-show");if("undefined"!=typeof b(this).data("code")){var a=b64d(b(this).data("code"));b(this).append(a);e=!0;"function"==typeof ai_process_elements&&ai_process_elements()}a=b(this).attr("data-ai-tracking");if("undefined"!=typeof a){var c=b(this).closest("div[data-ai]");
|
8 |
+
if("undefined"!=typeof c.attr("data-ai")){if(b(this).hasClass("ai-no-tracking")){var d=JSON.parse(b64d(c.attr("data-ai")));"undefined"!==typeof d&&d.constructor===Array&&(d[1]="",a=b64e(JSON.stringify(d)))}c.attr("data-ai",a)}}})}while(e);setTimeout(function(){"function"==typeof ai_process_impressions&&1==ai_tracking_finished&&ai_process_impressions();"function"==typeof ai_install_click_trackers&&1==ai_tracking_finished&&ai_install_click_trackers()},15);setTimeout(ai_adb_process_content,10)}else b(".ai-adb-hide",
|
9 |
+
a).each(function(){b(this).removeClass("ai-adb-hide");if(0==b(this).outerHeight()&&0==b(this).closest(".ai-adb-show").length){var a=b(this).closest("div[data-ai]");if("undefined"!=typeof a.attr("data-ai")){var c=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof c&&c.constructor===Array&&(c[1]="",a.attr("data-ai",b64e(JSON.stringify(c))),a.addClass("ai-viewport-0").css("display","none"))}}}),b(".ai-adb-show",a).each(function(){ai_disable_processing(b(this));b(this).removeClass("ai-adb-show")})})(jQuery)}
|
10 |
+
ai_adb_detection_type_log=function(a){var b=ai_adb_detection_type(a),c=jQuery("#ai-adb-events");if(0!=c.count){var d=c.text();c.text((""!=d?d+", ":d+", EVENTS: ")+a)}return b};ai_adb_detection_type=function(a){return""};
|
11 |
var ai_adb_detected=function(a){setTimeout(function(){ai_adb_detected_actions(a)},2)},ai_disable_processing=function(a){jQuery(a).find(".ai-lazy").removeClass("ai-lazy");jQuery(a).find(".ai-manual").removeClass("ai-manual");jQuery(a).find(".ai-rotate").removeClass("ai-unprocessed").removeAttr("data-info");jQuery(a).find(".ai-list-data").removeClass("ai-list-data");jQuery(a).find(".ai-ip-data").removeClass("ai-ip-data");jQuery(a).find("[data-code]").removeAttr("data-code")},ai_adb_detected_actions=
|
12 |
+
function(a){ai_adb_active||(ai_adb_active=!0,jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("bWFzaw==")),function(a){a(window).ready(function(){ai_adb_process_blocks()});if(0!=ai_adb_page_views){var c=1,b=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof b&&(c=parseInt(b)+1);if(c<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,c,{expires:365,path:"/"});window.ai_d1=c;window.AI_ADB_STATUS_MESSAGE=1;return}}if(0==ai_adb_message_cookie_lifetime||1==ai_adb_action&&ai_adb_message_undismissible)AiCookies.remove(ai_adb_act_cookie_name,
|
13 |
+
{path:"/"});else{b=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=typeof b&&"AI_CONST_AI_ADB_COOKIE_VALUE"==b){window.AI_ADB_STATUS_MESSAGE=2;return}AiCookies.set(ai_adb_act_cookie_name,"AI_CONST_AI_ADB_COOKIE_VALUE",{expires:ai_adb_message_cookie_lifetime,path:"/"})}0==ai_adb_action?(ai_dummy=16,ai_dummy++,window.AI_ADB_STATUS_MESSAGE=6):(window.AI_ADB_STATUS_MESSAGE=3,ai_dummy=13);switch(ai_adb_action){case 1:ai_adb_message_undismissible?(ai_adb_overlay.find('[style*="cursor"]').css("cursor",
|
14 |
+
"no-drop"),ai_adb_message_window.find('[style*="cursor"]').css("cursor","no-drop")):(ai_adb_overlay.click(function(){a(this).remove();ai_adb_message_window.remove()}),ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});c=a(b64d("Ym9keQ==")).children();c.eq(Math.floor(Math.random()*c.length)).after(ai_adb_overlay);c.eq(Math.floor(Math.random()*c.length)).after(ai_adb_message_window);
|
15 |
+
break;case 2:""!=ai_adb_redirection_url&&(c=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(c=!1):window.location.pathname==ai_adb_redirection_url&&(c=!1),c?(b=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof b&&(c=new Date,c.setTime(c.getTime()+1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:c,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,
|
16 |
+
{path:"/"}))}}(jQuery))},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(jQuery(b64d("Ym9keQ==")).attr(AI_ADB_ATTR_NAME,b64d("Y2xlYXI=")),ai_dummy=11,window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14,ai_adb_process_blocks())};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
|
17 |
+
jQuery(document).ready(function(a){a(window).ready(function(){ai_debugging_active="undefined"!==typeof ai_adb_fe_dbg;setTimeout(function(){a("#ai-adb-bar").click(function(){AiCookies.remove(ai_adb_act_cookie_name,{path:"/"});AiCookies.remove(ai_adb_pgv_cookie_name,{path:"/"});window.AI_ADB_STATUS_MESSAGE=5;ai_dummy=15})},2);if((!ai_adb_active||ai_debugging_active)&&""!=ai_adb_selectors){var b=0,c=0,d=ai_adb_selectors.split(",");a.each(d,function(e){d[e]=d[e].trim();0!=a(d[e]).length&&a(d[e]).each(function(d){var e=
|
18 |
+
a(this).outerHeight();d=a(this).find(".ai-attributes");d.length&&d.each(function(){e>=a(this).outerHeight()&&(e-=a(this).outerHeight())});b++;if(0===e&&(a(document).ready(function(){ai_adb_active&&!ai_debugging_active||ai_adb_detected(4)}),c++,!ai_debugging_active))return!1})});0!=b&&0==c&&a(document).ready(function(){ai_adb_undetected(4)})}})});
|
19 |
+
function ai_adb_get_script(a,b){var c=document.createElement("script");c.src="ai-adb-url"+a+".js?ver="+(new Date).getTime();var d=document.getElementsByTagName("head")[0],e=!1;c.onerror=function(){b&&b();c.onerror=null;d.removeChild(c)};c.onload=c.onreadystatechange=function(){e||this.readyState&&"loaded"!=this.readyState&&"complete"!=this.readyState||(e=!0,b&&b(),c.onload=c.onreadystatechange=null,d.removeChild(c))};d.appendChild(c)}
|
20 |
+
jQuery(window).on("load",function(){function a(){document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!ai_debugging_active||ai_adb_detected(1)}function b(){"undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?(!ai_adb_active||ai_debugging_active)&&ai_adb_detected(2):ai_adb_undetected(2)}setTimeout(function(){var c="undefined"!==typeof ai_adb_fe_dbg;jQuery(b64d("I2FpLWFkYi1hZHM=")).length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?a():ai_adb_get_script("ads",
|
21 |
+
a));jQuery(b64d("I2FpLWFkYi1nYQ==")).length&&("function"==typeof ga&&30<ga.toString().length||"function"==typeof __gaTracker&&30<__gaTracker.toString().length?ai_adb_undetected(5):ai_adb_active&&!c||ai_adb_detected(5));jQuery(b64d("I2FpLWFkYi1zcG9uc29ycw==")).length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?ai_adb_get_script("sponsors",b):b());var d=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVy"),e=b64d("I2Jhbm5lci1hZHZlcnQtY29udGFpbmVyIGltZw==");jQuery(d).length&&0<jQuery(e).length&&(0===jQuery(e).outerHeight()?
|
22 |
+
(!ai_adb_active||c)&&ai_adb_detected(3):ai_adb_undetected(3),jQuery(e).remove());jQuery(b64d("I2FpLWFkYi1tbg==")).length&&("object"==typeof _mNDetails&&400<JSON.stringify(_mNDetails).length?ai_adb_undetected(6):ai_adb_active&&!c||ai_adb_detected(6))},120)});
|
|
|
|
|
|
includes/js/ai-base64.js
CHANGED
@@ -14,10 +14,6 @@ function a2b (a) {
|
|
14 |
}
|
15 |
|
16 |
b64e = function (str) {
|
17 |
-
// first we use encodeURIComponent to get percent-encoded UTF-8,
|
18 |
-
// then we convert the percent encodings into raw bytes which
|
19 |
-
// can be fed into btoa.
|
20 |
-
// return btoa (encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
21 |
return btoa (encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
22 |
function toSolidBytes (match, p1) {
|
23 |
return String.fromCharCode ('0x' + p1);
|
@@ -25,8 +21,6 @@ b64e = function (str) {
|
|
25 |
}
|
26 |
|
27 |
b64d = function (str) {
|
28 |
-
// Going backwards: from bytestream, to percent-encoding, to original string.
|
29 |
-
// return decodeURIComponent (atob (str).split ('').map (function(c) {
|
30 |
return decodeURIComponent (atob (str).split ('').map (function(c) {
|
31 |
return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
32 |
}).join (''));
|
14 |
}
|
15 |
|
16 |
b64e = function (str) {
|
|
|
|
|
|
|
|
|
17 |
return btoa (encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
18 |
function toSolidBytes (match, p1) {
|
19 |
return String.fromCharCode ('0x' + p1);
|
21 |
}
|
22 |
|
23 |
b64d = function (str) {
|
|
|
|
|
24 |
return decodeURIComponent (atob (str).split ('').map (function(c) {
|
25 |
return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
26 |
}).join (''));
|
includes/js/ai-cookie.js
CHANGED
@@ -171,6 +171,10 @@ ai_check_block = function (block) {
|
|
171 |
var ai_debug = typeof ai_debugging !== 'undefined'; // 1
|
172 |
// var ai_debug = false;
|
173 |
|
|
|
|
|
|
|
|
|
174 |
var ai_cookie_name = 'aiBLOCKS';
|
175 |
var ai_cookie = AiCookies.getJSON (ai_cookie_name);
|
176 |
ai_debug_cookie_status = '';
|
@@ -371,6 +375,11 @@ ai_check_block = function (block) {
|
|
371 |
}
|
372 |
|
373 |
ai_check_and_insert_block = function (block, id) {
|
|
|
|
|
|
|
|
|
|
|
374 |
var ai_block_divs = document.getElementsByClassName (id);
|
375 |
if (ai_block_divs.length) {
|
376 |
var ai_block_div = ai_block_divs [0];
|
@@ -386,13 +395,10 @@ ai_check_and_insert_block = function (block, id) {
|
|
386 |
}
|
387 |
} else {
|
388 |
var ai_block_div_data = ai_block_div.closest ('div[data-ai]');
|
389 |
-
if (typeof ai_block_div_data.getAttribute ("data-ai") != "undefined") {
|
390 |
var data = JSON.parse (b64d (ai_block_div_data.getAttribute ("data-ai")));
|
391 |
if (typeof data !== "undefined" && data.constructor === Array) {
|
392 |
data [1] = "";
|
393 |
-
|
394 |
-
// console.log ("AI CHECK TRACKING ", b64d (ai_block_div_data.getAttribute ("data-ai")), ' <= ', JSON.stringify (data));
|
395 |
-
|
396 |
ai_block_div_data.setAttribute ("data-ai", b64e (JSON.stringify (data)));
|
397 |
}
|
398 |
}
|
171 |
var ai_debug = typeof ai_debugging !== 'undefined'; // 1
|
172 |
// var ai_debug = false;
|
173 |
|
174 |
+
if (block == null) {
|
175 |
+
return true;
|
176 |
+
}
|
177 |
+
|
178 |
var ai_cookie_name = 'aiBLOCKS';
|
179 |
var ai_cookie = AiCookies.getJSON (ai_cookie_name);
|
180 |
ai_debug_cookie_status = '';
|
375 |
}
|
376 |
|
377 |
ai_check_and_insert_block = function (block, id) {
|
378 |
+
|
379 |
+
if (block == null) {
|
380 |
+
return true;
|
381 |
+
}
|
382 |
+
|
383 |
var ai_block_divs = document.getElementsByClassName (id);
|
384 |
if (ai_block_divs.length) {
|
385 |
var ai_block_div = ai_block_divs [0];
|
395 |
}
|
396 |
} else {
|
397 |
var ai_block_div_data = ai_block_div.closest ('div[data-ai]');
|
398 |
+
if (ai_block_div_data != null && typeof ai_block_div_data.getAttribute ("data-ai") != "undefined") {
|
399 |
var data = JSON.parse (b64d (ai_block_div_data.getAttribute ("data-ai")));
|
400 |
if (typeof data !== "undefined" && data.constructor === Array) {
|
401 |
data [1] = "";
|
|
|
|
|
|
|
402 |
ai_block_div_data.setAttribute ("data-ai", b64e (JSON.stringify (data)));
|
403 |
}
|
404 |
}
|
includes/js/ai-cookie.min.js
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};
|
2 |
-
(function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var f=window.Cookies,c=window.Cookies=a();c.noConflict=function(){window.Cookies=f;return c}}})(function(){function a(){for(var a=0,c={};a<arguments.length;a++){var b=arguments[a],
|
3 |
-
new Date+864E5*
|
4 |
-
function
|
5 |
-
!0)};c.remove=function(b,c){
|
6 |
-
ai_check_block=function(a){var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var f in b[a]){if("x"==f){var c="",
|
7 |
-
1E3);if(0<d
|
8 |
-
c)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>b[a][f]&&
|
9 |
-
|
10 |
-
b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==f&&0==b[a][f]&&(
|
11 |
-
ai_check_and_insert_block=function(a,b){var f=document.getElementsByClassName(b);if(f.length){f=f[0];var c=f.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a))ai_insert_code(f),c&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""));else{var
|
12 |
-
(
|
13 |
-
c.classList.remove(b+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var f="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(f=c[a][b]);return f}
|
14 |
-
function ai_set_cookie(a,b,f){var c=ai_load_cookie();if(""===f){if(c.hasOwnProperty(a)){delete c[a][b];a:{b=c[a];for(
|
15 |
ai_get_cookie_text=function(a){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});return b.hasOwnProperty(a)?JSON.stringify(b[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
|
1 |
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.arrayIteratorImpl=function(a){var b=0;return function(){return b<a.length?{done:!1,value:a[b++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var b="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return b?b.call(a):$jscomp.arrayIterator(a)};
|
2 |
+
(function(a){if("function"===typeof define&&define.amd){define(a);var b=!0}"object"===typeof exports&&(module.exports=a(),b=!0);if(!b){var f=window.Cookies,c=window.Cookies=a();c.noConflict=function(){window.Cookies=f;return c}}})(function(){function a(){for(var a=0,c={};a<arguments.length;a++){var b=arguments[a],e;for(e in b)c[e]=b[e]}return c}function b(f){function c(){}function d(b,e,d){if("undefined"!==typeof document){d=a({path:"/"},c.defaults,d);"number"===typeof d.expires&&(d.expires=new Date(1*
|
3 |
+
new Date+864E5*d.expires));d.expires=d.expires?d.expires.toUTCString():"";try{var g=JSON.stringify(e);/^[\{\[]/.test(g)&&(e=g)}catch(n){}e=f.write?f.write(e,b):encodeURIComponent(String(e)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent);b=encodeURIComponent(String(b)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);g="";for(var k in d)d[k]&&(g+="; "+k,!0!==d[k]&&(g+="="+d[k].split(";")[0]));return document.cookie=b+"="+e+g}}
|
4 |
+
function e(a,b){if("undefined"!==typeof document){for(var c={},e=document.cookie?document.cookie.split("; "):[],d=0;d<e.length;d++){var g=e[d].split("="),h=g.slice(1).join("=");b||'"'!==h.charAt(0)||(h=h.slice(1,-1));try{var l=g[0].replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);h=(f.read||f)(h,l)||h.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent);if(b)try{h=JSON.parse(h)}catch(m){}c[l]=h;if(a===l)break}catch(m){}}return a?c[a]:c}}c.set=d;c.get=function(a){return e(a,!1)};c.getJSON=function(a){return e(a,
|
5 |
+
!0)};c.remove=function(b,c){d(b,"",a(c,{expires:-1}))};c.defaults={};c.withConverter=b;return c}return b(function(){})});AiCookies=Cookies.noConflict();
|
6 |
+
ai_check_block=function(a){if(null==a)return!0;var b=AiCookies.getJSON("aiBLOCKS");ai_debug_cookie_status="";null==b&&(b={});"undefined"!==typeof ai_delay_showing_pageviews&&(b.hasOwnProperty(a)||(b[a]={}),b[a].hasOwnProperty("d")||(b[a].d=ai_delay_showing_pageviews));if(b.hasOwnProperty(a))for(var f in b[a]){if("x"==f){var c="",d=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in d.dataset&&(c=d.dataset.aiHash);d="";b[a].hasOwnProperty("h")&&(d=b[a].h);var e=new Date;e=b[a][f]-
|
7 |
+
Math.round(e.getTime()/1E3);if(0<e&&d==c)return ai_debug_cookie_status=a="closed for "+e+" s = "+Math.round(1E4*e/3600/24)/1E4+" days",!1;ai_set_cookie(a,"x","");b[a].hasOwnProperty("i")||b[a].hasOwnProperty("c")||ai_set_cookie(a,"h","")}else if("d"==f){if(0!=b[a][f])return ai_debug_cookie_status=a="delayed for "+b[a][f]+" pageviews",!1}else if("i"==f){c="";d=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in d.dataset&&(c=d.dataset.aiHash);d="";b[a].hasOwnProperty("h")&&(d=b[a].h);
|
8 |
+
if(0==b[a][f]&&d==c)return ai_debug_cookie_status=a="max impressions reached",!1;if(0>b[a][f]&&d==c){e=new Date;e=-b[a][f]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max imp. reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"i","");b[a].hasOwnProperty("c")||b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("ipt"==f&&0==b[a][f]&&(e=new Date,c=Math.round(e.getTime()/1E3),e=b[a].it-c,0<e))return ai_debug_cookie_status=a="max imp. per time reached ("+
|
9 |
+
Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;if("c"==f){c="";d=document.querySelectorAll('span[data-ai-block="'+a+'"]')[0];"aiHash"in d.dataset&&(c=d.dataset.aiHash);d="";b[a].hasOwnProperty("h")&&(d=b[a].h);if(0==b[a][f]&&d==c)return ai_debug_cookie_status=a="max clicks reached",!1;if(0>b[a][f]&&d==c){e=new Date;e=-b[a][f]-Math.round(e.getTime()/1E3);if(0<e)return ai_debug_cookie_status=a="max clicks reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1;ai_set_cookie(a,"c","");b[a].hasOwnProperty("i")||
|
10 |
+
b[a].hasOwnProperty("x")||ai_set_cookie(a,"h","")}}if("cpt"==f&&0==b[a][f]&&(e=new Date,c=Math.round(e.getTime()/1E3),e=b[a].ct-c,0<e))return ai_debug_cookie_status=a="max clicks per time reached ("+Math.round(1E4*e/24/3600)/1E4+" days = "+e+" s)",!1}ai_debug_cookie_status="OK";return!0};
|
11 |
+
ai_check_and_insert_block=function(a,b){if(null==a)return!0;var f=document.getElementsByClassName(b);if(f.length){f=f[0];var c=f.closest(".AI_FUNCT_GET_BLOCK_CLASS_NAME");if(ai_check_block(a))ai_insert_code(f),c&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""));else{var d=f.closest("div[data-ai]");if(null!=d&&"undefined"!=typeof d.getAttribute("data-ai")){var e=JSON.parse(b64d(d.getAttribute("data-ai")));"undefined"!==typeof e&&
|
12 |
+
e.constructor===Array&&(e[1]="",d.setAttribute("data-ai",b64e(JSON.stringify(e))))}d=c.querySelectorAll(".ai-debug-block");c&&d.length&&(c.classList.remove("ai-list-block"),c.style.visibility="",c.classList.contains("ai-remove-position")&&(c.style.position=""))}f.classList.remove(b)}f=document.querySelectorAll("."+b+"-dbg");f=$jscomp.makeIterator(f);for(c=f.next();!c.done;c=f.next())c=c.value,c.querySelector(".ai-status").textContent=ai_debug_cookie_status,c.querySelector(".ai-cookie-data").textContent=
|
13 |
+
ai_get_cookie_text(a),c.classList.remove(b+"-dbg")};function ai_load_cookie(){var a=AiCookies.getJSON("aiBLOCKS");null==a&&(a={});return a}function ai_get_cookie(a,b){var f="",c=ai_load_cookie();c.hasOwnProperty(a)&&c[a].hasOwnProperty(b)&&(f=c[a][b]);return f}
|
14 |
+
function ai_set_cookie(a,b,f){var c=ai_load_cookie();if(""===f){if(c.hasOwnProperty(a)){delete c[a][b];a:{b=c[a];for(d in b)if(b.hasOwnProperty(d)){var d=!1;break a}d=!0}d&&delete c[a]}}else c.hasOwnProperty(a)||(c[a]={}),c[a][b]=f;0===Object.keys(c).length&&c.constructor===Object?AiCookies.remove("aiBLOCKS"):AiCookies.set("aiBLOCKS",c,{expires:365,path:"/"});return c}
|
15 |
ai_get_cookie_text=function(a){var b=AiCookies.getJSON("aiBLOCKS");null==b&&(b={});return b.hasOwnProperty(a)?JSON.stringify(b[a]).replace(/"/g,"").replace("{","").replace("}",""):""};
|
includes/js/ai-insert.js
CHANGED
@@ -114,7 +114,9 @@ ai_insert_code = function (element) {
|
|
114 |
var visible = true;
|
115 |
} else var visible = !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length);
|
116 |
|
117 |
-
|
|
|
|
|
118 |
|
119 |
if (visible) {
|
120 |
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, 'offsetWidth:', element.offsetWidth, 'offsetHeight:', element.offsetHeight, 'getClientRects().length:', element.getClientRects().length);
|
@@ -215,6 +217,28 @@ ai_insert_code_by_class = function (id) {
|
|
215 |
}
|
216 |
}
|
217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
ai_process_elements_active = false;
|
219 |
|
220 |
function ai_process_elements () {
|
@@ -233,25 +257,29 @@ function ai_process_elements () {
|
|
233 |
if (typeof ai_process_ip_addresses == 'function') {
|
234 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data"));
|
235 |
}
|
|
|
|
|
|
|
|
|
236 |
}, 5);
|
237 |
ai_process_elements_active = true;
|
238 |
}
|
239 |
|
240 |
-
function b64e (str) {
|
241 |
-
// first we use encodeURIComponent to get percent-encoded UTF-8,
|
242 |
-
// then we convert the percent encodings into raw bytes which
|
243 |
-
// can be fed into btoa.
|
244 |
-
return btoa(encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
245 |
-
function toSolidBytes (match, p1) {
|
246 |
-
return String.fromCharCode ('0x' + p1);
|
247 |
-
}));
|
248 |
-
}
|
249 |
-
|
250 |
-
function b64d (str) {
|
251 |
-
// Going backwards: from bytestream, to percent-encoding, to original string.
|
252 |
-
return decodeURIComponent (atob (str).split ('').map (function(c) {
|
253 |
-
return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
254 |
-
}).join (''));
|
255 |
-
}
|
256 |
|
257 |
|
114 |
var visible = true;
|
115 |
} else var visible = !!(element.offsetWidth || element.offsetHeight || element.getClientRects().length);
|
116 |
|
117 |
+
if (ai_debug) {
|
118 |
+
var block = element.getAttribute ('data-block');
|
119 |
+
}
|
120 |
|
121 |
if (visible) {
|
122 |
if (ai_debug) console.log ('AI ELEMENT VISIBLE: block', block, 'offsetWidth:', element.offsetWidth, 'offsetHeight:', element.offsetHeight, 'getClientRects().length:', element.getClientRects().length);
|
217 |
}
|
218 |
}
|
219 |
|
220 |
+
ai_insert_client_code = function (id, len) {
|
221 |
+
var ai_debug = typeof ai_debugging !== 'undefined'; // 3
|
222 |
+
// var ai_debug = false;
|
223 |
+
|
224 |
+
var ai_block_div = document.getElementsByClassName (id) [0];
|
225 |
+
|
226 |
+
if (ai_debug) {
|
227 |
+
var block = ai_block_div.getAttribute ('data-block');
|
228 |
+
console.log ('AI INSERT PROTECTED BLOCK', block, '.' + id);
|
229 |
+
}
|
230 |
+
|
231 |
+
if (typeof ai_block_div != 'undefined') {
|
232 |
+
var insertion_code = ai_block_div.getAttribute ('data-code');
|
233 |
+
|
234 |
+
if (insertion_code != null && ai_check_block () && ai_check_and_insert_block ()) {
|
235 |
+
ai_block_div.setAttribute ('data-code', insertion_code.substring (Math.floor (len / 19)));
|
236 |
+
ai_insert_code_by_class (id);
|
237 |
+
ai_block_div.remove();
|
238 |
+
}
|
239 |
+
}
|
240 |
+
}
|
241 |
+
|
242 |
ai_process_elements_active = false;
|
243 |
|
244 |
function ai_process_elements () {
|
257 |
if (typeof ai_process_ip_addresses == 'function') {
|
258 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data"));
|
259 |
}
|
260 |
+
|
261 |
+
if (typeof ai_adb_process_blocks == 'function') {
|
262 |
+
ai_adb_process_blocks ();
|
263 |
+
}
|
264 |
}, 5);
|
265 |
ai_process_elements_active = true;
|
266 |
}
|
267 |
|
268 |
+
//function b64e (str) {
|
269 |
+
// // first we use encodeURIComponent to get percent-encoded UTF-8,
|
270 |
+
// // then we convert the percent encodings into raw bytes which
|
271 |
+
// // can be fed into btoa.
|
272 |
+
// return btoa(encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
273 |
+
// function toSolidBytes (match, p1) {
|
274 |
+
// return String.fromCharCode ('0x' + p1);
|
275 |
+
// }));
|
276 |
+
//}
|
277 |
+
|
278 |
+
//function b64d (str) {
|
279 |
+
// // Going backwards: from bytestream, to percent-encoding, to original string.
|
280 |
+
// return decodeURIComponent (atob (str).split ('').map (function(c) {
|
281 |
+
// return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
282 |
+
// }).join (''));
|
283 |
+
//}
|
284 |
|
285 |
|
includes/js/ai-insert.min.js
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
-
ai_insert=function(a,c,
|
2 |
-
a?k=ai_front.insertion_before:"after"==a?k=ai_front.insertion_after:"prepend"==a?k=ai_front.insertion_prepend:"append"==a?k=ai_front.insertion_append:"replace-content"==a?k=ai_front.insertion_replace_content:"replace-element"==a&&(k=ai_front.insertion_replace_element);-1==selector_string.indexOf(".ai-viewports")&&(
|
3 |
-
a?b.parentNode.insertBefore(
|
4 |
-
ai_insert_code=function(a){function c(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function
|
5 |
-
a.getAttribute("data-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0}
|
10 |
-
function b64e(a){return btoa(encodeURIComponent(a).replace(/%([0-9A-F]{2})/g,function(a,h){return String.fromCharCode("0x"+h)}))}function b64d(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))};
|
1 |
+
ai_insert=function(a,c,e){var d=-1!=c.indexOf(":eq")?jQuery(c):document.querySelectorAll(c);Array.prototype.forEach.call(d,function(b,d){selector_string=b.hasAttribute("id")?"#"+b.getAttribute("id"):b.hasAttribute("class")?"."+b.getAttribute("class").replace(RegExp(" ","g"),"."):"";var f=document.createElement("div");f.innerHTML=e;var g=f.getElementsByClassName("ai-selector-counter")[0];null!=g&&(g.innerText=d+1);g=f.getElementsByClassName("ai-debug-name ai-main")[0];if(null!=g){var k="";"before"==
|
2 |
+
a?k=ai_front.insertion_before:"after"==a?k=ai_front.insertion_after:"prepend"==a?k=ai_front.insertion_prepend:"append"==a?k=ai_front.insertion_append:"replace-content"==a?k=ai_front.insertion_replace_content:"replace-element"==a&&(k=ai_front.insertion_replace_element);-1==selector_string.indexOf(".ai-viewports")&&(g.innerText=k+" "+c+" ("+b.tagName.toLowerCase()+selector_string+")")}g=document.createRange().createContextualFragment(f.innerHTML);"before"==a?b.parentNode.insertBefore(g,b):"after"==
|
3 |
+
a?b.parentNode.insertBefore(g,b.nextSibling):"prepend"==a?b.insertBefore(g,b.firstChild):"append"==a?b.insertBefore(g,null):"replace-content"==a?b.innerHTML=f.innerHTML:"replace-element"==a&&(b.parentNode.insertBefore(g,b),b.parentNode.removeChild(b))})};
|
4 |
+
ai_insert_code=function(a){function c(a,b){return null==a?!1:a.classList?a.classList.contains(b):-1<(" "+a.className+" ").indexOf(" "+b+" ")}function e(a,b){null!=a&&(a.classList?a.classList.add(b):a.className+=" "+b)}function d(a,b){null!=a&&(a.classList?a.classList.remove(b):a.className=a.className.replace(new RegExp("(^|\\b)"+b.split(" ").join("|")+"(\\b|$)","gi")," "))}if("undefined"!=typeof a){var b=!1;if(c(a,"no-visibility-check")||a.offsetWidth||a.offsetHeight||a.getClientRects().length){b=
|
5 |
+
a.getAttribute("data-code");var h=a.getAttribute("data-insertion"),f=a.getAttribute("data-selector");if(null!=b)if(null!=h&&null!=f){if(-1!=f.indexOf(":eq")?jQuery(f).length:document.querySelectorAll(f).length)ai_insert(h,f,b64d(b)),d(a,"ai-viewports")}else b=document.createRange().createContextualFragment(b64d(b)),a.parentNode.insertBefore(b,a.nextSibling),d(a,"ai-viewports");b=!0;a=a.getElementsByClassName("ai-check-block");"undefined"!=typeof a[0]&&a[0].parentNode.removeChild(a[0])}else h=a.previousElementSibling,
|
6 |
+
c(h,"ai-debug-bar")&&c(h,"ai-debug-script")&&(d(h,"ai-debug-script"),e(h,"ai-debug-viewport-invisible")),d(a,"ai-viewports");return b}};ai_insert_list_code=function(a){var c=document.getElementsByClassName(a)[0];if("undefined"!=typeof c){var e=ai_insert_code(c),d=c.closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME");d&&(e||d.removeAttribute("data-ai"),d.classList.remove("ai-list-block"),d.style.visibility="",d.classList.contains("ai-remove-position")&&(d.style.position=""));c.classList.remove(a);e&&ai_process_elements()}};
|
7 |
+
ai_insert_viewport_code=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a),ai_process_elements())};ai_insert_code_by_class=function(a){var c=document.getElementsByClassName(a)[0];"undefined"!=typeof c&&(ai_insert_code(c),c.classList.remove(a))};
|
8 |
+
ai_insert_client_code=function(a,c){var e=document.getElementsByClassName(a)[0];if("undefined"!=typeof e){var d=e.getAttribute("data-code");null!=d&&ai_check_block()&&ai_check_and_insert_block()&&(e.setAttribute("data-code",d.substring(Math.floor(c/19))),ai_insert_code_by_class(a),e.remove())}};ai_process_elements_active=!1;
|
9 |
+
function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0};
|
|
includes/js/ai-lists.js
CHANGED
@@ -7,23 +7,6 @@ jQuery (function ($) {
|
|
7 |
}
|
8 |
}
|
9 |
|
10 |
-
// function b64e (str) {
|
11 |
-
// // first we use encodeURIComponent to get percent-encoded UTF-8,
|
12 |
-
// // then we convert the percent encodings into raw bytes which
|
13 |
-
// // can be fed into btoa.
|
14 |
-
// return btoa (encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
15 |
-
// function toSolidBytes (match, p1) {
|
16 |
-
// return String.fromCharCode ('0x' + p1);
|
17 |
-
// }));
|
18 |
-
// }
|
19 |
-
|
20 |
-
// function b64d (str) {
|
21 |
-
// // Going backwards: from bytestream, to percent-encoding, to original string.
|
22 |
-
// return decodeURIComponent (atob (str).split ('').map (function(c) {
|
23 |
-
// return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
24 |
-
// }).join (''));
|
25 |
-
// }
|
26 |
-
|
27 |
// To prevent replacement of regexp pattern with CDN url (CDN code bug)
|
28 |
var host_regexp = new RegExp (':' + '\\/' + '\\/(.[^/:]+)', 'i');
|
29 |
|
@@ -51,6 +34,60 @@ jQuery (function ($) {
|
|
51 |
|
52 |
ai_process_lists = function (ai_list_blocks) {
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
if (ai_list_blocks == null) {
|
55 |
ai_list_blocks = $("div.ai-list-data");
|
56 |
} else {
|
@@ -62,7 +99,7 @@ jQuery (function ($) {
|
|
62 |
// Mark lists as processed
|
63 |
ai_list_blocks.removeClass ('ai-list-data');
|
64 |
|
65 |
-
var ai_debug = typeof ai_debugging !== 'undefined'; //
|
66 |
// var ai_debug = false;
|
67 |
|
68 |
var cookies = document.cookie.split (";");
|
@@ -79,8 +116,11 @@ jQuery (function ($) {
|
|
79 |
if (referrer != '') referrer = getHostName (referrer);
|
80 |
}
|
81 |
|
|
|
|
|
|
|
82 |
if (typeof MobileDetect !== "undefined") {
|
83 |
-
var md = new MobileDetect (
|
84 |
}
|
85 |
|
86 |
ai_list_blocks.each (function () {
|
@@ -163,7 +203,35 @@ jQuery (function ($) {
|
|
163 |
$.each (client_list_array, function (index, list_client) {
|
164 |
if (list_client == '') return true;
|
165 |
|
166 |
-
if (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
|
168 |
|
169 |
found = true;
|
@@ -195,6 +263,22 @@ jQuery (function ($) {
|
|
195 |
if (ai_debug) console.log ("AI LISTS cookies: ", cookies);
|
196 |
if (ai_debug) console.log ("AI LISTS parameter list:", b64d (parameter_list), parameter_list_type);
|
197 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
198 |
var found = false;
|
199 |
$.each (parameter_list_array, function (index, list_parameter) {
|
200 |
|
@@ -203,6 +287,14 @@ jQuery (function ($) {
|
|
203 |
found = true;
|
204 |
return false;
|
205 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
} else {
|
207 |
cookies.forEach (function (cookie) {
|
208 |
var cookie_data = cookie.split ("=");
|
@@ -211,6 +303,11 @@ jQuery (function ($) {
|
|
211 |
return false;
|
212 |
}
|
213 |
});
|
|
|
|
|
|
|
|
|
|
|
214 |
}
|
215 |
});
|
216 |
|
@@ -236,7 +333,7 @@ jQuery (function ($) {
|
|
236 |
|
237 |
var debug_bar = $(this).prevAll ('.ai-debug-bar.ai-debug-lists');
|
238 |
var referrer_text = referrer == '' ? '#' : referrer;
|
239 |
-
debug_bar.find ('.ai-debug-name.ai-list-info').text (referrer_text).attr ('title',
|
240 |
debug_bar.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
241 |
|
242 |
var scheduling = false;
|
@@ -372,6 +469,7 @@ jQuery (function ($) {
|
|
372 |
});
|
373 |
});
|
374 |
|
|
|
375 |
function ai_process_element (element) {
|
376 |
setTimeout (function() {
|
377 |
if (typeof ai_process_rotations_in_element == 'function') {
|
@@ -385,6 +483,10 @@ function ai_process_element (element) {
|
|
385 |
if (typeof ai_process_ip_addresses == 'function') {
|
386 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data", element));
|
387 |
}
|
|
|
|
|
|
|
|
|
388 |
}, 5);
|
389 |
}
|
390 |
|
7 |
}
|
8 |
}
|
9 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
10 |
// To prevent replacement of regexp pattern with CDN url (CDN code bug)
|
11 |
var host_regexp = new RegExp (':' + '\\/' + '\\/(.[^/:]+)', 'i');
|
12 |
|
34 |
|
35 |
ai_process_lists = function (ai_list_blocks) {
|
36 |
|
37 |
+
function ai_structured_data_item (indexes, data, value) {
|
38 |
+
|
39 |
+
var ai_debug = typeof ai_debugging !== 'undefined'; // 1
|
40 |
+
// var ai_debug = false;
|
41 |
+
|
42 |
+
if (ai_debug) console.log ('');
|
43 |
+
if (ai_debug) console.log ("AI LISTS COOKIE SELECTOR INDEXES", indexes);
|
44 |
+
|
45 |
+
if (indexes.length == 0) {
|
46 |
+
if (ai_debug) console.log ("AI LISTS COOKIE TEST EMPTY", value == '!@!');
|
47 |
+
|
48 |
+
if (value == '!@!') return true;
|
49 |
+
|
50 |
+
if (ai_debug) console.log ("AI LISTS COOKIE TEST VALUE", data, '==', value, data == value);
|
51 |
+
|
52 |
+
return data == value;
|
53 |
+
}
|
54 |
+
|
55 |
+
if (typeof data != 'object' && typeof data != 'array') return false;
|
56 |
+
|
57 |
+
var index = indexes [0];
|
58 |
+
// Do not change indexes
|
59 |
+
var new_indexes = indexes.slice (1);
|
60 |
+
|
61 |
+
if (ai_debug) console.log ("AI LISTS COOKIE SELECTOR INDEX", index);
|
62 |
+
|
63 |
+
if (index == '*') {
|
64 |
+
for (let [data_index, data_item] of Object.entries (data)) {
|
65 |
+
if (ai_debug) console.log ("AI LISTS COOKIE SELECTOR *", `${data_index}: ${data_item}`);
|
66 |
+
|
67 |
+
if (ai_structured_data_item (new_indexes, data_item, value)) return true;
|
68 |
+
}
|
69 |
+
}
|
70 |
+
else if (index in data) {
|
71 |
+
if (ai_debug) console.log ('AI LISTS COOKIE SELECTOR CHECK [' + index + ']');
|
72 |
+
|
73 |
+
return ai_structured_data_item (new_indexes, data [index], value);
|
74 |
+
}
|
75 |
+
|
76 |
+
if (ai_debug) console.log ("AI LISTS COOKIE SELECTOR NOT FOUND", index, 'in', data);
|
77 |
+
if (ai_debug) console.log ('');
|
78 |
+
|
79 |
+
return false;
|
80 |
+
}
|
81 |
+
|
82 |
+
function ai_structured_data (data, selector, value) {
|
83 |
+
if (typeof data != 'object') return false;
|
84 |
+
if (selector.indexOf ('[') == - 1) return false;
|
85 |
+
|
86 |
+
var indexes = selector.replace (/]| /gi, '').split ('[');
|
87 |
+
|
88 |
+
return ai_structured_data_item (indexes, data, value);
|
89 |
+
}
|
90 |
+
|
91 |
if (ai_list_blocks == null) {
|
92 |
ai_list_blocks = $("div.ai-list-data");
|
93 |
} else {
|
99 |
// Mark lists as processed
|
100 |
ai_list_blocks.removeClass ('ai-list-data');
|
101 |
|
102 |
+
var ai_debug = typeof ai_debugging !== 'undefined'; // 2
|
103 |
// var ai_debug = false;
|
104 |
|
105 |
var cookies = document.cookie.split (";");
|
116 |
if (referrer != '') referrer = getHostName (referrer);
|
117 |
}
|
118 |
|
119 |
+
var user_agent = window.navigator.userAgent;
|
120 |
+
var user_agent_lc = user_agent.toLowerCase ();
|
121 |
+
|
122 |
if (typeof MobileDetect !== "undefined") {
|
123 |
+
var md = new MobileDetect (user_agent);
|
124 |
}
|
125 |
|
126 |
ai_list_blocks.each (function () {
|
203 |
$.each (client_list_array, function (index, list_client) {
|
204 |
if (list_client == '') return true;
|
205 |
|
206 |
+
if (list_client.charAt (0) == "*") {
|
207 |
+
if (list_client.charAt (list_client.length - 1) == "*") {
|
208 |
+
list_client = list_client.substr (1, list_client.length - 2).toLowerCase ();
|
209 |
+
if (user_agent_lc.indexOf (list_client) != - 1) {
|
210 |
+
if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
|
211 |
+
|
212 |
+
found = true;
|
213 |
+
return false;
|
214 |
+
}
|
215 |
+
} else {
|
216 |
+
list_client = list_client.substr (1).toLowerCase ();
|
217 |
+
if (user_agent_lc.substr (- list_client.length) == list_client) {
|
218 |
+
if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
|
219 |
+
|
220 |
+
found = true;
|
221 |
+
return false;
|
222 |
+
}
|
223 |
+
}
|
224 |
+
}
|
225 |
+
else if (list_client.charAt (list_client.length - 1) == "*") {
|
226 |
+
list_client = list_client.substr (0, list_client.length - 1).toLowerCase ();
|
227 |
+
if (user_agent_lc.indexOf (list_client) == 0) {
|
228 |
+
if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
|
229 |
+
|
230 |
+
found = true;
|
231 |
+
return false;
|
232 |
+
}
|
233 |
+
}
|
234 |
+
else if (md.is (list_client)) {
|
235 |
if (ai_debug) console.log ("AI LISTS FOUND:", list_client);
|
236 |
|
237 |
found = true;
|
263 |
if (ai_debug) console.log ("AI LISTS cookies: ", cookies);
|
264 |
if (ai_debug) console.log ("AI LISTS parameter list:", b64d (parameter_list), parameter_list_type);
|
265 |
|
266 |
+
|
267 |
+
var cookie_array = new Array ();
|
268 |
+
cookies.forEach (function (cookie) {
|
269 |
+
var cookie_data = cookie.split ("=");
|
270 |
+
|
271 |
+
try {
|
272 |
+
var cookie_object = JSON.parse (decodeURIComponent (cookie_data [1]));
|
273 |
+
} catch (e) {
|
274 |
+
var cookie_object = decodeURIComponent (cookie_data [1]);
|
275 |
+
}
|
276 |
+
|
277 |
+
cookie_array [cookie_data [0]] = cookie_object;
|
278 |
+
});
|
279 |
+
|
280 |
+
if (ai_debug) console.log ("AI LISTS COOKIE ARRAY", cookie_array);
|
281 |
+
|
282 |
var found = false;
|
283 |
$.each (parameter_list_array, function (index, list_parameter) {
|
284 |
|
287 |
found = true;
|
288 |
return false;
|
289 |
}
|
290 |
+
|
291 |
+
var list_parameter_data = list_parameter.split ("=");
|
292 |
+
|
293 |
+
if (ai_structured_data (cookie_array, list_parameter_data [0], list_parameter_data [1])) {
|
294 |
+
found = true;
|
295 |
+
return false;
|
296 |
+
}
|
297 |
+
|
298 |
} else {
|
299 |
cookies.forEach (function (cookie) {
|
300 |
var cookie_data = cookie.split ("=");
|
303 |
return false;
|
304 |
}
|
305 |
});
|
306 |
+
|
307 |
+
if (ai_structured_data (cookie_array, list_parameter, '!@!')) {
|
308 |
+
found = true;
|
309 |
+
return false;
|
310 |
+
}
|
311 |
}
|
312 |
});
|
313 |
|
333 |
|
334 |
var debug_bar = $(this).prevAll ('.ai-debug-bar.ai-debug-lists');
|
335 |
var referrer_text = referrer == '' ? '#' : referrer;
|
336 |
+
debug_bar.find ('.ai-debug-name.ai-list-info').text (referrer_text).attr ('title', user_agent);
|
337 |
debug_bar.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
338 |
|
339 |
var scheduling = false;
|
469 |
});
|
470 |
});
|
471 |
|
472 |
+
|
473 |
function ai_process_element (element) {
|
474 |
setTimeout (function() {
|
475 |
if (typeof ai_process_rotations_in_element == 'function') {
|
483 |
if (typeof ai_process_ip_addresses == 'function') {
|
484 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data", element));
|
485 |
}
|
486 |
+
|
487 |
+
if (typeof ai_adb_process_blocks == 'function') {
|
488 |
+
ai_adb_process_blocks (element);
|
489 |
+
}
|
490 |
}, 5);
|
491 |
}
|
492 |
|
includes/js/ai-lists.min.js
CHANGED
@@ -1,11 +1,14 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
(h=!0
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
|
|
|
|
|
1 |
+
var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.createTemplateTagFirstArg=function(a){return a.raw=a};$jscomp.createTemplateTagFirstArgWithRaw=function(a,g){a.raw=g;return a};$jscomp.arrayIteratorImpl=function(a){var g=0;return function(){return g<a.length?{done:!1,value:a[g++]}:{done:!0}}};$jscomp.arrayIterator=function(a){return{next:$jscomp.arrayIteratorImpl(a)}};$jscomp.makeIterator=function(a){var g="undefined"!=typeof Symbol&&Symbol.iterator&&a[Symbol.iterator];return g?g.call(a):$jscomp.arrayIterator(a)};
|
2 |
+
jQuery(function(a){function g(a){a=a.match(d);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function p(a){try{var e=Date.parse(a);isNaN(e)&&(e=null)}catch(u){e=null}return e}Array.prototype.includes||(Array.prototype.includes=function(a){return!!~this.indexOf(a)});var d=/:\/\/(.[^/:]+)/i;ai_process_lists=function(d){function e(a,c,k){if(0==a.length)return"!@!"==k?!0:c==k;if("object"!=typeof c&&"array"!=typeof c)return!1;var f=a[0];a=a.slice(1);if("*"==f)for(c=
|
3 |
+
$jscomp.makeIterator(Object.entries(c)),f=c.next();!f.done;f=c.next()){if(f=$jscomp.makeIterator(f.value),f.next(),f=f.next().value,e(a,f,k))return!0}else if(f in c)return e(a,c[f],k);return!1}function u(a,c,k){if("object"!=typeof a||-1==c.indexOf("["))return!1;c=c.replace(/]| /gi,"").split("[");return e(c,a,k)}d=null==d?a("div.ai-list-data"):d.filter(".ai-list-data");if(d.length){d.removeClass("ai-list-data");var t=document.cookie.split(";");t.forEach(function(a,c){t[c]=a.trim()});var m=getAllUrlParams(window.location.search);
|
4 |
+
if(null!=m.referrer)var n=m.referrer;else n=document.referrer,""!=n&&(n=g(n));var v=window.navigator.userAgent,w=v.toLowerCase();if("undefined"!==typeof MobileDetect)var z=new MobileDetect(v);d.each(function(){var d=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,k=a(this).attr("referer-list");if("undefined"!=typeof k){k=b64d(k).split(",");var f=a(this).attr("referer-list-type"),h=!1;a.each(k,function(a,b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==b.charAt(b.length-1)){if(b=b.substr(1,
|
5 |
+
b.length-2),-1!=n.indexOf(b))return h=!0,!1}else{if(b=b.substr(1),n.substr(-b.length)==b)return h=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==n.indexOf(b))return h=!0,!1}else if("#"==b){if(""==n)return h=!0,!1}else if(b==n)return h=!0,!1});switch(f){case "B":h&&(c=!1);break;case "W":h||(c=!1)}}k=a(this).attr("client-list");if("undefined"!=typeof k&&"undefined"!==typeof z)switch(k=b64d(k).split(","),f=a(this).attr("client-list-type"),h=!1,a.each(k,function(a,b){if(""==b)return!0;
|
6 |
+
if("*"==b.charAt(0))if("*"==b.charAt(b.length-1)){if(b=b.substr(1,b.length-2).toLowerCase(),-1!=w.indexOf(b))return h=!0,!1}else{if(b=b.substr(1).toLowerCase(),w.substr(-b.length)==b)return h=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1).toLowerCase(),0==w.indexOf(b))return h=!0,!1}else if(z.is(b))return h=!0,!1}),f){case "B":h&&(c=!1);break;case "W":h||(c=!1)}k=!1;if(c&&(f=a(this).attr("parameter-list"),"undefined"!=typeof f)){f=b64d(f).split(",");var e=a(this).attr("parameter-list-type"),
|
7 |
+
g=[];t.forEach(function(a){a=a.split("=");try{var b=JSON.parse(decodeURIComponent(a[1]))}catch(B){b=decodeURIComponent(a[1])}g[a[0]]=b});h=!1;a.each(f,function(a,b){if(-1!=b.indexOf("=")){if(-1!=t.indexOf(b))return h=!0,!1;var c=b.split("=");if(u(g,c[0],c[1]))return h=!0,!1}else if(t.forEach(function(a){a=a.split("=");if(b==a[0])return h=!0,!1}),u(g,b,"!@!"))return h=!0,!1});switch(e){case "B":h&&(c=!1);break;case "W":h||(c=!1)}!c&&a(this).hasClass("ai-list-manual")?(k=!0,a(this).addClass("ai-list-data")):
|
8 |
+
a(this).removeClass("ai-list-manual")}var l=a(this).prevAll(".ai-debug-bar.ai-debug-lists");f=""==n?"#":n;l.find(".ai-debug-name.ai-list-info").text(f).attr("title",v);l.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);f=!1;if(c){var m=a(this).attr("scheduling-start");l=a(this).attr("scheduling-end");var q=a(this).attr("scheduling-days");if("undefined"!=typeof m&&"undefined"!=typeof l&&"undefined"!=typeof q){f=!0;var x=parseInt(a(this).attr("scheduling-fallback"));e=
|
9 |
+
parseInt(a(this).attr("gmt"));var r=p(b64d(m))+e;l=p(b64d(l))+e;m=b64d(q).split(",");q=a(this).attr("scheduling-type");var y=(new Date).getTime()+e,A=new Date(y);e=A.getDay();0==e?e=6:e--;r=y>=r&&y<l&&m.includes(e.toString());switch(q){case "B":r=!r}r||(c=!1);q=A.toISOString().split(".")[0].replace("T"," ");l=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");l.find(".ai-debug-name.ai-scheduling-info").text(q+" "+e);l.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);
|
10 |
+
c||0==x||(l.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),l.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+x))}}k||(a(this).css({visibility:"",position:"",width:"",height:"","z-index":""}),c?(d.css({visibility:""}),d.hasClass("ai-remove-position")&&d.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=b64d(a(this).data("code")),a(this).append(c),ai_process_element(this))):f&&!r&&0!=x?(d.css({visibility:""}),d.hasClass("ai-remove-position")&&d.css({position:""}),
|
11 |
+
a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=typeof a(this).data("fallback-code")?(c=b64d(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=d.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&d.attr("data-ai",c))):(a(this).hide(),d.removeAttr("data-ai").removeClass("ai-track"),d.find(".ai-debug-block").length?(d.css({visibility:""}).removeClass("ai-close"),d.hasClass("ai-remove-position")&&
|
12 |
+
d.css({position:""})):d.hide()),a(this).attr("data-code",""),a(this).attr("data-fallback-code",""),d.removeClass("ai-list-block"))})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});
|
13 |
+
function ai_process_element(a){setTimeout(function(){"function"==typeof ai_process_rotations_in_element&&ai_process_rotations_in_element(a);"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data",a));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data",a));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks(a)},5)}
|
14 |
+
function getAllUrlParams(a){var g=a?a.split("?")[1]:window.location.search.slice(1);a={};if(g){g=g.split("#")[0];g=g.split("&");for(var p=0;p<g.length;p++){var d=g[p].split("="),m=void 0,e=d[0].replace(/\[\d*\]/,function(a){m=a.slice(1,-1);return""});d="undefined"===typeof d[1]?"":d[1];e=e.toLowerCase();d=d.toLowerCase();a[e]?("string"===typeof a[e]&&(a[e]=[a[e]]),"undefined"===typeof m?a[e].push(d):a[e][m]=d):a[e]=d}}return a};
|
includes/js/ai-rotate.js
CHANGED
@@ -1,22 +1,5 @@
|
|
1 |
jQuery (function ($) {
|
2 |
|
3 |
-
// function b64e (str) {
|
4 |
-
// // first we use encodeURIComponent to get percent-encoded UTF-8,
|
5 |
-
// // then we convert the percent encodings into raw bytes which
|
6 |
-
// // can be fed into btoa.
|
7 |
-
// return btoa(encodeURIComponent (str).replace (/%([0-9A-F]{2})/g,
|
8 |
-
// function toSolidBytes (match, p1) {
|
9 |
-
// return String.fromCharCode ('0x' + p1);
|
10 |
-
// }));
|
11 |
-
// }
|
12 |
-
|
13 |
-
// function b64d (str) {
|
14 |
-
// // Going backwards: from bytestream, to percent-encoding, to original string.
|
15 |
-
// return decodeURIComponent (atob (str).split ('').map (function(c) {
|
16 |
-
// return '%' + ('00' + c.charCodeAt (0).toString (16)).slice (-2);
|
17 |
-
// }).join (''));
|
18 |
-
// }
|
19 |
-
|
20 |
var ai_rotation_triggers = new Array ();
|
21 |
|
22 |
ai_process_rotation = function (rotation_block) {
|
@@ -355,6 +338,10 @@ function ai_process_elements () {
|
|
355 |
if (typeof ai_process_ip_addresses == 'function') {
|
356 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data"));
|
357 |
}
|
|
|
|
|
|
|
|
|
358 |
}, 5);
|
359 |
ai_process_elements_active = true;
|
360 |
}
|
1 |
jQuery (function ($) {
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
var ai_rotation_triggers = new Array ();
|
4 |
|
5 |
ai_process_rotation = function (rotation_block) {
|
338 |
if (typeof ai_process_ip_addresses == 'function') {
|
339 |
ai_process_ip_addresses (jQuery ("div.ai-ip-data"));
|
340 |
}
|
341 |
+
|
342 |
+
if (typeof ai_adb_process_blocks == 'function') {
|
343 |
+
ai_adb_process_blocks ();
|
344 |
+
}
|
345 |
}, 5);
|
346 |
ai_process_elements_active = true;
|
347 |
}
|
includes/js/ai-rotate.min.js
CHANGED
@@ -5,4 +5,4 @@ c,!1})})}else{var e=a(d).data("shares");if("string"===typeof e){e=JSON.parse(ato
|
|
5 |
(k=!1);k&&(l.push(n),setTimeout(function(){a(n).addClass("ai-timer");ai_process_rotation(a(n))},1E3*b));e=" ("+b+" s)"}}else"undefined"==typeof f.data("group")&&h.each(function(b){b!=g&&a(this).remove()});f.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");a(d).css({position:""});"undefined"!=typeof f.data("code")&&(h.empty(),b=b64d(f.data("code")),f.append(b),ai_process_elements());f=b64d(f.data("name"));
|
6 |
c=a(d).closest(".ai-debug-block");0!=c.length&&(b=c.find("kbd.ai-option-name"),c=c.find(".ai-debug-block"),"undefined"!=typeof c&&(c=c.find("kbd.ai-option-name"),b=b.slice(0,b.length-c.length)),"undefined"!=typeof b&&(c=b.first().data("separator"),"undefined"==typeof c&&(c=""),b.html(c+f+e)));b=!1;c=a(d).closest(".ai-adb-show");0!=c.length&&c.attr("data-ai-tracking")&&(e=JSON.parse(b64d(c.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,c.attr("data-ai-tracking",
|
7 |
b64e(JSON.stringify(e))),b=!0));b||(b=a(d).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(b64d(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,b.attr("data-ai",b64e(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=function(d){a("div.ai-rotate",d).each(function(a,d){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},
|
8 |
-
10)})});ai_process_elements_active=!1;function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"))},5);ai_process_elements_active=!0};
|
5 |
(k=!1);k&&(l.push(n),setTimeout(function(){a(n).addClass("ai-timer");ai_process_rotation(a(n))},1E3*b));e=" ("+b+" s)"}}else"undefined"==typeof f.data("group")&&h.each(function(b){b!=g&&a(this).remove()});f.css({display:"",visibility:"",position:"",width:"",height:"",top:"",left:""}).removeClass("ai-rotate-hidden").removeClass("ai-rotate-hidden-2");a(d).css({position:""});"undefined"!=typeof f.data("code")&&(h.empty(),b=b64d(f.data("code")),f.append(b),ai_process_elements());f=b64d(f.data("name"));
|
6 |
c=a(d).closest(".ai-debug-block");0!=c.length&&(b=c.find("kbd.ai-option-name"),c=c.find(".ai-debug-block"),"undefined"!=typeof c&&(c=c.find("kbd.ai-option-name"),b=b.slice(0,b.length-c.length)),"undefined"!=typeof b&&(c=b.first().data("separator"),"undefined"==typeof c&&(c=""),b.html(c+f+e)));b=!1;c=a(d).closest(".ai-adb-show");0!=c.length&&c.attr("data-ai-tracking")&&(e=JSON.parse(b64d(c.attr("data-ai-tracking"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,c.attr("data-ai-tracking",
|
7 |
b64e(JSON.stringify(e))),b=!0));b||(b=a(d).closest("div[data-ai]"),"undefined"!=typeof b.attr("data-ai")&&(e=JSON.parse(b64d(b.attr("data-ai"))),"undefined"!==typeof e&&e.constructor===Array&&(e[1]=g+1,e[3]=f,b.attr("data-ai",b64e(JSON.stringify(e))))))}}};ai_process_rotations=function(){a("div.ai-rotate").each(function(a,k){ai_process_rotation(this)})};ai_process_rotations_in_element=function(d){a("div.ai-rotate",d).each(function(a,d){ai_process_rotation(this)})};a(document).ready(function(a){setTimeout(function(){ai_process_rotations()},
|
8 |
+
10)})});ai_process_elements_active=!1;function ai_process_elements(){ai_process_elements_active||setTimeout(function(){ai_process_elements_active=!1;"function"==typeof ai_process_rotations&&ai_process_rotations();"function"==typeof ai_process_lists&&ai_process_lists(jQuery("div.ai-list-data"));"function"==typeof ai_process_ip_addresses&&ai_process_ip_addresses(jQuery("div.ai-ip-data"));"function"==typeof ai_adb_process_blocks&&ai_adb_process_blocks()},5);ai_process_elements_active=!0};
|
includes/js/theia-sticky-sidebar.js
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Copyright 2013-2016 WeCodePixels and other contributors
|
8 |
* Released under the MIT license
|
9 |
*/
|
10 |
-
|
11 |
(function ($) {
|
12 |
$.fn.theiaStickySidebar = function (options) {
|
13 |
var defaults = {
|
@@ -370,4 +370,3 @@
|
|
370 |
}
|
371 |
})(jQuery);
|
372 |
|
373 |
-
//# sourceMappingURL=maps/theia-sticky-sidebar.js.map
|
7 |
* Copyright 2013-2016 WeCodePixels and other contributors
|
8 |
* Released under the MIT license
|
9 |
*/
|
10 |
+
;
|
11 |
(function ($) {
|
12 |
$.fn.theiaStickySidebar = function (options) {
|
13 |
var defaults = {
|
370 |
}
|
371 |
})(jQuery);
|
372 |
|
|
includes/preview.php
CHANGED
@@ -2243,11 +2243,28 @@ input {
|
|
2243 |
<table class="screen" cellspacing=0 cellpadding=0>
|
2244 |
<tr>
|
2245 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2246 |
$previous_width = 0;
|
2247 |
$previous_name = '';
|
2248 |
-
|
2249 |
-
|
2250 |
-
|
|
|
|
|
|
|
2251 |
if ($viewport_name != '' && $viewport_width != 0) {
|
2252 |
echo "<td class='viewport-box' data='", $viewport_width, "' style='background: #eee; text-align: center; border: 1px solid #888; border-left-width: 0; min-width: ", $viewport_width - $previous_width - 1, "px'>",
|
2253 |
$previous_name, "<span style='float: left; margin-left: 5px;'>", $previous_width != 0 ? $previous_width . "px" : "", "</span></td>";
|
@@ -2255,7 +2272,7 @@ input {
|
|
2255 |
$previous_name = $viewport_name;
|
2256 |
$previous_width = $viewport_width;
|
2257 |
}
|
2258 |
-
echo "<td style='background: #eee; text-align: left; border: 1px solid #888; border-left-width: 0; min-width: 2000px'><span style='margin-left: 30px;'>",
|
2259 |
?>
|
2260 |
</tr>
|
2261 |
</table>
|
2243 |
<table class="screen" cellspacing=0 cellpadding=0>
|
2244 |
<tr>
|
2245 |
<?php
|
2246 |
+
|
2247 |
+
$viewport_data = array ();
|
2248 |
+
for ($viewport = 1; $viewport <= 6; $viewport ++) {
|
2249 |
+
$viewport_name = get_viewport_name ($viewport);
|
2250 |
+
$viewport_width = get_viewport_width ($viewport);
|
2251 |
+
if ($viewport_name != '') {
|
2252 |
+
$viewport_data []= array ('index' => $viewport, 'name' => $viewport_name, 'width' => $viewport_width);
|
2253 |
+
}
|
2254 |
+
}
|
2255 |
+
|
2256 |
+
usort ($viewport_data, 'ai_compare_viewport');
|
2257 |
+
$widest_viewport_name = $viewport_data [0]['name'];
|
2258 |
+
$viewport_data = array_reverse ($viewport_data);
|
2259 |
+
|
2260 |
$previous_width = 0;
|
2261 |
$previous_name = '';
|
2262 |
+
|
2263 |
+
// for ($viewport_index = 6 - 1; $viewport_index > 0; $viewport_index --) {
|
2264 |
+
foreach ($viewport_data as $index => $viewport) {
|
2265 |
+
|
2266 |
+
$viewport_name = $viewport ['name'];
|
2267 |
+
$viewport_width = $viewport ['width'];
|
2268 |
if ($viewport_name != '' && $viewport_width != 0) {
|
2269 |
echo "<td class='viewport-box' data='", $viewport_width, "' style='background: #eee; text-align: center; border: 1px solid #888; border-left-width: 0; min-width: ", $viewport_width - $previous_width - 1, "px'>",
|
2270 |
$previous_name, "<span style='float: left; margin-left: 5px;'>", $previous_width != 0 ? $previous_width . "px" : "", "</span></td>";
|
2272 |
$previous_name = $viewport_name;
|
2273 |
$previous_width = $viewport_width;
|
2274 |
}
|
2275 |
+
echo "<td style='background: #eee; text-align: left; border: 1px solid #888; border-left-width: 0; min-width: 2000px'><span style='margin-left: 30px;'>", $widest_viewport_name, "</span><span style='float: left; margin-left: 5px;'>", $previous_width != 0 ? $previous_width . "px" : "", "</span></td>";
|
2276 |
?>
|
2277 |
</tr>
|
2278 |
</table>
|
js/ad-inserter.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
var javascript_version = "2.6.
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
@@ -1664,6 +1664,7 @@ jQuery(document).ready (function($) {
|
|
1664 |
|
1665 |
$("#sticky-position-"+block).hide();
|
1666 |
$("#sticky-animation-"+block).hide();
|
|
|
1667 |
$("#sticky-background-"+block).find ('.bkg-parameters').hide();
|
1668 |
|
1669 |
$('#tracking-wrapping-warning-' + block).hide ();
|
@@ -1692,6 +1693,7 @@ jQuery(document).ready (function($) {
|
|
1692 |
if (is_sticky ($("#custom-css-"+block).val ())) {
|
1693 |
$("#sticky-position-"+block).show();
|
1694 |
$("#sticky-animation-"+block).show();
|
|
|
1695 |
$("select#animation-"+block).change ();
|
1696 |
|
1697 |
if (is_background ($("#custom-css-"+block).val ()) && $("input#background-"+block).is(":checked")) {
|
@@ -1730,6 +1732,7 @@ jQuery(document).ready (function($) {
|
|
1730 |
$("#icons-css-code-" + block).show();
|
1731 |
$("#sticky-position-"+block).show();
|
1732 |
$("#sticky-animation-"+block).show();
|
|
|
1733 |
$("select#animation-"+block).change ();
|
1734 |
|
1735 |
if ($("select#horizontal-position-"+block+" option:selected").attr('value') == AI_STICK_HORIZONTAL_CENTER && $("input#background-"+block).is(":checked")) {
|
@@ -1911,6 +1914,13 @@ jQuery(document).ready (function($) {
|
|
1911 |
setTimeout (function() {$('#ai-loading').hide ();}, 1000);
|
1912 |
}
|
1913 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1914 |
function configure_statistics_toolbar (tab) {
|
1915 |
$("input#load-custom-range-"+tab).click (function () {
|
1916 |
var block = $(this).attr ("id");
|
@@ -1937,6 +1947,31 @@ jQuery(document).ready (function($) {
|
|
1937 |
adb = '&adb=1';
|
1938 |
}
|
1939 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1940 |
container.load (ajaxurl+"?action=ai_ajax_backend&statistics=" + block + "&start-date=" + start_date + "&end-date=" + end_date + delete_range + adb + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
1941 |
label.removeClass ('on');
|
1942 |
if ( status == "error" ) {
|
@@ -1944,7 +1979,8 @@ jQuery(document).ready (function($) {
|
|
1944 |
$("div#load-error-" + block).html (message);
|
1945 |
if (debug) console.log (message);
|
1946 |
} else {
|
1947 |
-
$("span#export-
|
|
|
1948 |
var public_report_button = $("#ai-main-toolbar-" + block + ' .public-report-button');
|
1949 |
public_report_button.show ();
|
1950 |
|
@@ -2184,7 +2220,8 @@ jQuery(document).ready (function($) {
|
|
2184 |
|
2185 |
$("input#statistics-button-0").checkboxButton ().click (function () {
|
2186 |
$("div#statistics-container-0").toggle ();
|
2187 |
-
$("span#export-
|
|
|
2188 |
$("div#tab-tracking-settings").toggle ();
|
2189 |
var container = $("div#statistics-container-0");
|
2190 |
if (container.is(':visible')) {
|
@@ -2195,10 +2232,13 @@ jQuery(document).ready (function($) {
|
|
2195 |
}
|
2196 |
});
|
2197 |
|
2198 |
-
$("#export-
|
2199 |
export_statistics_pdf (0);
|
2200 |
});
|
2201 |
|
|
|
|
|
|
|
2202 |
|
2203 |
$('#enable-adb-detection').checkboxButton ();
|
2204 |
|
@@ -2542,7 +2582,8 @@ jQuery(document).ready (function($) {
|
|
2542 |
// $("#show-css-button-"+block+" span").text (ai_admin.show);
|
2543 |
// $("#show-css-button-"+block).removeClass ('light-blue');
|
2544 |
$("#sticky-animation-"+block).hide ();
|
2545 |
-
$("#sticky-background-"+block).
|
|
|
2546 |
}
|
2547 |
});
|
2548 |
|
@@ -2755,11 +2796,16 @@ jQuery(document).ready (function($) {
|
|
2755 |
}
|
2756 |
});
|
2757 |
|
2758 |
-
$("#export-
|
2759 |
var block = $(this).attr ("id").tabIndex ();
|
2760 |
export_statistics_pdf (block);
|
2761 |
});
|
2762 |
|
|
|
|
|
|
|
|
|
|
|
2763 |
$("input#adb-statistics-button-"+tab).checkboxButton ().click (function () {
|
2764 |
var block = $(this).attr ("id");
|
2765 |
block = block.replace ("adb-statistics-button-","");
|
@@ -3539,7 +3585,7 @@ jQuery(document).ready (function($) {
|
|
3539 |
}
|
3540 |
|
3541 |
frame = wp.media ({
|
3542 |
-
title: ai_admin.
|
3543 |
button: {
|
3544 |
text: ai_admin.use_this_image
|
3545 |
},
|
1 |
+
var javascript_version = "2.6.9";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
1664 |
|
1665 |
$("#sticky-position-"+block).hide();
|
1666 |
$("#sticky-animation-"+block).hide();
|
1667 |
+
$("#sticky-background-"+block).hide();
|
1668 |
$("#sticky-background-"+block).find ('.bkg-parameters').hide();
|
1669 |
|
1670 |
$('#tracking-wrapping-warning-' + block).hide ();
|
1693 |
if (is_sticky ($("#custom-css-"+block).val ())) {
|
1694 |
$("#sticky-position-"+block).show();
|
1695 |
$("#sticky-animation-"+block).show();
|
1696 |
+
$("#sticky-background-"+block).show();
|
1697 |
$("select#animation-"+block).change ();
|
1698 |
|
1699 |
if (is_background ($("#custom-css-"+block).val ()) && $("input#background-"+block).is(":checked")) {
|
1732 |
$("#icons-css-code-" + block).show();
|
1733 |
$("#sticky-position-"+block).show();
|
1734 |
$("#sticky-animation-"+block).show();
|
1735 |
+
$("#sticky-background-"+block).show();
|
1736 |
$("select#animation-"+block).change ();
|
1737 |
|
1738 |
if ($("select#horizontal-position-"+block+" option:selected").attr('value') == AI_STICK_HORIZONTAL_CENTER && $("input#background-"+block).is(":checked")) {
|
1914 |
setTimeout (function() {$('#ai-loading').hide ();}, 1000);
|
1915 |
}
|
1916 |
|
1917 |
+
function export_statistics_csv (block) {
|
1918 |
+
$('#ai-loading').show ();
|
1919 |
+
$("span#export-csv-button-"+block).addClass ('on');
|
1920 |
+
setTimeout (function() {$("input#load-custom-range-"+block).click ();}, 5);
|
1921 |
+
setTimeout (function() {$('#ai-loading').hide ();}, 1000);
|
1922 |
+
}
|
1923 |
+
|
1924 |
function configure_statistics_toolbar (tab) {
|
1925 |
$("input#load-custom-range-"+tab).click (function () {
|
1926 |
var block = $(this).attr ("id");
|
1947 |
adb = '&adb=1';
|
1948 |
}
|
1949 |
|
1950 |
+
if ($("span#export-csv-button-"+block).hasClass ('on')) {
|
1951 |
+
$("span#export-csv-button-"+block).removeClass ('on');
|
1952 |
+
|
1953 |
+
var params = {'action': 'ai_ajax_backend', 'statistics': block, 'start-date': start_date, 'end-date': end_date, 'delete_range': delete_range == '' ? '' : 1, 'adb': adb == '' ? '' : 1, 'csv' : 1, 'ai_check': ai_nonce};
|
1954 |
+
|
1955 |
+
var form = document.createElement("form");
|
1956 |
+
form.setAttribute("method", "get");
|
1957 |
+
form.setAttribute("action", ajaxurl);
|
1958 |
+
for (var i in params) {
|
1959 |
+
if (params.hasOwnProperty(i)) {
|
1960 |
+
var input = document.createElement('input');
|
1961 |
+
input.type = 'hidden';
|
1962 |
+
input.name = i;
|
1963 |
+
input.value = encodeURI (params[i]);
|
1964 |
+
form.appendChild(input);
|
1965 |
+
}
|
1966 |
+
}
|
1967 |
+
document.body.appendChild (form);
|
1968 |
+
form.submit();
|
1969 |
+
document.body.removeChild (form);
|
1970 |
+
|
1971 |
+
label.removeClass ('on');
|
1972 |
+
return;
|
1973 |
+
}
|
1974 |
+
|
1975 |
container.load (ajaxurl+"?action=ai_ajax_backend&statistics=" + block + "&start-date=" + start_date + "&end-date=" + end_date + delete_range + adb + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
1976 |
label.removeClass ('on');
|
1977 |
if ( status == "error" ) {
|
1979 |
$("div#load-error-" + block).html (message);
|
1980 |
if (debug) console.log (message);
|
1981 |
} else {
|
1982 |
+
$("span#export-pdf-button-" + block).show ();
|
1983 |
+
$("span#export-csv-button-" + block).show ();
|
1984 |
var public_report_button = $("#ai-main-toolbar-" + block + ' .public-report-button');
|
1985 |
public_report_button.show ();
|
1986 |
|
2220 |
|
2221 |
$("input#statistics-button-0").checkboxButton ().click (function () {
|
2222 |
$("div#statistics-container-0").toggle ();
|
2223 |
+
$("span#export-pdf-button-0").toggle ();
|
2224 |
+
$("span#export-csv-button-0").toggle ();
|
2225 |
$("div#tab-tracking-settings").toggle ();
|
2226 |
var container = $("div#statistics-container-0");
|
2227 |
if (container.is(':visible')) {
|
2232 |
}
|
2233 |
});
|
2234 |
|
2235 |
+
$("#export-pdf-button-0").click (function () {
|
2236 |
export_statistics_pdf (0);
|
2237 |
});
|
2238 |
|
2239 |
+
$("#export-csv-button-0").click (function () {
|
2240 |
+
export_statistics_csv (0);
|
2241 |
+
});
|
2242 |
|
2243 |
$('#enable-adb-detection').checkboxButton ();
|
2244 |
|
2582 |
// $("#show-css-button-"+block+" span").text (ai_admin.show);
|
2583 |
// $("#show-css-button-"+block).removeClass ('light-blue');
|
2584 |
$("#sticky-animation-"+block).hide ();
|
2585 |
+
$("#sticky-background-"+block).hide();
|
2586 |
+
// $("#sticky-background-"+block).find ('.bkg-parameters').hide();
|
2587 |
}
|
2588 |
});
|
2589 |
|
2796 |
}
|
2797 |
});
|
2798 |
|
2799 |
+
$("#export-pdf-button-"+tab).click (function () {
|
2800 |
var block = $(this).attr ("id").tabIndex ();
|
2801 |
export_statistics_pdf (block);
|
2802 |
});
|
2803 |
|
2804 |
+
$("#export-csv-button-"+tab).click (function () {
|
2805 |
+
var block = $(this).attr ("id").tabIndex ();
|
2806 |
+
export_statistics_csv (block);
|
2807 |
+
});
|
2808 |
+
|
2809 |
$("input#adb-statistics-button-"+tab).checkboxButton ().click (function () {
|
2810 |
var block = $(this).attr ("id");
|
2811 |
block = block.replace ("adb-statistics-button-","");
|
3585 |
}
|
3586 |
|
3587 |
frame = wp.media ({
|
3588 |
+
title: ai_admin.select_background_image,
|
3589 |
button: {
|
3590 |
text: ai_admin.use_this_image
|
3591 |
},
|
languages/ad-inserter-sl_SI.mo
CHANGED
Binary file
|
languages/ad-inserter-sl_SI.po
CHANGED
@@ -4,8 +4,8 @@ msgid ""
|
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
-
"PO-Revision-Date: 2020-
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
@@ -16,134 +16,134 @@ msgstr ""
|
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
-
#: ad-inserter.php:
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
-
#: ad-inserter.php:
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
-
#: ad-inserter.php:
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
-
#: ad-inserter.php:
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
-
#: ad-inserter.php:
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
-
#: ad-inserter.php:
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
-
#: ad-inserter.php:
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
-
#: ad-inserter.php:
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
-
#: ad-inserter.php:
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
-
#: ad-inserter.php:
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
-
#: ad-inserter.php:
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
-
#: ad-inserter.php:
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
-
#: ad-inserter.php:
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
-
#: ad-inserter.php:
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
-
#: ad-inserter.php:
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
-
#: ad-inserter.php:
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
-
#: ad-inserter.php:
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
-
#: ad-inserter.php:
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
-
#: ad-inserter.php:
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
-
#: ad-inserter.php:
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
-
#: ad-inserter.php:
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
@@ -151,24 +151,24 @@ msgstr[1] "Hej, trenutno uporabljate %1$s %2$s bloka."
|
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
-
#: ad-inserter.php:
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
-
#: ad-inserter.php:
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
-
#: ad-inserter.php:
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
-
#: ad-inserter.php:
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
@@ -176,7 +176,7 @@ msgstr ""
|
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
-
#: ad-inserter.php:
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
@@ -184,28 +184,28 @@ msgstr ""
|
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
-
#: ad-inserter.php:
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
-
#: ad-inserter.php:
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
-
#: ad-inserter.php:
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
-
#: ad-inserter.php:
|
209 |
msgid ""
|
210 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
211 |
"theme"
|
@@ -213,78 +213,78 @@ msgstr ""
|
|
213 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
214 |
"drugimi vtičniki ali temo"
|
215 |
|
216 |
-
#: ad-inserter.php:
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
-
#: ad-inserter.php:
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
-
#: ad-inserter.php:
|
227 |
-
#: includes/preview.php:
|
228 |
-
#: includes/preview.php:
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
-
#: ad-inserter.php:
|
233 |
msgid "Name"
|
234 |
msgstr "Ime"
|
235 |
|
236 |
-
#: ad-inserter.php:
|
237 |
msgid "Default insertion"
|
238 |
msgstr "Privzeto vstavljanje"
|
239 |
|
240 |
#. translators: For this post or page
|
241 |
-
#: ad-inserter.php:
|
242 |
msgctxt "Page"
|
243 |
msgid "For this"
|
244 |
msgstr "Za to"
|
245 |
|
246 |
-
#: ad-inserter.php:
|
247 |
msgctxt "Post"
|
248 |
msgid "For this"
|
249 |
msgstr "Za ta"
|
250 |
|
251 |
-
#: ad-inserter.php:
|
252 |
msgctxt "Enabled/disabled on all"
|
253 |
msgid "pages"
|
254 |
msgstr "straneh"
|
255 |
|
256 |
-
#: ad-inserter.php:
|
257 |
msgctxt "Enabled/disabled on all"
|
258 |
msgid "posts"
|
259 |
msgstr "prispevkih"
|
260 |
|
261 |
-
#: ad-inserter.php:
|
262 |
msgid "Enabled"
|
263 |
msgstr "Omogočeno"
|
264 |
|
265 |
#. translators: Menu items
|
266 |
-
#: ad-inserter.php:
|
267 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
268 |
-
#: includes/functions.php:
|
269 |
msgid "Disabled"
|
270 |
msgstr "Onemogočeno"
|
271 |
|
272 |
-
#: ad-inserter.php:
|
273 |
msgid "No individual exceptions"
|
274 |
msgstr "Ni posameznih izjem"
|
275 |
|
276 |
#. translators: Not enabled for pages or posts
|
277 |
-
#: ad-inserter.php:
|
278 |
msgid "Not enabled for"
|
279 |
msgstr "Ni omogočeno za"
|
280 |
|
281 |
#. translators: No individual exceptions enabled for pages or posts
|
282 |
-
#: ad-inserter.php:
|
283 |
msgid "No block has individual exceptions enabled"
|
284 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
285 |
|
286 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
287 |
-
#: ad-inserter.php:
|
288 |
msgid ""
|
289 |
"Default insertion can be configured for each block on %1$s page - button "
|
290 |
"next to %2$s checkbox."
|
@@ -292,11 +292,11 @@ msgstr ""
|
|
292 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
293 |
"poleg kljukice za vklop %2$s."
|
294 |
|
295 |
-
#: ad-inserter.php:
|
296 |
msgid "Tag / Archive pages"
|
297 |
msgstr "Strani oznak / arhiva"
|
298 |
|
299 |
-
#: ad-inserter.php:
|
300 |
msgid ""
|
301 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
302 |
"listed here to change default insertion for this post or page."
|
@@ -304,7 +304,7 @@ msgstr ""
|
|
304 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
305 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
306 |
|
307 |
-
#: ad-inserter.php:
|
308 |
msgid ""
|
309 |
"This way you can individually enable or disable blocks on specific posts or "
|
310 |
"pages."
|
@@ -312,61 +312,61 @@ msgstr ""
|
|
312 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
313 |
"prispevku ali strani."
|
314 |
|
315 |
-
#: ad-inserter.php:
|
316 |
msgid "For more information check page %s"
|
317 |
msgstr "Za več informacij poglejte stran %s"
|
318 |
|
319 |
#. translators: Ad Inserter Exceptions documentation page
|
320 |
-
#: ad-inserter.php:
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Posamezne Izjeme"
|
323 |
|
324 |
-
#: ad-inserter.php:
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATIČNA STRAN"
|
327 |
|
328 |
-
#: ad-inserter.php:
|
329 |
msgid "POST"
|
330 |
msgstr "PRISPEVEK"
|
331 |
|
332 |
-
#: ad-inserter.php:
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "DOMAČA STRAN"
|
335 |
|
336 |
-
#: ad-inserter.php:
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "STRAN KATEGORIJE"
|
339 |
|
340 |
-
#: ad-inserter.php:
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "STRAN ISKANJE"
|
343 |
|
344 |
-
#: ad-inserter.php:
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "STRAN ARHIVA"
|
347 |
|
348 |
-
#: ad-inserter.php:
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "STRAN NAPAKA 404"
|
351 |
|
352 |
-
#: ad-inserter.php:
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX KLIC"
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "NEZNAN TIP STRANI"
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "Click to delete ad blocking detection cokies"
|
362 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
363 |
|
364 |
-
#: ad-inserter.php:
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
-
#: ad-inserter.php:
|
370 |
msgid ""
|
371 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
372 |
"positions"
|
@@ -374,11 +374,11 @@ msgstr ""
|
|
374 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
375 |
"položaje"
|
376 |
|
377 |
-
#: ad-inserter.php:
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Koda za vstavljanje"
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "znak"
|
@@ -386,16 +386,16 @@ msgstr[1] "znaka"
|
|
386 |
msgstr[2] "znaki"
|
387 |
msgstr[3] "znakov"
|
388 |
|
389 |
-
#: ad-inserter.php:
|
390 |
msgid "Header code"
|
391 |
msgstr "Koda v glavi"
|
392 |
|
393 |
-
#: ad-inserter.php:
|
394 |
msgctxt "Header code"
|
395 |
msgid "DISABLED"
|
396 |
msgstr "ONEMOGOČENA"
|
397 |
|
398 |
-
#: ad-inserter.php:
|
399 |
msgid "character inserted"
|
400 |
msgid_plural "characters inserted"
|
401 |
msgstr[0] "znak vstavljen"
|
@@ -403,39 +403,39 @@ msgstr[1] "znaka vstavljena"
|
|
403 |
msgstr[2] "znaki vstavljeni"
|
404 |
msgstr[3] "znakov vstavljenih"
|
405 |
|
406 |
-
#: ad-inserter.php:
|
407 |
msgid "Footer code"
|
408 |
msgstr "Koda v nogi"
|
409 |
|
410 |
-
#: ad-inserter.php:
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ONEMOGOČENA"
|
414 |
|
415 |
-
#: ad-inserter.php:
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT NE DELA"
|
418 |
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
422 |
|
423 |
-
#: ad-inserter.php:
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT NAPAKE"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
-
#: ad-inserter.php:
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Privzeti"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
-
#: ad-inserter.php:
|
435 |
msgid "Error importing %s settings."
|
436 |
msgstr "Napaka pri uvozu %s nastavitev."
|
437 |
|
438 |
-
#: ad-inserter.php:
|
439 |
msgid "Error importing settings for block"
|
440 |
msgid_plural "Error importing settings for blocks:"
|
441 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
@@ -443,22 +443,22 @@ msgstr[1] "Napaka pri uvozu nastavitev za bloka:"
|
|
443 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
445 |
|
446 |
-
#: ad-inserter.php:
|
447 |
msgid "Settings saved."
|
448 |
msgstr "Nastavitve shranjene."
|
449 |
|
450 |
#. translators: %s: Ad Inserter
|
451 |
-
#: ad-inserter.php:
|
452 |
msgid "Invalid data received - %s settings not saved."
|
453 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
454 |
|
455 |
-
#: ad-inserter.php:
|
456 |
msgid "Settings cleared."
|
457 |
msgstr "Nastavitve ponastavljene."
|
458 |
|
459 |
#. Translators: Post/Static page must have between X and Y words
|
460 |
-
#: ad-inserter.php:
|
461 |
-
#: settings.php:
|
462 |
msgid "word"
|
463 |
msgid_plural "words"
|
464 |
msgstr[0] "besedo"
|
@@ -466,43 +466,43 @@ msgstr[1] "besedi"
|
|
466 |
msgstr[2] "besede"
|
467 |
msgstr[3] "besed"
|
468 |
|
469 |
-
#: ad-inserter.php:
|
470 |
msgid "HTML TAGS REMOVED"
|
471 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
472 |
|
473 |
-
#: ad-inserter.php:
|
474 |
msgid "BEFORE COMMENTS"
|
475 |
msgstr "PRED KOMENTARJI"
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid "AFTER COMMENTS"
|
479 |
msgstr "PO KOMETARJIH"
|
480 |
|
481 |
-
#: ad-inserter.php:
|
482 |
msgid "BETWEEN COMMENTS"
|
483 |
msgstr "MED KOMENTARJI"
|
484 |
|
485 |
-
#: ad-inserter.php:
|
486 |
msgctxt "category name"
|
487 |
msgid "Uncategorized"
|
488 |
msgstr "Nekategorizirano"
|
489 |
|
490 |
-
#: ad-inserter.php:
|
491 |
msgid "requires WordPress 4.6 or newer"
|
492 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
493 |
|
494 |
-
#: ad-inserter.php:
|
495 |
msgid "Please update!"
|
496 |
msgstr "Prosimo, posodobite!"
|
497 |
|
498 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
499 |
#. name with HTML tags will be added)
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid "Thank you for installing"
|
502 |
msgstr "Hvala za namestitev vtičnika"
|
503 |
|
504 |
#. translators: Opt-in message: %s: HTML tags
|
505 |
-
#: ad-inserter.php:
|
506 |
msgid ""
|
507 |
"We would like to %s track its usage %s on your site. This is completely "
|
508 |
"optional and can be disabled at any time."
|
@@ -510,7 +510,7 @@ msgstr ""
|
|
510 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
511 |
"izbirno in se lahko izključi kadarkoli."
|
512 |
|
513 |
-
#: ad-inserter.php:
|
514 |
msgid ""
|
515 |
"We don't record any sensitive data, only information regarding the WordPress "
|
516 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -520,7 +520,7 @@ msgstr ""
|
|
520 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
521 |
|
522 |
#. translators: Deactivation message: %s: HTML tags
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid ""
|
525 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
526 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -531,51 +531,51 @@ msgstr ""
|
|
531 |
"nam %s in poskušali vam bomo pomagati."
|
532 |
|
533 |
#. translators: %s: Ad Inserter
|
534 |
-
#: ad-inserter.php:
|
535 |
msgid "%s block."
|
536 |
msgstr "%s blok."
|
537 |
|
538 |
#. translators: widget title
|
539 |
-
#: ad-inserter.php:
|
540 |
msgid "Processing log"
|
541 |
msgstr "Dnevnik procesiranja"
|
542 |
|
543 |
#. translators: widget title
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "Dummy widget"
|
546 |
msgstr "Prazen gradnik"
|
547 |
|
548 |
#. translators: widget title
|
549 |
-
#: ad-inserter.php:
|
550 |
msgid "Debugging tools"
|
551 |
msgstr "Orodja za razhroščevanje"
|
552 |
|
553 |
#. translators: block status (widget title)
|
554 |
-
#: ad-inserter.php:
|
555 |
msgctxt "block"
|
556 |
msgid "PAUSED"
|
557 |
msgstr "USTAVLJEN"
|
558 |
|
559 |
-
#: ad-inserter.php:
|
560 |
msgid "WIDGET DISABLED"
|
561 |
msgstr "GRADNIK ONEMOGOČEN"
|
562 |
|
563 |
-
#: ad-inserter.php:
|
564 |
msgid "Unknown block"
|
565 |
msgstr "Neznan blok"
|
566 |
|
567 |
-
#: ad-inserter.php:
|
568 |
-
#: includes/functions.old.php:3186 includes/functions.php:
|
569 |
-
#: settings.php:
|
570 |
msgid "Title"
|
571 |
msgstr "Naslov"
|
572 |
|
573 |
-
#: ad-inserter.php:
|
574 |
msgctxt "Widget"
|
575 |
msgid "Sticky"
|
576 |
msgstr "Lepljiv"
|
577 |
|
578 |
-
#: ad-inserter.php:
|
579 |
msgid ""
|
580 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
581 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -584,7 +584,7 @@ msgstr ""
|
|
584 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
585 |
"Inserter Pro."
|
586 |
|
587 |
-
#: ad-inserter.php:
|
588 |
msgid ""
|
589 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
590 |
"will clear all settings that are available only in the Pro version "
|
@@ -595,165 +595,165 @@ msgstr ""
|
|
595 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
596 |
|
597 |
#. translators: %s: Ad Inserter
|
598 |
-
#: class.php:
|
599 |
msgid "PHP error in %s block"
|
600 |
msgstr "PHP napaka v bloku %s"
|
601 |
|
602 |
-
#: class.php:
|
603 |
msgid "Counters"
|
604 |
msgstr "Števci"
|
605 |
|
606 |
-
#: class.php:
|
607 |
msgid "Content"
|
608 |
msgstr "Vsebina"
|
609 |
|
610 |
-
#: class.php:
|
611 |
msgid "Excerpt"
|
612 |
msgstr "Izvleček"
|
613 |
|
614 |
-
#: class.php:
|
615 |
msgid "Before post"
|
616 |
msgstr "Pred prispevkom"
|
617 |
|
618 |
-
#: class.php:
|
619 |
msgid "After post"
|
620 |
msgstr "Za prispevkom"
|
621 |
|
622 |
-
#: class.php:
|
623 |
msgid "Between posts"
|
624 |
msgstr "Med prispevki"
|
625 |
|
626 |
-
#: class.php:
|
627 |
msgid "Widget"
|
628 |
msgstr "Gradnik"
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgid "PHP function call"
|
632 |
msgstr "Klic PHP funkcije"
|
633 |
|
634 |
#. Translators: %s: custom hook name
|
635 |
-
#: class.php:
|
636 |
msgid "Custom hook %s call"
|
637 |
msgstr "Klic ročice po meri %s"
|
638 |
|
639 |
-
#: class.php:
|
640 |
msgid "AJAX REQUEST"
|
641 |
msgstr "AJAX ZAHTEVEK"
|
642 |
|
643 |
-
#: class.php:
|
644 |
msgid "Ajax request for block in iframe"
|
645 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
646 |
|
647 |
-
#: class.php:
|
648 |
msgid "Ajax request url, click to open it in a new tab"
|
649 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
650 |
|
651 |
-
#: class.php:
|
652 |
msgid "IN THE LOOP"
|
653 |
msgstr "V ZANKI"
|
654 |
|
655 |
-
#: class.php:
|
656 |
msgid "YES"
|
657 |
msgstr "DA"
|
658 |
|
659 |
-
#: class.php:
|
660 |
msgid "NO"
|
661 |
msgstr "NE"
|
662 |
|
663 |
-
#: class.php:
|
664 |
msgid "BLOCK"
|
665 |
msgstr "BLOK"
|
666 |
|
667 |
-
#: class.php:
|
668 |
msgctxt "block or widget"
|
669 |
msgid "INSERTED BUT NOT VISIBLE"
|
670 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgctxt "viewports"
|
674 |
msgid "ALL"
|
675 |
msgstr "VSI"
|
676 |
|
677 |
-
#: class.php:
|
678 |
msgctxt "Block"
|
679 |
msgid "HIDDEN"
|
680 |
msgstr "SKRIT"
|
681 |
|
682 |
-
#: class.php:
|
683 |
msgctxt "Block"
|
684 |
msgid "VISIBLE"
|
685 |
msgstr "VIDEN"
|
686 |
|
687 |
-
#: class.php:
|
688 |
msgid "ACTIVE GROUPS"
|
689 |
msgstr "AKTIVNE SKUPINE"
|
690 |
|
691 |
-
#: class.php:
|
692 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
693 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
694 |
|
695 |
#. translators: %s: list parameters and type
|
696 |
-
#: class.php:
|
697 |
msgid "parameters='%s' type='%s'"
|
698 |
msgstr "parametri='%s' tip='%s'"
|
699 |
|
700 |
#. translators: %s: list parameters and type
|
701 |
-
#: class.php:
|
702 |
msgid "referers='%s' type='%s'"
|
703 |
msgstr "napotitelji='%s' tip='%s'"
|
704 |
|
705 |
#. translators: %s: list parameters and type
|
706 |
-
#: class.php:
|
707 |
msgid "clients='%s' type='%s'"
|
708 |
msgstr "odjemalci='%s' tip='%s'"
|
709 |
|
710 |
#. translators: %s: list parameters and type
|
711 |
-
#: class.php:
|
712 |
msgid "countries='%s' type='%s'"
|
713 |
msgstr "države='%s' tip='%s'"
|
714 |
|
715 |
#. translators: %s: list parameters and type
|
716 |
-
#: class.php:
|
717 |
msgid "ip addresses='%s' type='%s'"
|
718 |
msgstr "ip naslovi='%s' tip='%s'"
|
719 |
|
720 |
-
#: class.php:
|
721 |
msgid "viewport='%s' type='%s'"
|
722 |
msgstr "pogled='%s' tip='%s'"
|
723 |
|
724 |
-
#: class.php:
|
725 |
msgid "BEFORE"
|
726 |
msgstr "PRED"
|
727 |
|
728 |
-
#: class.php:
|
729 |
msgid "PREPEND CONTENT"
|
730 |
msgstr "DODAJ PRED VSEBINO"
|
731 |
|
732 |
-
#: class.php:
|
733 |
msgid "APPEND CONTENT"
|
734 |
msgstr "DODAJ ZA VSEBINO"
|
735 |
|
736 |
-
#: class.php:
|
737 |
msgid "REPLACE CONTENT"
|
738 |
msgstr "NADOMESTI VSEBINO"
|
739 |
|
740 |
-
#: class.php:
|
741 |
msgid "REPLACE ELEMENT"
|
742 |
msgstr "NADOMESTI ELEMENT"
|
743 |
|
744 |
-
#: class.php:
|
745 |
msgid "AFTER"
|
746 |
msgstr "ZA"
|
747 |
|
748 |
-
#: class.php:
|
749 |
msgid "Code"
|
750 |
msgstr "Koda"
|
751 |
|
752 |
-
#: class.php:
|
753 |
msgid "for block"
|
754 |
msgstr "za blok"
|
755 |
|
756 |
-
#: class.php:
|
757 |
msgid ""
|
758 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
759 |
"extension for PHP."
|
@@ -761,26 +761,26 @@ msgstr ""
|
|
761 |
"NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
|
762 |
"namestiti DOM razširitev za PHP."
|
763 |
|
764 |
-
#: includes/editor.php:
|
765 |
-
#: includes/preview.php:
|
766 |
msgid "Use"
|
767 |
msgstr "Uporabi"
|
768 |
|
769 |
-
#: includes/editor.php:
|
770 |
msgid "Reset"
|
771 |
msgstr "Ponastavi"
|
772 |
|
773 |
-
#: includes/editor.php:
|
774 |
-
#: includes/preview.php:
|
775 |
msgid "Cancel"
|
776 |
msgstr "Prekliči"
|
777 |
|
778 |
-
#: includes/editor.php:
|
779 |
msgid "Visual Code Editor"
|
780 |
msgstr "Vizualni Urejevalnik Kode"
|
781 |
|
782 |
-
#: includes/editor.php:
|
783 |
-
#: includes/preview.php:
|
784 |
msgid ""
|
785 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
786 |
"blockers."
|
@@ -788,29 +788,29 @@ msgstr ""
|
|
788 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
789 |
"blokiranje oglasov."
|
790 |
|
791 |
-
#: includes/editor.php:
|
792 |
msgid "Error loading page"
|
793 |
msgstr "Napaka pri nalaganju strani"
|
794 |
|
795 |
-
#: includes/editor.php:
|
796 |
-
#: includes/preview.php:
|
797 |
msgid "PAGE BLOCKED"
|
798 |
msgstr "STRAN BLOKIRANA"
|
799 |
|
800 |
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
801 |
-
#: includes/functions.php:
|
802 |
msgid "%d of %d names shown"
|
803 |
msgstr "Prikazanih %d od %d imen"
|
804 |
|
805 |
#. translators: %s: name filter
|
806 |
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
807 |
-
#: includes/functions.php:
|
808 |
msgid "No name matches filter"
|
809 |
msgstr "Noben podatek ne ustreza filtru"
|
810 |
|
811 |
#. translators: %s: Ad Inserter Pro
|
812 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
813 |
-
#: includes/functions.php:
|
814 |
msgid ""
|
815 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
816 |
"be imported for all blocks and settings"
|
@@ -819,47 +819,47 @@ msgstr ""
|
|
819 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
820 |
|
821 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
822 |
-
#: includes/functions.php:
|
823 |
msgid "Import Settings for"
|
824 |
msgstr "Uvozi Nastavitve za"
|
825 |
|
826 |
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
827 |
-
#: includes/functions.php:
|
828 |
msgid "Saved settings for"
|
829 |
msgstr "Shranjene nastavitve za"
|
830 |
|
831 |
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
832 |
-
#: includes/functions.php:
|
833 |
msgid "License Key"
|
834 |
msgstr "Licenčni Ključ"
|
835 |
|
836 |
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
837 |
-
#: includes/functions.php:
|
838 |
msgid "License Key for"
|
839 |
msgstr "Licenčni Ključ za"
|
840 |
|
841 |
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
842 |
-
#: includes/functions.php:
|
843 |
msgid "Open license page"
|
844 |
msgstr "Odpri licenčno stran"
|
845 |
|
846 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
847 |
-
#: includes/functions.php:
|
848 |
msgid "Hide license key"
|
849 |
msgstr "Skrij licenčni ključ"
|
850 |
|
851 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
852 |
-
#: includes/functions.php:
|
853 |
msgid "Hide key"
|
854 |
msgstr "Skrij ključ"
|
855 |
|
856 |
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
857 |
-
#: includes/functions.php:
|
858 |
msgid "Main content element"
|
859 |
msgstr "Glavni element vsebine"
|
860 |
|
861 |
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
862 |
-
#: includes/functions.php:
|
863 |
msgid ""
|
864 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
865 |
"Leave empty unless position is not properly calculated."
|
@@ -868,90 +868,90 @@ msgstr ""
|
|
868 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
869 |
|
870 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
871 |
-
#: includes/functions.php:
|
872 |
msgid "Open HTML element selector"
|
873 |
msgstr "Odpri izbirnik HTML elementa"
|
874 |
|
875 |
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
876 |
-
#: includes/functions.php:
|
877 |
msgid "Lazy loading offset"
|
878 |
msgstr "Zamik za leno nalaganje"
|
879 |
|
880 |
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
881 |
-
#: includes/functions.php:
|
882 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
883 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
884 |
|
885 |
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
886 |
-
#: includes/functions.php:
|
887 |
msgid "Export / Import Block Settings"
|
888 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
889 |
|
890 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
891 |
-
#: includes/functions.php:
|
892 |
msgid "Track impressions and clicks for this block"
|
893 |
msgstr "Sledi prikazom in klikom za ta blok"
|
894 |
|
895 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
896 |
-
#: includes/functions.php:
|
897 |
msgid " - global tracking disabled"
|
898 |
msgstr " - globalno sledenje onemogočeno"
|
899 |
|
900 |
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
901 |
-
#: includes/functions.php:
|
902 |
msgid "Generate PDF report"
|
903 |
msgstr "Generiraj PDF poročilo"
|
904 |
|
905 |
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
906 |
-
#: includes/functions.php:
|
907 |
msgid "Open public report"
|
908 |
msgstr "Odpri javno poročilo"
|
909 |
|
910 |
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
911 |
-
#: includes/functions.php:
|
912 |
msgid "Toggle Ad Blocking Statistics"
|
913 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
914 |
|
915 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
916 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
917 |
-
#: includes/functions.php:
|
918 |
msgid "Toggle Statistics"
|
919 |
msgstr "Preklopi Statistiko"
|
920 |
|
921 |
-
#: includes/functions-check-now.php:528 includes/functions.php:
|
922 |
msgid "Pin list"
|
923 |
msgstr "Pripni seznam"
|
924 |
|
925 |
#. translators: %s: Ad Inserter Pro
|
926 |
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
927 |
-
#: includes/functions.php:
|
928 |
msgid "%s license key is not set. Continue?"
|
929 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
930 |
|
931 |
#. translators: %s: Ad Inserter Pro
|
932 |
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
933 |
-
#: includes/functions.php:
|
934 |
msgid "Invalid %s license key. Continue?"
|
935 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
936 |
|
937 |
#. translators: %s: Ad Inserter Pro
|
938 |
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
939 |
-
#: includes/functions.php:
|
940 |
msgid "%s license overused. Continue?"
|
941 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
942 |
|
943 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
944 |
-
#: includes/functions.php:
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Shrani Nastavitve"
|
947 |
|
948 |
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
949 |
-
#: includes/functions.php:
|
950 |
msgid "Horizontal position"
|
951 |
msgstr "Vodoravni položaj"
|
952 |
|
953 |
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
954 |
-
#: includes/functions.php:
|
955 |
msgid ""
|
956 |
"Horizontal margin from the content or screen edge, empty means default value "
|
957 |
"from CSS"
|
@@ -960,12 +960,12 @@ msgstr ""
|
|
960 |
"iz CSS"
|
961 |
|
962 |
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
963 |
-
#: includes/functions.php:
|
964 |
msgid "Vertical position"
|
965 |
msgstr "Navpični položaj"
|
966 |
|
967 |
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
968 |
-
#: includes/functions.php:
|
969 |
msgid ""
|
970 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
971 |
"value from CSS"
|
@@ -974,17 +974,17 @@ msgstr ""
|
|
974 |
"iz CSS"
|
975 |
|
976 |
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
977 |
-
#: includes/functions.php:
|
978 |
msgid "Animation"
|
979 |
msgstr "Animacija"
|
980 |
|
981 |
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
982 |
-
#: includes/functions.php:
|
983 |
msgid "Trigger"
|
984 |
msgstr "Sporžilec"
|
985 |
|
986 |
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
987 |
-
#: includes/functions.php:
|
988 |
msgid ""
|
989 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
990 |
"(#id or .class) becomes visible"
|
@@ -993,64 +993,64 @@ msgstr ""
|
|
993 |
"selektorjem (#id ali .razred) postane viden"
|
994 |
|
995 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
996 |
-
#: includes/functions.php:
|
997 |
msgid "Offset"
|
998 |
msgstr "Zamik"
|
999 |
|
1000 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
1001 |
-
#: includes/functions.php:
|
1002 |
msgid "Offset of trigger element"
|
1003 |
msgstr "Zamik sprožilnega elementa"
|
1004 |
|
1005 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
1006 |
-
#: includes/functions.php:
|
1007 |
msgid "Delay"
|
1008 |
msgstr "Zakasnitev"
|
1009 |
|
1010 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
1011 |
-
#: includes/functions.php:
|
1012 |
msgid "Delay animation after trigger condition"
|
1013 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
1014 |
|
1015 |
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
1016 |
-
#: includes/functions.php:
|
1017 |
msgid "Trigger once"
|
1018 |
msgstr "Sproži enkrat"
|
1019 |
|
1020 |
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
1021 |
-
#: includes/functions.php:
|
1022 |
msgid "Trigger animation only once"
|
1023 |
msgstr "Sproži animacijo samo enkrat"
|
1024 |
|
1025 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
1026 |
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
1027 |
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
1028 |
-
#: includes/functions.php:
|
1029 |
-
#: includes/functions.php:
|
1030 |
msgid "Tracking is globally disabled"
|
1031 |
msgstr "Sledenje je globalno onemogočeno"
|
1032 |
|
1033 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
1034 |
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
1035 |
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
1036 |
-
#: includes/functions.php:
|
1037 |
-
#: includes/functions.php:
|
1038 |
msgid "Tracking for this block is disabled"
|
1039 |
msgstr "Sledenje za ta blok je onemogočeno"
|
1040 |
|
1041 |
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
1042 |
-
#: includes/functions.php:
|
1043 |
msgid "Double click to toggle controls in public reports"
|
1044 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1045 |
|
1046 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1047 |
-
#: includes/functions.php:
|
1048 |
-
#: settings.php:
|
1049 |
msgid "Loading..."
|
1050 |
msgstr "Nalagam..."
|
1051 |
|
1052 |
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
1053 |
-
#: includes/functions.php:
|
1054 |
msgid ""
|
1055 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1056 |
"all data for this block"
|
@@ -1059,84 +1059,84 @@ msgstr ""
|
|
1059 |
"brisanje vseh podatkov za ta blok"
|
1060 |
|
1061 |
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
1062 |
-
#: includes/functions.php:
|
1063 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1064 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1067 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1068 |
-
#: includes/functions.php:
|
1069 |
msgid "Load data for last month"
|
1070 |
msgstr "Naloži podatke za zadnji mesec"
|
1071 |
|
1072 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1073 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1074 |
-
#: includes/functions.php:
|
1075 |
msgid "Last Month"
|
1076 |
msgstr "Zadnji Mesec"
|
1077 |
|
1078 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1079 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1080 |
-
#: includes/functions.php:
|
1081 |
msgid "Load data for this month"
|
1082 |
msgstr "Naloži podatke za ta mesec"
|
1083 |
|
1084 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1085 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1086 |
-
#: includes/functions.php:
|
1087 |
msgid "This Month"
|
1088 |
msgstr "Ta Mesec"
|
1089 |
|
1090 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1091 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1092 |
-
#: includes/functions.php:
|
1093 |
msgid "Load data for this year"
|
1094 |
msgstr "Naloži podatke za to leto"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1097 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1098 |
-
#: includes/functions.php:
|
1099 |
msgid "This Year"
|
1100 |
msgstr "To Leto"
|
1101 |
|
1102 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1103 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1104 |
-
#: includes/functions.php:
|
1105 |
msgid "Load data for the last 15 days"
|
1106 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1107 |
|
1108 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1109 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1110 |
-
#: includes/functions.php:
|
1111 |
msgid "Load data for the last 30 days"
|
1112 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1113 |
|
1114 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1115 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1116 |
-
#: includes/functions.php:
|
1117 |
msgid "Load data for the last 90 days"
|
1118 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1119 |
|
1120 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1121 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1122 |
-
#: includes/functions.php:
|
1123 |
msgid "Load data for the last 180 days"
|
1124 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1125 |
|
1126 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1127 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1128 |
-
#: includes/functions.php:
|
1129 |
msgid "Load data for the last 365 days"
|
1130 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1131 |
|
1132 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1133 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1134 |
-
#: includes/functions.php:
|
1135 |
msgid "Load data for the selected range"
|
1136 |
msgstr "Naloži podatke za izbrano obdobje"
|
1137 |
|
1138 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1139 |
-
#: includes/functions.php:
|
1140 |
msgid ""
|
1141 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1142 |
"imported for this block"
|
@@ -1145,12 +1145,12 @@ msgstr ""
|
|
1145 |
"nastavitve spodaj uvozile za ta blok"
|
1146 |
|
1147 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1148 |
-
#: includes/functions.php:
|
1149 |
msgid "Import settings for block"
|
1150 |
msgstr "Uvozi nastavitve za blok"
|
1151 |
|
1152 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1153 |
-
#: includes/functions.php:
|
1154 |
msgid ""
|
1155 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1156 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1161,49 +1161,49 @@ msgstr ""
|
|
1161 |
"uvozilo za ta blok"
|
1162 |
|
1163 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1164 |
-
#: includes/functions.php:
|
1165 |
msgid "Import block name"
|
1166 |
msgstr "Uvozi ime bloka"
|
1167 |
|
1168 |
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1169 |
-
#: includes/functions.php:
|
1170 |
msgid "Saved settings for block"
|
1171 |
msgstr "Shranjene nastavitve za blok"
|
1172 |
|
1173 |
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1174 |
-
#: includes/functions.php:
|
1175 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1176 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1177 |
|
1178 |
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1179 |
-
#: includes/functions.php:
|
1180 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1181 |
msgstr ""
|
1182 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1183 |
"bloke?"
|
1184 |
|
1185 |
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1186 |
-
#: includes/functions.php:
|
1187 |
msgid "Clear All Statistics Data"
|
1188 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1189 |
|
1190 |
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1191 |
-
#: includes/functions.php:
|
1192 |
msgid "Toggle country/city editor"
|
1193 |
msgstr "Preklopi urejevalnik držav/mest"
|
1194 |
|
1195 |
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1196 |
-
#: includes/functions.php:
|
1197 |
msgid "IP Addresses"
|
1198 |
msgstr "IP Naslovi"
|
1199 |
|
1200 |
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1201 |
-
#: includes/functions.php:
|
1202 |
msgid "Toggle IP address editor"
|
1203 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1204 |
|
1205 |
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1206 |
-
#: includes/functions.php:
|
1207 |
msgid ""
|
1208 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1209 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
@@ -1212,61 +1212,61 @@ msgstr ""
|
|
1212 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1213 |
|
1214 |
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1215 |
-
#: includes/functions.php:
|
1216 |
msgid "Blacklist IP addresses"
|
1217 |
msgstr "Črni seznam IP naslovov"
|
1218 |
|
1219 |
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1220 |
-
#: includes/functions.php:
|
1221 |
msgid "Whitelist IP addresses"
|
1222 |
msgstr "Beli seznam IP naslovov"
|
1223 |
|
1224 |
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid "Countries"
|
1227 |
msgstr "Države"
|
1228 |
|
1229 |
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1230 |
-
#: includes/functions.php:
|
1231 |
msgid "Cities"
|
1232 |
msgstr "Mesta"
|
1233 |
|
1234 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1235 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1236 |
-
#: includes/functions.php:
|
1237 |
msgid "Toggle country editor"
|
1238 |
msgstr "Preklopi urejevalnik držav"
|
1239 |
|
1240 |
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1241 |
-
#: includes/functions.php:
|
1242 |
msgid "Toggle city editor"
|
1243 |
msgstr "Preklopi urejevalnik mest"
|
1244 |
|
1245 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1246 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1247 |
-
#: includes/functions.php:
|
1248 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1249 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1250 |
|
1251 |
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1252 |
-
#: includes/functions.php:
|
1253 |
msgid "Blacklist countries"
|
1254 |
msgstr "Črni seznam držav"
|
1255 |
|
1256 |
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1257 |
-
#: includes/functions.php:
|
1258 |
msgid "Whitelist countries"
|
1259 |
msgstr "Beli seznam držav"
|
1260 |
|
1261 |
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1262 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1263 |
-
#: includes/functions.php:
|
1264 |
msgid "Enter license key"
|
1265 |
msgstr "Vnesite licenčni ključ"
|
1266 |
|
1267 |
#. translators: %s: Ad Inserter Pro
|
1268 |
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1269 |
-
#: includes/functions.php:
|
1270 |
msgid ""
|
1271 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1272 |
"disabled."
|
@@ -1275,63 +1275,63 @@ msgstr ""
|
|
1275 |
"posodobitve onemogočene."
|
1276 |
|
1277 |
#. translators: %s: Ad Inserter Pro
|
1278 |
-
#: includes/functions-check-now.php:1402 includes/functions.php:
|
1279 |
msgid "Warning: %s plugin update server is not accessible"
|
1280 |
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
1281 |
|
1282 |
#. translators: updates are not available
|
1283 |
-
#: includes/functions-check-now.php:1404 includes/functions.php:
|
1284 |
msgid "updates"
|
1285 |
msgstr "posodobitve"
|
1286 |
|
1287 |
#. translators: updates are not available
|
1288 |
-
#: includes/functions-check-now.php:1406 includes/functions.php:
|
1289 |
msgid "are not available"
|
1290 |
msgstr "niso na razpolago"
|
1291 |
|
1292 |
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1293 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1294 |
-
#: includes/functions.php:
|
1295 |
msgid "Check license key"
|
1296 |
msgstr "Preverite licenčni ključ"
|
1297 |
|
1298 |
#. translators: %s: Ad Inserter Pro
|
1299 |
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1300 |
-
#: includes/functions.php:
|
1301 |
msgid "Invalid %s license key."
|
1302 |
msgstr "Neveljaven %s licenčni ključ."
|
1303 |
|
1304 |
#. translators: %s: Ad Inserter Pro
|
1305 |
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1306 |
-
#: includes/functions.php:
|
1307 |
msgid "%s license expired. Plugin updates are disabled."
|
1308 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1309 |
|
1310 |
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1311 |
-
#: includes/functions.php:
|
1312 |
msgid "Renew license"
|
1313 |
msgstr "Obnovite licenco"
|
1314 |
|
1315 |
#. translators: %s: Ad Inserter Pro
|
1316 |
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1317 |
-
#: includes/functions.php:
|
1318 |
msgid "%s license overused. Plugin updates are disabled."
|
1319 |
msgstr ""
|
1320 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1321 |
|
1322 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1323 |
-
#: includes/functions.php:
|
1324 |
msgid "Manage licenses"
|
1325 |
msgstr "Upravljajte z licencami"
|
1326 |
|
1327 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1328 |
-
#: includes/functions.php:
|
1329 |
msgid "Upgrade license"
|
1330 |
msgstr "Nadgradite licenco"
|
1331 |
|
1332 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1333 |
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1334 |
-
#: includes/functions.php:
|
1335 |
msgid ""
|
1336 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1337 |
"limited and updates are disabled."
|
@@ -1341,13 +1341,13 @@ msgstr ""
|
|
1341 |
|
1342 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1343 |
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1344 |
-
#: includes/functions.php:
|
1345 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1346 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1347 |
|
1348 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1349 |
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1350 |
-
#: includes/functions.php:
|
1351 |
msgid ""
|
1352 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1353 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1358,7 +1358,7 @@ msgstr ""
|
|
1358 |
|
1359 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1360 |
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1361 |
-
#: includes/functions.php:
|
1362 |
msgid ""
|
1363 |
"During the license period and 30 days after the license has expired we offer "
|
1364 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
@@ -1367,28 +1367,28 @@ msgstr ""
|
|
1367 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1368 |
|
1369 |
#: includes/functions-check-now.php:1725 includes/functions.old.php:1652
|
1370 |
-
#: includes/functions.php:
|
1371 |
msgid "No, thank you."
|
1372 |
msgstr "Ne, hvala."
|
1373 |
|
1374 |
#: includes/functions-check-now.php:1728 includes/functions.old.php:1655
|
1375 |
-
#: includes/functions.php:
|
1376 |
msgid "Not now, maybe later."
|
1377 |
msgstr "Ne zdaj, mogoče kasneje."
|
1378 |
|
1379 |
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1380 |
-
#: includes/functions.php:
|
1381 |
msgid "Renew the licence"
|
1382 |
msgstr "Obnovi licenco"
|
1383 |
|
1384 |
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1385 |
-
#: includes/functions.php:
|
1386 |
msgid "Update license status"
|
1387 |
msgstr "Posodobi status licence"
|
1388 |
|
1389 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1390 |
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1391 |
-
#: includes/functions.php:
|
1392 |
msgid ""
|
1393 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1394 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1399,122 +1399,122 @@ msgstr ""
|
|
1399 |
|
1400 |
#. Translators: %s: HTML tag
|
1401 |
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1402 |
-
#: includes/functions.php:
|
1403 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1404 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1405 |
|
1406 |
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1407 |
-
#: includes/functions.php:
|
1408 |
msgid "Geolocation"
|
1409 |
msgstr "Geolokacija"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1412 |
-
#: includes/functions.php:
|
1413 |
msgid "Exceptions"
|
1414 |
msgstr "Izjeme"
|
1415 |
|
1416 |
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1417 |
-
#: includes/functions.php:
|
1418 |
msgid "Multisite"
|
1419 |
msgstr "Multisite"
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1422 |
-
#: includes/functions.php:
|
1423 |
msgid "Tracking"
|
1424 |
msgstr "Sledenje"
|
1425 |
|
1426 |
#. translators: %d: days, hours, minutes
|
1427 |
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1428 |
-
#: includes/functions.php:
|
1429 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1430 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1431 |
|
1432 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1433 |
#. HTML code for long dash separator
|
1434 |
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1435 |
-
#: includes/functions.php:
|
1436 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1437 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1438 |
|
1439 |
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1440 |
-
#: includes/functions.php:
|
1441 |
msgid "Expired"
|
1442 |
msgstr "Poteklo"
|
1443 |
|
1444 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1445 |
-
#: includes/functions.php:
|
1446 |
-
#: settings.php:
|
1447 |
msgid "and"
|
1448 |
msgstr "in"
|
1449 |
|
1450 |
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1451 |
-
#: includes/functions.php:
|
1452 |
msgid "fallback"
|
1453 |
msgstr "rezerva"
|
1454 |
|
1455 |
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1456 |
-
#: includes/functions.php:
|
1457 |
msgid "Block to be used when scheduling expires"
|
1458 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1459 |
|
1460 |
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1461 |
-
#: includes/functions.php:
|
1462 |
msgid "Load in iframe"
|
1463 |
msgstr "Naloži v iframe-u"
|
1464 |
|
1465 |
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1466 |
-
#: includes/functions.php:
|
1467 |
msgid "Width"
|
1468 |
msgstr "Širina"
|
1469 |
|
1470 |
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1471 |
-
#: includes/functions.php:
|
1472 |
msgid "iframe width, empty means full width (100%)"
|
1473 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1474 |
|
1475 |
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1476 |
-
#: includes/functions.php:
|
1477 |
msgid "Height"
|
1478 |
msgstr "Višina"
|
1479 |
|
1480 |
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1481 |
-
#: includes/functions.php:
|
1482 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1483 |
msgstr ""
|
1484 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1485 |
|
1486 |
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1487 |
-
#: includes/functions.php:
|
1488 |
msgid "Ad label in iframe"
|
1489 |
msgstr "Oznaka oglasa v iframe-u"
|
1490 |
|
1491 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1492 |
-
#: includes/functions.php:
|
1493 |
msgid "Preview iframe code"
|
1494 |
msgstr "Predpreglej kodo iframe"
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1497 |
-
#: includes/functions.php:
|
1498 |
-
#: settings.php:
|
1499 |
msgid "Preview"
|
1500 |
msgstr "Predogled"
|
1501 |
|
1502 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1503 |
-
#: includes/functions.php:
|
1504 |
msgid "Limits"
|
1505 |
msgstr "Omejitve"
|
1506 |
|
1507 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1508 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1509 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1510 |
-
#: includes/functions.php:
|
1511 |
-
#: includes/functions.php:
|
1512 |
msgid "Ad Blocking"
|
1513 |
msgstr "Blokiranje Oglasov"
|
1514 |
|
1515 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1516 |
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1517 |
-
#: includes/functions.php:
|
1518 |
msgid ""
|
1519 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1520 |
"for tracking!"
|
@@ -1525,7 +1525,7 @@ msgstr ""
|
|
1525 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1526 |
#. header
|
1527 |
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1528 |
-
#: includes/functions.php:
|
1529 |
msgid ""
|
1530 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1531 |
"enabled and automatic insertion %6$s!"
|
@@ -1534,18 +1534,18 @@ msgstr ""
|
|
1534 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1535 |
|
1536 |
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1537 |
-
#: includes/functions.php:
|
1538 |
msgid "Click fraud protection is globally disabled"
|
1539 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1540 |
|
1541 |
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1542 |
-
#: includes/functions.php:
|
1543 |
msgid "Max clicks per time period are not defined"
|
1544 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1545 |
|
1546 |
#. Translators: Max n impressions
|
1547 |
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1548 |
-
#: includes/functions.php:
|
1549 |
msgid "General limits"
|
1550 |
msgstr "Splošne omejitve"
|
1551 |
|
@@ -1553,8 +1553,8 @@ msgstr "Splošne omejitve"
|
|
1553 |
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1554 |
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1555 |
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1556 |
-
#: includes/functions.php:
|
1557 |
-
#: includes/functions.php:
|
1558 |
msgid "Current value"
|
1559 |
msgstr "Trenutna vrednost"
|
1560 |
|
@@ -1574,15 +1574,15 @@ msgstr "Trenutna vrednost"
|
|
1574 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1575 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1576 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1577 |
-
#: includes/functions.php:
|
1578 |
-
#: includes/functions.php:
|
1579 |
-
#: includes/functions.php:
|
1580 |
-
#: includes/functions.php:
|
1581 |
msgid "Max"
|
1582 |
msgstr "Največ"
|
1583 |
|
1584 |
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1585 |
-
#: includes/functions.php:
|
1586 |
msgid ""
|
1587 |
"Maximum number of impressions for this block. Empty means no general "
|
1588 |
"impression limit."
|
@@ -1598,8 +1598,8 @@ msgstr ""
|
|
1598 |
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1599 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1600 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1601 |
-
#: includes/functions.php:
|
1602 |
-
#: includes/functions.php:
|
1603 |
msgid "impression"
|
1604 |
msgid_plural "impressions"
|
1605 |
msgstr[0] "prikaz"
|
@@ -1608,7 +1608,7 @@ msgstr[2] "prikazi"
|
|
1608 |
msgstr[3] "prikazov"
|
1609 |
|
1610 |
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1611 |
-
#: includes/functions.php:
|
1612 |
msgid ""
|
1613 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1614 |
msgstr ""
|
@@ -1623,14 +1623,14 @@ msgstr ""
|
|
1623 |
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1624 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1625 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1626 |
-
#: includes/functions.php:
|
1627 |
-
#: includes/functions.php:
|
1628 |
msgid "per"
|
1629 |
msgstr "na"
|
1630 |
|
1631 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1632 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1633 |
-
#: includes/functions.php:
|
1634 |
msgid "Time period in days. Empty means no time limit."
|
1635 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1636 |
|
@@ -1645,9 +1645,9 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
|
1645 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1646 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1647 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1648 |
-
#: includes/functions.php:
|
1649 |
-
#: includes/functions.php:
|
1650 |
-
#: includes/functions.php:
|
1651 |
#: strings.php:219 strings.php:220 strings.php:221 strings.php:222
|
1652 |
#: strings.php:223
|
1653 |
msgid "day"
|
@@ -1658,7 +1658,7 @@ msgstr[2] "dni"
|
|
1658 |
msgstr[3] "dni"
|
1659 |
|
1660 |
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1661 |
-
#: includes/functions.php:
|
1662 |
msgid ""
|
1663 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1664 |
msgstr ""
|
@@ -1674,9 +1674,9 @@ msgstr ""
|
|
1674 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1675 |
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1676 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1677 |
-
#: includes/functions.php:
|
1678 |
-
#: includes/functions.php:
|
1679 |
-
#: includes/functions.php:
|
1680 |
msgid "click"
|
1681 |
msgid_plural "clicks"
|
1682 |
msgstr[0] "klik"
|
@@ -1685,20 +1685,20 @@ msgstr[2] "kliki"
|
|
1685 |
msgstr[3] "klikov"
|
1686 |
|
1687 |
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1688 |
-
#: includes/functions.php:
|
1689 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1690 |
msgstr ""
|
1691 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1692 |
"omejitev."
|
1693 |
|
1694 |
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1695 |
-
#: includes/functions.php:
|
1696 |
msgid "Individual visitor limits"
|
1697 |
msgstr "Omejitve posameznih obiskovalcev"
|
1698 |
|
1699 |
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1700 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1701 |
-
#: includes/functions.php:
|
1702 |
msgid ""
|
1703 |
"When specified number of clicks on this block for a visitor will be reached "
|
1704 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1711,12 +1711,12 @@ msgstr ""
|
|
1711 |
"pred goljufijo s kliki."
|
1712 |
|
1713 |
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1714 |
-
#: includes/functions.php:
|
1715 |
msgid "Trigger click fraud protection"
|
1716 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1717 |
|
1718 |
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1719 |
-
#: includes/functions.php:
|
1720 |
msgid ""
|
1721 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1722 |
"impression limit."
|
@@ -1725,7 +1725,7 @@ msgstr ""
|
|
1725 |
"pomeni brez omejitev prikazov."
|
1726 |
|
1727 |
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1728 |
-
#: includes/functions.php:
|
1729 |
msgid ""
|
1730 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1731 |
"no impression limit per time period for visitors."
|
@@ -1735,7 +1735,7 @@ msgstr ""
|
|
1735 |
|
1736 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1737 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1738 |
-
#: includes/functions.php:
|
1739 |
msgid ""
|
1740 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1741 |
"periods. Empty means no time limit."
|
@@ -1744,7 +1744,7 @@ msgstr ""
|
|
1744 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1745 |
|
1746 |
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1747 |
-
#: includes/functions.php:
|
1748 |
msgid ""
|
1749 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1750 |
"click limit."
|
@@ -1753,7 +1753,7 @@ msgstr ""
|
|
1753 |
"brez omejitev klikov."
|
1754 |
|
1755 |
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1756 |
-
#: includes/functions.php:
|
1757 |
msgid ""
|
1758 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1759 |
"click limit per time period for visitors."
|
@@ -1762,39 +1762,39 @@ msgstr ""
|
|
1762 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1763 |
|
1764 |
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1765 |
-
#: includes/functions.php:
|
1766 |
msgid "When ad blocking is detected"
|
1767 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1768 |
|
1769 |
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1770 |
-
#: includes/functions.php:
|
1771 |
msgid "replacement"
|
1772 |
msgstr "nadomestek"
|
1773 |
|
1774 |
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1775 |
-
#: includes/functions.php:
|
1776 |
msgid "Block to be shown when ad blocking is detected"
|
1777 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1778 |
|
1779 |
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1780 |
-
#: includes/functions.php:
|
1781 |
msgctxt "replacement"
|
1782 |
msgid "None"
|
1783 |
msgstr "Noben"
|
1784 |
|
1785 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1786 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1787 |
-
#: includes/functions.php:
|
1788 |
msgid "Close button"
|
1789 |
msgstr "Gumb Zapri"
|
1790 |
|
1791 |
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1792 |
-
#: includes/functions.php:
|
1793 |
msgid "Auto close after"
|
1794 |
msgstr "Ssamodejno zapri po"
|
1795 |
|
1796 |
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1797 |
-
#: includes/functions.php:
|
1798 |
msgid ""
|
1799 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1800 |
"disable auto closing."
|
@@ -1804,12 +1804,12 @@ msgstr ""
|
|
1804 |
|
1805 |
#. Translators: Don't show for x days
|
1806 |
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1807 |
-
#: includes/functions.php:
|
1808 |
msgid "Don't show for"
|
1809 |
msgstr "Ne prikaži"
|
1810 |
|
1811 |
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1812 |
-
#: includes/functions.php:
|
1813 |
msgid ""
|
1814 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1815 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1821,12 +1821,12 @@ msgstr ""
|
|
1821 |
|
1822 |
#. Translators: Delay showing for x pageviews
|
1823 |
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1824 |
-
#: includes/functions.php:
|
1825 |
msgid "Delay showing for"
|
1826 |
msgstr "Zakasni prikaz za"
|
1827 |
|
1828 |
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1829 |
-
#: includes/functions.php:
|
1830 |
msgid ""
|
1831 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1832 |
"empty to insert the code for the first pageview."
|
@@ -1838,7 +1838,7 @@ msgstr ""
|
|
1838 |
#. Translators: Show every x pageviews
|
1839 |
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1840 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1841 |
-
#: includes/functions.php:
|
1842 |
msgid "pageview"
|
1843 |
msgid_plural "pageviews"
|
1844 |
msgstr[0] "ogled strani"
|
@@ -1848,7 +1848,7 @@ msgstr[3] "ogledov strani"
|
|
1848 |
|
1849 |
#. Translators: Show every x pageviews
|
1850 |
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1851 |
-
#: includes/functions.php:
|
1852 |
msgid "Show every"
|
1853 |
msgid_plural "Show every"
|
1854 |
msgstr[0] "Prikaži vsak"
|
@@ -1857,7 +1857,7 @@ msgstr[2] "Prikaži vsake"
|
|
1857 |
msgstr[3] "Prikaži vsakih"
|
1858 |
|
1859 |
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1860 |
-
#: includes/functions.php:
|
1861 |
msgid ""
|
1862 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1863 |
"for every pageview."
|
@@ -1866,33 +1866,33 @@ msgstr ""
|
|
1866 |
"vstavljanje kode pri vsakem ogledu strani."
|
1867 |
|
1868 |
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1869 |
-
#: includes/functions.php:
|
1870 |
msgid "Lazy loading"
|
1871 |
msgstr "Leno nalaganje"
|
1872 |
|
1873 |
#. Translators: %s MaxMind
|
1874 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1875 |
-
#: includes/functions.php:
|
1876 |
msgid "This product includes GeoLite2 data created by %s"
|
1877 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1878 |
|
1879 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1880 |
-
#: includes/functions.php:
|
1881 |
msgid "IP geolocation database"
|
1882 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1883 |
|
1884 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1885 |
-
#: includes/functions.php:
|
1886 |
msgid "Select IP geolocation database."
|
1887 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1888 |
|
1889 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1890 |
-
#: includes/functions.php:
|
1891 |
msgid "Automatic database updates"
|
1892 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1893 |
|
1894 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1895 |
-
#: includes/functions.php:
|
1896 |
msgid ""
|
1897 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1898 |
"MaxMind"
|
@@ -1901,12 +1901,12 @@ msgstr ""
|
|
1901 |
"podatkovno bazo MaxMind"
|
1902 |
|
1903 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1904 |
-
#: includes/functions.php:
|
1905 |
msgid "Database"
|
1906 |
msgstr "Podatkovna baza"
|
1907 |
|
1908 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1909 |
-
#: includes/functions.php:
|
1910 |
msgid ""
|
1911 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1912 |
"file"
|
@@ -1916,17 +1916,17 @@ msgstr ""
|
|
1916 |
|
1917 |
#. translators: %d: group number
|
1918 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1919 |
-
#: includes/functions.php:
|
1920 |
msgid "Group %d"
|
1921 |
msgstr "Skupina %d"
|
1922 |
|
1923 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1924 |
-
#: includes/functions.php:
|
1925 |
msgid "countries"
|
1926 |
msgstr "države"
|
1927 |
|
1928 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1929 |
-
#: includes/functions.php:
|
1930 |
msgid ""
|
1931 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1932 |
"each block you want to track."
|
@@ -1935,38 +1935,37 @@ msgstr ""
|
|
1935 |
"vsak blok, ki bi ga radi sledili."
|
1936 |
|
1937 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1938 |
-
#: includes/functions.php:3333
|
1939 |
msgid "Generate report"
|
1940 |
msgstr "Generiraj poročilo"
|
1941 |
|
1942 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1943 |
-
#: includes/functions.php:
|
1944 |
msgid "Impression and Click Tracking"
|
1945 |
msgstr "Sledenje Prikazov in Klikov"
|
1946 |
|
1947 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1948 |
-
#: includes/functions.php:
|
1949 |
msgctxt "ad blocking detection"
|
1950 |
msgid "NOT ENABLED"
|
1951 |
msgstr "NI OMOGOČENO"
|
1952 |
|
1953 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1954 |
-
#: includes/functions.php:
|
1955 |
msgid "Internal"
|
1956 |
msgstr "Notranje"
|
1957 |
|
1958 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1959 |
-
#: includes/functions.php:
|
1960 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1961 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1962 |
|
1963 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1964 |
-
#: includes/functions.php:
|
1965 |
msgid "External"
|
1966 |
msgstr "Zunanje"
|
1967 |
|
1968 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1969 |
-
#: includes/functions.php:
|
1970 |
msgid ""
|
1971 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1972 |
"code installed)"
|
@@ -1975,32 +1974,32 @@ msgstr ""
|
|
1975 |
"kodo za sledenje)"
|
1976 |
|
1977 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1978 |
-
#: includes/functions.php:
|
1979 |
msgid "Track Pageviews"
|
1980 |
msgstr "Sledi Ogledom Strani"
|
1981 |
|
1982 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1983 |
-
#: includes/functions.php:
|
1984 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1985 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1986 |
|
1987 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1988 |
-
#: includes/functions.php:
|
1989 |
msgid "Track for Logged in Users"
|
1990 |
msgstr "Sledi za Prijavljene Upor."
|
1991 |
|
1992 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1993 |
-
#: includes/functions.php:
|
1994 |
msgid "Track impressions and clicks from logged in users"
|
1995 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1996 |
|
1997 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1998 |
-
#: includes/functions.php:
|
1999 |
msgid "Click Detection"
|
2000 |
msgstr "Zaznavanje klikov"
|
2001 |
|
2002 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
2003 |
-
#: includes/functions.php:
|
2004 |
msgid ""
|
2005 |
"Standard method detects clicks only on banners with links, Advanced method "
|
2006 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -2009,22 +2008,22 @@ msgstr ""
|
|
2009 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
2010 |
|
2011 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
2012 |
-
#: includes/functions.php:
|
2013 |
msgid "Click fraud protection"
|
2014 |
msgstr "Zaščita pred goljufijo s kliki"
|
2015 |
|
2016 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
2017 |
-
#: includes/functions.php:
|
2018 |
msgid "Globally enable click fraud protection for selected blocks."
|
2019 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
2020 |
|
2021 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
2022 |
-
#: includes/functions.php:
|
2023 |
msgid "Protection time"
|
2024 |
msgstr "Čas zaščite"
|
2025 |
|
2026 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
2027 |
-
#: includes/functions.php:
|
2028 |
msgid ""
|
2029 |
"Time period in days in which blocks with enabled click fraud protection will "
|
2030 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -2034,12 +2033,12 @@ msgstr ""
|
|
2034 |
"za krajša obdobja."
|
2035 |
|
2036 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
2037 |
-
#: includes/functions.php:
|
2038 |
msgid "Report header image"
|
2039 |
msgstr "Slika v glavi poročila"
|
2040 |
|
2041 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
2042 |
-
#: includes/functions.php:
|
2043 |
msgid ""
|
2044 |
"Image or logo to be displayed in the header of the statistins report. "
|
2045 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -2050,17 +2049,17 @@ msgstr ""
|
|
2050 |
"ponastavitev na privzeto sliko."
|
2051 |
|
2052 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
2053 |
-
#: includes/functions.php:
|
2054 |
msgid "Select or upload header image"
|
2055 |
msgstr "Izberi ali naloži sliko glave"
|
2056 |
|
2057 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
2058 |
-
#: includes/functions.php:
|
2059 |
msgid "Report header title"
|
2060 |
msgstr "Naslov v glavi poročila"
|
2061 |
|
2062 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
2063 |
-
#: includes/functions.php:
|
2064 |
msgid ""
|
2065 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2066 |
"code, clear to reset to default text."
|
@@ -2069,12 +2068,12 @@ msgstr ""
|
|
2069 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2070 |
|
2071 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
2072 |
-
#: includes/functions.php:
|
2073 |
msgid "Report header description"
|
2074 |
msgstr "Opis v glavi poročila"
|
2075 |
|
2076 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
2077 |
-
#: includes/functions.php:
|
2078 |
msgid ""
|
2079 |
"Description to be displayed in the header of the statistics report. Text or "
|
2080 |
"HTML code, clear to reset to default text."
|
@@ -2083,12 +2082,12 @@ msgstr ""
|
|
2083 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2084 |
|
2085 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
2086 |
-
#: includes/functions.php:
|
2087 |
msgid "Report footer"
|
2088 |
msgstr "Noga poročila"
|
2089 |
|
2090 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
2091 |
-
#: includes/functions.php:
|
2092 |
msgid ""
|
2093 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2094 |
"to default text."
|
@@ -2097,139 +2096,139 @@ msgstr ""
|
|
2097 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
2098 |
|
2099 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
2100 |
-
#: includes/functions.php:
|
2101 |
msgid "Public report key"
|
2102 |
msgstr "Ključ za javno poročilo"
|
2103 |
|
2104 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
2105 |
-
#: includes/functions.php:
|
2106 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2107 |
msgstr ""
|
2108 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
2109 |
"privzeto vrednost."
|
2110 |
|
2111 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
2112 |
-
#: includes/functions.php:
|
2113 |
msgid "Are you sure you want to clear all exceptions for block"
|
2114 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2115 |
|
2116 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2117 |
-
#: includes/functions.php:
|
2118 |
msgid "Clear all exceptions for block"
|
2119 |
msgstr "Pobriši vse izjeme za blok"
|
2120 |
|
2121 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2122 |
-
#: includes/functions.php:
|
2123 |
msgid "Are you sure you want to clear all exceptions?"
|
2124 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
2125 |
|
2126 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2127 |
-
#: includes/functions.php:
|
2128 |
msgid "Clear all exceptions for all blocks"
|
2129 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2130 |
|
2131 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2132 |
-
#: includes/functions.php:
|
2133 |
msgid "Type"
|
2134 |
msgstr "Vrsta"
|
2135 |
|
2136 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
2137 |
-
#: includes/functions.php:
|
2138 |
msgid "View"
|
2139 |
msgstr "Poglej"
|
2140 |
|
2141 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
2142 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
2143 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2144 |
-
#: includes/functions.php:
|
2145 |
-
#: includes/functions.php:
|
2146 |
-
#: includes/preview.php:
|
2147 |
msgid "Edit"
|
2148 |
msgstr "Uredi"
|
2149 |
|
2150 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2151 |
-
#: includes/functions.php:
|
2152 |
msgid "Are you sure you want to clear all exceptions for"
|
2153 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
2154 |
|
2155 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2156 |
-
#: includes/functions.php:
|
2157 |
msgid "Clear all exceptions for"
|
2158 |
msgstr "Pobriši vse izjeme za"
|
2159 |
|
2160 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2161 |
-
#: includes/functions.php:
|
2162 |
msgid "No exceptions"
|
2163 |
msgstr "Brez izjem"
|
2164 |
|
2165 |
#. translators: %s: Ad Inserter Pro
|
2166 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2167 |
-
#: includes/functions.php:
|
2168 |
msgid "%s options for network blogs"
|
2169 |
msgstr "%s izbire za omrežne bloge"
|
2170 |
|
2171 |
#. translators: %s: Ad Inserter Pro
|
2172 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2173 |
-
#: includes/functions.php:
|
2174 |
msgid "Enable %s widgets for sub-sites"
|
2175 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
2176 |
|
2177 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2178 |
-
#: includes/functions.php:
|
2179 |
msgid "Widgets"
|
2180 |
msgstr "Gradniki"
|
2181 |
|
2182 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2183 |
-
#: includes/functions.php:
|
2184 |
msgid "Enable PHP code processing for sub-sites"
|
2185 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
2186 |
|
2187 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2188 |
-
#: includes/functions.php:
|
2189 |
msgid "PHP Processing"
|
2190 |
msgstr "PHP Procesiranje"
|
2191 |
|
2192 |
#. translators: %s: Ad Inserter Pro
|
2193 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2194 |
-
#: includes/functions.php:
|
2195 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2196 |
msgstr ""
|
2197 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
2198 |
|
2199 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2200 |
-
#: includes/functions.php:
|
2201 |
msgid "Post/Page exceptions"
|
2202 |
msgstr "Izjeme prispevkov/strani"
|
2203 |
|
2204 |
#. translators: %s: Ad Inserter Pro
|
2205 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2206 |
-
#: includes/functions.php:
|
2207 |
msgid "Enable %s settings page for sub-sites"
|
2208 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2209 |
|
2210 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2211 |
-
#: includes/functions.php:
|
2212 |
msgid "Settings page"
|
2213 |
msgstr "Stran z nastavitvami"
|
2214 |
|
2215 |
#. translators: %s: Ad Inserter Pro
|
2216 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2217 |
-
#: includes/functions.php:
|
2218 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2219 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2220 |
|
2221 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2222 |
-
#: includes/functions.php:
|
2223 |
msgid "Main site settings used for all blogs"
|
2224 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2225 |
|
2226 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2227 |
-
#: includes/functions.php:
|
2228 |
msgid "Ad Blocking Detection"
|
2229 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2230 |
|
2231 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2232 |
-
#: includes/functions.php:
|
2233 |
msgid ""
|
2234 |
"Standard method is reliable but should be used only if Advanced method does "
|
2235 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2244,8 +2243,8 @@ msgstr ""
|
|
2244 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2245 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2246 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2247 |
-
#: includes/functions.php:
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "AD BLOCKING"
|
2250 |
msgstr "BLOKIRANJE OGLASOV"
|
2251 |
|
@@ -2253,86 +2252,86 @@ msgstr "BLOKIRANJE OGLASOV"
|
|
2253 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2254 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2255 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2256 |
-
#: includes/functions.php:
|
2257 |
-
#: includes/functions.php:
|
2258 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2259 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2260 |
|
2261 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2262 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2263 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2264 |
-
#: includes/functions.php:
|
2265 |
-
#: includes/functions.php:
|
2266 |
msgid "NO AD BLOCKING"
|
2267 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2268 |
|
2269 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2270 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2271 |
-
#: includes/functions.php:
|
2272 |
msgid "AD BLOCKING REPLACEMENT"
|
2273 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2274 |
|
2275 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2276 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2277 |
-
#: includes/functions.php:
|
2278 |
msgid "Pageviews"
|
2279 |
msgstr "Ogledi strani"
|
2280 |
|
2281 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2282 |
-
#: includes/functions.php:
|
2283 |
msgctxt "Version"
|
2284 |
msgid "Unknown"
|
2285 |
msgstr "Neznana"
|
2286 |
|
2287 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2288 |
-
#: includes/functions.php:
|
2289 |
msgctxt "Times"
|
2290 |
msgid "DISPLAYED"
|
2291 |
msgstr "PRIKAZANO"
|
2292 |
|
2293 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2294 |
-
#: includes/functions.php:
|
2295 |
msgid "No version"
|
2296 |
msgstr "Brez različice"
|
2297 |
|
2298 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2299 |
-
#: includes/functions.php:
|
2300 |
msgctxt "Times"
|
2301 |
msgid "BLOCKED"
|
2302 |
msgstr "BLOKIRANO"
|
2303 |
|
2304 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2305 |
-
#: includes/functions.php:
|
2306 |
msgid "Impressions"
|
2307 |
msgstr "Prikazi"
|
2308 |
|
2309 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2310 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2311 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2312 |
-
#: includes/functions.php:
|
2313 |
-
#: includes/functions.php:
|
2314 |
msgid "Clicks"
|
2315 |
msgstr "Kliki"
|
2316 |
|
2317 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2318 |
-
#: includes/functions.php:
|
2319 |
msgid "events"
|
2320 |
msgstr "dogodki"
|
2321 |
|
2322 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2323 |
-
#: includes/functions.php:
|
2324 |
msgid "Ad Blocking Share"
|
2325 |
msgstr "Delež blokiranja oglasov"
|
2326 |
|
2327 |
#. translators: CTR as Click Through Rate
|
2328 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2329 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2330 |
-
#: includes/functions.php:
|
2331 |
msgid "CTR"
|
2332 |
msgstr "CTR"
|
2333 |
|
2334 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2335 |
-
#: includes/functions.php:
|
2336 |
msgid "pageviews"
|
2337 |
msgid_plural "pageviews"
|
2338 |
msgstr[0] "ogled strani"
|
@@ -2341,7 +2340,7 @@ msgstr[2] "oglede strani"
|
|
2341 |
msgstr[3] "ogledov strani"
|
2342 |
|
2343 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2344 |
-
#: includes/functions.php:
|
2345 |
msgid "impressions"
|
2346 |
msgid_plural "impressions"
|
2347 |
msgstr[0] "prikaz"
|
@@ -2350,7 +2349,7 @@ msgstr[2] "prikazi"
|
|
2350 |
msgstr[3] "prikazov"
|
2351 |
|
2352 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2353 |
-
#: includes/functions.php:
|
2354 |
msgid "event"
|
2355 |
msgid_plural "events"
|
2356 |
msgstr[0] "dogodek"
|
@@ -2359,19 +2358,19 @@ msgstr[2] "dogodki"
|
|
2359 |
msgstr[3] "dogodkov"
|
2360 |
|
2361 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2362 |
-
#: includes/functions.php:
|
2363 |
msgctxt "Pageviews / Impressions"
|
2364 |
msgid "Average"
|
2365 |
msgstr "Povprečni"
|
2366 |
|
2367 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2368 |
-
#: includes/functions.php:
|
2369 |
msgctxt "Ad Blocking / Clicks"
|
2370 |
msgid "Average"
|
2371 |
msgstr "Povprečno"
|
2372 |
|
2373 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2374 |
-
#: includes/functions.php:
|
2375 |
msgctxt "Ad Blocking Share / CTR"
|
2376 |
msgid "Average"
|
2377 |
msgstr "Povprečni"
|
@@ -2380,115 +2379,119 @@ msgstr "Povprečni"
|
|
2380 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2381 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2382 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2383 |
-
#: includes/functions.php:
|
2384 |
-
#: includes/functions.php:
|
2385 |
msgid "%s Report"
|
2386 |
msgstr "%s Poročilo"
|
2387 |
|
2388 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2389 |
-
#: includes/functions.php:
|
2390 |
msgid "for last month"
|
2391 |
msgstr "za zadnji mesec"
|
2392 |
|
2393 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2394 |
-
#: includes/functions.php:
|
2395 |
msgid "for this month"
|
2396 |
msgstr "za ta mesec"
|
2397 |
|
2398 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2399 |
-
#: includes/functions.php:
|
2400 |
msgid "for this year"
|
2401 |
msgstr "za to leto"
|
2402 |
|
2403 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2404 |
-
#: includes/functions.php:
|
2405 |
msgid "for the last 15 days"
|
2406 |
msgstr "za zadnjih 15 dni"
|
2407 |
|
2408 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2409 |
-
#: includes/functions.php:
|
2410 |
msgid "for the last 30 days"
|
2411 |
msgstr "za zadnjih 30 dni"
|
2412 |
|
2413 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2414 |
-
#: includes/functions.php:
|
2415 |
msgid "for the last 90 days"
|
2416 |
msgstr "za zadnjih 90 dni"
|
2417 |
|
2418 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2419 |
-
#: includes/functions.php:
|
2420 |
msgid "for the last 180 days"
|
2421 |
msgstr "za zadnjih 180 dni"
|
2422 |
|
2423 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2424 |
-
#: includes/functions.php:
|
2425 |
msgid "for the last 365 days"
|
2426 |
msgstr "za zadnjih 365 dni"
|
2427 |
|
|
|
|
|
|
|
|
|
2428 |
#. translators: %s: Ad Inserter Pro
|
2429 |
-
#: includes/functions.php:
|
2430 |
msgid "Invalid %s version. Continue?"
|
2431 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2432 |
|
2433 |
-
#: includes/functions.php:
|
2434 |
msgid "Background"
|
2435 |
msgstr "Ozadje"
|
2436 |
|
2437 |
#. translators: %s HTML body tag
|
2438 |
-
#: includes/functions.php:
|
2439 |
msgid "Set %s background"
|
2440 |
msgstr "Nastavi ozadje za %s"
|
2441 |
|
2442 |
-
#: includes/functions.php:
|
2443 |
msgid "Image to be used for the background"
|
2444 |
msgstr "Slika, ki bo uporabljena za ozadje"
|
2445 |
|
2446 |
-
#: includes/functions.php:
|
2447 |
msgid "Color"
|
2448 |
msgstr "Barva"
|
2449 |
|
2450 |
-
#: includes/functions.php:
|
2451 |
msgid "Color to be used for the background"
|
2452 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2453 |
|
2454 |
-
#: includes/functions.php:
|
2455 |
msgid "Image size"
|
2456 |
msgstr "Velikost slike"
|
2457 |
|
2458 |
-
#: includes/functions.php:
|
2459 |
msgid "Repeat"
|
2460 |
msgstr "Ponavljanje"
|
2461 |
|
2462 |
-
#: includes/functions.php:
|
2463 |
msgid "Select image"
|
2464 |
msgstr "Izberi sliko"
|
2465 |
|
2466 |
-
#: includes/functions.php:
|
2467 |
-
#: settings.php:
|
2468 |
-
#: settings.php:
|
2469 |
msgid "Click to select black or white list"
|
2470 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2471 |
|
2472 |
#. translators: %s: Ad Inserter Pro
|
2473 |
-
#: includes/functions.php:
|
2474 |
msgid "Invalid %s version."
|
2475 |
msgstr "Neveljavna izdaja %s."
|
2476 |
|
2477 |
-
#: includes/functions.php:
|
2478 |
msgid "Check license"
|
2479 |
msgstr "Preverite licenco"
|
2480 |
|
2481 |
-
#: includes/functions.php:
|
2482 |
msgid "License"
|
2483 |
msgstr "Licenca"
|
2484 |
|
2485 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2486 |
-
#: includes/functions.php:
|
2487 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2488 |
msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
|
2489 |
|
2490 |
#. Translators: %s: HTML tags
|
2491 |
-
#: includes/functions.php:
|
2492 |
msgid ""
|
2493 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2494 |
"account %s and create license key."
|
@@ -2496,60 +2499,64 @@ msgstr ""
|
|
2496 |
"Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
|
2497 |
"za GeoLite2 račun %s in ustvarite licenčni ključ."
|
2498 |
|
2499 |
-
#: includes/functions.php:
|
2500 |
msgid "Start date"
|
2501 |
msgstr "Začetni datum"
|
2502 |
|
2503 |
-
#: includes/functions.php:
|
2504 |
msgid "Enter date in format yyyy-mm-dd"
|
2505 |
msgstr "Vnesite datum v formatu yyyy-mm-dd"
|
2506 |
|
2507 |
-
#: includes/functions.php:
|
2508 |
msgid "Start time"
|
2509 |
msgstr "Začetni čas"
|
2510 |
|
2511 |
-
#: includes/functions.php:
|
2512 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2513 |
msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
|
2514 |
|
2515 |
-
#: includes/functions.php:
|
2516 |
msgid "End date"
|
2517 |
msgstr "Končni datum"
|
2518 |
|
2519 |
-
#: includes/functions.php:
|
2520 |
msgid "End time"
|
2521 |
msgstr "Končni čas"
|
2522 |
|
2523 |
-
#: includes/functions.php:
|
2524 |
msgid "Select wanted days in week"
|
2525 |
msgstr "Izberite želene dneve v tednu"
|
2526 |
|
2527 |
-
#: includes/functions.php:
|
2528 |
msgid "Ad blocking detection is disabled"
|
2529 |
msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
|
2530 |
|
2531 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2532 |
msgid "Manual loading"
|
2533 |
msgstr "Ročno nalaganje"
|
2534 |
|
2535 |
#. Translators: %s HTML tags
|
2536 |
-
#: includes/functions.php:
|
2537 |
msgid "Create and manage %s MaxMind license key %s"
|
2538 |
msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
|
2539 |
|
2540 |
-
#: includes/functions.php:
|
2541 |
msgid "MaxMind license key"
|
2542 |
msgstr "MaxMind licenčni ključ"
|
2543 |
|
2544 |
-
#: includes/functions.php:
|
2545 |
msgid "Enter license key obtained from MaxMind"
|
2546 |
msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
|
2547 |
|
2548 |
-
#: includes/functions.php:
|
2549 |
msgid "Event category"
|
2550 |
msgstr "Kategorija dogodka"
|
2551 |
|
2552 |
-
#: includes/functions.php:
|
2553 |
msgid ""
|
2554 |
"Category name used for external tracking events. You can use tags to get the "
|
2555 |
"event, the number or the name of the block that caused the event."
|
@@ -2557,11 +2564,11 @@ msgstr ""
|
|
2557 |
"Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2558 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2559 |
|
2560 |
-
#: includes/functions.php:
|
2561 |
msgid "Event action"
|
2562 |
msgstr "Akcija dogodka"
|
2563 |
|
2564 |
-
#: includes/functions.php:
|
2565 |
msgid ""
|
2566 |
"Action name used for external tracking events. You can use tags to get the "
|
2567 |
"event, the number or the name of the block that caused the event."
|
@@ -2569,11 +2576,11 @@ msgstr ""
|
|
2569 |
"Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2570 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2571 |
|
2572 |
-
#: includes/functions.php:
|
2573 |
msgid "Event label"
|
2574 |
msgstr "Oznaka dogodka"
|
2575 |
|
2576 |
-
#: includes/functions.php:
|
2577 |
msgid ""
|
2578 |
"Label name used for external tracking events. You can use tags to get the "
|
2579 |
"event, the number or the name of the block that caused the event."
|
@@ -2582,66 +2589,66 @@ msgstr ""
|
|
2582 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2583 |
|
2584 |
#. translators: %s: Ad Inserter Pro
|
2585 |
-
#: includes/functions.php:
|
2586 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2587 |
msgstr ""
|
2588 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2589 |
"Spletišča"
|
2590 |
|
2591 |
#. translators: %s: Ad Inserter Pro
|
2592 |
-
#: includes/functions.php:
|
2593 |
msgid "Show link to %s on the Sites page"
|
2594 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2595 |
|
2596 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2597 |
msgid "File %s missing."
|
2598 |
msgstr "Datoteka %s ni najdena."
|
2599 |
|
2600 |
-
#: includes/
|
2601 |
-
msgid "The latest PHP version: "
|
2602 |
-
msgstr "Zadnja različica PHP: "
|
2603 |
-
|
2604 |
-
#: includes/placeholders.php:20
|
2605 |
msgid "Custom"
|
2606 |
msgstr "Po meri"
|
2607 |
|
2608 |
-
#: includes/placeholders.php:
|
2609 |
msgid "Placeholder Editor"
|
2610 |
msgstr "Urejevalnik Polnila"
|
2611 |
|
2612 |
-
#: includes/placeholders.php:
|
2613 |
msgid "Select placeholder"
|
2614 |
msgstr "Izberi polnilo"
|
2615 |
|
2616 |
-
#: includes/placeholders.php:
|
2617 |
msgid "Edit placeholder size, colors and text"
|
2618 |
msgstr "Uredi velikost, barve in besedilo polnila"
|
2619 |
|
2620 |
-
#: includes/placeholders.php:
|
2621 |
msgid "Close placeholder editor"
|
2622 |
msgstr "Zapri urejevalnik polnila"
|
2623 |
|
2624 |
-
#: includes/placeholders.php:
|
2625 |
msgid "Placeholder"
|
2626 |
msgstr "Polnilo"
|
2627 |
|
2628 |
-
#: includes/placeholders.php:
|
2629 |
msgid "Size"
|
2630 |
msgstr "Velikost"
|
2631 |
|
2632 |
-
#: includes/placeholders.php:
|
2633 |
msgid "Background color"
|
2634 |
msgstr "Barva ozadja"
|
2635 |
|
2636 |
-
#: includes/placeholders.php:
|
2637 |
msgid "Text"
|
2638 |
msgstr "Besedilo"
|
2639 |
|
2640 |
-
#: includes/placeholders.php:
|
2641 |
msgid "Text color"
|
2642 |
msgstr "Barva besedila"
|
2643 |
|
2644 |
-
#: includes/placeholders.php:
|
2645 |
msgid ""
|
2646 |
"Here you can create a universal placeholder image that can be used in place "
|
2647 |
"of ads when they are not available yet.\n"
|
@@ -2653,7 +2660,7 @@ msgstr ""
|
|
2653 |
"Slikovna polnila, ki jih ustvarite tukaj, se bodo obnašala kot katerakoli "
|
2654 |
"slika. Lahko jih tudi shranite na lokalni računalnik ali strežnik."
|
2655 |
|
2656 |
-
#: includes/placeholders.php:
|
2657 |
msgid ""
|
2658 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2659 |
"300x600 or define custom size.\n"
|
@@ -2671,7 +2678,7 @@ msgstr ""
|
|
2671 |
"Lahko naredite tudi prazen pravokotnik z enotno barvo tako, da pobrišete "
|
2672 |
"besedilo polnila."
|
2673 |
|
2674 |
-
#: includes/placeholders.php:
|
2675 |
msgid ""
|
2676 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2677 |
"window shows only the code for the currently selected option.\n"
|
@@ -2683,7 +2690,7 @@ msgstr ""
|
|
2683 |
"Zato bo generator kode v tem primeru uvozil ali generiral kodo za trenutno "
|
2684 |
"izbrano različico."
|
2685 |
|
2686 |
-
#: includes/placeholders.php:
|
2687 |
msgid ""
|
2688 |
"Code generator for banners and AdSense generates the code only when you "
|
2689 |
"click on the button Generate code.\n"
|
@@ -2698,7 +2705,7 @@ msgstr ""
|
|
2698 |
"različicami, morate tudi (po potrebi) uvoziti in generirati kodo za vsako "
|
2699 |
"različico rotacije."
|
2700 |
|
2701 |
-
#: includes/placeholders.php:
|
2702 |
msgid ""
|
2703 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2704 |
"You can select banner image (or placeholder), optionally define link (web "
|
@@ -2710,115 +2717,115 @@ msgstr ""
|
|
2710 |
"(naslov spletne strani, ki se bo odprla s klikom na pasico) in izberete, ali "
|
2711 |
"naj se povezava odpre v novem zavihku."
|
2712 |
|
2713 |
-
#: includes/preview-adb.php:
|
2714 |
msgid "Add dummy paragraph"
|
2715 |
msgstr "Dodaj testni odstavek"
|
2716 |
|
2717 |
-
#: includes/preview-adb.php:
|
2718 |
msgid "Remove dummy paragraph"
|
2719 |
msgstr "Odstrani testni odstavek"
|
2720 |
|
2721 |
-
#: includes/preview-adb.php:
|
2722 |
msgid "Use current settings"
|
2723 |
msgstr "Uporabi trenutne nastavitve"
|
2724 |
|
2725 |
-
#: includes/preview-adb.php:
|
2726 |
msgctxt "Button"
|
2727 |
msgid "Use"
|
2728 |
msgstr "Uporabi"
|
2729 |
|
2730 |
-
#: includes/preview-adb.php:
|
2731 |
msgid "Reset to the saved settings"
|
2732 |
msgstr "Ponastavi na shranjene nastavitve"
|
2733 |
|
2734 |
-
#: includes/preview-adb.php:
|
2735 |
msgctxt "Button"
|
2736 |
msgid "Reset"
|
2737 |
msgstr "Ponastavi"
|
2738 |
|
2739 |
-
#: includes/preview-adb.php:
|
2740 |
msgid "Reset to the default settings"
|
2741 |
msgstr "Ponastavi na privzete nastavitve"
|
2742 |
|
2743 |
-
#: includes/preview-adb.php:
|
2744 |
msgctxt "Button"
|
2745 |
msgid "Default"
|
2746 |
msgstr "Privzeto"
|
2747 |
|
2748 |
-
#: includes/preview-adb.php:
|
2749 |
msgid "Close preview window"
|
2750 |
msgstr "Zapri okno predogleda"
|
2751 |
|
2752 |
-
#: includes/preview-adb.php:
|
2753 |
msgctxt "Button "
|
2754 |
msgid "Cancel"
|
2755 |
msgstr "Prekliči"
|
2756 |
|
2757 |
-
#: includes/preview-adb.php:
|
2758 |
msgid "Ad Blocking Detected Message Preview"
|
2759 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2760 |
|
2761 |
-
#: includes/preview-adb.php:
|
2762 |
msgid "Message CSS"
|
2763 |
msgstr "CSS sporočila"
|
2764 |
|
2765 |
-
#: includes/preview-adb.php:
|
2766 |
msgid "Overlay CSS"
|
2767 |
msgstr "CSS prevleke"
|
2768 |
|
2769 |
-
#: includes/preview.php:
|
2770 |
msgid "Sticky Code Preview"
|
2771 |
msgstr "Predogled Lepljive Kode"
|
2772 |
|
2773 |
-
#: includes/preview.php:
|
2774 |
msgid "Code Preview"
|
2775 |
msgstr "Predogled Kode"
|
2776 |
|
2777 |
-
#: includes/preview.php:
|
2778 |
msgid "Highlight inserted code"
|
2779 |
msgstr "Označi vstavljeno kodo"
|
2780 |
|
2781 |
-
#: includes/preview.php:
|
2782 |
msgid "Highlight"
|
2783 |
msgstr "Označi"
|
2784 |
|
2785 |
-
#: includes/preview.php:
|
2786 |
msgid "Reset to block settings"
|
2787 |
msgstr "Ponastavi na nastavitve bloka"
|
2788 |
|
2789 |
-
#: includes/preview.php:
|
2790 |
msgid "AdSense ad unit"
|
2791 |
msgstr "Oglasna enota AdSense"
|
2792 |
|
2793 |
-
#: includes/preview.php:
|
2794 |
msgid "wrapping div"
|
2795 |
msgstr "div za ovijanje"
|
2796 |
|
2797 |
-
#: includes/preview.php:
|
2798 |
msgid "background"
|
2799 |
msgstr "ozadje"
|
2800 |
|
2801 |
-
#: includes/preview.php:
|
2802 |
msgid "Alignment"
|
2803 |
msgstr "Poravnava"
|
2804 |
|
2805 |
-
#: includes/preview.php:
|
2806 |
msgid "Repeat image"
|
2807 |
msgstr "Ponavljaj sliko"
|
2808 |
|
2809 |
-
#: includes/preview.php:
|
2810 |
msgid "Horizontal margin"
|
2811 |
msgstr "Vodoravni odmik"
|
2812 |
|
2813 |
-
#: includes/preview.php:
|
2814 |
msgid "Vertical margin"
|
2815 |
msgstr "Navpični odmik"
|
2816 |
|
2817 |
-
#: includes/preview.php:
|
2818 |
msgid "Animate"
|
2819 |
msgstr "Animiraj"
|
2820 |
|
2821 |
-
#: includes/preview.php:
|
2822 |
msgid ""
|
2823 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2824 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2833,7 +2840,7 @@ msgstr ""
|
|
2833 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2834 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2835 |
|
2836 |
-
#: includes/preview.php:
|
2837 |
msgid ""
|
2838 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2839 |
"code with the alignment and style as it is set for this block. Highlight "
|
@@ -2843,7 +2850,7 @@ msgstr ""
|
|
2843 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2844 |
"margin območje div-a za ovijanje in območje kode."
|
2845 |
|
2846 |
-
#: includes/preview.php:
|
2847 |
msgid ""
|
2848 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2849 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2855,7 +2862,7 @@ msgstr ""
|
|
2855 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2856 |
"Označi za označitev bloka."
|
2857 |
|
2858 |
-
#: includes/preview.php:
|
2859 |
msgid ""
|
2860 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2861 |
"display with different screen widths.\n"
|
@@ -2867,7 +2874,7 @@ msgstr ""
|
|
2867 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2868 |
"prenesle v aktivni blok."
|
2869 |
|
2870 |
-
#: includes/preview.php:
|
2871 |
msgid ""
|
2872 |
"Please note that the code, block name, alignment and style are taken from "
|
2873 |
"the current block settings (may not be saved).\n"
|
@@ -2880,9 +2887,9 @@ msgstr ""
|
|
2880 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2881 |
"kodo za blok."
|
2882 |
|
2883 |
-
#: includes/preview.php:
|
2884 |
-
#: includes/preview.php:
|
2885 |
-
#: includes/preview.php:
|
2886 |
msgid ""
|
2887 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2888 |
"code with it's settings is called a block.\n"
|
@@ -2906,9 +2913,9 @@ msgstr ""
|
|
2906 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2907 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2908 |
|
2909 |
-
#: includes/preview.php:
|
2910 |
-
#: includes/preview.php:
|
2911 |
-
#: includes/preview.php:
|
2912 |
msgid ""
|
2913 |
"Few very important things you need to know in order to insert code and "
|
2914 |
"display some ad:\n"
|
@@ -2931,7 +2938,7 @@ msgstr ""
|
|
2931 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
2932 |
"uporabljate posamezne izjeme za prispevke/strani."
|
2933 |
|
2934 |
-
#: includes/preview.php:
|
2935 |
msgid ""
|
2936 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2937 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2947,6 +2954,18 @@ msgstr ""
|
|
2947 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2948 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2949 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2950 |
#: settings.php:160 settings.php:163
|
2951 |
msgid ""
|
2952 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
@@ -2954,7 +2973,7 @@ msgstr ""
|
|
2954 |
"Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
|
2955 |
"vedno izjeme"
|
2956 |
|
2957 |
-
#: settings.php:202 settings.php:
|
2958 |
msgid ""
|
2959 |
"Settings for individual exceptions have been updated. Please check all "
|
2960 |
"blocks that have exceptions and and then save settings."
|
@@ -2966,7 +2985,7 @@ msgstr ""
|
|
2966 |
msgid "Online documentation"
|
2967 |
msgstr "Spletna Dokumentacija"
|
2968 |
|
2969 |
-
#: settings.php:248 settings.php:
|
2970 |
msgid "Show AdSense ad units"
|
2971 |
msgstr "Pokaži oglasne enote AdSense"
|
2972 |
|
@@ -2974,7 +2993,7 @@ msgstr "Pokaži oglasne enote AdSense"
|
|
2974 |
msgid "Edit ads.txt file"
|
2975 |
msgstr "Uredi datoteko ads.txt"
|
2976 |
|
2977 |
-
#: settings.php:260 settings.php:
|
2978 |
msgid "Check theme for available positions for automatic insertion"
|
2979 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2980 |
|
@@ -3122,158 +3141,158 @@ msgstr ""
|
|
3122 |
msgid "General Settings"
|
3123 |
msgstr "Splošne Nastavitve"
|
3124 |
|
3125 |
-
#: settings.php:
|
3126 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3127 |
msgstr ""
|
3128 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3129 |
|
3130 |
-
#: settings.php:
|
3131 |
msgid "Toggle tools"
|
3132 |
msgstr "Preklopi orodja"
|
3133 |
|
3134 |
-
#: settings.php:
|
3135 |
msgid "Process PHP code in block"
|
3136 |
msgstr "Procesiraj PHP kodo v bloku"
|
3137 |
|
3138 |
-
#: settings.php:
|
3139 |
msgid "Disable insertion of this block"
|
3140 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3141 |
|
3142 |
-
#: settings.php:
|
3143 |
msgid "Toggle code generator"
|
3144 |
msgstr "Preklopi generator kode"
|
3145 |
|
3146 |
-
#: settings.php:
|
3147 |
msgid "Toggle rotation editor"
|
3148 |
msgstr "Preklopi urejevalnik rotacije"
|
3149 |
|
3150 |
-
#: settings.php:
|
3151 |
msgid "Open visual HTML editor"
|
3152 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid "Clear block"
|
3156 |
msgstr "Počisti blok"
|
3157 |
|
3158 |
-
#: settings.php:
|
3159 |
msgid "Copy block"
|
3160 |
msgstr "Kopiraj blok"
|
3161 |
|
3162 |
-
#: settings.php:
|
3163 |
msgid "Paste name"
|
3164 |
msgstr "Prilepi ime"
|
3165 |
|
3166 |
-
#: settings.php:
|
3167 |
msgid "Paste code"
|
3168 |
msgstr "Prilepi kodo"
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid "Paste settings"
|
3172 |
msgstr "Prilepi nastavitve"
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgid "Paste block (name, code and settings)"
|
3176 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3177 |
|
3178 |
-
#: settings.php:
|
3179 |
msgid "Rotation groups"
|
3180 |
msgstr "Skupine za rotacijo"
|
3181 |
|
3182 |
-
#: settings.php:
|
3183 |
msgid "Remove option"
|
3184 |
msgstr "Odstrani različico"
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Add option"
|
3188 |
msgstr "Dodaj različico"
|
3189 |
|
3190 |
-
#: settings.php:
|
3191 |
msgid "Import code"
|
3192 |
msgstr "Uvozi kodo"
|
3193 |
|
3194 |
-
#: settings.php:
|
3195 |
msgid "Generate code"
|
3196 |
msgstr "Generiraj kodo"
|
3197 |
|
3198 |
-
#: settings.php:
|
3199 |
msgid "Banner"
|
3200 |
msgstr "Pasica"
|
3201 |
|
3202 |
-
#: settings.php:
|
3203 |
msgid "Image"
|
3204 |
msgstr "Slika"
|
3205 |
|
3206 |
-
#: settings.php:
|
3207 |
msgid "Link"
|
3208 |
msgstr "Povezava"
|
3209 |
|
3210 |
-
#: settings.php:
|
3211 |
msgid "Open link in a new tab"
|
3212 |
msgstr "Odpri povezavo v novem zavihku"
|
3213 |
|
3214 |
-
#: settings.php:
|
3215 |
msgid "Select Image"
|
3216 |
msgstr "Izberi Sliko"
|
3217 |
|
3218 |
-
#: settings.php:
|
3219 |
msgid "Select Placeholder"
|
3220 |
msgstr "Izberi Polnilo"
|
3221 |
|
3222 |
-
#: settings.php:
|
3223 |
msgid "Comment"
|
3224 |
msgstr "Komentar"
|
3225 |
|
3226 |
-
#: settings.php:
|
3227 |
msgctxt "AdSense"
|
3228 |
msgid "Publisher ID"
|
3229 |
msgstr "ID založnika"
|
3230 |
|
3231 |
-
#: settings.php:
|
3232 |
msgctxt "AdSense"
|
3233 |
msgid "Ad Slot ID"
|
3234 |
msgstr "ID mesta"
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Ad Type"
|
3238 |
msgstr "Vrsta"
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "AMP Ad"
|
3242 |
msgstr "AMP Oglas"
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "Show ad units from your AdSense account"
|
3246 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid "AdSense ad units"
|
3250 |
msgstr "Oglasne enote AdSense"
|
3251 |
|
3252 |
-
#: settings.php:
|
3253 |
msgctxt "AdSense"
|
3254 |
msgid "Layout"
|
3255 |
msgstr "Postavitev"
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgctxt "AdSense"
|
3259 |
msgid "Layout Key"
|
3260 |
msgstr "Ključ postavitve"
|
3261 |
|
3262 |
-
#: settings.php:
|
3263 |
msgid "Full width"
|
3264 |
msgstr "Celotna širina"
|
3265 |
|
3266 |
-
#: settings.php:
|
3267 |
msgctxt "Full width"
|
3268 |
msgid "Enabled"
|
3269 |
msgstr "Omogočena"
|
3270 |
|
3271 |
-
#: settings.php:
|
3272 |
msgctxt "Full width"
|
3273 |
msgid "Disabled"
|
3274 |
msgstr "Onemogočena"
|
3275 |
|
3276 |
-
#: settings.php:
|
3277 |
msgid ""
|
3278 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3279 |
"Cookie or Referer (domain)"
|
@@ -3281,28 +3300,28 @@ msgstr ""
|
|
3281 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3282 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3283 |
|
3284 |
-
#: settings.php:
|
3285 |
msgid "Lists"
|
3286 |
msgstr "Seznami"
|
3287 |
|
3288 |
-
#: settings.php:
|
3289 |
msgid "Widget, Shortcode and PHP function call"
|
3290 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3291 |
|
3292 |
-
#: settings.php:
|
3293 |
msgid "Manual"
|
3294 |
msgstr "Ročno"
|
3295 |
|
3296 |
-
#: settings.php:
|
3297 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3298 |
msgstr ""
|
3299 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3300 |
|
3301 |
-
#: settings.php:
|
3302 |
msgid "Devices"
|
3303 |
msgstr "Naprave"
|
3304 |
|
3305 |
-
#: settings.php:
|
3306 |
msgid ""
|
3307 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3308 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3310,15 +3329,15 @@ msgstr ""
|
|
3310 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3311 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3312 |
|
3313 |
-
#: settings.php:
|
3314 |
msgid "Misc"
|
3315 |
msgstr "Razno"
|
3316 |
|
3317 |
-
#: settings.php:
|
3318 |
msgid "Preview code and alignment"
|
3319 |
msgstr "Predogled kode in poravnave"
|
3320 |
|
3321 |
-
#: settings.php:
|
3322 |
msgid ""
|
3323 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3324 |
"editor is active before saving settings."
|
@@ -3326,15 +3345,15 @@ msgstr ""
|
|
3326 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3327 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3328 |
|
3329 |
-
#: settings.php:
|
3330 |
msgid "Enable insertion on posts"
|
3331 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3332 |
|
3333 |
-
#: settings.php:
|
3334 |
msgid "Posts"
|
3335 |
msgstr "Prispevki"
|
3336 |
|
3337 |
-
#: settings.php:
|
3338 |
msgid ""
|
3339 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3340 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3344,43 +3363,43 @@ msgstr ""
|
|
3344 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3345 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3346 |
|
3347 |
-
#: settings.php:
|
3348 |
msgid "Homepage"
|
3349 |
msgstr "Domača stran"
|
3350 |
|
3351 |
-
#: settings.php:
|
3352 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3353 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3354 |
|
3355 |
-
#: settings.php:
|
3356 |
msgid "Category pages"
|
3357 |
msgstr "Strani kategorij"
|
3358 |
|
3359 |
-
#: settings.php:
|
3360 |
msgid "Enable insertion on static pages"
|
3361 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3362 |
|
3363 |
-
#: settings.php:
|
3364 |
msgid "Static pages"
|
3365 |
msgstr "Statične strani"
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "Enable insertion on search blog pages"
|
3369 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Search pages"
|
3373 |
msgstr "Iskalne strani"
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Enable insertion on tag or archive blog pages"
|
3377 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3381 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid ""
|
3385 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3386 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3390,7 +3409,7 @@ msgstr ""
|
|
3390 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3391 |
"nastavitvah pod urejevalnikom)."
|
3392 |
|
3393 |
-
#: settings.php:
|
3394 |
msgid ""
|
3395 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3396 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3400,13 +3419,13 @@ msgstr ""
|
|
3400 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3401 |
"strani (v nastavitvah pod urejevalnikom)."
|
3402 |
|
3403 |
-
#: settings.php:
|
3404 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3405 |
msgstr ""
|
3406 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3407 |
|
3408 |
#. Translators: Enabled means...
|
3409 |
-
#: settings.php:
|
3410 |
msgid ""
|
3411 |
"means the insertion for this block is enabled by default and disabled for "
|
3412 |
"exceptions."
|
@@ -3415,7 +3434,7 @@ msgstr ""
|
|
3415 |
"izjeme."
|
3416 |
|
3417 |
#. Translators: Disabled means...
|
3418 |
-
#: settings.php:
|
3419 |
msgid ""
|
3420 |
"means the insertion for this block is disabled by default and enabled for "
|
3421 |
"exceptions."
|
@@ -3423,7 +3442,7 @@ msgstr ""
|
|
3423 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3424 |
"izjeme."
|
3425 |
|
3426 |
-
#: settings.php:
|
3427 |
msgid ""
|
3428 |
"When individual post/page exceptions are enabled they can be configured on "
|
3429 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3432,31 +3451,31 @@ msgstr ""
|
|
3432 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3433 |
"urejevalnikom)."
|
3434 |
|
3435 |
-
#: settings.php:
|
3436 |
msgid ""
|
3437 |
"No exception for post or static page defined. Block will not be inserted."
|
3438 |
msgstr ""
|
3439 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3440 |
|
3441 |
-
#: settings.php:
|
3442 |
msgctxt "post"
|
3443 |
msgid "Type"
|
3444 |
msgstr "Vrsta"
|
3445 |
|
3446 |
#. translators: %d: block number
|
3447 |
-
#: settings.php:
|
3448 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3449 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3450 |
|
3451 |
-
#: settings.php:
|
3452 |
msgid "Clear listed exceptions for block"
|
3453 |
msgstr "Pobriši izpisane izjeme za blok"
|
3454 |
|
3455 |
-
#: settings.php:
|
3456 |
msgid "Insertion"
|
3457 |
msgstr "Vstavljanje"
|
3458 |
|
3459 |
-
#: settings.php:
|
3460 |
msgid ""
|
3461 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3462 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3472,7 +3491,7 @@ msgstr ""
|
|
3472 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3473 |
"število pomeni štetje z nasprotne smeri"
|
3474 |
|
3475 |
-
#: settings.php:
|
3476 |
msgid ""
|
3477 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3478 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3487,7 +3506,7 @@ msgstr ""
|
|
3487 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3488 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3489 |
|
3490 |
-
#: settings.php:
|
3491 |
msgid ""
|
3492 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3493 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3496,7 +3515,7 @@ msgstr ""
|
|
3496 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3497 |
"izvlečki"
|
3498 |
|
3499 |
-
#: settings.php:
|
3500 |
msgid ""
|
3501 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3502 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3505,7 +3524,7 @@ msgstr ""
|
|
3505 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3506 |
"prispevki"
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid ""
|
3510 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3511 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3514,44 +3533,44 @@ msgstr ""
|
|
3514 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3515 |
"vsi komentarji"
|
3516 |
|
3517 |
-
#: settings.php:
|
3518 |
msgid "Toggle paragraph counting settings"
|
3519 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3520 |
|
3521 |
-
#: settings.php:
|
3522 |
msgid "Toggle paragraph clearance settings"
|
3523 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3524 |
|
3525 |
-
#: settings.php:
|
3526 |
msgid "Toggle insertion filter settings"
|
3527 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3528 |
|
3529 |
-
#: settings.php:
|
3530 |
msgid "Toggle insertion and alignment icons"
|
3531 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3532 |
|
3533 |
-
#: settings.php:
|
3534 |
msgid "Custom CSS code for the wrapping div"
|
3535 |
msgstr "CSS koda po meri za div za ovijanje"
|
3536 |
|
3537 |
-
#: settings.php:
|
3538 |
-
#: settings.php:
|
3539 |
msgid "CSS code for the wrapping div, click to edit"
|
3540 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3541 |
|
3542 |
-
#: settings.php:
|
3543 |
msgid "HTML element"
|
3544 |
msgstr "HTML element"
|
3545 |
|
3546 |
-
#: settings.php:
|
3547 |
msgid "HTML element selector or comma separated list of selectors"
|
3548 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3549 |
|
3550 |
-
#: settings.php:
|
3551 |
msgid "Action"
|
3552 |
msgstr "Akcija"
|
3553 |
|
3554 |
-
#: settings.php:
|
3555 |
msgid ""
|
3556 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3557 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3561,78 +3580,92 @@ msgstr ""
|
|
3561 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3562 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3563 |
|
3564 |
-
#: settings.php:
|
3565 |
msgid "Code position"
|
3566 |
msgstr "Položaj kode"
|
3567 |
|
3568 |
-
#: settings.php:
|
3569 |
msgid ""
|
3570 |
"Page position where the code for client-side insertion will be inserted."
|
3571 |
msgstr ""
|
3572 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid "Count"
|
3576 |
msgstr "Štej"
|
3577 |
|
3578 |
-
#: settings.php:
|
3579 |
msgid "paragraphs with tags"
|
3580 |
msgstr "odstavke z značkami"
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3584 |
msgstr ""
|
3585 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3586 |
|
3587 |
-
#: settings.php:
|
3588 |
msgid "that have between"
|
3589 |
msgstr "ki imajo med"
|
3590 |
|
3591 |
-
#: settings.php:
|
3592 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3593 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3594 |
|
3595 |
-
#: settings.php:
|
3596 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3597 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3598 |
|
3599 |
-
#: settings.php:
|
3600 |
msgid "words"
|
3601 |
msgstr "besed"
|
3602 |
|
3603 |
-
#: settings.php:
|
3604 |
msgid "Comma separated texts"
|
3605 |
msgstr "Z vejico ločena besedila"
|
3606 |
|
3607 |
-
#: settings.php:1480
|
3608 |
-
msgid ""
|
3609 |
-
"Count also paragraphs inside these elements - defined on general plugin "
|
3610 |
-
"settings page - tab [*] / tab General"
|
3611 |
-
msgstr ""
|
3612 |
-
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3613 |
-
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3614 |
-
|
3615 |
-
#. Translators: %s: HTML tags
|
3616 |
-
#: settings.php:1486
|
3617 |
-
msgid "Count inside %s elements"
|
3618 |
-
msgstr "Štej znotraj elementov %s"
|
3619 |
-
|
3620 |
#. translators: inside [HTML tags] elements that contain
|
3621 |
-
#: settings.php:
|
3622 |
msgid "inside"
|
3623 |
msgstr "znotraj"
|
3624 |
|
3625 |
-
#: settings.php:
|
3626 |
msgid "Comma separated HTML tag names of container elements"
|
3627 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3628 |
|
3629 |
#. translators: inside [HTML tags] elements that contain
|
3630 |
-
#: settings.php:
|
3631 |
msgid "elements that"
|
3632 |
msgstr "elementov, ki"
|
3633 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3634 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3635 |
-
#: settings.php:
|
3636 |
msgid "Do not insert for first"
|
3637 |
msgid_plural "Do not insert for first"
|
3638 |
msgstr[0] "Ne vstavi za prvi"
|
@@ -3640,7 +3673,7 @@ msgstr[1] "Ne vstavi za prva"
|
|
3640 |
msgstr[2] "Ne vstavi za prve"
|
3641 |
msgstr[3] "Ne vstavi za prvih"
|
3642 |
|
3643 |
-
#: settings.php:
|
3644 |
msgid ""
|
3645 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3646 |
"first paragraphs"
|
@@ -3649,7 +3682,7 @@ msgstr ""
|
|
3649 |
"odstavkov"
|
3650 |
|
3651 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3652 |
-
#: settings.php:
|
3653 |
msgid "and last"
|
3654 |
msgid_plural "and last"
|
3655 |
msgstr[0] "in zadnji"
|
@@ -3657,7 +3690,7 @@ msgstr[1] "in zadnja"
|
|
3657 |
msgstr[2] "in zadnje"
|
3658 |
msgstr[3] "in zadnjih"
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid ""
|
3662 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3663 |
"last paragraphs"
|
@@ -3667,7 +3700,7 @@ msgstr ""
|
|
3667 |
|
3668 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3669 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3670 |
-
#: settings.php:
|
3671 |
msgid "paragraph"
|
3672 |
msgid_plural "paragraphs"
|
3673 |
msgstr[0] "odstavek"
|
@@ -3675,23 +3708,23 @@ msgstr[1] "odstavka"
|
|
3675 |
msgstr[2] "odstavke"
|
3676 |
msgstr[3] "odstavkov"
|
3677 |
|
3678 |
-
#: settings.php:
|
3679 |
msgid "Post/Static page must have between"
|
3680 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3681 |
|
3682 |
-
#: settings.php:
|
3683 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3684 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3685 |
|
3686 |
-
#: settings.php:
|
3687 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3688 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3689 |
|
3690 |
-
#: settings.php:
|
3691 |
msgid "Minimum number of words in paragraphs above"
|
3692 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3693 |
|
3694 |
-
#: settings.php:
|
3695 |
msgid ""
|
3696 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3697 |
"numbers"
|
@@ -3699,128 +3732,96 @@ msgstr ""
|
|
3699 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3700 |
"številkami odstavkov"
|
3701 |
|
3702 |
-
#: settings.php:
|
3703 |
msgid "In"
|
3704 |
msgstr "V"
|
3705 |
|
3706 |
-
#: settings.php:
|
3707 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3708 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3709 |
|
3710 |
-
#: settings.php:
|
3711 |
msgid "paragraphs above avoid"
|
3712 |
msgstr "odstavkih zgoraj se izogni"
|
3713 |
|
3714 |
-
#: settings.php:
|
3715 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3716 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3717 |
|
3718 |
-
#: settings.php:
|
3719 |
msgid "paragraphs below avoid"
|
3720 |
msgstr "odstavkih spodaj se izogni"
|
3721 |
|
3722 |
-
#: settings.php:
|
3723 |
msgid "If text is found"
|
3724 |
msgstr "Če je besedilo najdeno"
|
3725 |
|
3726 |
-
#: settings.php:
|
3727 |
msgid "check up to"
|
3728 |
msgstr "preveri do"
|
3729 |
|
3730 |
-
#: settings.php:
|
3731 |
msgctxt "check up to"
|
3732 |
msgid "paragraphs"
|
3733 |
msgstr "odstavkov"
|
3734 |
|
3735 |
-
#: settings.php:
|
3736 |
msgid "Categories"
|
3737 |
msgstr "Kategorije"
|
3738 |
|
3739 |
-
#: settings.php:
|
3740 |
msgid "Toggle category editor"
|
3741 |
msgstr "Preklopi urejevalnik kategorij"
|
3742 |
|
3743 |
-
#: settings.php:
|
3744 |
msgid "Comma separated category slugs"
|
3745 |
msgstr "Z vejico ločeni ključi kategorij"
|
3746 |
|
3747 |
-
#: settings.php:
|
3748 |
-
msgid "Blacklist categories"
|
3749 |
-
msgstr "Črni seznam kategorij"
|
3750 |
-
|
3751 |
-
#: settings.php:1708
|
3752 |
-
msgid "Whitelist categories"
|
3753 |
-
msgstr "Beli seznam kategorij"
|
3754 |
-
|
3755 |
-
#: settings.php:1720
|
3756 |
msgid "Tags"
|
3757 |
msgstr "Oznake"
|
3758 |
|
3759 |
-
#: settings.php:
|
3760 |
msgid "Toggle tag editor"
|
3761 |
msgstr "Preklopi urejevalnik oznak"
|
3762 |
|
3763 |
-
#: settings.php:
|
3764 |
msgid "Comma separated tag slugs"
|
3765 |
msgstr "Z vejico ločeni ključi oznak"
|
3766 |
|
3767 |
-
#: settings.php:
|
3768 |
-
msgid "Blacklist tags"
|
3769 |
-
msgstr "Črni seznam oznak"
|
3770 |
-
|
3771 |
-
#: settings.php:1739
|
3772 |
-
msgid "Whitelist tags"
|
3773 |
-
msgstr "Beli seznam oznak"
|
3774 |
-
|
3775 |
-
#: settings.php:1751
|
3776 |
msgid "Taxonomies"
|
3777 |
msgstr "Taksonomije"
|
3778 |
|
3779 |
-
#: settings.php:
|
3780 |
msgid "Toggle taxonomy editor"
|
3781 |
msgstr "Preklopi urejevalnik taksonomij"
|
3782 |
|
3783 |
-
#: settings.php:
|
3784 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3785 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3786 |
|
3787 |
-
#: settings.php:
|
3788 |
-
msgid "Blacklist taxonomies"
|
3789 |
-
msgstr "Črni seznam taksonomij"
|
3790 |
-
|
3791 |
-
#: settings.php:1770
|
3792 |
-
msgid "Whitelist taxonomies"
|
3793 |
-
msgstr "Beli seznam taksonomij"
|
3794 |
-
|
3795 |
-
#: settings.php:1782
|
3796 |
msgid "Post IDs"
|
3797 |
msgstr "ID-ji prispevkov"
|
3798 |
|
3799 |
-
#: settings.php:
|
3800 |
msgid "Toggle post/page ID editor"
|
3801 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3802 |
|
3803 |
-
#: settings.php:
|
3804 |
msgid "Comma separated post/page IDs"
|
3805 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3806 |
|
3807 |
-
#: settings.php:
|
3808 |
-
msgid "Blacklist IDs"
|
3809 |
-
msgstr "Črni seznam ID-jev"
|
3810 |
-
|
3811 |
-
#: settings.php:1801
|
3812 |
-
msgid "Whitelist IDs"
|
3813 |
-
msgstr "Beli seznam ID-jev"
|
3814 |
-
|
3815 |
-
#: settings.php:1813
|
3816 |
msgid "Urls"
|
3817 |
msgstr "Url-ji"
|
3818 |
|
3819 |
-
#: settings.php:
|
3820 |
msgid "Toggle url editor"
|
3821 |
msgstr "Preklopi urejevalnik url-jev"
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid ""
|
3825 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3826 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3832,23 +3833,15 @@ msgstr ""
|
|
3832 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3833 |
"začetek*. *url-vzorec*, *url-konec)"
|
3834 |
|
3835 |
-
#: settings.php:
|
3836 |
-
msgid "Blacklist urls"
|
3837 |
-
msgstr "Črni seznam url-jev"
|
3838 |
-
|
3839 |
-
#: settings.php:1832
|
3840 |
-
msgid "Whitelist urls"
|
3841 |
-
msgstr "Beli seznam url-jev"
|
3842 |
-
|
3843 |
-
#: settings.php:1843
|
3844 |
msgid "Url parameters"
|
3845 |
msgstr "Url parametri"
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Toggle url parameter and cookie editor"
|
3849 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid ""
|
3853 |
"Comma separated url query parameters or cookies with optional values (use "
|
3854 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -3857,23 +3850,15 @@ msgstr ""
|
|
3857 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3858 |
"'piškotek=vrednost')"
|
3859 |
|
3860 |
-
#: settings.php:
|
3861 |
-
msgid "Blacklist url parameters"
|
3862 |
-
msgstr "Črni seznam url parametrov"
|
3863 |
-
|
3864 |
-
#: settings.php:1863
|
3865 |
-
msgid "Whitelist url parameters"
|
3866 |
-
msgstr "Beli seznam url parametrov"
|
3867 |
-
|
3868 |
-
#: settings.php:1874
|
3869 |
msgid "Referrers"
|
3870 |
msgstr "Napotitelji"
|
3871 |
|
3872 |
-
#: settings.php:
|
3873 |
msgid "Toggle referer editor"
|
3874 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3875 |
|
3876 |
-
#: settings.php:
|
3877 |
msgid ""
|
3878 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3879 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3881,48 +3866,38 @@ msgstr ""
|
|
3881 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3882 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3883 |
|
3884 |
-
#: settings.php:
|
3885 |
-
msgid "Blacklist referers"
|
3886 |
-
msgstr "Črni seznam napotiteljev"
|
3887 |
-
|
3888 |
-
#: settings.php:1893
|
3889 |
-
msgid "Whitelist referers"
|
3890 |
-
msgstr "Beli seznam napotiteljev"
|
3891 |
-
|
3892 |
-
#: settings.php:1904
|
3893 |
msgid "Clients"
|
3894 |
msgstr "Odjemalci"
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "Toggle client editor"
|
3898 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
-
msgid "
|
3902 |
-
|
3903 |
-
|
3904 |
-
|
3905 |
-
|
3906 |
-
|
3907 |
-
|
3908 |
-
|
3909 |
-
msgid "Whitelist clients"
|
3910 |
-
msgstr "Beli seznam odjemalcev"
|
3911 |
|
3912 |
-
#: settings.php:
|
3913 |
msgid "Enable widget for this block"
|
3914 |
msgstr "Omogočite gradnik za ta blok"
|
3915 |
|
3916 |
-
#: settings.php:
|
3917 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3918 |
msgstr ""
|
3919 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3920 |
|
3921 |
-
#: settings.php:
|
3922 |
msgid "Shortcode"
|
3923 |
msgstr "Kratka koda"
|
3924 |
|
3925 |
-
#: settings.php:
|
3926 |
msgid ""
|
3927 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3928 |
"If function is disabled for block it will return empty string."
|
@@ -3931,66 +3906,66 @@ msgstr ""
|
|
3931 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3932 |
"prazen niz."
|
3933 |
|
3934 |
-
#: settings.php:
|
3935 |
msgid "PHP function"
|
3936 |
msgstr "PHP funkcija"
|
3937 |
|
3938 |
-
#: settings.php:
|
3939 |
msgid "Client-side device detection"
|
3940 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3941 |
|
3942 |
-
#: settings.php:
|
3943 |
msgid "Server-side device detection"
|
3944 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3945 |
|
3946 |
-
#: settings.php:
|
3947 |
msgid "Use client-side detection to"
|
3948 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3949 |
|
3950 |
-
#: settings.php:
|
3951 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3952 |
msgstr ""
|
3953 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3954 |
|
3955 |
#. Translators: only on (the following devices): viewport names (devices)
|
3956 |
#. listed
|
3957 |
-
#: settings.php:
|
3958 |
msgid "only on"
|
3959 |
msgstr "samo na"
|
3960 |
|
3961 |
-
#: settings.php:
|
3962 |
msgid "Device min width %s px"
|
3963 |
msgstr "Najmanjša širina naprave %s px"
|
3964 |
|
3965 |
-
#: settings.php:
|
3966 |
msgid "Use server-side detection to insert block only for"
|
3967 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3968 |
|
3969 |
-
#: settings.php:
|
3970 |
msgid "Filter"
|
3971 |
msgstr "Filter"
|
3972 |
|
3973 |
-
#: settings.php:
|
3974 |
msgid "Word Count"
|
3975 |
msgstr "Število Besed"
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgid "Scheduling"
|
3979 |
msgstr "Urnik"
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Display"
|
3983 |
msgstr "Prikaz"
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "General"
|
3987 |
msgstr "Splošno"
|
3988 |
|
3989 |
-
#: settings.php:
|
3990 |
msgid "Old settings for AMP pages detected"
|
3991 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3992 |
|
3993 |
-
#: settings.php:
|
3994 |
msgid ""
|
3995 |
"To insert different codes on normal and AMP pages separate them with "
|
3996 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -4001,44 +3976,44 @@ msgstr ""
|
|
4001 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
4002 |
"separatorja)."
|
4003 |
|
4004 |
-
#: settings.php:
|
4005 |
msgid "AMP pages"
|
4006 |
msgstr "AMP strani"
|
4007 |
|
4008 |
-
#: settings.php:
|
4009 |
msgid "Enable insertion for Ajax requests"
|
4010 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
4011 |
|
4012 |
-
#: settings.php:
|
4013 |
msgid "Ajax requests"
|
4014 |
msgstr "Ajax zahteve"
|
4015 |
|
4016 |
-
#: settings.php:
|
4017 |
msgid "Enable insertion in RSS feeds"
|
4018 |
msgstr "Omogoči vstavljanje v RSS virih"
|
4019 |
|
4020 |
-
#: settings.php:
|
4021 |
msgid "RSS Feed"
|
4022 |
msgstr "RSS Vir"
|
4023 |
|
4024 |
-
#: settings.php:
|
4025 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4026 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
4027 |
|
4028 |
-
#: settings.php:
|
4029 |
msgid "Error 404 page"
|
4030 |
msgstr "Stran napake 404"
|
4031 |
|
4032 |
-
#: settings.php:
|
4033 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4034 |
msgstr ""
|
4035 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
4036 |
|
4037 |
-
#: settings.php:
|
4038 |
msgid "insertions"
|
4039 |
msgstr "vstavljanj"
|
4040 |
|
4041 |
-
#: settings.php:
|
4042 |
msgid ""
|
4043 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4044 |
"General)"
|
@@ -4046,44 +4021,59 @@ msgstr ""
|
|
4046 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
4047 |
"zavihek Splošno)"
|
4048 |
|
4049 |
-
#: settings.php:
|
4050 |
msgid "Max blocks per page"
|
4051 |
msgstr "Največ blokov na stran"
|
4052 |
|
4053 |
-
#: settings.php:
|
4054 |
msgid "Insert for"
|
4055 |
msgstr "Vstavi za"
|
4056 |
|
4057 |
-
#: settings.php:
|
4058 |
msgid ""
|
4059 |
-
"Insert block only when WP function in_the_loop () returns true (WP loop
|
4060 |
-
"currently active). Might speed up insertion on content pages when "
|
4061 |
-
"the_content filter is called multiple times."
|
4062 |
msgstr ""
|
4063 |
-
"Vstavi blok samo, ko WP funkcija
|
4064 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4065 |
-
"filter the_content večkrat klican."
|
4066 |
|
4067 |
-
#: settings.php:
|
4068 |
msgid "Insert only in the loop"
|
4069 |
msgstr "Vstavi samo v zanki"
|
4070 |
|
4071 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4072 |
msgid ""
|
4073 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4074 |
msgstr ""
|
4075 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4076 |
"Rocket"
|
4077 |
|
4078 |
-
#: settings.php:
|
4079 |
msgid "Disable caching"
|
4080 |
msgstr "Onemogoči predpomnjenje"
|
4081 |
|
4082 |
-
#: settings.php:
|
4083 |
msgid "Filter insertions"
|
4084 |
msgstr "Filtriraj vstavljanja"
|
4085 |
|
4086 |
-
#: settings.php:
|
4087 |
msgid ""
|
4088 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4089 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -4095,56 +4085,56 @@ msgstr ""
|
|
4095 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4096 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4097 |
|
4098 |
-
#: settings.php:
|
4099 |
msgid "using"
|
4100 |
msgstr "z uporabo"
|
4101 |
|
4102 |
-
#: settings.php:
|
4103 |
msgid "Checked means specified calls are unwanted"
|
4104 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4105 |
|
4106 |
-
#: settings.php:
|
4107 |
msgid "Invert filter"
|
4108 |
msgstr "Obrni filter"
|
4109 |
|
4110 |
-
#: settings.php:
|
4111 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4112 |
msgstr ""
|
4113 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4114 |
"omejitev"
|
4115 |
|
4116 |
-
#: settings.php:
|
4117 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4118 |
msgstr ""
|
4119 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4120 |
"omejitev"
|
4121 |
|
4122 |
-
#: settings.php:
|
4123 |
msgid "for"
|
4124 |
msgstr "za"
|
4125 |
|
4126 |
-
#: settings.php:
|
4127 |
msgid "days after publishing"
|
4128 |
msgstr "dni po objavi"
|
4129 |
|
4130 |
-
#: settings.php:
|
4131 |
msgid "Not available"
|
4132 |
msgstr "Ni na razpolago"
|
4133 |
|
4134 |
-
#: settings.php:
|
4135 |
msgid "Ad label"
|
4136 |
msgstr "Oznaka oglasa"
|
4137 |
|
4138 |
-
#: settings.php:
|
4139 |
msgid "General tag"
|
4140 |
msgstr "Splošna oznaka"
|
4141 |
|
4142 |
-
#: settings.php:
|
4143 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4144 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4145 |
|
4146 |
#. translators: %s: HTML tags
|
4147 |
-
#: settings.php:
|
4148 |
msgid ""
|
4149 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4150 |
"client-side device detection!"
|
@@ -4153,7 +4143,7 @@ msgstr ""
|
|
4153 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4154 |
|
4155 |
#. translators: %s: HTML tags for text and link
|
4156 |
-
#: settings.php:
|
4157 |
msgid ""
|
4158 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4159 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4162,86 +4152,86 @@ msgstr ""
|
|
4162 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4163 |
"strežnika%s."
|
4164 |
|
4165 |
-
#: settings.php:
|
4166 |
msgid "Settings"
|
4167 |
msgstr "Nastavitve"
|
4168 |
|
4169 |
-
#: settings.php:
|
4170 |
msgid "Settings timestamp"
|
4171 |
msgstr "Časovni žig nastavitev"
|
4172 |
|
4173 |
-
#: settings.php:
|
4174 |
msgid "Are you sure you want to reset all settings?"
|
4175 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4176 |
|
4177 |
-
#: settings.php:
|
4178 |
msgid "Reset All Settings"
|
4179 |
msgstr "Ponastavi Vse Nastavitve"
|
4180 |
|
4181 |
-
#: settings.php:
|
4182 |
msgid "Viewports"
|
4183 |
msgstr "Pogledi"
|
4184 |
|
4185 |
-
#: settings.php:
|
4186 |
msgid "Hooks"
|
4187 |
msgstr "Ročice"
|
4188 |
|
4189 |
-
#: settings.php:
|
4190 |
msgid "Header"
|
4191 |
msgstr "Glava"
|
4192 |
|
4193 |
-
#: settings.php:
|
4194 |
msgid "Footer"
|
4195 |
msgstr "Noga"
|
4196 |
|
4197 |
-
#: settings.php:
|
4198 |
msgid "Debugging"
|
4199 |
msgstr "Razhroščevanje"
|
4200 |
|
4201 |
-
#: settings.php:
|
4202 |
msgid "Plugin priority"
|
4203 |
msgstr "Prednost vtičnika"
|
4204 |
|
4205 |
-
#: settings.php:
|
4206 |
msgid "Output buffering"
|
4207 |
msgstr "Predpomnjenje izhoda"
|
4208 |
|
4209 |
-
#: settings.php:
|
4210 |
msgid "Needed for position Above header but may not work with all themes"
|
4211 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4212 |
|
4213 |
-
#: settings.php:
|
4214 |
msgid "Syntax highlighting theme"
|
4215 |
msgstr "Tema za poudarjanje sintakse"
|
4216 |
|
4217 |
-
#: settings.php:
|
4218 |
msgctxt "no syntax highlighting themes"
|
4219 |
msgid "None"
|
4220 |
msgstr "Brez"
|
4221 |
|
4222 |
-
#: settings.php:
|
4223 |
msgid "No Syntax Highlighting"
|
4224 |
msgstr "Brez Poudarjanja Sintakse"
|
4225 |
|
4226 |
-
#: settings.php:
|
4227 |
msgctxt "syntax highlighting themes"
|
4228 |
msgid "Light"
|
4229 |
msgstr "Svetle"
|
4230 |
|
4231 |
-
#: settings.php:
|
4232 |
msgctxt "syntax highlighting themes"
|
4233 |
msgid "Dark"
|
4234 |
msgstr "Temne"
|
4235 |
|
4236 |
-
#: settings.php:
|
4237 |
msgid "Min. user role for ind. exceptions editing"
|
4238 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4239 |
|
4240 |
-
#: settings.php:
|
4241 |
msgid "Disable caching for logged in administrators"
|
4242 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4243 |
|
4244 |
-
#: settings.php:
|
4245 |
msgid ""
|
4246 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4247 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4249,11 +4239,11 @@ msgstr ""
|
|
4249 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4250 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4251 |
|
4252 |
-
#: settings.php:
|
4253 |
msgid "Wait for jQuery"
|
4254 |
msgstr "Čakaj na jQuery"
|
4255 |
|
4256 |
-
#: settings.php:
|
4257 |
msgid ""
|
4258 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4259 |
"it will run the scripts that may need it"
|
@@ -4261,11 +4251,11 @@ msgstr ""
|
|
4261 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4262 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4263 |
|
4264 |
-
#: settings.php:
|
4265 |
msgid "Sticky widget mode"
|
4266 |
msgstr "Način za lepljive gradnike"
|
4267 |
|
4268 |
-
#: settings.php:
|
4269 |
msgid ""
|
4270 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4271 |
"mode works with most themes but may reload ads on page load."
|
@@ -4274,19 +4264,19 @@ msgstr ""
|
|
4274 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4275 |
"nalaganju strani."
|
4276 |
|
4277 |
-
#: settings.php:
|
4278 |
msgid "Sticky widget top margin"
|
4279 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4280 |
|
4281 |
-
#: settings.php:
|
4282 |
msgid "Dynamic blocks"
|
4283 |
msgstr "Dinamični bloki"
|
4284 |
|
4285 |
-
#: settings.php:
|
4286 |
msgid "Functions for paragraph counting"
|
4287 |
msgstr "Funkcije za štetje odstavkov"
|
4288 |
|
4289 |
-
#: settings.php:
|
4290 |
msgid ""
|
4291 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4292 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4295,15 +4285,15 @@ msgstr ""
|
|
4295 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4296 |
"šteti."
|
4297 |
|
4298 |
-
#: settings.php:
|
4299 |
msgid "No paragraph counting inside"
|
4300 |
msgstr "Ni štetja odstavkov znotraj"
|
4301 |
|
4302 |
-
#: settings.php:
|
4303 |
msgid "Label text or HTML code"
|
4304 |
msgstr "Besedilo oznake ali HTML koda"
|
4305 |
|
4306 |
-
#: settings.php:
|
4307 |
msgid ""
|
4308 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4309 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4312,12 +4302,12 @@ msgstr ""
|
|
4312 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4313 |
"omejitev."
|
4314 |
|
4315 |
-
#: settings.php:
|
4316 |
msgid "Plugin usage tracking"
|
4317 |
msgstr "Sledenje uporabe vtičnika"
|
4318 |
|
4319 |
#. translators: %s: Ad Inserter
|
4320 |
-
#: settings.php:
|
4321 |
msgid ""
|
4322 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4323 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4327,125 +4317,125 @@ msgstr ""
|
|
4327 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4328 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4329 |
|
4330 |
-
#: settings.php:
|
4331 |
msgid "CSS class name for the wrapping div"
|
4332 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4333 |
|
4334 |
-
#: settings.php:
|
4335 |
msgid "Block class name"
|
4336 |
msgstr "Ime razreda za blok"
|
4337 |
|
4338 |
-
#: settings.php:
|
4339 |
msgid "Include block number class"
|
4340 |
msgstr "Vključi razred številke bloka"
|
4341 |
|
4342 |
-
#: settings.php:
|
4343 |
msgid "Block number class"
|
4344 |
msgstr "Razred številke bloka"
|
4345 |
|
4346 |
-
#: settings.php:
|
4347 |
msgid "Include block name class"
|
4348 |
msgstr "Vključi razred imena bloka"
|
4349 |
|
4350 |
-
#: settings.php:
|
4351 |
msgid "Block name class"
|
4352 |
msgstr "Razred imena bloka"
|
4353 |
|
4354 |
-
#: settings.php:
|
4355 |
msgid ""
|
4356 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4357 |
msgstr ""
|
4358 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4359 |
|
4360 |
-
#: settings.php:
|
4361 |
msgid "Inline styles"
|
4362 |
msgstr "Medvrstični slogi"
|
4363 |
|
4364 |
-
#: settings.php:
|
4365 |
msgid "Preview of the block wrapping code"
|
4366 |
msgstr "Predogled kode za ovijanje blokov"
|
4367 |
|
4368 |
-
#: settings.php:
|
4369 |
msgid "Wrapping div"
|
4370 |
msgstr "div za ovijanje"
|
4371 |
|
4372 |
-
#: settings.php:
|
4373 |
msgid "BLOCK CODE"
|
4374 |
msgstr "KODA BLOKA"
|
4375 |
|
4376 |
-
#: settings.php:
|
4377 |
msgid "Viewport Settings used for client-side device detection"
|
4378 |
msgstr ""
|
4379 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4380 |
|
4381 |
#. Translators: %d: viewport number
|
4382 |
-
#: settings.php:
|
4383 |
msgid "Viewport %d name"
|
4384 |
msgstr "Ime pogleda %d"
|
4385 |
|
4386 |
-
#: settings.php:
|
4387 |
msgid "min width"
|
4388 |
msgstr "najmanjša širina"
|
4389 |
|
4390 |
-
#: settings.php:
|
4391 |
msgid "Custom Hooks"
|
4392 |
msgstr "Ročice Po Meri"
|
4393 |
|
4394 |
-
#: settings.php:
|
4395 |
msgid "Enable hook"
|
4396 |
msgstr "Omogoči ročico"
|
4397 |
|
4398 |
#. translators: %d: hook number
|
4399 |
-
#: settings.php:
|
4400 |
msgid "Hook %d name"
|
4401 |
msgstr "Ime ročice %d"
|
4402 |
|
4403 |
-
#: settings.php:
|
4404 |
msgid "Hook name for automatic insertion selection"
|
4405 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4406 |
|
4407 |
-
#: settings.php:
|
4408 |
msgid "action"
|
4409 |
msgstr "akcija"
|
4410 |
|
4411 |
-
#: settings.php:
|
4412 |
msgid "Action name as used in the do_action () function"
|
4413 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4414 |
|
4415 |
-
#: settings.php:
|
4416 |
msgid "priority"
|
4417 |
msgstr "prednost"
|
4418 |
|
4419 |
-
#: settings.php:
|
4420 |
msgid "Priority for the hook (default is 10)"
|
4421 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4422 |
|
4423 |
-
#: settings.php:
|
4424 |
msgid "Enable insertion of this code into HTML page header"
|
4425 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Process PHP code"
|
4429 |
msgstr "Procesiraj PHP kodo"
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid "HTML Page Header Code"
|
4433 |
msgstr "Koda v Glavi HTML Strani"
|
4434 |
|
4435 |
-
#: settings.php:
|
4436 |
msgid "Code in the %s section of the HTML page"
|
4437 |
msgstr "Koda v %s delu HTML strani"
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgctxt "code in the header"
|
4441 |
msgid "NOT ENABLED"
|
4442 |
msgstr "NI OMOGOČENA"
|
4443 |
|
4444 |
-
#: settings.php:
|
4445 |
msgid "Use server-side detection to insert code only for"
|
4446 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4447 |
|
4448 |
-
#: settings.php:
|
4449 |
msgid ""
|
4450 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4451 |
"Page not found"
|
@@ -4453,29 +4443,29 @@ msgstr ""
|
|
4453 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4454 |
"obstaja"
|
4455 |
|
4456 |
-
#: settings.php:
|
4457 |
msgid "Insert on Error 404 page"
|
4458 |
msgstr "Vstavi na strani Napake 404"
|
4459 |
|
4460 |
-
#: settings.php:
|
4461 |
msgid "Enable insertion of this code into HTML page footer"
|
4462 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4463 |
|
4464 |
-
#: settings.php:
|
4465 |
msgid "HTML Page Footer Code"
|
4466 |
msgstr "Koda v Nogi HTML Strani"
|
4467 |
|
4468 |
#. translators: %s: HTML tags
|
4469 |
-
#: settings.php:
|
4470 |
msgid "Code before the %s tag of the the HTML page"
|
4471 |
msgstr "Koda pred %s značko HTML strani"
|
4472 |
|
4473 |
-
#: settings.php:
|
4474 |
msgctxt "code in the footer"
|
4475 |
msgid "NOT ENABLED"
|
4476 |
msgstr "NI OMOGOČENA"
|
4477 |
|
4478 |
-
#: settings.php:
|
4479 |
msgid ""
|
4480 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4481 |
"Page not found"
|
@@ -4483,32 +4473,32 @@ msgstr ""
|
|
4483 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4484 |
"Stran ne obstaja"
|
4485 |
|
4486 |
-
#: settings.php:
|
4487 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4488 |
msgstr ""
|
4489 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4490 |
|
4491 |
-
#: settings.php:
|
4492 |
msgid "Enable detection of ad blocking"
|
4493 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4494 |
|
4495 |
-
#: settings.php:
|
4496 |
msgid "Global action when ad blocking is detected"
|
4497 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4498 |
|
4499 |
-
#: settings.php:
|
4500 |
msgid "No action for"
|
4501 |
msgstr "Ni akcije za"
|
4502 |
|
4503 |
-
#: settings.php:
|
4504 |
msgid "Exceptions for global action when ad blocking is detected."
|
4505 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4506 |
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Delay Action"
|
4509 |
msgstr "Zakasni Akcijo"
|
4510 |
|
4511 |
-
#: settings.php:
|
4512 |
msgid ""
|
4513 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4514 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4517,16 +4507,16 @@ msgstr ""
|
|
4517 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4518 |
"strani). Nastavi piškotek."
|
4519 |
|
4520 |
-
#: settings.php:
|
4521 |
msgctxt "Delay Action for x "
|
4522 |
msgid "page views"
|
4523 |
msgstr "ogledov strani"
|
4524 |
|
4525 |
-
#: settings.php:
|
4526 |
msgid "No Action Period"
|
4527 |
msgstr "Obdobje Brez Akcije"
|
4528 |
|
4529 |
-
#: settings.php:
|
4530 |
msgid ""
|
4531 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4532 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4536,16 +4526,16 @@ msgstr ""
|
|
4536 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4537 |
"strani). Nastavi piškotek."
|
4538 |
|
4539 |
-
#: settings.php:
|
4540 |
msgctxt "no action period"
|
4541 |
msgid "days"
|
4542 |
msgstr "dni"
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Custom Selectors"
|
4546 |
msgstr "Selektorji Po Meri"
|
4547 |
|
4548 |
-
#: settings.php:
|
4549 |
msgid ""
|
4550 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4551 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4555,15 +4545,15 @@ msgstr ""
|
|
4555 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4556 |
"pomeni prisotnost blokiranja oglasov."
|
4557 |
|
4558 |
-
#: settings.php:
|
4559 |
msgid "Redirection Page"
|
4560 |
msgstr "Stran za Preusmeritev"
|
4561 |
|
4562 |
-
#: settings.php:
|
4563 |
msgid "Custom Url"
|
4564 |
msgstr "Url Po Meri"
|
4565 |
|
4566 |
-
#: settings.php:
|
4567 |
msgid ""
|
4568 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4569 |
"select Custom url and set it below."
|
@@ -4571,35 +4561,35 @@ msgstr ""
|
|
4571 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4572 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4573 |
|
4574 |
-
#: settings.php:
|
4575 |
msgid "Custom Redirection Url"
|
4576 |
msgstr "Url za Preusmeritev Po Meri"
|
4577 |
|
4578 |
-
#: settings.php:
|
4579 |
msgid "Message HTML code"
|
4580 |
msgstr "HTML koda sporočila"
|
4581 |
|
4582 |
-
#: settings.php:
|
4583 |
msgid "Preview message when ad blocking is detected"
|
4584 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4585 |
|
4586 |
-
#: settings.php:
|
4587 |
msgid "Prevent visitors from closing the warning message"
|
4588 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4589 |
|
4590 |
-
#: settings.php:
|
4591 |
msgid "Undismissible Message"
|
4592 |
msgstr "Neodstranljivo Sporočilo"
|
4593 |
|
4594 |
-
#: settings.php:
|
4595 |
msgid "Not undismissible for"
|
4596 |
msgstr "Ni neodstranljivo za"
|
4597 |
|
4598 |
-
#: settings.php:
|
4599 |
msgid "Users which can close the warning message."
|
4600 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4601 |
|
4602 |
-
#: settings.php:
|
4603 |
msgid ""
|
4604 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4605 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4608,84 +4598,84 @@ msgstr ""
|
|
4608 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4609 |
"skrbnike."
|
4610 |
|
4611 |
-
#: settings.php:
|
4612 |
msgid "Disable header code (Header tab)"
|
4613 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4614 |
|
4615 |
-
#: settings.php:
|
4616 |
msgid "Disable footer code (Footer tab)"
|
4617 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4618 |
|
4619 |
#. translators: %s: Ad Inserter
|
4620 |
-
#: settings.php:
|
4621 |
msgid "Disable %s JavaScript code"
|
4622 |
msgstr "Onemogoči %s JavaScript kodo"
|
4623 |
|
4624 |
#. translators: %s: Ad Inserter
|
4625 |
-
#: settings.php:
|
4626 |
msgid "Disable %s CSS code"
|
4627 |
msgstr "Onemogoči %s CSS kodo"
|
4628 |
|
4629 |
-
#: settings.php:
|
4630 |
msgid ""
|
4631 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4632 |
msgstr ""
|
4633 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4634 |
|
4635 |
-
#: settings.php:
|
4636 |
msgid "Disable insertion of all blocks"
|
4637 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4638 |
|
4639 |
-
#: settings.php:
|
4640 |
msgid "Disable insertions"
|
4641 |
msgstr "Onemogoči vstavljanja"
|
4642 |
|
4643 |
#. translators: %s: Ad Inserter
|
4644 |
-
#: settings.php:
|
4645 |
msgid "%s CSS CODE"
|
4646 |
msgstr "%s CSS KODA"
|
4647 |
|
4648 |
-
#: settings.php:
|
4649 |
msgid "HEADER CODE"
|
4650 |
msgstr "KODA GLAVE"
|
4651 |
|
4652 |
#. translators: %s: PHP tags
|
4653 |
-
#: settings.php:
|
4654 |
msgid "BLOCK PHP CODE"
|
4655 |
msgstr "PHP KODA BLOKA"
|
4656 |
|
4657 |
#. translators: %s: Ad Inserter
|
4658 |
-
#: settings.php:
|
4659 |
msgid "%s JS CODE"
|
4660 |
msgstr "%s JS KODA"
|
4661 |
|
4662 |
-
#: settings.php:
|
4663 |
msgid "FOOTER CODE"
|
4664 |
msgstr "KODA NOGE"
|
4665 |
|
4666 |
-
#: settings.php:
|
4667 |
msgid "Force showing admin toolbar when viewing site"
|
4668 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4669 |
|
4670 |
-
#: settings.php:
|
4671 |
msgid "Enable debugging functions in admin toolbar"
|
4672 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4673 |
|
4674 |
-
#: settings.php:
|
4675 |
msgid "Debugging functions in admin toolbar"
|
4676 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4677 |
|
4678 |
-
#: settings.php:
|
4679 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4680 |
msgstr ""
|
4681 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4682 |
"zaslonih"
|
4683 |
|
4684 |
-
#: settings.php:
|
4685 |
msgid "Debugging functions on mobile screens"
|
4686 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4687 |
|
4688 |
-
#: settings.php:
|
4689 |
msgid ""
|
4690 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4691 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4700,11 +4690,11 @@ msgstr ""
|
|
4700 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4701 |
"vedno omogočeno."
|
4702 |
|
4703 |
-
#: settings.php:
|
4704 |
msgid "Remote debugging"
|
4705 |
msgstr "Oddaljeno razhroščevanje"
|
4706 |
|
4707 |
-
#: settings.php:
|
4708 |
msgid ""
|
4709 |
"Disable translation to see original texts for the settings and messages in "
|
4710 |
"English"
|
@@ -4712,210 +4702,210 @@ msgstr ""
|
|
4712 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4713 |
"angleščini"
|
4714 |
|
4715 |
-
#: settings.php:
|
4716 |
msgid "Disable translation"
|
4717 |
msgstr "Onemogoči prevod"
|
4718 |
|
4719 |
-
#: settings.php:
|
4720 |
msgid "Available positions for current theme"
|
4721 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4722 |
|
4723 |
-
#: settings.php:
|
4724 |
msgid "Error checking pages"
|
4725 |
msgstr "Napaka pri preverjanju strani"
|
4726 |
|
4727 |
-
#: settings.php:
|
4728 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4729 |
msgstr ""
|
4730 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4731 |
|
4732 |
-
#: settings.php:
|
4733 |
msgctxt "Button"
|
4734 |
msgid "Check"
|
4735 |
msgstr "Preveri"
|
4736 |
|
4737 |
-
#: settings.php:
|
4738 |
msgid "Position"
|
4739 |
msgstr "Položaj"
|
4740 |
|
4741 |
-
#: settings.php:
|
4742 |
msgid "Archive pages"
|
4743 |
msgstr "Strani arhiva"
|
4744 |
|
4745 |
-
#: settings.php:
|
4746 |
msgid ""
|
4747 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4748 |
msgstr ""
|
4749 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4750 |
|
4751 |
-
#: settings.php:
|
4752 |
msgid "Position not checked yet"
|
4753 |
msgstr "Položaj še ni bil preverjen"
|
4754 |
|
4755 |
-
#: settings.php:
|
4756 |
msgid "Toggle active/all blocks"
|
4757 |
msgstr "Preklopi aktive/vse bloke"
|
4758 |
|
4759 |
-
#: settings.php:
|
4760 |
msgid "Rearrange block order"
|
4761 |
msgstr "Preuredi vrstni red blokov"
|
4762 |
|
4763 |
-
#: settings.php:
|
4764 |
msgid "Save new block order"
|
4765 |
msgstr "Shrani vrstni red blokov"
|
4766 |
|
4767 |
-
#: settings.php:
|
4768 |
msgid "Toggle active/all ad units"
|
4769 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4770 |
|
4771 |
-
#: settings.php:
|
4772 |
msgid "Reload AdSense ad units"
|
4773 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4774 |
|
4775 |
-
#: settings.php:
|
4776 |
msgid "Clear authorization to access AdSense account"
|
4777 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4778 |
|
4779 |
-
#: settings.php:
|
4780 |
msgid "Google AdSense Homepage"
|
4781 |
msgstr "Google AdSense Domača Stran"
|
4782 |
|
4783 |
-
#: settings.php:
|
4784 |
msgid "Switch to physical ads.txt file"
|
4785 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4786 |
|
4787 |
-
#: settings.php:
|
4788 |
msgid "Switch to virtual ads.txt file"
|
4789 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4790 |
|
4791 |
#. translators: %s: ads.txt
|
4792 |
-
#: settings.php:
|
4793 |
msgid "Open %s"
|
4794 |
msgstr "Odpri %s"
|
4795 |
|
4796 |
-
#: settings.php:
|
4797 |
msgid "Reload ads.txt file"
|
4798 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4799 |
|
4800 |
-
#: settings.php:
|
4801 |
msgid "Save"
|
4802 |
msgstr "Shrani"
|
4803 |
|
4804 |
#. translators: %s: Ad Inserter
|
4805 |
-
#: settings.php:
|
4806 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4807 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4808 |
|
4809 |
-
#: settings.php:
|
4810 |
msgid "Warning"
|
4811 |
msgstr "Opozorilo"
|
4812 |
|
4813 |
#. translators: %s: Ad Inserter
|
4814 |
-
#: settings.php:
|
4815 |
msgid "%s virtual file ads.txt not found"
|
4816 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4817 |
|
4818 |
-
#: settings.php:
|
4819 |
msgid "IMPORTANT"
|
4820 |
msgstr "POMEMBNO"
|
4821 |
|
4822 |
-
#: settings.php:
|
4823 |
msgid "ads.txt file must be placed on the root domain"
|
4824 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4825 |
|
4826 |
-
#: settings.php:
|
4827 |
msgid "ads.txt file"
|
4828 |
msgstr "datoteka ads.txt"
|
4829 |
|
4830 |
-
#: settings.php:
|
4831 |
msgid "NOT WRITABLE"
|
4832 |
msgstr "NI ZAPISLJIVO"
|
4833 |
|
4834 |
-
#: settings.php:
|
4835 |
msgid "file %s not found"
|
4836 |
msgstr "datoteka %s ni najdena"
|
4837 |
|
4838 |
-
#: settings.php:
|
4839 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4840 |
msgstr ""
|
4841 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4842 |
|
4843 |
#. translators: %s: Ad Inserter
|
4844 |
-
#: settings.php:
|
4845 |
msgid "%s virtual ads.txt file"
|
4846 |
msgstr "%s navidezna datoteka ads.txt"
|
4847 |
|
4848 |
-
#: settings.php:
|
4849 |
msgid "Advertising system"
|
4850 |
msgstr "Oglaševalski sistem"
|
4851 |
|
4852 |
-
#: settings.php:
|
4853 |
msgid "Account ID"
|
4854 |
msgstr "ID Računa"
|
4855 |
|
4856 |
-
#: settings.php:
|
4857 |
msgid "Certification authority ID"
|
4858 |
msgstr "ID organa za potrjevanje"
|
4859 |
|
4860 |
-
#: settings.php:
|
4861 |
msgid "Account ID found in block and present in ads.txt"
|
4862 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4863 |
|
4864 |
-
#: settings.php:
|
4865 |
msgid "Account ID found in block but not present in ads.txt"
|
4866 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4867 |
|
4868 |
-
#: settings.php:
|
4869 |
msgid "Preview block"
|
4870 |
msgstr "Predogled bloka"
|
4871 |
|
4872 |
-
#: settings.php:
|
4873 |
msgid "Pause block"
|
4874 |
msgstr "Ustavite blok"
|
4875 |
|
4876 |
-
#: settings.php:
|
4877 |
msgid "Automatic insertion"
|
4878 |
msgstr "Samodejno vstavljanje"
|
4879 |
|
4880 |
#. translators: %s HTML tags
|
4881 |
-
#: settings.php:
|
4882 |
msgid "PHP code processing"
|
4883 |
msgstr "Procesiranje PHP kode"
|
4884 |
|
4885 |
-
#: settings.php:
|
4886 |
msgid "Device detection"
|
4887 |
msgstr "Zaznavanje naprave"
|
4888 |
|
4889 |
-
#: settings.php:
|
4890 |
msgid "No active block"
|
4891 |
msgstr "Noben aktiven blok"
|
4892 |
|
4893 |
-
#: settings.php:
|
4894 |
msgid "No block matches search keywords"
|
4895 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4896 |
|
4897 |
-
#: settings.php:
|
4898 |
msgid "Ad unit"
|
4899 |
msgstr "Enota"
|
4900 |
|
4901 |
-
#: settings.php:
|
4902 |
msgid "Slot ID"
|
4903 |
msgstr "ID mesta"
|
4904 |
|
4905 |
-
#: settings.php:
|
4906 |
msgid "Copy AdSense code"
|
4907 |
msgstr "Kopiraj kodo AdSense"
|
4908 |
|
4909 |
-
#: settings.php:
|
4910 |
msgid "Preview AdSense ad"
|
4911 |
msgstr "Predogled oglasa AdSense"
|
4912 |
|
4913 |
-
#: settings.php:
|
4914 |
msgid "Get AdSense code"
|
4915 |
msgstr "Pridobi kodo AdSense"
|
4916 |
|
4917 |
#. translators: %s: HTML tags
|
4918 |
-
#: settings.php:
|
4919 |
msgid ""
|
4920 |
"Please %s clear authorization %s with the button %s above and once again "
|
4921 |
"authorize access to your AdSense account."
|
@@ -4923,16 +4913,16 @@ msgstr ""
|
|
4923 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4924 |
"avtorizirajte dostop do vašega računa AdSense."
|
4925 |
|
4926 |
-
#: settings.php:
|
4927 |
msgid "AdSense Integration"
|
4928 |
msgstr "Integracija AdSense"
|
4929 |
|
4930 |
-
#: settings.php:
|
4931 |
msgid "AdSense Integration - Step 2"
|
4932 |
msgstr "Integracija AdSense - Korak 2"
|
4933 |
|
4934 |
#. translators: %s: HTML tags
|
4935 |
-
#: settings.php:
|
4936 |
msgid ""
|
4937 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4938 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4945,7 +4935,7 @@ msgstr ""
|
|
4945 |
"Avtoriziraj. %s"
|
4946 |
|
4947 |
#. translators: %s: HTML tags
|
4948 |
-
#: settings.php:
|
4949 |
msgid ""
|
4950 |
"If you get error, can't access ad units or would like to use own Google API "
|
4951 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4956,7 +4946,7 @@ msgstr ""
|
|
4956 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4957 |
|
4958 |
#. translators: %s: HTML tags
|
4959 |
-
#: settings.php:
|
4960 |
msgid ""
|
4961 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4962 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4969,7 +4959,7 @@ msgstr ""
|
|
4969 |
"gumb %s Avtoriziraj. %s"
|
4970 |
|
4971 |
#. translators: %s: HTML tags
|
4972 |
-
#: settings.php:
|
4973 |
msgid ""
|
4974 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4975 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -4977,32 +4967,32 @@ msgstr ""
|
|
4977 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4978 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4979 |
|
4980 |
-
#: settings.php:
|
4981 |
msgid "Get Authorization Code"
|
4982 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4983 |
|
4984 |
-
#: settings.php:
|
4985 |
msgid "Enter Authorization Code"
|
4986 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4987 |
|
4988 |
-
#: settings.php:
|
4989 |
msgid "Use own API IDs"
|
4990 |
msgstr "Uporabi lastne API ID-je"
|
4991 |
|
4992 |
-
#: settings.php:
|
4993 |
msgid "Clear and return to Step 1"
|
4994 |
msgstr "Odstrani in se vrni na Korak 1"
|
4995 |
|
4996 |
-
#: settings.php:
|
4997 |
msgid "Authorize"
|
4998 |
msgstr "Avtoriziraj"
|
4999 |
|
5000 |
-
#: settings.php:
|
5001 |
msgid "AdSense Integration - Step 1"
|
5002 |
msgstr "Integracija AdSense - Korak 1"
|
5003 |
|
5004 |
#. translators: %s: Ad Inserter
|
5005 |
-
#: settings.php:
|
5006 |
msgid ""
|
5007 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
5008 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -5015,12 +5005,12 @@ msgstr ""
|
|
5015 |
"Odjemalca in Skrivnost Odjemalca."
|
5016 |
|
5017 |
#. translators: %s: HTML tags
|
5018 |
-
#: settings.php:
|
5019 |
msgid "Go to %s Google APIs and Services console %s"
|
5020 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5021 |
|
5022 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5023 |
-
#: settings.php:
|
5024 |
msgid ""
|
5025 |
"Create %1$s project - if the project and IDs are already created click on "
|
5026 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
@@ -5029,7 +5019,7 @@ msgstr ""
|
|
5029 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
5030 |
|
5031 |
#. translators: %s: HTML tags
|
5032 |
-
#: settings.php:
|
5033 |
msgid ""
|
5034 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5035 |
"create a new project"
|
@@ -5038,12 +5028,12 @@ msgstr ""
|
|
5038 |
"ustvaritev novega projekta"
|
5039 |
|
5040 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5041 |
-
#: settings.php:
|
5042 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5043 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5044 |
|
5045 |
#. translators: %s: HTML tags
|
5046 |
-
#: settings.php:
|
5047 |
msgid ""
|
5048 |
"Click on project selection, wait for the project to be created and then and "
|
5049 |
"select %s as the current project"
|
@@ -5052,39 +5042,39 @@ msgstr ""
|
|
5052 |
"izberite %s kot trenutni projekt"
|
5053 |
|
5054 |
#. translators: %s: HTML tags
|
5055 |
-
#: settings.php:
|
5056 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5057 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5058 |
|
5059 |
#. translators: %s: HTML tags
|
5060 |
-
#: settings.php:
|
5061 |
msgid "Search for adsense and enable %s"
|
5062 |
msgstr "Poiščite adsense in omogočite %s"
|
5063 |
|
5064 |
#. translators: %s: HTML tags
|
5065 |
-
#: settings.php:
|
5066 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5067 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5068 |
|
5069 |
#. translators: %s: HTML tags
|
5070 |
-
#: settings.php:
|
5071 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5072 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5073 |
|
5074 |
#. translators: %s: HTML tags
|
5075 |
-
#: settings.php:
|
5076 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5077 |
msgstr ""
|
5078 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5079 |
"podatki %s"
|
5080 |
|
5081 |
#. translators: %s: HTML tags
|
5082 |
-
#: settings.php:
|
5083 |
msgid "Click on %s What credentials do I need? %s"
|
5084 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5085 |
|
5086 |
#. translators: %s: HTML tags
|
5087 |
-
#: settings.php:
|
5088 |
msgid ""
|
5089 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5090 |
"Ad Inserter client %s"
|
@@ -5093,7 +5083,7 @@ msgstr ""
|
|
5093 |
"vnestite %s Ad Inserter odjemalec %s"
|
5094 |
|
5095 |
#. translators: %s: HTML tags
|
5096 |
-
#: settings.php:
|
5097 |
msgid ""
|
5098 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
5099 |
"enter %s"
|
@@ -5102,17 +5092,17 @@ msgstr ""
|
|
5102 |
"uporabnikom %s vnesite %s"
|
5103 |
|
5104 |
#. translators: %s: HTML tags
|
5105 |
-
#: settings.php:
|
5106 |
msgid "Click on %s Continue %s"
|
5107 |
msgstr "Kliknite na %s Nadaljuj %s"
|
5108 |
|
5109 |
#. translators: %s: HTML tags
|
5110 |
-
#: settings.php:
|
5111 |
msgid "Click on %s Done %s"
|
5112 |
msgstr "Kliknite na %s Končaj %s"
|
5113 |
|
5114 |
#. translators: %s: HTML tags
|
5115 |
-
#: settings.php:
|
5116 |
msgid ""
|
5117 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5118 |
"secret %s"
|
@@ -5120,63 +5110,63 @@ msgstr ""
|
|
5120 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5121 |
"%s Skrivnost odjemalca %s"
|
5122 |
|
5123 |
-
#: settings.php:
|
5124 |
msgid "Copy them to the appropriate fields below"
|
5125 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5126 |
|
5127 |
-
#: settings.php:
|
5128 |
msgid "Client ID"
|
5129 |
msgstr "ID odjemalca"
|
5130 |
|
5131 |
-
#: settings.php:
|
5132 |
msgid "Enter Client ID"
|
5133 |
msgstr "Vnesite ID odjemalca"
|
5134 |
|
5135 |
-
#: settings.php:
|
5136 |
msgid "Client secret"
|
5137 |
msgstr "Skrivnost odjemalca"
|
5138 |
|
5139 |
-
#: settings.php:
|
5140 |
msgid "Enter Client secret"
|
5141 |
msgstr "Vnesite Skrivnost odjemalca"
|
5142 |
|
5143 |
-
#: settings.php:
|
5144 |
msgid "Use default API IDs"
|
5145 |
msgstr "Uporabi privzete API ID-je"
|
5146 |
|
5147 |
-
#: settings.php:
|
5148 |
msgid "All posts"
|
5149 |
msgstr "Vsi prispevki"
|
5150 |
|
5151 |
-
#: settings.php:
|
5152 |
msgid "All static pages"
|
5153 |
msgstr "Vse statične strani"
|
5154 |
|
5155 |
-
#: settings.php:
|
5156 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5157 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5158 |
|
5159 |
-
#: settings.php:
|
5160 |
-
#: settings.php:
|
5161 |
-
#: settings.php:
|
5162 |
-
#: settings.php:
|
5163 |
msgid "Looking for AdSense alternative?"
|
5164 |
msgstr "Iščete alternativo za AdSense?"
|
5165 |
|
5166 |
-
#: settings.php:
|
5167 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5168 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5169 |
|
5170 |
-
#: settings.php:
|
5171 |
-
#: settings.php:
|
5172 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5173 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5174 |
|
5175 |
-
#: settings.php:
|
5176 |
msgid "Support plugin development"
|
5177 |
msgstr "Podprite razvoj vtičnika"
|
5178 |
|
5179 |
-
#: settings.php:
|
5180 |
msgid ""
|
5181 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5182 |
"reviewing the plugin on WordPres"
|
@@ -5184,12 +5174,12 @@ msgstr ""
|
|
5184 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5185 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5186 |
|
5187 |
-
#: settings.php:
|
5188 |
msgctxt "Review Ad Inserter"
|
5189 |
msgid "Review"
|
5190 |
msgstr "Ocenite"
|
5191 |
|
5192 |
-
#: settings.php:
|
5193 |
msgid ""
|
5194 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5195 |
"rating the plugin on WordPres"
|
@@ -5197,12 +5187,12 @@ msgstr ""
|
|
5197 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5198 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5199 |
|
5200 |
-
#: settings.php:
|
5201 |
msgctxt "Rate Ad Inserter"
|
5202 |
msgid "Rate"
|
5203 |
msgstr "Ocenite"
|
5204 |
|
5205 |
-
#: settings.php:
|
5206 |
msgid ""
|
5207 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5208 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5211,16 +5201,16 @@ msgstr ""
|
|
5211 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5212 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5213 |
|
5214 |
-
#: settings.php:
|
5215 |
msgid "Donate"
|
5216 |
msgstr "Donirajte"
|
5217 |
|
5218 |
-
#: settings.php:
|
5219 |
msgid "Average rating of the plugin - Thank you!"
|
5220 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5221 |
|
5222 |
#. translators: %s: Ad Inserter, HTML tags
|
5223 |
-
#: settings.php:
|
5224 |
msgid ""
|
5225 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5226 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5235,24 +5225,24 @@ msgstr ""
|
|
5235 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5236 |
"bi rekli 'Hvala'."
|
5237 |
|
5238 |
-
#: settings.php:
|
5239 |
msgid "Review"
|
5240 |
msgstr "Ocena"
|
5241 |
|
5242 |
-
#: settings.php:
|
5243 |
msgid "Ad Inserter on Twitter"
|
5244 |
msgstr "Ad Inserter na Twitter-ju"
|
5245 |
|
5246 |
-
#: settings.php:
|
5247 |
msgid "Ad Inserter on Facebook"
|
5248 |
msgstr "Ad Inserter na Facebook-u"
|
5249 |
|
5250 |
-
#: settings.php:
|
5251 |
msgid "Follow Ad Inserter"
|
5252 |
msgstr "Sledi Ad Inserter-ju"
|
5253 |
|
5254 |
#. translators: %s: HTML tags
|
5255 |
-
#: settings.php:
|
5256 |
msgid ""
|
5257 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5258 |
"and %s Common Settings %s pages"
|
@@ -5261,7 +5251,7 @@ msgstr ""
|
|
5261 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5262 |
|
5263 |
#. translators: %s: HTML tags
|
5264 |
-
#: settings.php:
|
5265 |
msgid ""
|
5266 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5267 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -5272,7 +5262,7 @@ msgstr ""
|
|
5272 |
"%s Infolinks %s oglasno kodo %s"
|
5273 |
|
5274 |
#. translators: %s: HTML tags
|
5275 |
-
#: settings.php:
|
5276 |
msgid ""
|
5277 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5278 |
"purchase you refer to us"
|
@@ -5281,7 +5271,7 @@ msgstr ""
|
|
5281 |
"nakup, ki nam ga posredujete"
|
5282 |
|
5283 |
#. translators: %s: HTML tags
|
5284 |
-
#: settings.php:
|
5285 |
msgid ""
|
5286 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5287 |
"diagnose and fix the problem."
|
@@ -5290,7 +5280,7 @@ msgstr ""
|
|
5290 |
"navodili za diagnozo in rešitvami za težave."
|
5291 |
|
5292 |
#. translators: %s: HTML tags
|
5293 |
-
#: settings.php:
|
5294 |
msgid ""
|
5295 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5296 |
"thread on the %s support forum. %s"
|
@@ -5298,57 +5288,57 @@ msgstr ""
|
|
5298 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5299 |
"nit na %s podpornem forumu. %s"
|
5300 |
|
5301 |
-
#: settings.php:
|
5302 |
msgid "Code preview with visual CSS editor"
|
5303 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5304 |
|
5305 |
-
#: settings.php:
|
5306 |
msgid "A/B testing - Track ad impressions and clicks"
|
5307 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5308 |
|
5309 |
-
#: settings.php:
|
5310 |
msgid "Insert ads on AMP pages"
|
5311 |
msgstr "Vstavite oglase na AMP straneh"
|
5312 |
|
5313 |
-
#: settings.php:
|
5314 |
msgid "Ad blocking detection and content protection"
|
5315 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5316 |
|
5317 |
-
#: settings.php:
|
5318 |
msgid "Looking for Pro Ad Management plugin?"
|
5319 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5320 |
|
5321 |
-
#: settings.php:
|
5322 |
msgid "To Optimally Monetize your WordPress website?"
|
5323 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5324 |
|
5325 |
#. Translators: %s: price of Ad Inserter Pro
|
5326 |
-
#: settings.php:
|
5327 |
msgid "Different license types starting from %s"
|
5328 |
msgstr "Različni tipi licenc začenši od %s"
|
5329 |
|
5330 |
#. translators: %s HTML tags
|
5331 |
-
#: settings.php:
|
5332 |
msgid "%s AdSense Integration %s"
|
5333 |
msgstr "%s Integracija AdSense %s"
|
5334 |
|
5335 |
#. translators: %s HTML tags
|
5336 |
-
#: settings.php:
|
5337 |
msgid "Syntax highlighting %s editor %s"
|
5338 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5339 |
|
5340 |
#. translators: %s HTML tags
|
5341 |
-
#: settings.php:
|
5342 |
msgid "%s Code preview %s with visual CSS editor"
|
5343 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5344 |
|
5345 |
#. translators: %s HTML tags
|
5346 |
-
#: settings.php:
|
5347 |
msgid "Simple user interface - all settings on a single page"
|
5348 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5349 |
|
5350 |
#. translators: %s HTML tags
|
5351 |
-
#: settings.php:
|
5352 |
msgid ""
|
5353 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5354 |
"image / excerpt"
|
@@ -5357,27 +5347,27 @@ msgstr ""
|
|
5357 |
"%s / sliko / izvlečkom"
|
5358 |
|
5359 |
#. translators: %s HTML tags
|
5360 |
-
#: settings.php:
|
5361 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5362 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5363 |
|
5364 |
#. translators: %s HTML tags
|
5365 |
-
#: settings.php:
|
5366 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5367 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5368 |
|
5369 |
#. translators: %s HTML tags
|
5370 |
-
#: settings.php:
|
5371 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5372 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5373 |
|
5374 |
#. translators: %s HTML tags
|
5375 |
-
#: settings.php:
|
5376 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5377 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5378 |
|
5379 |
#. translators: %s HTML tags
|
5380 |
-
#: settings.php:
|
5381 |
msgid ""
|
5382 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5383 |
"selectors)"
|
@@ -5386,17 +5376,17 @@ msgstr ""
|
|
5386 |
"selektorjev)"
|
5387 |
|
5388 |
#. translators: %s HTML tags
|
5389 |
-
#: settings.php:
|
5390 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5391 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5392 |
|
5393 |
#. translators: %s HTML tags
|
5394 |
-
#: settings.php:
|
5395 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5396 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5397 |
|
5398 |
#. translators: %s HTML tags
|
5399 |
-
#: settings.php:
|
5400 |
msgid ""
|
5401 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5402 |
"scrolls)"
|
@@ -5405,24 +5395,24 @@ msgstr ""
|
|
5405 |
"se stran pomika)"
|
5406 |
|
5407 |
#. translators: %s HTML tags
|
5408 |
-
#: settings.php:
|
5409 |
msgid "%s Background ads %s with one or left and right background images"
|
5410 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5411 |
|
5412 |
#. translators: %s HTML tags
|
5413 |
-
#: settings.php:
|
5414 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5415 |
msgstr ""
|
5416 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5417 |
|
5418 |
#. translators: %s HTML tags
|
5419 |
-
#: settings.php:
|
5420 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5421 |
msgstr ""
|
5422 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5423 |
|
5424 |
#. translators: %s HTML tags
|
5425 |
-
#: settings.php:
|
5426 |
msgid ""
|
5427 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5428 |
"visible)"
|
@@ -5431,7 +5421,7 @@ msgstr ""
|
|
5431 |
"postane viden)"
|
5432 |
|
5433 |
#. translators: %s HTML tags
|
5434 |
-
#: settings.php:
|
5435 |
msgid ""
|
5436 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5437 |
msgstr ""
|
@@ -5439,12 +5429,12 @@ msgstr ""
|
|
5439 |
"strani)"
|
5440 |
|
5441 |
#. translators: %s HTML tags
|
5442 |
-
#: settings.php:
|
5443 |
msgid "Block %s alignment and style %s customizations"
|
5444 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5445 |
|
5446 |
#. translators: %s HTML tags
|
5447 |
-
#: settings.php:
|
5448 |
msgid ""
|
5449 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5450 |
"TOS)"
|
@@ -5452,7 +5442,7 @@ msgstr ""
|
|
5452 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5453 |
|
5454 |
#. translators: %s HTML tags
|
5455 |
-
#: settings.php:
|
5456 |
msgid ""
|
5457 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5458 |
"feeds"
|
@@ -5461,17 +5451,17 @@ msgstr ""
|
|
5461 |
"virih"
|
5462 |
|
5463 |
#. translators: %s HTML tags
|
5464 |
-
#: settings.php:
|
5465 |
msgid "%s Ad rotation %s (works also with caching)"
|
5466 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5467 |
|
5468 |
#. translators: %s HTML tags
|
5469 |
-
#: settings.php:
|
5470 |
msgid "Create, edit and check %s ads.txt %s file"
|
5471 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5472 |
|
5473 |
#. translators: %s HTML tags
|
5474 |
-
#: settings.php:
|
5475 |
msgid ""
|
5476 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5477 |
"AdSense)"
|
@@ -5480,81 +5470,81 @@ msgstr ""
|
|
5480 |
"AdSense)"
|
5481 |
|
5482 |
#. translators: %s HTML tags
|
5483 |
-
#: settings.php:
|
5484 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5485 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5486 |
|
5487 |
#. translators: %s HTML tags
|
5488 |
-
#: settings.php:
|
5489 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5490 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5491 |
|
5492 |
#. translators: %s HTML tags
|
5493 |
-
#: settings.php:
|
5494 |
msgid "Support for %s A/B testing %s"
|
5495 |
msgstr "Podpora za %s A/B testiranje %s"
|
5496 |
|
5497 |
#. translators: %s HTML tags
|
5498 |
-
#: settings.php:
|
5499 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5500 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5501 |
|
5502 |
#. translators: %s HTML tags
|
5503 |
-
#: settings.php:
|
5504 |
msgid "Click fraud %s protection %s"
|
5505 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5506 |
|
5507 |
#. translators: %s HTML tags
|
5508 |
-
#: settings.php:
|
5509 |
msgid "Support for %s lazy loading %s"
|
5510 |
msgstr "Podpora za %s leno nalaganje %s"
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
-
#: settings.php:
|
5514 |
msgid "Support for ads on %s AMP pages %s"
|
5515 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5516 |
|
5517 |
#. translators: %s HTML tags
|
5518 |
-
#: settings.php:
|
5519 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5520 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5521 |
|
5522 |
#. translators: %s HTML tags
|
5523 |
-
#: settings.php:
|
5524 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5525 |
msgstr ""
|
5526 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5527 |
|
5528 |
#. translators: %s HTML tags
|
5529 |
-
#: settings.php:
|
5530 |
msgid "%s Banner %s code generator"
|
5531 |
msgstr "Generator kode za %s pasice %s"
|
5532 |
|
5533 |
#. translators: %s HTML tags
|
5534 |
-
#: settings.php:
|
5535 |
msgid "Support for %s header and footer %s code"
|
5536 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5537 |
|
5538 |
#. translators: %s HTML tags
|
5539 |
-
#: settings.php:
|
5540 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5541 |
msgstr ""
|
5542 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5543 |
|
5544 |
#. translators: %s HTML tags
|
5545 |
-
#: settings.php:
|
5546 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5547 |
msgstr ""
|
5548 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5549 |
"strežnika"
|
5550 |
|
5551 |
#. translators: %s HTML tags
|
5552 |
-
#: settings.php:
|
5553 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5554 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5555 |
|
5556 |
#. translators: %s HTML tags
|
5557 |
-
#: settings.php:
|
5558 |
msgid ""
|
5559 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5560 |
"protection"
|
@@ -5563,12 +5553,12 @@ msgstr ""
|
|
5563 |
"vsebine"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
-
#: settings.php:
|
5567 |
msgid "%s Ad blocking statistics %s"
|
5568 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5569 |
|
5570 |
#. translators: %s HTML tags
|
5571 |
-
#: settings.php:
|
5572 |
msgid ""
|
5573 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5574 |
"referrers, operating systems, browsers"
|
@@ -5577,75 +5567,75 @@ msgstr ""
|
|
5577 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5578 |
|
5579 |
#. translators: %s HTML tags
|
5580 |
-
#: settings.php:
|
5581 |
msgid ""
|
5582 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5583 |
msgstr ""
|
5584 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5585 |
|
5586 |
#. translators: %s HTML tags
|
5587 |
-
#: settings.php:
|
5588 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5589 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5590 |
|
5591 |
#. translators: %s HTML tags
|
5592 |
-
#: settings.php:
|
5593 |
msgid "%s Import/Export %s block or plugin settings"
|
5594 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5595 |
|
5596 |
#. translators: %s HTML tags
|
5597 |
-
#: settings.php:
|
5598 |
msgid "%s Insertion scheduling %s with fallback option"
|
5599 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5600 |
|
5601 |
#. translators: %s HTML tags
|
5602 |
-
#: settings.php:
|
5603 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5604 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5605 |
|
5606 |
#. translators: %s HTML tags
|
5607 |
-
#: settings.php:
|
5608 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5609 |
msgstr ""
|
5610 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5611 |
|
5612 |
#. translators: %s HTML tags
|
5613 |
-
#: settings.php:
|
5614 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5615 |
msgstr ""
|
5616 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5617 |
|
5618 |
#. translators: %s HTML tags
|
5619 |
-
#: settings.php:
|
5620 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5621 |
msgstr ""
|
5622 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5623 |
|
5624 |
#. translators: %s HTML tags
|
5625 |
-
#: settings.php:
|
5626 |
msgid ""
|
5627 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5628 |
msgstr ""
|
5629 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5630 |
|
5631 |
#. translators: %s HTML tags
|
5632 |
-
#: settings.php:
|
5633 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5634 |
msgstr ""
|
5635 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
-
#: settings.php:
|
5639 |
msgid "No ads on the settings page"
|
5640 |
msgstr "Stran z nastavitvami brez oglasov"
|
5641 |
|
5642 |
#. translators: %s HTML tags
|
5643 |
-
#: settings.php:
|
5644 |
msgid "Premium support"
|
5645 |
msgstr "Vrhunska podpora"
|
5646 |
|
5647 |
#. translators: %s HTML tags
|
5648 |
-
#: settings.php:
|
5649 |
msgid ""
|
5650 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5651 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5672,82 +5662,82 @@ msgstr ""
|
|
5672 |
"bodo ohranile)."
|
5673 |
|
5674 |
#. translators: %s HTML tags
|
5675 |
-
#: settings.php:
|
5676 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5677 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5678 |
|
5679 |
#. translators: %s HTML tags
|
5680 |
-
#: settings.php:
|
5681 |
msgid "Ads between posts"
|
5682 |
msgstr "Oglasi med prispevki"
|
5683 |
|
5684 |
#. translators: %s HTML tags
|
5685 |
-
#: settings.php:
|
5686 |
msgid "Ads between comments"
|
5687 |
msgstr "Oglasi med komentarji"
|
5688 |
|
5689 |
#. translators: %s HTML tags
|
5690 |
-
#: settings.php:
|
5691 |
msgid "Support via email"
|
5692 |
msgstr "Podpora prek elektronske pošte"
|
5693 |
|
5694 |
#. translators: %s HTML tags
|
5695 |
-
#: settings.php:
|
5696 |
msgid "%s Sticky positions %s"
|
5697 |
msgstr "%s Lepljivi položaji %s"
|
5698 |
|
5699 |
#. translators: %s HTML tags
|
5700 |
-
#: settings.php:
|
5701 |
msgid "%s Limit insertions %s"
|
5702 |
msgstr "%s Omeji vstavljanja %s"
|
5703 |
|
5704 |
#. translators: %s HTML tags
|
5705 |
-
#: settings.php:
|
5706 |
msgid "%s Clearance %s options"
|
5707 |
msgstr "Možnosti %s izogibanja %s"
|
5708 |
|
5709 |
#. translators: %s HTML tags
|
5710 |
-
#: settings.php:
|
5711 |
msgid "Ad rotation"
|
5712 |
msgstr "Vrtenje oglasov"
|
5713 |
|
5714 |
#. translators: %s HTML tags
|
5715 |
-
#: settings.php:
|
5716 |
msgid "%s A/B testing %s"
|
5717 |
msgstr "%s A/B testiranje %s"
|
5718 |
|
5719 |
#. translators: %s HTML tags
|
5720 |
-
#: settings.php:
|
5721 |
msgid "%s Ad tracking %s"
|
5722 |
msgstr "%s Sledenje oglasom %s"
|
5723 |
|
5724 |
#. translators: %s HTML tags
|
5725 |
-
#: settings.php:
|
5726 |
msgid "Support for %s AMP pages %s"
|
5727 |
msgstr "Podpora za %s AMP strani %s"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
-
#: settings.php:
|
5731 |
msgid "%s Ad blocking detection %s"
|
5732 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5733 |
|
5734 |
#. translators: %s HTML tags
|
5735 |
-
#: settings.php:
|
5736 |
msgid "%s Mobile device detection %s"
|
5737 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5738 |
|
5739 |
#. translators: %s HTML tags
|
5740 |
-
#: settings.php:
|
5741 |
msgid "64 code blocks"
|
5742 |
msgstr "64 kodnih blokov"
|
5743 |
|
5744 |
#. translators: %s HTML tags
|
5745 |
-
#: settings.php:
|
5746 |
msgid "%s GEO targeting %s"
|
5747 |
msgstr "%s GEO ciljanje %s"
|
5748 |
|
5749 |
#. translators: %s HTML tags
|
5750 |
-
#: settings.php:
|
5751 |
msgid "%s Scheduling %s"
|
5752 |
msgstr "%s Urnik %s"
|
5753 |
|
@@ -6559,92 +6549,96 @@ msgid "Select or upload banner image"
|
|
6559 |
msgstr "Izberi ali naloži sliko pasice"
|
6560 |
|
6561 |
#: strings.php:254
|
|
|
|
|
|
|
|
|
6562 |
msgid "Use this image"
|
6563 |
msgstr "Uporabi to sliko"
|
6564 |
|
6565 |
-
#: strings.php:
|
6566 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6567 |
msgstr ""
|
6568 |
"Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
|
6569 |
|
6570 |
-
#: strings.php:
|
6571 |
msgctxt "Monday"
|
6572 |
msgid "MO"
|
6573 |
msgstr "PO"
|
6574 |
|
6575 |
-
#: strings.php:
|
6576 |
msgctxt "Tuesday"
|
6577 |
msgid "TU"
|
6578 |
msgstr "TO"
|
6579 |
|
6580 |
-
#: strings.php:
|
6581 |
msgctxt "Wednesday"
|
6582 |
msgid "WE"
|
6583 |
msgstr "SR"
|
6584 |
|
6585 |
-
#: strings.php:
|
6586 |
msgctxt "Thursday"
|
6587 |
msgid "TH"
|
6588 |
msgstr "ČE"
|
6589 |
|
6590 |
-
#: strings.php:
|
6591 |
msgctxt "Friday"
|
6592 |
msgid "FR"
|
6593 |
msgstr "PE"
|
6594 |
|
6595 |
-
#: strings.php:
|
6596 |
msgctxt "Saturday"
|
6597 |
msgid "SA"
|
6598 |
msgstr "SO"
|
6599 |
|
6600 |
-
#: strings.php:
|
6601 |
msgctxt "Sunday"
|
6602 |
msgid "SU"
|
6603 |
msgstr "NE"
|
6604 |
|
6605 |
-
#: strings.php:
|
6606 |
msgctxt "Scheduling"
|
6607 |
msgid "FALLBACK"
|
6608 |
msgstr "REZERVA"
|
6609 |
|
6610 |
-
#: strings.php:
|
6611 |
msgid "Automatically placed by AdSense Auto ads code"
|
6612 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6613 |
|
6614 |
-
#: strings.php:
|
6615 |
msgid "Add"
|
6616 |
msgstr "Dodaj"
|
6617 |
|
6618 |
-
#: strings.php:
|
6619 |
msgctxt "Element"
|
6620 |
msgid "Parent"
|
6621 |
msgstr "Nadrejeni"
|
6622 |
|
6623 |
-
#: strings.php:
|
6624 |
msgid "Cancel element selection"
|
6625 |
msgstr "Prekliči izbor HTML elementa"
|
6626 |
|
6627 |
-
#: strings.php:
|
6628 |
msgid "Select parent element"
|
6629 |
msgstr "Izberi nadrejeni element"
|
6630 |
|
6631 |
-
#: strings.php:
|
6632 |
msgid "CSS selector"
|
6633 |
msgstr "CSS selektor"
|
6634 |
|
6635 |
-
#: strings.php:
|
6636 |
msgid "Use current selector"
|
6637 |
msgstr "Uporabi trenutni selektor"
|
6638 |
|
6639 |
-
#: strings.php:
|
6640 |
msgid "ELEMENT"
|
6641 |
msgstr "ELEMENT"
|
6642 |
|
6643 |
-
#: strings.php:
|
6644 |
msgid "PATH"
|
6645 |
msgstr "POT"
|
6646 |
|
6647 |
-
#: strings.php:
|
6648 |
msgid "SELECTOR"
|
6649 |
msgstr "SELEKTOR"
|
6650 |
|
@@ -6656,6 +6650,57 @@ msgstr ""
|
|
6656 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
6657 |
"na optimalna mesta"
|
6658 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6659 |
#~ msgctxt "image size"
|
6660 |
#~ msgid "Contain"
|
6661 |
#~ msgstr "Vsebovano"
|
4 |
msgstr ""
|
5 |
"Project-Id-Version: Ad Inserter 2.5.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2020-05-27 17:48:19+00:00\n"
|
8 |
+
"PO-Revision-Date: 2020-05-27 19:54+0200\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:412
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:428
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:435
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:521
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:528
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:537
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:544
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:555
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:562
|
60 |
msgctxt "Menu item"
|
61 |
msgid "Show Log"
|
62 |
msgstr "Pokaži beležko"
|
63 |
|
64 |
#. translators: Debugging position name Before HTML element
|
65 |
+
#: ad-inserter.php:1206
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1211
|
71 |
msgid "After"
|
72 |
msgstr "Za"
|
73 |
|
74 |
#. translators: Debugging position name Prepend content of HTML element (before
|
75 |
#. the content of the HTML element)
|
76 |
+
#: ad-inserter.php:1216 strings.php:104
|
77 |
msgid "Prepend content"
|
78 |
msgstr "Dodaj pred vsebino"
|
79 |
|
80 |
#. translators: Debugging position name Append content of HTML element (after
|
81 |
#. the content of the HTML element)
|
82 |
+
#: ad-inserter.php:1221 strings.php:105
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1226 strings.php:106
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1231 strings.php:169
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1278
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1282
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1577
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1919 ad-inserter.php:3134
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2509
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2509
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2510
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2511
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2512
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2513
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2514
|
142 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
143 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - NI AKCIJE"
|
144 |
|
145 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
146 |
+
#: ad-inserter.php:2829
|
147 |
msgid "Hey, you are now using %1$s %2$s block."
|
148 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
149 |
msgstr[0] "Hej, trenutno uporabljate %1$s %2$s blok."
|
151 |
msgstr[2] "Hej, trenutno uporabljate %1$s %2$s bloke."
|
152 |
msgstr[3] "Hej, trenutno uporabljate %1$s %2$s blokov."
|
153 |
|
154 |
+
#: ad-inserter.php:2832
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:2836
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:2841
|
164 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
165 |
msgstr "Hej, uporabljate %s in upam, da ste zadovoljni z njim."
|
166 |
|
167 |
+
#: ad-inserter.php:2844
|
168 |
msgid "OK, but please help me with the settings first"
|
169 |
msgstr "V redu, ampak najprej mi, prosim, pomagajte pri nastavitvah"
|
170 |
|
171 |
+
#: ad-inserter.php:2857
|
172 |
msgid ""
|
173 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
174 |
"like saying 'Thank you'. Somebody will be happy."
|
176 |
"Prosimo, vzemite si čas in ocenite vtičnik. Ko ga ocenite s 5-imi zvezdicami "
|
177 |
"je kot bi rekli 'Hvala'. Nekdo bo vsesel."
|
178 |
|
179 |
+
#: ad-inserter.php:2859
|
180 |
msgid ""
|
181 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
182 |
"for better monetization of your website."
|
184 |
"Pozitivne ocene so velika vzpodbuda za odpravo hroščev in dodajanje novih "
|
185 |
"funkcij za boljšo monetizacijo vašega spletnega mesta."
|
186 |
|
187 |
+
#: ad-inserter.php:2865
|
188 |
msgid "Sure"
|
189 |
msgstr "Seveda"
|
190 |
|
191 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
192 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
193 |
+
#: ad-inserter.php:2882 ad-inserter.php:2917
|
194 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
195 |
msgstr "Opozorilo: %1$s %3$s je onemogočil %4$s %2$s na AMP straneh."
|
196 |
|
197 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
198 |
+
#: ad-inserter.php:2889
|
199 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
200 |
msgstr ""
|
201 |
"Opozorilo: %1$s yahteva PHP 5.6 ali novejši. %2$s Prosimo, posodobite! %3$s"
|
202 |
|
203 |
+
#: ad-inserter.php:2899
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
+
#: ad-inserter.php:2931
|
209 |
msgid ""
|
210 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
211 |
"theme"
|
213 |
"Naložite stran z nastavitvami v varnem načinu za preprečitev konfliktov z "
|
214 |
"drugimi vtičniki ali temo"
|
215 |
|
216 |
+
#: ad-inserter.php:2931
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
+
#: ad-inserter.php:3026
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
+
#: ad-inserter.php:3055 ad-inserter.php:10431 class.php:2307
|
227 |
+
#: includes/preview.php:2324 includes/preview.php:2369
|
228 |
+
#: includes/preview.php:2406 settings.php:4252 strings.php:3
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
+
#: ad-inserter.php:3056 settings.php:4253 settings.php:4338
|
233 |
msgid "Name"
|
234 |
msgstr "Ime"
|
235 |
|
236 |
+
#: ad-inserter.php:3059 settings.php:1187
|
237 |
msgid "Default insertion"
|
238 |
msgstr "Privzeto vstavljanje"
|
239 |
|
240 |
#. translators: For this post or page
|
241 |
+
#: ad-inserter.php:3062
|
242 |
msgctxt "Page"
|
243 |
msgid "For this"
|
244 |
msgstr "Za to"
|
245 |
|
246 |
+
#: ad-inserter.php:3063
|
247 |
msgctxt "Post"
|
248 |
msgid "For this"
|
249 |
msgstr "Za ta"
|
250 |
|
251 |
+
#: ad-inserter.php:3075
|
252 |
msgctxt "Enabled/disabled on all"
|
253 |
msgid "pages"
|
254 |
msgstr "straneh"
|
255 |
|
256 |
+
#: ad-inserter.php:3078
|
257 |
msgctxt "Enabled/disabled on all"
|
258 |
msgid "posts"
|
259 |
msgstr "prispevkih"
|
260 |
|
261 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107 strings.php:175
|
262 |
msgid "Enabled"
|
263 |
msgstr "Omogočeno"
|
264 |
|
265 |
#. translators: Menu items
|
266 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107
|
267 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
268 |
+
#: includes/functions.php:2668 strings.php:16
|
269 |
msgid "Disabled"
|
270 |
msgstr "Onemogočeno"
|
271 |
|
272 |
+
#: ad-inserter.php:3097
|
273 |
msgid "No individual exceptions"
|
274 |
msgstr "Ni posameznih izjem"
|
275 |
|
276 |
#. translators: Not enabled for pages or posts
|
277 |
+
#: ad-inserter.php:3099
|
278 |
msgid "Not enabled for"
|
279 |
msgstr "Ni omogočeno za"
|
280 |
|
281 |
#. translators: No individual exceptions enabled for pages or posts
|
282 |
+
#: ad-inserter.php:3127
|
283 |
msgid "No block has individual exceptions enabled"
|
284 |
msgstr "Noben blok nima omogočenih posameznih izjem"
|
285 |
|
286 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
287 |
+
#: ad-inserter.php:3132
|
288 |
msgid ""
|
289 |
"Default insertion can be configured for each block on %1$s page - button "
|
290 |
"next to %2$s checkbox."
|
292 |
"Privzeto vstavljanje se lahko nastavi za vsak blok na strani %1$s - gumb "
|
293 |
"poleg kljukice za vklop %2$s."
|
294 |
|
295 |
+
#: ad-inserter.php:3135 settings.php:1165
|
296 |
msgid "Tag / Archive pages"
|
297 |
msgstr "Strani oznak / arhiva"
|
298 |
|
299 |
+
#: ad-inserter.php:3137
|
300 |
msgid ""
|
301 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
302 |
"listed here to change default insertion for this post or page."
|
304 |
"Ko so posamezne izjeme za blok vključene, se bo tukaj izpisala kljukica za "
|
305 |
"spremembo privzetega vstavljanja za ta prispevek ali stran."
|
306 |
|
307 |
+
#: ad-inserter.php:3138
|
308 |
msgid ""
|
309 |
"This way you can individually enable or disable blocks on specific posts or "
|
310 |
"pages."
|
312 |
"Na ta način lahko posamezno omogočite ali onemogočite blok na določenem "
|
313 |
"prispevku ali strani."
|
314 |
|
315 |
+
#: ad-inserter.php:3140
|
316 |
msgid "For more information check page %s"
|
317 |
msgstr "Za več informacij poglejte stran %s"
|
318 |
|
319 |
#. translators: Ad Inserter Exceptions documentation page
|
320 |
+
#: ad-inserter.php:3142
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Posamezne Izjeme"
|
323 |
|
324 |
+
#: ad-inserter.php:3189
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATIČNA STRAN"
|
327 |
|
328 |
+
#: ad-inserter.php:3192
|
329 |
msgid "POST"
|
330 |
msgstr "PRISPEVEK"
|
331 |
|
332 |
+
#: ad-inserter.php:3195
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "DOMAČA STRAN"
|
335 |
|
336 |
+
#: ad-inserter.php:3198
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "STRAN KATEGORIJE"
|
339 |
|
340 |
+
#: ad-inserter.php:3201
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "STRAN ISKANJE"
|
343 |
|
344 |
+
#: ad-inserter.php:3204
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "STRAN ARHIVA"
|
347 |
|
348 |
+
#: ad-inserter.php:3207
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "STRAN NAPAKA 404"
|
351 |
|
352 |
+
#: ad-inserter.php:3210
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX KLIC"
|
355 |
|
356 |
+
#: ad-inserter.php:3213
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "NEZNAN TIP STRANI"
|
359 |
|
360 |
+
#: ad-inserter.php:3230
|
361 |
msgid "Click to delete ad blocking detection cokies"
|
362 |
msgstr "Klikni za brisanje piškotkov za zaznavanje blokiranja oglasov"
|
363 |
|
364 |
+
#: ad-inserter.php:3231
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
+
#: ad-inserter.php:3260
|
370 |
msgid ""
|
371 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
372 |
"positions"
|
374 |
"Zaznana koda za %s - Koda bo samodejno vstavila oglase AdSense na optimalne "
|
375 |
"položaje"
|
376 |
|
377 |
+
#: ad-inserter.php:3395
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Koda za vstavljanje"
|
380 |
|
381 |
+
#: ad-inserter.php:3395
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "znak"
|
386 |
msgstr[2] "znaki"
|
387 |
msgstr[3] "znakov"
|
388 |
|
389 |
+
#: ad-inserter.php:3411
|
390 |
msgid "Header code"
|
391 |
msgstr "Koda v glavi"
|
392 |
|
393 |
+
#: ad-inserter.php:3411
|
394 |
msgctxt "Header code"
|
395 |
msgid "DISABLED"
|
396 |
msgstr "ONEMOGOČENA"
|
397 |
|
398 |
+
#: ad-inserter.php:3411 ad-inserter.php:3644
|
399 |
msgid "character inserted"
|
400 |
msgid_plural "characters inserted"
|
401 |
msgstr[0] "znak vstavljen"
|
403 |
msgstr[2] "znaki vstavljeni"
|
404 |
msgstr[3] "znakov vstavljenih"
|
405 |
|
406 |
+
#: ad-inserter.php:3644
|
407 |
msgid "Footer code"
|
408 |
msgstr "Koda v nogi"
|
409 |
|
410 |
+
#: ad-inserter.php:3644
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ONEMOGOČENA"
|
414 |
|
415 |
+
#: ad-inserter.php:3650
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT NE DELA"
|
418 |
|
419 |
+
#: ad-inserter.php:3650
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
422 |
|
423 |
+
#: ad-inserter.php:3650
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT NAPAKE"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
+
#: ad-inserter.php:6120
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Privzeti"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
+
#: ad-inserter.php:6801
|
435 |
msgid "Error importing %s settings."
|
436 |
msgstr "Napaka pri uvozu %s nastavitev."
|
437 |
|
438 |
+
#: ad-inserter.php:6802
|
439 |
msgid "Error importing settings for block"
|
440 |
msgid_plural "Error importing settings for blocks:"
|
441 |
msgstr[0] "Napaka pri uvozu nastavitev za blok"
|
443 |
msgstr[2] "Napaka pri uvozu nastavitev za bloke:"
|
444 |
msgstr[3] "Napaka pri uvozu nastavitev za bloke:"
|
445 |
|
446 |
+
#: ad-inserter.php:6855
|
447 |
msgid "Settings saved."
|
448 |
msgstr "Nastavitve shranjene."
|
449 |
|
450 |
#. translators: %s: Ad Inserter
|
451 |
+
#: ad-inserter.php:6857
|
452 |
msgid "Invalid data received - %s settings not saved."
|
453 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
454 |
|
455 |
+
#: ad-inserter.php:6956
|
456 |
msgid "Settings cleared."
|
457 |
msgstr "Nastavitve ponastavljene."
|
458 |
|
459 |
#. Translators: Post/Static page must have between X and Y words
|
460 |
+
#: ad-inserter.php:7353 ad-inserter.php:7355 ad-inserter.php:7378
|
461 |
+
#: settings.php:2166
|
462 |
msgid "word"
|
463 |
msgid_plural "words"
|
464 |
msgstr[0] "besedo"
|
466 |
msgstr[2] "besede"
|
467 |
msgstr[3] "besed"
|
468 |
|
469 |
+
#: ad-inserter.php:7392 ad-inserter.php:7520
|
470 |
msgid "HTML TAGS REMOVED"
|
471 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
472 |
|
473 |
+
#: ad-inserter.php:7596
|
474 |
msgid "BEFORE COMMENTS"
|
475 |
msgstr "PRED KOMENTARJI"
|
476 |
|
477 |
+
#: ad-inserter.php:7722
|
478 |
msgid "AFTER COMMENTS"
|
479 |
msgstr "PO KOMETARJIH"
|
480 |
|
481 |
+
#: ad-inserter.php:7803
|
482 |
msgid "BETWEEN COMMENTS"
|
483 |
msgstr "MED KOMENTARJI"
|
484 |
|
485 |
+
#: ad-inserter.php:9737 ad-inserter.php:9820
|
486 |
msgctxt "category name"
|
487 |
msgid "Uncategorized"
|
488 |
msgstr "Nekategorizirano"
|
489 |
|
490 |
+
#: ad-inserter.php:10048
|
491 |
msgid "requires WordPress 4.6 or newer"
|
492 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
493 |
|
494 |
+
#: ad-inserter.php:10048
|
495 |
msgid "Please update!"
|
496 |
msgstr "Prosimo, posodobite!"
|
497 |
|
498 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
499 |
#. name with HTML tags will be added)
|
500 |
+
#: ad-inserter.php:10304
|
501 |
msgid "Thank you for installing"
|
502 |
msgstr "Hvala za namestitev vtičnika"
|
503 |
|
504 |
#. translators: Opt-in message: %s: HTML tags
|
505 |
+
#: ad-inserter.php:10306
|
506 |
msgid ""
|
507 |
"We would like to %s track its usage %s on your site. This is completely "
|
508 |
"optional and can be disabled at any time."
|
510 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
511 |
"izbirno in se lahko izključi kadarkoli."
|
512 |
|
513 |
+
#: ad-inserter.php:10308
|
514 |
msgid ""
|
515 |
"We don't record any sensitive data, only information regarding the WordPress "
|
516 |
"environment and plugin usage, which will help us to make improvements to the "
|
520 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
521 |
|
522 |
#. translators: Deactivation message: %s: HTML tags
|
523 |
+
#: ad-inserter.php:10345
|
524 |
msgid ""
|
525 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
526 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
531 |
"nam %s in poskušali vam bomo pomagati."
|
532 |
|
533 |
#. translators: %s: Ad Inserter
|
534 |
+
#: ad-inserter.php:10389
|
535 |
msgid "%s block."
|
536 |
msgstr "%s blok."
|
537 |
|
538 |
#. translators: widget title
|
539 |
+
#: ad-inserter.php:10405 ad-inserter.php:10440
|
540 |
msgid "Processing log"
|
541 |
msgstr "Dnevnik procesiranja"
|
542 |
|
543 |
#. translators: widget title
|
544 |
+
#: ad-inserter.php:10407 ad-inserter.php:10441
|
545 |
msgid "Dummy widget"
|
546 |
msgstr "Prazen gradnik"
|
547 |
|
548 |
#. translators: widget title
|
549 |
+
#: ad-inserter.php:10409 ad-inserter.php:10439
|
550 |
msgid "Debugging tools"
|
551 |
msgstr "Orodja za razhroščevanje"
|
552 |
|
553 |
#. translators: block status (widget title)
|
554 |
+
#: ad-inserter.php:10416
|
555 |
msgctxt "block"
|
556 |
msgid "PAUSED"
|
557 |
msgstr "USTAVLJEN"
|
558 |
|
559 |
+
#: ad-inserter.php:10417
|
560 |
msgid "WIDGET DISABLED"
|
561 |
msgstr "GRADNIK ONEMOGOČEN"
|
562 |
|
563 |
+
#: ad-inserter.php:10418
|
564 |
msgid "Unknown block"
|
565 |
msgstr "Neznan blok"
|
566 |
|
567 |
+
#: ad-inserter.php:10426 includes/functions-check-now.php:3261
|
568 |
+
#: includes/functions.old.php:3186 includes/functions.php:3602
|
569 |
+
#: settings.php:1217
|
570 |
msgid "Title"
|
571 |
msgstr "Naslov"
|
572 |
|
573 |
+
#: ad-inserter.php:10448
|
574 |
msgctxt "Widget"
|
575 |
msgid "Sticky"
|
576 |
msgstr "Lepljiv"
|
577 |
|
578 |
+
#: ad-inserter.php:10497
|
579 |
msgid ""
|
580 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
581 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
584 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
585 |
"Inserter Pro."
|
586 |
|
587 |
+
#: ad-inserter.php:10498
|
588 |
msgid ""
|
589 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
590 |
"will clear all settings that are available only in the Pro version "
|
595 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
596 |
|
597 |
#. translators: %s: Ad Inserter
|
598 |
+
#: class.php:545 class.php:554 class.php:557
|
599 |
msgid "PHP error in %s block"
|
600 |
msgstr "PHP napaka v bloku %s"
|
601 |
|
602 |
+
#: class.php:2257
|
603 |
msgid "Counters"
|
604 |
msgstr "Števci"
|
605 |
|
606 |
+
#: class.php:2261
|
607 |
msgid "Content"
|
608 |
msgstr "Vsebina"
|
609 |
|
610 |
+
#: class.php:2266
|
611 |
msgid "Excerpt"
|
612 |
msgstr "Izvleček"
|
613 |
|
614 |
+
#: class.php:2271 strings.php:17
|
615 |
msgid "Before post"
|
616 |
msgstr "Pred prispevkom"
|
617 |
|
618 |
+
#: class.php:2276 strings.php:18
|
619 |
msgid "After post"
|
620 |
msgstr "Za prispevkom"
|
621 |
|
622 |
+
#: class.php:2281 strings.php:25
|
623 |
msgid "Between posts"
|
624 |
msgstr "Med prispevki"
|
625 |
|
626 |
+
#: class.php:2286 settings.php:1900 settings.php:4270
|
627 |
msgid "Widget"
|
628 |
msgstr "Gradnik"
|
629 |
|
630 |
+
#: class.php:2291 settings.php:4268
|
631 |
msgid "PHP function call"
|
632 |
msgstr "Klic PHP funkcije"
|
633 |
|
634 |
#. Translators: %s: custom hook name
|
635 |
+
#: class.php:2301
|
636 |
msgid "Custom hook %s call"
|
637 |
msgstr "Klic ročice po meri %s"
|
638 |
|
639 |
+
#: class.php:2337
|
640 |
msgid "AJAX REQUEST"
|
641 |
msgstr "AJAX ZAHTEVEK"
|
642 |
|
643 |
+
#: class.php:2340
|
644 |
msgid "Ajax request for block in iframe"
|
645 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
646 |
|
647 |
+
#: class.php:2374
|
648 |
msgid "Ajax request url, click to open it in a new tab"
|
649 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
650 |
|
651 |
+
#: class.php:2377
|
652 |
msgid "IN THE LOOP"
|
653 |
msgstr "V ZANKI"
|
654 |
|
655 |
+
#: class.php:2377
|
656 |
msgid "YES"
|
657 |
msgstr "DA"
|
658 |
|
659 |
+
#: class.php:2377
|
660 |
msgid "NO"
|
661 |
msgstr "NE"
|
662 |
|
663 |
+
#: class.php:2413
|
664 |
msgid "BLOCK"
|
665 |
msgstr "BLOK"
|
666 |
|
667 |
+
#: class.php:2413
|
668 |
msgctxt "block or widget"
|
669 |
msgid "INSERTED BUT NOT VISIBLE"
|
670 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
671 |
|
672 |
+
#: class.php:2602
|
673 |
msgctxt "viewports"
|
674 |
msgid "ALL"
|
675 |
msgstr "VSI"
|
676 |
|
677 |
+
#: class.php:2635 class.php:2677 class.php:3987 strings.php:279
|
678 |
msgctxt "Block"
|
679 |
msgid "HIDDEN"
|
680 |
msgstr "SKRIT"
|
681 |
|
682 |
+
#: class.php:2684 class.php:3990 strings.php:278
|
683 |
msgctxt "Block"
|
684 |
msgid "VISIBLE"
|
685 |
msgstr "VIDEN"
|
686 |
|
687 |
+
#: class.php:3216 class.php:3288
|
688 |
msgid "ACTIVE GROUPS"
|
689 |
msgstr "AKTIVNE SKUPINE"
|
690 |
|
691 |
+
#: class.php:3686
|
692 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
693 |
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
694 |
|
695 |
#. translators: %s: list parameters and type
|
696 |
+
#: class.php:3694
|
697 |
msgid "parameters='%s' type='%s'"
|
698 |
msgstr "parametri='%s' tip='%s'"
|
699 |
|
700 |
#. translators: %s: list parameters and type
|
701 |
+
#: class.php:3696
|
702 |
msgid "referers='%s' type='%s'"
|
703 |
msgstr "napotitelji='%s' tip='%s'"
|
704 |
|
705 |
#. translators: %s: list parameters and type
|
706 |
+
#: class.php:3698
|
707 |
msgid "clients='%s' type='%s'"
|
708 |
msgstr "odjemalci='%s' tip='%s'"
|
709 |
|
710 |
#. translators: %s: list parameters and type
|
711 |
+
#: class.php:3870
|
712 |
msgid "countries='%s' type='%s'"
|
713 |
msgstr "države='%s' tip='%s'"
|
714 |
|
715 |
#. translators: %s: list parameters and type
|
716 |
+
#: class.php:3872
|
717 |
msgid "ip addresses='%s' type='%s'"
|
718 |
msgstr "ip naslovi='%s' tip='%s'"
|
719 |
|
720 |
+
#: class.php:3987 class.php:3990
|
721 |
msgid "viewport='%s' type='%s'"
|
722 |
msgstr "pogled='%s' tip='%s'"
|
723 |
|
724 |
+
#: class.php:4343 strings.php:272
|
725 |
msgid "BEFORE"
|
726 |
msgstr "PRED"
|
727 |
|
728 |
+
#: class.php:4351 strings.php:274
|
729 |
msgid "PREPEND CONTENT"
|
730 |
msgstr "DODAJ PRED VSEBINO"
|
731 |
|
732 |
+
#: class.php:4355 strings.php:275
|
733 |
msgid "APPEND CONTENT"
|
734 |
msgstr "DODAJ ZA VSEBINO"
|
735 |
|
736 |
+
#: class.php:4359 strings.php:276
|
737 |
msgid "REPLACE CONTENT"
|
738 |
msgstr "NADOMESTI VSEBINO"
|
739 |
|
740 |
+
#: class.php:4363 strings.php:277
|
741 |
msgid "REPLACE ELEMENT"
|
742 |
msgstr "NADOMESTI ELEMENT"
|
743 |
|
744 |
+
#: class.php:4374 strings.php:273
|
745 |
msgid "AFTER"
|
746 |
msgstr "ZA"
|
747 |
|
748 |
+
#: class.php:4459 includes/preview.php:2369 includes/preview.php:2406
|
749 |
msgid "Code"
|
750 |
msgstr "Koda"
|
751 |
|
752 |
+
#: class.php:4462
|
753 |
msgid "for block"
|
754 |
msgstr "za blok"
|
755 |
|
756 |
+
#: class.php:8316
|
757 |
msgid ""
|
758 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
759 |
"extension for PHP."
|
761 |
"NAPAKA: razred DOMDocument ni bil najden. Vaš ponudnik gostovanja mora "
|
762 |
"namestiti DOM razširitev za PHP."
|
763 |
|
764 |
+
#: includes/editor.php:4 includes/placeholders.php:349
|
765 |
+
#: includes/preview.php:2310 strings.php:285
|
766 |
msgid "Use"
|
767 |
msgstr "Uporabi"
|
768 |
|
769 |
+
#: includes/editor.php:5 includes/preview.php:2311
|
770 |
msgid "Reset"
|
771 |
msgstr "Ponastavi"
|
772 |
|
773 |
+
#: includes/editor.php:6 includes/placeholders.php:351
|
774 |
+
#: includes/preview.php:2313 settings.php:3608 strings.php:227 strings.php:284
|
775 |
msgid "Cancel"
|
776 |
msgstr "Prekliči"
|
777 |
|
778 |
+
#: includes/editor.php:71
|
779 |
msgid "Visual Code Editor"
|
780 |
msgstr "Vizualni Urejevalnik Kode"
|
781 |
|
782 |
+
#: includes/editor.php:259 includes/preview-adb.php:286
|
783 |
+
#: includes/preview.php:2300
|
784 |
msgid ""
|
785 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
786 |
"blockers."
|
788 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
789 |
"blokiranje oglasov."
|
790 |
|
791 |
+
#: includes/editor.php:261 settings.php:291
|
792 |
msgid "Error loading page"
|
793 |
msgstr "Napaka pri nalaganju strani"
|
794 |
|
795 |
+
#: includes/editor.php:261 includes/preview-adb.php:288
|
796 |
+
#: includes/preview.php:2302
|
797 |
msgid "PAGE BLOCKED"
|
798 |
msgstr "STRAN BLOKIRANA"
|
799 |
|
800 |
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
801 |
+
#: includes/functions.php:304
|
802 |
msgid "%d of %d names shown"
|
803 |
msgstr "Prikazanih %d od %d imen"
|
804 |
|
805 |
#. translators: %s: name filter
|
806 |
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
807 |
+
#: includes/functions.php:323
|
808 |
msgid "No name matches filter"
|
809 |
msgstr "Noben podatek ne ustreza filtru"
|
810 |
|
811 |
#. translators: %s: Ad Inserter Pro
|
812 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
813 |
+
#: includes/functions.php:405
|
814 |
msgid ""
|
815 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
816 |
"be imported for all blocks and settings"
|
819 |
"nastavitve spodaj uvozile za vse bloke in nastavitve"
|
820 |
|
821 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
822 |
+
#: includes/functions.php:405
|
823 |
msgid "Import Settings for"
|
824 |
msgstr "Uvozi Nastavitve za"
|
825 |
|
826 |
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
827 |
+
#: includes/functions.php:409
|
828 |
msgid "Saved settings for"
|
829 |
msgstr "Shranjene nastavitve za"
|
830 |
|
831 |
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
832 |
+
#: includes/functions.php:429
|
833 |
msgid "License Key"
|
834 |
msgstr "Licenčni Ključ"
|
835 |
|
836 |
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
837 |
+
#: includes/functions.php:432
|
838 |
msgid "License Key for"
|
839 |
msgstr "Licenčni Ključ za"
|
840 |
|
841 |
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
842 |
+
#: includes/functions.php:434
|
843 |
msgid "Open license page"
|
844 |
msgstr "Odpri licenčno stran"
|
845 |
|
846 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
847 |
+
#: includes/functions.php:441
|
848 |
msgid "Hide license key"
|
849 |
msgstr "Skrij licenčni ključ"
|
850 |
|
851 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
852 |
+
#: includes/functions.php:441
|
853 |
msgid "Hide key"
|
854 |
msgstr "Skrij ključ"
|
855 |
|
856 |
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
857 |
+
#: includes/functions.php:456
|
858 |
msgid "Main content element"
|
859 |
msgstr "Glavni element vsebine"
|
860 |
|
861 |
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
862 |
+
#: includes/functions.php:459
|
863 |
msgid ""
|
864 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
865 |
"Leave empty unless position is not properly calculated."
|
868 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
869 |
|
870 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
871 |
+
#: includes/functions.php:460 settings.php:1368 settings.php:2823
|
872 |
msgid "Open HTML element selector"
|
873 |
msgstr "Odpri izbirnik HTML elementa"
|
874 |
|
875 |
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
876 |
+
#: includes/functions.php:465
|
877 |
msgid "Lazy loading offset"
|
878 |
msgstr "Zamik za leno nalaganje"
|
879 |
|
880 |
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
881 |
+
#: includes/functions.php:468
|
882 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
883 |
msgstr "Zamik bloka od vidnega pogleda, ko bi ta moral biti naložen"
|
884 |
|
885 |
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
886 |
+
#: includes/functions.php:479
|
887 |
msgid "Export / Import Block Settings"
|
888 |
msgstr "Izvozi / Uvozi Nastavitve Bloka"
|
889 |
|
890 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
891 |
+
#: includes/functions.php:494
|
892 |
msgid "Track impressions and clicks for this block"
|
893 |
msgstr "Sledi prikazom in klikom za ta blok"
|
894 |
|
895 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
896 |
+
#: includes/functions.php:494
|
897 |
msgid " - global tracking disabled"
|
898 |
msgstr " - globalno sledenje onemogočeno"
|
899 |
|
900 |
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
901 |
+
#: includes/functions.php:502 includes/functions.php:3360
|
902 |
msgid "Generate PDF report"
|
903 |
msgstr "Generiraj PDF poročilo"
|
904 |
|
905 |
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
906 |
+
#: includes/functions.php:516
|
907 |
msgid "Open public report"
|
908 |
msgstr "Odpri javno poročilo"
|
909 |
|
910 |
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
911 |
+
#: includes/functions.php:530
|
912 |
msgid "Toggle Ad Blocking Statistics"
|
913 |
msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
914 |
|
915 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
916 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
917 |
+
#: includes/functions.php:538 includes/functions.php:3341
|
918 |
msgid "Toggle Statistics"
|
919 |
msgstr "Preklopi Statistiko"
|
920 |
|
921 |
+
#: includes/functions-check-now.php:528 includes/functions.php:547
|
922 |
msgid "Pin list"
|
923 |
msgstr "Pripni seznam"
|
924 |
|
925 |
#. translators: %s: Ad Inserter Pro
|
926 |
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
927 |
+
#: includes/functions.php:562
|
928 |
msgid "%s license key is not set. Continue?"
|
929 |
msgstr "%s licenčni ključ ni nastavljen. Nadaljujem?"
|
930 |
|
931 |
#. translators: %s: Ad Inserter Pro
|
932 |
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
933 |
+
#: includes/functions.php:566
|
934 |
msgid "Invalid %s license key. Continue?"
|
935 |
msgstr "Neveljaven %s licenčni ključ. Nadaljujem?"
|
936 |
|
937 |
#. translators: %s: Ad Inserter Pro
|
938 |
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
939 |
+
#: includes/functions.php:570
|
940 |
msgid "%s license overused. Continue?"
|
941 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
942 |
|
943 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
944 |
+
#: includes/functions.php:578 settings.php:1122 settings.php:2267
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Shrani Nastavitve"
|
947 |
|
948 |
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
949 |
+
#: includes/functions.php:638 includes/preview.php:2502
|
950 |
msgid "Horizontal position"
|
951 |
msgstr "Vodoravni položaj"
|
952 |
|
953 |
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
954 |
+
#: includes/functions.php:663
|
955 |
msgid ""
|
956 |
"Horizontal margin from the content or screen edge, empty means default value "
|
957 |
"from CSS"
|
960 |
"iz CSS"
|
961 |
|
962 |
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
963 |
+
#: includes/functions.php:671 includes/preview.php:2562
|
964 |
msgid "Vertical position"
|
965 |
msgstr "Navpični položaj"
|
966 |
|
967 |
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
968 |
+
#: includes/functions.php:686
|
969 |
msgid ""
|
970 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
971 |
"value from CSS"
|
974 |
"iz CSS"
|
975 |
|
976 |
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
977 |
+
#: includes/functions.php:714 includes/preview.php:2617
|
978 |
msgid "Animation"
|
979 |
msgstr "Animacija"
|
980 |
|
981 |
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
982 |
+
#: includes/functions.php:733
|
983 |
msgid "Trigger"
|
984 |
msgstr "Sporžilec"
|
985 |
|
986 |
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
987 |
+
#: includes/functions.php:742
|
988 |
msgid ""
|
989 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
990 |
"(#id or .class) becomes visible"
|
993 |
"selektorjem (#id ali .razred) postane viden"
|
994 |
|
995 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
996 |
+
#: includes/functions.php:746
|
997 |
msgid "Offset"
|
998 |
msgstr "Zamik"
|
999 |
|
1000 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
1001 |
+
#: includes/functions.php:746
|
1002 |
msgid "Offset of trigger element"
|
1003 |
msgstr "Zamik sprožilnega elementa"
|
1004 |
|
1005 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
1006 |
+
#: includes/functions.php:750
|
1007 |
msgid "Delay"
|
1008 |
msgstr "Zakasnitev"
|
1009 |
|
1010 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
1011 |
+
#: includes/functions.php:750
|
1012 |
msgid "Delay animation after trigger condition"
|
1013 |
msgstr "Zakasni animacijo po izpolnitvi pogoja sprožilca"
|
1014 |
|
1015 |
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
1016 |
+
#: includes/functions.php:754
|
1017 |
msgid "Trigger once"
|
1018 |
msgstr "Sproži enkrat"
|
1019 |
|
1020 |
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
1021 |
+
#: includes/functions.php:756
|
1022 |
msgid "Trigger animation only once"
|
1023 |
msgstr "Sproži animacijo samo enkrat"
|
1024 |
|
1025 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
1026 |
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
1027 |
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
1028 |
+
#: includes/functions.php:864 includes/functions.php:2807
|
1029 |
+
#: includes/functions.php:2823
|
1030 |
msgid "Tracking is globally disabled"
|
1031 |
msgstr "Sledenje je globalno onemogočeno"
|
1032 |
|
1033 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
1034 |
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
1035 |
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
1036 |
+
#: includes/functions.php:868 includes/functions.php:2811
|
1037 |
+
#: includes/functions.php:2827
|
1038 |
msgid "Tracking for this block is disabled"
|
1039 |
msgstr "Sledenje za ta blok je onemogočeno"
|
1040 |
|
1041 |
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
1042 |
+
#: includes/functions.php:875
|
1043 |
msgid "Double click to toggle controls in public reports"
|
1044 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1045 |
|
1046 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1047 |
+
#: includes/functions.php:881 settings.php:3543 settings.php:3579
|
1048 |
+
#: settings.php:3621 strings.php:240
|
1049 |
msgid "Loading..."
|
1050 |
msgstr "Nalagam..."
|
1051 |
|
1052 |
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
1053 |
+
#: includes/functions.php:902
|
1054 |
msgid ""
|
1055 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1056 |
"all data for this block"
|
1059 |
"brisanje vseh podatkov za ta blok"
|
1060 |
|
1061 |
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
1062 |
+
#: includes/functions.php:906
|
1063 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1064 |
msgstr "Samodejna osvežitev podatkov za izbrano obdobje vsakih 60 sekund"
|
1065 |
|
1066 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1067 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1068 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1069 |
msgid "Load data for last month"
|
1070 |
msgstr "Naloži podatke za zadnji mesec"
|
1071 |
|
1072 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1073 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1074 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1075 |
msgid "Last Month"
|
1076 |
msgstr "Zadnji Mesec"
|
1077 |
|
1078 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1079 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1080 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1081 |
msgid "Load data for this month"
|
1082 |
msgstr "Naloži podatke za ta mesec"
|
1083 |
|
1084 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1085 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1086 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1087 |
msgid "This Month"
|
1088 |
msgstr "Ta Mesec"
|
1089 |
|
1090 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1091 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1092 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1093 |
msgid "Load data for this year"
|
1094 |
msgstr "Naloži podatke za to leto"
|
1095 |
|
1096 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1097 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1098 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1099 |
msgid "This Year"
|
1100 |
msgstr "To Leto"
|
1101 |
|
1102 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1103 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1104 |
+
#: includes/functions.php:918 includes/functions.php:6276
|
1105 |
msgid "Load data for the last 15 days"
|
1106 |
msgstr "Naloži podatke za zadnjih 15 dni"
|
1107 |
|
1108 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1109 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1110 |
+
#: includes/functions.php:921 includes/functions.php:6279
|
1111 |
msgid "Load data for the last 30 days"
|
1112 |
msgstr "Naloži podatke za zadnjih 30 dni"
|
1113 |
|
1114 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1115 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1116 |
+
#: includes/functions.php:924 includes/functions.php:6282
|
1117 |
msgid "Load data for the last 90 days"
|
1118 |
msgstr "Naloži podatke za zadnjih 90 dni"
|
1119 |
|
1120 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1121 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1122 |
+
#: includes/functions.php:927 includes/functions.php:6285
|
1123 |
msgid "Load data for the last 180 days"
|
1124 |
msgstr "Naloži podatke za zadnjih 180 dni"
|
1125 |
|
1126 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1127 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1128 |
+
#: includes/functions.php:930 includes/functions.php:6288
|
1129 |
msgid "Load data for the last 365 days"
|
1130 |
msgstr "Naloži podatke za zadnjih 365 dni"
|
1131 |
|
1132 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1133 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1134 |
+
#: includes/functions.php:940 includes/functions.php:6298
|
1135 |
msgid "Load data for the selected range"
|
1136 |
msgstr "Naloži podatke za izbrano obdobje"
|
1137 |
|
1138 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1139 |
+
#: includes/functions.php:956
|
1140 |
msgid ""
|
1141 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1142 |
"imported for this block"
|
1145 |
"nastavitve spodaj uvozile za ta blok"
|
1146 |
|
1147 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1148 |
+
#: includes/functions.php:956
|
1149 |
msgid "Import settings for block"
|
1150 |
msgstr "Uvozi nastavitve za blok"
|
1151 |
|
1152 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1153 |
+
#: includes/functions.php:960
|
1154 |
msgid ""
|
1155 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1156 |
"is also checked, the name from encoded settings below will be imported for "
|
1161 |
"uvozilo za ta blok"
|
1162 |
|
1163 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1164 |
+
#: includes/functions.php:960
|
1165 |
msgid "Import block name"
|
1166 |
msgstr "Uvozi ime bloka"
|
1167 |
|
1168 |
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1169 |
+
#: includes/functions.php:964
|
1170 |
msgid "Saved settings for block"
|
1171 |
msgstr "Shranjene nastavitve za blok"
|
1172 |
|
1173 |
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1174 |
+
#: includes/functions.php:977
|
1175 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1176 |
msgstr "Izvozi / Uvozi Ad Inserter Pro Nastavitve"
|
1177 |
|
1178 |
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1179 |
+
#: includes/functions.php:987
|
1180 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1181 |
msgstr ""
|
1182 |
"Ali ste prepričani, da želite pobrisati vse podatke o statistiki za vse "
|
1183 |
"bloke?"
|
1184 |
|
1185 |
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1186 |
+
#: includes/functions.php:989
|
1187 |
msgid "Clear All Statistics Data"
|
1188 |
msgstr "Pobriši Vse Podatke o Statistiki"
|
1189 |
|
1190 |
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1191 |
+
#: includes/functions.php:1019
|
1192 |
msgid "Toggle country/city editor"
|
1193 |
msgstr "Preklopi urejevalnik držav/mest"
|
1194 |
|
1195 |
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1196 |
+
#: includes/functions.php:1025
|
1197 |
msgid "IP Addresses"
|
1198 |
msgstr "IP Naslovi"
|
1199 |
|
1200 |
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1201 |
+
#: includes/functions.php:1028
|
1202 |
msgid "Toggle IP address editor"
|
1203 |
msgstr "Preklopi urejevalnik IP nslovov"
|
1204 |
|
1205 |
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1206 |
+
#: includes/functions.php:1031
|
1207 |
msgid ""
|
1208 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1209 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1212 |
"naslov-začetek*. *ip-naslov-vzorec*, *ip-naslov-konec)"
|
1213 |
|
1214 |
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1215 |
+
#: includes/functions.php:1040
|
1216 |
msgid "Blacklist IP addresses"
|
1217 |
msgstr "Črni seznam IP naslovov"
|
1218 |
|
1219 |
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1220 |
+
#: includes/functions.php:1044
|
1221 |
msgid "Whitelist IP addresses"
|
1222 |
msgstr "Beli seznam IP naslovov"
|
1223 |
|
1224 |
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1225 |
+
#: includes/functions.php:1055
|
1226 |
msgid "Countries"
|
1227 |
msgstr "Države"
|
1228 |
|
1229 |
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1230 |
+
#: includes/functions.php:1056
|
1231 |
msgid "Cities"
|
1232 |
msgstr "Mesta"
|
1233 |
|
1234 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1235 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1236 |
+
#: includes/functions.php:1060 includes/functions.php:3306
|
1237 |
msgid "Toggle country editor"
|
1238 |
msgstr "Preklopi urejevalnik držav"
|
1239 |
|
1240 |
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1241 |
+
#: includes/functions.php:1063
|
1242 |
msgid "Toggle city editor"
|
1243 |
msgstr "Preklopi urejevalnik mest"
|
1244 |
|
1245 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1246 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1247 |
+
#: includes/functions.php:1067 includes/functions.php:3309
|
1248 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1249 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1250 |
|
1251 |
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1252 |
+
#: includes/functions.php:1076
|
1253 |
msgid "Blacklist countries"
|
1254 |
msgstr "Črni seznam držav"
|
1255 |
|
1256 |
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1257 |
+
#: includes/functions.php:1080
|
1258 |
msgid "Whitelist countries"
|
1259 |
msgstr "Beli seznam držav"
|
1260 |
|
1261 |
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1262 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1263 |
+
#: includes/functions.php:1538 includes/functions.php:1848
|
1264 |
msgid "Enter license key"
|
1265 |
msgstr "Vnesite licenčni ključ"
|
1266 |
|
1267 |
#. translators: %s: Ad Inserter Pro
|
1268 |
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1269 |
+
#: includes/functions.php:1544
|
1270 |
msgid ""
|
1271 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1272 |
"disabled."
|
1275 |
"posodobitve onemogočene."
|
1276 |
|
1277 |
#. translators: %s: Ad Inserter Pro
|
1278 |
+
#: includes/functions-check-now.php:1402 includes/functions.php:1558
|
1279 |
msgid "Warning: %s plugin update server is not accessible"
|
1280 |
msgstr "Opozorilo: %s strežnik za posodobitve vtičnika ni dosegljiv"
|
1281 |
|
1282 |
#. translators: updates are not available
|
1283 |
+
#: includes/functions-check-now.php:1404 includes/functions.php:1560
|
1284 |
msgid "updates"
|
1285 |
msgstr "posodobitve"
|
1286 |
|
1287 |
#. translators: updates are not available
|
1288 |
+
#: includes/functions-check-now.php:1406 includes/functions.php:1562
|
1289 |
msgid "are not available"
|
1290 |
msgstr "niso na razpolago"
|
1291 |
|
1292 |
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1293 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1294 |
+
#: includes/functions.php:1567 includes/functions.php:1857
|
1295 |
msgid "Check license key"
|
1296 |
msgstr "Preverite licenčni ključ"
|
1297 |
|
1298 |
#. translators: %s: Ad Inserter Pro
|
1299 |
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1300 |
+
#: includes/functions.php:1573
|
1301 |
msgid "Invalid %s license key."
|
1302 |
msgstr "Neveljaven %s licenčni ključ."
|
1303 |
|
1304 |
#. translators: %s: Ad Inserter Pro
|
1305 |
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1306 |
+
#: includes/functions.php:1582
|
1307 |
msgid "%s license expired. Plugin updates are disabled."
|
1308 |
msgstr "%s licenca je potekla. Posodobitve vtičnika so onemogočene."
|
1309 |
|
1310 |
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1311 |
+
#: includes/functions.php:1583
|
1312 |
msgid "Renew license"
|
1313 |
msgstr "Obnovite licenco"
|
1314 |
|
1315 |
#. translators: %s: Ad Inserter Pro
|
1316 |
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1317 |
+
#: includes/functions.php:1591
|
1318 |
msgid "%s license overused. Plugin updates are disabled."
|
1319 |
msgstr ""
|
1320 |
"%s licenca je prekomerno uporabljena. Posodobitve vtičnika so onemogočene."
|
1321 |
|
1322 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1323 |
+
#: includes/functions.php:1592
|
1324 |
msgid "Manage licenses"
|
1325 |
msgstr "Upravljajte z licencami"
|
1326 |
|
1327 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1328 |
+
#: includes/functions.php:1592
|
1329 |
msgid "Upgrade license"
|
1330 |
msgstr "Nadgradite licenco"
|
1331 |
|
1332 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1333 |
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1334 |
+
#: includes/functions.php:1850
|
1335 |
msgid ""
|
1336 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1337 |
"limited and updates are disabled."
|
1341 |
|
1342 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1343 |
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1344 |
+
#: includes/functions.php:1859
|
1345 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1346 |
msgstr "%1$s Opozorilo: %2$s Neveljaven %3$s licenčni ključ."
|
1347 |
|
1348 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1349 |
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1350 |
+
#: includes/functions.php:1875
|
1351 |
msgid ""
|
1352 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1353 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1358 |
|
1359 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1360 |
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1361 |
+
#: includes/functions.php:1882
|
1362 |
msgid ""
|
1363 |
"During the license period and 30 days after the license has expired we offer "
|
1364 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1367 |
"%2$s popust na vse obnovitve in nadgradnje licenc. %3$s"
|
1368 |
|
1369 |
#: includes/functions-check-now.php:1725 includes/functions.old.php:1652
|
1370 |
+
#: includes/functions.php:1892
|
1371 |
msgid "No, thank you."
|
1372 |
msgstr "Ne, hvala."
|
1373 |
|
1374 |
#: includes/functions-check-now.php:1728 includes/functions.old.php:1655
|
1375 |
+
#: includes/functions.php:1895
|
1376 |
msgid "Not now, maybe later."
|
1377 |
msgstr "Ne zdaj, mogoče kasneje."
|
1378 |
|
1379 |
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1380 |
+
#: includes/functions.php:1909
|
1381 |
msgid "Renew the licence"
|
1382 |
msgstr "Obnovi licenco"
|
1383 |
|
1384 |
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1385 |
+
#: includes/functions.php:1911
|
1386 |
msgid "Update license status"
|
1387 |
msgstr "Posodobi status licence"
|
1388 |
|
1389 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1390 |
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1391 |
+
#: includes/functions.php:1924
|
1392 |
msgid ""
|
1393 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1394 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1399 |
|
1400 |
#. Translators: %s: HTML tag
|
1401 |
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1402 |
+
#: includes/functions.php:1979
|
1403 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1404 |
msgstr "Opozorilo: %s MaxMind IP geolocijska podatkovna baza ni najdena."
|
1405 |
|
1406 |
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1407 |
+
#: includes/functions.php:2600
|
1408 |
msgid "Geolocation"
|
1409 |
msgstr "Geolokacija"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1412 |
+
#: includes/functions.php:2604 settings.php:4257
|
1413 |
msgid "Exceptions"
|
1414 |
msgstr "Izjeme"
|
1415 |
|
1416 |
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1417 |
+
#: includes/functions.php:2609
|
1418 |
msgid "Multisite"
|
1419 |
msgstr "Multisite"
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1422 |
+
#: includes/functions.php:2614 settings.php:4263
|
1423 |
msgid "Tracking"
|
1424 |
msgstr "Sledenje"
|
1425 |
|
1426 |
#. translators: %d: days, hours, minutes
|
1427 |
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1428 |
+
#: includes/functions.php:2645
|
1429 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1430 |
msgstr "Planirano v %d dneh %d urah %d minutah"
|
1431 |
|
1432 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1433 |
#. HTML code for long dash separator
|
1434 |
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1435 |
+
#: includes/functions.php:2654
|
1436 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1437 |
msgstr "Aktivno %s poteče v %d dneh %d urah %d minutah"
|
1438 |
|
1439 |
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1440 |
+
#: includes/functions.php:2658
|
1441 |
msgid "Expired"
|
1442 |
msgstr "Poteklo"
|
1443 |
|
1444 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1445 |
+
#: includes/functions.php:2684 settings.php:1450 settings.php:1465
|
1446 |
+
#: settings.php:1593 settings.php:2164
|
1447 |
msgid "and"
|
1448 |
msgstr "in"
|
1449 |
|
1450 |
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1451 |
+
#: includes/functions.php:2666
|
1452 |
msgid "fallback"
|
1453 |
msgstr "rezerva"
|
1454 |
|
1455 |
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1456 |
+
#: includes/functions.php:2667
|
1457 |
msgid "Block to be used when scheduling expires"
|
1458 |
msgstr "Blok, ki se bo uporabil, ko urnik poteče"
|
1459 |
|
1460 |
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1461 |
+
#: includes/functions.php:2704
|
1462 |
msgid "Load in iframe"
|
1463 |
msgstr "Naloži v iframe-u"
|
1464 |
|
1465 |
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1466 |
+
#: includes/functions.php:2708 includes/placeholders.php:386
|
1467 |
msgid "Width"
|
1468 |
msgstr "Širina"
|
1469 |
|
1470 |
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1471 |
+
#: includes/functions.php:2709
|
1472 |
msgid "iframe width, empty means full width (100%)"
|
1473 |
msgstr "širina iframe-a, prazno pomeni polna širina (100%)"
|
1474 |
|
1475 |
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1476 |
+
#: includes/functions.php:2715 includes/placeholders.php:381
|
1477 |
msgid "Height"
|
1478 |
msgstr "Višina"
|
1479 |
|
1480 |
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1481 |
+
#: includes/functions.php:2716
|
1482 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1483 |
msgstr ""
|
1484 |
"Višina iframe-a, prazno pomeni poravnavo glede na višino vsebine iframe-a"
|
1485 |
|
1486 |
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1487 |
+
#: includes/functions.php:2723
|
1488 |
msgid "Ad label in iframe"
|
1489 |
msgstr "Oznaka oglasa v iframe-u"
|
1490 |
|
1491 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1492 |
+
#: includes/functions.php:2728
|
1493 |
msgid "Preview iframe code"
|
1494 |
msgstr "Predpreglej kodo iframe"
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1497 |
+
#: includes/functions.php:2728 includes/preview.php:2322 settings.php:1117
|
1498 |
+
#: settings.php:2885
|
1499 |
msgid "Preview"
|
1500 |
msgstr "Predogled"
|
1501 |
|
1502 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1503 |
+
#: includes/functions.php:2742 settings.php:4264
|
1504 |
msgid "Limits"
|
1505 |
msgstr "Omejitve"
|
1506 |
|
1507 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1508 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1509 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1510 |
+
#: includes/functions.php:2747 includes/functions.php:5102
|
1511 |
+
#: includes/functions.php:5167 settings.php:2314
|
1512 |
msgid "Ad Blocking"
|
1513 |
msgstr "Blokiranje Oglasov"
|
1514 |
|
1515 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1516 |
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1517 |
+
#: includes/functions.php:2756
|
1518 |
msgid ""
|
1519 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1520 |
"for tracking!"
|
1525 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1526 |
#. header
|
1527 |
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1528 |
+
#: includes/functions.php:2765
|
1529 |
msgid ""
|
1530 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1531 |
"enabled and automatic insertion %6$s!"
|
1534 |
"izhoda %5$s omogočeno in samodejno vstavljanje %6$s!"
|
1535 |
|
1536 |
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1537 |
+
#: includes/functions.php:2831
|
1538 |
msgid "Click fraud protection is globally disabled"
|
1539 |
msgstr "Zaščita pred goljufijo s kliki je globalno onemogočena"
|
1540 |
|
1541 |
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1542 |
+
#: includes/functions.php:2835
|
1543 |
msgid "Max clicks per time period are not defined"
|
1544 |
msgstr "Največje število klikov na časovno enoto ni definirano"
|
1545 |
|
1546 |
#. Translators: Max n impressions
|
1547 |
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1548 |
+
#: includes/functions.php:2849
|
1549 |
msgid "General limits"
|
1550 |
msgstr "Splošne omejitve"
|
1551 |
|
1553 |
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1554 |
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1555 |
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1556 |
+
#: includes/functions.php:2855 includes/functions.php:2867
|
1557 |
+
#: includes/functions.php:2952
|
1558 |
msgid "Current value"
|
1559 |
msgstr "Trenutna vrednost"
|
1560 |
|
1574 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1575 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1576 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1577 |
+
#: includes/functions.php:2874 includes/functions.php:2884
|
1578 |
+
#: includes/functions.php:2903 includes/functions.php:2913
|
1579 |
+
#: includes/functions.php:2959 includes/functions.php:2968
|
1580 |
+
#: includes/functions.php:2986 includes/functions.php:2995 settings.php:2076
|
1581 |
msgid "Max"
|
1582 |
msgstr "Največ"
|
1583 |
|
1584 |
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1585 |
+
#: includes/functions.php:2875
|
1586 |
msgid ""
|
1587 |
"Maximum number of impressions for this block. Empty means no general "
|
1588 |
"impression limit."
|
1598 |
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1599 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1600 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1601 |
+
#: includes/functions.php:2877 includes/functions.php:2887
|
1602 |
+
#: includes/functions.php:2962 includes/functions.php:2971
|
1603 |
msgid "impression"
|
1604 |
msgid_plural "impressions"
|
1605 |
msgstr[0] "prikaz"
|
1608 |
msgstr[3] "prikazov"
|
1609 |
|
1610 |
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1611 |
+
#: includes/functions.php:2885
|
1612 |
msgid ""
|
1613 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1614 |
msgstr ""
|
1623 |
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1624 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1625 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1626 |
+
#: includes/functions.php:2891 includes/functions.php:2920
|
1627 |
+
#: includes/functions.php:2975 includes/functions.php:3002
|
1628 |
msgid "per"
|
1629 |
msgstr "na"
|
1630 |
|
1631 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1632 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1633 |
+
#: includes/functions.php:2892 includes/functions.php:2921
|
1634 |
msgid "Time period in days. Empty means no time limit."
|
1635 |
msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
1636 |
|
1645 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1646 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1647 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1648 |
+
#: includes/functions.php:2894 includes/functions.php:2923
|
1649 |
+
#: includes/functions.php:2978 includes/functions.php:3005
|
1650 |
+
#: includes/functions.php:3111 includes/functions.php:3471 strings.php:218
|
1651 |
#: strings.php:219 strings.php:220 strings.php:221 strings.php:222
|
1652 |
#: strings.php:223
|
1653 |
msgid "day"
|
1658 |
msgstr[3] "dni"
|
1659 |
|
1660 |
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1661 |
+
#: includes/functions.php:2904
|
1662 |
msgid ""
|
1663 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1664 |
msgstr ""
|
1674 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1675 |
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1676 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1677 |
+
#: includes/functions.php:2906 includes/functions.php:2916
|
1678 |
+
#: includes/functions.php:2989 includes/functions.php:2998
|
1679 |
+
#: includes/functions.php:5453
|
1680 |
msgid "click"
|
1681 |
msgid_plural "clicks"
|
1682 |
msgstr[0] "klik"
|
1685 |
msgstr[3] "klikov"
|
1686 |
|
1687 |
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1688 |
+
#: includes/functions.php:2914
|
1689 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1690 |
msgstr ""
|
1691 |
"Največje število klikov na časovno enoto. Prazno pomeni brez časovnih "
|
1692 |
"omejitev."
|
1693 |
|
1694 |
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1695 |
+
#: includes/functions.php:2939
|
1696 |
msgid "Individual visitor limits"
|
1697 |
msgstr "Omejitve posameznih obiskovalcev"
|
1698 |
|
1699 |
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1700 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1701 |
+
#: includes/functions.php:2943 includes/functions.php:2945
|
1702 |
msgid ""
|
1703 |
"When specified number of clicks on this block for a visitor will be reached "
|
1704 |
"in the specified time period, all blocks that have click fraud protection "
|
1711 |
"pred goljufijo s kliki."
|
1712 |
|
1713 |
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1714 |
+
#: includes/functions.php:2945
|
1715 |
msgid "Trigger click fraud protection"
|
1716 |
msgstr "Sproži zaščito pred goljufijo s kliki"
|
1717 |
|
1718 |
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1719 |
+
#: includes/functions.php:2960
|
1720 |
msgid ""
|
1721 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1722 |
"impression limit."
|
1725 |
"pomeni brez omejitev prikazov."
|
1726 |
|
1727 |
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1728 |
+
#: includes/functions.php:2969
|
1729 |
msgid ""
|
1730 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1731 |
"no impression limit per time period for visitors."
|
1735 |
|
1736 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1737 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1738 |
+
#: includes/functions.php:2976 includes/functions.php:3003
|
1739 |
msgid ""
|
1740 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1741 |
"periods. Empty means no time limit."
|
1744 |
"krajša obdobja. Prazno pomeni brez časovne omejitve."
|
1745 |
|
1746 |
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1747 |
+
#: includes/functions.php:2987
|
1748 |
msgid ""
|
1749 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1750 |
"click limit."
|
1753 |
"brez omejitev klikov."
|
1754 |
|
1755 |
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1756 |
+
#: includes/functions.php:2996
|
1757 |
msgid ""
|
1758 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1759 |
"click limit per time period for visitors."
|
1762 |
"pomeni brez omejitev klikov na časovno enoto za obiskovalce."
|
1763 |
|
1764 |
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1765 |
+
#: includes/functions.php:3022
|
1766 |
msgid "When ad blocking is detected"
|
1767 |
msgstr "Ko je blokiranje oglasov zaznano"
|
1768 |
|
1769 |
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1770 |
+
#: includes/functions.php:3031
|
1771 |
msgid "replacement"
|
1772 |
msgstr "nadomestek"
|
1773 |
|
1774 |
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1775 |
+
#: includes/functions.php:3032
|
1776 |
msgid "Block to be shown when ad blocking is detected"
|
1777 |
msgstr "Blok, ki naj bo prikazan, ko je zaznano blokiranje oglasov"
|
1778 |
|
1779 |
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1780 |
+
#: includes/functions.php:3033
|
1781 |
msgctxt "replacement"
|
1782 |
msgid "None"
|
1783 |
msgstr "Noben"
|
1784 |
|
1785 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1786 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1787 |
+
#: includes/functions.php:3050 includes/functions.php:6511
|
1788 |
msgid "Close button"
|
1789 |
msgstr "Gumb Zapri"
|
1790 |
|
1791 |
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1792 |
+
#: includes/functions.php:3102
|
1793 |
msgid "Auto close after"
|
1794 |
msgstr "Ssamodejno zapri po"
|
1795 |
|
1796 |
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1797 |
+
#: includes/functions.php:3103
|
1798 |
msgid ""
|
1799 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1800 |
"disable auto closing."
|
1804 |
|
1805 |
#. Translators: Don't show for x days
|
1806 |
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1807 |
+
#: includes/functions.php:3108
|
1808 |
msgid "Don't show for"
|
1809 |
msgstr "Ne prikaži"
|
1810 |
|
1811 |
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1812 |
+
#: includes/functions.php:3109
|
1813 |
msgid ""
|
1814 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1815 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1821 |
|
1822 |
#. Translators: Delay showing for x pageviews
|
1823 |
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1824 |
+
#: includes/functions.php:3129
|
1825 |
msgid "Delay showing for"
|
1826 |
msgstr "Zakasni prikaz za"
|
1827 |
|
1828 |
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1829 |
+
#: includes/functions.php:3130
|
1830 |
msgid ""
|
1831 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1832 |
"empty to insert the code for the first pageview."
|
1838 |
#. Translators: Show every x pageviews
|
1839 |
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1840 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1841 |
+
#: includes/functions.php:3132 includes/functions.php:3139
|
1842 |
msgid "pageview"
|
1843 |
msgid_plural "pageviews"
|
1844 |
msgstr[0] "ogled strani"
|
1848 |
|
1849 |
#. Translators: Show every x pageviews
|
1850 |
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1851 |
+
#: includes/functions.php:3136
|
1852 |
msgid "Show every"
|
1853 |
msgid_plural "Show every"
|
1854 |
msgstr[0] "Prikaži vsak"
|
1857 |
msgstr[3] "Prikaži vsakih"
|
1858 |
|
1859 |
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1860 |
+
#: includes/functions.php:3137
|
1861 |
msgid ""
|
1862 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1863 |
"for every pageview."
|
1866 |
"vstavljanje kode pri vsakem ogledu strani."
|
1867 |
|
1868 |
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1869 |
+
#: includes/functions.php:3156
|
1870 |
msgid "Lazy loading"
|
1871 |
msgstr "Leno nalaganje"
|
1872 |
|
1873 |
#. Translators: %s MaxMind
|
1874 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1875 |
+
#: includes/functions.php:3230
|
1876 |
msgid "This product includes GeoLite2 data created by %s"
|
1877 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1878 |
|
1879 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1880 |
+
#: includes/functions.php:3243
|
1881 |
msgid "IP geolocation database"
|
1882 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1883 |
|
1884 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1885 |
+
#: includes/functions.php:3246
|
1886 |
msgid "Select IP geolocation database."
|
1887 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1888 |
|
1889 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1890 |
+
#: includes/functions.php:3257
|
1891 |
msgid "Automatic database updates"
|
1892 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1893 |
|
1894 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1895 |
+
#: includes/functions.php:3260
|
1896 |
msgid ""
|
1897 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1898 |
"MaxMind"
|
1901 |
"podatkovno bazo MaxMind"
|
1902 |
|
1903 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1904 |
+
#: includes/functions.php:3277
|
1905 |
msgid "Database"
|
1906 |
msgstr "Podatkovna baza"
|
1907 |
|
1908 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1909 |
+
#: includes/functions.php:3280
|
1910 |
msgid ""
|
1911 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1912 |
"file"
|
1916 |
|
1917 |
#. translators: %d: group number
|
1918 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1919 |
+
#: includes/functions.php:3298
|
1920 |
msgid "Group %d"
|
1921 |
msgstr "Skupina %d"
|
1922 |
|
1923 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1924 |
+
#: includes/functions.php:3304
|
1925 |
msgid "countries"
|
1926 |
msgstr "države"
|
1927 |
|
1928 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1929 |
+
#: includes/functions.php:3349
|
1930 |
msgid ""
|
1931 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1932 |
"each block you want to track."
|
1935 |
"vsak blok, ki bi ga radi sledili."
|
1936 |
|
1937 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
|
|
1938 |
msgid "Generate report"
|
1939 |
msgstr "Generiraj poročilo"
|
1940 |
|
1941 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1942 |
+
#: includes/functions.php:3368
|
1943 |
msgid "Impression and Click Tracking"
|
1944 |
msgstr "Sledenje Prikazov in Klikov"
|
1945 |
|
1946 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1947 |
+
#: includes/functions.php:3369 settings.php:2773
|
1948 |
msgctxt "ad blocking detection"
|
1949 |
msgid "NOT ENABLED"
|
1950 |
msgstr "NI OMOGOČENO"
|
1951 |
|
1952 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1953 |
+
#: includes/functions.php:3385
|
1954 |
msgid "Internal"
|
1955 |
msgstr "Notranje"
|
1956 |
|
1957 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1958 |
+
#: includes/functions.php:3389
|
1959 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1960 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1961 |
|
1962 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1963 |
+
#: includes/functions.php:3394
|
1964 |
msgid "External"
|
1965 |
msgstr "Zunanje"
|
1966 |
|
1967 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1968 |
+
#: includes/functions.php:3398
|
1969 |
msgid ""
|
1970 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1971 |
"code installed)"
|
1974 |
"kodo za sledenje)"
|
1975 |
|
1976 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1977 |
+
#: includes/functions.php:3403
|
1978 |
msgid "Track Pageviews"
|
1979 |
msgstr "Sledi Ogledom Strani"
|
1980 |
|
1981 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1982 |
+
#: includes/functions.php:3409
|
1983 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1984 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1985 |
|
1986 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1987 |
+
#: includes/functions.php:3419
|
1988 |
msgid "Track for Logged in Users"
|
1989 |
msgstr "Sledi za Prijavljene Upor."
|
1990 |
|
1991 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1992 |
+
#: includes/functions.php:3425
|
1993 |
msgid "Track impressions and clicks from logged in users"
|
1994 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1995 |
|
1996 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1997 |
+
#: includes/functions.php:3435
|
1998 |
msgid "Click Detection"
|
1999 |
msgstr "Zaznavanje klikov"
|
2000 |
|
2001 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
2002 |
+
#: includes/functions.php:3441
|
2003 |
msgid ""
|
2004 |
"Standard method detects clicks only on banners with links, Advanced method "
|
2005 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
2008 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
2009 |
|
2010 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
2011 |
+
#: includes/functions.php:3460
|
2012 |
msgid "Click fraud protection"
|
2013 |
msgstr "Zaščita pred goljufijo s kliki"
|
2014 |
|
2015 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
2016 |
+
#: includes/functions.php:3464
|
2017 |
msgid "Globally enable click fraud protection for selected blocks."
|
2018 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
2019 |
|
2020 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
2021 |
+
#: includes/functions.php:3470
|
2022 |
msgid "Protection time"
|
2023 |
msgstr "Čas zaščite"
|
2024 |
|
2025 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
2026 |
+
#: includes/functions.php:3471
|
2027 |
msgid ""
|
2028 |
"Time period in days in which blocks with enabled click fraud protection will "
|
2029 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
2033 |
"za krajša obdobja."
|
2034 |
|
2035 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
2036 |
+
#: includes/functions.php:3490
|
2037 |
msgid "Report header image"
|
2038 |
msgstr "Slika v glavi poročila"
|
2039 |
|
2040 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
2041 |
+
#: includes/functions.php:3493
|
2042 |
msgid ""
|
2043 |
"Image or logo to be displayed in the header of the statistins report. "
|
2044 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
2049 |
"ponastavitev na privzeto sliko."
|
2050 |
|
2051 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
2052 |
+
#: includes/functions.php:3494 strings.php:252
|
2053 |
msgid "Select or upload header image"
|
2054 |
msgstr "Izberi ali naloži sliko glave"
|
2055 |
|
2056 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
2057 |
+
#: includes/functions.php:3499
|
2058 |
msgid "Report header title"
|
2059 |
msgstr "Naslov v glavi poročila"
|
2060 |
|
2061 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
2062 |
+
#: includes/functions.php:3502
|
2063 |
msgid ""
|
2064 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2065 |
"code, clear to reset to default text."
|
2068 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2069 |
|
2070 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
2071 |
+
#: includes/functions.php:3507
|
2072 |
msgid "Report header description"
|
2073 |
msgstr "Opis v glavi poročila"
|
2074 |
|
2075 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
2076 |
+
#: includes/functions.php:3510
|
2077 |
msgid ""
|
2078 |
"Description to be displayed in the header of the statistics report. Text or "
|
2079 |
"HTML code, clear to reset to default text."
|
2082 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2083 |
|
2084 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
2085 |
+
#: includes/functions.php:3515
|
2086 |
msgid "Report footer"
|
2087 |
msgstr "Noga poročila"
|
2088 |
|
2089 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
2090 |
+
#: includes/functions.php:3518
|
2091 |
msgid ""
|
2092 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2093 |
"to default text."
|
2096 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
2097 |
|
2098 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
2099 |
+
#: includes/functions.php:3523
|
2100 |
msgid "Public report key"
|
2101 |
msgstr "Ključ za javno poročilo"
|
2102 |
|
2103 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
2104 |
+
#: includes/functions.php:3526
|
2105 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2106 |
msgstr ""
|
2107 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
2108 |
"privzeto vrednost."
|
2109 |
|
2110 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
2111 |
+
#: includes/functions.php:3589
|
2112 |
msgid "Are you sure you want to clear all exceptions for block"
|
2113 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2114 |
|
2115 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2116 |
+
#: includes/functions.php:3590
|
2117 |
msgid "Clear all exceptions for block"
|
2118 |
msgstr "Pobriši vse izjeme za blok"
|
2119 |
|
2120 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2121 |
+
#: includes/functions.php:3597
|
2122 |
msgid "Are you sure you want to clear all exceptions?"
|
2123 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
2124 |
|
2125 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2126 |
+
#: includes/functions.php:3597
|
2127 |
msgid "Clear all exceptions for all blocks"
|
2128 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2129 |
|
2130 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2131 |
+
#: includes/functions.php:3602 settings.php:3855 settings.php:4340
|
2132 |
msgid "Type"
|
2133 |
msgstr "Vrsta"
|
2134 |
|
2135 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
2136 |
+
#: includes/functions.php:3620
|
2137 |
msgid "View"
|
2138 |
msgstr "Poglej"
|
2139 |
|
2140 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
2141 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
2142 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2143 |
+
#: includes/functions.php:3621 includes/functions.php:3628
|
2144 |
+
#: includes/functions.php:3632 includes/placeholders.php:350
|
2145 |
+
#: includes/preview.php:2692 settings.php:1354 settings.php:3612
|
2146 |
msgid "Edit"
|
2147 |
msgstr "Uredi"
|
2148 |
|
2149 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2150 |
+
#: includes/functions.php:3651
|
2151 |
msgid "Are you sure you want to clear all exceptions for"
|
2152 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
2153 |
|
2154 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2155 |
+
#: includes/functions.php:3652
|
2156 |
msgid "Clear all exceptions for"
|
2157 |
msgstr "Pobriši vse izjeme za"
|
2158 |
|
2159 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2160 |
+
#: includes/functions.php:3665
|
2161 |
msgid "No exceptions"
|
2162 |
msgstr "Brez izjem"
|
2163 |
|
2164 |
#. translators: %s: Ad Inserter Pro
|
2165 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2166 |
+
#: includes/functions.php:3676
|
2167 |
msgid "%s options for network blogs"
|
2168 |
msgstr "%s izbire za omrežne bloge"
|
2169 |
|
2170 |
#. translators: %s: Ad Inserter Pro
|
2171 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2172 |
+
#: includes/functions.php:3681
|
2173 |
msgid "Enable %s widgets for sub-sites"
|
2174 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
2175 |
|
2176 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2177 |
+
#: includes/functions.php:3681
|
2178 |
msgid "Widgets"
|
2179 |
msgstr "Gradniki"
|
2180 |
|
2181 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2182 |
+
#: includes/functions.php:3686
|
2183 |
msgid "Enable PHP code processing for sub-sites"
|
2184 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
2185 |
|
2186 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2187 |
+
#: includes/functions.php:3686
|
2188 |
msgid "PHP Processing"
|
2189 |
msgstr "PHP Procesiranje"
|
2190 |
|
2191 |
#. translators: %s: Ad Inserter Pro
|
2192 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2193 |
+
#: includes/functions.php:3691
|
2194 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2195 |
msgstr ""
|
2196 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
2197 |
|
2198 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2199 |
+
#: includes/functions.php:3691
|
2200 |
msgid "Post/Page exceptions"
|
2201 |
msgstr "Izjeme prispevkov/strani"
|
2202 |
|
2203 |
#. translators: %s: Ad Inserter Pro
|
2204 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2205 |
+
#: includes/functions.php:3696
|
2206 |
msgid "Enable %s settings page for sub-sites"
|
2207 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2208 |
|
2209 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2210 |
+
#: includes/functions.php:3696
|
2211 |
msgid "Settings page"
|
2212 |
msgstr "Stran z nastavitvami"
|
2213 |
|
2214 |
#. translators: %s: Ad Inserter Pro
|
2215 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2216 |
+
#: includes/functions.php:3701
|
2217 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2218 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2219 |
|
2220 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2221 |
+
#: includes/functions.php:3701
|
2222 |
msgid "Main site settings used for all blogs"
|
2223 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2224 |
|
2225 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2226 |
+
#: includes/functions.php:3717 settings.php:2772
|
2227 |
msgid "Ad Blocking Detection"
|
2228 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2229 |
|
2230 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2231 |
+
#: includes/functions.php:3723
|
2232 |
msgid ""
|
2233 |
"Standard method is reliable but should be used only if Advanced method does "
|
2234 |
"not work. Advanced method recreates files used for detection with random "
|
2243 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2244 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2245 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2246 |
+
#: includes/functions.php:4546 includes/functions.php:4663
|
2247 |
+
#: includes/functions.php:4687
|
2248 |
msgid "AD BLOCKING"
|
2249 |
msgstr "BLOKIRANJE OGLASOV"
|
2250 |
|
2252 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2253 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2254 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2255 |
+
#: includes/functions.php:4547 includes/functions.php:4593
|
2256 |
+
#: includes/functions.php:4657 includes/functions.php:4688
|
2257 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2258 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
2259 |
|
2260 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2261 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2262 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2263 |
+
#: includes/functions.php:4550 includes/functions.php:4656
|
2264 |
+
#: includes/functions.php:4694
|
2265 |
msgid "NO AD BLOCKING"
|
2266 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2267 |
|
2268 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2269 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2270 |
+
#: includes/functions.php:4592 includes/functions.php:4599
|
2271 |
msgid "AD BLOCKING REPLACEMENT"
|
2272 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2273 |
|
2274 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2275 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2276 |
+
#: includes/functions.php:4955 includes/functions.php:5166
|
2277 |
msgid "Pageviews"
|
2278 |
msgstr "Ogledi strani"
|
2279 |
|
2280 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2281 |
+
#: includes/functions.php:5101
|
2282 |
msgctxt "Version"
|
2283 |
msgid "Unknown"
|
2284 |
msgstr "Neznana"
|
2285 |
|
2286 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2287 |
+
#: includes/functions.php:5101
|
2288 |
msgctxt "Times"
|
2289 |
msgid "DISPLAYED"
|
2290 |
msgstr "PRIKAZANO"
|
2291 |
|
2292 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2293 |
+
#: includes/functions.php:5101
|
2294 |
msgid "No version"
|
2295 |
msgstr "Brez različice"
|
2296 |
|
2297 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2298 |
+
#: includes/functions.php:5102
|
2299 |
msgctxt "Times"
|
2300 |
msgid "BLOCKED"
|
2301 |
msgstr "BLOKIRANO"
|
2302 |
|
2303 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2304 |
+
#: includes/functions.php:5166
|
2305 |
msgid "Impressions"
|
2306 |
msgstr "Prikazi"
|
2307 |
|
2308 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2309 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2310 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2311 |
+
#: includes/functions.php:5167 includes/functions.php:5168
|
2312 |
+
#: includes/functions.php:5361
|
2313 |
msgid "Clicks"
|
2314 |
msgstr "Kliki"
|
2315 |
|
2316 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2317 |
+
#: includes/functions.php:5168
|
2318 |
msgid "events"
|
2319 |
msgstr "dogodki"
|
2320 |
|
2321 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2322 |
+
#: includes/functions.php:5169
|
2323 |
msgid "Ad Blocking Share"
|
2324 |
msgstr "Delež blokiranja oglasov"
|
2325 |
|
2326 |
#. translators: CTR as Click Through Rate
|
2327 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2328 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2329 |
+
#: includes/functions.php:5169 includes/functions.php:5367
|
2330 |
msgid "CTR"
|
2331 |
msgstr "CTR"
|
2332 |
|
2333 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2334 |
+
#: includes/functions.php:5449
|
2335 |
msgid "pageviews"
|
2336 |
msgid_plural "pageviews"
|
2337 |
msgstr[0] "ogled strani"
|
2340 |
msgstr[3] "ogledov strani"
|
2341 |
|
2342 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2343 |
+
#: includes/functions.php:5449
|
2344 |
msgid "impressions"
|
2345 |
msgid_plural "impressions"
|
2346 |
msgstr[0] "prikaz"
|
2349 |
msgstr[3] "prikazov"
|
2350 |
|
2351 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2352 |
+
#: includes/functions.php:5453
|
2353 |
msgid "event"
|
2354 |
msgid_plural "events"
|
2355 |
msgstr[0] "dogodek"
|
2358 |
msgstr[3] "dogodkov"
|
2359 |
|
2360 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2361 |
+
#: includes/functions.php:5548
|
2362 |
msgctxt "Pageviews / Impressions"
|
2363 |
msgid "Average"
|
2364 |
msgstr "Povprečni"
|
2365 |
|
2366 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2367 |
+
#: includes/functions.php:5569
|
2368 |
msgctxt "Ad Blocking / Clicks"
|
2369 |
msgid "Average"
|
2370 |
msgstr "Povprečno"
|
2371 |
|
2372 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2373 |
+
#: includes/functions.php:5593
|
2374 |
msgctxt "Ad Blocking Share / CTR"
|
2375 |
msgid "Average"
|
2376 |
msgstr "Povprečni"
|
2379 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2380 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2381 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2382 |
+
#: includes/functions.php:5777 includes/functions.php:5869
|
2383 |
+
#: includes/functions.php:6212 strings.php:203
|
2384 |
msgid "%s Report"
|
2385 |
msgstr "%s Poročilo"
|
2386 |
|
2387 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2388 |
+
#: includes/functions.php:6118
|
2389 |
msgid "for last month"
|
2390 |
msgstr "za zadnji mesec"
|
2391 |
|
2392 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2393 |
+
#: includes/functions.php:6123
|
2394 |
msgid "for this month"
|
2395 |
msgstr "za ta mesec"
|
2396 |
|
2397 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2398 |
+
#: includes/functions.php:6128
|
2399 |
msgid "for this year"
|
2400 |
msgstr "za to leto"
|
2401 |
|
2402 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2403 |
+
#: includes/functions.php:6133
|
2404 |
msgid "for the last 15 days"
|
2405 |
msgstr "za zadnjih 15 dni"
|
2406 |
|
2407 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2408 |
+
#: includes/functions.php:6138
|
2409 |
msgid "for the last 30 days"
|
2410 |
msgstr "za zadnjih 30 dni"
|
2411 |
|
2412 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2413 |
+
#: includes/functions.php:6143
|
2414 |
msgid "for the last 90 days"
|
2415 |
msgstr "za zadnjih 90 dni"
|
2416 |
|
2417 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2418 |
+
#: includes/functions.php:6148
|
2419 |
msgid "for the last 180 days"
|
2420 |
msgstr "za zadnjih 180 dni"
|
2421 |
|
2422 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2423 |
+
#: includes/functions.php:6153
|
2424 |
msgid "for the last 365 days"
|
2425 |
msgstr "za zadnjih 365 dni"
|
2426 |
|
2427 |
+
#: includes/functions.php:509 includes/functions.php:3356
|
2428 |
+
msgid "Generate CSV report"
|
2429 |
+
msgstr "Generiraj CSV poročilo"
|
2430 |
+
|
2431 |
#. translators: %s: Ad Inserter Pro
|
2432 |
+
#: includes/functions.php:574
|
2433 |
msgid "Invalid %s version. Continue?"
|
2434 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2435 |
|
2436 |
+
#: includes/functions.php:766 includes/preview.php:2635
|
2437 |
msgid "Background"
|
2438 |
msgstr "Ozadje"
|
2439 |
|
2440 |
#. translators: %s HTML body tag
|
2441 |
+
#: includes/functions.php:773
|
2442 |
msgid "Set %s background"
|
2443 |
msgstr "Nastavi ozadje za %s"
|
2444 |
|
2445 |
+
#: includes/functions.php:786
|
2446 |
msgid "Image to be used for the background"
|
2447 |
msgstr "Slika, ki bo uporabljena za ozadje"
|
2448 |
|
2449 |
+
#: includes/functions.php:791
|
2450 |
msgid "Color"
|
2451 |
msgstr "Barva"
|
2452 |
|
2453 |
+
#: includes/functions.php:792 includes/preview.php:2453
|
2454 |
msgid "Color to be used for the background"
|
2455 |
msgstr "Barva, ki bo uporabljena za ozadje"
|
2456 |
|
2457 |
+
#: includes/functions.php:795 includes/preview.php:2458
|
2458 |
msgid "Image size"
|
2459 |
msgstr "Velikost slike"
|
2460 |
|
2461 |
+
#: includes/functions.php:805
|
2462 |
msgid "Repeat"
|
2463 |
msgstr "Ponavljanje"
|
2464 |
|
2465 |
+
#: includes/functions.php:818
|
2466 |
msgid "Select image"
|
2467 |
msgstr "Izberi sliko"
|
2468 |
|
2469 |
+
#: includes/functions.php:1036 includes/functions.php:1072 settings.php:1719
|
2470 |
+
#: settings.php:1742 settings.php:1765 settings.php:1788 settings.php:1811
|
2471 |
+
#: settings.php:1834 settings.php:1856 settings.php:1878
|
2472 |
msgid "Click to select black or white list"
|
2473 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2474 |
|
2475 |
#. translators: %s: Ad Inserter Pro
|
2476 |
+
#: includes/functions.php:1600
|
2477 |
msgid "Invalid %s version."
|
2478 |
msgstr "Neveljavna izdaja %s."
|
2479 |
|
2480 |
+
#: includes/functions.php:1601
|
2481 |
msgid "Check license"
|
2482 |
msgstr "Preverite licenco"
|
2483 |
|
2484 |
+
#: includes/functions.php:1613
|
2485 |
msgid "License"
|
2486 |
msgstr "Licenca"
|
2487 |
|
2488 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2489 |
+
#: includes/functions.php:1936
|
2490 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2491 |
msgstr "%1$s Opozorilo: %2$s Napačna izdaja %3$s. %4$s Preverite licenco %5$s"
|
2492 |
|
2493 |
#. Translators: %s: HTML tags
|
2494 |
+
#: includes/functions.php:1984
|
2495 |
msgid ""
|
2496 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2497 |
"account %s and create license key."
|
2499 |
"Opozorilo: %s MaxMind licenčni ključ ni nastavljen. Prosimo, %s vpišite se "
|
2500 |
"za GeoLite2 račun %s in ustvarite licenčni ključ."
|
2501 |
|
2502 |
+
#: includes/functions.php:2682
|
2503 |
msgid "Start date"
|
2504 |
msgstr "Začetni datum"
|
2505 |
|
2506 |
+
#: includes/functions.php:2682
|
2507 |
msgid "Enter date in format yyyy-mm-dd"
|
2508 |
msgstr "Vnesite datum v formatu yyyy-mm-dd"
|
2509 |
|
2510 |
+
#: includes/functions.php:2683
|
2511 |
msgid "Start time"
|
2512 |
msgstr "Začetni čas"
|
2513 |
|
2514 |
+
#: includes/functions.php:2683
|
2515 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2516 |
msgstr "Vnesite čas v formatu hh:mm:ss, prazno pomeni 00:00:00"
|
2517 |
|
2518 |
+
#: includes/functions.php:2685
|
2519 |
msgid "End date"
|
2520 |
msgstr "Končni datum"
|
2521 |
|
2522 |
+
#: includes/functions.php:2686
|
2523 |
msgid "End time"
|
2524 |
msgstr "Končni čas"
|
2525 |
|
2526 |
+
#: includes/functions.php:2689
|
2527 |
msgid "Select wanted days in week"
|
2528 |
msgstr "Izberite želene dneve v tednu"
|
2529 |
|
2530 |
+
#: includes/functions.php:3021
|
2531 |
msgid "Ad blocking detection is disabled"
|
2532 |
msgstr "%s Zaznavanje blokiranja oglasov je onemogočeno %s"
|
2533 |
|
2534 |
+
#: includes/functions.php:3161
|
2535 |
+
msgid "Protected"
|
2536 |
+
msgstr "Zaščiten"
|
2537 |
+
|
2538 |
+
#: includes/functions.php:3164
|
2539 |
msgid "Manual loading"
|
2540 |
msgstr "Ročno nalaganje"
|
2541 |
|
2542 |
#. Translators: %s HTML tags
|
2543 |
+
#: includes/functions.php:3232
|
2544 |
msgid "Create and manage %s MaxMind license key %s"
|
2545 |
msgstr "Ustvarite in upravljajte z %s MaxMind licenčnim ključem %s"
|
2546 |
|
2547 |
+
#: includes/functions.php:3268
|
2548 |
msgid "MaxMind license key"
|
2549 |
msgstr "MaxMind licenčni ključ"
|
2550 |
|
2551 |
+
#: includes/functions.php:3271
|
2552 |
msgid "Enter license key obtained from MaxMind"
|
2553 |
msgstr "Vnesite licenčni ključ, ki ste ga dobili od MaxMind"
|
2554 |
|
2555 |
+
#: includes/functions.php:3541
|
2556 |
msgid "Event category"
|
2557 |
msgstr "Kategorija dogodka"
|
2558 |
|
2559 |
+
#: includes/functions.php:3544
|
2560 |
msgid ""
|
2561 |
"Category name used for external tracking events. You can use tags to get the "
|
2562 |
"event, the number or the name of the block that caused the event."
|
2564 |
"Ime kategorije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2565 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2566 |
|
2567 |
+
#: includes/functions.php:3549
|
2568 |
msgid "Event action"
|
2569 |
msgstr "Akcija dogodka"
|
2570 |
|
2571 |
+
#: includes/functions.php:3552
|
2572 |
msgid ""
|
2573 |
"Action name used for external tracking events. You can use tags to get the "
|
2574 |
"event, the number or the name of the block that caused the event."
|
2576 |
"Ime akcije uporabljeno za dogodke za zunanje sledenje. Lahko uporabite "
|
2577 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2578 |
|
2579 |
+
#: includes/functions.php:3557
|
2580 |
msgid "Event label"
|
2581 |
msgstr "Oznaka dogodka"
|
2582 |
|
2583 |
+
#: includes/functions.php:3560
|
2584 |
msgid ""
|
2585 |
"Label name used for external tracking events. You can use tags to get the "
|
2586 |
"event, the number or the name of the block that caused the event."
|
2589 |
"oznake za dogodek, številko ali ime bloka, ki je povzročil dogodek."
|
2590 |
|
2591 |
#. translators: %s: Ad Inserter Pro
|
2592 |
+
#: includes/functions.php:3706
|
2593 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2594 |
msgstr ""
|
2595 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2596 |
"Spletišča"
|
2597 |
|
2598 |
#. translators: %s: Ad Inserter Pro
|
2599 |
+
#: includes/functions.php:3706
|
2600 |
msgid "Show link to %s on the Sites page"
|
2601 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2602 |
|
2603 |
+
#: includes/functions.php:5249
|
2604 |
+
msgid "Date"
|
2605 |
+
msgstr "Datum"
|
2606 |
+
|
2607 |
+
#: includes/functions.php:5723
|
2608 |
msgid "File %s missing."
|
2609 |
msgstr "Datoteka %s ni najdena."
|
2610 |
|
2611 |
+
#: includes/placeholders.php:17
|
|
|
|
|
|
|
|
|
2612 |
msgid "Custom"
|
2613 |
msgstr "Po meri"
|
2614 |
|
2615 |
+
#: includes/placeholders.php:100
|
2616 |
msgid "Placeholder Editor"
|
2617 |
msgstr "Urejevalnik Polnila"
|
2618 |
|
2619 |
+
#: includes/placeholders.php:349
|
2620 |
msgid "Select placeholder"
|
2621 |
msgstr "Izberi polnilo"
|
2622 |
|
2623 |
+
#: includes/placeholders.php:350
|
2624 |
msgid "Edit placeholder size, colors and text"
|
2625 |
msgstr "Uredi velikost, barve in besedilo polnila"
|
2626 |
|
2627 |
+
#: includes/placeholders.php:351
|
2628 |
msgid "Close placeholder editor"
|
2629 |
msgstr "Zapri urejevalnik polnila"
|
2630 |
|
2631 |
+
#: includes/placeholders.php:355
|
2632 |
msgid "Placeholder"
|
2633 |
msgstr "Polnilo"
|
2634 |
|
2635 |
+
#: includes/placeholders.php:360 settings.php:963 settings.php:4341
|
2636 |
msgid "Size"
|
2637 |
msgstr "Velikost"
|
2638 |
|
2639 |
+
#: includes/placeholders.php:376 includes/preview.php:2450
|
2640 |
msgid "Background color"
|
2641 |
msgstr "Barva ozadja"
|
2642 |
|
2643 |
+
#: includes/placeholders.php:395
|
2644 |
msgid "Text"
|
2645 |
msgstr "Besedilo"
|
2646 |
|
2647 |
+
#: includes/placeholders.php:400
|
2648 |
msgid "Text color"
|
2649 |
msgstr "Barva besedila"
|
2650 |
|
2651 |
+
#: includes/placeholders.php:409
|
2652 |
msgid ""
|
2653 |
"Here you can create a universal placeholder image that can be used in place "
|
2654 |
"of ads when they are not available yet.\n"
|
2660 |
"Slikovna polnila, ki jih ustvarite tukaj, se bodo obnašala kot katerakoli "
|
2661 |
"slika. Lahko jih tudi shranite na lokalni računalnik ali strežnik."
|
2662 |
|
2663 |
+
#: includes/placeholders.php:414
|
2664 |
msgid ""
|
2665 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2666 |
"300x600 or define custom size.\n"
|
2678 |
"Lahko naredite tudi prazen pravokotnik z enotno barvo tako, da pobrišete "
|
2679 |
"besedilo polnila."
|
2680 |
|
2681 |
+
#: includes/placeholders.php:418
|
2682 |
msgid ""
|
2683 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2684 |
"window shows only the code for the currently selected option.\n"
|
2690 |
"Zato bo generator kode v tem primeru uvozil ali generiral kodo za trenutno "
|
2691 |
"izbrano različico."
|
2692 |
|
2693 |
+
#: includes/placeholders.php:421
|
2694 |
msgid ""
|
2695 |
"Code generator for banners and AdSense generates the code only when you "
|
2696 |
"click on the button Generate code.\n"
|
2705 |
"različicami, morate tudi (po potrebi) uvoziti in generirati kodo za vsako "
|
2706 |
"različico rotacije."
|
2707 |
|
2708 |
+
#: includes/placeholders.php:424
|
2709 |
msgid ""
|
2710 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2711 |
"You can select banner image (or placeholder), optionally define link (web "
|
2717 |
"(naslov spletne strani, ki se bo odprla s klikom na pasico) in izberete, ali "
|
2718 |
"naj se povezava odpre v novem zavihku."
|
2719 |
|
2720 |
+
#: includes/preview-adb.php:4
|
2721 |
msgid "Add dummy paragraph"
|
2722 |
msgstr "Dodaj testni odstavek"
|
2723 |
|
2724 |
+
#: includes/preview-adb.php:5
|
2725 |
msgid "Remove dummy paragraph"
|
2726 |
msgstr "Odstrani testni odstavek"
|
2727 |
|
2728 |
+
#: includes/preview-adb.php:6 includes/preview.php:2310
|
2729 |
msgid "Use current settings"
|
2730 |
msgstr "Uporabi trenutne nastavitve"
|
2731 |
|
2732 |
+
#: includes/preview-adb.php:6
|
2733 |
msgctxt "Button"
|
2734 |
msgid "Use"
|
2735 |
msgstr "Uporabi"
|
2736 |
|
2737 |
+
#: includes/preview-adb.php:7
|
2738 |
msgid "Reset to the saved settings"
|
2739 |
msgstr "Ponastavi na shranjene nastavitve"
|
2740 |
|
2741 |
+
#: includes/preview-adb.php:7
|
2742 |
msgctxt "Button"
|
2743 |
msgid "Reset"
|
2744 |
msgstr "Ponastavi"
|
2745 |
|
2746 |
+
#: includes/preview-adb.php:8
|
2747 |
msgid "Reset to the default settings"
|
2748 |
msgstr "Ponastavi na privzete nastavitve"
|
2749 |
|
2750 |
+
#: includes/preview-adb.php:8
|
2751 |
msgctxt "Button"
|
2752 |
msgid "Default"
|
2753 |
msgstr "Privzeto"
|
2754 |
|
2755 |
+
#: includes/preview-adb.php:9 includes/preview.php:2313
|
2756 |
msgid "Close preview window"
|
2757 |
msgstr "Zapri okno predogleda"
|
2758 |
|
2759 |
+
#: includes/preview-adb.php:9
|
2760 |
msgctxt "Button "
|
2761 |
msgid "Cancel"
|
2762 |
msgstr "Prekliči"
|
2763 |
|
2764 |
+
#: includes/preview-adb.php:57
|
2765 |
msgid "Ad Blocking Detected Message Preview"
|
2766 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2767 |
|
2768 |
+
#: includes/preview-adb.php:345 settings.php:2898
|
2769 |
msgid "Message CSS"
|
2770 |
msgstr "CSS sporočila"
|
2771 |
|
2772 |
+
#: includes/preview-adb.php:350 settings.php:2906
|
2773 |
msgid "Overlay CSS"
|
2774 |
msgstr "CSS prevleke"
|
2775 |
|
2776 |
+
#: includes/preview.php:246
|
2777 |
msgid "Sticky Code Preview"
|
2778 |
msgstr "Predogled Lepljive Kode"
|
2779 |
|
2780 |
+
#: includes/preview.php:246
|
2781 |
msgid "Code Preview"
|
2782 |
msgstr "Predogled Kode"
|
2783 |
|
2784 |
+
#: includes/preview.php:2308
|
2785 |
msgid "Highlight inserted code"
|
2786 |
msgstr "Označi vstavljeno kodo"
|
2787 |
|
2788 |
+
#: includes/preview.php:2308
|
2789 |
msgid "Highlight"
|
2790 |
msgstr "Označi"
|
2791 |
|
2792 |
+
#: includes/preview.php:2311
|
2793 |
msgid "Reset to block settings"
|
2794 |
msgstr "Ponastavi na nastavitve bloka"
|
2795 |
|
2796 |
+
#: includes/preview.php:2326
|
2797 |
msgid "AdSense ad unit"
|
2798 |
msgstr "Oglasna enota AdSense"
|
2799 |
|
2800 |
+
#: includes/preview.php:2395
|
2801 |
msgid "wrapping div"
|
2802 |
msgstr "div za ovijanje"
|
2803 |
|
2804 |
+
#: includes/preview.php:2400 includes/preview.php:2407
|
2805 |
msgid "background"
|
2806 |
msgstr "ozadje"
|
2807 |
|
2808 |
+
#: includes/preview.php:2434 includes/preview.php:2647 settings.php:1315
|
2809 |
msgid "Alignment"
|
2810 |
msgstr "Poravnava"
|
2811 |
|
2812 |
+
#: includes/preview.php:2471
|
2813 |
msgid "Repeat image"
|
2814 |
msgstr "Ponavljaj sliko"
|
2815 |
|
2816 |
+
#: includes/preview.php:2554
|
2817 |
msgid "Horizontal margin"
|
2818 |
msgstr "Vodoravni odmik"
|
2819 |
|
2820 |
+
#: includes/preview.php:2606
|
2821 |
msgid "Vertical margin"
|
2822 |
msgstr "Navpični odmik"
|
2823 |
|
2824 |
+
#: includes/preview.php:2630
|
2825 |
msgid "Animate"
|
2826 |
msgstr "Animiraj"
|
2827 |
|
2828 |
+
#: includes/preview.php:2701
|
2829 |
msgid ""
|
2830 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2831 |
"various block alignments, visually edit margin and padding values of the "
|
2840 |
"označi ozadje, margin območje div-a za ovijanje in območje kode, gumb "
|
2841 |
"Ponastavi pa vrne vse vrednosti na tiste od trenutnega bloka."
|
2842 |
|
2843 |
+
#: includes/preview.php:2704
|
2844 |
msgid ""
|
2845 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2846 |
"code with the alignment and style as it is set for this block. Highlight "
|
2850 |
"poravnavo in slogom kot je nastavljen za ta blok. Gump Označi označi ozadje, "
|
2851 |
"margin območje div-a za ovijanje in območje kode."
|
2852 |
|
2853 |
+
#: includes/preview.php:2706
|
2854 |
msgid ""
|
2855 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2856 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2862 |
"testnimi odstavki, zato je lahko prazen (brez oglasov). Kliknite na gumb "
|
2863 |
"Označi za označitev bloka."
|
2864 |
|
2865 |
+
#: includes/preview.php:2712
|
2866 |
msgid ""
|
2867 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2868 |
"display with different screen widths.\n"
|
2874 |
"Ko ste zadovoljni s poravnavo kliknite na gumb Uporabi in nastavitve se bodo "
|
2875 |
"prenesle v aktivni blok."
|
2876 |
|
2877 |
+
#: includes/preview.php:2714
|
2878 |
msgid ""
|
2879 |
"Please note that the code, block name, alignment and style are taken from "
|
2880 |
"the current block settings (may not be saved).\n"
|
2887 |
"margin in padding ne morete nastaviti. Seveda pa lahko uporabite lastno HTML "
|
2888 |
"kodo za blok."
|
2889 |
|
2890 |
+
#: includes/preview.php:2719 includes/preview.php:2733
|
2891 |
+
#: includes/preview.php:2743 includes/preview.php:2753
|
2892 |
+
#: includes/preview.php:2763
|
2893 |
msgid ""
|
2894 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2895 |
"code with it's settings is called a block.\n"
|
2913 |
"številka pomeni, da blok uporablja ročno vstavljanje, medtem ko vijolična "
|
2914 |
"številka pomeni, da blok uporablja samodejno in ročno vstavljanje."
|
2915 |
|
2916 |
+
#: includes/preview.php:2724 includes/preview.php:2738
|
2917 |
+
#: includes/preview.php:2748 includes/preview.php:2758
|
2918 |
+
#: includes/preview.php:2768
|
2919 |
msgid ""
|
2920 |
"Few very important things you need to know in order to insert code and "
|
2921 |
"display some ad:\n"
|
2938 |
"za posamezne izjeme. Uporabite privzeto prazno vrednost, razen, če "
|
2939 |
"uporabljate posamezne izjeme za prispevke/strani."
|
2940 |
|
2941 |
+
#: includes/preview.php:2730
|
2942 |
msgid ""
|
2943 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2944 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2954 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2955 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2956 |
|
2957 |
+
#: includes/version-check.php:14
|
2958 |
+
msgid "The latest PHP version: "
|
2959 |
+
msgstr "Zadnja različica PHP: "
|
2960 |
+
|
2961 |
+
#: includes/version-check.php:33
|
2962 |
+
msgid ""
|
2963 |
+
"Warning: Ad Inserter Pro plugin is outdated - it has not been tested with "
|
2964 |
+
"WordPress version"
|
2965 |
+
msgstr ""
|
2966 |
+
"Opozorilo: vtičnik Ad Inserter Pro je zastarel - ni bil preverjen z "
|
2967 |
+
"različico WordPres"
|
2968 |
+
|
2969 |
#: settings.php:160 settings.php:163
|
2970 |
msgid ""
|
2971 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2973 |
"Opozorilo: počiščene samo izjeme za %d prispevkov, %d prispevkov ima še "
|
2974 |
"vedno izjeme"
|
2975 |
|
2976 |
+
#: settings.php:202 settings.php:1204
|
2977 |
msgid ""
|
2978 |
"Settings for individual exceptions have been updated. Please check all "
|
2979 |
"blocks that have exceptions and and then save settings."
|
2985 |
msgid "Online documentation"
|
2986 |
msgstr "Spletna Dokumentacija"
|
2987 |
|
2988 |
+
#: settings.php:248 settings.php:798 settings.php:2281
|
2989 |
msgid "Show AdSense ad units"
|
2990 |
msgstr "Pokaži oglasne enote AdSense"
|
2991 |
|
2993 |
msgid "Edit ads.txt file"
|
2994 |
msgstr "Uredi datoteko ads.txt"
|
2995 |
|
2996 |
+
#: settings.php:260 settings.php:1147
|
2997 |
msgid "Check theme for available positions for automatic insertion"
|
2998 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2999 |
|
3141 |
msgid "General Settings"
|
3142 |
msgstr "Splošne Nastavitve"
|
3143 |
|
3144 |
+
#: settings.php:746 settings.php:2625 settings.php:2692 settings.php:2878
|
3145 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3146 |
msgstr ""
|
3147 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3148 |
|
3149 |
+
#: settings.php:753
|
3150 |
msgid "Toggle tools"
|
3151 |
msgstr "Preklopi orodja"
|
3152 |
|
3153 |
+
#: settings.php:761
|
3154 |
msgid "Process PHP code in block"
|
3155 |
msgstr "Procesiraj PHP kodo v bloku"
|
3156 |
|
3157 |
+
#: settings.php:768
|
3158 |
msgid "Disable insertion of this block"
|
3159 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3160 |
|
3161 |
+
#: settings.php:780
|
3162 |
msgid "Toggle code generator"
|
3163 |
msgstr "Preklopi generator kode"
|
3164 |
|
3165 |
+
#: settings.php:784
|
3166 |
msgid "Toggle rotation editor"
|
3167 |
msgstr "Preklopi urejevalnik rotacije"
|
3168 |
|
3169 |
+
#: settings.php:788
|
3170 |
msgid "Open visual HTML editor"
|
3171 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3172 |
|
3173 |
+
#: settings.php:807
|
3174 |
msgid "Clear block"
|
3175 |
msgstr "Počisti blok"
|
3176 |
|
3177 |
+
#: settings.php:812 settings.php:4212
|
3178 |
msgid "Copy block"
|
3179 |
msgstr "Kopiraj blok"
|
3180 |
|
3181 |
+
#: settings.php:816
|
3182 |
msgid "Paste name"
|
3183 |
msgstr "Prilepi ime"
|
3184 |
|
3185 |
+
#: settings.php:820
|
3186 |
msgid "Paste code"
|
3187 |
msgstr "Prilepi kodo"
|
3188 |
|
3189 |
+
#: settings.php:824
|
3190 |
msgid "Paste settings"
|
3191 |
msgstr "Prilepi nastavitve"
|
3192 |
|
3193 |
+
#: settings.php:828
|
3194 |
msgid "Paste block (name, code and settings)"
|
3195 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3196 |
|
3197 |
+
#: settings.php:847
|
3198 |
msgid "Rotation groups"
|
3199 |
msgstr "Skupine za rotacijo"
|
3200 |
|
3201 |
+
#: settings.php:851
|
3202 |
msgid "Remove option"
|
3203 |
msgstr "Odstrani različico"
|
3204 |
|
3205 |
+
#: settings.php:855
|
3206 |
msgid "Add option"
|
3207 |
msgstr "Dodaj različico"
|
3208 |
|
3209 |
+
#: settings.php:870
|
3210 |
msgid "Import code"
|
3211 |
msgstr "Uvozi kodo"
|
3212 |
|
3213 |
+
#: settings.php:874
|
3214 |
msgid "Generate code"
|
3215 |
msgstr "Generiraj kodo"
|
3216 |
|
3217 |
+
#: settings.php:879
|
3218 |
msgid "Banner"
|
3219 |
msgstr "Pasica"
|
3220 |
|
3221 |
+
#: settings.php:890
|
3222 |
msgid "Image"
|
3223 |
msgstr "Slika"
|
3224 |
|
3225 |
+
#: settings.php:898
|
3226 |
msgid "Link"
|
3227 |
msgstr "Povezava"
|
3228 |
|
3229 |
+
#: settings.php:909
|
3230 |
msgid "Open link in a new tab"
|
3231 |
msgstr "Odpri povezavo v novem zavihku"
|
3232 |
|
3233 |
+
#: settings.php:910
|
3234 |
msgid "Select Image"
|
3235 |
msgstr "Izberi Sliko"
|
3236 |
|
3237 |
+
#: settings.php:911
|
3238 |
msgid "Select Placeholder"
|
3239 |
msgstr "Izberi Polnilo"
|
3240 |
|
3241 |
+
#: settings.php:923
|
3242 |
msgid "Comment"
|
3243 |
msgstr "Komentar"
|
3244 |
|
3245 |
+
#: settings.php:932
|
3246 |
msgctxt "AdSense"
|
3247 |
msgid "Publisher ID"
|
3248 |
msgstr "ID založnika"
|
3249 |
|
3250 |
+
#: settings.php:941
|
3251 |
msgctxt "AdSense"
|
3252 |
msgid "Ad Slot ID"
|
3253 |
msgstr "ID mesta"
|
3254 |
|
3255 |
+
#: settings.php:950
|
3256 |
msgid "Ad Type"
|
3257 |
msgstr "Vrsta"
|
3258 |
|
3259 |
+
#: settings.php:975
|
3260 |
msgid "AMP Ad"
|
3261 |
msgstr "AMP Oglas"
|
3262 |
|
3263 |
+
#: settings.php:993
|
3264 |
msgid "Show ad units from your AdSense account"
|
3265 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3266 |
|
3267 |
+
#: settings.php:993
|
3268 |
msgid "AdSense ad units"
|
3269 |
msgstr "Oglasne enote AdSense"
|
3270 |
|
3271 |
+
#: settings.php:1010
|
3272 |
msgctxt "AdSense"
|
3273 |
msgid "Layout"
|
3274 |
msgstr "Postavitev"
|
3275 |
|
3276 |
+
#: settings.php:1019
|
3277 |
msgctxt "AdSense"
|
3278 |
msgid "Layout Key"
|
3279 |
msgstr "Ključ postavitve"
|
3280 |
|
3281 |
+
#: settings.php:1029
|
3282 |
msgid "Full width"
|
3283 |
msgstr "Celotna širina"
|
3284 |
|
3285 |
+
#: settings.php:1031
|
3286 |
msgctxt "Full width"
|
3287 |
msgid "Enabled"
|
3288 |
msgstr "Omogočena"
|
3289 |
|
3290 |
+
#: settings.php:1032
|
3291 |
msgctxt "Full width"
|
3292 |
msgid "Disabled"
|
3293 |
msgstr "Onemogočena"
|
3294 |
|
3295 |
+
#: settings.php:1113
|
3296 |
msgid ""
|
3297 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3298 |
"Cookie or Referer (domain)"
|
3300 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3301 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3302 |
|
3303 |
+
#: settings.php:1113
|
3304 |
msgid "Lists"
|
3305 |
msgstr "Seznami"
|
3306 |
|
3307 |
+
#: settings.php:1114
|
3308 |
msgid "Widget, Shortcode and PHP function call"
|
3309 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3310 |
|
3311 |
+
#: settings.php:1114
|
3312 |
msgid "Manual"
|
3313 |
msgstr "Ročno"
|
3314 |
|
3315 |
+
#: settings.php:1115
|
3316 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3317 |
msgstr ""
|
3318 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3319 |
|
3320 |
+
#: settings.php:1115
|
3321 |
msgid "Devices"
|
3322 |
msgstr "Naprave"
|
3323 |
|
3324 |
+
#: settings.php:1116
|
3325 |
msgid ""
|
3326 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3327 |
"feeds), Filter, Scheduling, General tag"
|
3329 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3330 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3331 |
|
3332 |
+
#: settings.php:1116
|
3333 |
msgid "Misc"
|
3334 |
msgstr "Razno"
|
3335 |
|
3336 |
+
#: settings.php:1117
|
3337 |
msgid "Preview code and alignment"
|
3338 |
msgstr "Predogled kode in poravnave"
|
3339 |
|
3340 |
+
#: settings.php:1120 settings.php:2265
|
3341 |
msgid ""
|
3342 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3343 |
"editor is active before saving settings."
|
3345 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3346 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3347 |
|
3348 |
+
#: settings.php:1133 settings.php:1134
|
3349 |
msgid "Enable insertion on posts"
|
3350 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3351 |
|
3352 |
+
#: settings.php:1134 settings.php:3424
|
3353 |
msgid "Posts"
|
3354 |
msgstr "Prispevki"
|
3355 |
|
3356 |
+
#: settings.php:1138 settings.php:1139
|
3357 |
msgid ""
|
3358 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3359 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3363 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3364 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3365 |
|
3366 |
+
#: settings.php:1139 settings.php:3426
|
3367 |
msgid "Homepage"
|
3368 |
msgstr "Domača stran"
|
3369 |
|
3370 |
+
#: settings.php:1143 settings.php:1144
|
3371 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3372 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3373 |
|
3374 |
+
#: settings.php:1144 settings.php:3427
|
3375 |
msgid "Category pages"
|
3376 |
msgstr "Strani kategorij"
|
3377 |
|
3378 |
+
#: settings.php:1154 settings.php:1155
|
3379 |
msgid "Enable insertion on static pages"
|
3380 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3381 |
|
3382 |
+
#: settings.php:1155 settings.php:3425
|
3383 |
msgid "Static pages"
|
3384 |
msgstr "Statične strani"
|
3385 |
|
3386 |
+
#: settings.php:1159 settings.php:1160
|
3387 |
msgid "Enable insertion on search blog pages"
|
3388 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3389 |
|
3390 |
+
#: settings.php:1160 settings.php:3429
|
3391 |
msgid "Search pages"
|
3392 |
msgstr "Iskalne strani"
|
3393 |
|
3394 |
+
#: settings.php:1164 settings.php:1165
|
3395 |
msgid "Enable insertion on tag or archive blog pages"
|
3396 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3397 |
|
3398 |
+
#: settings.php:1168
|
3399 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3400 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3401 |
|
3402 |
+
#: settings.php:1180
|
3403 |
msgid ""
|
3404 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3405 |
"be configured on the individual post/page editor page (in the settings below "
|
3409 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3410 |
"nastavitvah pod urejevalnikom)."
|
3411 |
|
3412 |
+
#: settings.php:1181
|
3413 |
msgid ""
|
3414 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3415 |
"enabled they can be configured on the individual post/page editor page (in "
|
3419 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3420 |
"strani (v nastavitvah pod urejevalnikom)."
|
3421 |
|
3422 |
+
#: settings.php:1181
|
3423 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3424 |
msgstr ""
|
3425 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3426 |
|
3427 |
#. Translators: Enabled means...
|
3428 |
+
#: settings.php:1189
|
3429 |
msgid ""
|
3430 |
"means the insertion for this block is enabled by default and disabled for "
|
3431 |
"exceptions."
|
3434 |
"izjeme."
|
3435 |
|
3436 |
#. Translators: Disabled means...
|
3437 |
+
#: settings.php:1190
|
3438 |
msgid ""
|
3439 |
"means the insertion for this block is disabled by default and enabled for "
|
3440 |
"exceptions."
|
3442 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3443 |
"izjeme."
|
3444 |
|
3445 |
+
#: settings.php:1191
|
3446 |
msgid ""
|
3447 |
"When individual post/page exceptions are enabled they can be configured on "
|
3448 |
"the individual post/page editor page (in the settings below the editor)."
|
3451 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3452 |
"urejevalnikom)."
|
3453 |
|
3454 |
+
#: settings.php:1199
|
3455 |
msgid ""
|
3456 |
"No exception for post or static page defined. Block will not be inserted."
|
3457 |
msgstr ""
|
3458 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3459 |
|
3460 |
+
#: settings.php:1217
|
3461 |
msgctxt "post"
|
3462 |
msgid "Type"
|
3463 |
msgstr "Vrsta"
|
3464 |
|
3465 |
#. translators: %d: block number
|
3466 |
+
#: settings.php:1219
|
3467 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3468 |
msgstr "Ali ste prepričani, da želite pobrisati izpisane izjeme za blok %d?"
|
3469 |
|
3470 |
+
#: settings.php:1220
|
3471 |
msgid "Clear listed exceptions for block"
|
3472 |
msgstr "Pobriši izpisane izjeme za blok"
|
3473 |
|
3474 |
+
#: settings.php:1246 settings.php:1394 settings.php:2030
|
3475 |
msgid "Insertion"
|
3476 |
msgstr "Vstavljanje"
|
3477 |
|
3478 |
+
#: settings.php:1284
|
3479 |
msgid ""
|
3480 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3481 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3491 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3492 |
"število pomeni štetje z nasprotne smeri"
|
3493 |
|
3494 |
+
#: settings.php:1285
|
3495 |
msgid ""
|
3496 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3497 |
"means every N images, empty means all images, 0 means random image, value "
|
3506 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3507 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3508 |
|
3509 |
+
#: settings.php:1298
|
3510 |
msgid ""
|
3511 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3512 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3515 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3516 |
"izvlečki"
|
3517 |
|
3518 |
+
#: settings.php:1299
|
3519 |
msgid ""
|
3520 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3521 |
"numbers, %N means every N posts, empty means all posts"
|
3524 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3525 |
"prispevki"
|
3526 |
|
3527 |
+
#: settings.php:1300
|
3528 |
msgid ""
|
3529 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3530 |
"numbers, %N means every N comments, empty means all comments"
|
3533 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3534 |
"vsi komentarji"
|
3535 |
|
3536 |
+
#: settings.php:1307
|
3537 |
msgid "Toggle paragraph counting settings"
|
3538 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3539 |
|
3540 |
+
#: settings.php:1308
|
3541 |
msgid "Toggle paragraph clearance settings"
|
3542 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3543 |
|
3544 |
+
#: settings.php:1311
|
3545 |
msgid "Toggle insertion filter settings"
|
3546 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3547 |
|
3548 |
+
#: settings.php:1329
|
3549 |
msgid "Toggle insertion and alignment icons"
|
3550 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3551 |
|
3552 |
+
#: settings.php:1343
|
3553 |
msgid "Custom CSS code for the wrapping div"
|
3554 |
msgstr "CSS koda po meri za div za ovijanje"
|
3555 |
|
3556 |
+
#: settings.php:1346 settings.php:1347 settings.php:1348 settings.php:1349
|
3557 |
+
#: settings.php:1350 settings.php:1351
|
3558 |
msgid "CSS code for the wrapping div, click to edit"
|
3559 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3560 |
|
3561 |
+
#: settings.php:1364
|
3562 |
msgid "HTML element"
|
3563 |
msgstr "HTML element"
|
3564 |
|
3565 |
+
#: settings.php:1377
|
3566 |
msgid "HTML element selector or comma separated list of selectors"
|
3567 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3568 |
|
3569 |
+
#: settings.php:1383 settings.php:2783
|
3570 |
msgid "Action"
|
3571 |
msgstr "Akcija"
|
3572 |
|
3573 |
+
#: settings.php:1395
|
3574 |
msgid ""
|
3575 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3576 |
"Server-side insertion inserts block when the page is generated but needs "
|
3580 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3581 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3582 |
|
3583 |
+
#: settings.php:1404
|
3584 |
msgid "Code position"
|
3585 |
msgstr "Položaj kode"
|
3586 |
|
3587 |
+
#: settings.php:1405
|
3588 |
msgid ""
|
3589 |
"Page position where the code for client-side insertion will be inserted."
|
3590 |
msgstr ""
|
3591 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3592 |
|
3593 |
+
#: settings.php:1420
|
3594 |
msgid "Count"
|
3595 |
msgstr "Štej"
|
3596 |
|
3597 |
+
#: settings.php:1426
|
3598 |
msgid "paragraphs with tags"
|
3599 |
msgstr "odstavke z značkami"
|
3600 |
|
3601 |
+
#: settings.php:1432
|
3602 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3603 |
msgstr ""
|
3604 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3605 |
|
3606 |
+
#: settings.php:1441
|
3607 |
msgid "that have between"
|
3608 |
msgstr "ki imajo med"
|
3609 |
|
3610 |
+
#: settings.php:1447
|
3611 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3612 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3613 |
|
3614 |
+
#: settings.php:1456
|
3615 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3616 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3617 |
|
3618 |
+
#: settings.php:1459
|
3619 |
msgid "words"
|
3620 |
msgstr "besed"
|
3621 |
|
3622 |
+
#: settings.php:1474 settings.php:1521 settings.php:1641 settings.php:1667
|
3623 |
msgid "Comma separated texts"
|
3624 |
msgstr "Z vejico ločena besedila"
|
3625 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3626 |
#. translators: inside [HTML tags] elements that contain
|
3627 |
+
#: settings.php:1493
|
3628 |
msgid "inside"
|
3629 |
msgstr "znotraj"
|
3630 |
|
3631 |
+
#: settings.php:1499
|
3632 |
msgid "Comma separated HTML tag names of container elements"
|
3633 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3634 |
|
3635 |
#. translators: inside [HTML tags] elements that contain
|
3636 |
+
#: settings.php:1508
|
3637 |
msgid "elements that"
|
3638 |
msgstr "elementov, ki"
|
3639 |
|
3640 |
+
#: settings.php:1533 settings.php:1534
|
3641 |
+
msgid ""
|
3642 |
+
"If checked it will search for the text only in tag attributes like [[id]], "
|
3643 |
+
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3644 |
+
"will be searched."
|
3645 |
+
msgstr ""
|
3646 |
+
"Če odkljukano, bo iskal besedilo samo v atributih značke kot so [[id]], "
|
3647 |
+
"[[class]], [[style]], itd. V nasprotnem bo preiskana celotna značka vključno "
|
3648 |
+
"z njeno vsebino."
|
3649 |
+
|
3650 |
+
#: settings.php:1534
|
3651 |
+
msgid "Check only tag attributes"
|
3652 |
+
msgstr "Preveri samo atribute značke"
|
3653 |
+
|
3654 |
+
#: settings.php:1538
|
3655 |
+
msgid ""
|
3656 |
+
"Count also paragraphs inside these elements - defined on general plugin "
|
3657 |
+
"settings page - tab [*] / tab General"
|
3658 |
+
msgstr ""
|
3659 |
+
"Štej tudi odstavke znotraj teh elementov - določeni na strani splošnih "
|
3660 |
+
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3661 |
+
|
3662 |
+
#. Translators: %s: HTML tags
|
3663 |
+
#: settings.php:1544
|
3664 |
+
msgid "Count inside %s elements"
|
3665 |
+
msgstr "Štej znotraj elementov %s"
|
3666 |
+
|
3667 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3668 |
+
#: settings.php:1558
|
3669 |
msgid "Do not insert for first"
|
3670 |
msgid_plural "Do not insert for first"
|
3671 |
msgstr[0] "Ne vstavi za prvi"
|
3673 |
msgstr[2] "Ne vstavi za prve"
|
3674 |
msgstr[3] "Ne vstavi za prvih"
|
3675 |
|
3676 |
+
#: settings.php:1564
|
3677 |
msgid ""
|
3678 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3679 |
"first paragraphs"
|
3682 |
"odstavkov"
|
3683 |
|
3684 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3685 |
+
#: settings.php:1567
|
3686 |
msgid "and last"
|
3687 |
msgid_plural "and last"
|
3688 |
msgstr[0] "in zadnji"
|
3690 |
msgstr[2] "in zadnje"
|
3691 |
msgstr[3] "in zadnjih"
|
3692 |
|
3693 |
+
#: settings.php:1573
|
3694 |
msgid ""
|
3695 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3696 |
"last paragraphs"
|
3700 |
|
3701 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3702 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3703 |
+
#: settings.php:1576 settings.php:1602
|
3704 |
msgid "paragraph"
|
3705 |
msgid_plural "paragraphs"
|
3706 |
msgstr[0] "odstavek"
|
3708 |
msgstr[2] "odstavke"
|
3709 |
msgstr[3] "odstavkov"
|
3710 |
|
3711 |
+
#: settings.php:1584 settings.php:2162
|
3712 |
msgid "Post/Static page must have between"
|
3713 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3714 |
|
3715 |
+
#: settings.php:1590
|
3716 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3717 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3718 |
|
3719 |
+
#: settings.php:1599
|
3720 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3721 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3722 |
|
3723 |
+
#: settings.php:1610
|
3724 |
msgid "Minimum number of words in paragraphs above"
|
3725 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3726 |
|
3727 |
+
#: settings.php:1616
|
3728 |
msgid ""
|
3729 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3730 |
"numbers"
|
3732 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3733 |
"številkami odstavkov"
|
3734 |
|
3735 |
+
#: settings.php:1626 settings.php:1652
|
3736 |
msgid "In"
|
3737 |
msgstr "V"
|
3738 |
|
3739 |
+
#: settings.php:1632
|
3740 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3741 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3742 |
|
3743 |
+
#: settings.php:1635
|
3744 |
msgid "paragraphs above avoid"
|
3745 |
msgstr "odstavkih zgoraj se izogni"
|
3746 |
|
3747 |
+
#: settings.php:1658
|
3748 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3749 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3750 |
|
3751 |
+
#: settings.php:1661
|
3752 |
msgid "paragraphs below avoid"
|
3753 |
msgstr "odstavkih spodaj se izogni"
|
3754 |
|
3755 |
+
#: settings.php:1677
|
3756 |
msgid "If text is found"
|
3757 |
msgstr "Če je besedilo najdeno"
|
3758 |
|
3759 |
+
#: settings.php:1684
|
3760 |
msgid "check up to"
|
3761 |
msgstr "preveri do"
|
3762 |
|
3763 |
+
#: settings.php:1692
|
3764 |
msgctxt "check up to"
|
3765 |
msgid "paragraphs"
|
3766 |
msgstr "odstavkov"
|
3767 |
|
3768 |
+
#: settings.php:1708
|
3769 |
msgid "Categories"
|
3770 |
msgstr "Kategorije"
|
3771 |
|
3772 |
+
#: settings.php:1711
|
3773 |
msgid "Toggle category editor"
|
3774 |
msgstr "Preklopi urejevalnik kategorij"
|
3775 |
|
3776 |
+
#: settings.php:1714
|
3777 |
msgid "Comma separated category slugs"
|
3778 |
msgstr "Z vejico ločeni ključi kategorij"
|
3779 |
|
3780 |
+
#: settings.php:1731
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3781 |
msgid "Tags"
|
3782 |
msgstr "Oznake"
|
3783 |
|
3784 |
+
#: settings.php:1734
|
3785 |
msgid "Toggle tag editor"
|
3786 |
msgstr "Preklopi urejevalnik oznak"
|
3787 |
|
3788 |
+
#: settings.php:1737
|
3789 |
msgid "Comma separated tag slugs"
|
3790 |
msgstr "Z vejico ločeni ključi oznak"
|
3791 |
|
3792 |
+
#: settings.php:1754
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3793 |
msgid "Taxonomies"
|
3794 |
msgstr "Taksonomije"
|
3795 |
|
3796 |
+
#: settings.php:1757
|
3797 |
msgid "Toggle taxonomy editor"
|
3798 |
msgstr "Preklopi urejevalnik taksonomij"
|
3799 |
|
3800 |
+
#: settings.php:1760
|
3801 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3802 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3803 |
|
3804 |
+
#: settings.php:1777
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3805 |
msgid "Post IDs"
|
3806 |
msgstr "ID-ji prispevkov"
|
3807 |
|
3808 |
+
#: settings.php:1780
|
3809 |
msgid "Toggle post/page ID editor"
|
3810 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3811 |
|
3812 |
+
#: settings.php:1783
|
3813 |
msgid "Comma separated post/page IDs"
|
3814 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3815 |
|
3816 |
+
#: settings.php:1800
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3817 |
msgid "Urls"
|
3818 |
msgstr "Url-ji"
|
3819 |
|
3820 |
+
#: settings.php:1803
|
3821 |
msgid "Toggle url editor"
|
3822 |
msgstr "Preklopi urejevalnik url-jev"
|
3823 |
|
3824 |
+
#: settings.php:1806
|
3825 |
msgid ""
|
3826 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3827 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3833 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3834 |
"začetek*. *url-vzorec*, *url-konec)"
|
3835 |
|
3836 |
+
#: settings.php:1822
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3837 |
msgid "Url parameters"
|
3838 |
msgstr "Url parametri"
|
3839 |
|
3840 |
+
#: settings.php:1826
|
3841 |
msgid "Toggle url parameter and cookie editor"
|
3842 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3843 |
|
3844 |
+
#: settings.php:1829
|
3845 |
msgid ""
|
3846 |
"Comma separated url query parameters or cookies with optional values (use "
|
3847 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3850 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3851 |
"'piškotek=vrednost')"
|
3852 |
|
3853 |
+
#: settings.php:1845
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3854 |
msgid "Referrers"
|
3855 |
msgstr "Napotitelji"
|
3856 |
|
3857 |
+
#: settings.php:1848
|
3858 |
msgid "Toggle referer editor"
|
3859 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3860 |
|
3861 |
+
#: settings.php:1851
|
3862 |
msgid ""
|
3863 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3864 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3866 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3867 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3868 |
|
3869 |
+
#: settings.php:1867
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3870 |
msgid "Clients"
|
3871 |
msgstr "Odjemalci"
|
3872 |
|
3873 |
+
#: settings.php:1870
|
3874 |
msgid "Toggle client editor"
|
3875 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3876 |
|
3877 |
+
#: settings.php:1873
|
3878 |
+
msgid ""
|
3879 |
+
"Comma separated names (operating systems, browsers, devices). You can also "
|
3880 |
+
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3881 |
+
"pattern*, *user-agent-end)"
|
3882 |
+
msgstr ""
|
3883 |
+
"Z vejico ločena imena (operacijski sitemi, brskalniki, naprave). Uporabite "
|
3884 |
+
"lahko tudi delne nize uporabniškega agenta z * (začetek-uporabnšikega-"
|
3885 |
+
"agenta*. *vzorec-uporabnšikega-agenta*, *konec-uporabnšikega-agenta)"
|
|
|
|
|
3886 |
|
3887 |
+
#: settings.php:1899
|
3888 |
msgid "Enable widget for this block"
|
3889 |
msgstr "Omogočite gradnik za ta blok"
|
3890 |
|
3891 |
+
#: settings.php:1911
|
3892 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3893 |
msgstr ""
|
3894 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3895 |
|
3896 |
+
#: settings.php:1912 settings.php:4269
|
3897 |
msgid "Shortcode"
|
3898 |
msgstr "Kratka koda"
|
3899 |
|
3900 |
+
#: settings.php:1927
|
3901 |
msgid ""
|
3902 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3903 |
"If function is disabled for block it will return empty string."
|
3906 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3907 |
"prazen niz."
|
3908 |
|
3909 |
+
#: settings.php:1928
|
3910 |
msgid "PHP function"
|
3911 |
msgstr "PHP funkcija"
|
3912 |
|
3913 |
+
#: settings.php:1943
|
3914 |
msgid "Client-side device detection"
|
3915 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3916 |
|
3917 |
+
#: settings.php:1944
|
3918 |
msgid "Server-side device detection"
|
3919 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3920 |
|
3921 |
+
#: settings.php:1951
|
3922 |
msgid "Use client-side detection to"
|
3923 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3924 |
|
3925 |
+
#: settings.php:1953
|
3926 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3927 |
msgstr ""
|
3928 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3929 |
|
3930 |
#. Translators: only on (the following devices): viewport names (devices)
|
3931 |
#. listed
|
3932 |
+
#: settings.php:1958
|
3933 |
msgid "only on"
|
3934 |
msgstr "samo na"
|
3935 |
|
3936 |
+
#: settings.php:1986
|
3937 |
msgid "Device min width %s px"
|
3938 |
msgstr "Najmanjša širina naprave %s px"
|
3939 |
|
3940 |
+
#: settings.php:2012
|
3941 |
msgid "Use server-side detection to insert block only for"
|
3942 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3943 |
|
3944 |
+
#: settings.php:2031
|
3945 |
msgid "Filter"
|
3946 |
msgstr "Filter"
|
3947 |
|
3948 |
+
#: settings.php:2032
|
3949 |
msgid "Word Count"
|
3950 |
msgstr "Število Besed"
|
3951 |
|
3952 |
+
#: settings.php:2033 settings.php:4259
|
3953 |
msgid "Scheduling"
|
3954 |
msgstr "Urnik"
|
3955 |
|
3956 |
+
#: settings.php:2034
|
3957 |
msgid "Display"
|
3958 |
msgstr "Prikaz"
|
3959 |
|
3960 |
+
#: settings.php:2036 settings.php:2307
|
3961 |
msgid "General"
|
3962 |
msgstr "Splošno"
|
3963 |
|
3964 |
+
#: settings.php:2048
|
3965 |
msgid "Old settings for AMP pages detected"
|
3966 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3967 |
|
3968 |
+
#: settings.php:2048
|
3969 |
msgid ""
|
3970 |
"To insert different codes on normal and AMP pages separate them with "
|
3971 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3976 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3977 |
"separatorja)."
|
3978 |
|
3979 |
+
#: settings.php:2048
|
3980 |
msgid "AMP pages"
|
3981 |
msgstr "AMP strani"
|
3982 |
|
3983 |
+
#: settings.php:2053
|
3984 |
msgid "Enable insertion for Ajax requests"
|
3985 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3986 |
|
3987 |
+
#: settings.php:2053
|
3988 |
msgid "Ajax requests"
|
3989 |
msgstr "Ajax zahteve"
|
3990 |
|
3991 |
+
#: settings.php:2058
|
3992 |
msgid "Enable insertion in RSS feeds"
|
3993 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3994 |
|
3995 |
+
#: settings.php:2058
|
3996 |
msgid "RSS Feed"
|
3997 |
msgstr "RSS Vir"
|
3998 |
|
3999 |
+
#: settings.php:2063
|
4000 |
msgid "Enable insertion on page for Error 404: Page not found"
|
4001 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
4002 |
|
4003 |
+
#: settings.php:2063
|
4004 |
msgid "Error 404 page"
|
4005 |
msgstr "Stran napake 404"
|
4006 |
|
4007 |
+
#: settings.php:2075
|
4008 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
4009 |
msgstr ""
|
4010 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
4011 |
|
4012 |
+
#: settings.php:2076
|
4013 |
msgid "insertions"
|
4014 |
msgstr "vstavljanj"
|
4015 |
|
4016 |
+
#: settings.php:2078
|
4017 |
msgid ""
|
4018 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
4019 |
"General)"
|
4021 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
4022 |
"zavihek Splošno)"
|
4023 |
|
4024 |
+
#: settings.php:2081 settings.php:2487
|
4025 |
msgid "Max blocks per page"
|
4026 |
msgstr "Največ blokov na stran"
|
4027 |
|
4028 |
+
#: settings.php:2093
|
4029 |
msgid "Insert for"
|
4030 |
msgstr "Vstavi za"
|
4031 |
|
4032 |
+
#: settings.php:2101
|
4033 |
msgid ""
|
4034 |
+
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
4035 |
+
"is currently active). Might speed up insertion on content pages when "
|
4036 |
+
"[[the_content]] filter hook is called multiple times."
|
4037 |
msgstr ""
|
4038 |
+
"Vstavi blok samo, ko WP funkcija in[[_the_loop ()]] vrne true (WP zanka je "
|
4039 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
4040 |
+
"filter [[the_content]] večkrat klican."
|
4041 |
|
4042 |
+
#: settings.php:2105
|
4043 |
msgid "Insert only in the loop"
|
4044 |
msgstr "Vstavi samo v zanki"
|
4045 |
|
4046 |
+
#: settings.php:2108
|
4047 |
+
msgid ""
|
4048 |
+
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
4049 |
+
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
4050 |
+
"the page footer. Plugin Javascript functions will still be inserted in the "
|
4051 |
+
"footer."
|
4052 |
+
msgstr ""
|
4053 |
+
"Ko je omogočeno, bo Javascript koda (če je potrebna za blok) vstavljena za "
|
4054 |
+
"HTML kodo bloka. V nasprotnem bo Javascript koda vstavljena v nogi. "
|
4055 |
+
"Javascript funkcije vtičnika bodo še vedno vstavljene v nogi."
|
4056 |
+
|
4057 |
+
#: settings.php:2112
|
4058 |
+
msgid "Embed JS code"
|
4059 |
+
msgstr "Vgnezdi JS kodo"
|
4060 |
+
|
4061 |
+
#: settings.php:2115
|
4062 |
msgid ""
|
4063 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
4064 |
msgstr ""
|
4065 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
4066 |
"Rocket"
|
4067 |
|
4068 |
+
#: settings.php:2119
|
4069 |
msgid "Disable caching"
|
4070 |
msgstr "Onemogoči predpomnjenje"
|
4071 |
|
4072 |
+
#: settings.php:2131
|
4073 |
msgid "Filter insertions"
|
4074 |
msgstr "Filtriraj vstavljanja"
|
4075 |
|
4076 |
+
#: settings.php:2134
|
4077 |
msgid ""
|
4078 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
4079 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
4085 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
4086 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
4087 |
|
4088 |
+
#: settings.php:2137
|
4089 |
msgid "using"
|
4090 |
msgstr "z uporabo"
|
4091 |
|
4092 |
+
#: settings.php:2156
|
4093 |
msgid "Checked means specified calls are unwanted"
|
4094 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
4095 |
|
4096 |
+
#: settings.php:2156
|
4097 |
msgid "Invert filter"
|
4098 |
msgstr "Obrni filter"
|
4099 |
|
4100 |
+
#: settings.php:2163
|
4101 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
4102 |
msgstr ""
|
4103 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4104 |
"omejitev"
|
4105 |
|
4106 |
+
#: settings.php:2165
|
4107 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
4108 |
msgstr ""
|
4109 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
4110 |
"omejitev"
|
4111 |
|
4112 |
+
#: settings.php:2178
|
4113 |
msgid "for"
|
4114 |
msgstr "za"
|
4115 |
|
4116 |
+
#: settings.php:2178
|
4117 |
msgid "days after publishing"
|
4118 |
msgstr "dni po objavi"
|
4119 |
|
4120 |
+
#: settings.php:2180
|
4121 |
msgid "Not available"
|
4122 |
msgstr "Ni na razpolago"
|
4123 |
|
4124 |
+
#: settings.php:2193 settings.php:2479
|
4125 |
msgid "Ad label"
|
4126 |
msgstr "Oznaka oglasa"
|
4127 |
|
4128 |
+
#: settings.php:2213
|
4129 |
msgid "General tag"
|
4130 |
msgstr "Splošna oznaka"
|
4131 |
|
4132 |
+
#: settings.php:2217
|
4133 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
4134 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
4135 |
|
4136 |
#. translators: %s: HTML tags
|
4137 |
+
#: settings.php:2226
|
4138 |
msgid ""
|
4139 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
4140 |
"client-side device detection!"
|
4143 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
4144 |
|
4145 |
#. translators: %s: HTML tags for text and link
|
4146 |
+
#: settings.php:2240
|
4147 |
msgid ""
|
4148 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4149 |
"side %s insertion. Use %s Server-side %s insertion."
|
4152 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4153 |
"strežnika%s."
|
4154 |
|
4155 |
+
#: settings.php:2256
|
4156 |
msgid "Settings"
|
4157 |
msgstr "Nastavitve"
|
4158 |
|
4159 |
+
#: settings.php:2259
|
4160 |
msgid "Settings timestamp"
|
4161 |
msgstr "Časovni žig nastavitev"
|
4162 |
|
4163 |
+
#: settings.php:2272
|
4164 |
msgid "Are you sure you want to reset all settings?"
|
4165 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4166 |
|
4167 |
+
#: settings.php:2272
|
4168 |
msgid "Reset All Settings"
|
4169 |
msgstr "Ponastavi Vse Nastavitve"
|
4170 |
|
4171 |
+
#: settings.php:2308
|
4172 |
msgid "Viewports"
|
4173 |
msgstr "Pogledi"
|
4174 |
|
4175 |
+
#: settings.php:2309
|
4176 |
msgid "Hooks"
|
4177 |
msgstr "Ročice"
|
4178 |
|
4179 |
+
#: settings.php:2310
|
4180 |
msgid "Header"
|
4181 |
msgstr "Glava"
|
4182 |
|
4183 |
+
#: settings.php:2311 strings.php:30
|
4184 |
msgid "Footer"
|
4185 |
msgstr "Noga"
|
4186 |
|
4187 |
+
#: settings.php:2316
|
4188 |
msgid "Debugging"
|
4189 |
msgstr "Razhroščevanje"
|
4190 |
|
4191 |
+
#: settings.php:2326
|
4192 |
msgid "Plugin priority"
|
4193 |
msgstr "Prednost vtičnika"
|
4194 |
|
4195 |
+
#: settings.php:2334
|
4196 |
msgid "Output buffering"
|
4197 |
msgstr "Predpomnjenje izhoda"
|
4198 |
|
4199 |
+
#: settings.php:2337
|
4200 |
msgid "Needed for position Above header but may not work with all themes"
|
4201 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4202 |
|
4203 |
+
#: settings.php:2345
|
4204 |
msgid "Syntax highlighting theme"
|
4205 |
msgstr "Tema za poudarjanje sintakse"
|
4206 |
|
4207 |
+
#: settings.php:2352
|
4208 |
msgctxt "no syntax highlighting themes"
|
4209 |
msgid "None"
|
4210 |
msgstr "Brez"
|
4211 |
|
4212 |
+
#: settings.php:2353
|
4213 |
msgid "No Syntax Highlighting"
|
4214 |
msgstr "Brez Poudarjanja Sintakse"
|
4215 |
|
4216 |
+
#: settings.php:2355
|
4217 |
msgctxt "syntax highlighting themes"
|
4218 |
msgid "Light"
|
4219 |
msgstr "Svetle"
|
4220 |
|
4221 |
+
#: settings.php:2370
|
4222 |
msgctxt "syntax highlighting themes"
|
4223 |
msgid "Dark"
|
4224 |
msgstr "Temne"
|
4225 |
|
4226 |
+
#: settings.php:2396
|
4227 |
msgid "Min. user role for ind. exceptions editing"
|
4228 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4229 |
|
4230 |
+
#: settings.php:2406
|
4231 |
msgid "Disable caching for logged in administrators"
|
4232 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4233 |
|
4234 |
+
#: settings.php:2409
|
4235 |
msgid ""
|
4236 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4237 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4239 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4240 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4241 |
|
4242 |
+
#: settings.php:2417
|
4243 |
msgid "Wait for jQuery"
|
4244 |
msgstr "Čakaj na jQuery"
|
4245 |
|
4246 |
+
#: settings.php:2420
|
4247 |
msgid ""
|
4248 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4249 |
"it will run the scripts that may need it"
|
4251 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4252 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4253 |
|
4254 |
+
#: settings.php:2428
|
4255 |
msgid "Sticky widget mode"
|
4256 |
msgstr "Način za lepljive gradnike"
|
4257 |
|
4258 |
+
#: settings.php:2431
|
4259 |
msgid ""
|
4260 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4261 |
"mode works with most themes but may reload ads on page load."
|
4264 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4265 |
"nalaganju strani."
|
4266 |
|
4267 |
+
#: settings.php:2439
|
4268 |
msgid "Sticky widget top margin"
|
4269 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4270 |
|
4271 |
+
#: settings.php:2447
|
4272 |
msgid "Dynamic blocks"
|
4273 |
msgstr "Dinamični bloki"
|
4274 |
|
4275 |
+
#: settings.php:2460
|
4276 |
msgid "Functions for paragraph counting"
|
4277 |
msgstr "Funkcije za štetje odstavkov"
|
4278 |
|
4279 |
+
#: settings.php:2463
|
4280 |
msgid ""
|
4281 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4282 |
"functions if paragraphs are not counted properly on non-english pages."
|
4285 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4286 |
"šteti."
|
4287 |
|
4288 |
+
#: settings.php:2471
|
4289 |
msgid "No paragraph counting inside"
|
4290 |
msgstr "Ni štetja odstavkov znotraj"
|
4291 |
|
4292 |
+
#: settings.php:2482
|
4293 |
msgid "Label text or HTML code"
|
4294 |
msgstr "Besedilo oznake ali HTML koda"
|
4295 |
|
4296 |
+
#: settings.php:2490
|
4297 |
msgid ""
|
4298 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4299 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4302 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4303 |
"omejitev."
|
4304 |
|
4305 |
+
#: settings.php:2504
|
4306 |
msgid "Plugin usage tracking"
|
4307 |
msgstr "Sledenje uporabe vtičnika"
|
4308 |
|
4309 |
#. translators: %s: Ad Inserter
|
4310 |
+
#: settings.php:2507
|
4311 |
msgid ""
|
4312 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4313 |
"Only information regarding the WordPress environment and %s usage is "
|
4317 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4318 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4319 |
|
4320 |
+
#: settings.php:2525
|
4321 |
msgid "CSS class name for the wrapping div"
|
4322 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4323 |
|
4324 |
+
#: settings.php:2525
|
4325 |
msgid "Block class name"
|
4326 |
msgstr "Ime razreda za blok"
|
4327 |
|
4328 |
+
#: settings.php:2531
|
4329 |
msgid "Include block number class"
|
4330 |
msgstr "Vključi razred številke bloka"
|
4331 |
|
4332 |
+
#: settings.php:2531
|
4333 |
msgid "Block number class"
|
4334 |
msgstr "Razred številke bloka"
|
4335 |
|
4336 |
+
#: settings.php:2536
|
4337 |
msgid "Include block name class"
|
4338 |
msgstr "Vključi razred imena bloka"
|
4339 |
|
4340 |
+
#: settings.php:2536
|
4341 |
msgid "Block name class"
|
4342 |
msgstr "Razred imena bloka"
|
4343 |
|
4344 |
+
#: settings.php:2541
|
4345 |
msgid ""
|
4346 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4347 |
msgstr ""
|
4348 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4349 |
|
4350 |
+
#: settings.php:2541
|
4351 |
msgid "Inline styles"
|
4352 |
msgstr "Medvrstični slogi"
|
4353 |
|
4354 |
+
#: settings.php:2547
|
4355 |
msgid "Preview of the block wrapping code"
|
4356 |
msgstr "Predogled kode za ovijanje blokov"
|
4357 |
|
4358 |
+
#: settings.php:2548
|
4359 |
msgid "Wrapping div"
|
4360 |
msgstr "div za ovijanje"
|
4361 |
|
4362 |
+
#: settings.php:2549 settings.php:2989
|
4363 |
msgid "BLOCK CODE"
|
4364 |
msgstr "KODA BLOKA"
|
4365 |
|
4366 |
+
#: settings.php:2557
|
4367 |
msgid "Viewport Settings used for client-side device detection"
|
4368 |
msgstr ""
|
4369 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4370 |
|
4371 |
#. Translators: %d: viewport number
|
4372 |
+
#: settings.php:2565
|
4373 |
msgid "Viewport %d name"
|
4374 |
msgstr "Ime pogleda %d"
|
4375 |
|
4376 |
+
#: settings.php:2568
|
4377 |
msgid "min width"
|
4378 |
msgstr "najmanjša širina"
|
4379 |
|
4380 |
+
#: settings.php:2579
|
4381 |
msgid "Custom Hooks"
|
4382 |
msgstr "Ročice Po Meri"
|
4383 |
|
4384 |
+
#: settings.php:2591 settings.php:2594
|
4385 |
msgid "Enable hook"
|
4386 |
msgstr "Omogoči ročico"
|
4387 |
|
4388 |
#. translators: %d: hook number
|
4389 |
+
#: settings.php:2594
|
4390 |
msgid "Hook %d name"
|
4391 |
msgstr "Ime ročice %d"
|
4392 |
|
4393 |
+
#: settings.php:2597
|
4394 |
msgid "Hook name for automatic insertion selection"
|
4395 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4396 |
|
4397 |
+
#: settings.php:2600
|
4398 |
msgid "action"
|
4399 |
msgstr "akcija"
|
4400 |
|
4401 |
+
#: settings.php:2603
|
4402 |
msgid "Action name as used in the do_action () function"
|
4403 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4404 |
|
4405 |
+
#: settings.php:2606
|
4406 |
msgid "priority"
|
4407 |
msgstr "prednost"
|
4408 |
|
4409 |
+
#: settings.php:2609
|
4410 |
msgid "Priority for the hook (default is 10)"
|
4411 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4412 |
|
4413 |
+
#: settings.php:2630
|
4414 |
msgid "Enable insertion of this code into HTML page header"
|
4415 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4416 |
|
4417 |
+
#: settings.php:2634 settings.php:2701 settings.php:2883
|
4418 |
msgid "Process PHP code"
|
4419 |
msgstr "Procesiraj PHP kodo"
|
4420 |
|
4421 |
+
#: settings.php:2638
|
4422 |
msgid "HTML Page Header Code"
|
4423 |
msgstr "Koda v Glavi HTML Strani"
|
4424 |
|
4425 |
+
#: settings.php:2646
|
4426 |
msgid "Code in the %s section of the HTML page"
|
4427 |
msgstr "Koda v %s delu HTML strani"
|
4428 |
|
4429 |
+
#: settings.php:2647
|
4430 |
msgctxt "code in the header"
|
4431 |
msgid "NOT ENABLED"
|
4432 |
msgstr "NI OMOGOČENA"
|
4433 |
|
4434 |
+
#: settings.php:2664 settings.php:2732
|
4435 |
msgid "Use server-side detection to insert code only for"
|
4436 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4437 |
|
4438 |
+
#: settings.php:2679
|
4439 |
msgid ""
|
4440 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4441 |
"Page not found"
|
4443 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4444 |
"obstaja"
|
4445 |
|
4446 |
+
#: settings.php:2679 settings.php:2747
|
4447 |
msgid "Insert on Error 404 page"
|
4448 |
msgstr "Vstavi na strani Napake 404"
|
4449 |
|
4450 |
+
#: settings.php:2697
|
4451 |
msgid "Enable insertion of this code into HTML page footer"
|
4452 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4453 |
|
4454 |
+
#: settings.php:2705
|
4455 |
msgid "HTML Page Footer Code"
|
4456 |
msgstr "Koda v Nogi HTML Strani"
|
4457 |
|
4458 |
#. translators: %s: HTML tags
|
4459 |
+
#: settings.php:2713
|
4460 |
msgid "Code before the %s tag of the the HTML page"
|
4461 |
msgstr "Koda pred %s značko HTML strani"
|
4462 |
|
4463 |
+
#: settings.php:2714
|
4464 |
msgctxt "code in the footer"
|
4465 |
msgid "NOT ENABLED"
|
4466 |
msgstr "NI OMOGOČENA"
|
4467 |
|
4468 |
+
#: settings.php:2747
|
4469 |
msgid ""
|
4470 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4471 |
"Page not found"
|
4473 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4474 |
"Stran ne obstaja"
|
4475 |
|
4476 |
+
#: settings.php:2763
|
4477 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4478 |
msgstr ""
|
4479 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4480 |
|
4481 |
+
#: settings.php:2768
|
4482 |
msgid "Enable detection of ad blocking"
|
4483 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4484 |
|
4485 |
+
#: settings.php:2786
|
4486 |
msgid "Global action when ad blocking is detected"
|
4487 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4488 |
|
4489 |
+
#: settings.php:2792
|
4490 |
msgid "No action for"
|
4491 |
msgstr "Ni akcije za"
|
4492 |
|
4493 |
+
#: settings.php:2793
|
4494 |
msgid "Exceptions for global action when ad blocking is detected."
|
4495 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4496 |
|
4497 |
+
#: settings.php:2803
|
4498 |
msgid "Delay Action"
|
4499 |
msgstr "Zakasni Akcijo"
|
4500 |
|
4501 |
+
#: settings.php:2806
|
4502 |
msgid ""
|
4503 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4504 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4507 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4508 |
"strani). Nastavi piškotek."
|
4509 |
|
4510 |
+
#: settings.php:2806
|
4511 |
msgctxt "Delay Action for x "
|
4512 |
msgid "page views"
|
4513 |
msgstr "ogledov strani"
|
4514 |
|
4515 |
+
#: settings.php:2811
|
4516 |
msgid "No Action Period"
|
4517 |
msgstr "Obdobje Brez Akcije"
|
4518 |
|
4519 |
+
#: settings.php:2814
|
4520 |
msgid ""
|
4521 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4522 |
"for no no-action period (action fires always after defined page view delay). "
|
4526 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4527 |
"strani). Nastavi piškotek."
|
4528 |
|
4529 |
+
#: settings.php:2814
|
4530 |
msgctxt "no action period"
|
4531 |
msgid "days"
|
4532 |
msgstr "dni"
|
4533 |
|
4534 |
+
#: settings.php:2819
|
4535 |
msgid "Custom Selectors"
|
4536 |
msgstr "Selektorji Po Meri"
|
4537 |
|
4538 |
+
#: settings.php:2822
|
4539 |
msgid ""
|
4540 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4541 |
"blocking detection. Invisible element or element with zero height means ad "
|
4545 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4546 |
"pomeni prisotnost blokiranja oglasov."
|
4547 |
|
4548 |
+
#: settings.php:2834
|
4549 |
msgid "Redirection Page"
|
4550 |
msgstr "Stran za Preusmeritev"
|
4551 |
|
4552 |
+
#: settings.php:2846
|
4553 |
msgid "Custom Url"
|
4554 |
msgstr "Url Po Meri"
|
4555 |
|
4556 |
+
#: settings.php:2851
|
4557 |
msgid ""
|
4558 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4559 |
"select Custom url and set it below."
|
4561 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4562 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4563 |
|
4564 |
+
#: settings.php:2860
|
4565 |
msgid "Custom Redirection Url"
|
4566 |
msgstr "Url za Preusmeritev Po Meri"
|
4567 |
|
4568 |
+
#: settings.php:2872
|
4569 |
msgid "Message HTML code"
|
4570 |
msgstr "HTML koda sporočila"
|
4571 |
|
4572 |
+
#: settings.php:2885
|
4573 |
msgid "Preview message when ad blocking is detected"
|
4574 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4575 |
|
4576 |
+
#: settings.php:2914
|
4577 |
msgid "Prevent visitors from closing the warning message"
|
4578 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4579 |
|
4580 |
+
#: settings.php:2914
|
4581 |
msgid "Undismissible Message"
|
4582 |
msgstr "Neodstranljivo Sporočilo"
|
4583 |
|
4584 |
+
#: settings.php:2920
|
4585 |
msgid "Not undismissible for"
|
4586 |
msgstr "Ni neodstranljivo za"
|
4587 |
|
4588 |
+
#: settings.php:2921
|
4589 |
msgid "Users which can close the warning message."
|
4590 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4591 |
|
4592 |
+
#: settings.php:2935
|
4593 |
msgid ""
|
4594 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4595 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4598 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4599 |
"skrbnike."
|
4600 |
|
4601 |
+
#: settings.php:2943
|
4602 |
msgid "Disable header code (Header tab)"
|
4603 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4604 |
|
4605 |
+
#: settings.php:2947
|
4606 |
msgid "Disable footer code (Footer tab)"
|
4607 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4608 |
|
4609 |
#. translators: %s: Ad Inserter
|
4610 |
+
#: settings.php:2951
|
4611 |
msgid "Disable %s JavaScript code"
|
4612 |
msgstr "Onemogoči %s JavaScript kodo"
|
4613 |
|
4614 |
#. translators: %s: Ad Inserter
|
4615 |
+
#: settings.php:2955
|
4616 |
msgid "Disable %s CSS code"
|
4617 |
msgstr "Onemogoči %s CSS kodo"
|
4618 |
|
4619 |
+
#: settings.php:2959
|
4620 |
msgid ""
|
4621 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4622 |
msgstr ""
|
4623 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4624 |
|
4625 |
+
#: settings.php:2963
|
4626 |
msgid "Disable insertion of all blocks"
|
4627 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4628 |
|
4629 |
+
#: settings.php:2967
|
4630 |
msgid "Disable insertions"
|
4631 |
msgstr "Onemogoči vstavljanja"
|
4632 |
|
4633 |
#. translators: %s: Ad Inserter
|
4634 |
+
#: settings.php:2979
|
4635 |
msgid "%s CSS CODE"
|
4636 |
msgstr "%s CSS KODA"
|
4637 |
|
4638 |
+
#: settings.php:2982
|
4639 |
msgid "HEADER CODE"
|
4640 |
msgstr "KODA GLAVE"
|
4641 |
|
4642 |
#. translators: %s: PHP tags
|
4643 |
+
#: settings.php:2988
|
4644 |
msgid "BLOCK PHP CODE"
|
4645 |
msgstr "PHP KODA BLOKA"
|
4646 |
|
4647 |
#. translators: %s: Ad Inserter
|
4648 |
+
#: settings.php:2994
|
4649 |
msgid "%s JS CODE"
|
4650 |
msgstr "%s JS KODA"
|
4651 |
|
4652 |
+
#: settings.php:2997
|
4653 |
msgid "FOOTER CODE"
|
4654 |
msgstr "KODA NOGE"
|
4655 |
|
4656 |
+
#: settings.php:3006
|
4657 |
msgid "Force showing admin toolbar when viewing site"
|
4658 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4659 |
|
4660 |
+
#: settings.php:3013
|
4661 |
msgid "Enable debugging functions in admin toolbar"
|
4662 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4663 |
|
4664 |
+
#: settings.php:3015
|
4665 |
msgid "Debugging functions in admin toolbar"
|
4666 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4667 |
|
4668 |
+
#: settings.php:3022
|
4669 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4670 |
msgstr ""
|
4671 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4672 |
"zaslonih"
|
4673 |
|
4674 |
+
#: settings.php:3024
|
4675 |
msgid "Debugging functions on mobile screens"
|
4676 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4677 |
|
4678 |
+
#: settings.php:3031
|
4679 |
msgid ""
|
4680 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4681 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4690 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4691 |
"vedno omogočeno."
|
4692 |
|
4693 |
+
#: settings.php:3033
|
4694 |
msgid "Remote debugging"
|
4695 |
msgstr "Oddaljeno razhroščevanje"
|
4696 |
|
4697 |
+
#: settings.php:3040
|
4698 |
msgid ""
|
4699 |
"Disable translation to see original texts for the settings and messages in "
|
4700 |
"English"
|
4702 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4703 |
"angleščini"
|
4704 |
|
4705 |
+
#: settings.php:3042
|
4706 |
msgid "Disable translation"
|
4707 |
msgstr "Onemogoči prevod"
|
4708 |
|
4709 |
+
#: settings.php:3412
|
4710 |
msgid "Available positions for current theme"
|
4711 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4712 |
|
4713 |
+
#: settings.php:3413
|
4714 |
msgid "Error checking pages"
|
4715 |
msgstr "Napaka pri preverjanju strani"
|
4716 |
|
4717 |
+
#: settings.php:3416
|
4718 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4719 |
msgstr ""
|
4720 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4721 |
|
4722 |
+
#: settings.php:3416
|
4723 |
msgctxt "Button"
|
4724 |
msgid "Check"
|
4725 |
msgstr "Preveri"
|
4726 |
|
4727 |
+
#: settings.php:3423
|
4728 |
msgid "Position"
|
4729 |
msgstr "Položaj"
|
4730 |
|
4731 |
+
#: settings.php:3428
|
4732 |
msgid "Archive pages"
|
4733 |
msgstr "Strani arhiva"
|
4734 |
|
4735 |
+
#: settings.php:3487
|
4736 |
msgid ""
|
4737 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4738 |
msgstr ""
|
4739 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4740 |
|
4741 |
+
#: settings.php:3490 strings.php:248
|
4742 |
msgid "Position not checked yet"
|
4743 |
msgstr "Položaj še ni bil preverjen"
|
4744 |
|
4745 |
+
#: settings.php:3526
|
4746 |
msgid "Toggle active/all blocks"
|
4747 |
msgstr "Preklopi aktive/vse bloke"
|
4748 |
|
4749 |
+
#: settings.php:3530 strings.php:235
|
4750 |
msgid "Rearrange block order"
|
4751 |
msgstr "Preuredi vrstni red blokov"
|
4752 |
|
4753 |
+
#: settings.php:3535
|
4754 |
msgid "Save new block order"
|
4755 |
msgstr "Shrani vrstni red blokov"
|
4756 |
|
4757 |
+
#: settings.php:3561
|
4758 |
msgid "Toggle active/all ad units"
|
4759 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4760 |
|
4761 |
+
#: settings.php:3565
|
4762 |
msgid "Reload AdSense ad units"
|
4763 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4764 |
|
4765 |
+
#: settings.php:3569
|
4766 |
msgid "Clear authorization to access AdSense account"
|
4767 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4768 |
|
4769 |
+
#: settings.php:3573 settings.php:4426 settings.php:4493 strings.php:243
|
4770 |
msgid "Google AdSense Homepage"
|
4771 |
msgstr "Google AdSense Domača Stran"
|
4772 |
|
4773 |
+
#: settings.php:3589
|
4774 |
msgid "Switch to physical ads.txt file"
|
4775 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4776 |
|
4777 |
+
#: settings.php:3590
|
4778 |
msgid "Switch to virtual ads.txt file"
|
4779 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4780 |
|
4781 |
#. translators: %s: ads.txt
|
4782 |
+
#: settings.php:3600
|
4783 |
msgid "Open %s"
|
4784 |
msgstr "Odpri %s"
|
4785 |
|
4786 |
+
#: settings.php:3608
|
4787 |
msgid "Reload ads.txt file"
|
4788 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4789 |
|
4790 |
+
#: settings.php:3612 settings.php:4553
|
4791 |
msgid "Save"
|
4792 |
msgstr "Shrani"
|
4793 |
|
4794 |
#. translators: %s: Ad Inserter
|
4795 |
+
#: settings.php:3790
|
4796 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4797 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4798 |
|
4799 |
+
#: settings.php:3795 settings.php:3815 strings.php:224
|
4800 |
msgid "Warning"
|
4801 |
msgstr "Opozorilo"
|
4802 |
|
4803 |
#. translators: %s: Ad Inserter
|
4804 |
+
#: settings.php:3795
|
4805 |
msgid "%s virtual file ads.txt not found"
|
4806 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4807 |
|
4808 |
+
#: settings.php:3803
|
4809 |
msgid "IMPORTANT"
|
4810 |
msgstr "POMEMBNO"
|
4811 |
|
4812 |
+
#: settings.php:3803
|
4813 |
msgid "ads.txt file must be placed on the root domain"
|
4814 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4815 |
|
4816 |
+
#: settings.php:3808
|
4817 |
msgid "ads.txt file"
|
4818 |
msgstr "datoteka ads.txt"
|
4819 |
|
4820 |
+
#: settings.php:3808
|
4821 |
msgid "NOT WRITABLE"
|
4822 |
msgstr "NI ZAPISLJIVO"
|
4823 |
|
4824 |
+
#: settings.php:3815
|
4825 |
msgid "file %s not found"
|
4826 |
msgstr "datoteka %s ni najdena"
|
4827 |
|
4828 |
+
#: settings.php:3825
|
4829 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4830 |
msgstr ""
|
4831 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4832 |
|
4833 |
#. translators: %s: Ad Inserter
|
4834 |
+
#: settings.php:3831
|
4835 |
msgid "%s virtual ads.txt file"
|
4836 |
msgstr "%s navidezna datoteka ads.txt"
|
4837 |
|
4838 |
+
#: settings.php:3853
|
4839 |
msgid "Advertising system"
|
4840 |
msgstr "Oglaševalski sistem"
|
4841 |
|
4842 |
+
#: settings.php:3854
|
4843 |
msgid "Account ID"
|
4844 |
msgstr "ID Računa"
|
4845 |
|
4846 |
+
#: settings.php:3856
|
4847 |
msgid "Certification authority ID"
|
4848 |
msgstr "ID organa za potrjevanje"
|
4849 |
|
4850 |
+
#: settings.php:3871
|
4851 |
msgid "Account ID found in block and present in ads.txt"
|
4852 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4853 |
|
4854 |
+
#: settings.php:3875
|
4855 |
msgid "Account ID found in block but not present in ads.txt"
|
4856 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4857 |
|
4858 |
+
#: settings.php:4209
|
4859 |
msgid "Preview block"
|
4860 |
msgstr "Predogled bloka"
|
4861 |
|
4862 |
+
#: settings.php:4216
|
4863 |
msgid "Pause block"
|
4864 |
msgstr "Ustavite blok"
|
4865 |
|
4866 |
+
#: settings.php:4255
|
4867 |
msgid "Automatic insertion"
|
4868 |
msgstr "Samodejno vstavljanje"
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
+
#: settings.php:4256 settings.php:5225
|
4872 |
msgid "PHP code processing"
|
4873 |
msgstr "Procesiranje PHP kode"
|
4874 |
|
4875 |
+
#: settings.php:4258
|
4876 |
msgid "Device detection"
|
4877 |
msgstr "Zaznavanje naprave"
|
4878 |
|
4879 |
+
#: settings.php:4281
|
4880 |
msgid "No active block"
|
4881 |
msgstr "Noben aktiven blok"
|
4882 |
|
4883 |
+
#: settings.php:4282
|
4884 |
msgid "No block matches search keywords"
|
4885 |
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4886 |
|
4887 |
+
#: settings.php:4337
|
4888 |
msgid "Ad unit"
|
4889 |
msgstr "Enota"
|
4890 |
|
4891 |
+
#: settings.php:4339
|
4892 |
msgid "Slot ID"
|
4893 |
msgstr "ID mesta"
|
4894 |
|
4895 |
+
#: settings.php:4365
|
4896 |
msgid "Copy AdSense code"
|
4897 |
msgstr "Kopiraj kodo AdSense"
|
4898 |
|
4899 |
+
#: settings.php:4368
|
4900 |
msgid "Preview AdSense ad"
|
4901 |
msgstr "Predogled oglasa AdSense"
|
4902 |
|
4903 |
+
#: settings.php:4371
|
4904 |
msgid "Get AdSense code"
|
4905 |
msgstr "Pridobi kodo AdSense"
|
4906 |
|
4907 |
#. translators: %s: HTML tags
|
4908 |
+
#: settings.php:4403
|
4909 |
msgid ""
|
4910 |
"Please %s clear authorization %s with the button %s above and once again "
|
4911 |
"authorize access to your AdSense account."
|
4913 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4914 |
"avtorizirajte dostop do vašega računa AdSense."
|
4915 |
|
4916 |
+
#: settings.php:4422
|
4917 |
msgid "AdSense Integration"
|
4918 |
msgstr "Integracija AdSense"
|
4919 |
|
4920 |
+
#: settings.php:4424
|
4921 |
msgid "AdSense Integration - Step 2"
|
4922 |
msgstr "Integracija AdSense - Korak 2"
|
4923 |
|
4924 |
#. translators: %s: HTML tags
|
4925 |
+
#: settings.php:4430
|
4926 |
msgid ""
|
4927 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4928 |
"Authorization Code %s button to open a new window where you can allow "
|
4935 |
"Avtoriziraj. %s"
|
4936 |
|
4937 |
#. translators: %s: HTML tags
|
4938 |
+
#: settings.php:4437
|
4939 |
msgid ""
|
4940 |
"If you get error, can't access ad units or would like to use own Google API "
|
4941 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4946 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4947 |
|
4948 |
#. translators: %s: HTML tags
|
4949 |
+
#: settings.php:4439
|
4950 |
msgid ""
|
4951 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4952 |
"Authorization Code %s button to open a new window where you can allow "
|
4959 |
"gumb %s Avtoriziraj. %s"
|
4960 |
|
4961 |
#. translators: %s: HTML tags
|
4962 |
+
#: settings.php:4446
|
4963 |
msgid ""
|
4964 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4965 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4967 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4968 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4969 |
|
4970 |
+
#: settings.php:4457
|
4971 |
msgid "Get Authorization Code"
|
4972 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4973 |
|
4974 |
+
#: settings.php:4460
|
4975 |
msgid "Enter Authorization Code"
|
4976 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4977 |
|
4978 |
+
#: settings.php:4470
|
4979 |
msgid "Use own API IDs"
|
4980 |
msgstr "Uporabi lastne API ID-je"
|
4981 |
|
4982 |
+
#: settings.php:4472
|
4983 |
msgid "Clear and return to Step 1"
|
4984 |
msgstr "Odstrani in se vrni na Korak 1"
|
4985 |
|
4986 |
+
#: settings.php:4476
|
4987 |
msgid "Authorize"
|
4988 |
msgstr "Avtoriziraj"
|
4989 |
|
4990 |
+
#: settings.php:4492
|
4991 |
msgid "AdSense Integration - Step 1"
|
4992 |
msgstr "Integracija AdSense - Korak 1"
|
4993 |
|
4994 |
#. translators: %s: Ad Inserter
|
4995 |
+
#: settings.php:4496
|
4996 |
msgid ""
|
4997 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4998 |
"To do this you need to authorize %s to access your AdSense account. The "
|
5005 |
"Odjemalca in Skrivnost Odjemalca."
|
5006 |
|
5007 |
#. translators: %s: HTML tags
|
5008 |
+
#: settings.php:4505
|
5009 |
msgid "Go to %s Google APIs and Services console %s"
|
5010 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
5011 |
|
5012 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
5013 |
+
#: settings.php:4506
|
5014 |
msgid ""
|
5015 |
"Create %1$s project - if the project and IDs are already created click on "
|
5016 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
5019 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
5020 |
|
5021 |
#. translators: %s: HTML tags
|
5022 |
+
#: settings.php:4507
|
5023 |
msgid ""
|
5024 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
5025 |
"create a new project"
|
5028 |
"ustvaritev novega projekta"
|
5029 |
|
5030 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
5031 |
+
#: settings.php:4508
|
5032 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
5033 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
5034 |
|
5035 |
#. translators: %s: HTML tags
|
5036 |
+
#: settings.php:4509
|
5037 |
msgid ""
|
5038 |
"Click on project selection, wait for the project to be created and then and "
|
5039 |
"select %s as the current project"
|
5042 |
"izberite %s kot trenutni projekt"
|
5043 |
|
5044 |
#. translators: %s: HTML tags
|
5045 |
+
#: settings.php:4510
|
5046 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
5047 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
5048 |
|
5049 |
#. translators: %s: HTML tags
|
5050 |
+
#: settings.php:4511
|
5051 |
msgid "Search for adsense and enable %s"
|
5052 |
msgstr "Poiščite adsense in omogočite %s"
|
5053 |
|
5054 |
#. translators: %s: HTML tags
|
5055 |
+
#: settings.php:4512
|
5056 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
5057 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
5058 |
|
5059 |
#. translators: %s: HTML tags
|
5060 |
+
#: settings.php:4513
|
5061 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
5062 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
5063 |
|
5064 |
#. translators: %s: HTML tags
|
5065 |
+
#: settings.php:4514
|
5066 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
5067 |
msgstr ""
|
5068 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
5069 |
"podatki %s"
|
5070 |
|
5071 |
#. translators: %s: HTML tags
|
5072 |
+
#: settings.php:4515
|
5073 |
msgid "Click on %s What credentials do I need? %s"
|
5074 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
5075 |
|
5076 |
#. translators: %s: HTML tags
|
5077 |
+
#: settings.php:4516
|
5078 |
msgid ""
|
5079 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
5080 |
"Ad Inserter client %s"
|
5083 |
"vnestite %s Ad Inserter odjemalec %s"
|
5084 |
|
5085 |
#. translators: %s: HTML tags
|
5086 |
+
#: settings.php:4517
|
5087 |
msgid ""
|
5088 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
5089 |
"enter %s"
|
5092 |
"uporabnikom %s vnesite %s"
|
5093 |
|
5094 |
#. translators: %s: HTML tags
|
5095 |
+
#: settings.php:4518
|
5096 |
msgid "Click on %s Continue %s"
|
5097 |
msgstr "Kliknite na %s Nadaljuj %s"
|
5098 |
|
5099 |
#. translators: %s: HTML tags
|
5100 |
+
#: settings.php:4519
|
5101 |
msgid "Click on %s Done %s"
|
5102 |
msgstr "Kliknite na %s Končaj %s"
|
5103 |
|
5104 |
#. translators: %s: HTML tags
|
5105 |
+
#: settings.php:4520
|
5106 |
msgid ""
|
5107 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
5108 |
"secret %s"
|
5110 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
5111 |
"%s Skrivnost odjemalca %s"
|
5112 |
|
5113 |
+
#: settings.php:4521
|
5114 |
msgid "Copy them to the appropriate fields below"
|
5115 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
5116 |
|
5117 |
+
#: settings.php:4527
|
5118 |
msgid "Client ID"
|
5119 |
msgstr "ID odjemalca"
|
5120 |
|
5121 |
+
#: settings.php:4530
|
5122 |
msgid "Enter Client ID"
|
5123 |
msgstr "Vnesite ID odjemalca"
|
5124 |
|
5125 |
+
#: settings.php:4535
|
5126 |
msgid "Client secret"
|
5127 |
msgstr "Skrivnost odjemalca"
|
5128 |
|
5129 |
+
#: settings.php:4538
|
5130 |
msgid "Enter Client secret"
|
5131 |
msgstr "Vnesite Skrivnost odjemalca"
|
5132 |
|
5133 |
+
#: settings.php:4548
|
5134 |
msgid "Use default API IDs"
|
5135 |
msgstr "Uporabi privzete API ID-je"
|
5136 |
|
5137 |
+
#: settings.php:4712
|
5138 |
msgid "All posts"
|
5139 |
msgstr "Vsi prispevki"
|
5140 |
|
5141 |
+
#: settings.php:4713
|
5142 |
msgid "All static pages"
|
5143 |
msgstr "Vse statične strani"
|
5144 |
|
5145 |
+
#: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
|
5146 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5147 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5148 |
|
5149 |
+
#: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
|
5150 |
+
#: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
|
5151 |
+
#: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
|
5152 |
+
#: settings.php:5166 settings.php:5170
|
5153 |
msgid "Looking for AdSense alternative?"
|
5154 |
msgstr "Iščete alternativo za AdSense?"
|
5155 |
|
5156 |
+
#: settings.php:4928
|
5157 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5158 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5159 |
|
5160 |
+
#: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
|
5161 |
+
#: settings.php:5179
|
5162 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5163 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5164 |
|
5165 |
+
#: settings.php:4954 settings.php:5004
|
5166 |
msgid "Support plugin development"
|
5167 |
msgstr "Podprite razvoj vtičnika"
|
5168 |
|
5169 |
+
#: settings.php:4959 settings.php:5005
|
5170 |
msgid ""
|
5171 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5172 |
"reviewing the plugin on WordPres"
|
5174 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5175 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5176 |
|
5177 |
+
#: settings.php:4959
|
5178 |
msgctxt "Review Ad Inserter"
|
5179 |
msgid "Review"
|
5180 |
msgstr "Ocenite"
|
5181 |
|
5182 |
+
#: settings.php:4964
|
5183 |
msgid ""
|
5184 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5185 |
"rating the plugin on WordPres"
|
5187 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5188 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5189 |
|
5190 |
+
#: settings.php:4964
|
5191 |
msgctxt "Rate Ad Inserter"
|
5192 |
msgid "Rate"
|
5193 |
msgstr "Ocenite"
|
5194 |
|
5195 |
+
#: settings.php:4969
|
5196 |
msgid ""
|
5197 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5198 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5201 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5202 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5203 |
|
5204 |
+
#: settings.php:4969
|
5205 |
msgid "Donate"
|
5206 |
msgstr "Donirajte"
|
5207 |
|
5208 |
+
#: settings.php:4976 settings.php:5020
|
5209 |
msgid "Average rating of the plugin - Thank you!"
|
5210 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5211 |
|
5212 |
#. translators: %s: Ad Inserter, HTML tags
|
5213 |
+
#: settings.php:4987
|
5214 |
msgid ""
|
5215 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5216 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5225 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5226 |
"bi rekli 'Hvala'."
|
5227 |
|
5228 |
+
#: settings.php:5005
|
5229 |
msgid "Review"
|
5230 |
msgstr "Ocena"
|
5231 |
|
5232 |
+
#: settings.php:5009
|
5233 |
msgid "Ad Inserter on Twitter"
|
5234 |
msgstr "Ad Inserter na Twitter-ju"
|
5235 |
|
5236 |
+
#: settings.php:5010
|
5237 |
msgid "Ad Inserter on Facebook"
|
5238 |
msgstr "Ad Inserter na Facebook-u"
|
5239 |
|
5240 |
+
#: settings.php:5013
|
5241 |
msgid "Follow Ad Inserter"
|
5242 |
msgstr "Sledi Ad Inserter-ju"
|
5243 |
|
5244 |
#. translators: %s: HTML tags
|
5245 |
+
#: settings.php:5040
|
5246 |
msgid ""
|
5247 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5248 |
"and %s Common Settings %s pages"
|
5251 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5252 |
|
5253 |
#. translators: %s: HTML tags
|
5254 |
+
#: settings.php:5052
|
5255 |
msgid ""
|
5256 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5257 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
5262 |
"%s Infolinks %s oglasno kodo %s"
|
5263 |
|
5264 |
#. translators: %s: HTML tags
|
5265 |
+
#: settings.php:5073
|
5266 |
msgid ""
|
5267 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5268 |
"purchase you refer to us"
|
5271 |
"nakup, ki nam ga posredujete"
|
5272 |
|
5273 |
#. translators: %s: HTML tags
|
5274 |
+
#: settings.php:5080
|
5275 |
msgid ""
|
5276 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5277 |
"diagnose and fix the problem."
|
5280 |
"navodili za diagnozo in rešitvami za težave."
|
5281 |
|
5282 |
#. translators: %s: HTML tags
|
5283 |
+
#: settings.php:5084
|
5284 |
msgid ""
|
5285 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5286 |
"thread on the %s support forum. %s"
|
5288 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5289 |
"nit na %s podpornem forumu. %s"
|
5290 |
|
5291 |
+
#: settings.php:5110 settings.php:5174 settings.php:5178
|
5292 |
msgid "Code preview with visual CSS editor"
|
5293 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5294 |
|
5295 |
+
#: settings.php:5114 settings.php:5164
|
5296 |
msgid "A/B testing - Track ad impressions and clicks"
|
5297 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5298 |
|
5299 |
+
#: settings.php:5129
|
5300 |
msgid "Insert ads on AMP pages"
|
5301 |
msgstr "Vstavite oglase na AMP straneh"
|
5302 |
|
5303 |
+
#: settings.php:5137
|
5304 |
msgid "Ad blocking detection and content protection"
|
5305 |
msgstr "Zaznavanje blokiranja oglasov in zaščita vsebine"
|
5306 |
|
5307 |
+
#: settings.php:5187
|
5308 |
msgid "Looking for Pro Ad Management plugin?"
|
5309 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5310 |
|
5311 |
+
#: settings.php:5188
|
5312 |
msgid "To Optimally Monetize your WordPress website?"
|
5313 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5314 |
|
5315 |
#. Translators: %s: price of Ad Inserter Pro
|
5316 |
+
#: settings.php:5189
|
5317 |
msgid "Different license types starting from %s"
|
5318 |
msgstr "Različni tipi licenc začenši od %s"
|
5319 |
|
5320 |
#. translators: %s HTML tags
|
5321 |
+
#: settings.php:5192
|
5322 |
msgid "%s AdSense Integration %s"
|
5323 |
msgstr "%s Integracija AdSense %s"
|
5324 |
|
5325 |
#. translators: %s HTML tags
|
5326 |
+
#: settings.php:5193
|
5327 |
msgid "Syntax highlighting %s editor %s"
|
5328 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5329 |
|
5330 |
#. translators: %s HTML tags
|
5331 |
+
#: settings.php:5194
|
5332 |
msgid "%s Code preview %s with visual CSS editor"
|
5333 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5334 |
|
5335 |
#. translators: %s HTML tags
|
5336 |
+
#: settings.php:5195
|
5337 |
msgid "Simple user interface - all settings on a single page"
|
5338 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5339 |
|
5340 |
#. translators: %s HTML tags
|
5341 |
+
#: settings.php:5196
|
5342 |
msgid ""
|
5343 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5344 |
"image / excerpt"
|
5347 |
"%s / sliko / izvlečkom"
|
5348 |
|
5349 |
#. translators: %s HTML tags
|
5350 |
+
#: settings.php:5197
|
5351 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5352 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5353 |
|
5354 |
#. translators: %s HTML tags
|
5355 |
+
#: settings.php:5198
|
5356 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5357 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5358 |
|
5359 |
#. translators: %s HTML tags
|
5360 |
+
#: settings.php:5199
|
5361 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5362 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5363 |
|
5364 |
#. translators: %s HTML tags
|
5365 |
+
#: settings.php:5200
|
5366 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5367 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5368 |
|
5369 |
#. translators: %s HTML tags
|
5370 |
+
#: settings.php:5201
|
5371 |
msgid ""
|
5372 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5373 |
"selectors)"
|
5376 |
"selektorjev)"
|
5377 |
|
5378 |
#. translators: %s HTML tags
|
5379 |
+
#: settings.php:5202
|
5380 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5381 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5382 |
|
5383 |
#. translators: %s HTML tags
|
5384 |
+
#: settings.php:5203
|
5385 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5386 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5387 |
|
5388 |
#. translators: %s HTML tags
|
5389 |
+
#: settings.php:5204
|
5390 |
msgid ""
|
5391 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5392 |
"scrolls)"
|
5395 |
"se stran pomika)"
|
5396 |
|
5397 |
#. translators: %s HTML tags
|
5398 |
+
#: settings.php:5205
|
5399 |
msgid "%s Background ads %s with one or left and right background images"
|
5400 |
msgstr "%s Oglasi v ozdaju %s z eno ali levo in desno sliko ozadja"
|
5401 |
|
5402 |
#. translators: %s HTML tags
|
5403 |
+
#: settings.php:5206
|
5404 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5405 |
msgstr ""
|
5406 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5407 |
|
5408 |
#. translators: %s HTML tags
|
5409 |
+
#: settings.php:5207
|
5410 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5411 |
msgstr ""
|
5412 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5413 |
|
5414 |
#. translators: %s HTML tags
|
5415 |
+
#: settings.php:5208
|
5416 |
msgid ""
|
5417 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5418 |
"visible)"
|
5421 |
"postane viden)"
|
5422 |
|
5423 |
#. translators: %s HTML tags
|
5424 |
+
#: settings.php:5209
|
5425 |
msgid ""
|
5426 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5427 |
msgstr ""
|
5429 |
"strani)"
|
5430 |
|
5431 |
#. translators: %s HTML tags
|
5432 |
+
#: settings.php:5210
|
5433 |
msgid "Block %s alignment and style %s customizations"
|
5434 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5435 |
|
5436 |
#. translators: %s HTML tags
|
5437 |
+
#: settings.php:5211
|
5438 |
msgid ""
|
5439 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5440 |
"TOS)"
|
5442 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
+
#: settings.php:5212
|
5446 |
msgid ""
|
5447 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5448 |
"feeds"
|
5451 |
"virih"
|
5452 |
|
5453 |
#. translators: %s HTML tags
|
5454 |
+
#: settings.php:5213
|
5455 |
msgid "%s Ad rotation %s (works also with caching)"
|
5456 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5457 |
|
5458 |
#. translators: %s HTML tags
|
5459 |
+
#: settings.php:5214
|
5460 |
msgid "Create, edit and check %s ads.txt %s file"
|
5461 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5462 |
|
5463 |
#. translators: %s HTML tags
|
5464 |
+
#: settings.php:5215
|
5465 |
msgid ""
|
5466 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5467 |
"AdSense)"
|
5470 |
"AdSense)"
|
5471 |
|
5472 |
#. translators: %s HTML tags
|
5473 |
+
#: settings.php:5216
|
5474 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5475 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5476 |
|
5477 |
#. translators: %s HTML tags
|
5478 |
+
#: settings.php:5217
|
5479 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5480 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5481 |
|
5482 |
#. translators: %s HTML tags
|
5483 |
+
#: settings.php:5218
|
5484 |
msgid "Support for %s A/B testing %s"
|
5485 |
msgstr "Podpora za %s A/B testiranje %s"
|
5486 |
|
5487 |
#. translators: %s HTML tags
|
5488 |
+
#: settings.php:5219
|
5489 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5490 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5491 |
|
5492 |
#. translators: %s HTML tags
|
5493 |
+
#: settings.php:5220
|
5494 |
msgid "Click fraud %s protection %s"
|
5495 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5496 |
|
5497 |
#. translators: %s HTML tags
|
5498 |
+
#: settings.php:5221
|
5499 |
msgid "Support for %s lazy loading %s"
|
5500 |
msgstr "Podpora za %s leno nalaganje %s"
|
5501 |
|
5502 |
#. translators: %s HTML tags
|
5503 |
+
#: settings.php:5222
|
5504 |
msgid "Support for ads on %s AMP pages %s"
|
5505 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5506 |
|
5507 |
#. translators: %s HTML tags
|
5508 |
+
#: settings.php:5223
|
5509 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5510 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
+
#: settings.php:5224
|
5514 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5515 |
msgstr ""
|
5516 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5517 |
|
5518 |
#. translators: %s HTML tags
|
5519 |
+
#: settings.php:5226
|
5520 |
msgid "%s Banner %s code generator"
|
5521 |
msgstr "Generator kode za %s pasice %s"
|
5522 |
|
5523 |
#. translators: %s HTML tags
|
5524 |
+
#: settings.php:5227
|
5525 |
msgid "Support for %s header and footer %s code"
|
5526 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5527 |
|
5528 |
#. translators: %s HTML tags
|
5529 |
+
#: settings.php:5228
|
5530 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5531 |
msgstr ""
|
5532 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5533 |
|
5534 |
#. translators: %s HTML tags
|
5535 |
+
#: settings.php:5229
|
5536 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5537 |
msgstr ""
|
5538 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5539 |
"strežnika"
|
5540 |
|
5541 |
#. translators: %s HTML tags
|
5542 |
+
#: settings.php:5230
|
5543 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5544 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5545 |
|
5546 |
#. translators: %s HTML tags
|
5547 |
+
#: settings.php:5231
|
5548 |
msgid ""
|
5549 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5550 |
"protection"
|
5553 |
"vsebine"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
+
#: settings.php:5232
|
5557 |
msgid "%s Ad blocking statistics %s"
|
5558 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
+
#: settings.php:5233
|
5562 |
msgid ""
|
5563 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5564 |
"referrers, operating systems, browsers"
|
5567 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5568 |
|
5569 |
#. translators: %s HTML tags
|
5570 |
+
#: settings.php:5234
|
5571 |
msgid ""
|
5572 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5573 |
msgstr ""
|
5574 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5575 |
|
5576 |
#. translators: %s HTML tags
|
5577 |
+
#: settings.php:5235
|
5578 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5579 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5580 |
|
5581 |
#. translators: %s HTML tags
|
5582 |
+
#: settings.php:5236
|
5583 |
msgid "%s Import/Export %s block or plugin settings"
|
5584 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5585 |
|
5586 |
#. translators: %s HTML tags
|
5587 |
+
#: settings.php:5237
|
5588 |
msgid "%s Insertion scheduling %s with fallback option"
|
5589 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5590 |
|
5591 |
#. translators: %s HTML tags
|
5592 |
+
#: settings.php:5238
|
5593 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5594 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5595 |
|
5596 |
#. translators: %s HTML tags
|
5597 |
+
#: settings.php:5239
|
5598 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5599 |
msgstr ""
|
5600 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5601 |
|
5602 |
#. translators: %s HTML tags
|
5603 |
+
#: settings.php:5240
|
5604 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5605 |
msgstr ""
|
5606 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5607 |
|
5608 |
#. translators: %s HTML tags
|
5609 |
+
#: settings.php:5241
|
5610 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5611 |
msgstr ""
|
5612 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5613 |
|
5614 |
#. translators: %s HTML tags
|
5615 |
+
#: settings.php:5242
|
5616 |
msgid ""
|
5617 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5618 |
msgstr ""
|
5619 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5620 |
|
5621 |
#. translators: %s HTML tags
|
5622 |
+
#: settings.php:5243
|
5623 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5624 |
msgstr ""
|
5625 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5626 |
|
5627 |
#. translators: %s HTML tags
|
5628 |
+
#: settings.php:5244
|
5629 |
msgid "No ads on the settings page"
|
5630 |
msgstr "Stran z nastavitvami brez oglasov"
|
5631 |
|
5632 |
#. translators: %s HTML tags
|
5633 |
+
#: settings.php:5245
|
5634 |
msgid "Premium support"
|
5635 |
msgstr "Vrhunska podpora"
|
5636 |
|
5637 |
#. translators: %s HTML tags
|
5638 |
+
#: settings.php:5248
|
5639 |
msgid ""
|
5640 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5641 |
"website with many advertising features to automatically insert adverts on "
|
5662 |
"bodo ohranile)."
|
5663 |
|
5664 |
#. translators: %s HTML tags
|
5665 |
+
#: settings.php:5261
|
5666 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5667 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5668 |
|
5669 |
#. translators: %s HTML tags
|
5670 |
+
#: settings.php:5266
|
5671 |
msgid "Ads between posts"
|
5672 |
msgstr "Oglasi med prispevki"
|
5673 |
|
5674 |
#. translators: %s HTML tags
|
5675 |
+
#: settings.php:5267
|
5676 |
msgid "Ads between comments"
|
5677 |
msgstr "Oglasi med komentarji"
|
5678 |
|
5679 |
#. translators: %s HTML tags
|
5680 |
+
#: settings.php:5268
|
5681 |
msgid "Support via email"
|
5682 |
msgstr "Podpora prek elektronske pošte"
|
5683 |
|
5684 |
#. translators: %s HTML tags
|
5685 |
+
#: settings.php:5274
|
5686 |
msgid "%s Sticky positions %s"
|
5687 |
msgstr "%s Lepljivi položaji %s"
|
5688 |
|
5689 |
#. translators: %s HTML tags
|
5690 |
+
#: settings.php:5275
|
5691 |
msgid "%s Limit insertions %s"
|
5692 |
msgstr "%s Omeji vstavljanja %s"
|
5693 |
|
5694 |
#. translators: %s HTML tags
|
5695 |
+
#: settings.php:5276
|
5696 |
msgid "%s Clearance %s options"
|
5697 |
msgstr "Možnosti %s izogibanja %s"
|
5698 |
|
5699 |
#. translators: %s HTML tags
|
5700 |
+
#: settings.php:5282
|
5701 |
msgid "Ad rotation"
|
5702 |
msgstr "Vrtenje oglasov"
|
5703 |
|
5704 |
#. translators: %s HTML tags
|
5705 |
+
#: settings.php:5283
|
5706 |
msgid "%s A/B testing %s"
|
5707 |
msgstr "%s A/B testiranje %s"
|
5708 |
|
5709 |
#. translators: %s HTML tags
|
5710 |
+
#: settings.php:5284
|
5711 |
msgid "%s Ad tracking %s"
|
5712 |
msgstr "%s Sledenje oglasom %s"
|
5713 |
|
5714 |
#. translators: %s HTML tags
|
5715 |
+
#: settings.php:5290
|
5716 |
msgid "Support for %s AMP pages %s"
|
5717 |
msgstr "Podpora za %s AMP strani %s"
|
5718 |
|
5719 |
#. translators: %s HTML tags
|
5720 |
+
#: settings.php:5291
|
5721 |
msgid "%s Ad blocking detection %s"
|
5722 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5723 |
|
5724 |
#. translators: %s HTML tags
|
5725 |
+
#: settings.php:5292
|
5726 |
msgid "%s Mobile device detection %s"
|
5727 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5728 |
|
5729 |
#. translators: %s HTML tags
|
5730 |
+
#: settings.php:5299
|
5731 |
msgid "64 code blocks"
|
5732 |
msgstr "64 kodnih blokov"
|
5733 |
|
5734 |
#. translators: %s HTML tags
|
5735 |
+
#: settings.php:5300
|
5736 |
msgid "%s GEO targeting %s"
|
5737 |
msgstr "%s GEO ciljanje %s"
|
5738 |
|
5739 |
#. translators: %s HTML tags
|
5740 |
+
#: settings.php:5301
|
5741 |
msgid "%s Scheduling %s"
|
5742 |
msgstr "%s Urnik %s"
|
5743 |
|
6549 |
msgstr "Izberi ali naloži sliko pasice"
|
6550 |
|
6551 |
#: strings.php:254
|
6552 |
+
msgid "Select or upload background image"
|
6553 |
+
msgstr "Izberi ali naloži sliko ozadja"
|
6554 |
+
|
6555 |
+
#: strings.php:255
|
6556 |
msgid "Use this image"
|
6557 |
msgstr "Uporabi to sliko"
|
6558 |
|
6559 |
+
#: strings.php:256
|
6560 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6561 |
msgstr ""
|
6562 |
"Preklop na fizično datoteko ads.txt bo izbrisal navidezno datoreko ads.txt."
|
6563 |
|
6564 |
+
#: strings.php:258
|
6565 |
msgctxt "Monday"
|
6566 |
msgid "MO"
|
6567 |
msgstr "PO"
|
6568 |
|
6569 |
+
#: strings.php:259
|
6570 |
msgctxt "Tuesday"
|
6571 |
msgid "TU"
|
6572 |
msgstr "TO"
|
6573 |
|
6574 |
+
#: strings.php:260
|
6575 |
msgctxt "Wednesday"
|
6576 |
msgid "WE"
|
6577 |
msgstr "SR"
|
6578 |
|
6579 |
+
#: strings.php:261
|
6580 |
msgctxt "Thursday"
|
6581 |
msgid "TH"
|
6582 |
msgstr "ČE"
|
6583 |
|
6584 |
+
#: strings.php:262
|
6585 |
msgctxt "Friday"
|
6586 |
msgid "FR"
|
6587 |
msgstr "PE"
|
6588 |
|
6589 |
+
#: strings.php:263
|
6590 |
msgctxt "Saturday"
|
6591 |
msgid "SA"
|
6592 |
msgstr "SO"
|
6593 |
|
6594 |
+
#: strings.php:264
|
6595 |
msgctxt "Sunday"
|
6596 |
msgid "SU"
|
6597 |
msgstr "NE"
|
6598 |
|
6599 |
+
#: strings.php:280
|
6600 |
msgctxt "Scheduling"
|
6601 |
msgid "FALLBACK"
|
6602 |
msgstr "REZERVA"
|
6603 |
|
6604 |
+
#: strings.php:281
|
6605 |
msgid "Automatically placed by AdSense Auto ads code"
|
6606 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6607 |
|
6608 |
+
#: strings.php:286
|
6609 |
msgid "Add"
|
6610 |
msgstr "Dodaj"
|
6611 |
|
6612 |
+
#: strings.php:287
|
6613 |
msgctxt "Element"
|
6614 |
msgid "Parent"
|
6615 |
msgstr "Nadrejeni"
|
6616 |
|
6617 |
+
#: strings.php:288
|
6618 |
msgid "Cancel element selection"
|
6619 |
msgstr "Prekliči izbor HTML elementa"
|
6620 |
|
6621 |
+
#: strings.php:289
|
6622 |
msgid "Select parent element"
|
6623 |
msgstr "Izberi nadrejeni element"
|
6624 |
|
6625 |
+
#: strings.php:290
|
6626 |
msgid "CSS selector"
|
6627 |
msgstr "CSS selektor"
|
6628 |
|
6629 |
+
#: strings.php:291
|
6630 |
msgid "Use current selector"
|
6631 |
msgstr "Uporabi trenutni selektor"
|
6632 |
|
6633 |
+
#: strings.php:292
|
6634 |
msgid "ELEMENT"
|
6635 |
msgstr "ELEMENT"
|
6636 |
|
6637 |
+
#: strings.php:293
|
6638 |
msgid "PATH"
|
6639 |
msgstr "POT"
|
6640 |
|
6641 |
+
#: strings.php:294
|
6642 |
msgid "SELECTOR"
|
6643 |
msgstr "SELEKTOR"
|
6644 |
|
6650 |
"Upravljanje z oglasi z veliko naprednimi funkcijami za vstavljanje oglasov "
|
6651 |
"na optimalna mesta"
|
6652 |
|
6653 |
+
#~ msgid "Blacklist categories"
|
6654 |
+
#~ msgstr "Črni seznam kategorij"
|
6655 |
+
|
6656 |
+
#~ msgid "Whitelist categories"
|
6657 |
+
#~ msgstr "Beli seznam kategorij"
|
6658 |
+
|
6659 |
+
#~ msgid "Blacklist tags"
|
6660 |
+
#~ msgstr "Črni seznam oznak"
|
6661 |
+
|
6662 |
+
#~ msgid "Whitelist tags"
|
6663 |
+
#~ msgstr "Beli seznam oznak"
|
6664 |
+
|
6665 |
+
#~ msgid "Blacklist taxonomies"
|
6666 |
+
#~ msgstr "Črni seznam taksonomij"
|
6667 |
+
|
6668 |
+
#~ msgid "Whitelist taxonomies"
|
6669 |
+
#~ msgstr "Beli seznam taksonomij"
|
6670 |
+
|
6671 |
+
#~ msgid "Blacklist IDs"
|
6672 |
+
#~ msgstr "Črni seznam ID-jev"
|
6673 |
+
|
6674 |
+
#~ msgid "Whitelist IDs"
|
6675 |
+
#~ msgstr "Beli seznam ID-jev"
|
6676 |
+
|
6677 |
+
#~ msgid "Blacklist urls"
|
6678 |
+
#~ msgstr "Črni seznam url-jev"
|
6679 |
+
|
6680 |
+
#~ msgid "Whitelist urls"
|
6681 |
+
#~ msgstr "Beli seznam url-jev"
|
6682 |
+
|
6683 |
+
#~ msgid "Blacklist url parameters"
|
6684 |
+
#~ msgstr "Črni seznam url parametrov"
|
6685 |
+
|
6686 |
+
#~ msgid "Whitelist url parameters"
|
6687 |
+
#~ msgstr "Beli seznam url parametrov"
|
6688 |
+
|
6689 |
+
#~ msgid "Blacklist referers"
|
6690 |
+
#~ msgstr "Črni seznam napotiteljev"
|
6691 |
+
|
6692 |
+
#~ msgid "Whitelist referers"
|
6693 |
+
#~ msgstr "Beli seznam napotiteljev"
|
6694 |
+
|
6695 |
+
#~ msgid "Comma separated names (operating systems, browsers, devices)"
|
6696 |
+
#~ msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
|
6697 |
+
|
6698 |
+
#~ msgid "Blacklist clients"
|
6699 |
+
#~ msgstr "Črni seznam odjemalcev"
|
6700 |
+
|
6701 |
+
#~ msgid "Whitelist clients"
|
6702 |
+
#~ msgstr "Beli seznam odjemalcev"
|
6703 |
+
|
6704 |
#~ msgctxt "image size"
|
6705 |
#~ msgid "Contain"
|
6706 |
#~ msgstr "Vsebovano"
|
languages/ad-inserter.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Ad Inserter 2.6.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2020-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,474 +12,474 @@ msgstr ""
|
|
12 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
13 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
14 |
|
15 |
-
#: ad-inserter.php:
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#: ad-inserter.php:
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: ad-inserter.php:
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: ad-inserter.php:
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ad-inserter.php:
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: ad-inserter.php:
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: ad-inserter.php:
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: ad-inserter.php:
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
-
#: ad-inserter.php:
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
-
#: ad-inserter.php:
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
-
#: ad-inserter.php:
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
-
#: ad-inserter.php:
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
-
#: ad-inserter.php:
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
-
#: ad-inserter.php:
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
-
#: ad-inserter.php:
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
-
#: ad-inserter.php:
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
-
#: ad-inserter.php:
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: ad-inserter.php:
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
-
#: ad-inserter.php:
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
-
#: ad-inserter.php:
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: ad-inserter.php:
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: ad-inserter.php:
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: ad-inserter.php:
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: ad-inserter.php:
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: ad-inserter.php:
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: ad-inserter.php:
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
-
#: ad-inserter.php:
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
-
#: ad-inserter.php:
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: ad-inserter.php:
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
-
#: ad-inserter.php:
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: ad-inserter.php:
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: ad-inserter.php:
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: ad-inserter.php:
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: ad-inserter.php:
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
-
#: ad-inserter.php:
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
-
#: ad-inserter.php:
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: ad-inserter.php:
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: ad-inserter.php:
|
198 |
msgid ""
|
199 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
200 |
"theme"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: ad-inserter.php:
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
-
#: ad-inserter.php:
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: ad-inserter.php:
|
214 |
-
#: includes/preview.php:
|
215 |
-
#: includes/preview.php:
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: ad-inserter.php:
|
220 |
msgid "Name"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: ad-inserter.php:
|
224 |
msgid "Default insertion"
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: For this post or page
|
228 |
-
#: ad-inserter.php:
|
229 |
msgctxt "Page"
|
230 |
msgid "For this"
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: ad-inserter.php:
|
234 |
msgctxt "Post"
|
235 |
msgid "For this"
|
236 |
msgstr ""
|
237 |
|
238 |
-
#: ad-inserter.php:
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "pages"
|
241 |
msgstr ""
|
242 |
|
243 |
-
#: ad-inserter.php:
|
244 |
msgctxt "Enabled/disabled on all"
|
245 |
msgid "posts"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: ad-inserter.php:
|
249 |
msgid "Enabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Menu items
|
253 |
-
#: ad-inserter.php:
|
254 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
255 |
-
#: includes/functions.php:
|
256 |
msgid "Disabled"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: ad-inserter.php:
|
260 |
msgid "No individual exceptions"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: Not enabled for pages or posts
|
264 |
-
#: ad-inserter.php:
|
265 |
msgid "Not enabled for"
|
266 |
msgstr ""
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
-
#: ad-inserter.php:
|
270 |
msgid "No block has individual exceptions enabled"
|
271 |
msgstr ""
|
272 |
|
273 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
274 |
-
#: ad-inserter.php:
|
275 |
msgid ""
|
276 |
"Default insertion can be configured for each block on %1$s page - button "
|
277 |
"next to %2$s checkbox."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: ad-inserter.php:
|
281 |
msgid "Tag / Archive pages"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: ad-inserter.php:
|
285 |
msgid ""
|
286 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
287 |
"listed here to change default insertion for this post or page."
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: ad-inserter.php:
|
291 |
msgid ""
|
292 |
"This way you can individually enable or disable blocks on specific posts or "
|
293 |
"pages."
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: ad-inserter.php:
|
297 |
msgid "For more information check page %s"
|
298 |
msgstr ""
|
299 |
|
300 |
#. translators: Ad Inserter Exceptions documentation page
|
301 |
-
#: ad-inserter.php:
|
302 |
msgid "Individual Exceptions"
|
303 |
msgstr ""
|
304 |
|
305 |
-
#: ad-inserter.php:
|
306 |
msgid "STATIC PAGE"
|
307 |
msgstr ""
|
308 |
|
309 |
-
#: ad-inserter.php:
|
310 |
msgid "POST"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#: ad-inserter.php:
|
314 |
msgid "HOMEPAGE"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: ad-inserter.php:
|
318 |
msgid "CATEGORY PAGE"
|
319 |
msgstr ""
|
320 |
|
321 |
-
#: ad-inserter.php:
|
322 |
msgid "SEARCH PAGE"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: ad-inserter.php:
|
326 |
msgid "ARCHIVE PAGE"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: ad-inserter.php:
|
330 |
msgid "ERROR 404 PAGE"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: ad-inserter.php:
|
334 |
msgid "AJAX CALL"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: ad-inserter.php:
|
338 |
msgid "UNKNOWN PAGE TYPE"
|
339 |
msgstr ""
|
340 |
|
341 |
-
#: ad-inserter.php:
|
342 |
msgid "Click to delete ad blocking detection cokies"
|
343 |
msgstr ""
|
344 |
|
345 |
-
#: ad-inserter.php:
|
346 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
347 |
msgstr ""
|
348 |
|
349 |
#. translators: %s: AdSense Auto Ads
|
350 |
-
#: ad-inserter.php:
|
351 |
msgid ""
|
352 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
353 |
"positions"
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: ad-inserter.php:
|
357 |
msgid "Code for insertion"
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: ad-inserter.php:
|
361 |
msgid "character"
|
362 |
msgid_plural "characters"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
-
#: ad-inserter.php:
|
367 |
msgid "Header code"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: ad-inserter.php:
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: ad-inserter.php:
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
-
#: ad-inserter.php:
|
382 |
msgid "Footer code"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: ad-inserter.php:
|
386 |
msgctxt "Footer code"
|
387 |
msgid "DISABLED"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: ad-inserter.php:
|
391 |
msgid "JAVASCRIPT NOT WORKING"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: ad-inserter.php:
|
395 |
msgid "NO JAVASCRIPT ERRORS"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: ad-inserter.php:
|
399 |
msgid "JAVASCRIPT ERRORS"
|
400 |
msgstr ""
|
401 |
|
402 |
#. translators: block name (block with default settings)
|
403 |
-
#: ad-inserter.php:
|
404 |
msgctxt "Block name"
|
405 |
msgid "Default"
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
-
#: ad-inserter.php:
|
410 |
msgid "Error importing %s settings."
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: ad-inserter.php:
|
414 |
msgid "Error importing settings for block"
|
415 |
msgid_plural "Error importing settings for blocks:"
|
416 |
msgstr[0] ""
|
417 |
msgstr[1] ""
|
418 |
|
419 |
-
#: ad-inserter.php:
|
420 |
msgid "Settings saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
-
#: ad-inserter.php:
|
425 |
msgid "Invalid data received - %s settings not saved."
|
426 |
msgstr ""
|
427 |
|
428 |
-
#: ad-inserter.php:
|
429 |
msgid "Settings cleared."
|
430 |
msgstr ""
|
431 |
|
432 |
#. Translators: Post/Static page must have between X and Y words
|
433 |
-
#: ad-inserter.php:
|
434 |
-
#: settings.php:
|
435 |
msgid "word"
|
436 |
msgid_plural "words"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
-
#: ad-inserter.php:
|
441 |
msgid "HTML TAGS REMOVED"
|
442 |
msgstr ""
|
443 |
|
444 |
-
#: ad-inserter.php:
|
445 |
msgid "BEFORE COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
-
#: ad-inserter.php:
|
449 |
msgid "AFTER COMMENTS"
|
450 |
msgstr ""
|
451 |
|
452 |
-
#: ad-inserter.php:
|
453 |
msgid "BETWEEN COMMENTS"
|
454 |
msgstr ""
|
455 |
|
456 |
-
#: ad-inserter.php:
|
457 |
msgctxt "category name"
|
458 |
msgid "Uncategorized"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: ad-inserter.php:
|
462 |
msgid "requires WordPress 4.6 or newer"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: ad-inserter.php:
|
466 |
msgid "Please update!"
|
467 |
msgstr ""
|
468 |
|
469 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
470 |
#. name with HTML tags will be added)
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid "Thank you for installing"
|
473 |
msgstr ""
|
474 |
|
475 |
#. translators: Opt-in message: %s: HTML tags
|
476 |
-
#: ad-inserter.php:
|
477 |
msgid ""
|
478 |
"We would like to %s track its usage %s on your site. This is completely "
|
479 |
"optional and can be disabled at any time."
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: ad-inserter.php:
|
483 |
msgid ""
|
484 |
"We don't record any sensitive data, only information regarding the WordPress "
|
485 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -487,7 +487,7 @@ msgid ""
|
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: Deactivation message: %s: HTML tags
|
490 |
-
#: ad-inserter.php:
|
491 |
msgid ""
|
492 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
493 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -495,57 +495,57 @@ msgid ""
|
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: %s: Ad Inserter
|
498 |
-
#: ad-inserter.php:
|
499 |
msgid "%s block."
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
-
#: ad-inserter.php:
|
504 |
msgid "Processing log"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "Dummy widget"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
-
#: ad-inserter.php:
|
514 |
msgid "Debugging tools"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: block status (widget title)
|
518 |
-
#: ad-inserter.php:
|
519 |
msgctxt "block"
|
520 |
msgid "PAUSED"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#: ad-inserter.php:
|
524 |
msgid "WIDGET DISABLED"
|
525 |
msgstr ""
|
526 |
|
527 |
-
#: ad-inserter.php:
|
528 |
msgid "Unknown block"
|
529 |
msgstr ""
|
530 |
|
531 |
-
#: ad-inserter.php:
|
532 |
-
#: includes/functions.old.php:3186 includes/functions.php:
|
533 |
-
#: settings.php:
|
534 |
msgid "Title"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ad-inserter.php:
|
538 |
msgctxt "Widget"
|
539 |
msgid "Sticky"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: ad-inserter.php:
|
543 |
msgid ""
|
544 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
545 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: ad-inserter.php:
|
549 |
msgid ""
|
550 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
551 |
"will clear all settings that are available only in the Pro version "
|
@@ -553,544 +553,544 @@ msgid ""
|
|
553 |
msgstr ""
|
554 |
|
555 |
#. translators: %s: Ad Inserter
|
556 |
-
#: class.php:
|
557 |
msgid "PHP error in %s block"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: class.php:
|
561 |
msgid "Counters"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: class.php:
|
565 |
msgid "Content"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: class.php:
|
569 |
msgid "Excerpt"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: class.php:
|
573 |
msgid "Before post"
|
574 |
msgstr ""
|
575 |
|
576 |
-
#: class.php:
|
577 |
msgid "After post"
|
578 |
msgstr ""
|
579 |
|
580 |
-
#: class.php:
|
581 |
msgid "Between posts"
|
582 |
msgstr ""
|
583 |
|
584 |
-
#: class.php:
|
585 |
msgid "Widget"
|
586 |
msgstr ""
|
587 |
|
588 |
-
#: class.php:
|
589 |
msgid "PHP function call"
|
590 |
msgstr ""
|
591 |
|
592 |
#. Translators: %s: custom hook name
|
593 |
-
#: class.php:
|
594 |
msgid "Custom hook %s call"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: class.php:
|
598 |
msgid "AJAX REQUEST"
|
599 |
msgstr ""
|
600 |
|
601 |
-
#: class.php:
|
602 |
msgid "Ajax request for block in iframe"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: class.php:
|
606 |
msgid "Ajax request url, click to open it in a new tab"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: class.php:
|
610 |
msgid "IN THE LOOP"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "YES"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "NO"
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgid "BLOCK"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgctxt "block or widget"
|
627 |
msgid "INSERTED BUT NOT VISIBLE"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgctxt "viewports"
|
632 |
msgid "ALL"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: class.php:
|
636 |
msgctxt "Block"
|
637 |
msgid "HIDDEN"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: class.php:
|
641 |
msgctxt "Block"
|
642 |
msgid "VISIBLE"
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: class.php:
|
646 |
msgid "ACTIVE GROUPS"
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: class.php:
|
650 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
651 |
msgstr ""
|
652 |
|
653 |
#. translators: %s: list parameters and type
|
654 |
-
#: class.php:
|
655 |
msgid "parameters='%s' type='%s'"
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: %s: list parameters and type
|
659 |
-
#: class.php:
|
660 |
msgid "referers='%s' type='%s'"
|
661 |
msgstr ""
|
662 |
|
663 |
#. translators: %s: list parameters and type
|
664 |
-
#: class.php:
|
665 |
msgid "clients='%s' type='%s'"
|
666 |
msgstr ""
|
667 |
|
668 |
#. translators: %s: list parameters and type
|
669 |
-
#: class.php:
|
670 |
msgid "countries='%s' type='%s'"
|
671 |
msgstr ""
|
672 |
|
673 |
#. translators: %s: list parameters and type
|
674 |
-
#: class.php:
|
675 |
msgid "ip addresses='%s' type='%s'"
|
676 |
msgstr ""
|
677 |
|
678 |
-
#: class.php:
|
679 |
msgid "viewport='%s' type='%s'"
|
680 |
msgstr ""
|
681 |
|
682 |
-
#: class.php:
|
683 |
msgid "BEFORE"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#: class.php:
|
687 |
msgid "PREPEND CONTENT"
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: class.php:
|
691 |
msgid "APPEND CONTENT"
|
692 |
msgstr ""
|
693 |
|
694 |
-
#: class.php:
|
695 |
msgid "REPLACE CONTENT"
|
696 |
msgstr ""
|
697 |
|
698 |
-
#: class.php:
|
699 |
msgid "REPLACE ELEMENT"
|
700 |
msgstr ""
|
701 |
|
702 |
-
#: class.php:
|
703 |
msgid "AFTER"
|
704 |
msgstr ""
|
705 |
|
706 |
-
#: class.php:
|
707 |
msgid "Code"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: class.php:
|
711 |
msgid "for block"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#: class.php:
|
715 |
msgid ""
|
716 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
717 |
"extension for PHP."
|
718 |
msgstr ""
|
719 |
|
720 |
-
#: includes/editor.php:
|
721 |
-
#: includes/preview.php:
|
722 |
msgid "Use"
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: includes/editor.php:
|
726 |
msgid "Reset"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: includes/editor.php:
|
730 |
-
#: includes/preview.php:
|
731 |
msgid "Cancel"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: includes/editor.php:
|
735 |
msgid "Visual Code Editor"
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: includes/editor.php:
|
739 |
-
#: includes/preview.php:
|
740 |
msgid ""
|
741 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
742 |
"blockers."
|
743 |
msgstr ""
|
744 |
|
745 |
-
#: includes/editor.php:
|
746 |
msgid "Error loading page"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: includes/editor.php:
|
750 |
-
#: includes/preview.php:
|
751 |
msgid "PAGE BLOCKED"
|
752 |
msgstr ""
|
753 |
|
754 |
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
755 |
-
#: includes/functions.php:
|
756 |
msgid "%d of %d names shown"
|
757 |
msgstr ""
|
758 |
|
759 |
#. translators: %s: name filter
|
760 |
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
761 |
-
#: includes/functions.php:
|
762 |
msgid "No name matches filter"
|
763 |
msgstr ""
|
764 |
|
765 |
#. translators: %s: Ad Inserter Pro
|
766 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
767 |
-
#: includes/functions.php:
|
768 |
msgid ""
|
769 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
770 |
"be imported for all blocks and settings"
|
771 |
msgstr ""
|
772 |
|
773 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
774 |
-
#: includes/functions.php:
|
775 |
msgid "Import Settings for"
|
776 |
msgstr ""
|
777 |
|
778 |
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
779 |
-
#: includes/functions.php:
|
780 |
msgid "Saved settings for"
|
781 |
msgstr ""
|
782 |
|
783 |
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
784 |
-
#: includes/functions.php:
|
785 |
msgid "License Key"
|
786 |
msgstr ""
|
787 |
|
788 |
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
789 |
-
#: includes/functions.php:
|
790 |
msgid "License Key for"
|
791 |
msgstr ""
|
792 |
|
793 |
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
794 |
-
#: includes/functions.php:
|
795 |
msgid "Open license page"
|
796 |
msgstr ""
|
797 |
|
798 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
799 |
-
#: includes/functions.php:
|
800 |
msgid "Hide license key"
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
804 |
-
#: includes/functions.php:
|
805 |
msgid "Hide key"
|
806 |
msgstr ""
|
807 |
|
808 |
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
809 |
-
#: includes/functions.php:
|
810 |
msgid "Main content element"
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
814 |
-
#: includes/functions.php:
|
815 |
msgid ""
|
816 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
817 |
"Leave empty unless position is not properly calculated."
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
821 |
-
#: includes/functions.php:
|
822 |
msgid "Open HTML element selector"
|
823 |
msgstr ""
|
824 |
|
825 |
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
826 |
-
#: includes/functions.php:
|
827 |
msgid "Lazy loading offset"
|
828 |
msgstr ""
|
829 |
|
830 |
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
831 |
-
#: includes/functions.php:
|
832 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
833 |
msgstr ""
|
834 |
|
835 |
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
836 |
-
#: includes/functions.php:
|
837 |
msgid "Export / Import Block Settings"
|
838 |
msgstr ""
|
839 |
|
840 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
841 |
-
#: includes/functions.php:
|
842 |
msgid "Track impressions and clicks for this block"
|
843 |
msgstr ""
|
844 |
|
845 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
846 |
-
#: includes/functions.php:
|
847 |
msgid " - global tracking disabled"
|
848 |
msgstr ""
|
849 |
|
850 |
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
851 |
-
#: includes/functions.php:
|
852 |
msgid "Generate PDF report"
|
853 |
msgstr ""
|
854 |
|
855 |
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
856 |
-
#: includes/functions.php:
|
857 |
msgid "Open public report"
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
861 |
-
#: includes/functions.php:
|
862 |
msgid "Toggle Ad Blocking Statistics"
|
863 |
msgstr ""
|
864 |
|
865 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
866 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
867 |
-
#: includes/functions.php:
|
868 |
msgid "Toggle Statistics"
|
869 |
msgstr ""
|
870 |
|
871 |
-
#: includes/functions-check-now.php:528 includes/functions.php:
|
872 |
msgid "Pin list"
|
873 |
msgstr ""
|
874 |
|
875 |
#. translators: %s: Ad Inserter Pro
|
876 |
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
877 |
-
#: includes/functions.php:
|
878 |
msgid "%s license key is not set. Continue?"
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: %s: Ad Inserter Pro
|
882 |
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
883 |
-
#: includes/functions.php:
|
884 |
msgid "Invalid %s license key. Continue?"
|
885 |
msgstr ""
|
886 |
|
887 |
#. translators: %s: Ad Inserter Pro
|
888 |
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
889 |
-
#: includes/functions.php:
|
890 |
msgid "%s license overused. Continue?"
|
891 |
msgstr ""
|
892 |
|
893 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
894 |
-
#: includes/functions.php:
|
895 |
msgid "Save Settings"
|
896 |
msgstr ""
|
897 |
|
898 |
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
899 |
-
#: includes/functions.php:
|
900 |
msgid "Horizontal position"
|
901 |
msgstr ""
|
902 |
|
903 |
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
904 |
-
#: includes/functions.php:
|
905 |
msgid ""
|
906 |
"Horizontal margin from the content or screen edge, empty means default value "
|
907 |
"from CSS"
|
908 |
msgstr ""
|
909 |
|
910 |
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
911 |
-
#: includes/functions.php:
|
912 |
msgid "Vertical position"
|
913 |
msgstr ""
|
914 |
|
915 |
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
916 |
-
#: includes/functions.php:
|
917 |
msgid ""
|
918 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
919 |
"value from CSS"
|
920 |
msgstr ""
|
921 |
|
922 |
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
923 |
-
#: includes/functions.php:
|
924 |
msgid "Animation"
|
925 |
msgstr ""
|
926 |
|
927 |
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
928 |
-
#: includes/functions.php:
|
929 |
msgid "Trigger"
|
930 |
msgstr ""
|
931 |
|
932 |
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
933 |
-
#: includes/functions.php:
|
934 |
msgid ""
|
935 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
936 |
"(#id or .class) becomes visible"
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
940 |
-
#: includes/functions.php:
|
941 |
msgid "Offset"
|
942 |
msgstr ""
|
943 |
|
944 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
945 |
-
#: includes/functions.php:
|
946 |
msgid "Offset of trigger element"
|
947 |
msgstr ""
|
948 |
|
949 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
950 |
-
#: includes/functions.php:
|
951 |
msgid "Delay"
|
952 |
msgstr ""
|
953 |
|
954 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
955 |
-
#: includes/functions.php:
|
956 |
msgid "Delay animation after trigger condition"
|
957 |
msgstr ""
|
958 |
|
959 |
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
960 |
-
#: includes/functions.php:
|
961 |
msgid "Trigger once"
|
962 |
msgstr ""
|
963 |
|
964 |
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
965 |
-
#: includes/functions.php:
|
966 |
msgid "Trigger animation only once"
|
967 |
msgstr ""
|
968 |
|
969 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
970 |
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
971 |
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
972 |
-
#: includes/functions.php:
|
973 |
-
#: includes/functions.php:
|
974 |
msgid "Tracking is globally disabled"
|
975 |
msgstr ""
|
976 |
|
977 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
978 |
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
979 |
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
980 |
-
#: includes/functions.php:
|
981 |
-
#: includes/functions.php:
|
982 |
msgid "Tracking for this block is disabled"
|
983 |
msgstr ""
|
984 |
|
985 |
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
986 |
-
#: includes/functions.php:
|
987 |
msgid "Double click to toggle controls in public reports"
|
988 |
msgstr ""
|
989 |
|
990 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
991 |
-
#: includes/functions.php:
|
992 |
-
#: settings.php:
|
993 |
msgid "Loading..."
|
994 |
msgstr ""
|
995 |
|
996 |
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
997 |
-
#: includes/functions.php:
|
998 |
msgid ""
|
999 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1000 |
"all data for this block"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
1004 |
-
#: includes/functions.php:
|
1005 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1009 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1010 |
-
#: includes/functions.php:
|
1011 |
msgid "Load data for last month"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1015 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1016 |
-
#: includes/functions.php:
|
1017 |
msgid "Last Month"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1021 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1022 |
-
#: includes/functions.php:
|
1023 |
msgid "Load data for this month"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1027 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1028 |
-
#: includes/functions.php:
|
1029 |
msgid "This Month"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1033 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1034 |
-
#: includes/functions.php:
|
1035 |
msgid "Load data for this year"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1039 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1040 |
-
#: includes/functions.php:
|
1041 |
msgid "This Year"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1045 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1046 |
-
#: includes/functions.php:
|
1047 |
msgid "Load data for the last 15 days"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1051 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1052 |
-
#: includes/functions.php:
|
1053 |
msgid "Load data for the last 30 days"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1057 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1058 |
-
#: includes/functions.php:
|
1059 |
msgid "Load data for the last 90 days"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1063 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1064 |
-
#: includes/functions.php:
|
1065 |
msgid "Load data for the last 180 days"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1069 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1070 |
-
#: includes/functions.php:
|
1071 |
msgid "Load data for the last 365 days"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1075 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1076 |
-
#: includes/functions.php:
|
1077 |
msgid "Load data for the selected range"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1081 |
-
#: includes/functions.php:
|
1082 |
msgid ""
|
1083 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1084 |
"imported for this block"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1088 |
-
#: includes/functions.php:
|
1089 |
msgid "Import settings for block"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1093 |
-
#: includes/functions.php:
|
1094 |
msgid ""
|
1095 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1096 |
"is also checked, the name from encoded settings below will be imported for "
|
@@ -1098,170 +1098,170 @@ msgid ""
|
|
1098 |
msgstr ""
|
1099 |
|
1100 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1101 |
-
#: includes/functions.php:
|
1102 |
msgid "Import block name"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1106 |
-
#: includes/functions.php:
|
1107 |
msgid "Saved settings for block"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1111 |
-
#: includes/functions.php:
|
1112 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1116 |
-
#: includes/functions.php:
|
1117 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1121 |
-
#: includes/functions.php:
|
1122 |
msgid "Clear All Statistics Data"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1126 |
-
#: includes/functions.php:
|
1127 |
msgid "Toggle country/city editor"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1131 |
-
#: includes/functions.php:
|
1132 |
msgid "IP Addresses"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1136 |
-
#: includes/functions.php:
|
1137 |
msgid "Toggle IP address editor"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1141 |
-
#: includes/functions.php:
|
1142 |
msgid ""
|
1143 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1144 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1148 |
-
#: includes/functions.php:
|
1149 |
msgid "Blacklist IP addresses"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1153 |
-
#: includes/functions.php:
|
1154 |
msgid "Whitelist IP addresses"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1158 |
-
#: includes/functions.php:
|
1159 |
msgid "Countries"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1163 |
-
#: includes/functions.php:
|
1164 |
msgid "Cities"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1168 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1169 |
-
#: includes/functions.php:
|
1170 |
msgid "Toggle country editor"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1174 |
-
#: includes/functions.php:
|
1175 |
msgid "Toggle city editor"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1179 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1180 |
-
#: includes/functions.php:
|
1181 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1185 |
-
#: includes/functions.php:
|
1186 |
msgid "Blacklist countries"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1190 |
-
#: includes/functions.php:
|
1191 |
msgid "Whitelist countries"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1195 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1196 |
-
#: includes/functions.php:
|
1197 |
msgid "Enter license key"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
#. translators: %s: Ad Inserter Pro
|
1201 |
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1202 |
-
#: includes/functions.php:
|
1203 |
msgid ""
|
1204 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1205 |
"disabled."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#. translators: %s: Ad Inserter Pro
|
1209 |
-
#: includes/functions-check-now.php:1402 includes/functions.php:
|
1210 |
msgid "Warning: %s plugin update server is not accessible"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
#. translators: updates are not available
|
1214 |
-
#: includes/functions-check-now.php:1404 includes/functions.php:
|
1215 |
msgid "updates"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
#. translators: updates are not available
|
1219 |
-
#: includes/functions-check-now.php:1406 includes/functions.php:
|
1220 |
msgid "are not available"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1224 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1225 |
-
#: includes/functions.php:
|
1226 |
msgid "Check license key"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#. translators: %s: Ad Inserter Pro
|
1230 |
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1231 |
-
#: includes/functions.php:
|
1232 |
msgid "Invalid %s license key."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#. translators: %s: Ad Inserter Pro
|
1236 |
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1237 |
-
#: includes/functions.php:
|
1238 |
msgid "%s license expired. Plugin updates are disabled."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1242 |
-
#: includes/functions.php:
|
1243 |
msgid "Renew license"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#. translators: %s: Ad Inserter Pro
|
1247 |
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1248 |
-
#: includes/functions.php:
|
1249 |
msgid "%s license overused. Plugin updates are disabled."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1253 |
-
#: includes/functions.php:
|
1254 |
msgid "Manage licenses"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1258 |
-
#: includes/functions.php:
|
1259 |
msgid "Upgrade license"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1263 |
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1264 |
-
#: includes/functions.php:
|
1265 |
msgid ""
|
1266 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1267 |
"limited and updates are disabled."
|
@@ -1269,13 +1269,13 @@ msgstr ""
|
|
1269 |
|
1270 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1271 |
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1272 |
-
#: includes/functions.php:
|
1273 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1277 |
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1278 |
-
#: includes/functions.php:
|
1279 |
msgid ""
|
1280 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1281 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
@@ -1283,35 +1283,35 @@ msgstr ""
|
|
1283 |
|
1284 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1285 |
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1286 |
-
#: includes/functions.php:
|
1287 |
msgid ""
|
1288 |
"During the license period and 30 days after the license has expired we offer "
|
1289 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: includes/functions-check-now.php:1725 includes/functions.old.php:1652
|
1293 |
-
#: includes/functions.php:
|
1294 |
msgid "No, thank you."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: includes/functions-check-now.php:1728 includes/functions.old.php:1655
|
1298 |
-
#: includes/functions.php:
|
1299 |
msgid "Not now, maybe later."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1303 |
-
#: includes/functions.php:
|
1304 |
msgid "Renew the licence"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1308 |
-
#: includes/functions.php:
|
1309 |
msgid "Update license status"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1313 |
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1314 |
-
#: includes/functions.php:
|
1315 |
msgid ""
|
1316 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1317 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
@@ -1319,121 +1319,121 @@ msgstr ""
|
|
1319 |
|
1320 |
#. Translators: %s: HTML tag
|
1321 |
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1322 |
-
#: includes/functions.php:
|
1323 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1327 |
-
#: includes/functions.php:
|
1328 |
msgid "Geolocation"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1332 |
-
#: includes/functions.php:
|
1333 |
msgid "Exceptions"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1337 |
-
#: includes/functions.php:
|
1338 |
msgid "Multisite"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1342 |
-
#: includes/functions.php:
|
1343 |
msgid "Tracking"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
#. translators: %d: days, hours, minutes
|
1347 |
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1348 |
-
#: includes/functions.php:
|
1349 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1353 |
#. HTML code for long dash separator
|
1354 |
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1355 |
-
#: includes/functions.php:
|
1356 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1360 |
-
#: includes/functions.php:
|
1361 |
msgid "Expired"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1365 |
-
#: includes/functions.php:
|
1366 |
-
#: settings.php:
|
1367 |
msgid "and"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1371 |
-
#: includes/functions.php:
|
1372 |
msgid "fallback"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1376 |
-
#: includes/functions.php:
|
1377 |
msgid "Block to be used when scheduling expires"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1381 |
-
#: includes/functions.php:
|
1382 |
msgid "Load in iframe"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1386 |
-
#: includes/functions.php:
|
1387 |
msgid "Width"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1391 |
-
#: includes/functions.php:
|
1392 |
msgid "iframe width, empty means full width (100%)"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1396 |
-
#: includes/functions.php:
|
1397 |
msgid "Height"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1401 |
-
#: includes/functions.php:
|
1402 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1406 |
-
#: includes/functions.php:
|
1407 |
msgid "Ad label in iframe"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1411 |
-
#: includes/functions.php:
|
1412 |
msgid "Preview iframe code"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1416 |
-
#: includes/functions.php:
|
1417 |
-
#: settings.php:
|
1418 |
msgid "Preview"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1422 |
-
#: includes/functions.php:
|
1423 |
msgid "Limits"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1427 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1428 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1429 |
-
#: includes/functions.php:
|
1430 |
-
#: includes/functions.php:
|
1431 |
msgid "Ad Blocking"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1435 |
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1436 |
-
#: includes/functions.php:
|
1437 |
msgid ""
|
1438 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1439 |
"for tracking!"
|
@@ -1442,25 +1442,25 @@ msgstr ""
|
|
1442 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1443 |
#. header
|
1444 |
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1445 |
-
#: includes/functions.php:
|
1446 |
msgid ""
|
1447 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1448 |
"enabled and automatic insertion %6$s!"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1452 |
-
#: includes/functions.php:
|
1453 |
msgid "Click fraud protection is globally disabled"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1457 |
-
#: includes/functions.php:
|
1458 |
msgid "Max clicks per time period are not defined"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#. Translators: Max n impressions
|
1462 |
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1463 |
-
#: includes/functions.php:
|
1464 |
msgid "General limits"
|
1465 |
msgstr ""
|
1466 |
|
@@ -1468,8 +1468,8 @@ msgstr ""
|
|
1468 |
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1469 |
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1470 |
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1471 |
-
#: includes/functions.php:
|
1472 |
-
#: includes/functions.php:
|
1473 |
msgid "Current value"
|
1474 |
msgstr ""
|
1475 |
|
@@ -1489,15 +1489,15 @@ msgstr ""
|
|
1489 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1490 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1491 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1492 |
-
#: includes/functions.php:
|
1493 |
-
#: includes/functions.php:
|
1494 |
-
#: includes/functions.php:
|
1495 |
-
#: includes/functions.php:
|
1496 |
msgid "Max"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1500 |
-
#: includes/functions.php:
|
1501 |
msgid ""
|
1502 |
"Maximum number of impressions for this block. Empty means no general "
|
1503 |
"impression limit."
|
@@ -1511,15 +1511,15 @@ msgstr ""
|
|
1511 |
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1512 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1513 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1514 |
-
#: includes/functions.php:
|
1515 |
-
#: includes/functions.php:
|
1516 |
msgid "impression"
|
1517 |
msgid_plural "impressions"
|
1518 |
msgstr[0] ""
|
1519 |
msgstr[1] ""
|
1520 |
|
1521 |
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1522 |
-
#: includes/functions.php:
|
1523 |
msgid ""
|
1524 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1525 |
msgstr ""
|
@@ -1532,14 +1532,14 @@ msgstr ""
|
|
1532 |
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1533 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1534 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1535 |
-
#: includes/functions.php:
|
1536 |
-
#: includes/functions.php:
|
1537 |
msgid "per"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1541 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1542 |
-
#: includes/functions.php:
|
1543 |
msgid "Time period in days. Empty means no time limit."
|
1544 |
msgstr ""
|
1545 |
|
@@ -1554,9 +1554,9 @@ msgstr ""
|
|
1554 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1555 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1556 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1557 |
-
#: includes/functions.php:
|
1558 |
-
#: includes/functions.php:
|
1559 |
-
#: includes/functions.php:
|
1560 |
#: strings.php:219 strings.php:220 strings.php:221 strings.php:222
|
1561 |
#: strings.php:223
|
1562 |
msgid "day"
|
@@ -1565,7 +1565,7 @@ msgstr[0] ""
|
|
1565 |
msgstr[1] ""
|
1566 |
|
1567 |
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1568 |
-
#: includes/functions.php:
|
1569 |
msgid ""
|
1570 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1571 |
msgstr ""
|
@@ -1579,27 +1579,27 @@ msgstr ""
|
|
1579 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1580 |
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1581 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1582 |
-
#: includes/functions.php:
|
1583 |
-
#: includes/functions.php:
|
1584 |
-
#: includes/functions.php:
|
1585 |
msgid "click"
|
1586 |
msgid_plural "clicks"
|
1587 |
msgstr[0] ""
|
1588 |
msgstr[1] ""
|
1589 |
|
1590 |
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1591 |
-
#: includes/functions.php:
|
1592 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1596 |
-
#: includes/functions.php:
|
1597 |
msgid "Individual visitor limits"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1601 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1602 |
-
#: includes/functions.php:
|
1603 |
msgid ""
|
1604 |
"When specified number of clicks on this block for a visitor will be reached "
|
1605 |
"in the specified time period, all blocks that have click fraud protection "
|
@@ -1608,19 +1608,19 @@ msgid ""
|
|
1608 |
msgstr ""
|
1609 |
|
1610 |
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1611 |
-
#: includes/functions.php:
|
1612 |
msgid "Trigger click fraud protection"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1616 |
-
#: includes/functions.php:
|
1617 |
msgid ""
|
1618 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1619 |
"impression limit."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1623 |
-
#: includes/functions.php:
|
1624 |
msgid ""
|
1625 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1626 |
"no impression limit per time period for visitors."
|
@@ -1628,60 +1628,60 @@ msgstr ""
|
|
1628 |
|
1629 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1630 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1631 |
-
#: includes/functions.php:
|
1632 |
msgid ""
|
1633 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1634 |
"periods. Empty means no time limit."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1638 |
-
#: includes/functions.php:
|
1639 |
msgid ""
|
1640 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1641 |
"click limit."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1645 |
-
#: includes/functions.php:
|
1646 |
msgid ""
|
1647 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1648 |
"click limit per time period for visitors."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1652 |
-
#: includes/functions.php:
|
1653 |
msgid "When ad blocking is detected"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1657 |
-
#: includes/functions.php:
|
1658 |
msgid "replacement"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1662 |
-
#: includes/functions.php:
|
1663 |
msgid "Block to be shown when ad blocking is detected"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1667 |
-
#: includes/functions.php:
|
1668 |
msgctxt "replacement"
|
1669 |
msgid "None"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1673 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1674 |
-
#: includes/functions.php:
|
1675 |
msgid "Close button"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1679 |
-
#: includes/functions.php:
|
1680 |
msgid "Auto close after"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1684 |
-
#: includes/functions.php:
|
1685 |
msgid ""
|
1686 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1687 |
"disable auto closing."
|
@@ -1689,12 +1689,12 @@ msgstr ""
|
|
1689 |
|
1690 |
#. Translators: Don't show for x days
|
1691 |
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1692 |
-
#: includes/functions.php:
|
1693 |
msgid "Don't show for"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1697 |
-
#: includes/functions.php:
|
1698 |
msgid ""
|
1699 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1700 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
@@ -1703,12 +1703,12 @@ msgstr ""
|
|
1703 |
|
1704 |
#. Translators: Delay showing for x pageviews
|
1705 |
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1706 |
-
#: includes/functions.php:
|
1707 |
msgid "Delay showing for"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1711 |
-
#: includes/functions.php:
|
1712 |
msgid ""
|
1713 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1714 |
"empty to insert the code for the first pageview."
|
@@ -1718,7 +1718,7 @@ msgstr ""
|
|
1718 |
#. Translators: Show every x pageviews
|
1719 |
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1720 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1721 |
-
#: includes/functions.php:
|
1722 |
msgid "pageview"
|
1723 |
msgid_plural "pageviews"
|
1724 |
msgstr[0] ""
|
@@ -1726,59 +1726,59 @@ msgstr[1] ""
|
|
1726 |
|
1727 |
#. Translators: Show every x pageviews
|
1728 |
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1729 |
-
#: includes/functions.php:
|
1730 |
msgid "Show every"
|
1731 |
msgid_plural "Show every"
|
1732 |
msgstr[0] ""
|
1733 |
msgstr[1] ""
|
1734 |
|
1735 |
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1736 |
-
#: includes/functions.php:
|
1737 |
msgid ""
|
1738 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1739 |
"for every pageview."
|
1740 |
msgstr ""
|
1741 |
|
1742 |
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1743 |
-
#: includes/functions.php:
|
1744 |
msgid "Lazy loading"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#. Translators: %s MaxMind
|
1748 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1749 |
-
#: includes/functions.php:
|
1750 |
msgid "This product includes GeoLite2 data created by %s"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1754 |
-
#: includes/functions.php:
|
1755 |
msgid "IP geolocation database"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1759 |
-
#: includes/functions.php:
|
1760 |
msgid "Select IP geolocation database."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1764 |
-
#: includes/functions.php:
|
1765 |
msgid "Automatic database updates"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1769 |
-
#: includes/functions.php:
|
1770 |
msgid ""
|
1771 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1772 |
"MaxMind"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1776 |
-
#: includes/functions.php:
|
1777 |
msgid "Database"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1781 |
-
#: includes/functions.php:
|
1782 |
msgid ""
|
1783 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1784 |
"file"
|
@@ -1786,121 +1786,120 @@ msgstr ""
|
|
1786 |
|
1787 |
#. translators: %d: group number
|
1788 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1789 |
-
#: includes/functions.php:
|
1790 |
msgid "Group %d"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1794 |
-
#: includes/functions.php:
|
1795 |
msgid "countries"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1799 |
-
#: includes/functions.php:
|
1800 |
msgid ""
|
1801 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1802 |
"each block you want to track."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1806 |
-
#: includes/functions.php:3333
|
1807 |
msgid "Generate report"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1811 |
-
#: includes/functions.php:
|
1812 |
msgid "Impression and Click Tracking"
|
1813 |
msgstr ""
|
1814 |
|
1815 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1816 |
-
#: includes/functions.php:
|
1817 |
msgctxt "ad blocking detection"
|
1818 |
msgid "NOT ENABLED"
|
1819 |
msgstr ""
|
1820 |
|
1821 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1822 |
-
#: includes/functions.php:
|
1823 |
msgid "Internal"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1827 |
-
#: includes/functions.php:
|
1828 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1829 |
msgstr ""
|
1830 |
|
1831 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1832 |
-
#: includes/functions.php:
|
1833 |
msgid "External"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1837 |
-
#: includes/functions.php:
|
1838 |
msgid ""
|
1839 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1840 |
"code installed)"
|
1841 |
msgstr ""
|
1842 |
|
1843 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1844 |
-
#: includes/functions.php:
|
1845 |
msgid "Track Pageviews"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1849 |
-
#: includes/functions.php:
|
1850 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1851 |
msgstr ""
|
1852 |
|
1853 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1854 |
-
#: includes/functions.php:
|
1855 |
msgid "Track for Logged in Users"
|
1856 |
msgstr ""
|
1857 |
|
1858 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1859 |
-
#: includes/functions.php:
|
1860 |
msgid "Track impressions and clicks from logged in users"
|
1861 |
msgstr ""
|
1862 |
|
1863 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1864 |
-
#: includes/functions.php:
|
1865 |
msgid "Click Detection"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1869 |
-
#: includes/functions.php:
|
1870 |
msgid ""
|
1871 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1872 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1873 |
msgstr ""
|
1874 |
|
1875 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
1876 |
-
#: includes/functions.php:
|
1877 |
msgid "Click fraud protection"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1881 |
-
#: includes/functions.php:
|
1882 |
msgid "Globally enable click fraud protection for selected blocks."
|
1883 |
msgstr ""
|
1884 |
|
1885 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
1886 |
-
#: includes/functions.php:
|
1887 |
msgid "Protection time"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1891 |
-
#: includes/functions.php:
|
1892 |
msgid ""
|
1893 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1894 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1895 |
msgstr ""
|
1896 |
|
1897 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
1898 |
-
#: includes/functions.php:
|
1899 |
msgid "Report header image"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1903 |
-
#: includes/functions.php:
|
1904 |
msgid ""
|
1905 |
"Image or logo to be displayed in the header of the statistins report. "
|
1906 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -1908,177 +1907,177 @@ msgid ""
|
|
1908 |
msgstr ""
|
1909 |
|
1910 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
1911 |
-
#: includes/functions.php:
|
1912 |
msgid "Select or upload header image"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
1916 |
-
#: includes/functions.php:
|
1917 |
msgid "Report header title"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
1921 |
-
#: includes/functions.php:
|
1922 |
msgid ""
|
1923 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1924 |
"code, clear to reset to default text."
|
1925 |
msgstr ""
|
1926 |
|
1927 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
1928 |
-
#: includes/functions.php:
|
1929 |
msgid "Report header description"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
1933 |
-
#: includes/functions.php:
|
1934 |
msgid ""
|
1935 |
"Description to be displayed in the header of the statistics report. Text or "
|
1936 |
"HTML code, clear to reset to default text."
|
1937 |
msgstr ""
|
1938 |
|
1939 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
1940 |
-
#: includes/functions.php:
|
1941 |
msgid "Report footer"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
1945 |
-
#: includes/functions.php:
|
1946 |
msgid ""
|
1947 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1948 |
"to default text."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
1952 |
-
#: includes/functions.php:
|
1953 |
msgid "Public report key"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
1957 |
-
#: includes/functions.php:
|
1958 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1959 |
msgstr ""
|
1960 |
|
1961 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
1962 |
-
#: includes/functions.php:
|
1963 |
msgid "Are you sure you want to clear all exceptions for block"
|
1964 |
msgstr ""
|
1965 |
|
1966 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1967 |
-
#: includes/functions.php:
|
1968 |
msgid "Clear all exceptions for block"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1972 |
-
#: includes/functions.php:
|
1973 |
msgid "Are you sure you want to clear all exceptions?"
|
1974 |
msgstr ""
|
1975 |
|
1976 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1977 |
-
#: includes/functions.php:
|
1978 |
msgid "Clear all exceptions for all blocks"
|
1979 |
msgstr ""
|
1980 |
|
1981 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1982 |
-
#: includes/functions.php:
|
1983 |
msgid "Type"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
1987 |
-
#: includes/functions.php:
|
1988 |
msgid "View"
|
1989 |
msgstr ""
|
1990 |
|
1991 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
1992 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
1993 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1994 |
-
#: includes/functions.php:
|
1995 |
-
#: includes/functions.php:
|
1996 |
-
#: includes/preview.php:
|
1997 |
msgid "Edit"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2001 |
-
#: includes/functions.php:
|
2002 |
msgid "Are you sure you want to clear all exceptions for"
|
2003 |
msgstr ""
|
2004 |
|
2005 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2006 |
-
#: includes/functions.php:
|
2007 |
msgid "Clear all exceptions for"
|
2008 |
msgstr ""
|
2009 |
|
2010 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2011 |
-
#: includes/functions.php:
|
2012 |
msgid "No exceptions"
|
2013 |
msgstr ""
|
2014 |
|
2015 |
#. translators: %s: Ad Inserter Pro
|
2016 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2017 |
-
#: includes/functions.php:
|
2018 |
msgid "%s options for network blogs"
|
2019 |
msgstr ""
|
2020 |
|
2021 |
#. translators: %s: Ad Inserter Pro
|
2022 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2023 |
-
#: includes/functions.php:
|
2024 |
msgid "Enable %s widgets for sub-sites"
|
2025 |
msgstr ""
|
2026 |
|
2027 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2028 |
-
#: includes/functions.php:
|
2029 |
msgid "Widgets"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2033 |
-
#: includes/functions.php:
|
2034 |
msgid "Enable PHP code processing for sub-sites"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2038 |
-
#: includes/functions.php:
|
2039 |
msgid "PHP Processing"
|
2040 |
msgstr ""
|
2041 |
|
2042 |
#. translators: %s: Ad Inserter Pro
|
2043 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2044 |
-
#: includes/functions.php:
|
2045 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2046 |
msgstr ""
|
2047 |
|
2048 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2049 |
-
#: includes/functions.php:
|
2050 |
msgid "Post/Page exceptions"
|
2051 |
msgstr ""
|
2052 |
|
2053 |
#. translators: %s: Ad Inserter Pro
|
2054 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2055 |
-
#: includes/functions.php:
|
2056 |
msgid "Enable %s settings page for sub-sites"
|
2057 |
msgstr ""
|
2058 |
|
2059 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2060 |
-
#: includes/functions.php:
|
2061 |
msgid "Settings page"
|
2062 |
msgstr ""
|
2063 |
|
2064 |
#. translators: %s: Ad Inserter Pro
|
2065 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2066 |
-
#: includes/functions.php:
|
2067 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2068 |
msgstr ""
|
2069 |
|
2070 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2071 |
-
#: includes/functions.php:
|
2072 |
msgid "Main site settings used for all blogs"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2076 |
-
#: includes/functions.php:
|
2077 |
msgid "Ad Blocking Detection"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2081 |
-
#: includes/functions.php:
|
2082 |
msgid ""
|
2083 |
"Standard method is reliable but should be used only if Advanced method does "
|
2084 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2089,8 +2088,8 @@ msgstr ""
|
|
2089 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2090 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2091 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2092 |
-
#: includes/functions.php:
|
2093 |
-
#: includes/functions.php:
|
2094 |
msgid "AD BLOCKING"
|
2095 |
msgstr ""
|
2096 |
|
@@ -2098,119 +2097,119 @@ msgstr ""
|
|
2098 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2099 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2100 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2101 |
-
#: includes/functions.php:
|
2102 |
-
#: includes/functions.php:
|
2103 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2107 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2108 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2109 |
-
#: includes/functions.php:
|
2110 |
-
#: includes/functions.php:
|
2111 |
msgid "NO AD BLOCKING"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2115 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2116 |
-
#: includes/functions.php:
|
2117 |
msgid "AD BLOCKING REPLACEMENT"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2121 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2122 |
-
#: includes/functions.php:
|
2123 |
msgid "Pageviews"
|
2124 |
msgstr ""
|
2125 |
|
2126 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2127 |
-
#: includes/functions.php:
|
2128 |
msgctxt "Version"
|
2129 |
msgid "Unknown"
|
2130 |
msgstr ""
|
2131 |
|
2132 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2133 |
-
#: includes/functions.php:
|
2134 |
msgctxt "Times"
|
2135 |
msgid "DISPLAYED"
|
2136 |
msgstr ""
|
2137 |
|
2138 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2139 |
-
#: includes/functions.php:
|
2140 |
msgid "No version"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2144 |
-
#: includes/functions.php:
|
2145 |
msgctxt "Times"
|
2146 |
msgid "BLOCKED"
|
2147 |
msgstr ""
|
2148 |
|
2149 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2150 |
-
#: includes/functions.php:
|
2151 |
msgid "Impressions"
|
2152 |
msgstr ""
|
2153 |
|
2154 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2155 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2156 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2157 |
-
#: includes/functions.php:
|
2158 |
-
#: includes/functions.php:
|
2159 |
msgid "Clicks"
|
2160 |
msgstr ""
|
2161 |
|
2162 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2163 |
-
#: includes/functions.php:
|
2164 |
msgid "events"
|
2165 |
msgstr ""
|
2166 |
|
2167 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2168 |
-
#: includes/functions.php:
|
2169 |
msgid "Ad Blocking Share"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
#. translators: CTR as Click Through Rate
|
2173 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2174 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2175 |
-
#: includes/functions.php:
|
2176 |
msgid "CTR"
|
2177 |
msgstr ""
|
2178 |
|
2179 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2180 |
-
#: includes/functions.php:
|
2181 |
msgid "pageviews"
|
2182 |
msgid_plural "pageviews"
|
2183 |
msgstr[0] ""
|
2184 |
msgstr[1] ""
|
2185 |
|
2186 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2187 |
-
#: includes/functions.php:
|
2188 |
msgid "impressions"
|
2189 |
msgid_plural "impressions"
|
2190 |
msgstr[0] ""
|
2191 |
msgstr[1] ""
|
2192 |
|
2193 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2194 |
-
#: includes/functions.php:
|
2195 |
msgid "event"
|
2196 |
msgid_plural "events"
|
2197 |
msgstr[0] ""
|
2198 |
msgstr[1] ""
|
2199 |
|
2200 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2201 |
-
#: includes/functions.php:
|
2202 |
msgctxt "Pageviews / Impressions"
|
2203 |
msgid "Average"
|
2204 |
msgstr ""
|
2205 |
|
2206 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2207 |
-
#: includes/functions.php:
|
2208 |
msgctxt "Ad Blocking / Clicks"
|
2209 |
msgid "Average"
|
2210 |
msgstr ""
|
2211 |
|
2212 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2213 |
-
#: includes/functions.php:
|
2214 |
msgctxt "Ad Blocking Share / CTR"
|
2215 |
msgid "Average"
|
2216 |
msgstr ""
|
@@ -2219,258 +2218,266 @@ msgstr ""
|
|
2219 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2220 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2221 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2222 |
-
#: includes/functions.php:
|
2223 |
-
#: includes/functions.php:
|
2224 |
msgid "%s Report"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2228 |
-
#: includes/functions.php:
|
2229 |
msgid "for last month"
|
2230 |
msgstr ""
|
2231 |
|
2232 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2233 |
-
#: includes/functions.php:
|
2234 |
msgid "for this month"
|
2235 |
msgstr ""
|
2236 |
|
2237 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2238 |
-
#: includes/functions.php:
|
2239 |
msgid "for this year"
|
2240 |
msgstr ""
|
2241 |
|
2242 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2243 |
-
#: includes/functions.php:
|
2244 |
msgid "for the last 15 days"
|
2245 |
msgstr ""
|
2246 |
|
2247 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2248 |
-
#: includes/functions.php:
|
2249 |
msgid "for the last 30 days"
|
2250 |
msgstr ""
|
2251 |
|
2252 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2253 |
-
#: includes/functions.php:
|
2254 |
msgid "for the last 90 days"
|
2255 |
msgstr ""
|
2256 |
|
2257 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2258 |
-
#: includes/functions.php:
|
2259 |
msgid "for the last 180 days"
|
2260 |
msgstr ""
|
2261 |
|
2262 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2263 |
-
#: includes/functions.php:
|
2264 |
msgid "for the last 365 days"
|
2265 |
msgstr ""
|
2266 |
|
|
|
|
|
|
|
|
|
2267 |
#. translators: %s: Ad Inserter Pro
|
2268 |
-
#: includes/functions.php:
|
2269 |
msgid "Invalid %s version. Continue?"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: includes/functions.php:
|
2273 |
msgid "Background"
|
2274 |
msgstr ""
|
2275 |
|
2276 |
#. translators: %s HTML body tag
|
2277 |
-
#: includes/functions.php:
|
2278 |
msgid "Set %s background"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
-
#: includes/functions.php:
|
2282 |
msgid "Image to be used for the background"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
-
#: includes/functions.php:
|
2286 |
msgid "Color"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
-
#: includes/functions.php:
|
2290 |
msgid "Color to be used for the background"
|
2291 |
msgstr ""
|
2292 |
|
2293 |
-
#: includes/functions.php:
|
2294 |
msgid "Image size"
|
2295 |
msgstr ""
|
2296 |
|
2297 |
-
#: includes/functions.php:
|
2298 |
msgid "Repeat"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: includes/functions.php:
|
2302 |
msgid "Select image"
|
2303 |
msgstr ""
|
2304 |
|
2305 |
-
#: includes/functions.php:
|
2306 |
-
#: settings.php:
|
2307 |
-
#: settings.php:
|
2308 |
msgid "Click to select black or white list"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
#. translators: %s: Ad Inserter Pro
|
2312 |
-
#: includes/functions.php:
|
2313 |
msgid "Invalid %s version."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: includes/functions.php:
|
2317 |
msgid "Check license"
|
2318 |
msgstr ""
|
2319 |
|
2320 |
-
#: includes/functions.php:
|
2321 |
msgid "License"
|
2322 |
msgstr ""
|
2323 |
|
2324 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2325 |
-
#: includes/functions.php:
|
2326 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
#. Translators: %s: HTML tags
|
2330 |
-
#: includes/functions.php:
|
2331 |
msgid ""
|
2332 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2333 |
"account %s and create license key."
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: includes/functions.php:
|
2337 |
msgid "Start date"
|
2338 |
msgstr ""
|
2339 |
|
2340 |
-
#: includes/functions.php:
|
2341 |
msgid "Enter date in format yyyy-mm-dd"
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#: includes/functions.php:
|
2345 |
msgid "Start time"
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#: includes/functions.php:
|
2349 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#: includes/functions.php:
|
2353 |
msgid "End date"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#: includes/functions.php:
|
2357 |
msgid "End time"
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#: includes/functions.php:
|
2361 |
msgid "Select wanted days in week"
|
2362 |
msgstr ""
|
2363 |
|
2364 |
-
#: includes/functions.php:
|
2365 |
msgid "Ad blocking detection is disabled"
|
2366 |
msgstr ""
|
2367 |
|
2368 |
-
#: includes/functions.php:
|
|
|
|
|
|
|
|
|
2369 |
msgid "Manual loading"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
#. Translators: %s HTML tags
|
2373 |
-
#: includes/functions.php:
|
2374 |
msgid "Create and manage %s MaxMind license key %s"
|
2375 |
msgstr ""
|
2376 |
|
2377 |
-
#: includes/functions.php:
|
2378 |
msgid "MaxMind license key"
|
2379 |
msgstr ""
|
2380 |
|
2381 |
-
#: includes/functions.php:
|
2382 |
msgid "Enter license key obtained from MaxMind"
|
2383 |
msgstr ""
|
2384 |
|
2385 |
-
#: includes/functions.php:
|
2386 |
msgid "Event category"
|
2387 |
msgstr ""
|
2388 |
|
2389 |
-
#: includes/functions.php:
|
2390 |
msgid ""
|
2391 |
"Category name used for external tracking events. You can use tags to get the "
|
2392 |
"event, the number or the name of the block that caused the event."
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#: includes/functions.php:
|
2396 |
msgid "Event action"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: includes/functions.php:
|
2400 |
msgid ""
|
2401 |
"Action name used for external tracking events. You can use tags to get the "
|
2402 |
"event, the number or the name of the block that caused the event."
|
2403 |
msgstr ""
|
2404 |
|
2405 |
-
#: includes/functions.php:
|
2406 |
msgid "Event label"
|
2407 |
msgstr ""
|
2408 |
|
2409 |
-
#: includes/functions.php:
|
2410 |
msgid ""
|
2411 |
"Label name used for external tracking events. You can use tags to get the "
|
2412 |
"event, the number or the name of the block that caused the event."
|
2413 |
msgstr ""
|
2414 |
|
2415 |
#. translators: %s: Ad Inserter Pro
|
2416 |
-
#: includes/functions.php:
|
2417 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
#. translators: %s: Ad Inserter Pro
|
2421 |
-
#: includes/functions.php:
|
2422 |
msgid "Show link to %s on the Sites page"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
-
#: includes/functions.php:
|
2426 |
-
msgid "
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: includes/
|
2430 |
-
msgid "
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: includes/placeholders.php:
|
2434 |
msgid "Custom"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: includes/placeholders.php:
|
2438 |
msgid "Placeholder Editor"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#: includes/placeholders.php:
|
2442 |
msgid "Select placeholder"
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#: includes/placeholders.php:
|
2446 |
msgid "Edit placeholder size, colors and text"
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#: includes/placeholders.php:
|
2450 |
msgid "Close placeholder editor"
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#: includes/placeholders.php:
|
2454 |
msgid "Placeholder"
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#: includes/placeholders.php:
|
2458 |
msgid "Size"
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#: includes/placeholders.php:
|
2462 |
msgid "Background color"
|
2463 |
msgstr ""
|
2464 |
|
2465 |
-
#: includes/placeholders.php:
|
2466 |
msgid "Text"
|
2467 |
msgstr ""
|
2468 |
|
2469 |
-
#: includes/placeholders.php:
|
2470 |
msgid "Text color"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#: includes/placeholders.php:
|
2474 |
msgid ""
|
2475 |
"Here you can create a universal placeholder image that can be used in place "
|
2476 |
"of ads when they are not available yet.\n"
|
@@ -2478,7 +2485,7 @@ msgid ""
|
|
2478 |
"save them to local computer or server."
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#: includes/placeholders.php:
|
2482 |
msgid ""
|
2483 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2484 |
"300x600 or define custom size.\n"
|
@@ -2489,7 +2496,7 @@ msgid ""
|
|
2489 |
"text."
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#: includes/placeholders.php:
|
2493 |
msgid ""
|
2494 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2495 |
"window shows only the code for the currently selected option.\n"
|
@@ -2497,7 +2504,7 @@ msgid ""
|
|
2497 |
"currently selected option."
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#: includes/placeholders.php:
|
2501 |
msgid ""
|
2502 |
"Code generator for banners and AdSense generates the code only when you "
|
2503 |
"click on the button Generate code.\n"
|
@@ -2506,7 +2513,7 @@ msgid ""
|
|
2506 |
"need to (optionally) import and generate code for each rotation option."
|
2507 |
msgstr ""
|
2508 |
|
2509 |
-
#: includes/placeholders.php:
|
2510 |
msgid ""
|
2511 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2512 |
"You can select banner image (or placeholder), optionally define link (web "
|
@@ -2514,115 +2521,115 @@ msgid ""
|
|
2514 |
"whether to open link in a new tab."
|
2515 |
msgstr ""
|
2516 |
|
2517 |
-
#: includes/preview-adb.php:
|
2518 |
msgid "Add dummy paragraph"
|
2519 |
msgstr ""
|
2520 |
|
2521 |
-
#: includes/preview-adb.php:
|
2522 |
msgid "Remove dummy paragraph"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
#: includes/preview-adb.php:
|
2526 |
msgid "Use current settings"
|
2527 |
msgstr ""
|
2528 |
|
2529 |
-
#: includes/preview-adb.php:
|
2530 |
msgctxt "Button"
|
2531 |
msgid "Use"
|
2532 |
msgstr ""
|
2533 |
|
2534 |
-
#: includes/preview-adb.php:
|
2535 |
msgid "Reset to the saved settings"
|
2536 |
msgstr ""
|
2537 |
|
2538 |
-
#: includes/preview-adb.php:
|
2539 |
msgctxt "Button"
|
2540 |
msgid "Reset"
|
2541 |
msgstr ""
|
2542 |
|
2543 |
-
#: includes/preview-adb.php:
|
2544 |
msgid "Reset to the default settings"
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#: includes/preview-adb.php:
|
2548 |
msgctxt "Button"
|
2549 |
msgid "Default"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#: includes/preview-adb.php:
|
2553 |
msgid "Close preview window"
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#: includes/preview-adb.php:
|
2557 |
msgctxt "Button "
|
2558 |
msgid "Cancel"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#: includes/preview-adb.php:
|
2562 |
msgid "Ad Blocking Detected Message Preview"
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#: includes/preview-adb.php:
|
2566 |
msgid "Message CSS"
|
2567 |
msgstr ""
|
2568 |
|
2569 |
-
#: includes/preview-adb.php:
|
2570 |
msgid "Overlay CSS"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#: includes/preview.php:
|
2574 |
msgid "Sticky Code Preview"
|
2575 |
msgstr ""
|
2576 |
|
2577 |
-
#: includes/preview.php:
|
2578 |
msgid "Code Preview"
|
2579 |
msgstr ""
|
2580 |
|
2581 |
-
#: includes/preview.php:
|
2582 |
msgid "Highlight inserted code"
|
2583 |
msgstr ""
|
2584 |
|
2585 |
-
#: includes/preview.php:
|
2586 |
msgid "Highlight"
|
2587 |
msgstr ""
|
2588 |
|
2589 |
-
#: includes/preview.php:
|
2590 |
msgid "Reset to block settings"
|
2591 |
msgstr ""
|
2592 |
|
2593 |
-
#: includes/preview.php:
|
2594 |
msgid "AdSense ad unit"
|
2595 |
msgstr ""
|
2596 |
|
2597 |
-
#: includes/preview.php:
|
2598 |
msgid "wrapping div"
|
2599 |
msgstr ""
|
2600 |
|
2601 |
-
#: includes/preview.php:
|
2602 |
msgid "background"
|
2603 |
msgstr ""
|
2604 |
|
2605 |
-
#: includes/preview.php:
|
2606 |
msgid "Alignment"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
-
#: includes/preview.php:
|
2610 |
msgid "Repeat image"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#: includes/preview.php:
|
2614 |
msgid "Horizontal margin"
|
2615 |
msgstr ""
|
2616 |
|
2617 |
-
#: includes/preview.php:
|
2618 |
msgid "Vertical margin"
|
2619 |
msgstr ""
|
2620 |
|
2621 |
-
#: includes/preview.php:
|
2622 |
msgid "Animate"
|
2623 |
msgstr ""
|
2624 |
|
2625 |
-
#: includes/preview.php:
|
2626 |
msgid ""
|
2627 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2628 |
"various block alignments, visually edit margin and padding values of the "
|
@@ -2632,14 +2639,14 @@ msgid ""
|
|
2632 |
"restores all the values to those of the current block."
|
2633 |
msgstr ""
|
2634 |
|
2635 |
-
#: includes/preview.php:
|
2636 |
msgid ""
|
2637 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2638 |
"code with the alignment and style as it is set for this block. Highlight "
|
2639 |
"button highlights background, wrapping div margin and code area."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
-
#: includes/preview.php:
|
2643 |
msgid ""
|
2644 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2645 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
@@ -2647,7 +2654,7 @@ msgid ""
|
|
2647 |
"highlight ad block."
|
2648 |
msgstr ""
|
2649 |
|
2650 |
-
#: includes/preview.php:
|
2651 |
msgid ""
|
2652 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2653 |
"display with different screen widths.\n"
|
@@ -2655,7 +2662,7 @@ msgid ""
|
|
2655 |
"settings will be copied to the active block."
|
2656 |
msgstr ""
|
2657 |
|
2658 |
-
#: includes/preview.php:
|
2659 |
msgid ""
|
2660 |
"Please note that the code, block name, alignment and style are taken from "
|
2661 |
"the current block settings (may not be saved).\n"
|
@@ -2663,9 +2670,9 @@ msgid ""
|
|
2663 |
"padding can't be set. However, you can use own HTML code for the block."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: includes/preview.php:
|
2667 |
-
#: includes/preview.php:
|
2668 |
-
#: includes/preview.php:
|
2669 |
msgid ""
|
2670 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2671 |
"code with it's settings is called a block.\n"
|
@@ -2679,9 +2686,9 @@ msgid ""
|
|
2679 |
"and manual insertion."
|
2680 |
msgstr ""
|
2681 |
|
2682 |
-
#: includes/preview.php:
|
2683 |
-
#: includes/preview.php:
|
2684 |
-
#: includes/preview.php:
|
2685 |
msgid ""
|
2686 |
"Few very important things you need to know in order to insert code and "
|
2687 |
"display some ad:\n"
|
@@ -2694,7 +2701,7 @@ msgid ""
|
|
2694 |
"individual post/page exceptions."
|
2695 |
msgstr ""
|
2696 |
|
2697 |
-
#: includes/preview.php:
|
2698 |
msgid ""
|
2699 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2700 |
"horizontal and vertical alignments, close button locations, visually edit "
|
@@ -2704,12 +2711,22 @@ msgid ""
|
|
2704 |
"the values to those of the current block."
|
2705 |
msgstr ""
|
2706 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2707 |
#: settings.php:160 settings.php:163
|
2708 |
msgid ""
|
2709 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#: settings.php:202 settings.php:
|
2713 |
msgid ""
|
2714 |
"Settings for individual exceptions have been updated. Please check all "
|
2715 |
"blocks that have exceptions and and then save settings."
|
@@ -2719,7 +2736,7 @@ msgstr ""
|
|
2719 |
msgid "Online documentation"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: settings.php:248 settings.php:
|
2723 |
msgid "Show AdSense ad units"
|
2724 |
msgstr ""
|
2725 |
|
@@ -2727,7 +2744,7 @@ msgstr ""
|
|
2727 |
msgid "Edit ads.txt file"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#: settings.php:260 settings.php:
|
2731 |
msgid "Check theme for available positions for automatic insertion"
|
2732 |
msgstr ""
|
2733 |
|
@@ -2852,315 +2869,315 @@ msgstr ""
|
|
2852 |
msgid "General Settings"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
-
#: settings.php:
|
2856 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2857 |
msgstr ""
|
2858 |
|
2859 |
-
#: settings.php:
|
2860 |
msgid "Toggle tools"
|
2861 |
msgstr ""
|
2862 |
|
2863 |
-
#: settings.php:
|
2864 |
msgid "Process PHP code in block"
|
2865 |
msgstr ""
|
2866 |
|
2867 |
-
#: settings.php:
|
2868 |
msgid "Disable insertion of this block"
|
2869 |
msgstr ""
|
2870 |
|
2871 |
-
#: settings.php:
|
2872 |
msgid "Toggle code generator"
|
2873 |
msgstr ""
|
2874 |
|
2875 |
-
#: settings.php:
|
2876 |
msgid "Toggle rotation editor"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: settings.php:
|
2880 |
msgid "Open visual HTML editor"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: settings.php:
|
2884 |
msgid "Clear block"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
-
#: settings.php:
|
2888 |
msgid "Copy block"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
-
#: settings.php:
|
2892 |
msgid "Paste name"
|
2893 |
msgstr ""
|
2894 |
|
2895 |
-
#: settings.php:
|
2896 |
msgid "Paste code"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: settings.php:
|
2900 |
msgid "Paste settings"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: settings.php:
|
2904 |
msgid "Paste block (name, code and settings)"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: settings.php:
|
2908 |
msgid "Rotation groups"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: settings.php:
|
2912 |
msgid "Remove option"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: settings.php:
|
2916 |
msgid "Add option"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: settings.php:
|
2920 |
msgid "Import code"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
-
#: settings.php:
|
2924 |
msgid "Generate code"
|
2925 |
msgstr ""
|
2926 |
|
2927 |
-
#: settings.php:
|
2928 |
msgid "Banner"
|
2929 |
msgstr ""
|
2930 |
|
2931 |
-
#: settings.php:
|
2932 |
msgid "Image"
|
2933 |
msgstr ""
|
2934 |
|
2935 |
-
#: settings.php:
|
2936 |
msgid "Link"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: settings.php:
|
2940 |
msgid "Open link in a new tab"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: settings.php:
|
2944 |
msgid "Select Image"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: settings.php:
|
2948 |
msgid "Select Placeholder"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#: settings.php:
|
2952 |
msgid "Comment"
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#: settings.php:
|
2956 |
msgctxt "AdSense"
|
2957 |
msgid "Publisher ID"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
-
#: settings.php:
|
2961 |
msgctxt "AdSense"
|
2962 |
msgid "Ad Slot ID"
|
2963 |
msgstr ""
|
2964 |
|
2965 |
-
#: settings.php:
|
2966 |
msgid "Ad Type"
|
2967 |
msgstr ""
|
2968 |
|
2969 |
-
#: settings.php:
|
2970 |
msgid "AMP Ad"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#: settings.php:
|
2974 |
msgid "Show ad units from your AdSense account"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#: settings.php:
|
2978 |
msgid "AdSense ad units"
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#: settings.php:
|
2982 |
msgctxt "AdSense"
|
2983 |
msgid "Layout"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: settings.php:
|
2987 |
msgctxt "AdSense"
|
2988 |
msgid "Layout Key"
|
2989 |
msgstr ""
|
2990 |
|
2991 |
-
#: settings.php:
|
2992 |
msgid "Full width"
|
2993 |
msgstr ""
|
2994 |
|
2995 |
-
#: settings.php:
|
2996 |
msgctxt "Full width"
|
2997 |
msgid "Enabled"
|
2998 |
msgstr ""
|
2999 |
|
3000 |
-
#: settings.php:
|
3001 |
msgctxt "Full width"
|
3002 |
msgid "Disabled"
|
3003 |
msgstr ""
|
3004 |
|
3005 |
-
#: settings.php:
|
3006 |
msgid ""
|
3007 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3008 |
"Cookie or Referer (domain)"
|
3009 |
msgstr ""
|
3010 |
|
3011 |
-
#: settings.php:
|
3012 |
msgid "Lists"
|
3013 |
msgstr ""
|
3014 |
|
3015 |
-
#: settings.php:
|
3016 |
msgid "Widget, Shortcode and PHP function call"
|
3017 |
msgstr ""
|
3018 |
|
3019 |
-
#: settings.php:
|
3020 |
msgid "Manual"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
-
#: settings.php:
|
3024 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3025 |
msgstr ""
|
3026 |
|
3027 |
-
#: settings.php:
|
3028 |
msgid "Devices"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: settings.php:
|
3032 |
msgid ""
|
3033 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3034 |
"feeds), Filter, Scheduling, General tag"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#: settings.php:
|
3038 |
msgid "Misc"
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#: settings.php:
|
3042 |
msgid "Preview code and alignment"
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#: settings.php:
|
3046 |
msgid ""
|
3047 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3048 |
"editor is active before saving settings."
|
3049 |
msgstr ""
|
3050 |
|
3051 |
-
#: settings.php:
|
3052 |
msgid "Enable insertion on posts"
|
3053 |
msgstr ""
|
3054 |
|
3055 |
-
#: settings.php:
|
3056 |
msgid "Posts"
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#: settings.php:
|
3060 |
msgid ""
|
3061 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3062 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3063 |
"theme)"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
-
#: settings.php:
|
3067 |
msgid "Homepage"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
-
#: settings.php:
|
3071 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
-
#: settings.php:
|
3075 |
msgid "Category pages"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
-
#: settings.php:
|
3079 |
msgid "Enable insertion on static pages"
|
3080 |
msgstr ""
|
3081 |
|
3082 |
-
#: settings.php:
|
3083 |
msgid "Static pages"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
-
#: settings.php:
|
3087 |
msgid "Enable insertion on search blog pages"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
-
#: settings.php:
|
3091 |
msgid "Search pages"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
-
#: settings.php:
|
3095 |
msgid "Enable insertion on tag or archive blog pages"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: settings.php:
|
3099 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: settings.php:
|
3103 |
msgid ""
|
3104 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3105 |
"be configured on the individual post/page editor page (in the settings below "
|
3106 |
"the editor)."
|
3107 |
msgstr ""
|
3108 |
|
3109 |
-
#: settings.php:
|
3110 |
msgid ""
|
3111 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3112 |
"enabled they can be configured on the individual post/page editor page (in "
|
3113 |
"the settings below the editor)."
|
3114 |
msgstr ""
|
3115 |
|
3116 |
-
#: settings.php:
|
3117 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3118 |
msgstr ""
|
3119 |
|
3120 |
#. Translators: Enabled means...
|
3121 |
-
#: settings.php:
|
3122 |
msgid ""
|
3123 |
"means the insertion for this block is enabled by default and disabled for "
|
3124 |
"exceptions."
|
3125 |
msgstr ""
|
3126 |
|
3127 |
#. Translators: Disabled means...
|
3128 |
-
#: settings.php:
|
3129 |
msgid ""
|
3130 |
"means the insertion for this block is disabled by default and enabled for "
|
3131 |
"exceptions."
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: settings.php:
|
3135 |
msgid ""
|
3136 |
"When individual post/page exceptions are enabled they can be configured on "
|
3137 |
"the individual post/page editor page (in the settings below the editor)."
|
3138 |
msgstr ""
|
3139 |
|
3140 |
-
#: settings.php:
|
3141 |
msgid ""
|
3142 |
"No exception for post or static page defined. Block will not be inserted."
|
3143 |
msgstr ""
|
3144 |
|
3145 |
-
#: settings.php:
|
3146 |
msgctxt "post"
|
3147 |
msgid "Type"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
#. translators: %d: block number
|
3151 |
-
#: settings.php:
|
3152 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3153 |
msgstr ""
|
3154 |
|
3155 |
-
#: settings.php:
|
3156 |
msgid "Clear listed exceptions for block"
|
3157 |
msgstr ""
|
3158 |
|
3159 |
-
#: settings.php:
|
3160 |
msgid "Insertion"
|
3161 |
msgstr ""
|
3162 |
|
3163 |
-
#: settings.php:
|
3164 |
msgid ""
|
3165 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3166 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3170,7 +3187,7 @@ msgid ""
|
|
3170 |
"negative number means counting from the opposite direction"
|
3171 |
msgstr ""
|
3172 |
|
3173 |
-
#: settings.php:
|
3174 |
msgid ""
|
3175 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3176 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3180,155 +3197,166 @@ msgid ""
|
|
3180 |
"direction"
|
3181 |
msgstr ""
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
msgid ""
|
3185 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3186 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3187 |
msgstr ""
|
3188 |
|
3189 |
-
#: settings.php:
|
3190 |
msgid ""
|
3191 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3192 |
"numbers, %N means every N posts, empty means all posts"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: settings.php:
|
3196 |
msgid ""
|
3197 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3198 |
"numbers, %N means every N comments, empty means all comments"
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: settings.php:
|
3202 |
msgid "Toggle paragraph counting settings"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: settings.php:
|
3206 |
msgid "Toggle paragraph clearance settings"
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: settings.php:
|
3210 |
msgid "Toggle insertion filter settings"
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: settings.php:
|
3214 |
msgid "Toggle insertion and alignment icons"
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: settings.php:
|
3218 |
msgid "Custom CSS code for the wrapping div"
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: settings.php:
|
3222 |
-
#: settings.php:
|
3223 |
msgid "CSS code for the wrapping div, click to edit"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: settings.php:
|
3227 |
msgid "HTML element"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#: settings.php:
|
3231 |
msgid "HTML element selector or comma separated list of selectors"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#: settings.php:
|
3235 |
msgid "Action"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#: settings.php:
|
3239 |
msgid ""
|
3240 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3241 |
"Server-side insertion inserts block when the page is generated but needs "
|
3242 |
"Output buffering enabled."
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: settings.php:
|
3246 |
msgid "Code position"
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: settings.php:
|
3250 |
msgid ""
|
3251 |
"Page position where the code for client-side insertion will be inserted."
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#: settings.php:
|
3255 |
msgid "Count"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#: settings.php:
|
3259 |
msgid "paragraphs with tags"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: settings.php:
|
3263 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: settings.php:
|
3267 |
msgid "that have between"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: settings.php:
|
3271 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: settings.php:
|
3275 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#: settings.php:
|
3279 |
msgid "words"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: settings.php:
|
3283 |
msgid "Comma separated texts"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: settings.php:1480
|
3287 |
-
msgid ""
|
3288 |
-
"Count also paragraphs inside these elements - defined on general plugin "
|
3289 |
-
"settings page - tab [*] / tab General"
|
3290 |
-
msgstr ""
|
3291 |
-
|
3292 |
-
#. Translators: %s: HTML tags
|
3293 |
-
#: settings.php:1486
|
3294 |
-
msgid "Count inside %s elements"
|
3295 |
-
msgstr ""
|
3296 |
-
|
3297 |
#. translators: inside [HTML tags] elements that contain
|
3298 |
-
#: settings.php:
|
3299 |
msgid "inside"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: settings.php:
|
3303 |
msgid "Comma separated HTML tag names of container elements"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
#. translators: inside [HTML tags] elements that contain
|
3307 |
-
#: settings.php:
|
3308 |
msgid "elements that"
|
3309 |
msgstr ""
|
3310 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3311 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3312 |
-
#: settings.php:
|
3313 |
msgid "Do not insert for first"
|
3314 |
msgid_plural "Do not insert for first"
|
3315 |
msgstr[0] ""
|
3316 |
msgstr[1] ""
|
3317 |
|
3318 |
-
#: settings.php:
|
3319 |
msgid ""
|
3320 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3321 |
"first paragraphs"
|
3322 |
msgstr ""
|
3323 |
|
3324 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3325 |
-
#: settings.php:
|
3326 |
msgid "and last"
|
3327 |
msgid_plural "and last"
|
3328 |
msgstr[0] ""
|
3329 |
msgstr[1] ""
|
3330 |
|
3331 |
-
#: settings.php:
|
3332 |
msgid ""
|
3333 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3334 |
"last paragraphs"
|
@@ -3336,156 +3364,124 @@ msgstr ""
|
|
3336 |
|
3337 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3338 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3339 |
-
#: settings.php:
|
3340 |
msgid "paragraph"
|
3341 |
msgid_plural "paragraphs"
|
3342 |
msgstr[0] ""
|
3343 |
msgstr[1] ""
|
3344 |
|
3345 |
-
#: settings.php:
|
3346 |
msgid "Post/Static page must have between"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
-
#: settings.php:
|
3350 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: settings.php:
|
3354 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: settings.php:
|
3358 |
msgid "Minimum number of words in paragraphs above"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: settings.php:
|
3362 |
msgid ""
|
3363 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3364 |
"numbers"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: settings.php:
|
3368 |
msgid "In"
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: settings.php:
|
3372 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "paragraphs above avoid"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid "paragraphs below avoid"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: settings.php:
|
3388 |
msgid "If text is found"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid "check up to"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgctxt "check up to"
|
3397 |
msgid "paragraphs"
|
3398 |
msgstr ""
|
3399 |
|
3400 |
-
#: settings.php:
|
3401 |
msgid "Categories"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: settings.php:
|
3405 |
msgid "Toggle category editor"
|
3406 |
msgstr ""
|
3407 |
|
3408 |
-
#: settings.php:
|
3409 |
msgid "Comma separated category slugs"
|
3410 |
msgstr ""
|
3411 |
|
3412 |
-
#: settings.php:
|
3413 |
-
msgid "Blacklist categories"
|
3414 |
-
msgstr ""
|
3415 |
-
|
3416 |
-
#: settings.php:1708
|
3417 |
-
msgid "Whitelist categories"
|
3418 |
-
msgstr ""
|
3419 |
-
|
3420 |
-
#: settings.php:1720
|
3421 |
msgid "Tags"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
-
#: settings.php:
|
3425 |
msgid "Toggle tag editor"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
-
#: settings.php:
|
3429 |
msgid "Comma separated tag slugs"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
-
#: settings.php:
|
3433 |
-
msgid "Blacklist tags"
|
3434 |
-
msgstr ""
|
3435 |
-
|
3436 |
-
#: settings.php:1739
|
3437 |
-
msgid "Whitelist tags"
|
3438 |
-
msgstr ""
|
3439 |
-
|
3440 |
-
#: settings.php:1751
|
3441 |
msgid "Taxonomies"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
-
#: settings.php:
|
3445 |
msgid "Toggle taxonomy editor"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
-
#: settings.php:
|
3449 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
-
#: settings.php:
|
3453 |
-
msgid "Blacklist taxonomies"
|
3454 |
-
msgstr ""
|
3455 |
-
|
3456 |
-
#: settings.php:1770
|
3457 |
-
msgid "Whitelist taxonomies"
|
3458 |
-
msgstr ""
|
3459 |
-
|
3460 |
-
#: settings.php:1782
|
3461 |
msgid "Post IDs"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
-
#: settings.php:
|
3465 |
msgid "Toggle post/page ID editor"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
-
#: settings.php:
|
3469 |
msgid "Comma separated post/page IDs"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
-
#: settings.php:
|
3473 |
-
msgid "Blacklist IDs"
|
3474 |
-
msgstr ""
|
3475 |
-
|
3476 |
-
#: settings.php:1801
|
3477 |
-
msgid "Whitelist IDs"
|
3478 |
-
msgstr ""
|
3479 |
-
|
3480 |
-
#: settings.php:1813
|
3481 |
msgid "Urls"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#: settings.php:
|
3485 |
msgid "Toggle url editor"
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#: settings.php:
|
3489 |
msgid ""
|
3490 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3491 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3493,236 +3489,219 @@ msgid ""
|
|
3493 |
"start*. *url-pattern*, *url-end)"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#: settings.php:
|
3497 |
-
msgid "Blacklist urls"
|
3498 |
-
msgstr ""
|
3499 |
-
|
3500 |
-
#: settings.php:1832
|
3501 |
-
msgid "Whitelist urls"
|
3502 |
-
msgstr ""
|
3503 |
-
|
3504 |
-
#: settings.php:1843
|
3505 |
msgid "Url parameters"
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid "Toggle url parameter and cookie editor"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: settings.php:
|
3513 |
msgid ""
|
3514 |
"Comma separated url query parameters or cookies with optional values (use "
|
3515 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3516 |
msgstr ""
|
3517 |
|
3518 |
-
#: settings.php:
|
3519 |
-
msgid "Blacklist url parameters"
|
3520 |
-
msgstr ""
|
3521 |
-
|
3522 |
-
#: settings.php:1863
|
3523 |
-
msgid "Whitelist url parameters"
|
3524 |
-
msgstr ""
|
3525 |
-
|
3526 |
-
#: settings.php:1874
|
3527 |
msgid "Referrers"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#: settings.php:
|
3531 |
msgid "Toggle referer editor"
|
3532 |
msgstr ""
|
3533 |
|
3534 |
-
#: settings.php:
|
3535 |
msgid ""
|
3536 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3537 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: settings.php:
|
3541 |
-
msgid "Blacklist referers"
|
3542 |
-
msgstr ""
|
3543 |
-
|
3544 |
-
#: settings.php:1893
|
3545 |
-
msgid "Whitelist referers"
|
3546 |
-
msgstr ""
|
3547 |
-
|
3548 |
-
#: settings.php:1904
|
3549 |
msgid "Clients"
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#: settings.php:
|
3553 |
msgid "Toggle client editor"
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#: settings.php:
|
3557 |
-
msgid "
|
3558 |
-
|
3559 |
-
|
3560 |
-
|
3561 |
-
msgid "Blacklist clients"
|
3562 |
-
msgstr ""
|
3563 |
-
|
3564 |
-
#: settings.php:1923
|
3565 |
-
msgid "Whitelist clients"
|
3566 |
msgstr ""
|
3567 |
|
3568 |
-
#: settings.php:
|
3569 |
msgid "Enable widget for this block"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
-
#: settings.php:
|
3573 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
-
#: settings.php:
|
3577 |
msgid "Shortcode"
|
3578 |
msgstr ""
|
3579 |
|
3580 |
-
#: settings.php:
|
3581 |
msgid ""
|
3582 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3583 |
"If function is disabled for block it will return empty string."
|
3584 |
msgstr ""
|
3585 |
|
3586 |
-
#: settings.php:
|
3587 |
msgid "PHP function"
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: settings.php:
|
3591 |
msgid "Client-side device detection"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid "Server-side device detection"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: settings.php:
|
3599 |
msgid "Use client-side detection to"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: settings.php:
|
3603 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
#. Translators: only on (the following devices): viewport names (devices)
|
3607 |
#. listed
|
3608 |
-
#: settings.php:
|
3609 |
msgid "only on"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#: settings.php:
|
3613 |
msgid "Device min width %s px"
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#: settings.php:
|
3617 |
msgid "Use server-side detection to insert block only for"
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#: settings.php:
|
3621 |
msgid "Filter"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#: settings.php:
|
3625 |
msgid "Word Count"
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
#: settings.php:
|
3629 |
msgid "Scheduling"
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: settings.php:
|
3633 |
msgid "Display"
|
3634 |
msgstr ""
|
3635 |
|
3636 |
-
#: settings.php:
|
3637 |
msgid "General"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
-
#: settings.php:
|
3641 |
msgid "Old settings for AMP pages detected"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
#: settings.php:
|
3645 |
msgid ""
|
3646 |
"To insert different codes on normal and AMP pages separate them with "
|
3647 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3648 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3649 |
msgstr ""
|
3650 |
|
3651 |
-
#: settings.php:
|
3652 |
msgid "AMP pages"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
-
#: settings.php:
|
3656 |
msgid "Enable insertion for Ajax requests"
|
3657 |
msgstr ""
|
3658 |
|
3659 |
-
#: settings.php:
|
3660 |
msgid "Ajax requests"
|
3661 |
msgstr ""
|
3662 |
|
3663 |
-
#: settings.php:
|
3664 |
msgid "Enable insertion in RSS feeds"
|
3665 |
msgstr ""
|
3666 |
|
3667 |
-
#: settings.php:
|
3668 |
msgid "RSS Feed"
|
3669 |
msgstr ""
|
3670 |
|
3671 |
-
#: settings.php:
|
3672 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: settings.php:
|
3676 |
msgid "Error 404 page"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
-
#: settings.php:
|
3680 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3681 |
msgstr ""
|
3682 |
|
3683 |
-
#: settings.php:
|
3684 |
msgid "insertions"
|
3685 |
msgstr ""
|
3686 |
|
3687 |
-
#: settings.php:
|
3688 |
msgid ""
|
3689 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3690 |
"General)"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
-
#: settings.php:
|
3694 |
msgid "Max blocks per page"
|
3695 |
msgstr ""
|
3696 |
|
3697 |
-
#: settings.php:
|
3698 |
msgid "Insert for"
|
3699 |
msgstr ""
|
3700 |
|
3701 |
-
#: settings.php:
|
3702 |
msgid ""
|
3703 |
-
"Insert block only when WP function in_the_loop () returns true (WP loop
|
3704 |
-
"currently active). Might speed up insertion on content pages when "
|
3705 |
-
"the_content filter is called multiple times."
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#: settings.php:
|
3709 |
msgid "Insert only in the loop"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3713 |
msgid ""
|
3714 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3715 |
msgstr ""
|
3716 |
|
3717 |
-
#: settings.php:
|
3718 |
msgid "Disable caching"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#: settings.php:
|
3722 |
msgid "Filter insertions"
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#: settings.php:
|
3726 |
msgid ""
|
3727 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3728 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3730,548 +3709,548 @@ msgid ""
|
|
3730 |
"using only one insertion type."
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: settings.php:
|
3734 |
msgid "using"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: settings.php:
|
3738 |
msgid "Checked means specified calls are unwanted"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#: settings.php:
|
3742 |
msgid "Invert filter"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#: settings.php:
|
3746 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#: settings.php:
|
3750 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: settings.php:
|
3754 |
msgid "for"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: settings.php:
|
3758 |
msgid "days after publishing"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: settings.php:
|
3762 |
msgid "Not available"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: settings.php:
|
3766 |
msgid "Ad label"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#: settings.php:
|
3770 |
msgid "General tag"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#: settings.php:
|
3774 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
#. translators: %s: HTML tags
|
3778 |
-
#: settings.php:
|
3779 |
msgid ""
|
3780 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3781 |
"client-side device detection!"
|
3782 |
msgstr ""
|
3783 |
|
3784 |
#. translators: %s: HTML tags for text and link
|
3785 |
-
#: settings.php:
|
3786 |
msgid ""
|
3787 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3788 |
"side %s insertion. Use %s Server-side %s insertion."
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
#: settings.php:
|
3792 |
msgid "Settings"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: settings.php:
|
3796 |
msgid "Settings timestamp"
|
3797 |
msgstr ""
|
3798 |
|
3799 |
-
#: settings.php:
|
3800 |
msgid "Are you sure you want to reset all settings?"
|
3801 |
msgstr ""
|
3802 |
|
3803 |
-
#: settings.php:
|
3804 |
msgid "Reset All Settings"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
-
#: settings.php:
|
3808 |
msgid "Viewports"
|
3809 |
msgstr ""
|
3810 |
|
3811 |
-
#: settings.php:
|
3812 |
msgid "Hooks"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
-
#: settings.php:
|
3816 |
msgid "Header"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
-
#: settings.php:
|
3820 |
msgid "Footer"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: settings.php:
|
3824 |
msgid "Debugging"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
-
#: settings.php:
|
3828 |
msgid "Plugin priority"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
-
#: settings.php:
|
3832 |
msgid "Output buffering"
|
3833 |
msgstr ""
|
3834 |
|
3835 |
-
#: settings.php:
|
3836 |
msgid "Needed for position Above header but may not work with all themes"
|
3837 |
msgstr ""
|
3838 |
|
3839 |
-
#: settings.php:
|
3840 |
msgid "Syntax highlighting theme"
|
3841 |
msgstr ""
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgctxt "no syntax highlighting themes"
|
3845 |
msgid "None"
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#: settings.php:
|
3849 |
msgid "No Syntax Highlighting"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: settings.php:
|
3853 |
msgctxt "syntax highlighting themes"
|
3854 |
msgid "Light"
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#: settings.php:
|
3858 |
msgctxt "syntax highlighting themes"
|
3859 |
msgid "Dark"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: settings.php:
|
3863 |
msgid "Min. user role for ind. exceptions editing"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: settings.php:
|
3867 |
msgid "Disable caching for logged in administrators"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: settings.php:
|
3871 |
msgid ""
|
3872 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3873 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: settings.php:
|
3877 |
msgid "Wait for jQuery"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: settings.php:
|
3881 |
msgid ""
|
3882 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3883 |
"it will run the scripts that may need it"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: settings.php:
|
3887 |
msgid "Sticky widget mode"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: settings.php:
|
3891 |
msgid ""
|
3892 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3893 |
"mode works with most themes but may reload ads on page load."
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "Sticky widget top margin"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
msgid "Dynamic blocks"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: settings.php:
|
3905 |
msgid "Functions for paragraph counting"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
-
#: settings.php:
|
3909 |
msgid ""
|
3910 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3911 |
"functions if paragraphs are not counted properly on non-english pages."
|
3912 |
msgstr ""
|
3913 |
|
3914 |
-
#: settings.php:
|
3915 |
msgid "No paragraph counting inside"
|
3916 |
msgstr ""
|
3917 |
|
3918 |
-
#: settings.php:
|
3919 |
msgid "Label text or HTML code"
|
3920 |
msgstr ""
|
3921 |
|
3922 |
-
#: settings.php:
|
3923 |
msgid ""
|
3924 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3925 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: settings.php:
|
3929 |
msgid "Plugin usage tracking"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
#. translators: %s: Ad Inserter
|
3933 |
-
#: settings.php:
|
3934 |
msgid ""
|
3935 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3936 |
"Only information regarding the WordPress environment and %s usage is "
|
3937 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: settings.php:
|
3941 |
msgid "CSS class name for the wrapping div"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: settings.php:
|
3945 |
msgid "Block class name"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: settings.php:
|
3949 |
msgid "Include block number class"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: settings.php:
|
3953 |
msgid "Block number class"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#: settings.php:
|
3957 |
msgid "Include block name class"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#: settings.php:
|
3961 |
msgid "Block name class"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#: settings.php:
|
3965 |
msgid ""
|
3966 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3967 |
msgstr ""
|
3968 |
|
3969 |
-
#: settings.php:
|
3970 |
msgid "Inline styles"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
-
#: settings.php:
|
3974 |
msgid "Preview of the block wrapping code"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgid "Wrapping div"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "BLOCK CODE"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#: settings.php:
|
3986 |
msgid "Viewport Settings used for client-side device detection"
|
3987 |
msgstr ""
|
3988 |
|
3989 |
#. Translators: %d: viewport number
|
3990 |
-
#: settings.php:
|
3991 |
msgid "Viewport %d name"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#: settings.php:
|
3995 |
msgid "min width"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: settings.php:
|
3999 |
msgid "Custom Hooks"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: settings.php:
|
4003 |
msgid "Enable hook"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
#. translators: %d: hook number
|
4007 |
-
#: settings.php:
|
4008 |
msgid "Hook %d name"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
-
#: settings.php:
|
4012 |
msgid "Hook name for automatic insertion selection"
|
4013 |
msgstr ""
|
4014 |
|
4015 |
-
#: settings.php:
|
4016 |
msgid "action"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: settings.php:
|
4020 |
msgid "Action name as used in the do_action () function"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: settings.php:
|
4024 |
msgid "priority"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: settings.php:
|
4028 |
msgid "Priority for the hook (default is 10)"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: settings.php:
|
4032 |
msgid "Enable insertion of this code into HTML page header"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Process PHP code"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "HTML Page Header Code"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "Code in the %s section of the HTML page"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgctxt "code in the header"
|
4049 |
msgid "NOT ENABLED"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
-
#: settings.php:
|
4053 |
msgid "Use server-side detection to insert code only for"
|
4054 |
msgstr ""
|
4055 |
|
4056 |
-
#: settings.php:
|
4057 |
msgid ""
|
4058 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4059 |
"Page not found"
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: settings.php:
|
4063 |
msgid "Insert on Error 404 page"
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#: settings.php:
|
4067 |
msgid "Enable insertion of this code into HTML page footer"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgid "HTML Page Footer Code"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
#. translators: %s: HTML tags
|
4075 |
-
#: settings.php:
|
4076 |
msgid "Code before the %s tag of the the HTML page"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
-
#: settings.php:
|
4080 |
msgctxt "code in the footer"
|
4081 |
msgid "NOT ENABLED"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: settings.php:
|
4085 |
msgid ""
|
4086 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4087 |
"Page not found"
|
4088 |
msgstr ""
|
4089 |
|
4090 |
-
#: settings.php:
|
4091 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#: settings.php:
|
4095 |
msgid "Enable detection of ad blocking"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#: settings.php:
|
4099 |
msgid "Global action when ad blocking is detected"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
-
#: settings.php:
|
4103 |
msgid "No action for"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
-
#: settings.php:
|
4107 |
msgid "Exceptions for global action when ad blocking is detected."
|
4108 |
msgstr ""
|
4109 |
|
4110 |
-
#: settings.php:
|
4111 |
msgid "Delay Action"
|
4112 |
msgstr ""
|
4113 |
|
4114 |
-
#: settings.php:
|
4115 |
msgid ""
|
4116 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4117 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: settings.php:
|
4121 |
msgctxt "Delay Action for x "
|
4122 |
msgid "page views"
|
4123 |
msgstr ""
|
4124 |
|
4125 |
-
#: settings.php:
|
4126 |
msgid "No Action Period"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: settings.php:
|
4130 |
msgid ""
|
4131 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4132 |
"for no no-action period (action fires always after defined page view delay). "
|
4133 |
"Sets cookie."
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#: settings.php:
|
4137 |
msgctxt "no action period"
|
4138 |
msgid "days"
|
4139 |
msgstr ""
|
4140 |
|
4141 |
-
#: settings.php:
|
4142 |
msgid "Custom Selectors"
|
4143 |
msgstr ""
|
4144 |
|
4145 |
-
#: settings.php:
|
4146 |
msgid ""
|
4147 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4148 |
"blocking detection. Invisible element or element with zero height means ad "
|
4149 |
"blocking is present."
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#: settings.php:
|
4153 |
msgid "Redirection Page"
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#: settings.php:
|
4157 |
msgid "Custom Url"
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
#: settings.php:
|
4161 |
msgid ""
|
4162 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4163 |
"select Custom url and set it below."
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: settings.php:
|
4167 |
msgid "Custom Redirection Url"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
-
#: settings.php:
|
4171 |
msgid "Message HTML code"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
-
#: settings.php:
|
4175 |
msgid "Preview message when ad blocking is detected"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: settings.php:
|
4179 |
msgid "Prevent visitors from closing the warning message"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: settings.php:
|
4183 |
msgid "Undismissible Message"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: settings.php:
|
4187 |
msgid "Not undismissible for"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: settings.php:
|
4191 |
msgid "Users which can close the warning message."
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: settings.php:
|
4195 |
msgid ""
|
4196 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4197 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: settings.php:
|
4201 |
msgid "Disable header code (Header tab)"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: settings.php:
|
4205 |
msgid "Disable footer code (Footer tab)"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
#. translators: %s: Ad Inserter
|
4209 |
-
#: settings.php:
|
4210 |
msgid "Disable %s JavaScript code"
|
4211 |
msgstr ""
|
4212 |
|
4213 |
#. translators: %s: Ad Inserter
|
4214 |
-
#: settings.php:
|
4215 |
msgid "Disable %s CSS code"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: settings.php:
|
4219 |
msgid ""
|
4220 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
#: settings.php:
|
4224 |
msgid "Disable insertion of all blocks"
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#: settings.php:
|
4228 |
msgid "Disable insertions"
|
4229 |
msgstr ""
|
4230 |
|
4231 |
#. translators: %s: Ad Inserter
|
4232 |
-
#: settings.php:
|
4233 |
msgid "%s CSS CODE"
|
4234 |
msgstr ""
|
4235 |
|
4236 |
-
#: settings.php:
|
4237 |
msgid "HEADER CODE"
|
4238 |
msgstr ""
|
4239 |
|
4240 |
#. translators: %s: PHP tags
|
4241 |
-
#: settings.php:
|
4242 |
msgid "BLOCK PHP CODE"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
#. translators: %s: Ad Inserter
|
4246 |
-
#: settings.php:
|
4247 |
msgid "%s JS CODE"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
-
#: settings.php:
|
4251 |
msgid "FOOTER CODE"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
-
#: settings.php:
|
4255 |
msgid "Force showing admin toolbar when viewing site"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
-
#: settings.php:
|
4259 |
msgid "Enable debugging functions in admin toolbar"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
-
#: settings.php:
|
4263 |
msgid "Debugging functions in admin toolbar"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
-
#: settings.php:
|
4267 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
-
#: settings.php:
|
4271 |
msgid "Debugging functions on mobile screens"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
-
#: settings.php:
|
4275 |
msgid ""
|
4276 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4277 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4280,232 +4259,232 @@ msgid ""
|
|
4280 |
"administrators debugging is always enabled."
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#: settings.php:
|
4284 |
msgid "Remote debugging"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#: settings.php:
|
4288 |
msgid ""
|
4289 |
"Disable translation to see original texts for the settings and messages in "
|
4290 |
"English"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
-
#: settings.php:
|
4294 |
msgid "Disable translation"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
-
#: settings.php:
|
4298 |
msgid "Available positions for current theme"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
-
#: settings.php:
|
4302 |
msgid "Error checking pages"
|
4303 |
msgstr ""
|
4304 |
|
4305 |
-
#: settings.php:
|
4306 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4307 |
msgstr ""
|
4308 |
|
4309 |
-
#: settings.php:
|
4310 |
msgctxt "Button"
|
4311 |
msgid "Check"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
-
#: settings.php:
|
4315 |
msgid "Position"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
-
#: settings.php:
|
4319 |
msgid "Archive pages"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
-
#: settings.php:
|
4323 |
msgid ""
|
4324 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#: settings.php:
|
4328 |
msgid "Position not checked yet"
|
4329 |
msgstr ""
|
4330 |
|
4331 |
-
#: settings.php:
|
4332 |
msgid "Toggle active/all blocks"
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#: settings.php:
|
4336 |
msgid "Rearrange block order"
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#: settings.php:
|
4340 |
msgid "Save new block order"
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#: settings.php:
|
4344 |
msgid "Toggle active/all ad units"
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#: settings.php:
|
4348 |
msgid "Reload AdSense ad units"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#: settings.php:
|
4352 |
msgid "Clear authorization to access AdSense account"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#: settings.php:
|
4356 |
msgid "Google AdSense Homepage"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#: settings.php:
|
4360 |
msgid "Switch to physical ads.txt file"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
#: settings.php:
|
4364 |
msgid "Switch to virtual ads.txt file"
|
4365 |
msgstr ""
|
4366 |
|
4367 |
#. translators: %s: ads.txt
|
4368 |
-
#: settings.php:
|
4369 |
msgid "Open %s"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
-
#: settings.php:
|
4373 |
msgid "Reload ads.txt file"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
-
#: settings.php:
|
4377 |
msgid "Save"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
#. translators: %s: Ad Inserter
|
4381 |
-
#: settings.php:
|
4382 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
-
#: settings.php:
|
4386 |
msgid "Warning"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
#. translators: %s: Ad Inserter
|
4390 |
-
#: settings.php:
|
4391 |
msgid "%s virtual file ads.txt not found"
|
4392 |
msgstr ""
|
4393 |
|
4394 |
-
#: settings.php:
|
4395 |
msgid "IMPORTANT"
|
4396 |
msgstr ""
|
4397 |
|
4398 |
-
#: settings.php:
|
4399 |
msgid "ads.txt file must be placed on the root domain"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
-
#: settings.php:
|
4403 |
msgid "ads.txt file"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
-
#: settings.php:
|
4407 |
msgid "NOT WRITABLE"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
-
#: settings.php:
|
4411 |
msgid "file %s not found"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
-
#: settings.php:
|
4415 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
#. translators: %s: Ad Inserter
|
4419 |
-
#: settings.php:
|
4420 |
msgid "%s virtual ads.txt file"
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#: settings.php:
|
4424 |
msgid "Advertising system"
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Account ID"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#: settings.php:
|
4432 |
msgid "Certification authority ID"
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#: settings.php:
|
4436 |
msgid "Account ID found in block and present in ads.txt"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#: settings.php:
|
4440 |
msgid "Account ID found in block but not present in ads.txt"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#: settings.php:
|
4444 |
msgid "Preview block"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#: settings.php:
|
4448 |
msgid "Pause block"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#: settings.php:
|
4452 |
msgid "Automatic insertion"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
#. translators: %s HTML tags
|
4456 |
-
#: settings.php:
|
4457 |
msgid "PHP code processing"
|
4458 |
msgstr ""
|
4459 |
|
4460 |
-
#: settings.php:
|
4461 |
msgid "Device detection"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
-
#: settings.php:
|
4465 |
msgid "No active block"
|
4466 |
msgstr ""
|
4467 |
|
4468 |
-
#: settings.php:
|
4469 |
msgid "No block matches search keywords"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
-
#: settings.php:
|
4473 |
msgid "Ad unit"
|
4474 |
msgstr ""
|
4475 |
|
4476 |
-
#: settings.php:
|
4477 |
msgid "Slot ID"
|
4478 |
msgstr ""
|
4479 |
|
4480 |
-
#: settings.php:
|
4481 |
msgid "Copy AdSense code"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
-
#: settings.php:
|
4485 |
msgid "Preview AdSense ad"
|
4486 |
msgstr ""
|
4487 |
|
4488 |
-
#: settings.php:
|
4489 |
msgid "Get AdSense code"
|
4490 |
msgstr ""
|
4491 |
|
4492 |
#. translators: %s: HTML tags
|
4493 |
-
#: settings.php:
|
4494 |
msgid ""
|
4495 |
"Please %s clear authorization %s with the button %s above and once again "
|
4496 |
"authorize access to your AdSense account."
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#: settings.php:
|
4500 |
msgid "AdSense Integration"
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#: settings.php:
|
4504 |
msgid "AdSense Integration - Step 2"
|
4505 |
msgstr ""
|
4506 |
|
4507 |
#. translators: %s: HTML tags
|
4508 |
-
#: settings.php:
|
4509 |
msgid ""
|
4510 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4511 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4514,7 +4493,7 @@ msgid ""
|
|
4514 |
msgstr ""
|
4515 |
|
4516 |
#. translators: %s: HTML tags
|
4517 |
-
#: settings.php:
|
4518 |
msgid ""
|
4519 |
"If you get error, can't access ad units or would like to use own Google API "
|
4520 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4522,7 +4501,7 @@ msgid ""
|
|
4522 |
msgstr ""
|
4523 |
|
4524 |
#. translators: %s: HTML tags
|
4525 |
-
#: settings.php:
|
4526 |
msgid ""
|
4527 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4528 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4531,38 +4510,38 @@ msgid ""
|
|
4531 |
msgstr ""
|
4532 |
|
4533 |
#. translators: %s: HTML tags
|
4534 |
-
#: settings.php:
|
4535 |
msgid ""
|
4536 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4537 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4538 |
msgstr ""
|
4539 |
|
4540 |
-
#: settings.php:
|
4541 |
msgid "Get Authorization Code"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
-
#: settings.php:
|
4545 |
msgid "Enter Authorization Code"
|
4546 |
msgstr ""
|
4547 |
|
4548 |
-
#: settings.php:
|
4549 |
msgid "Use own API IDs"
|
4550 |
msgstr ""
|
4551 |
|
4552 |
-
#: settings.php:
|
4553 |
msgid "Clear and return to Step 1"
|
4554 |
msgstr ""
|
4555 |
|
4556 |
-
#: settings.php:
|
4557 |
msgid "Authorize"
|
4558 |
msgstr ""
|
4559 |
|
4560 |
-
#: settings.php:
|
4561 |
msgid "AdSense Integration - Step 1"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
#. translators: %s: Ad Inserter
|
4565 |
-
#: settings.php:
|
4566 |
msgid ""
|
4567 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4568 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4571,192 +4550,192 @@ msgid ""
|
|
4571 |
msgstr ""
|
4572 |
|
4573 |
#. translators: %s: HTML tags
|
4574 |
-
#: settings.php:
|
4575 |
msgid "Go to %s Google APIs and Services console %s"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4579 |
-
#: settings.php:
|
4580 |
msgid ""
|
4581 |
"Create %1$s project - if the project and IDs are already created click on "
|
4582 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4583 |
msgstr ""
|
4584 |
|
4585 |
#. translators: %s: HTML tags
|
4586 |
-
#: settings.php:
|
4587 |
msgid ""
|
4588 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4589 |
"create a new project"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4593 |
-
#: settings.php:
|
4594 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4595 |
msgstr ""
|
4596 |
|
4597 |
#. translators: %s: HTML tags
|
4598 |
-
#: settings.php:
|
4599 |
msgid ""
|
4600 |
"Click on project selection, wait for the project to be created and then and "
|
4601 |
"select %s as the current project"
|
4602 |
msgstr ""
|
4603 |
|
4604 |
#. translators: %s: HTML tags
|
4605 |
-
#: settings.php:
|
4606 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4607 |
msgstr ""
|
4608 |
|
4609 |
#. translators: %s: HTML tags
|
4610 |
-
#: settings.php:
|
4611 |
msgid "Search for adsense and enable %s"
|
4612 |
msgstr ""
|
4613 |
|
4614 |
#. translators: %s: HTML tags
|
4615 |
-
#: settings.php:
|
4616 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
#. translators: %s: HTML tags
|
4620 |
-
#: settings.php:
|
4621 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
#. translators: %s: HTML tags
|
4625 |
-
#: settings.php:
|
4626 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
#. translators: %s: HTML tags
|
4630 |
-
#: settings.php:
|
4631 |
msgid "Click on %s What credentials do I need? %s"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
#. translators: %s: HTML tags
|
4635 |
-
#: settings.php:
|
4636 |
msgid ""
|
4637 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4638 |
"Ad Inserter client %s"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
#. translators: %s: HTML tags
|
4642 |
-
#: settings.php:
|
4643 |
msgid ""
|
4644 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4645 |
"enter %s"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
#. translators: %s: HTML tags
|
4649 |
-
#: settings.php:
|
4650 |
msgid "Click on %s Continue %s"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
#. translators: %s: HTML tags
|
4654 |
-
#: settings.php:
|
4655 |
msgid "Click on %s Done %s"
|
4656 |
msgstr ""
|
4657 |
|
4658 |
#. translators: %s: HTML tags
|
4659 |
-
#: settings.php:
|
4660 |
msgid ""
|
4661 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4662 |
"secret %s"
|
4663 |
msgstr ""
|
4664 |
|
4665 |
-
#: settings.php:
|
4666 |
msgid "Copy them to the appropriate fields below"
|
4667 |
msgstr ""
|
4668 |
|
4669 |
-
#: settings.php:
|
4670 |
msgid "Client ID"
|
4671 |
msgstr ""
|
4672 |
|
4673 |
-
#: settings.php:
|
4674 |
msgid "Enter Client ID"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Client secret"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
-
#: settings.php:
|
4682 |
msgid "Enter Client secret"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: settings.php:
|
4686 |
msgid "Use default API IDs"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: settings.php:
|
4690 |
msgid "All posts"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
-
#: settings.php:
|
4694 |
msgid "All static pages"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
-
#: settings.php:
|
4698 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
-
#: settings.php:
|
4702 |
-
#: settings.php:
|
4703 |
-
#: settings.php:
|
4704 |
-
#: settings.php:
|
4705 |
msgid "Looking for AdSense alternative?"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
-
#: settings.php:
|
4709 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4710 |
msgstr ""
|
4711 |
|
4712 |
-
#: settings.php:
|
4713 |
-
#: settings.php:
|
4714 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
-
#: settings.php:
|
4718 |
msgid "Support plugin development"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
-
#: settings.php:
|
4722 |
msgid ""
|
4723 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4724 |
"reviewing the plugin on WordPres"
|
4725 |
msgstr ""
|
4726 |
|
4727 |
-
#: settings.php:
|
4728 |
msgctxt "Review Ad Inserter"
|
4729 |
msgid "Review"
|
4730 |
msgstr ""
|
4731 |
|
4732 |
-
#: settings.php:
|
4733 |
msgid ""
|
4734 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4735 |
"rating the plugin on WordPres"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
-
#: settings.php:
|
4739 |
msgctxt "Rate Ad Inserter"
|
4740 |
msgid "Rate"
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#: settings.php:
|
4744 |
msgid ""
|
4745 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4746 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4747 |
"you!"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
-
#: settings.php:
|
4751 |
msgid "Donate"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
-
#: settings.php:
|
4755 |
msgid "Average rating of the plugin - Thank you!"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
#. translators: %s: Ad Inserter, HTML tags
|
4759 |
-
#: settings.php:
|
4760 |
msgid ""
|
4761 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4762 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4765,31 +4744,31 @@ msgid ""
|
|
4765 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4766 |
msgstr ""
|
4767 |
|
4768 |
-
#: settings.php:
|
4769 |
msgid "Review"
|
4770 |
msgstr ""
|
4771 |
|
4772 |
-
#: settings.php:
|
4773 |
msgid "Ad Inserter on Twitter"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
-
#: settings.php:
|
4777 |
msgid "Ad Inserter on Facebook"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
-
#: settings.php:
|
4781 |
msgid "Follow Ad Inserter"
|
4782 |
msgstr ""
|
4783 |
|
4784 |
#. translators: %s: HTML tags
|
4785 |
-
#: settings.php:
|
4786 |
msgid ""
|
4787 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4788 |
"and %s Common Settings %s pages"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
#. translators: %s: HTML tags
|
4792 |
-
#: settings.php:
|
4793 |
msgid ""
|
4794 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4795 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4797,343 +4776,343 @@ msgid ""
|
|
4797 |
msgstr ""
|
4798 |
|
4799 |
#. translators: %s: HTML tags
|
4800 |
-
#: settings.php:
|
4801 |
msgid ""
|
4802 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4803 |
"purchase you refer to us"
|
4804 |
msgstr ""
|
4805 |
|
4806 |
#. translators: %s: HTML tags
|
4807 |
-
#: settings.php:
|
4808 |
msgid ""
|
4809 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4810 |
"diagnose and fix the problem."
|
4811 |
msgstr ""
|
4812 |
|
4813 |
#. translators: %s: HTML tags
|
4814 |
-
#: settings.php:
|
4815 |
msgid ""
|
4816 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4817 |
"thread on the %s support forum. %s"
|
4818 |
msgstr ""
|
4819 |
|
4820 |
-
#: settings.php:
|
4821 |
msgid "Code preview with visual CSS editor"
|
4822 |
msgstr ""
|
4823 |
|
4824 |
-
#: settings.php:
|
4825 |
msgid "A/B testing - Track ad impressions and clicks"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
-
#: settings.php:
|
4829 |
msgid "Insert ads on AMP pages"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
-
#: settings.php:
|
4833 |
msgid "Ad blocking detection and content protection"
|
4834 |
msgstr ""
|
4835 |
|
4836 |
-
#: settings.php:
|
4837 |
msgid "Looking for Pro Ad Management plugin?"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
-
#: settings.php:
|
4841 |
msgid "To Optimally Monetize your WordPress website?"
|
4842 |
msgstr ""
|
4843 |
|
4844 |
#. Translators: %s: price of Ad Inserter Pro
|
4845 |
-
#: settings.php:
|
4846 |
msgid "Different license types starting from %s"
|
4847 |
msgstr ""
|
4848 |
|
4849 |
#. translators: %s HTML tags
|
4850 |
-
#: settings.php:
|
4851 |
msgid "%s AdSense Integration %s"
|
4852 |
msgstr ""
|
4853 |
|
4854 |
#. translators: %s HTML tags
|
4855 |
-
#: settings.php:
|
4856 |
msgid "Syntax highlighting %s editor %s"
|
4857 |
msgstr ""
|
4858 |
|
4859 |
#. translators: %s HTML tags
|
4860 |
-
#: settings.php:
|
4861 |
msgid "%s Code preview %s with visual CSS editor"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
#. translators: %s HTML tags
|
4865 |
-
#: settings.php:
|
4866 |
msgid "Simple user interface - all settings on a single page"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
#. translators: %s HTML tags
|
4870 |
-
#: settings.php:
|
4871 |
msgid ""
|
4872 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4873 |
"image / excerpt"
|
4874 |
msgstr ""
|
4875 |
|
4876 |
#. translators: %s HTML tags
|
4877 |
-
#: settings.php:
|
4878 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
#. translators: %s HTML tags
|
4882 |
-
#: settings.php:
|
4883 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4884 |
msgstr ""
|
4885 |
|
4886 |
#. translators: %s HTML tags
|
4887 |
-
#: settings.php:
|
4888 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4889 |
msgstr ""
|
4890 |
|
4891 |
#. translators: %s HTML tags
|
4892 |
-
#: settings.php:
|
4893 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4894 |
msgstr ""
|
4895 |
|
4896 |
#. translators: %s HTML tags
|
4897 |
-
#: settings.php:
|
4898 |
msgid ""
|
4899 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4900 |
"selectors)"
|
4901 |
msgstr ""
|
4902 |
|
4903 |
#. translators: %s HTML tags
|
4904 |
-
#: settings.php:
|
4905 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
#. translators: %s HTML tags
|
4909 |
-
#: settings.php:
|
4910 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4911 |
msgstr ""
|
4912 |
|
4913 |
#. translators: %s HTML tags
|
4914 |
-
#: settings.php:
|
4915 |
msgid ""
|
4916 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4917 |
"scrolls)"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
#. translators: %s HTML tags
|
4921 |
-
#: settings.php:
|
4922 |
msgid "%s Background ads %s with one or left and right background images"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
#. translators: %s HTML tags
|
4926 |
-
#: settings.php:
|
4927 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4928 |
msgstr ""
|
4929 |
|
4930 |
#. translators: %s HTML tags
|
4931 |
-
#: settings.php:
|
4932 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
#. translators: %s HTML tags
|
4936 |
-
#: settings.php:
|
4937 |
msgid ""
|
4938 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4939 |
"visible)"
|
4940 |
msgstr ""
|
4941 |
|
4942 |
#. translators: %s HTML tags
|
4943 |
-
#: settings.php:
|
4944 |
msgid ""
|
4945 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
#. translators: %s HTML tags
|
4949 |
-
#: settings.php:
|
4950 |
msgid "Block %s alignment and style %s customizations"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
#. translators: %s HTML tags
|
4954 |
-
#: settings.php:
|
4955 |
msgid ""
|
4956 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4957 |
"TOS)"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
#. translators: %s HTML tags
|
4961 |
-
#: settings.php:
|
4962 |
msgid ""
|
4963 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4964 |
"feeds"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
#. translators: %s HTML tags
|
4968 |
-
#: settings.php:
|
4969 |
msgid "%s Ad rotation %s (works also with caching)"
|
4970 |
msgstr ""
|
4971 |
|
4972 |
#. translators: %s HTML tags
|
4973 |
-
#: settings.php:
|
4974 |
msgid "Create, edit and check %s ads.txt %s file"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
#. translators: %s HTML tags
|
4978 |
-
#: settings.php:
|
4979 |
msgid ""
|
4980 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4981 |
"AdSense)"
|
4982 |
msgstr ""
|
4983 |
|
4984 |
#. translators: %s HTML tags
|
4985 |
-
#: settings.php:
|
4986 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4987 |
msgstr ""
|
4988 |
|
4989 |
#. translators: %s HTML tags
|
4990 |
-
#: settings.php:
|
4991 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
#. translators: %s HTML tags
|
4995 |
-
#: settings.php:
|
4996 |
msgid "Support for %s A/B testing %s"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s HTML tags
|
5000 |
-
#: settings.php:
|
5001 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
#. translators: %s HTML tags
|
5005 |
-
#: settings.php:
|
5006 |
msgid "Click fraud %s protection %s"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "Support for %s lazy loading %s"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "Support for ads on %s AMP pages %s"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#. translators: %s HTML tags
|
5025 |
-
#: settings.php:
|
5026 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
#. translators: %s HTML tags
|
5030 |
-
#: settings.php:
|
5031 |
msgid "%s Banner %s code generator"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
#. translators: %s HTML tags
|
5035 |
-
#: settings.php:
|
5036 |
msgid "Support for %s header and footer %s code"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
#. translators: %s HTML tags
|
5040 |
-
#: settings.php:
|
5041 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
#. translators: %s HTML tags
|
5045 |
-
#: settings.php:
|
5046 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
#. translators: %s HTML tags
|
5050 |
-
#: settings.php:
|
5051 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
#. translators: %s HTML tags
|
5055 |
-
#: settings.php:
|
5056 |
msgid ""
|
5057 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5058 |
"protection"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
#. translators: %s HTML tags
|
5062 |
-
#: settings.php:
|
5063 |
msgid "%s Ad blocking statistics %s"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
#. translators: %s HTML tags
|
5067 |
-
#: settings.php:
|
5068 |
msgid ""
|
5069 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5070 |
"referrers, operating systems, browsers"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
#. translators: %s HTML tags
|
5074 |
-
#: settings.php:
|
5075 |
msgid ""
|
5076 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
#. translators: %s HTML tags
|
5080 |
-
#: settings.php:
|
5081 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
#. translators: %s HTML tags
|
5085 |
-
#: settings.php:
|
5086 |
msgid "%s Import/Export %s block or plugin settings"
|
5087 |
msgstr ""
|
5088 |
|
5089 |
#. translators: %s HTML tags
|
5090 |
-
#: settings.php:
|
5091 |
msgid "%s Insertion scheduling %s with fallback option"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
#. translators: %s HTML tags
|
5095 |
-
#: settings.php:
|
5096 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
-
#: settings.php:
|
5101 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
-
#: settings.php:
|
5106 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
-
#: settings.php:
|
5111 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
-
#: settings.php:
|
5116 |
msgid ""
|
5117 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
#. translators: %s HTML tags
|
5121 |
-
#: settings.php:
|
5122 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
#. translators: %s HTML tags
|
5126 |
-
#: settings.php:
|
5127 |
msgid "No ads on the settings page"
|
5128 |
msgstr ""
|
5129 |
|
5130 |
#. translators: %s HTML tags
|
5131 |
-
#: settings.php:
|
5132 |
msgid "Premium support"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
#. translators: %s HTML tags
|
5136 |
-
#: settings.php:
|
5137 |
msgid ""
|
5138 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5139 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5148,82 +5127,82 @@ msgid ""
|
|
5148 |
msgstr ""
|
5149 |
|
5150 |
#. translators: %s HTML tags
|
5151 |
-
#: settings.php:
|
5152 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5153 |
msgstr ""
|
5154 |
|
5155 |
#. translators: %s HTML tags
|
5156 |
-
#: settings.php:
|
5157 |
msgid "Ads between posts"
|
5158 |
msgstr ""
|
5159 |
|
5160 |
#. translators: %s HTML tags
|
5161 |
-
#: settings.php:
|
5162 |
msgid "Ads between comments"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
#. translators: %s HTML tags
|
5166 |
-
#: settings.php:
|
5167 |
msgid "Support via email"
|
5168 |
msgstr ""
|
5169 |
|
5170 |
#. translators: %s HTML tags
|
5171 |
-
#: settings.php:
|
5172 |
msgid "%s Sticky positions %s"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
#. translators: %s HTML tags
|
5176 |
-
#: settings.php:
|
5177 |
msgid "%s Limit insertions %s"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
#. translators: %s HTML tags
|
5181 |
-
#: settings.php:
|
5182 |
msgid "%s Clearance %s options"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
#. translators: %s HTML tags
|
5186 |
-
#: settings.php:
|
5187 |
msgid "Ad rotation"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
#. translators: %s HTML tags
|
5191 |
-
#: settings.php:
|
5192 |
msgid "%s A/B testing %s"
|
5193 |
msgstr ""
|
5194 |
|
5195 |
#. translators: %s HTML tags
|
5196 |
-
#: settings.php:
|
5197 |
msgid "%s Ad tracking %s"
|
5198 |
msgstr ""
|
5199 |
|
5200 |
#. translators: %s HTML tags
|
5201 |
-
#: settings.php:
|
5202 |
msgid "Support for %s AMP pages %s"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
#. translators: %s HTML tags
|
5206 |
-
#: settings.php:
|
5207 |
msgid "%s Ad blocking detection %s"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
#. translators: %s HTML tags
|
5211 |
-
#: settings.php:
|
5212 |
msgid "%s Mobile device detection %s"
|
5213 |
msgstr ""
|
5214 |
|
5215 |
#. translators: %s HTML tags
|
5216 |
-
#: settings.php:
|
5217 |
msgid "64 code blocks"
|
5218 |
msgstr ""
|
5219 |
|
5220 |
#. translators: %s HTML tags
|
5221 |
-
#: settings.php:
|
5222 |
msgid "%s GEO targeting %s"
|
5223 |
msgstr ""
|
5224 |
|
5225 |
#. translators: %s HTML tags
|
5226 |
-
#: settings.php:
|
5227 |
msgid "%s Scheduling %s"
|
5228 |
msgstr ""
|
5229 |
|
@@ -6026,91 +6005,95 @@ msgid "Select or upload banner image"
|
|
6026 |
msgstr ""
|
6027 |
|
6028 |
#: strings.php:254
|
6029 |
-
msgid "
|
6030 |
msgstr ""
|
6031 |
|
6032 |
#: strings.php:255
|
|
|
|
|
|
|
|
|
6033 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6034 |
msgstr ""
|
6035 |
|
6036 |
-
#: strings.php:
|
6037 |
msgctxt "Monday"
|
6038 |
msgid "MO"
|
6039 |
msgstr ""
|
6040 |
|
6041 |
-
#: strings.php:
|
6042 |
msgctxt "Tuesday"
|
6043 |
msgid "TU"
|
6044 |
msgstr ""
|
6045 |
|
6046 |
-
#: strings.php:
|
6047 |
msgctxt "Wednesday"
|
6048 |
msgid "WE"
|
6049 |
msgstr ""
|
6050 |
|
6051 |
-
#: strings.php:
|
6052 |
msgctxt "Thursday"
|
6053 |
msgid "TH"
|
6054 |
msgstr ""
|
6055 |
|
6056 |
-
#: strings.php:
|
6057 |
msgctxt "Friday"
|
6058 |
msgid "FR"
|
6059 |
msgstr ""
|
6060 |
|
6061 |
-
#: strings.php:
|
6062 |
msgctxt "Saturday"
|
6063 |
msgid "SA"
|
6064 |
msgstr ""
|
6065 |
|
6066 |
-
#: strings.php:
|
6067 |
msgctxt "Sunday"
|
6068 |
msgid "SU"
|
6069 |
msgstr ""
|
6070 |
|
6071 |
-
#: strings.php:
|
6072 |
msgctxt "Scheduling"
|
6073 |
msgid "FALLBACK"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
-
#: strings.php:
|
6077 |
msgid "Automatically placed by AdSense Auto ads code"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
-
#: strings.php:
|
6081 |
msgid "Add"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
-
#: strings.php:
|
6085 |
msgctxt "Element"
|
6086 |
msgid "Parent"
|
6087 |
msgstr ""
|
6088 |
|
6089 |
-
#: strings.php:
|
6090 |
msgid "Cancel element selection"
|
6091 |
msgstr ""
|
6092 |
|
6093 |
-
#: strings.php:
|
6094 |
msgid "Select parent element"
|
6095 |
msgstr ""
|
6096 |
|
6097 |
-
#: strings.php:
|
6098 |
msgid "CSS selector"
|
6099 |
msgstr ""
|
6100 |
|
6101 |
-
#: strings.php:
|
6102 |
msgid "Use current selector"
|
6103 |
msgstr ""
|
6104 |
|
6105 |
-
#: strings.php:
|
6106 |
msgid "ELEMENT"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: strings.php:
|
6110 |
msgid "PATH"
|
6111 |
msgstr ""
|
6112 |
|
6113 |
-
#: strings.php:
|
6114 |
msgid "SELECTOR"
|
6115 |
msgstr ""
|
6116 |
|
2 |
# This file is distributed under the same license as the Ad Inserter package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Ad Inserter 2.6.9\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2020-05-27 17:48:19+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:412
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:428
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:435
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:521
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:528
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:537
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:544
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:555
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:562
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1206
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1211
|
67 |
msgid "After"
|
68 |
msgstr ""
|
69 |
|
70 |
#. translators: Debugging position name Prepend content of HTML element (before
|
71 |
#. the content of the HTML element)
|
72 |
+
#: ad-inserter.php:1216 strings.php:104
|
73 |
msgid "Prepend content"
|
74 |
msgstr ""
|
75 |
|
76 |
#. translators: Debugging position name Append content of HTML element (after
|
77 |
#. the content of the HTML element)
|
78 |
+
#: ad-inserter.php:1221 strings.php:105
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1226 strings.php:106
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1231 strings.php:169
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1278
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1282
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1577
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1919 ad-inserter.php:3134
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2509
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2509
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2510
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2511
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2512
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2513
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2514
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:2829
|
143 |
msgid "Hey, you are now using %1$s %2$s block."
|
144 |
msgid_plural "Hey, you are now using %1$s %2$s blocks."
|
145 |
msgstr[0] ""
|
146 |
msgstr[1] ""
|
147 |
|
148 |
+
#: ad-inserter.php:2832
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:2836
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:2841
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:2844
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:2857
|
166 |
msgid ""
|
167 |
"Please take a moment to rate the plugin. When you rate it with 5 stars it's "
|
168 |
"like saying 'Thank you'. Somebody will be happy."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: ad-inserter.php:2859
|
172 |
msgid ""
|
173 |
"Positive reviews are a great incentive to fix bugs and to add new features "
|
174 |
"for better monetization of your website."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: ad-inserter.php:2865
|
178 |
msgid "Sure"
|
179 |
msgstr ""
|
180 |
|
181 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter
|
182 |
#. translators: 1: AMPforWP Plugin Manager, 2: Ad Inserter, 3, 4: HTML tags
|
183 |
+
#: ad-inserter.php:2882 ad-inserter.php:2917
|
184 |
msgid "Warning: %1$s %3$s disabled %4$s %2$s on AMP pages."
|
185 |
msgstr ""
|
186 |
|
187 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
188 |
+
#: ad-inserter.php:2889
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ad-inserter.php:2899
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:2931
|
198 |
msgid ""
|
199 |
"Load settings page in safe mode to avoid collisions with other plugins or "
|
200 |
"theme"
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: ad-inserter.php:2931
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
+
#: ad-inserter.php:3026
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ad-inserter.php:3055 ad-inserter.php:10431 class.php:2307
|
214 |
+
#: includes/preview.php:2324 includes/preview.php:2369
|
215 |
+
#: includes/preview.php:2406 settings.php:4252 strings.php:3
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ad-inserter.php:3056 settings.php:4253 settings.php:4338
|
220 |
msgid "Name"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ad-inserter.php:3059 settings.php:1187
|
224 |
msgid "Default insertion"
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: For this post or page
|
228 |
+
#: ad-inserter.php:3062
|
229 |
msgctxt "Page"
|
230 |
msgid "For this"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ad-inserter.php:3063
|
234 |
msgctxt "Post"
|
235 |
msgid "For this"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ad-inserter.php:3075
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "pages"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ad-inserter.php:3078
|
244 |
msgctxt "Enabled/disabled on all"
|
245 |
msgid "posts"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107 strings.php:175
|
249 |
msgid "Enabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Menu items
|
253 |
+
#: ad-inserter.php:3095 ad-inserter.php:3107
|
254 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
255 |
+
#: includes/functions.php:2668 strings.php:16
|
256 |
msgid "Disabled"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ad-inserter.php:3097
|
260 |
msgid "No individual exceptions"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: Not enabled for pages or posts
|
264 |
+
#: ad-inserter.php:3099
|
265 |
msgid "Not enabled for"
|
266 |
msgstr ""
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
+
#: ad-inserter.php:3127
|
270 |
msgid "No block has individual exceptions enabled"
|
271 |
msgstr ""
|
272 |
|
273 |
#. translators: 1: Ad Inserter Settings (page), 2: Tag / Archive pages
|
274 |
+
#: ad-inserter.php:3132
|
275 |
msgid ""
|
276 |
"Default insertion can be configured for each block on %1$s page - button "
|
277 |
"next to %2$s checkbox."
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: ad-inserter.php:3135 settings.php:1165
|
281 |
msgid "Tag / Archive pages"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ad-inserter.php:3137
|
285 |
msgid ""
|
286 |
"When individual exceptions for a block are enabled, a checkbox will be "
|
287 |
"listed here to change default insertion for this post or page."
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: ad-inserter.php:3138
|
291 |
msgid ""
|
292 |
"This way you can individually enable or disable blocks on specific posts or "
|
293 |
"pages."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: ad-inserter.php:3140
|
297 |
msgid "For more information check page %s"
|
298 |
msgstr ""
|
299 |
|
300 |
#. translators: Ad Inserter Exceptions documentation page
|
301 |
+
#: ad-inserter.php:3142
|
302 |
msgid "Individual Exceptions"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ad-inserter.php:3189
|
306 |
msgid "STATIC PAGE"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ad-inserter.php:3192
|
310 |
msgid "POST"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ad-inserter.php:3195
|
314 |
msgid "HOMEPAGE"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ad-inserter.php:3198
|
318 |
msgid "CATEGORY PAGE"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ad-inserter.php:3201
|
322 |
msgid "SEARCH PAGE"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ad-inserter.php:3204
|
326 |
msgid "ARCHIVE PAGE"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ad-inserter.php:3207
|
330 |
msgid "ERROR 404 PAGE"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ad-inserter.php:3210
|
334 |
msgid "AJAX CALL"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ad-inserter.php:3213
|
338 |
msgid "UNKNOWN PAGE TYPE"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ad-inserter.php:3230
|
342 |
msgid "Click to delete ad blocking detection cokies"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ad-inserter.php:3231
|
346 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
347 |
msgstr ""
|
348 |
|
349 |
#. translators: %s: AdSense Auto Ads
|
350 |
+
#: ad-inserter.php:3260
|
351 |
msgid ""
|
352 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
353 |
"positions"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ad-inserter.php:3395
|
357 |
msgid "Code for insertion"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ad-inserter.php:3395
|
361 |
msgid "character"
|
362 |
msgid_plural "characters"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ad-inserter.php:3411
|
367 |
msgid "Header code"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ad-inserter.php:3411
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ad-inserter.php:3411 ad-inserter.php:3644
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ad-inserter.php:3644
|
382 |
msgid "Footer code"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ad-inserter.php:3644
|
386 |
msgctxt "Footer code"
|
387 |
msgid "DISABLED"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ad-inserter.php:3650
|
391 |
msgid "JAVASCRIPT NOT WORKING"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ad-inserter.php:3650
|
395 |
msgid "NO JAVASCRIPT ERRORS"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ad-inserter.php:3650
|
399 |
msgid "JAVASCRIPT ERRORS"
|
400 |
msgstr ""
|
401 |
|
402 |
#. translators: block name (block with default settings)
|
403 |
+
#: ad-inserter.php:6120
|
404 |
msgctxt "Block name"
|
405 |
msgid "Default"
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
+
#: ad-inserter.php:6801
|
410 |
msgid "Error importing %s settings."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ad-inserter.php:6802
|
414 |
msgid "Error importing settings for block"
|
415 |
msgid_plural "Error importing settings for blocks:"
|
416 |
msgstr[0] ""
|
417 |
msgstr[1] ""
|
418 |
|
419 |
+
#: ad-inserter.php:6855
|
420 |
msgid "Settings saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
+
#: ad-inserter.php:6857
|
425 |
msgid "Invalid data received - %s settings not saved."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ad-inserter.php:6956
|
429 |
msgid "Settings cleared."
|
430 |
msgstr ""
|
431 |
|
432 |
#. Translators: Post/Static page must have between X and Y words
|
433 |
+
#: ad-inserter.php:7353 ad-inserter.php:7355 ad-inserter.php:7378
|
434 |
+
#: settings.php:2166
|
435 |
msgid "word"
|
436 |
msgid_plural "words"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
+
#: ad-inserter.php:7392 ad-inserter.php:7520
|
441 |
msgid "HTML TAGS REMOVED"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ad-inserter.php:7596
|
445 |
msgid "BEFORE COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ad-inserter.php:7722
|
449 |
msgid "AFTER COMMENTS"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ad-inserter.php:7803
|
453 |
msgid "BETWEEN COMMENTS"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ad-inserter.php:9737 ad-inserter.php:9820
|
457 |
msgctxt "category name"
|
458 |
msgid "Uncategorized"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: ad-inserter.php:10048
|
462 |
msgid "requires WordPress 4.6 or newer"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: ad-inserter.php:10048
|
466 |
msgid "Please update!"
|
467 |
msgstr ""
|
468 |
|
469 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
470 |
#. name with HTML tags will be added)
|
471 |
+
#: ad-inserter.php:10304
|
472 |
msgid "Thank you for installing"
|
473 |
msgstr ""
|
474 |
|
475 |
#. translators: Opt-in message: %s: HTML tags
|
476 |
+
#: ad-inserter.php:10306
|
477 |
msgid ""
|
478 |
"We would like to %s track its usage %s on your site. This is completely "
|
479 |
"optional and can be disabled at any time."
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: ad-inserter.php:10308
|
483 |
msgid ""
|
484 |
"We don't record any sensitive data, only information regarding the WordPress "
|
485 |
"environment and plugin usage, which will help us to make improvements to the "
|
487 |
msgstr ""
|
488 |
|
489 |
#. translators: Deactivation message: %s: HTML tags
|
490 |
+
#: ad-inserter.php:10345
|
491 |
msgid ""
|
492 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
493 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: %s: Ad Inserter
|
498 |
+
#: ad-inserter.php:10389
|
499 |
msgid "%s block."
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
+
#: ad-inserter.php:10405 ad-inserter.php:10440
|
504 |
msgid "Processing log"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
+
#: ad-inserter.php:10407 ad-inserter.php:10441
|
509 |
msgid "Dummy widget"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: widget title
|
513 |
+
#: ad-inserter.php:10409 ad-inserter.php:10439
|
514 |
msgid "Debugging tools"
|
515 |
msgstr ""
|
516 |
|
517 |
#. translators: block status (widget title)
|
518 |
+
#: ad-inserter.php:10416
|
519 |
msgctxt "block"
|
520 |
msgid "PAUSED"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: ad-inserter.php:10417
|
524 |
msgid "WIDGET DISABLED"
|
525 |
msgstr ""
|
526 |
|
527 |
+
#: ad-inserter.php:10418
|
528 |
msgid "Unknown block"
|
529 |
msgstr ""
|
530 |
|
531 |
+
#: ad-inserter.php:10426 includes/functions-check-now.php:3261
|
532 |
+
#: includes/functions.old.php:3186 includes/functions.php:3602
|
533 |
+
#: settings.php:1217
|
534 |
msgid "Title"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ad-inserter.php:10448
|
538 |
msgctxt "Widget"
|
539 |
msgid "Sticky"
|
540 |
msgstr ""
|
541 |
|
542 |
+
#: ad-inserter.php:10497
|
543 |
msgid ""
|
544 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
545 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
546 |
msgstr ""
|
547 |
|
548 |
+
#: ad-inserter.php:10498
|
549 |
msgid ""
|
550 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
551 |
"will clear all settings that are available only in the Pro version "
|
553 |
msgstr ""
|
554 |
|
555 |
#. translators: %s: Ad Inserter
|
556 |
+
#: class.php:545 class.php:554 class.php:557
|
557 |
msgid "PHP error in %s block"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: class.php:2257
|
561 |
msgid "Counters"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: class.php:2261
|
565 |
msgid "Content"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: class.php:2266
|
569 |
msgid "Excerpt"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: class.php:2271 strings.php:17
|
573 |
msgid "Before post"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: class.php:2276 strings.php:18
|
577 |
msgid "After post"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: class.php:2281 strings.php:25
|
581 |
msgid "Between posts"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: class.php:2286 settings.php:1900 settings.php:4270
|
585 |
msgid "Widget"
|
586 |
msgstr ""
|
587 |
|
588 |
+
#: class.php:2291 settings.php:4268
|
589 |
msgid "PHP function call"
|
590 |
msgstr ""
|
591 |
|
592 |
#. Translators: %s: custom hook name
|
593 |
+
#: class.php:2301
|
594 |
msgid "Custom hook %s call"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: class.php:2337
|
598 |
msgid "AJAX REQUEST"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: class.php:2340
|
602 |
msgid "Ajax request for block in iframe"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: class.php:2374
|
606 |
msgid "Ajax request url, click to open it in a new tab"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: class.php:2377
|
610 |
msgid "IN THE LOOP"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: class.php:2377
|
614 |
msgid "YES"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#: class.php:2377
|
618 |
msgid "NO"
|
619 |
msgstr ""
|
620 |
|
621 |
+
#: class.php:2413
|
622 |
msgid "BLOCK"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: class.php:2413
|
626 |
msgctxt "block or widget"
|
627 |
msgid "INSERTED BUT NOT VISIBLE"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: class.php:2602
|
631 |
msgctxt "viewports"
|
632 |
msgid "ALL"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: class.php:2635 class.php:2677 class.php:3987 strings.php:279
|
636 |
msgctxt "Block"
|
637 |
msgid "HIDDEN"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: class.php:2684 class.php:3990 strings.php:278
|
641 |
msgctxt "Block"
|
642 |
msgid "VISIBLE"
|
643 |
msgstr ""
|
644 |
|
645 |
+
#: class.php:3216 class.php:3288
|
646 |
msgid "ACTIVE GROUPS"
|
647 |
msgstr ""
|
648 |
|
649 |
+
#: class.php:3686
|
650 |
msgid "start='%s' end='%s' days='%s' type='%s'"
|
651 |
msgstr ""
|
652 |
|
653 |
#. translators: %s: list parameters and type
|
654 |
+
#: class.php:3694
|
655 |
msgid "parameters='%s' type='%s'"
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: %s: list parameters and type
|
659 |
+
#: class.php:3696
|
660 |
msgid "referers='%s' type='%s'"
|
661 |
msgstr ""
|
662 |
|
663 |
#. translators: %s: list parameters and type
|
664 |
+
#: class.php:3698
|
665 |
msgid "clients='%s' type='%s'"
|
666 |
msgstr ""
|
667 |
|
668 |
#. translators: %s: list parameters and type
|
669 |
+
#: class.php:3870
|
670 |
msgid "countries='%s' type='%s'"
|
671 |
msgstr ""
|
672 |
|
673 |
#. translators: %s: list parameters and type
|
674 |
+
#: class.php:3872
|
675 |
msgid "ip addresses='%s' type='%s'"
|
676 |
msgstr ""
|
677 |
|
678 |
+
#: class.php:3987 class.php:3990
|
679 |
msgid "viewport='%s' type='%s'"
|
680 |
msgstr ""
|
681 |
|
682 |
+
#: class.php:4343 strings.php:272
|
683 |
msgid "BEFORE"
|
684 |
msgstr ""
|
685 |
|
686 |
+
#: class.php:4351 strings.php:274
|
687 |
msgid "PREPEND CONTENT"
|
688 |
msgstr ""
|
689 |
|
690 |
+
#: class.php:4355 strings.php:275
|
691 |
msgid "APPEND CONTENT"
|
692 |
msgstr ""
|
693 |
|
694 |
+
#: class.php:4359 strings.php:276
|
695 |
msgid "REPLACE CONTENT"
|
696 |
msgstr ""
|
697 |
|
698 |
+
#: class.php:4363 strings.php:277
|
699 |
msgid "REPLACE ELEMENT"
|
700 |
msgstr ""
|
701 |
|
702 |
+
#: class.php:4374 strings.php:273
|
703 |
msgid "AFTER"
|
704 |
msgstr ""
|
705 |
|
706 |
+
#: class.php:4459 includes/preview.php:2369 includes/preview.php:2406
|
707 |
msgid "Code"
|
708 |
msgstr ""
|
709 |
|
710 |
+
#: class.php:4462
|
711 |
msgid "for block"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: class.php:8316
|
715 |
msgid ""
|
716 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
717 |
"extension for PHP."
|
718 |
msgstr ""
|
719 |
|
720 |
+
#: includes/editor.php:4 includes/placeholders.php:349
|
721 |
+
#: includes/preview.php:2310 strings.php:285
|
722 |
msgid "Use"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/editor.php:5 includes/preview.php:2311
|
726 |
msgid "Reset"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: includes/editor.php:6 includes/placeholders.php:351
|
730 |
+
#: includes/preview.php:2313 settings.php:3608 strings.php:227 strings.php:284
|
731 |
msgid "Cancel"
|
732 |
msgstr ""
|
733 |
|
734 |
+
#: includes/editor.php:71
|
735 |
msgid "Visual Code Editor"
|
736 |
msgstr ""
|
737 |
|
738 |
+
#: includes/editor.php:259 includes/preview-adb.php:286
|
739 |
+
#: includes/preview.php:2300
|
740 |
msgid ""
|
741 |
"This page was not loaded properly. Please check browser, plugins and ad "
|
742 |
"blockers."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/editor.php:261 settings.php:291
|
746 |
msgid "Error loading page"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: includes/editor.php:261 includes/preview-adb.php:288
|
750 |
+
#: includes/preview.php:2302
|
751 |
msgid "PAGE BLOCKED"
|
752 |
msgstr ""
|
753 |
|
754 |
#: includes/functions-check-now.php:288 includes/functions.old.php:289
|
755 |
+
#: includes/functions.php:304
|
756 |
msgid "%d of %d names shown"
|
757 |
msgstr ""
|
758 |
|
759 |
#. translators: %s: name filter
|
760 |
#: includes/functions-check-now.php:307 includes/functions.old.php:308
|
761 |
+
#: includes/functions.php:323
|
762 |
msgid "No name matches filter"
|
763 |
msgstr ""
|
764 |
|
765 |
#. translators: %s: Ad Inserter Pro
|
766 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
767 |
+
#: includes/functions.php:405
|
768 |
msgid ""
|
769 |
"Import %s settings when saving - if checked, the encoded settings below will "
|
770 |
"be imported for all blocks and settings"
|
771 |
msgstr ""
|
772 |
|
773 |
#: includes/functions-check-now.php:396 includes/functions.old.php:383
|
774 |
+
#: includes/functions.php:405
|
775 |
msgid "Import Settings for"
|
776 |
msgstr ""
|
777 |
|
778 |
#: includes/functions-check-now.php:400 includes/functions.old.php:387
|
779 |
+
#: includes/functions.php:409
|
780 |
msgid "Saved settings for"
|
781 |
msgstr ""
|
782 |
|
783 |
#: includes/functions-check-now.php:420 includes/functions.old.php:407
|
784 |
+
#: includes/functions.php:429
|
785 |
msgid "License Key"
|
786 |
msgstr ""
|
787 |
|
788 |
#: includes/functions-check-now.php:423 includes/functions.old.php:410
|
789 |
+
#: includes/functions.php:432
|
790 |
msgid "License Key for"
|
791 |
msgstr ""
|
792 |
|
793 |
#: includes/functions-check-now.php:425 includes/functions.old.php:413
|
794 |
+
#: includes/functions.php:434
|
795 |
msgid "Open license page"
|
796 |
msgstr ""
|
797 |
|
798 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
799 |
+
#: includes/functions.php:441
|
800 |
msgid "Hide license key"
|
801 |
msgstr ""
|
802 |
|
803 |
#: includes/functions-check-now.php:432 includes/functions.old.php:421
|
804 |
+
#: includes/functions.php:441
|
805 |
msgid "Hide key"
|
806 |
msgstr ""
|
807 |
|
808 |
#: includes/functions-check-now.php:447 includes/functions.old.php:436
|
809 |
+
#: includes/functions.php:456
|
810 |
msgid "Main content element"
|
811 |
msgstr ""
|
812 |
|
813 |
#: includes/functions-check-now.php:450 includes/functions.old.php:439
|
814 |
+
#: includes/functions.php:459
|
815 |
msgid ""
|
816 |
"Main content element (#id or .class) for 'Stick to the content' position. "
|
817 |
"Leave empty unless position is not properly calculated."
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
821 |
+
#: includes/functions.php:460 settings.php:1368 settings.php:2823
|
822 |
msgid "Open HTML element selector"
|
823 |
msgstr ""
|
824 |
|
825 |
#: includes/functions-check-now.php:456 includes/functions.old.php:445
|
826 |
+
#: includes/functions.php:465
|
827 |
msgid "Lazy loading offset"
|
828 |
msgstr ""
|
829 |
|
830 |
#: includes/functions-check-now.php:459 includes/functions.old.php:448
|
831 |
+
#: includes/functions.php:468
|
832 |
msgid "Offset of the block from the visible viewport when it should be loaded"
|
833 |
msgstr ""
|
834 |
|
835 |
#: includes/functions-check-now.php:470 includes/functions.old.php:459
|
836 |
+
#: includes/functions.php:479
|
837 |
msgid "Export / Import Block Settings"
|
838 |
msgstr ""
|
839 |
|
840 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
841 |
+
#: includes/functions.php:494
|
842 |
msgid "Track impressions and clicks for this block"
|
843 |
msgstr ""
|
844 |
|
845 |
#: includes/functions-check-now.php:485 includes/functions.old.php:474
|
846 |
+
#: includes/functions.php:494
|
847 |
msgid " - global tracking disabled"
|
848 |
msgstr ""
|
849 |
|
850 |
#: includes/functions-check-now.php:492 includes/functions.old.php:481
|
851 |
+
#: includes/functions.php:502 includes/functions.php:3360
|
852 |
msgid "Generate PDF report"
|
853 |
msgstr ""
|
854 |
|
855 |
#: includes/functions-check-now.php:497 includes/functions.old.php:486
|
856 |
+
#: includes/functions.php:516
|
857 |
msgid "Open public report"
|
858 |
msgstr ""
|
859 |
|
860 |
#: includes/functions-check-now.php:511 includes/functions.old.php:500
|
861 |
+
#: includes/functions.php:530
|
862 |
msgid "Toggle Ad Blocking Statistics"
|
863 |
msgstr ""
|
864 |
|
865 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
866 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
867 |
+
#: includes/functions.php:538 includes/functions.php:3341
|
868 |
msgid "Toggle Statistics"
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: includes/functions-check-now.php:528 includes/functions.php:547
|
872 |
msgid "Pin list"
|
873 |
msgstr ""
|
874 |
|
875 |
#. translators: %s: Ad Inserter Pro
|
876 |
#: includes/functions-check-now.php:543 includes/functions.old.php:524
|
877 |
+
#: includes/functions.php:562
|
878 |
msgid "%s license key is not set. Continue?"
|
879 |
msgstr ""
|
880 |
|
881 |
#. translators: %s: Ad Inserter Pro
|
882 |
#: includes/functions-check-now.php:547 includes/functions.old.php:528
|
883 |
+
#: includes/functions.php:566
|
884 |
msgid "Invalid %s license key. Continue?"
|
885 |
msgstr ""
|
886 |
|
887 |
#. translators: %s: Ad Inserter Pro
|
888 |
#: includes/functions-check-now.php:551 includes/functions.old.php:532
|
889 |
+
#: includes/functions.php:570
|
890 |
msgid "%s license overused. Continue?"
|
891 |
msgstr ""
|
892 |
|
893 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
894 |
+
#: includes/functions.php:578 settings.php:1122 settings.php:2267
|
895 |
msgid "Save Settings"
|
896 |
msgstr ""
|
897 |
|
898 |
#: includes/functions-check-now.php:615 includes/functions.old.php:596
|
899 |
+
#: includes/functions.php:638 includes/preview.php:2502
|
900 |
msgid "Horizontal position"
|
901 |
msgstr ""
|
902 |
|
903 |
#: includes/functions-check-now.php:638 includes/functions.old.php:619
|
904 |
+
#: includes/functions.php:663
|
905 |
msgid ""
|
906 |
"Horizontal margin from the content or screen edge, empty means default value "
|
907 |
"from CSS"
|
908 |
msgstr ""
|
909 |
|
910 |
#: includes/functions-check-now.php:646 includes/functions.old.php:627
|
911 |
+
#: includes/functions.php:671 includes/preview.php:2562
|
912 |
msgid "Vertical position"
|
913 |
msgstr ""
|
914 |
|
915 |
#: includes/functions-check-now.php:661 includes/functions.old.php:642
|
916 |
+
#: includes/functions.php:686
|
917 |
msgid ""
|
918 |
"Vertical margin from the top or bottom screen edge, empty means default "
|
919 |
"value from CSS"
|
920 |
msgstr ""
|
921 |
|
922 |
#: includes/functions-check-now.php:686 includes/functions.old.php:667
|
923 |
+
#: includes/functions.php:714 includes/preview.php:2617
|
924 |
msgid "Animation"
|
925 |
msgstr ""
|
926 |
|
927 |
#: includes/functions-check-now.php:704 includes/functions.old.php:685
|
928 |
+
#: includes/functions.php:733
|
929 |
msgid "Trigger"
|
930 |
msgstr ""
|
931 |
|
932 |
#: includes/functions-check-now.php:713 includes/functions.old.php:694
|
933 |
+
#: includes/functions.php:742
|
934 |
msgid ""
|
935 |
"Trigger value: page scroll in %, page scroll in px or element with selector "
|
936 |
"(#id or .class) becomes visible"
|
937 |
msgstr ""
|
938 |
|
939 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
940 |
+
#: includes/functions.php:746
|
941 |
msgid "Offset"
|
942 |
msgstr ""
|
943 |
|
944 |
#: includes/functions-check-now.php:717 includes/functions.old.php:698
|
945 |
+
#: includes/functions.php:746
|
946 |
msgid "Offset of trigger element"
|
947 |
msgstr ""
|
948 |
|
949 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
950 |
+
#: includes/functions.php:750
|
951 |
msgid "Delay"
|
952 |
msgstr ""
|
953 |
|
954 |
#: includes/functions-check-now.php:721 includes/functions.old.php:702
|
955 |
+
#: includes/functions.php:750
|
956 |
msgid "Delay animation after trigger condition"
|
957 |
msgstr ""
|
958 |
|
959 |
#: includes/functions-check-now.php:725 includes/functions.old.php:706
|
960 |
+
#: includes/functions.php:754
|
961 |
msgid "Trigger once"
|
962 |
msgstr ""
|
963 |
|
964 |
#: includes/functions-check-now.php:727 includes/functions.old.php:708
|
965 |
+
#: includes/functions.php:756
|
966 |
msgid "Trigger animation only once"
|
967 |
msgstr ""
|
968 |
|
969 |
#: includes/functions-check-now.php:769 includes/functions-check-now.php:2528
|
970 |
#: includes/functions-check-now.php:2545 includes/functions.old.php:750
|
971 |
#: includes/functions.old.php:2453 includes/functions.old.php:2470
|
972 |
+
#: includes/functions.php:864 includes/functions.php:2807
|
973 |
+
#: includes/functions.php:2823
|
974 |
msgid "Tracking is globally disabled"
|
975 |
msgstr ""
|
976 |
|
977 |
#: includes/functions-check-now.php:773 includes/functions-check-now.php:2532
|
978 |
#: includes/functions-check-now.php:2549 includes/functions.old.php:754
|
979 |
#: includes/functions.old.php:2457 includes/functions.old.php:2474
|
980 |
+
#: includes/functions.php:868 includes/functions.php:2811
|
981 |
+
#: includes/functions.php:2827
|
982 |
msgid "Tracking for this block is disabled"
|
983 |
msgstr ""
|
984 |
|
985 |
#: includes/functions-check-now.php:780 includes/functions.old.php:761
|
986 |
+
#: includes/functions.php:875
|
987 |
msgid "Double click to toggle controls in public reports"
|
988 |
msgstr ""
|
989 |
|
990 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
991 |
+
#: includes/functions.php:881 settings.php:3543 settings.php:3579
|
992 |
+
#: settings.php:3621 strings.php:240
|
993 |
msgid "Loading..."
|
994 |
msgstr ""
|
995 |
|
996 |
#: includes/functions-check-now.php:807 includes/functions.old.php:788
|
997 |
+
#: includes/functions.php:902
|
998 |
msgid ""
|
999 |
"Clear statistics data for the selected range - clear both dates to delete "
|
1000 |
"all data for this block"
|
1001 |
msgstr ""
|
1002 |
|
1003 |
#: includes/functions-check-now.php:811 includes/functions.old.php:792
|
1004 |
+
#: includes/functions.php:906
|
1005 |
msgid "Auto refresh data for the selected range every 60 seconds"
|
1006 |
msgstr ""
|
1007 |
|
1008 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1009 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1010 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1011 |
msgid "Load data for last month"
|
1012 |
msgstr ""
|
1013 |
|
1014 |
#: includes/functions-check-now.php:814 includes/functions-check-now.php:5389
|
1015 |
#: includes/functions.old.php:795 includes/functions.old.php:5262
|
1016 |
+
#: includes/functions.php:909 includes/functions.php:6267
|
1017 |
msgid "Last Month"
|
1018 |
msgstr ""
|
1019 |
|
1020 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1021 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1022 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1023 |
msgid "Load data for this month"
|
1024 |
msgstr ""
|
1025 |
|
1026 |
#: includes/functions-check-now.php:817 includes/functions-check-now.php:5392
|
1027 |
#: includes/functions.old.php:798 includes/functions.old.php:5265
|
1028 |
+
#: includes/functions.php:912 includes/functions.php:6270
|
1029 |
msgid "This Month"
|
1030 |
msgstr ""
|
1031 |
|
1032 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1033 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1034 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1035 |
msgid "Load data for this year"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
#: includes/functions-check-now.php:820 includes/functions-check-now.php:5395
|
1039 |
#: includes/functions.old.php:801 includes/functions.old.php:5268
|
1040 |
+
#: includes/functions.php:915 includes/functions.php:6273
|
1041 |
msgid "This Year"
|
1042 |
msgstr ""
|
1043 |
|
1044 |
#: includes/functions-check-now.php:823 includes/functions-check-now.php:5398
|
1045 |
#: includes/functions.old.php:804 includes/functions.old.php:5271
|
1046 |
+
#: includes/functions.php:918 includes/functions.php:6276
|
1047 |
msgid "Load data for the last 15 days"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
#: includes/functions-check-now.php:826 includes/functions-check-now.php:5401
|
1051 |
#: includes/functions.old.php:807 includes/functions.old.php:5274
|
1052 |
+
#: includes/functions.php:921 includes/functions.php:6279
|
1053 |
msgid "Load data for the last 30 days"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: includes/functions-check-now.php:829 includes/functions-check-now.php:5404
|
1057 |
#: includes/functions.old.php:810 includes/functions.old.php:5277
|
1058 |
+
#: includes/functions.php:924 includes/functions.php:6282
|
1059 |
msgid "Load data for the last 90 days"
|
1060 |
msgstr ""
|
1061 |
|
1062 |
#: includes/functions-check-now.php:832 includes/functions-check-now.php:5407
|
1063 |
#: includes/functions.old.php:813 includes/functions.old.php:5280
|
1064 |
+
#: includes/functions.php:927 includes/functions.php:6285
|
1065 |
msgid "Load data for the last 180 days"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
#: includes/functions-check-now.php:835 includes/functions-check-now.php:5410
|
1069 |
#: includes/functions.old.php:816 includes/functions.old.php:5283
|
1070 |
+
#: includes/functions.php:930 includes/functions.php:6288
|
1071 |
msgid "Load data for the last 365 days"
|
1072 |
msgstr ""
|
1073 |
|
1074 |
#: includes/functions-check-now.php:845 includes/functions-check-now.php:5420
|
1075 |
#: includes/functions.old.php:826 includes/functions.old.php:5293
|
1076 |
+
#: includes/functions.php:940 includes/functions.php:6298
|
1077 |
msgid "Load data for the selected range"
|
1078 |
msgstr ""
|
1079 |
|
1080 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1081 |
+
#: includes/functions.php:956
|
1082 |
msgid ""
|
1083 |
"Import settings when saving - if checked, the encoded settings below will be "
|
1084 |
"imported for this block"
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: includes/functions-check-now.php:861 includes/functions.old.php:842
|
1088 |
+
#: includes/functions.php:956
|
1089 |
msgid "Import settings for block"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1093 |
+
#: includes/functions.php:960
|
1094 |
msgid ""
|
1095 |
"Import block name when saving - if checked and 'Import settings for block' "
|
1096 |
"is also checked, the name from encoded settings below will be imported for "
|
1098 |
msgstr ""
|
1099 |
|
1100 |
#: includes/functions-check-now.php:865 includes/functions.old.php:846
|
1101 |
+
#: includes/functions.php:960
|
1102 |
msgid "Import block name"
|
1103 |
msgstr ""
|
1104 |
|
1105 |
#: includes/functions-check-now.php:869 includes/functions.old.php:850
|
1106 |
+
#: includes/functions.php:964
|
1107 |
msgid "Saved settings for block"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
#: includes/functions-check-now.php:882 includes/functions.old.php:863
|
1111 |
+
#: includes/functions.php:977
|
1112 |
msgid "Export / Import Ad Inserter Pro Settings"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
#: includes/functions-check-now.php:892 includes/functions.old.php:873
|
1116 |
+
#: includes/functions.php:987
|
1117 |
msgid "Are you sure you want to clear all statistics data for all blocks?"
|
1118 |
msgstr ""
|
1119 |
|
1120 |
#: includes/functions-check-now.php:894 includes/functions.old.php:875
|
1121 |
+
#: includes/functions.php:989
|
1122 |
msgid "Clear All Statistics Data"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: includes/functions-check-now.php:921 includes/functions.old.php:902
|
1126 |
+
#: includes/functions.php:1019
|
1127 |
msgid "Toggle country/city editor"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
#: includes/functions-check-now.php:927 includes/functions.old.php:908
|
1131 |
+
#: includes/functions.php:1025
|
1132 |
msgid "IP Addresses"
|
1133 |
msgstr ""
|
1134 |
|
1135 |
#: includes/functions-check-now.php:930 includes/functions.old.php:911
|
1136 |
+
#: includes/functions.php:1028
|
1137 |
msgid "Toggle IP address editor"
|
1138 |
msgstr ""
|
1139 |
|
1140 |
#: includes/functions-check-now.php:933 includes/functions.old.php:914
|
1141 |
+
#: includes/functions.php:1031
|
1142 |
msgid ""
|
1143 |
"Comma separated IP addresses, you can also use partial IP addresses with * "
|
1144 |
"(ip-address-start*. *ip-address-pattern*, *ip-address-end)"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
#: includes/functions-check-now.php:937 includes/functions.old.php:918
|
1148 |
+
#: includes/functions.php:1040
|
1149 |
msgid "Blacklist IP addresses"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
#: includes/functions-check-now.php:941 includes/functions.old.php:922
|
1153 |
+
#: includes/functions.php:1044
|
1154 |
msgid "Whitelist IP addresses"
|
1155 |
msgstr ""
|
1156 |
|
1157 |
#: includes/functions-check-now.php:952 includes/functions.old.php:933
|
1158 |
+
#: includes/functions.php:1055
|
1159 |
msgid "Countries"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: includes/functions-check-now.php:953 includes/functions.old.php:934
|
1163 |
+
#: includes/functions.php:1056
|
1164 |
msgid "Cities"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1168 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1169 |
+
#: includes/functions.php:1060 includes/functions.php:3306
|
1170 |
msgid "Toggle country editor"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
#: includes/functions-check-now.php:960 includes/functions.old.php:941
|
1174 |
+
#: includes/functions.php:1063
|
1175 |
msgid "Toggle city editor"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1179 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1180 |
+
#: includes/functions.php:1067 includes/functions.php:3309
|
1181 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
#: includes/functions-check-now.php:968 includes/functions.old.php:949
|
1185 |
+
#: includes/functions.php:1076
|
1186 |
msgid "Blacklist countries"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
#: includes/functions-check-now.php:972 includes/functions.old.php:953
|
1190 |
+
#: includes/functions.php:1080
|
1191 |
msgid "Whitelist countries"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
#: includes/functions-check-now.php:1382 includes/functions-check-now.php:1681
|
1195 |
#: includes/functions.old.php:1361 includes/functions.old.php:1608
|
1196 |
+
#: includes/functions.php:1538 includes/functions.php:1848
|
1197 |
msgid "Enter license key"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
#. translators: %s: Ad Inserter Pro
|
1201 |
#: includes/functions-check-now.php:1388 includes/functions.old.php:1367
|
1202 |
+
#: includes/functions.php:1544
|
1203 |
msgid ""
|
1204 |
"%s license key is not set. Plugin functionality is limited and updates are "
|
1205 |
"disabled."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#. translators: %s: Ad Inserter Pro
|
1209 |
+
#: includes/functions-check-now.php:1402 includes/functions.php:1558
|
1210 |
msgid "Warning: %s plugin update server is not accessible"
|
1211 |
msgstr ""
|
1212 |
|
1213 |
#. translators: updates are not available
|
1214 |
+
#: includes/functions-check-now.php:1404 includes/functions.php:1560
|
1215 |
msgid "updates"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
#. translators: updates are not available
|
1219 |
+
#: includes/functions-check-now.php:1406 includes/functions.php:1562
|
1220 |
msgid "are not available"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
#: includes/functions-check-now.php:1411 includes/functions-check-now.php:1690
|
1224 |
#: includes/functions.old.php:1379 includes/functions.old.php:1617
|
1225 |
+
#: includes/functions.php:1567 includes/functions.php:1857
|
1226 |
msgid "Check license key"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
#. translators: %s: Ad Inserter Pro
|
1230 |
#: includes/functions-check-now.php:1417 includes/functions.old.php:1385
|
1231 |
+
#: includes/functions.php:1573
|
1232 |
msgid "Invalid %s license key."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#. translators: %s: Ad Inserter Pro
|
1236 |
#: includes/functions-check-now.php:1426 includes/functions.old.php:1394
|
1237 |
+
#: includes/functions.php:1582
|
1238 |
msgid "%s license expired. Plugin updates are disabled."
|
1239 |
msgstr ""
|
1240 |
|
1241 |
#: includes/functions-check-now.php:1427 includes/functions.old.php:1395
|
1242 |
+
#: includes/functions.php:1583
|
1243 |
msgid "Renew license"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#. translators: %s: Ad Inserter Pro
|
1247 |
#: includes/functions-check-now.php:1435 includes/functions.old.php:1403
|
1248 |
+
#: includes/functions.php:1591
|
1249 |
msgid "%s license overused. Plugin updates are disabled."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1253 |
+
#: includes/functions.php:1592
|
1254 |
msgid "Manage licenses"
|
1255 |
msgstr ""
|
1256 |
|
1257 |
#: includes/functions-check-now.php:1436 includes/functions.old.php:1404
|
1258 |
+
#: includes/functions.php:1592
|
1259 |
msgid "Upgrade license"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
#. translators: 1, 2: HTML tags, 3: Ad Inserter Pro
|
1263 |
#: includes/functions-check-now.php:1683 includes/functions.old.php:1610
|
1264 |
+
#: includes/functions.php:1850
|
1265 |
msgid ""
|
1266 |
"%1$s Warning: %2$s %3$s license key is not set. Plugin functionality is "
|
1267 |
"limited and updates are disabled."
|
1269 |
|
1270 |
#. translators: 1, 2,: HTML tags, 3: Ad Inserter Pro
|
1271 |
#: includes/functions-check-now.php:1692 includes/functions.old.php:1619
|
1272 |
+
#: includes/functions.php:1859
|
1273 |
msgid "%1$s Warning: %2$s Invalid %3$s license key."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#. translators: 2, 3: HTML tags, 1: Ad Inserter Pro
|
1277 |
#: includes/functions-check-now.php:1708 includes/functions.old.php:1635
|
1278 |
+
#: includes/functions.php:1875
|
1279 |
msgid ""
|
1280 |
"Hey, %1$s license has expired - plugin updates are now disabled. Please "
|
1281 |
"renew the license to enable updates. Check %2$s what you are missing. %3$s"
|
1283 |
|
1284 |
#. translators: 1, 3: HTML tags, 2: percentage
|
1285 |
#: includes/functions-check-now.php:1715 includes/functions.old.php:1642
|
1286 |
+
#: includes/functions.php:1882
|
1287 |
msgid ""
|
1288 |
"During the license period and 30 days after the license has expired we offer "
|
1289 |
"%1$s %2$s discount on all license renewals and license upgrades. %3$s"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
#: includes/functions-check-now.php:1725 includes/functions.old.php:1652
|
1293 |
+
#: includes/functions.php:1892
|
1294 |
msgid "No, thank you."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
#: includes/functions-check-now.php:1728 includes/functions.old.php:1655
|
1298 |
+
#: includes/functions.php:1895
|
1299 |
msgid "Not now, maybe later."
|
1300 |
msgstr ""
|
1301 |
|
1302 |
#: includes/functions-check-now.php:1742 includes/functions.old.php:1669
|
1303 |
+
#: includes/functions.php:1909
|
1304 |
msgid "Renew the licence"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/functions-check-now.php:1744 includes/functions.old.php:1671
|
1308 |
+
#: includes/functions.php:1911
|
1309 |
msgid "Update license status"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
#. translators: 1, 2, 4, 5, 6, 7: HTML tags, 3: Ad Inserter Pro
|
1313 |
#: includes/functions-check-now.php:1755 includes/functions.old.php:1682
|
1314 |
+
#: includes/functions.php:1924
|
1315 |
msgid ""
|
1316 |
"%1$s Warning: %2$s %3$s license overused. Plugin updates are disabled. %4$s "
|
1317 |
"Manage licenses %5$s — %6$s Upgrade license %7$s"
|
1319 |
|
1320 |
#. Translators: %s: HTML tag
|
1321 |
#: includes/functions-check-now.php:1777 includes/functions.old.php:1704
|
1322 |
+
#: includes/functions.php:1979
|
1323 |
msgid "Warning: %s MaxMind IP geolocation database not found."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: includes/functions-check-now.php:2330 includes/functions.old.php:2255
|
1327 |
+
#: includes/functions.php:2600
|
1328 |
msgid "Geolocation"
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1332 |
+
#: includes/functions.php:2604 settings.php:4257
|
1333 |
msgid "Exceptions"
|
1334 |
msgstr ""
|
1335 |
|
1336 |
#: includes/functions-check-now.php:2339 includes/functions.old.php:2264
|
1337 |
+
#: includes/functions.php:2609
|
1338 |
msgid "Multisite"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1342 |
+
#: includes/functions.php:2614 settings.php:4263
|
1343 |
msgid "Tracking"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
#. translators: %d: days, hours, minutes
|
1347 |
#: includes/functions-check-now.php:2375 includes/functions.old.php:2300
|
1348 |
+
#: includes/functions.php:2645
|
1349 |
msgid "Scheduled in %d days %d hours %d minutes"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#. translators: %s: HTML dash separator, %d: days, hours, minutes, — is
|
1353 |
#. HTML code for long dash separator
|
1354 |
#: includes/functions-check-now.php:2384 includes/functions.old.php:2309
|
1355 |
+
#: includes/functions.php:2654
|
1356 |
msgid "Active %s expires in %d days %d hours %d minutes"
|
1357 |
msgstr ""
|
1358 |
|
1359 |
#: includes/functions-check-now.php:2388 includes/functions.old.php:2313
|
1360 |
+
#: includes/functions.php:2658
|
1361 |
msgid "Expired"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1365 |
+
#: includes/functions.php:2684 settings.php:1450 settings.php:1465
|
1366 |
+
#: settings.php:1593 settings.php:2164
|
1367 |
msgid "and"
|
1368 |
msgstr ""
|
1369 |
|
1370 |
#: includes/functions-check-now.php:2399 includes/functions.old.php:2324
|
1371 |
+
#: includes/functions.php:2666
|
1372 |
msgid "fallback"
|
1373 |
msgstr ""
|
1374 |
|
1375 |
#: includes/functions-check-now.php:2400 includes/functions.old.php:2325
|
1376 |
+
#: includes/functions.php:2667
|
1377 |
msgid "Block to be used when scheduling expires"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
#: includes/functions-check-now.php:2425 includes/functions.old.php:2350
|
1381 |
+
#: includes/functions.php:2704
|
1382 |
msgid "Load in iframe"
|
1383 |
msgstr ""
|
1384 |
|
1385 |
#: includes/functions-check-now.php:2429 includes/functions.old.php:2354
|
1386 |
+
#: includes/functions.php:2708 includes/placeholders.php:386
|
1387 |
msgid "Width"
|
1388 |
msgstr ""
|
1389 |
|
1390 |
#: includes/functions-check-now.php:2430 includes/functions.old.php:2355
|
1391 |
+
#: includes/functions.php:2709
|
1392 |
msgid "iframe width, empty means full width (100%)"
|
1393 |
msgstr ""
|
1394 |
|
1395 |
#: includes/functions-check-now.php:2436 includes/functions.old.php:2361
|
1396 |
+
#: includes/functions.php:2715 includes/placeholders.php:381
|
1397 |
msgid "Height"
|
1398 |
msgstr ""
|
1399 |
|
1400 |
#: includes/functions-check-now.php:2437 includes/functions.old.php:2362
|
1401 |
+
#: includes/functions.php:2716
|
1402 |
msgid "iframe height, empty means adjust it to iframe content height"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
#: includes/functions-check-now.php:2444 includes/functions.old.php:2369
|
1406 |
+
#: includes/functions.php:2723
|
1407 |
msgid "Ad label in iframe"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1411 |
+
#: includes/functions.php:2728
|
1412 |
msgid "Preview iframe code"
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1416 |
+
#: includes/functions.php:2728 includes/preview.php:2322 settings.php:1117
|
1417 |
+
#: settings.php:2885
|
1418 |
msgid "Preview"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1422 |
+
#: includes/functions.php:2742 settings.php:4264
|
1423 |
msgid "Limits"
|
1424 |
msgstr ""
|
1425 |
|
1426 |
#: includes/functions-check-now.php:2468 includes/functions-check-now.php:4366
|
1427 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1428 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1429 |
+
#: includes/functions.php:2747 includes/functions.php:5102
|
1430 |
+
#: includes/functions.php:5167 settings.php:2314
|
1431 |
msgid "Ad Blocking"
|
1432 |
msgstr ""
|
1433 |
|
1434 |
#. translators: 1, 2 and 3, 4: HTML tags
|
1435 |
#: includes/functions-check-now.php:2477 includes/functions.old.php:2402
|
1436 |
+
#: includes/functions.php:2756
|
1437 |
msgid ""
|
1438 |
"%1$s WARNING: %2$s %3$s No wrapping %4$s style has no wrapping code needed "
|
1439 |
"for tracking!"
|
1442 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Scroll with the content, 6: Above
|
1443 |
#. header
|
1444 |
#: includes/functions-check-now.php:2486 includes/functions.old.php:2411
|
1445 |
+
#: includes/functions.php:2765
|
1446 |
msgid ""
|
1447 |
"%1$s WARNING: %2$s vertical position %3$s needs %4$s Output buffering %5$s "
|
1448 |
"enabled and automatic insertion %6$s!"
|
1449 |
msgstr ""
|
1450 |
|
1451 |
#: includes/functions-check-now.php:2553 includes/functions.old.php:2478
|
1452 |
+
#: includes/functions.php:2831
|
1453 |
msgid "Click fraud protection is globally disabled"
|
1454 |
msgstr ""
|
1455 |
|
1456 |
#: includes/functions-check-now.php:2557 includes/functions.old.php:2482
|
1457 |
+
#: includes/functions.php:2835
|
1458 |
msgid "Max clicks per time period are not defined"
|
1459 |
msgstr ""
|
1460 |
|
1461 |
#. Translators: Max n impressions
|
1462 |
#: includes/functions-check-now.php:2571 includes/functions.old.php:2496
|
1463 |
+
#: includes/functions.php:2849
|
1464 |
msgid "General limits"
|
1465 |
msgstr ""
|
1466 |
|
1468 |
#: includes/functions-check-now.php:2577 includes/functions-check-now.php:2589
|
1469 |
#: includes/functions-check-now.php:2674 includes/functions.old.php:2502
|
1470 |
#: includes/functions.old.php:2514 includes/functions.old.php:2599
|
1471 |
+
#: includes/functions.php:2855 includes/functions.php:2867
|
1472 |
+
#: includes/functions.php:2952
|
1473 |
msgid "Current value"
|
1474 |
msgstr ""
|
1475 |
|
1489 |
#: includes/functions.old.php:2550 includes/functions.old.php:2560
|
1490 |
#: includes/functions.old.php:2606 includes/functions.old.php:2615
|
1491 |
#: includes/functions.old.php:2633 includes/functions.old.php:2642
|
1492 |
+
#: includes/functions.php:2874 includes/functions.php:2884
|
1493 |
+
#: includes/functions.php:2903 includes/functions.php:2913
|
1494 |
+
#: includes/functions.php:2959 includes/functions.php:2968
|
1495 |
+
#: includes/functions.php:2986 includes/functions.php:2995 settings.php:2076
|
1496 |
msgid "Max"
|
1497 |
msgstr ""
|
1498 |
|
1499 |
#: includes/functions-check-now.php:2597 includes/functions.old.php:2522
|
1500 |
+
#: includes/functions.php:2875
|
1501 |
msgid ""
|
1502 |
"Maximum number of impressions for this block. Empty means no general "
|
1503 |
"impression limit."
|
1511 |
#: includes/functions-check-now.php:2684 includes/functions-check-now.php:2693
|
1512 |
#: includes/functions.old.php:2524 includes/functions.old.php:2534
|
1513 |
#: includes/functions.old.php:2609 includes/functions.old.php:2618
|
1514 |
+
#: includes/functions.php:2877 includes/functions.php:2887
|
1515 |
+
#: includes/functions.php:2962 includes/functions.php:2971
|
1516 |
msgid "impression"
|
1517 |
msgid_plural "impressions"
|
1518 |
msgstr[0] ""
|
1519 |
msgstr[1] ""
|
1520 |
|
1521 |
#: includes/functions-check-now.php:2607 includes/functions.old.php:2532
|
1522 |
+
#: includes/functions.php:2885
|
1523 |
msgid ""
|
1524 |
"Maximum number of impressions per time period. Empty means no time limit."
|
1525 |
msgstr ""
|
1532 |
#: includes/functions-check-now.php:2697 includes/functions-check-now.php:2724
|
1533 |
#: includes/functions.old.php:2538 includes/functions.old.php:2567
|
1534 |
#: includes/functions.old.php:2622 includes/functions.old.php:2649
|
1535 |
+
#: includes/functions.php:2891 includes/functions.php:2920
|
1536 |
+
#: includes/functions.php:2975 includes/functions.php:3002
|
1537 |
msgid "per"
|
1538 |
msgstr ""
|
1539 |
|
1540 |
#: includes/functions-check-now.php:2614 includes/functions-check-now.php:2643
|
1541 |
#: includes/functions.old.php:2539 includes/functions.old.php:2568
|
1542 |
+
#: includes/functions.php:2892 includes/functions.php:2921
|
1543 |
msgid "Time period in days. Empty means no time limit."
|
1544 |
msgstr ""
|
1545 |
|
1554 |
#: includes/functions.old.php:2541 includes/functions.old.php:2570
|
1555 |
#: includes/functions.old.php:2625 includes/functions.old.php:2652
|
1556 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1557 |
+
#: includes/functions.php:2894 includes/functions.php:2923
|
1558 |
+
#: includes/functions.php:2978 includes/functions.php:3005
|
1559 |
+
#: includes/functions.php:3111 includes/functions.php:3471 strings.php:218
|
1560 |
#: strings.php:219 strings.php:220 strings.php:221 strings.php:222
|
1561 |
#: strings.php:223
|
1562 |
msgid "day"
|
1565 |
msgstr[1] ""
|
1566 |
|
1567 |
#: includes/functions-check-now.php:2626 includes/functions.old.php:2551
|
1568 |
+
#: includes/functions.php:2904
|
1569 |
msgid ""
|
1570 |
"Maximum number of clicks on this block. Empty means no general click limit."
|
1571 |
msgstr ""
|
1579 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:2553
|
1580 |
#: includes/functions.old.php:2563 includes/functions.old.php:2636
|
1581 |
#: includes/functions.old.php:2645 includes/functions.old.php:4477
|
1582 |
+
#: includes/functions.php:2906 includes/functions.php:2916
|
1583 |
+
#: includes/functions.php:2989 includes/functions.php:2998
|
1584 |
+
#: includes/functions.php:5453
|
1585 |
msgid "click"
|
1586 |
msgid_plural "clicks"
|
1587 |
msgstr[0] ""
|
1588 |
msgstr[1] ""
|
1589 |
|
1590 |
#: includes/functions-check-now.php:2636 includes/functions.old.php:2561
|
1591 |
+
#: includes/functions.php:2914
|
1592 |
msgid "Maximum number of clicks per time period. Empty means no time limit."
|
1593 |
msgstr ""
|
1594 |
|
1595 |
#: includes/functions-check-now.php:2661 includes/functions.old.php:2586
|
1596 |
+
#: includes/functions.php:2939
|
1597 |
msgid "Individual visitor limits"
|
1598 |
msgstr ""
|
1599 |
|
1600 |
#: includes/functions-check-now.php:2665 includes/functions-check-now.php:2667
|
1601 |
#: includes/functions.old.php:2590 includes/functions.old.php:2592
|
1602 |
+
#: includes/functions.php:2943 includes/functions.php:2945
|
1603 |
msgid ""
|
1604 |
"When specified number of clicks on this block for a visitor will be reached "
|
1605 |
"in the specified time period, all blocks that have click fraud protection "
|
1608 |
msgstr ""
|
1609 |
|
1610 |
#: includes/functions-check-now.php:2667 includes/functions.old.php:2592
|
1611 |
+
#: includes/functions.php:2945
|
1612 |
msgid "Trigger click fraud protection"
|
1613 |
msgstr ""
|
1614 |
|
1615 |
#: includes/functions-check-now.php:2682 includes/functions.old.php:2607
|
1616 |
+
#: includes/functions.php:2960
|
1617 |
msgid ""
|
1618 |
"Maximum number of impressions of this block for each visitor. Empty means no "
|
1619 |
"impression limit."
|
1620 |
msgstr ""
|
1621 |
|
1622 |
#: includes/functions-check-now.php:2691 includes/functions.old.php:2616
|
1623 |
+
#: includes/functions.php:2969
|
1624 |
msgid ""
|
1625 |
"Maximum number of impressions per time period for each visitor. Empty means "
|
1626 |
"no impression limit per time period for visitors."
|
1628 |
|
1629 |
#: includes/functions-check-now.php:2698 includes/functions-check-now.php:2725
|
1630 |
#: includes/functions.old.php:2623 includes/functions.old.php:2650
|
1631 |
+
#: includes/functions.php:2976 includes/functions.php:3003
|
1632 |
msgid ""
|
1633 |
"Time period in days. Use decimal value (with decimal point) for shorter "
|
1634 |
"periods. Empty means no time limit."
|
1635 |
msgstr ""
|
1636 |
|
1637 |
#: includes/functions-check-now.php:2709 includes/functions.old.php:2634
|
1638 |
+
#: includes/functions.php:2987
|
1639 |
msgid ""
|
1640 |
"Maximum number of clicks on this block for each visitor. Empty means no "
|
1641 |
"click limit."
|
1642 |
msgstr ""
|
1643 |
|
1644 |
#: includes/functions-check-now.php:2718 includes/functions.old.php:2643
|
1645 |
+
#: includes/functions.php:2996
|
1646 |
msgid ""
|
1647 |
"Maximum number of clicks per time period for each visitor. Empty means no "
|
1648 |
"click limit per time period for visitors."
|
1649 |
msgstr ""
|
1650 |
|
1651 |
#: includes/functions-check-now.php:2744 includes/functions.old.php:2669
|
1652 |
+
#: includes/functions.php:3022
|
1653 |
msgid "When ad blocking is detected"
|
1654 |
msgstr ""
|
1655 |
|
1656 |
#: includes/functions-check-now.php:2753 includes/functions.old.php:2678
|
1657 |
+
#: includes/functions.php:3031
|
1658 |
msgid "replacement"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
#: includes/functions-check-now.php:2754 includes/functions.old.php:2679
|
1662 |
+
#: includes/functions.php:3032
|
1663 |
msgid "Block to be shown when ad blocking is detected"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
#: includes/functions-check-now.php:2755 includes/functions.old.php:2680
|
1667 |
+
#: includes/functions.php:3033
|
1668 |
msgctxt "replacement"
|
1669 |
msgid "None"
|
1670 |
msgstr ""
|
1671 |
|
1672 |
#: includes/functions-check-now.php:2772 includes/functions-check-now.php:5612
|
1673 |
#: includes/functions.old.php:2697 includes/functions.old.php:5484
|
1674 |
+
#: includes/functions.php:3050 includes/functions.php:6511
|
1675 |
msgid "Close button"
|
1676 |
msgstr ""
|
1677 |
|
1678 |
#: includes/functions-check-now.php:2824 includes/functions.old.php:2749
|
1679 |
+
#: includes/functions.php:3102
|
1680 |
msgid "Auto close after"
|
1681 |
msgstr ""
|
1682 |
|
1683 |
#: includes/functions-check-now.php:2825 includes/functions.old.php:2750
|
1684 |
+
#: includes/functions.php:3103
|
1685 |
msgid ""
|
1686 |
"Time in seconds in which the ad will automatically close. Leave empty to "
|
1687 |
"disable auto closing."
|
1689 |
|
1690 |
#. Translators: Don't show for x days
|
1691 |
#: includes/functions-check-now.php:2830 includes/functions.old.php:2755
|
1692 |
+
#: includes/functions.php:3108
|
1693 |
msgid "Don't show for"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
#: includes/functions-check-now.php:2831 includes/functions.old.php:2756
|
1697 |
+
#: includes/functions.php:3109
|
1698 |
msgid ""
|
1699 |
"Time in days in which closed ad will not be shown again. Use decimal value "
|
1700 |
"(with decimal point) for shorter time period or leave empty to show it again "
|
1703 |
|
1704 |
#. Translators: Delay showing for x pageviews
|
1705 |
#: includes/functions-check-now.php:2851 includes/functions.old.php:2776
|
1706 |
+
#: includes/functions.php:3129
|
1707 |
msgid "Delay showing for"
|
1708 |
msgstr ""
|
1709 |
|
1710 |
#: includes/functions-check-now.php:2852 includes/functions.old.php:2777
|
1711 |
+
#: includes/functions.php:3130
|
1712 |
msgid ""
|
1713 |
"Number of pageviews before the code is inserted (and ad displayed). Leave "
|
1714 |
"empty to insert the code for the first pageview."
|
1718 |
#. Translators: Show every x pageviews
|
1719 |
#: includes/functions-check-now.php:2854 includes/functions-check-now.php:2861
|
1720 |
#: includes/functions.old.php:2779 includes/functions.old.php:2786
|
1721 |
+
#: includes/functions.php:3132 includes/functions.php:3139
|
1722 |
msgid "pageview"
|
1723 |
msgid_plural "pageviews"
|
1724 |
msgstr[0] ""
|
1726 |
|
1727 |
#. Translators: Show every x pageviews
|
1728 |
#: includes/functions-check-now.php:2858 includes/functions.old.php:2783
|
1729 |
+
#: includes/functions.php:3136
|
1730 |
msgid "Show every"
|
1731 |
msgid_plural "Show every"
|
1732 |
msgstr[0] ""
|
1733 |
msgstr[1] ""
|
1734 |
|
1735 |
#: includes/functions-check-now.php:2859 includes/functions.old.php:2784
|
1736 |
+
#: includes/functions.php:3137
|
1737 |
msgid ""
|
1738 |
"Number of pageviews to insert the code again. Leave empty to insert the code "
|
1739 |
"for every pageview."
|
1740 |
msgstr ""
|
1741 |
|
1742 |
#: includes/functions-check-now.php:2878 includes/functions.old.php:2803
|
1743 |
+
#: includes/functions.php:3156
|
1744 |
msgid "Lazy loading"
|
1745 |
msgstr ""
|
1746 |
|
1747 |
#. Translators: %s MaxMind
|
1748 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1749 |
+
#: includes/functions.php:3230
|
1750 |
msgid "This product includes GeoLite2 data created by %s"
|
1751 |
msgstr ""
|
1752 |
|
1753 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1754 |
+
#: includes/functions.php:3243
|
1755 |
msgid "IP geolocation database"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1759 |
+
#: includes/functions.php:3246
|
1760 |
msgid "Select IP geolocation database."
|
1761 |
msgstr ""
|
1762 |
|
1763 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1764 |
+
#: includes/functions.php:3257
|
1765 |
msgid "Automatic database updates"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1769 |
+
#: includes/functions.php:3260
|
1770 |
msgid ""
|
1771 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1772 |
"MaxMind"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1776 |
+
#: includes/functions.php:3277
|
1777 |
msgid "Database"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1781 |
+
#: includes/functions.php:3280
|
1782 |
msgid ""
|
1783 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1784 |
"file"
|
1786 |
|
1787 |
#. translators: %d: group number
|
1788 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1789 |
+
#: includes/functions.php:3298
|
1790 |
msgid "Group %d"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1794 |
+
#: includes/functions.php:3304
|
1795 |
msgid "countries"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1799 |
+
#: includes/functions.php:3349
|
1800 |
msgid ""
|
1801 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1802 |
"each block you want to track."
|
1803 |
msgstr ""
|
1804 |
|
1805 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
|
|
1806 |
msgid "Generate report"
|
1807 |
msgstr ""
|
1808 |
|
1809 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1810 |
+
#: includes/functions.php:3368
|
1811 |
msgid "Impression and Click Tracking"
|
1812 |
msgstr ""
|
1813 |
|
1814 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1815 |
+
#: includes/functions.php:3369 settings.php:2773
|
1816 |
msgctxt "ad blocking detection"
|
1817 |
msgid "NOT ENABLED"
|
1818 |
msgstr ""
|
1819 |
|
1820 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1821 |
+
#: includes/functions.php:3385
|
1822 |
msgid "Internal"
|
1823 |
msgstr ""
|
1824 |
|
1825 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1826 |
+
#: includes/functions.php:3389
|
1827 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1828 |
msgstr ""
|
1829 |
|
1830 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1831 |
+
#: includes/functions.php:3394
|
1832 |
msgid "External"
|
1833 |
msgstr ""
|
1834 |
|
1835 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1836 |
+
#: includes/functions.php:3398
|
1837 |
msgid ""
|
1838 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1839 |
"code installed)"
|
1840 |
msgstr ""
|
1841 |
|
1842 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1843 |
+
#: includes/functions.php:3403
|
1844 |
msgid "Track Pageviews"
|
1845 |
msgstr ""
|
1846 |
|
1847 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1848 |
+
#: includes/functions.php:3409
|
1849 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1850 |
msgstr ""
|
1851 |
|
1852 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1853 |
+
#: includes/functions.php:3419
|
1854 |
msgid "Track for Logged in Users"
|
1855 |
msgstr ""
|
1856 |
|
1857 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1858 |
+
#: includes/functions.php:3425
|
1859 |
msgid "Track impressions and clicks from logged in users"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1863 |
+
#: includes/functions.php:3435
|
1864 |
msgid "Click Detection"
|
1865 |
msgstr ""
|
1866 |
|
1867 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1868 |
+
#: includes/functions.php:3441
|
1869 |
msgid ""
|
1870 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1871 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1872 |
msgstr ""
|
1873 |
|
1874 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
1875 |
+
#: includes/functions.php:3460
|
1876 |
msgid "Click fraud protection"
|
1877 |
msgstr ""
|
1878 |
|
1879 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1880 |
+
#: includes/functions.php:3464
|
1881 |
msgid "Globally enable click fraud protection for selected blocks."
|
1882 |
msgstr ""
|
1883 |
|
1884 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
1885 |
+
#: includes/functions.php:3470
|
1886 |
msgid "Protection time"
|
1887 |
msgstr ""
|
1888 |
|
1889 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1890 |
+
#: includes/functions.php:3471
|
1891 |
msgid ""
|
1892 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1893 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1894 |
msgstr ""
|
1895 |
|
1896 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
1897 |
+
#: includes/functions.php:3490
|
1898 |
msgid "Report header image"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1902 |
+
#: includes/functions.php:3493
|
1903 |
msgid ""
|
1904 |
"Image or logo to be displayed in the header of the statistins report. "
|
1905 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
1907 |
msgstr ""
|
1908 |
|
1909 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
1910 |
+
#: includes/functions.php:3494 strings.php:252
|
1911 |
msgid "Select or upload header image"
|
1912 |
msgstr ""
|
1913 |
|
1914 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
1915 |
+
#: includes/functions.php:3499
|
1916 |
msgid "Report header title"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
1920 |
+
#: includes/functions.php:3502
|
1921 |
msgid ""
|
1922 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1923 |
"code, clear to reset to default text."
|
1924 |
msgstr ""
|
1925 |
|
1926 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
1927 |
+
#: includes/functions.php:3507
|
1928 |
msgid "Report header description"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
1932 |
+
#: includes/functions.php:3510
|
1933 |
msgid ""
|
1934 |
"Description to be displayed in the header of the statistics report. Text or "
|
1935 |
"HTML code, clear to reset to default text."
|
1936 |
msgstr ""
|
1937 |
|
1938 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
1939 |
+
#: includes/functions.php:3515
|
1940 |
msgid "Report footer"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
1944 |
+
#: includes/functions.php:3518
|
1945 |
msgid ""
|
1946 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1947 |
"to default text."
|
1948 |
msgstr ""
|
1949 |
|
1950 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
1951 |
+
#: includes/functions.php:3523
|
1952 |
msgid "Public report key"
|
1953 |
msgstr ""
|
1954 |
|
1955 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
1956 |
+
#: includes/functions.php:3526
|
1957 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1958 |
msgstr ""
|
1959 |
|
1960 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
1961 |
+
#: includes/functions.php:3589
|
1962 |
msgid "Are you sure you want to clear all exceptions for block"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1966 |
+
#: includes/functions.php:3590
|
1967 |
msgid "Clear all exceptions for block"
|
1968 |
msgstr ""
|
1969 |
|
1970 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1971 |
+
#: includes/functions.php:3597
|
1972 |
msgid "Are you sure you want to clear all exceptions?"
|
1973 |
msgstr ""
|
1974 |
|
1975 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1976 |
+
#: includes/functions.php:3597
|
1977 |
msgid "Clear all exceptions for all blocks"
|
1978 |
msgstr ""
|
1979 |
|
1980 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1981 |
+
#: includes/functions.php:3602 settings.php:3855 settings.php:4340
|
1982 |
msgid "Type"
|
1983 |
msgstr ""
|
1984 |
|
1985 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
1986 |
+
#: includes/functions.php:3620
|
1987 |
msgid "View"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
1991 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
1992 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1993 |
+
#: includes/functions.php:3621 includes/functions.php:3628
|
1994 |
+
#: includes/functions.php:3632 includes/placeholders.php:350
|
1995 |
+
#: includes/preview.php:2692 settings.php:1354 settings.php:3612
|
1996 |
msgid "Edit"
|
1997 |
msgstr ""
|
1998 |
|
1999 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2000 |
+
#: includes/functions.php:3651
|
2001 |
msgid "Are you sure you want to clear all exceptions for"
|
2002 |
msgstr ""
|
2003 |
|
2004 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2005 |
+
#: includes/functions.php:3652
|
2006 |
msgid "Clear all exceptions for"
|
2007 |
msgstr ""
|
2008 |
|
2009 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2010 |
+
#: includes/functions.php:3665
|
2011 |
msgid "No exceptions"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
#. translators: %s: Ad Inserter Pro
|
2015 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2016 |
+
#: includes/functions.php:3676
|
2017 |
msgid "%s options for network blogs"
|
2018 |
msgstr ""
|
2019 |
|
2020 |
#. translators: %s: Ad Inserter Pro
|
2021 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2022 |
+
#: includes/functions.php:3681
|
2023 |
msgid "Enable %s widgets for sub-sites"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2027 |
+
#: includes/functions.php:3681
|
2028 |
msgid "Widgets"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2032 |
+
#: includes/functions.php:3686
|
2033 |
msgid "Enable PHP code processing for sub-sites"
|
2034 |
msgstr ""
|
2035 |
|
2036 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2037 |
+
#: includes/functions.php:3686
|
2038 |
msgid "PHP Processing"
|
2039 |
msgstr ""
|
2040 |
|
2041 |
#. translators: %s: Ad Inserter Pro
|
2042 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2043 |
+
#: includes/functions.php:3691
|
2044 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2045 |
msgstr ""
|
2046 |
|
2047 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2048 |
+
#: includes/functions.php:3691
|
2049 |
msgid "Post/Page exceptions"
|
2050 |
msgstr ""
|
2051 |
|
2052 |
#. translators: %s: Ad Inserter Pro
|
2053 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2054 |
+
#: includes/functions.php:3696
|
2055 |
msgid "Enable %s settings page for sub-sites"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2059 |
+
#: includes/functions.php:3696
|
2060 |
msgid "Settings page"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
#. translators: %s: Ad Inserter Pro
|
2064 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2065 |
+
#: includes/functions.php:3701
|
2066 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2067 |
msgstr ""
|
2068 |
|
2069 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2070 |
+
#: includes/functions.php:3701
|
2071 |
msgid "Main site settings used for all blogs"
|
2072 |
msgstr ""
|
2073 |
|
2074 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2075 |
+
#: includes/functions.php:3717 settings.php:2772
|
2076 |
msgid "Ad Blocking Detection"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2080 |
+
#: includes/functions.php:3723
|
2081 |
msgid ""
|
2082 |
"Standard method is reliable but should be used only if Advanced method does "
|
2083 |
"not work. Advanced method recreates files used for detection with random "
|
2088 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2089 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2090 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2091 |
+
#: includes/functions.php:4546 includes/functions.php:4663
|
2092 |
+
#: includes/functions.php:4687
|
2093 |
msgid "AD BLOCKING"
|
2094 |
msgstr ""
|
2095 |
|
2097 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2098 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2099 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2100 |
+
#: includes/functions.php:4547 includes/functions.php:4593
|
2101 |
+
#: includes/functions.php:4657 includes/functions.php:4688
|
2102 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2106 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2107 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2108 |
+
#: includes/functions.php:4550 includes/functions.php:4656
|
2109 |
+
#: includes/functions.php:4694
|
2110 |
msgid "NO AD BLOCKING"
|
2111 |
msgstr ""
|
2112 |
|
2113 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2114 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2115 |
+
#: includes/functions.php:4592 includes/functions.php:4599
|
2116 |
msgid "AD BLOCKING REPLACEMENT"
|
2117 |
msgstr ""
|
2118 |
|
2119 |
#: includes/functions-check-now.php:4219 includes/functions-check-now.php:4428
|
2120 |
#: includes/functions.old.php:4119 includes/functions.old.php:4328
|
2121 |
+
#: includes/functions.php:4955 includes/functions.php:5166
|
2122 |
msgid "Pageviews"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2126 |
+
#: includes/functions.php:5101
|
2127 |
msgctxt "Version"
|
2128 |
msgid "Unknown"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2132 |
+
#: includes/functions.php:5101
|
2133 |
msgctxt "Times"
|
2134 |
msgid "DISPLAYED"
|
2135 |
msgstr ""
|
2136 |
|
2137 |
#: includes/functions-check-now.php:4365 includes/functions.old.php:4265
|
2138 |
+
#: includes/functions.php:5101
|
2139 |
msgid "No version"
|
2140 |
msgstr ""
|
2141 |
|
2142 |
#: includes/functions-check-now.php:4366 includes/functions.old.php:4266
|
2143 |
+
#: includes/functions.php:5102
|
2144 |
msgctxt "Times"
|
2145 |
msgid "BLOCKED"
|
2146 |
msgstr ""
|
2147 |
|
2148 |
#: includes/functions-check-now.php:4428 includes/functions.old.php:4328
|
2149 |
+
#: includes/functions.php:5166
|
2150 |
msgid "Impressions"
|
2151 |
msgstr ""
|
2152 |
|
2153 |
#: includes/functions-check-now.php:4429 includes/functions-check-now.php:4430
|
2154 |
#: includes/functions-check-now.php:4485 includes/functions.old.php:4329
|
2155 |
#: includes/functions.old.php:4330 includes/functions.old.php:4385
|
2156 |
+
#: includes/functions.php:5167 includes/functions.php:5168
|
2157 |
+
#: includes/functions.php:5361
|
2158 |
msgid "Clicks"
|
2159 |
msgstr ""
|
2160 |
|
2161 |
#: includes/functions-check-now.php:4430 includes/functions.old.php:4330
|
2162 |
+
#: includes/functions.php:5168
|
2163 |
msgid "events"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
#: includes/functions-check-now.php:4431 includes/functions.old.php:4331
|
2167 |
+
#: includes/functions.php:5169
|
2168 |
msgid "Ad Blocking Share"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
#. translators: CTR as Click Through Rate
|
2172 |
#: includes/functions-check-now.php:4431 includes/functions-check-now.php:4491
|
2173 |
#: includes/functions.old.php:4331 includes/functions.old.php:4391
|
2174 |
+
#: includes/functions.php:5169 includes/functions.php:5367
|
2175 |
msgid "CTR"
|
2176 |
msgstr ""
|
2177 |
|
2178 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2179 |
+
#: includes/functions.php:5449
|
2180 |
msgid "pageviews"
|
2181 |
msgid_plural "pageviews"
|
2182 |
msgstr[0] ""
|
2183 |
msgstr[1] ""
|
2184 |
|
2185 |
#: includes/functions-check-now.php:4573 includes/functions.old.php:4473
|
2186 |
+
#: includes/functions.php:5449
|
2187 |
msgid "impressions"
|
2188 |
msgid_plural "impressions"
|
2189 |
msgstr[0] ""
|
2190 |
msgstr[1] ""
|
2191 |
|
2192 |
#: includes/functions-check-now.php:4577 includes/functions.old.php:4477
|
2193 |
+
#: includes/functions.php:5453
|
2194 |
msgid "event"
|
2195 |
msgid_plural "events"
|
2196 |
msgstr[0] ""
|
2197 |
msgstr[1] ""
|
2198 |
|
2199 |
#: includes/functions-check-now.php:4672 includes/functions.old.php:4572
|
2200 |
+
#: includes/functions.php:5548
|
2201 |
msgctxt "Pageviews / Impressions"
|
2202 |
msgid "Average"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
#: includes/functions-check-now.php:4693 includes/functions.old.php:4593
|
2206 |
+
#: includes/functions.php:5569
|
2207 |
msgctxt "Ad Blocking / Clicks"
|
2208 |
msgid "Average"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
#: includes/functions-check-now.php:4717 includes/functions.old.php:4617
|
2212 |
+
#: includes/functions.php:5593
|
2213 |
msgctxt "Ad Blocking Share / CTR"
|
2214 |
msgid "Average"
|
2215 |
msgstr ""
|
2218 |
#: includes/functions-check-now.php:4899 includes/functions-check-now.php:4991
|
2219 |
#: includes/functions-check-now.php:5334 includes/functions.old.php:4799
|
2220 |
#: includes/functions.old.php:4891 includes/functions.old.php:5207
|
2221 |
+
#: includes/functions.php:5777 includes/functions.php:5869
|
2222 |
+
#: includes/functions.php:6212 strings.php:203
|
2223 |
msgid "%s Report"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
#: includes/functions-check-now.php:5240 includes/functions.old.php:5113
|
2227 |
+
#: includes/functions.php:6118
|
2228 |
msgid "for last month"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
#: includes/functions-check-now.php:5245 includes/functions.old.php:5118
|
2232 |
+
#: includes/functions.php:6123
|
2233 |
msgid "for this month"
|
2234 |
msgstr ""
|
2235 |
|
2236 |
#: includes/functions-check-now.php:5250 includes/functions.old.php:5123
|
2237 |
+
#: includes/functions.php:6128
|
2238 |
msgid "for this year"
|
2239 |
msgstr ""
|
2240 |
|
2241 |
#: includes/functions-check-now.php:5255 includes/functions.old.php:5128
|
2242 |
+
#: includes/functions.php:6133
|
2243 |
msgid "for the last 15 days"
|
2244 |
msgstr ""
|
2245 |
|
2246 |
#: includes/functions-check-now.php:5260 includes/functions.old.php:5133
|
2247 |
+
#: includes/functions.php:6138
|
2248 |
msgid "for the last 30 days"
|
2249 |
msgstr ""
|
2250 |
|
2251 |
#: includes/functions-check-now.php:5265 includes/functions.old.php:5138
|
2252 |
+
#: includes/functions.php:6143
|
2253 |
msgid "for the last 90 days"
|
2254 |
msgstr ""
|
2255 |
|
2256 |
#: includes/functions-check-now.php:5270 includes/functions.old.php:5143
|
2257 |
+
#: includes/functions.php:6148
|
2258 |
msgid "for the last 180 days"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
#: includes/functions-check-now.php:5275 includes/functions.old.php:5148
|
2262 |
+
#: includes/functions.php:6153
|
2263 |
msgid "for the last 365 days"
|
2264 |
msgstr ""
|
2265 |
|
2266 |
+
#: includes/functions.php:509 includes/functions.php:3356
|
2267 |
+
msgid "Generate CSV report"
|
2268 |
+
msgstr ""
|
2269 |
+
|
2270 |
#. translators: %s: Ad Inserter Pro
|
2271 |
+
#: includes/functions.php:574
|
2272 |
msgid "Invalid %s version. Continue?"
|
2273 |
msgstr ""
|
2274 |
|
2275 |
+
#: includes/functions.php:766 includes/preview.php:2635
|
2276 |
msgid "Background"
|
2277 |
msgstr ""
|
2278 |
|
2279 |
#. translators: %s HTML body tag
|
2280 |
+
#: includes/functions.php:773
|
2281 |
msgid "Set %s background"
|
2282 |
msgstr ""
|
2283 |
|
2284 |
+
#: includes/functions.php:786
|
2285 |
msgid "Image to be used for the background"
|
2286 |
msgstr ""
|
2287 |
|
2288 |
+
#: includes/functions.php:791
|
2289 |
msgid "Color"
|
2290 |
msgstr ""
|
2291 |
|
2292 |
+
#: includes/functions.php:792 includes/preview.php:2453
|
2293 |
msgid "Color to be used for the background"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
+
#: includes/functions.php:795 includes/preview.php:2458
|
2297 |
msgid "Image size"
|
2298 |
msgstr ""
|
2299 |
|
2300 |
+
#: includes/functions.php:805
|
2301 |
msgid "Repeat"
|
2302 |
msgstr ""
|
2303 |
|
2304 |
+
#: includes/functions.php:818
|
2305 |
msgid "Select image"
|
2306 |
msgstr ""
|
2307 |
|
2308 |
+
#: includes/functions.php:1036 includes/functions.php:1072 settings.php:1719
|
2309 |
+
#: settings.php:1742 settings.php:1765 settings.php:1788 settings.php:1811
|
2310 |
+
#: settings.php:1834 settings.php:1856 settings.php:1878
|
2311 |
msgid "Click to select black or white list"
|
2312 |
msgstr ""
|
2313 |
|
2314 |
#. translators: %s: Ad Inserter Pro
|
2315 |
+
#: includes/functions.php:1600
|
2316 |
msgid "Invalid %s version."
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: includes/functions.php:1601
|
2320 |
msgid "Check license"
|
2321 |
msgstr ""
|
2322 |
|
2323 |
+
#: includes/functions.php:1613
|
2324 |
msgid "License"
|
2325 |
msgstr ""
|
2326 |
|
2327 |
#. translators: 1, 2, 4, 5: HTML tags, 3: Ad Inserter Pro
|
2328 |
+
#: includes/functions.php:1936
|
2329 |
msgid "%1$s Warning: %2$s Wrong %3$s version. %4$s Check license %5$s"
|
2330 |
msgstr ""
|
2331 |
|
2332 |
#. Translators: %s: HTML tags
|
2333 |
+
#: includes/functions.php:1984
|
2334 |
msgid ""
|
2335 |
"Warning: %s MaxMind license key not set. Please %s sign up for a GeoLite2 "
|
2336 |
"account %s and create license key."
|
2337 |
msgstr ""
|
2338 |
|
2339 |
+
#: includes/functions.php:2682
|
2340 |
msgid "Start date"
|
2341 |
msgstr ""
|
2342 |
|
2343 |
+
#: includes/functions.php:2682
|
2344 |
msgid "Enter date in format yyyy-mm-dd"
|
2345 |
msgstr ""
|
2346 |
|
2347 |
+
#: includes/functions.php:2683
|
2348 |
msgid "Start time"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
+
#: includes/functions.php:2683
|
2352 |
msgid "Enter time in format hh:mm:ss, empty means 00:00:00"
|
2353 |
msgstr ""
|
2354 |
|
2355 |
+
#: includes/functions.php:2685
|
2356 |
msgid "End date"
|
2357 |
msgstr ""
|
2358 |
|
2359 |
+
#: includes/functions.php:2686
|
2360 |
msgid "End time"
|
2361 |
msgstr ""
|
2362 |
|
2363 |
+
#: includes/functions.php:2689
|
2364 |
msgid "Select wanted days in week"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
+
#: includes/functions.php:3021
|
2368 |
msgid "Ad blocking detection is disabled"
|
2369 |
msgstr ""
|
2370 |
|
2371 |
+
#: includes/functions.php:3161
|
2372 |
+
msgid "Protected"
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: includes/functions.php:3164
|
2376 |
msgid "Manual loading"
|
2377 |
msgstr ""
|
2378 |
|
2379 |
#. Translators: %s HTML tags
|
2380 |
+
#: includes/functions.php:3232
|
2381 |
msgid "Create and manage %s MaxMind license key %s"
|
2382 |
msgstr ""
|
2383 |
|
2384 |
+
#: includes/functions.php:3268
|
2385 |
msgid "MaxMind license key"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
+
#: includes/functions.php:3271
|
2389 |
msgid "Enter license key obtained from MaxMind"
|
2390 |
msgstr ""
|
2391 |
|
2392 |
+
#: includes/functions.php:3541
|
2393 |
msgid "Event category"
|
2394 |
msgstr ""
|
2395 |
|
2396 |
+
#: includes/functions.php:3544
|
2397 |
msgid ""
|
2398 |
"Category name used for external tracking events. You can use tags to get the "
|
2399 |
"event, the number or the name of the block that caused the event."
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: includes/functions.php:3549
|
2403 |
msgid "Event action"
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: includes/functions.php:3552
|
2407 |
msgid ""
|
2408 |
"Action name used for external tracking events. You can use tags to get the "
|
2409 |
"event, the number or the name of the block that caused the event."
|
2410 |
msgstr ""
|
2411 |
|
2412 |
+
#: includes/functions.php:3557
|
2413 |
msgid "Event label"
|
2414 |
msgstr ""
|
2415 |
|
2416 |
+
#: includes/functions.php:3560
|
2417 |
msgid ""
|
2418 |
"Label name used for external tracking events. You can use tags to get the "
|
2419 |
"event, the number or the name of the block that caused the event."
|
2420 |
msgstr ""
|
2421 |
|
2422 |
#. translators: %s: Ad Inserter Pro
|
2423 |
+
#: includes/functions.php:3706
|
2424 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2425 |
msgstr ""
|
2426 |
|
2427 |
#. translators: %s: Ad Inserter Pro
|
2428 |
+
#: includes/functions.php:3706
|
2429 |
msgid "Show link to %s on the Sites page"
|
2430 |
msgstr ""
|
2431 |
|
2432 |
+
#: includes/functions.php:5249
|
2433 |
+
msgid "Date"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
+
#: includes/functions.php:5723
|
2437 |
+
msgid "File %s missing."
|
2438 |
msgstr ""
|
2439 |
|
2440 |
+
#: includes/placeholders.php:17
|
2441 |
msgid "Custom"
|
2442 |
msgstr ""
|
2443 |
|
2444 |
+
#: includes/placeholders.php:100
|
2445 |
msgid "Placeholder Editor"
|
2446 |
msgstr ""
|
2447 |
|
2448 |
+
#: includes/placeholders.php:349
|
2449 |
msgid "Select placeholder"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
+
#: includes/placeholders.php:350
|
2453 |
msgid "Edit placeholder size, colors and text"
|
2454 |
msgstr ""
|
2455 |
|
2456 |
+
#: includes/placeholders.php:351
|
2457 |
msgid "Close placeholder editor"
|
2458 |
msgstr ""
|
2459 |
|
2460 |
+
#: includes/placeholders.php:355
|
2461 |
msgid "Placeholder"
|
2462 |
msgstr ""
|
2463 |
|
2464 |
+
#: includes/placeholders.php:360 settings.php:963 settings.php:4341
|
2465 |
msgid "Size"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
+
#: includes/placeholders.php:376 includes/preview.php:2450
|
2469 |
msgid "Background color"
|
2470 |
msgstr ""
|
2471 |
|
2472 |
+
#: includes/placeholders.php:395
|
2473 |
msgid "Text"
|
2474 |
msgstr ""
|
2475 |
|
2476 |
+
#: includes/placeholders.php:400
|
2477 |
msgid "Text color"
|
2478 |
msgstr ""
|
2479 |
|
2480 |
+
#: includes/placeholders.php:409
|
2481 |
msgid ""
|
2482 |
"Here you can create a universal placeholder image that can be used in place "
|
2483 |
"of ads when they are not available yet.\n"
|
2485 |
"save them to local computer or server."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
+
#: includes/placeholders.php:414
|
2489 |
msgid ""
|
2490 |
"Choose between common ad sizes 300x250, 336x280, 728x90, 468x60, 250x250, "
|
2491 |
"300x600 or define custom size.\n"
|
2496 |
"text."
|
2497 |
msgstr ""
|
2498 |
|
2499 |
+
#: includes/placeholders.php:418
|
2500 |
msgid ""
|
2501 |
"<strong>Please note</strong>: if you have active rotation editor the code "
|
2502 |
"window shows only the code for the currently selected option.\n"
|
2504 |
"currently selected option."
|
2505 |
msgstr ""
|
2506 |
|
2507 |
+
#: includes/placeholders.php:421
|
2508 |
msgid ""
|
2509 |
"Code generator for banners and AdSense generates the code only when you "
|
2510 |
"click on the button Generate code.\n"
|
2513 |
"need to (optionally) import and generate code for each rotation option."
|
2514 |
msgstr ""
|
2515 |
|
2516 |
+
#: includes/placeholders.php:424
|
2517 |
msgid ""
|
2518 |
"Ad Inserter has a simple code generator for banners and placeholders.\n"
|
2519 |
"You can select banner image (or placeholder), optionally define link (web "
|
2521 |
"whether to open link in a new tab."
|
2522 |
msgstr ""
|
2523 |
|
2524 |
+
#: includes/preview-adb.php:4
|
2525 |
msgid "Add dummy paragraph"
|
2526 |
msgstr ""
|
2527 |
|
2528 |
+
#: includes/preview-adb.php:5
|
2529 |
msgid "Remove dummy paragraph"
|
2530 |
msgstr ""
|
2531 |
|
2532 |
+
#: includes/preview-adb.php:6 includes/preview.php:2310
|
2533 |
msgid "Use current settings"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
+
#: includes/preview-adb.php:6
|
2537 |
msgctxt "Button"
|
2538 |
msgid "Use"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
+
#: includes/preview-adb.php:7
|
2542 |
msgid "Reset to the saved settings"
|
2543 |
msgstr ""
|
2544 |
|
2545 |
+
#: includes/preview-adb.php:7
|
2546 |
msgctxt "Button"
|
2547 |
msgid "Reset"
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: includes/preview-adb.php:8
|
2551 |
msgid "Reset to the default settings"
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: includes/preview-adb.php:8
|
2555 |
msgctxt "Button"
|
2556 |
msgid "Default"
|
2557 |
msgstr ""
|
2558 |
|
2559 |
+
#: includes/preview-adb.php:9 includes/preview.php:2313
|
2560 |
msgid "Close preview window"
|
2561 |
msgstr ""
|
2562 |
|
2563 |
+
#: includes/preview-adb.php:9
|
2564 |
msgctxt "Button "
|
2565 |
msgid "Cancel"
|
2566 |
msgstr ""
|
2567 |
|
2568 |
+
#: includes/preview-adb.php:57
|
2569 |
msgid "Ad Blocking Detected Message Preview"
|
2570 |
msgstr ""
|
2571 |
|
2572 |
+
#: includes/preview-adb.php:345 settings.php:2898
|
2573 |
msgid "Message CSS"
|
2574 |
msgstr ""
|
2575 |
|
2576 |
+
#: includes/preview-adb.php:350 settings.php:2906
|
2577 |
msgid "Overlay CSS"
|
2578 |
msgstr ""
|
2579 |
|
2580 |
+
#: includes/preview.php:246
|
2581 |
msgid "Sticky Code Preview"
|
2582 |
msgstr ""
|
2583 |
|
2584 |
+
#: includes/preview.php:246
|
2585 |
msgid "Code Preview"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
+
#: includes/preview.php:2308
|
2589 |
msgid "Highlight inserted code"
|
2590 |
msgstr ""
|
2591 |
|
2592 |
+
#: includes/preview.php:2308
|
2593 |
msgid "Highlight"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
+
#: includes/preview.php:2311
|
2597 |
msgid "Reset to block settings"
|
2598 |
msgstr ""
|
2599 |
|
2600 |
+
#: includes/preview.php:2326
|
2601 |
msgid "AdSense ad unit"
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: includes/preview.php:2395
|
2605 |
msgid "wrapping div"
|
2606 |
msgstr ""
|
2607 |
|
2608 |
+
#: includes/preview.php:2400 includes/preview.php:2407
|
2609 |
msgid "background"
|
2610 |
msgstr ""
|
2611 |
|
2612 |
+
#: includes/preview.php:2434 includes/preview.php:2647 settings.php:1315
|
2613 |
msgid "Alignment"
|
2614 |
msgstr ""
|
2615 |
|
2616 |
+
#: includes/preview.php:2471
|
2617 |
msgid "Repeat image"
|
2618 |
msgstr ""
|
2619 |
|
2620 |
+
#: includes/preview.php:2554
|
2621 |
msgid "Horizontal margin"
|
2622 |
msgstr ""
|
2623 |
|
2624 |
+
#: includes/preview.php:2606
|
2625 |
msgid "Vertical margin"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: includes/preview.php:2630
|
2629 |
msgid "Animate"
|
2630 |
msgstr ""
|
2631 |
|
2632 |
+
#: includes/preview.php:2701
|
2633 |
msgid ""
|
2634 |
"This is a preview of the code between dummy paragraphs. Here you can test "
|
2635 |
"various block alignments, visually edit margin and padding values of the "
|
2639 |
"restores all the values to those of the current block."
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: includes/preview.php:2704
|
2643 |
msgid ""
|
2644 |
"This is a preview of the saved block between dummy paragraphs. It shows the "
|
2645 |
"code with the alignment and style as it is set for this block. Highlight "
|
2646 |
"button highlights background, wrapping div margin and code area."
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: includes/preview.php:2706
|
2650 |
msgid ""
|
2651 |
"This is a preview of AdSense ad block between dummy paragraphs. AdSense ad "
|
2652 |
"code was loaded from your AdSense account. The ad block is displayed on a "
|
2654 |
"highlight ad block."
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: includes/preview.php:2712
|
2658 |
msgid ""
|
2659 |
"You can resize the window (and refresh the page to reload ads) to check "
|
2660 |
"display with different screen widths.\n"
|
2662 |
"settings will be copied to the active block."
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: includes/preview.php:2714
|
2666 |
msgid ""
|
2667 |
"Please note that the code, block name, alignment and style are taken from "
|
2668 |
"the current block settings (may not be saved).\n"
|
2670 |
"padding can't be set. However, you can use own HTML code for the block."
|
2671 |
msgstr ""
|
2672 |
|
2673 |
+
#: includes/preview.php:2719 includes/preview.php:2733
|
2674 |
+
#: includes/preview.php:2743 includes/preview.php:2753
|
2675 |
+
#: includes/preview.php:2763
|
2676 |
msgid ""
|
2677 |
"Ad Inserter can be configured to insert any code anywhere on the page. Each "
|
2678 |
"code with it's settings is called a block.\n"
|
2686 |
"and manual insertion."
|
2687 |
msgstr ""
|
2688 |
|
2689 |
+
#: includes/preview.php:2724 includes/preview.php:2738
|
2690 |
+
#: includes/preview.php:2748 includes/preview.php:2758
|
2691 |
+
#: includes/preview.php:2768
|
2692 |
msgid ""
|
2693 |
"Few very important things you need to know in order to insert code and "
|
2694 |
"display some ad:\n"
|
2701 |
"individual post/page exceptions."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: includes/preview.php:2730
|
2705 |
msgid ""
|
2706 |
"This is a preview of the code for sticky ads. Here you can test various "
|
2707 |
"horizontal and vertical alignments, close button locations, visually edit "
|
2711 |
"the values to those of the current block."
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: includes/version-check.php:14
|
2715 |
+
msgid "The latest PHP version: "
|
2716 |
+
msgstr ""
|
2717 |
+
|
2718 |
+
#: includes/version-check.php:33
|
2719 |
+
msgid ""
|
2720 |
+
"Warning: Ad Inserter Pro plugin is outdated - it has not been tested with "
|
2721 |
+
"WordPress version"
|
2722 |
+
msgstr ""
|
2723 |
+
|
2724 |
#: settings.php:160 settings.php:163
|
2725 |
msgid ""
|
2726 |
"Warning: only exceptions for %d posts cleared, %d posts still have exceptions"
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: settings.php:202 settings.php:1204
|
2730 |
msgid ""
|
2731 |
"Settings for individual exceptions have been updated. Please check all "
|
2732 |
"blocks that have exceptions and and then save settings."
|
2736 |
msgid "Online documentation"
|
2737 |
msgstr ""
|
2738 |
|
2739 |
+
#: settings.php:248 settings.php:798 settings.php:2281
|
2740 |
msgid "Show AdSense ad units"
|
2741 |
msgstr ""
|
2742 |
|
2744 |
msgid "Edit ads.txt file"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: settings.php:260 settings.php:1147
|
2748 |
msgid "Check theme for available positions for automatic insertion"
|
2749 |
msgstr ""
|
2750 |
|
2869 |
msgid "General Settings"
|
2870 |
msgstr ""
|
2871 |
|
2872 |
+
#: settings.php:746 settings.php:2625 settings.php:2692 settings.php:2878
|
2873 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: settings.php:753
|
2877 |
msgid "Toggle tools"
|
2878 |
msgstr ""
|
2879 |
|
2880 |
+
#: settings.php:761
|
2881 |
msgid "Process PHP code in block"
|
2882 |
msgstr ""
|
2883 |
|
2884 |
+
#: settings.php:768
|
2885 |
msgid "Disable insertion of this block"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
+
#: settings.php:780
|
2889 |
msgid "Toggle code generator"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: settings.php:784
|
2893 |
msgid "Toggle rotation editor"
|
2894 |
msgstr ""
|
2895 |
|
2896 |
+
#: settings.php:788
|
2897 |
msgid "Open visual HTML editor"
|
2898 |
msgstr ""
|
2899 |
|
2900 |
+
#: settings.php:807
|
2901 |
msgid "Clear block"
|
2902 |
msgstr ""
|
2903 |
|
2904 |
+
#: settings.php:812 settings.php:4212
|
2905 |
msgid "Copy block"
|
2906 |
msgstr ""
|
2907 |
|
2908 |
+
#: settings.php:816
|
2909 |
msgid "Paste name"
|
2910 |
msgstr ""
|
2911 |
|
2912 |
+
#: settings.php:820
|
2913 |
msgid "Paste code"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
+
#: settings.php:824
|
2917 |
msgid "Paste settings"
|
2918 |
msgstr ""
|
2919 |
|
2920 |
+
#: settings.php:828
|
2921 |
msgid "Paste block (name, code and settings)"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: settings.php:847
|
2925 |
msgid "Rotation groups"
|
2926 |
msgstr ""
|
2927 |
|
2928 |
+
#: settings.php:851
|
2929 |
msgid "Remove option"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
+
#: settings.php:855
|
2933 |
msgid "Add option"
|
2934 |
msgstr ""
|
2935 |
|
2936 |
+
#: settings.php:870
|
2937 |
msgid "Import code"
|
2938 |
msgstr ""
|
2939 |
|
2940 |
+
#: settings.php:874
|
2941 |
msgid "Generate code"
|
2942 |
msgstr ""
|
2943 |
|
2944 |
+
#: settings.php:879
|
2945 |
msgid "Banner"
|
2946 |
msgstr ""
|
2947 |
|
2948 |
+
#: settings.php:890
|
2949 |
msgid "Image"
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#: settings.php:898
|
2953 |
msgid "Link"
|
2954 |
msgstr ""
|
2955 |
|
2956 |
+
#: settings.php:909
|
2957 |
msgid "Open link in a new tab"
|
2958 |
msgstr ""
|
2959 |
|
2960 |
+
#: settings.php:910
|
2961 |
msgid "Select Image"
|
2962 |
msgstr ""
|
2963 |
|
2964 |
+
#: settings.php:911
|
2965 |
msgid "Select Placeholder"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
+
#: settings.php:923
|
2969 |
msgid "Comment"
|
2970 |
msgstr ""
|
2971 |
|
2972 |
+
#: settings.php:932
|
2973 |
msgctxt "AdSense"
|
2974 |
msgid "Publisher ID"
|
2975 |
msgstr ""
|
2976 |
|
2977 |
+
#: settings.php:941
|
2978 |
msgctxt "AdSense"
|
2979 |
msgid "Ad Slot ID"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: settings.php:950
|
2983 |
msgid "Ad Type"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: settings.php:975
|
2987 |
msgid "AMP Ad"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: settings.php:993
|
2991 |
msgid "Show ad units from your AdSense account"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: settings.php:993
|
2995 |
msgid "AdSense ad units"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: settings.php:1010
|
2999 |
msgctxt "AdSense"
|
3000 |
msgid "Layout"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: settings.php:1019
|
3004 |
msgctxt "AdSense"
|
3005 |
msgid "Layout Key"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: settings.php:1029
|
3009 |
msgid "Full width"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
+
#: settings.php:1031
|
3013 |
msgctxt "Full width"
|
3014 |
msgid "Enabled"
|
3015 |
msgstr ""
|
3016 |
|
3017 |
+
#: settings.php:1032
|
3018 |
msgctxt "Full width"
|
3019 |
msgid "Disabled"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: settings.php:1113
|
3023 |
msgid ""
|
3024 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3025 |
"Cookie or Referer (domain)"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: settings.php:1113
|
3029 |
msgid "Lists"
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: settings.php:1114
|
3033 |
msgid "Widget, Shortcode and PHP function call"
|
3034 |
msgstr ""
|
3035 |
|
3036 |
+
#: settings.php:1114
|
3037 |
msgid "Manual"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
+
#: settings.php:1115
|
3041 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3042 |
msgstr ""
|
3043 |
|
3044 |
+
#: settings.php:1115
|
3045 |
msgid "Devices"
|
3046 |
msgstr ""
|
3047 |
|
3048 |
+
#: settings.php:1116
|
3049 |
msgid ""
|
3050 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3051 |
"feeds), Filter, Scheduling, General tag"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: settings.php:1116
|
3055 |
msgid "Misc"
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: settings.php:1117
|
3059 |
msgid "Preview code and alignment"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: settings.php:1120 settings.php:2265
|
3063 |
msgid ""
|
3064 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3065 |
"editor is active before saving settings."
|
3066 |
msgstr ""
|
3067 |
|
3068 |
+
#: settings.php:1133 settings.php:1134
|
3069 |
msgid "Enable insertion on posts"
|
3070 |
msgstr ""
|
3071 |
|
3072 |
+
#: settings.php:1134 settings.php:3424
|
3073 |
msgid "Posts"
|
3074 |
msgstr ""
|
3075 |
|
3076 |
+
#: settings.php:1138 settings.php:1139
|
3077 |
msgid ""
|
3078 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3079 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3080 |
"theme)"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: settings.php:1139 settings.php:3426
|
3084 |
msgid "Homepage"
|
3085 |
msgstr ""
|
3086 |
|
3087 |
+
#: settings.php:1143 settings.php:1144
|
3088 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3089 |
msgstr ""
|
3090 |
|
3091 |
+
#: settings.php:1144 settings.php:3427
|
3092 |
msgid "Category pages"
|
3093 |
msgstr ""
|
3094 |
|
3095 |
+
#: settings.php:1154 settings.php:1155
|
3096 |
msgid "Enable insertion on static pages"
|
3097 |
msgstr ""
|
3098 |
|
3099 |
+
#: settings.php:1155 settings.php:3425
|
3100 |
msgid "Static pages"
|
3101 |
msgstr ""
|
3102 |
|
3103 |
+
#: settings.php:1159 settings.php:1160
|
3104 |
msgid "Enable insertion on search blog pages"
|
3105 |
msgstr ""
|
3106 |
|
3107 |
+
#: settings.php:1160 settings.php:3429
|
3108 |
msgid "Search pages"
|
3109 |
msgstr ""
|
3110 |
|
3111 |
+
#: settings.php:1164 settings.php:1165
|
3112 |
msgid "Enable insertion on tag or archive blog pages"
|
3113 |
msgstr ""
|
3114 |
|
3115 |
+
#: settings.php:1168
|
3116 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3117 |
msgstr ""
|
3118 |
|
3119 |
+
#: settings.php:1180
|
3120 |
msgid ""
|
3121 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3122 |
"be configured on the individual post/page editor page (in the settings below "
|
3123 |
"the editor)."
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: settings.php:1181
|
3127 |
msgid ""
|
3128 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3129 |
"enabled they can be configured on the individual post/page editor page (in "
|
3130 |
"the settings below the editor)."
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: settings.php:1181
|
3134 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
#. Translators: Enabled means...
|
3138 |
+
#: settings.php:1189
|
3139 |
msgid ""
|
3140 |
"means the insertion for this block is enabled by default and disabled for "
|
3141 |
"exceptions."
|
3142 |
msgstr ""
|
3143 |
|
3144 |
#. Translators: Disabled means...
|
3145 |
+
#: settings.php:1190
|
3146 |
msgid ""
|
3147 |
"means the insertion for this block is disabled by default and enabled for "
|
3148 |
"exceptions."
|
3149 |
msgstr ""
|
3150 |
|
3151 |
+
#: settings.php:1191
|
3152 |
msgid ""
|
3153 |
"When individual post/page exceptions are enabled they can be configured on "
|
3154 |
"the individual post/page editor page (in the settings below the editor)."
|
3155 |
msgstr ""
|
3156 |
|
3157 |
+
#: settings.php:1199
|
3158 |
msgid ""
|
3159 |
"No exception for post or static page defined. Block will not be inserted."
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: settings.php:1217
|
3163 |
msgctxt "post"
|
3164 |
msgid "Type"
|
3165 |
msgstr ""
|
3166 |
|
3167 |
#. translators: %d: block number
|
3168 |
+
#: settings.php:1219
|
3169 |
msgid "Are you sure you want to clear listed exceptions for block %d?"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: settings.php:1220
|
3173 |
msgid "Clear listed exceptions for block"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
+
#: settings.php:1246 settings.php:1394 settings.php:2030
|
3177 |
msgid "Insertion"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
+
#: settings.php:1284
|
3181 |
msgid ""
|
3182 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3183 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3187 |
"negative number means counting from the opposite direction"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: settings.php:1285
|
3191 |
msgid ""
|
3192 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3193 |
"means every N images, empty means all images, 0 means random image, value "
|
3197 |
"direction"
|
3198 |
msgstr ""
|
3199 |
|
3200 |
+
#: settings.php:1298
|
3201 |
msgid ""
|
3202 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3203 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: settings.php:1299
|
3207 |
msgid ""
|
3208 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3209 |
"numbers, %N means every N posts, empty means all posts"
|
3210 |
msgstr ""
|
3211 |
|
3212 |
+
#: settings.php:1300
|
3213 |
msgid ""
|
3214 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3215 |
"numbers, %N means every N comments, empty means all comments"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: settings.php:1307
|
3219 |
msgid "Toggle paragraph counting settings"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: settings.php:1308
|
3223 |
msgid "Toggle paragraph clearance settings"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: settings.php:1311
|
3227 |
msgid "Toggle insertion filter settings"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: settings.php:1329
|
3231 |
msgid "Toggle insertion and alignment icons"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: settings.php:1343
|
3235 |
msgid "Custom CSS code for the wrapping div"
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: settings.php:1346 settings.php:1347 settings.php:1348 settings.php:1349
|
3239 |
+
#: settings.php:1350 settings.php:1351
|
3240 |
msgid "CSS code for the wrapping div, click to edit"
|
3241 |
msgstr ""
|
3242 |
|
3243 |
+
#: settings.php:1364
|
3244 |
msgid "HTML element"
|
3245 |
msgstr ""
|
3246 |
|
3247 |
+
#: settings.php:1377
|
3248 |
msgid "HTML element selector or comma separated list of selectors"
|
3249 |
msgstr ""
|
3250 |
|
3251 |
+
#: settings.php:1383 settings.php:2783
|
3252 |
msgid "Action"
|
3253 |
msgstr ""
|
3254 |
|
3255 |
+
#: settings.php:1395
|
3256 |
msgid ""
|
3257 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3258 |
"Server-side insertion inserts block when the page is generated but needs "
|
3259 |
"Output buffering enabled."
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: settings.php:1404
|
3263 |
msgid "Code position"
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: settings.php:1405
|
3267 |
msgid ""
|
3268 |
"Page position where the code for client-side insertion will be inserted."
|
3269 |
msgstr ""
|
3270 |
|
3271 |
+
#: settings.php:1420
|
3272 |
msgid "Count"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: settings.php:1426
|
3276 |
msgid "paragraphs with tags"
|
3277 |
msgstr ""
|
3278 |
|
3279 |
+
#: settings.php:1432
|
3280 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3281 |
msgstr ""
|
3282 |
|
3283 |
+
#: settings.php:1441
|
3284 |
msgid "that have between"
|
3285 |
msgstr ""
|
3286 |
|
3287 |
+
#: settings.php:1447
|
3288 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3289 |
msgstr ""
|
3290 |
|
3291 |
+
#: settings.php:1456
|
3292 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3293 |
msgstr ""
|
3294 |
|
3295 |
+
#: settings.php:1459
|
3296 |
msgid "words"
|
3297 |
msgstr ""
|
3298 |
|
3299 |
+
#: settings.php:1474 settings.php:1521 settings.php:1641 settings.php:1667
|
3300 |
msgid "Comma separated texts"
|
3301 |
msgstr ""
|
3302 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3303 |
#. translators: inside [HTML tags] elements that contain
|
3304 |
+
#: settings.php:1493
|
3305 |
msgid "inside"
|
3306 |
msgstr ""
|
3307 |
|
3308 |
+
#: settings.php:1499
|
3309 |
msgid "Comma separated HTML tag names of container elements"
|
3310 |
msgstr ""
|
3311 |
|
3312 |
#. translators: inside [HTML tags] elements that contain
|
3313 |
+
#: settings.php:1508
|
3314 |
msgid "elements that"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: settings.php:1533 settings.php:1534
|
3318 |
+
msgid ""
|
3319 |
+
"If checked it will search for the text only in tag attributes like [[id]], "
|
3320 |
+
"[[class]], [[style]], etc. Otherwise the whole tag including its content "
|
3321 |
+
"will be searched."
|
3322 |
+
msgstr ""
|
3323 |
+
|
3324 |
+
#: settings.php:1534
|
3325 |
+
msgid "Check only tag attributes"
|
3326 |
+
msgstr ""
|
3327 |
+
|
3328 |
+
#: settings.php:1538
|
3329 |
+
msgid ""
|
3330 |
+
"Count also paragraphs inside these elements - defined on general plugin "
|
3331 |
+
"settings page - tab [*] / tab General"
|
3332 |
+
msgstr ""
|
3333 |
+
|
3334 |
+
#. Translators: %s: HTML tags
|
3335 |
+
#: settings.php:1544
|
3336 |
+
msgid "Count inside %s elements"
|
3337 |
+
msgstr ""
|
3338 |
+
|
3339 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3340 |
+
#: settings.php:1558
|
3341 |
msgid "Do not insert for first"
|
3342 |
msgid_plural "Do not insert for first"
|
3343 |
msgstr[0] ""
|
3344 |
msgstr[1] ""
|
3345 |
|
3346 |
+
#: settings.php:1564
|
3347 |
msgid ""
|
3348 |
"Excludes first paragraphs from insertion, leave empty for no exclusion of "
|
3349 |
"first paragraphs"
|
3350 |
msgstr ""
|
3351 |
|
3352 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3353 |
+
#: settings.php:1567
|
3354 |
msgid "and last"
|
3355 |
msgid_plural "and last"
|
3356 |
msgstr[0] ""
|
3357 |
msgstr[1] ""
|
3358 |
|
3359 |
+
#: settings.php:1573
|
3360 |
msgid ""
|
3361 |
"Excludes last paragraphs from insertion, leave empty for no exclusion of "
|
3362 |
"last paragraphs"
|
3364 |
|
3365 |
#. Translators: Do not insert for first X and last Y paragraphs
|
3366 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3367 |
+
#: settings.php:1576 settings.php:1602
|
3368 |
msgid "paragraph"
|
3369 |
msgid_plural "paragraphs"
|
3370 |
msgstr[0] ""
|
3371 |
msgstr[1] ""
|
3372 |
|
3373 |
+
#: settings.php:1584 settings.php:2162
|
3374 |
msgid "Post/Static page must have between"
|
3375 |
msgstr ""
|
3376 |
|
3377 |
+
#: settings.php:1590
|
3378 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3379 |
msgstr ""
|
3380 |
|
3381 |
+
#: settings.php:1599
|
3382 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3383 |
msgstr ""
|
3384 |
|
3385 |
+
#: settings.php:1610
|
3386 |
msgid "Minimum number of words in paragraphs above"
|
3387 |
msgstr ""
|
3388 |
|
3389 |
+
#: settings.php:1616
|
3390 |
msgid ""
|
3391 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3392 |
"numbers"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: settings.php:1626 settings.php:1652
|
3396 |
msgid "In"
|
3397 |
msgstr ""
|
3398 |
|
3399 |
+
#: settings.php:1632
|
3400 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: settings.php:1635
|
3404 |
msgid "paragraphs above avoid"
|
3405 |
msgstr ""
|
3406 |
|
3407 |
+
#: settings.php:1658
|
3408 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3409 |
msgstr ""
|
3410 |
|
3411 |
+
#: settings.php:1661
|
3412 |
msgid "paragraphs below avoid"
|
3413 |
msgstr ""
|
3414 |
|
3415 |
+
#: settings.php:1677
|
3416 |
msgid "If text is found"
|
3417 |
msgstr ""
|
3418 |
|
3419 |
+
#: settings.php:1684
|
3420 |
msgid "check up to"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: settings.php:1692
|
3424 |
msgctxt "check up to"
|
3425 |
msgid "paragraphs"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: settings.php:1708
|
3429 |
msgid "Categories"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: settings.php:1711
|
3433 |
msgid "Toggle category editor"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: settings.php:1714
|
3437 |
msgid "Comma separated category slugs"
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: settings.php:1731
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3441 |
msgid "Tags"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: settings.php:1734
|
3445 |
msgid "Toggle tag editor"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: settings.php:1737
|
3449 |
msgid "Comma separated tag slugs"
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: settings.php:1754
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3453 |
msgid "Taxonomies"
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: settings.php:1757
|
3457 |
msgid "Toggle taxonomy editor"
|
3458 |
msgstr ""
|
3459 |
|
3460 |
+
#: settings.php:1760
|
3461 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3462 |
msgstr ""
|
3463 |
|
3464 |
+
#: settings.php:1777
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3465 |
msgid "Post IDs"
|
3466 |
msgstr ""
|
3467 |
|
3468 |
+
#: settings.php:1780
|
3469 |
msgid "Toggle post/page ID editor"
|
3470 |
msgstr ""
|
3471 |
|
3472 |
+
#: settings.php:1783
|
3473 |
msgid "Comma separated post/page IDs"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: settings.php:1800
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3477 |
msgid "Urls"
|
3478 |
msgstr ""
|
3479 |
|
3480 |
+
#: settings.php:1803
|
3481 |
msgid "Toggle url editor"
|
3482 |
msgstr ""
|
3483 |
|
3484 |
+
#: settings.php:1806
|
3485 |
msgid ""
|
3486 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3487 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3489 |
"start*. *url-pattern*, *url-end)"
|
3490 |
msgstr ""
|
3491 |
|
3492 |
+
#: settings.php:1822
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3493 |
msgid "Url parameters"
|
3494 |
msgstr ""
|
3495 |
|
3496 |
+
#: settings.php:1826
|
3497 |
msgid "Toggle url parameter and cookie editor"
|
3498 |
msgstr ""
|
3499 |
|
3500 |
+
#: settings.php:1829
|
3501 |
msgid ""
|
3502 |
"Comma separated url query parameters or cookies with optional values (use "
|
3503 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: settings.php:1845
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3507 |
msgid "Referrers"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: settings.php:1848
|
3511 |
msgid "Toggle referer editor"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: settings.php:1851
|
3515 |
msgid ""
|
3516 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3517 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: settings.php:1867
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3521 |
msgid "Clients"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: settings.php:1870
|
3525 |
msgid "Toggle client editor"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: settings.php:1873
|
3529 |
+
msgid ""
|
3530 |
+
"Comma separated names (operating systems, browsers, devices). You can also "
|
3531 |
+
"list partial user agent strings with * (user-agent-start*. *user-agent-"
|
3532 |
+
"pattern*, *user-agent-end)"
|
|
|
|
|
|
|
|
|
|
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: settings.php:1899
|
3536 |
msgid "Enable widget for this block"
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: settings.php:1911
|
3540 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: settings.php:1912 settings.php:4269
|
3544 |
msgid "Shortcode"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: settings.php:1927
|
3548 |
msgid ""
|
3549 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3550 |
"If function is disabled for block it will return empty string."
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: settings.php:1928
|
3554 |
msgid "PHP function"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: settings.php:1943
|
3558 |
msgid "Client-side device detection"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: settings.php:1944
|
3562 |
msgid "Server-side device detection"
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: settings.php:1951
|
3566 |
msgid "Use client-side detection to"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: settings.php:1953
|
3570 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
#. Translators: only on (the following devices): viewport names (devices)
|
3574 |
#. listed
|
3575 |
+
#: settings.php:1958
|
3576 |
msgid "only on"
|
3577 |
msgstr ""
|
3578 |
|
3579 |
+
#: settings.php:1986
|
3580 |
msgid "Device min width %s px"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
+
#: settings.php:2012
|
3584 |
msgid "Use server-side detection to insert block only for"
|
3585 |
msgstr ""
|
3586 |
|
3587 |
+
#: settings.php:2031
|
3588 |
msgid "Filter"
|
3589 |
msgstr ""
|
3590 |
|
3591 |
+
#: settings.php:2032
|
3592 |
msgid "Word Count"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: settings.php:2033 settings.php:4259
|
3596 |
msgid "Scheduling"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: settings.php:2034
|
3600 |
msgid "Display"
|
3601 |
msgstr ""
|
3602 |
|
3603 |
+
#: settings.php:2036 settings.php:2307
|
3604 |
msgid "General"
|
3605 |
msgstr ""
|
3606 |
|
3607 |
+
#: settings.php:2048
|
3608 |
msgid "Old settings for AMP pages detected"
|
3609 |
msgstr ""
|
3610 |
|
3611 |
+
#: settings.php:2048
|
3612 |
msgid ""
|
3613 |
"To insert different codes on normal and AMP pages separate them with "
|
3614 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3615 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: settings.php:2048
|
3619 |
msgid "AMP pages"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: settings.php:2053
|
3623 |
msgid "Enable insertion for Ajax requests"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: settings.php:2053
|
3627 |
msgid "Ajax requests"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: settings.php:2058
|
3631 |
msgid "Enable insertion in RSS feeds"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: settings.php:2058
|
3635 |
msgid "RSS Feed"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
+
#: settings.php:2063
|
3639 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: settings.php:2063
|
3643 |
msgid "Error 404 page"
|
3644 |
msgstr ""
|
3645 |
|
3646 |
+
#: settings.php:2075
|
3647 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: settings.php:2076
|
3651 |
msgid "insertions"
|
3652 |
msgstr ""
|
3653 |
|
3654 |
+
#: settings.php:2078
|
3655 |
msgid ""
|
3656 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3657 |
"General)"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: settings.php:2081 settings.php:2487
|
3661 |
msgid "Max blocks per page"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: settings.php:2093
|
3665 |
msgid "Insert for"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: settings.php:2101
|
3669 |
msgid ""
|
3670 |
+
"Insert block only when WP function [[in_the_loop ()]] returns true (WP loop "
|
3671 |
+
"is currently active). Might speed up insertion on content pages when "
|
3672 |
+
"[[the_content]] filter hook is called multiple times."
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: settings.php:2105
|
3676 |
msgid "Insert only in the loop"
|
3677 |
msgstr ""
|
3678 |
|
3679 |
+
#: settings.php:2108
|
3680 |
+
msgid ""
|
3681 |
+
"When enabled, Javascript code (if needed for the blok) will be inserted next "
|
3682 |
+
"to the block HTML code. Otherwise, the Javascript code will be inserted in "
|
3683 |
+
"the page footer. Plugin Javascript functions will still be inserted in the "
|
3684 |
+
"footer."
|
3685 |
+
msgstr ""
|
3686 |
+
|
3687 |
+
#: settings.php:2112
|
3688 |
+
msgid "Embed JS code"
|
3689 |
+
msgstr ""
|
3690 |
+
|
3691 |
+
#: settings.php:2115
|
3692 |
msgid ""
|
3693 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: settings.php:2119
|
3697 |
msgid "Disable caching"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: settings.php:2131
|
3701 |
msgid "Filter insertions"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: settings.php:2134
|
3705 |
msgid ""
|
3706 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3707 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3709 |
"using only one insertion type."
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: settings.php:2137
|
3713 |
msgid "using"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: settings.php:2156
|
3717 |
msgid "Checked means specified calls are unwanted"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: settings.php:2156
|
3721 |
msgid "Invert filter"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: settings.php:2163
|
3725 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: settings.php:2165
|
3729 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: settings.php:2178
|
3733 |
msgid "for"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: settings.php:2178
|
3737 |
msgid "days after publishing"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: settings.php:2180
|
3741 |
msgid "Not available"
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: settings.php:2193 settings.php:2479
|
3745 |
msgid "Ad label"
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: settings.php:2213
|
3749 |
msgid "General tag"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: settings.php:2217
|
3753 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
#. translators: %s: HTML tags
|
3757 |
+
#: settings.php:2226
|
3758 |
msgid ""
|
3759 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3760 |
"client-side device detection!"
|
3761 |
msgstr ""
|
3762 |
|
3763 |
#. translators: %s: HTML tags for text and link
|
3764 |
+
#: settings.php:2240
|
3765 |
msgid ""
|
3766 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3767 |
"side %s insertion. Use %s Server-side %s insertion."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: settings.php:2256
|
3771 |
msgid "Settings"
|
3772 |
msgstr ""
|
3773 |
|
3774 |
+
#: settings.php:2259
|
3775 |
msgid "Settings timestamp"
|
3776 |
msgstr ""
|
3777 |
|
3778 |
+
#: settings.php:2272
|
3779 |
msgid "Are you sure you want to reset all settings?"
|
3780 |
msgstr ""
|
3781 |
|
3782 |
+
#: settings.php:2272
|
3783 |
msgid "Reset All Settings"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: settings.php:2308
|
3787 |
msgid "Viewports"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: settings.php:2309
|
3791 |
msgid "Hooks"
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: settings.php:2310
|
3795 |
msgid "Header"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#: settings.php:2311 strings.php:30
|
3799 |
msgid "Footer"
|
3800 |
msgstr ""
|
3801 |
|
3802 |
+
#: settings.php:2316
|
3803 |
msgid "Debugging"
|
3804 |
msgstr ""
|
3805 |
|
3806 |
+
#: settings.php:2326
|
3807 |
msgid "Plugin priority"
|
3808 |
msgstr ""
|
3809 |
|
3810 |
+
#: settings.php:2334
|
3811 |
msgid "Output buffering"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
+
#: settings.php:2337
|
3815 |
msgid "Needed for position Above header but may not work with all themes"
|
3816 |
msgstr ""
|
3817 |
|
3818 |
+
#: settings.php:2345
|
3819 |
msgid "Syntax highlighting theme"
|
3820 |
msgstr ""
|
3821 |
|
3822 |
+
#: settings.php:2352
|
3823 |
msgctxt "no syntax highlighting themes"
|
3824 |
msgid "None"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: settings.php:2353
|
3828 |
msgid "No Syntax Highlighting"
|
3829 |
msgstr ""
|
3830 |
|
3831 |
+
#: settings.php:2355
|
3832 |
msgctxt "syntax highlighting themes"
|
3833 |
msgid "Light"
|
3834 |
msgstr ""
|
3835 |
|
3836 |
+
#: settings.php:2370
|
3837 |
msgctxt "syntax highlighting themes"
|
3838 |
msgid "Dark"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: settings.php:2396
|
3842 |
msgid "Min. user role for ind. exceptions editing"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: settings.php:2406
|
3846 |
msgid "Disable caching for logged in administrators"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
+
#: settings.php:2409
|
3850 |
msgid ""
|
3851 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3852 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: settings.php:2417
|
3856 |
msgid "Wait for jQuery"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: settings.php:2420
|
3860 |
msgid ""
|
3861 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3862 |
"it will run the scripts that may need it"
|
3863 |
msgstr ""
|
3864 |
|
3865 |
+
#: settings.php:2428
|
3866 |
msgid "Sticky widget mode"
|
3867 |
msgstr ""
|
3868 |
|
3869 |
+
#: settings.php:2431
|
3870 |
msgid ""
|
3871 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3872 |
"mode works with most themes but may reload ads on page load."
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: settings.php:2439
|
3876 |
msgid "Sticky widget top margin"
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: settings.php:2447
|
3880 |
msgid "Dynamic blocks"
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: settings.php:2460
|
3884 |
msgid "Functions for paragraph counting"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: settings.php:2463
|
3888 |
msgid ""
|
3889 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3890 |
"functions if paragraphs are not counted properly on non-english pages."
|
3891 |
msgstr ""
|
3892 |
|
3893 |
+
#: settings.php:2471
|
3894 |
msgid "No paragraph counting inside"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
+
#: settings.php:2482
|
3898 |
msgid "Label text or HTML code"
|
3899 |
msgstr ""
|
3900 |
|
3901 |
+
#: settings.php:2490
|
3902 |
msgid ""
|
3903 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3904 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: settings.php:2504
|
3908 |
msgid "Plugin usage tracking"
|
3909 |
msgstr ""
|
3910 |
|
3911 |
#. translators: %s: Ad Inserter
|
3912 |
+
#: settings.php:2507
|
3913 |
msgid ""
|
3914 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3915 |
"Only information regarding the WordPress environment and %s usage is "
|
3916 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3917 |
msgstr ""
|
3918 |
|
3919 |
+
#: settings.php:2525
|
3920 |
msgid "CSS class name for the wrapping div"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: settings.php:2525
|
3924 |
msgid "Block class name"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: settings.php:2531
|
3928 |
msgid "Include block number class"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: settings.php:2531
|
3932 |
msgid "Block number class"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
+
#: settings.php:2536
|
3936 |
msgid "Include block name class"
|
3937 |
msgstr ""
|
3938 |
|
3939 |
+
#: settings.php:2536
|
3940 |
msgid "Block name class"
|
3941 |
msgstr ""
|
3942 |
|
3943 |
+
#: settings.php:2541
|
3944 |
msgid ""
|
3945 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: settings.php:2541
|
3949 |
msgid "Inline styles"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: settings.php:2547
|
3953 |
msgid "Preview of the block wrapping code"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
+
#: settings.php:2548
|
3957 |
msgid "Wrapping div"
|
3958 |
msgstr ""
|
3959 |
|
3960 |
+
#: settings.php:2549 settings.php:2989
|
3961 |
msgid "BLOCK CODE"
|
3962 |
msgstr ""
|
3963 |
|
3964 |
+
#: settings.php:2557
|
3965 |
msgid "Viewport Settings used for client-side device detection"
|
3966 |
msgstr ""
|
3967 |
|
3968 |
#. Translators: %d: viewport number
|
3969 |
+
#: settings.php:2565
|
3970 |
msgid "Viewport %d name"
|
3971 |
msgstr ""
|
3972 |
|
3973 |
+
#: settings.php:2568
|
3974 |
msgid "min width"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
+
#: settings.php:2579
|
3978 |
msgid "Custom Hooks"
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: settings.php:2591 settings.php:2594
|
3982 |
msgid "Enable hook"
|
3983 |
msgstr ""
|
3984 |
|
3985 |
#. translators: %d: hook number
|
3986 |
+
#: settings.php:2594
|
3987 |
msgid "Hook %d name"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: settings.php:2597
|
3991 |
msgid "Hook name for automatic insertion selection"
|
3992 |
msgstr ""
|
3993 |
|
3994 |
+
#: settings.php:2600
|
3995 |
msgid "action"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
+
#: settings.php:2603
|
3999 |
msgid "Action name as used in the do_action () function"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: settings.php:2606
|
4003 |
msgid "priority"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: settings.php:2609
|
4007 |
msgid "Priority for the hook (default is 10)"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: settings.php:2630
|
4011 |
msgid "Enable insertion of this code into HTML page header"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: settings.php:2634 settings.php:2701 settings.php:2883
|
4015 |
msgid "Process PHP code"
|
4016 |
msgstr ""
|
4017 |
|
4018 |
+
#: settings.php:2638
|
4019 |
msgid "HTML Page Header Code"
|
4020 |
msgstr ""
|
4021 |
|
4022 |
+
#: settings.php:2646
|
4023 |
msgid "Code in the %s section of the HTML page"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
+
#: settings.php:2647
|
4027 |
msgctxt "code in the header"
|
4028 |
msgid "NOT ENABLED"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: settings.php:2664 settings.php:2732
|
4032 |
msgid "Use server-side detection to insert code only for"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: settings.php:2679
|
4036 |
msgid ""
|
4037 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4038 |
"Page not found"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: settings.php:2679 settings.php:2747
|
4042 |
msgid "Insert on Error 404 page"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: settings.php:2697
|
4046 |
msgid "Enable insertion of this code into HTML page footer"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: settings.php:2705
|
4050 |
msgid "HTML Page Footer Code"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
#. translators: %s: HTML tags
|
4054 |
+
#: settings.php:2713
|
4055 |
msgid "Code before the %s tag of the the HTML page"
|
4056 |
msgstr ""
|
4057 |
|
4058 |
+
#: settings.php:2714
|
4059 |
msgctxt "code in the footer"
|
4060 |
msgid "NOT ENABLED"
|
4061 |
msgstr ""
|
4062 |
|
4063 |
+
#: settings.php:2747
|
4064 |
msgid ""
|
4065 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4066 |
"Page not found"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: settings.php:2763
|
4070 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: settings.php:2768
|
4074 |
msgid "Enable detection of ad blocking"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: settings.php:2786
|
4078 |
msgid "Global action when ad blocking is detected"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: settings.php:2792
|
4082 |
msgid "No action for"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: settings.php:2793
|
4086 |
msgid "Exceptions for global action when ad blocking is detected."
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: settings.php:2803
|
4090 |
msgid "Delay Action"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: settings.php:2806
|
4094 |
msgid ""
|
4095 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4096 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4097 |
msgstr ""
|
4098 |
|
4099 |
+
#: settings.php:2806
|
4100 |
msgctxt "Delay Action for x "
|
4101 |
msgid "page views"
|
4102 |
msgstr ""
|
4103 |
|
4104 |
+
#: settings.php:2811
|
4105 |
msgid "No Action Period"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: settings.php:2814
|
4109 |
msgid ""
|
4110 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4111 |
"for no no-action period (action fires always after defined page view delay). "
|
4112 |
"Sets cookie."
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: settings.php:2814
|
4116 |
msgctxt "no action period"
|
4117 |
msgid "days"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: settings.php:2819
|
4121 |
msgid "Custom Selectors"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: settings.php:2822
|
4125 |
msgid ""
|
4126 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4127 |
"blocking detection. Invisible element or element with zero height means ad "
|
4128 |
"blocking is present."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: settings.php:2834
|
4132 |
msgid "Redirection Page"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: settings.php:2846
|
4136 |
msgid "Custom Url"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: settings.php:2851
|
4140 |
msgid ""
|
4141 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4142 |
"select Custom url and set it below."
|
4143 |
msgstr ""
|
4144 |
|
4145 |
+
#: settings.php:2860
|
4146 |
msgid "Custom Redirection Url"
|
4147 |
msgstr ""
|
4148 |
|
4149 |
+
#: settings.php:2872
|
4150 |
msgid "Message HTML code"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: settings.php:2885
|
4154 |
msgid "Preview message when ad blocking is detected"
|
4155 |
msgstr ""
|
4156 |
|
4157 |
+
#: settings.php:2914
|
4158 |
msgid "Prevent visitors from closing the warning message"
|
4159 |
msgstr ""
|
4160 |
|
4161 |
+
#: settings.php:2914
|
4162 |
msgid "Undismissible Message"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: settings.php:2920
|
4166 |
msgid "Not undismissible for"
|
4167 |
msgstr ""
|
4168 |
|
4169 |
+
#: settings.php:2921
|
4170 |
msgid "Users which can close the warning message."
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: settings.php:2935
|
4174 |
msgid ""
|
4175 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4176 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: settings.php:2943
|
4180 |
msgid "Disable header code (Header tab)"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: settings.php:2947
|
4184 |
msgid "Disable footer code (Footer tab)"
|
4185 |
msgstr ""
|
4186 |
|
4187 |
#. translators: %s: Ad Inserter
|
4188 |
+
#: settings.php:2951
|
4189 |
msgid "Disable %s JavaScript code"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
#. translators: %s: Ad Inserter
|
4193 |
+
#: settings.php:2955
|
4194 |
msgid "Disable %s CSS code"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: settings.php:2959
|
4198 |
msgid ""
|
4199 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: settings.php:2963
|
4203 |
msgid "Disable insertion of all blocks"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: settings.php:2967
|
4207 |
msgid "Disable insertions"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
#. translators: %s: Ad Inserter
|
4211 |
+
#: settings.php:2979
|
4212 |
msgid "%s CSS CODE"
|
4213 |
msgstr ""
|
4214 |
|
4215 |
+
#: settings.php:2982
|
4216 |
msgid "HEADER CODE"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
#. translators: %s: PHP tags
|
4220 |
+
#: settings.php:2988
|
4221 |
msgid "BLOCK PHP CODE"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
#. translators: %s: Ad Inserter
|
4225 |
+
#: settings.php:2994
|
4226 |
msgid "%s JS CODE"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: settings.php:2997
|
4230 |
msgid "FOOTER CODE"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: settings.php:3006
|
4234 |
msgid "Force showing admin toolbar when viewing site"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: settings.php:3013
|
4238 |
msgid "Enable debugging functions in admin toolbar"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: settings.php:3015
|
4242 |
msgid "Debugging functions in admin toolbar"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: settings.php:3022
|
4246 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: settings.php:3024
|
4250 |
msgid "Debugging functions on mobile screens"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
+
#: settings.php:3031
|
4254 |
msgid ""
|
4255 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4256 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4259 |
"administrators debugging is always enabled."
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: settings.php:3033
|
4263 |
msgid "Remote debugging"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: settings.php:3040
|
4267 |
msgid ""
|
4268 |
"Disable translation to see original texts for the settings and messages in "
|
4269 |
"English"
|
4270 |
msgstr ""
|
4271 |
|
4272 |
+
#: settings.php:3042
|
4273 |
msgid "Disable translation"
|
4274 |
msgstr ""
|
4275 |
|
4276 |
+
#: settings.php:3412
|
4277 |
msgid "Available positions for current theme"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
+
#: settings.php:3413
|
4281 |
msgid "Error checking pages"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: settings.php:3416
|
4285 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: settings.php:3416
|
4289 |
msgctxt "Button"
|
4290 |
msgid "Check"
|
4291 |
msgstr ""
|
4292 |
|
4293 |
+
#: settings.php:3423
|
4294 |
msgid "Position"
|
4295 |
msgstr ""
|
4296 |
|
4297 |
+
#: settings.php:3428
|
4298 |
msgid "Archive pages"
|
4299 |
msgstr ""
|
4300 |
|
4301 |
+
#: settings.php:3487
|
4302 |
msgid ""
|
4303 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: settings.php:3490 strings.php:248
|
4307 |
msgid "Position not checked yet"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: settings.php:3526
|
4311 |
msgid "Toggle active/all blocks"
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: settings.php:3530 strings.php:235
|
4315 |
msgid "Rearrange block order"
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: settings.php:3535
|
4319 |
msgid "Save new block order"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: settings.php:3561
|
4323 |
msgid "Toggle active/all ad units"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: settings.php:3565
|
4327 |
msgid "Reload AdSense ad units"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: settings.php:3569
|
4331 |
msgid "Clear authorization to access AdSense account"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: settings.php:3573 settings.php:4426 settings.php:4493 strings.php:243
|
4335 |
msgid "Google AdSense Homepage"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: settings.php:3589
|
4339 |
msgid "Switch to physical ads.txt file"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: settings.php:3590
|
4343 |
msgid "Switch to virtual ads.txt file"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
#. translators: %s: ads.txt
|
4347 |
+
#: settings.php:3600
|
4348 |
msgid "Open %s"
|
4349 |
msgstr ""
|
4350 |
|
4351 |
+
#: settings.php:3608
|
4352 |
msgid "Reload ads.txt file"
|
4353 |
msgstr ""
|
4354 |
|
4355 |
+
#: settings.php:3612 settings.php:4553
|
4356 |
msgid "Save"
|
4357 |
msgstr ""
|
4358 |
|
4359 |
#. translators: %s: Ad Inserter
|
4360 |
+
#: settings.php:3790
|
4361 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: settings.php:3795 settings.php:3815 strings.php:224
|
4365 |
msgid "Warning"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
#. translators: %s: Ad Inserter
|
4369 |
+
#: settings.php:3795
|
4370 |
msgid "%s virtual file ads.txt not found"
|
4371 |
msgstr ""
|
4372 |
|
4373 |
+
#: settings.php:3803
|
4374 |
msgid "IMPORTANT"
|
4375 |
msgstr ""
|
4376 |
|
4377 |
+
#: settings.php:3803
|
4378 |
msgid "ads.txt file must be placed on the root domain"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: settings.php:3808
|
4382 |
msgid "ads.txt file"
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: settings.php:3808
|
4386 |
msgid "NOT WRITABLE"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: settings.php:3815
|
4390 |
msgid "file %s not found"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: settings.php:3825
|
4394 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
#. translators: %s: Ad Inserter
|
4398 |
+
#: settings.php:3831
|
4399 |
msgid "%s virtual ads.txt file"
|
4400 |
msgstr ""
|
4401 |
|
4402 |
+
#: settings.php:3853
|
4403 |
msgid "Advertising system"
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: settings.php:3854
|
4407 |
msgid "Account ID"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: settings.php:3856
|
4411 |
msgid "Certification authority ID"
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: settings.php:3871
|
4415 |
msgid "Account ID found in block and present in ads.txt"
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: settings.php:3875
|
4419 |
msgid "Account ID found in block but not present in ads.txt"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: settings.php:4209
|
4423 |
msgid "Preview block"
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: settings.php:4216
|
4427 |
msgid "Pause block"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: settings.php:4255
|
4431 |
msgid "Automatic insertion"
|
4432 |
msgstr ""
|
4433 |
|
4434 |
#. translators: %s HTML tags
|
4435 |
+
#: settings.php:4256 settings.php:5225
|
4436 |
msgid "PHP code processing"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: settings.php:4258
|
4440 |
msgid "Device detection"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: settings.php:4281
|
4444 |
msgid "No active block"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
+
#: settings.php:4282
|
4448 |
msgid "No block matches search keywords"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: settings.php:4337
|
4452 |
msgid "Ad unit"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
+
#: settings.php:4339
|
4456 |
msgid "Slot ID"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: settings.php:4365
|
4460 |
msgid "Copy AdSense code"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
+
#: settings.php:4368
|
4464 |
msgid "Preview AdSense ad"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
+
#: settings.php:4371
|
4468 |
msgid "Get AdSense code"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
#. translators: %s: HTML tags
|
4472 |
+
#: settings.php:4403
|
4473 |
msgid ""
|
4474 |
"Please %s clear authorization %s with the button %s above and once again "
|
4475 |
"authorize access to your AdSense account."
|
4476 |
msgstr ""
|
4477 |
|
4478 |
+
#: settings.php:4422
|
4479 |
msgid "AdSense Integration"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
+
#: settings.php:4424
|
4483 |
msgid "AdSense Integration - Step 2"
|
4484 |
msgstr ""
|
4485 |
|
4486 |
#. translators: %s: HTML tags
|
4487 |
+
#: settings.php:4430
|
4488 |
msgid ""
|
4489 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4490 |
"Authorization Code %s button to open a new window where you can allow "
|
4493 |
msgstr ""
|
4494 |
|
4495 |
#. translators: %s: HTML tags
|
4496 |
+
#: settings.php:4437
|
4497 |
msgid ""
|
4498 |
"If you get error, can't access ad units or would like to use own Google API "
|
4499 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4501 |
msgstr ""
|
4502 |
|
4503 |
#. translators: %s: HTML tags
|
4504 |
+
#: settings.php:4439
|
4505 |
msgid ""
|
4506 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4507 |
"Authorization Code %s button to open a new window where you can allow "
|
4510 |
msgstr ""
|
4511 |
|
4512 |
#. translators: %s: HTML tags
|
4513 |
+
#: settings.php:4446
|
4514 |
msgid ""
|
4515 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4516 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4517 |
msgstr ""
|
4518 |
|
4519 |
+
#: settings.php:4457
|
4520 |
msgid "Get Authorization Code"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
+
#: settings.php:4460
|
4524 |
msgid "Enter Authorization Code"
|
4525 |
msgstr ""
|
4526 |
|
4527 |
+
#: settings.php:4470
|
4528 |
msgid "Use own API IDs"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: settings.php:4472
|
4532 |
msgid "Clear and return to Step 1"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: settings.php:4476
|
4536 |
msgid "Authorize"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: settings.php:4492
|
4540 |
msgid "AdSense Integration - Step 1"
|
4541 |
msgstr ""
|
4542 |
|
4543 |
#. translators: %s: Ad Inserter
|
4544 |
+
#: settings.php:4496
|
4545 |
msgid ""
|
4546 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4547 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4550 |
msgstr ""
|
4551 |
|
4552 |
#. translators: %s: HTML tags
|
4553 |
+
#: settings.php:4505
|
4554 |
msgid "Go to %s Google APIs and Services console %s"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4558 |
+
#: settings.php:4506
|
4559 |
msgid ""
|
4560 |
"Create %1$s project - if the project and IDs are already created click on "
|
4561 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4562 |
msgstr ""
|
4563 |
|
4564 |
#. translators: %s: HTML tags
|
4565 |
+
#: settings.php:4507
|
4566 |
msgid ""
|
4567 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4568 |
"create a new project"
|
4569 |
msgstr ""
|
4570 |
|
4571 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4572 |
+
#: settings.php:4508
|
4573 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
#. translators: %s: HTML tags
|
4577 |
+
#: settings.php:4509
|
4578 |
msgid ""
|
4579 |
"Click on project selection, wait for the project to be created and then and "
|
4580 |
"select %s as the current project"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
#. translators: %s: HTML tags
|
4584 |
+
#: settings.php:4510
|
4585 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4586 |
msgstr ""
|
4587 |
|
4588 |
#. translators: %s: HTML tags
|
4589 |
+
#: settings.php:4511
|
4590 |
msgid "Search for adsense and enable %s"
|
4591 |
msgstr ""
|
4592 |
|
4593 |
#. translators: %s: HTML tags
|
4594 |
+
#: settings.php:4512
|
4595 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4596 |
msgstr ""
|
4597 |
|
4598 |
#. translators: %s: HTML tags
|
4599 |
+
#: settings.php:4513
|
4600 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4601 |
msgstr ""
|
4602 |
|
4603 |
#. translators: %s: HTML tags
|
4604 |
+
#: settings.php:4514
|
4605 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
#. translators: %s: HTML tags
|
4609 |
+
#: settings.php:4515
|
4610 |
msgid "Click on %s What credentials do I need? %s"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
#. translators: %s: HTML tags
|
4614 |
+
#: settings.php:4516
|
4615 |
msgid ""
|
4616 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4617 |
"Ad Inserter client %s"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
#. translators: %s: HTML tags
|
4621 |
+
#: settings.php:4517
|
4622 |
msgid ""
|
4623 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4624 |
"enter %s"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
#. translators: %s: HTML tags
|
4628 |
+
#: settings.php:4518
|
4629 |
msgid "Click on %s Continue %s"
|
4630 |
msgstr ""
|
4631 |
|
4632 |
#. translators: %s: HTML tags
|
4633 |
+
#: settings.php:4519
|
4634 |
msgid "Click on %s Done %s"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
#. translators: %s: HTML tags
|
4638 |
+
#: settings.php:4520
|
4639 |
msgid ""
|
4640 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4641 |
"secret %s"
|
4642 |
msgstr ""
|
4643 |
|
4644 |
+
#: settings.php:4521
|
4645 |
msgid "Copy them to the appropriate fields below"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
+
#: settings.php:4527
|
4649 |
msgid "Client ID"
|
4650 |
msgstr ""
|
4651 |
|
4652 |
+
#: settings.php:4530
|
4653 |
msgid "Enter Client ID"
|
4654 |
msgstr ""
|
4655 |
|
4656 |
+
#: settings.php:4535
|
4657 |
msgid "Client secret"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
+
#: settings.php:4538
|
4661 |
msgid "Enter Client secret"
|
4662 |
msgstr ""
|
4663 |
|
4664 |
+
#: settings.php:4548
|
4665 |
msgid "Use default API IDs"
|
4666 |
msgstr ""
|
4667 |
|
4668 |
+
#: settings.php:4712
|
4669 |
msgid "All posts"
|
4670 |
msgstr ""
|
4671 |
|
4672 |
+
#: settings.php:4713
|
4673 |
msgid "All static pages"
|
4674 |
msgstr ""
|
4675 |
|
4676 |
+
#: settings.php:4868 settings.php:4881 settings.php:4895 settings.php:4911
|
4677 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4678 |
msgstr ""
|
4679 |
|
4680 |
+
#: settings.php:4873 settings.php:4886 settings.php:4900 settings.php:4916
|
4681 |
+
#: settings.php:5115 settings.php:5117 settings.php:5133 settings.php:5138
|
4682 |
+
#: settings.php:5146 settings.php:5147 settings.php:5150 settings.php:5156
|
4683 |
+
#: settings.php:5166 settings.php:5170
|
4684 |
msgid "Looking for AdSense alternative?"
|
4685 |
msgstr ""
|
4686 |
|
4687 |
+
#: settings.php:4928
|
4688 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4689 |
msgstr ""
|
4690 |
|
4691 |
+
#: settings.php:4933 settings.php:5112 settings.php:5125 settings.php:5153
|
4692 |
+
#: settings.php:5179
|
4693 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4694 |
msgstr ""
|
4695 |
|
4696 |
+
#: settings.php:4954 settings.php:5004
|
4697 |
msgid "Support plugin development"
|
4698 |
msgstr ""
|
4699 |
|
4700 |
+
#: settings.php:4959 settings.php:5005
|
4701 |
msgid ""
|
4702 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4703 |
"reviewing the plugin on WordPres"
|
4704 |
msgstr ""
|
4705 |
|
4706 |
+
#: settings.php:4959
|
4707 |
msgctxt "Review Ad Inserter"
|
4708 |
msgid "Review"
|
4709 |
msgstr ""
|
4710 |
|
4711 |
+
#: settings.php:4964
|
4712 |
msgid ""
|
4713 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4714 |
"rating the plugin on WordPres"
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: settings.php:4964
|
4718 |
msgctxt "Rate Ad Inserter"
|
4719 |
msgid "Rate"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
+
#: settings.php:4969
|
4723 |
msgid ""
|
4724 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4725 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4726 |
"you!"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: settings.php:4969
|
4730 |
msgid "Donate"
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#: settings.php:4976 settings.php:5020
|
4734 |
msgid "Average rating of the plugin - Thank you!"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
#. translators: %s: Ad Inserter, HTML tags
|
4738 |
+
#: settings.php:4987
|
4739 |
msgid ""
|
4740 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4741 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4744 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4745 |
msgstr ""
|
4746 |
|
4747 |
+
#: settings.php:5005
|
4748 |
msgid "Review"
|
4749 |
msgstr ""
|
4750 |
|
4751 |
+
#: settings.php:5009
|
4752 |
msgid "Ad Inserter on Twitter"
|
4753 |
msgstr ""
|
4754 |
|
4755 |
+
#: settings.php:5010
|
4756 |
msgid "Ad Inserter on Facebook"
|
4757 |
msgstr ""
|
4758 |
|
4759 |
+
#: settings.php:5013
|
4760 |
msgid "Follow Ad Inserter"
|
4761 |
msgstr ""
|
4762 |
|
4763 |
#. translators: %s: HTML tags
|
4764 |
+
#: settings.php:5040
|
4765 |
msgid ""
|
4766 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4767 |
"and %s Common Settings %s pages"
|
4768 |
msgstr ""
|
4769 |
|
4770 |
#. translators: %s: HTML tags
|
4771 |
+
#: settings.php:5052
|
4772 |
msgid ""
|
4773 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4774 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4776 |
msgstr ""
|
4777 |
|
4778 |
#. translators: %s: HTML tags
|
4779 |
+
#: settings.php:5073
|
4780 |
msgid ""
|
4781 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4782 |
"purchase you refer to us"
|
4783 |
msgstr ""
|
4784 |
|
4785 |
#. translators: %s: HTML tags
|
4786 |
+
#: settings.php:5080
|
4787 |
msgid ""
|
4788 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4789 |
"diagnose and fix the problem."
|
4790 |
msgstr ""
|
4791 |
|
4792 |
#. translators: %s: HTML tags
|
4793 |
+
#: settings.php:5084
|
4794 |
msgid ""
|
4795 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4796 |
"thread on the %s support forum. %s"
|
4797 |
msgstr ""
|
4798 |
|
4799 |
+
#: settings.php:5110 settings.php:5174 settings.php:5178
|
4800 |
msgid "Code preview with visual CSS editor"
|
4801 |
msgstr ""
|
4802 |
|
4803 |
+
#: settings.php:5114 settings.php:5164
|
4804 |
msgid "A/B testing - Track ad impressions and clicks"
|
4805 |
msgstr ""
|
4806 |
|
4807 |
+
#: settings.php:5129
|
4808 |
msgid "Insert ads on AMP pages"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
+
#: settings.php:5137
|
4812 |
msgid "Ad blocking detection and content protection"
|
4813 |
msgstr ""
|
4814 |
|
4815 |
+
#: settings.php:5187
|
4816 |
msgid "Looking for Pro Ad Management plugin?"
|
4817 |
msgstr ""
|
4818 |
|
4819 |
+
#: settings.php:5188
|
4820 |
msgid "To Optimally Monetize your WordPress website?"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
#. Translators: %s: price of Ad Inserter Pro
|
4824 |
+
#: settings.php:5189
|
4825 |
msgid "Different license types starting from %s"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
#. translators: %s HTML tags
|
4829 |
+
#: settings.php:5192
|
4830 |
msgid "%s AdSense Integration %s"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#. translators: %s HTML tags
|
4834 |
+
#: settings.php:5193
|
4835 |
msgid "Syntax highlighting %s editor %s"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
#. translators: %s HTML tags
|
4839 |
+
#: settings.php:5194
|
4840 |
msgid "%s Code preview %s with visual CSS editor"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
#. translators: %s HTML tags
|
4844 |
+
#: settings.php:5195
|
4845 |
msgid "Simple user interface - all settings on a single page"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
#. translators: %s HTML tags
|
4849 |
+
#: settings.php:5196
|
4850 |
msgid ""
|
4851 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4852 |
"image / excerpt"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
#. translators: %s HTML tags
|
4856 |
+
#: settings.php:5197
|
4857 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
#. translators: %s HTML tags
|
4861 |
+
#: settings.php:5198
|
4862 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
#. translators: %s HTML tags
|
4866 |
+
#: settings.php:5199
|
4867 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
+
#: settings.php:5200
|
4872 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
#. translators: %s HTML tags
|
4876 |
+
#: settings.php:5201
|
4877 |
msgid ""
|
4878 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4879 |
"selectors)"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
#. translators: %s HTML tags
|
4883 |
+
#: settings.php:5202
|
4884 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4885 |
msgstr ""
|
4886 |
|
4887 |
#. translators: %s HTML tags
|
4888 |
+
#: settings.php:5203
|
4889 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4890 |
msgstr ""
|
4891 |
|
4892 |
#. translators: %s HTML tags
|
4893 |
+
#: settings.php:5204
|
4894 |
msgid ""
|
4895 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4896 |
"scrolls)"
|
4897 |
msgstr ""
|
4898 |
|
4899 |
#. translators: %s HTML tags
|
4900 |
+
#: settings.php:5205
|
4901 |
msgid "%s Background ads %s with one or left and right background images"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
#. translators: %s HTML tags
|
4905 |
+
#: settings.php:5206
|
4906 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4907 |
msgstr ""
|
4908 |
|
4909 |
#. translators: %s HTML tags
|
4910 |
+
#: settings.php:5207
|
4911 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4912 |
msgstr ""
|
4913 |
|
4914 |
#. translators: %s HTML tags
|
4915 |
+
#: settings.php:5208
|
4916 |
msgid ""
|
4917 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4918 |
"visible)"
|
4919 |
msgstr ""
|
4920 |
|
4921 |
#. translators: %s HTML tags
|
4922 |
+
#: settings.php:5209
|
4923 |
msgid ""
|
4924 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4925 |
msgstr ""
|
4926 |
|
4927 |
#. translators: %s HTML tags
|
4928 |
+
#: settings.php:5210
|
4929 |
msgid "Block %s alignment and style %s customizations"
|
4930 |
msgstr ""
|
4931 |
|
4932 |
#. translators: %s HTML tags
|
4933 |
+
#: settings.php:5211
|
4934 |
msgid ""
|
4935 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4936 |
"TOS)"
|
4937 |
msgstr ""
|
4938 |
|
4939 |
#. translators: %s HTML tags
|
4940 |
+
#: settings.php:5212
|
4941 |
msgid ""
|
4942 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4943 |
"feeds"
|
4944 |
msgstr ""
|
4945 |
|
4946 |
#. translators: %s HTML tags
|
4947 |
+
#: settings.php:5213
|
4948 |
msgid "%s Ad rotation %s (works also with caching)"
|
4949 |
msgstr ""
|
4950 |
|
4951 |
#. translators: %s HTML tags
|
4952 |
+
#: settings.php:5214
|
4953 |
msgid "Create, edit and check %s ads.txt %s file"
|
4954 |
msgstr ""
|
4955 |
|
4956 |
#. translators: %s HTML tags
|
4957 |
+
#: settings.php:5215
|
4958 |
msgid ""
|
4959 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4960 |
"AdSense)"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
#. translators: %s HTML tags
|
4964 |
+
#: settings.php:5216
|
4965 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4966 |
msgstr ""
|
4967 |
|
4968 |
#. translators: %s HTML tags
|
4969 |
+
#: settings.php:5217
|
4970 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
#. translators: %s HTML tags
|
4974 |
+
#: settings.php:5218
|
4975 |
msgid "Support for %s A/B testing %s"
|
4976 |
msgstr ""
|
4977 |
|
4978 |
#. translators: %s HTML tags
|
4979 |
+
#: settings.php:5219
|
4980 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
#. translators: %s HTML tags
|
4984 |
+
#: settings.php:5220
|
4985 |
msgid "Click fraud %s protection %s"
|
4986 |
msgstr ""
|
4987 |
|
4988 |
#. translators: %s HTML tags
|
4989 |
+
#: settings.php:5221
|
4990 |
msgid "Support for %s lazy loading %s"
|
4991 |
msgstr ""
|
4992 |
|
4993 |
#. translators: %s HTML tags
|
4994 |
+
#: settings.php:5222
|
4995 |
msgid "Support for ads on %s AMP pages %s"
|
4996 |
msgstr ""
|
4997 |
|
4998 |
#. translators: %s HTML tags
|
4999 |
+
#: settings.php:5223
|
5000 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
#. translators: %s HTML tags
|
5004 |
+
#: settings.php:5224
|
5005 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
#. translators: %s HTML tags
|
5009 |
+
#: settings.php:5226
|
5010 |
msgid "%s Banner %s code generator"
|
5011 |
msgstr ""
|
5012 |
|
5013 |
#. translators: %s HTML tags
|
5014 |
+
#: settings.php:5227
|
5015 |
msgid "Support for %s header and footer %s code"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
#. translators: %s HTML tags
|
5019 |
+
#: settings.php:5228
|
5020 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
#. translators: %s HTML tags
|
5024 |
+
#: settings.php:5229
|
5025 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5026 |
msgstr ""
|
5027 |
|
5028 |
#. translators: %s HTML tags
|
5029 |
+
#: settings.php:5230
|
5030 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
#. translators: %s HTML tags
|
5034 |
+
#: settings.php:5231
|
5035 |
msgid ""
|
5036 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5037 |
"protection"
|
5038 |
msgstr ""
|
5039 |
|
5040 |
#. translators: %s HTML tags
|
5041 |
+
#: settings.php:5232
|
5042 |
msgid "%s Ad blocking statistics %s"
|
5043 |
msgstr ""
|
5044 |
|
5045 |
#. translators: %s HTML tags
|
5046 |
+
#: settings.php:5233
|
5047 |
msgid ""
|
5048 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5049 |
"referrers, operating systems, browsers"
|
5050 |
msgstr ""
|
5051 |
|
5052 |
#. translators: %s HTML tags
|
5053 |
+
#: settings.php:5234
|
5054 |
msgid ""
|
5055 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5056 |
msgstr ""
|
5057 |
|
5058 |
#. translators: %s HTML tags
|
5059 |
+
#: settings.php:5235
|
5060 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5061 |
msgstr ""
|
5062 |
|
5063 |
#. translators: %s HTML tags
|
5064 |
+
#: settings.php:5236
|
5065 |
msgid "%s Import/Export %s block or plugin settings"
|
5066 |
msgstr ""
|
5067 |
|
5068 |
#. translators: %s HTML tags
|
5069 |
+
#: settings.php:5237
|
5070 |
msgid "%s Insertion scheduling %s with fallback option"
|
5071 |
msgstr ""
|
5072 |
|
5073 |
#. translators: %s HTML tags
|
5074 |
+
#: settings.php:5238
|
5075 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
#. translators: %s HTML tags
|
5079 |
+
#: settings.php:5239
|
5080 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5081 |
msgstr ""
|
5082 |
|
5083 |
#. translators: %s HTML tags
|
5084 |
+
#: settings.php:5240
|
5085 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
#. translators: %s HTML tags
|
5089 |
+
#: settings.php:5241
|
5090 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
#. translators: %s HTML tags
|
5094 |
+
#: settings.php:5242
|
5095 |
msgid ""
|
5096 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5097 |
msgstr ""
|
5098 |
|
5099 |
#. translators: %s HTML tags
|
5100 |
+
#: settings.php:5243
|
5101 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5102 |
msgstr ""
|
5103 |
|
5104 |
#. translators: %s HTML tags
|
5105 |
+
#: settings.php:5244
|
5106 |
msgid "No ads on the settings page"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
#. translators: %s HTML tags
|
5110 |
+
#: settings.php:5245
|
5111 |
msgid "Premium support"
|
5112 |
msgstr ""
|
5113 |
|
5114 |
#. translators: %s HTML tags
|
5115 |
+
#: settings.php:5248
|
5116 |
msgid ""
|
5117 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5118 |
"website with many advertising features to automatically insert adverts on "
|
5127 |
msgstr ""
|
5128 |
|
5129 |
#. translators: %s HTML tags
|
5130 |
+
#: settings.php:5261
|
5131 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
#. translators: %s HTML tags
|
5135 |
+
#: settings.php:5266
|
5136 |
msgid "Ads between posts"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
#. translators: %s HTML tags
|
5140 |
+
#: settings.php:5267
|
5141 |
msgid "Ads between comments"
|
5142 |
msgstr ""
|
5143 |
|
5144 |
#. translators: %s HTML tags
|
5145 |
+
#: settings.php:5268
|
5146 |
msgid "Support via email"
|
5147 |
msgstr ""
|
5148 |
|
5149 |
#. translators: %s HTML tags
|
5150 |
+
#: settings.php:5274
|
5151 |
msgid "%s Sticky positions %s"
|
5152 |
msgstr ""
|
5153 |
|
5154 |
#. translators: %s HTML tags
|
5155 |
+
#: settings.php:5275
|
5156 |
msgid "%s Limit insertions %s"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
#. translators: %s HTML tags
|
5160 |
+
#: settings.php:5276
|
5161 |
msgid "%s Clearance %s options"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
#. translators: %s HTML tags
|
5165 |
+
#: settings.php:5282
|
5166 |
msgid "Ad rotation"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
#. translators: %s HTML tags
|
5170 |
+
#: settings.php:5283
|
5171 |
msgid "%s A/B testing %s"
|
5172 |
msgstr ""
|
5173 |
|
5174 |
#. translators: %s HTML tags
|
5175 |
+
#: settings.php:5284
|
5176 |
msgid "%s Ad tracking %s"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
#. translators: %s HTML tags
|
5180 |
+
#: settings.php:5290
|
5181 |
msgid "Support for %s AMP pages %s"
|
5182 |
msgstr ""
|
5183 |
|
5184 |
#. translators: %s HTML tags
|
5185 |
+
#: settings.php:5291
|
5186 |
msgid "%s Ad blocking detection %s"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
#. translators: %s HTML tags
|
5190 |
+
#: settings.php:5292
|
5191 |
msgid "%s Mobile device detection %s"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
#. translators: %s HTML tags
|
5195 |
+
#: settings.php:5299
|
5196 |
msgid "64 code blocks"
|
5197 |
msgstr ""
|
5198 |
|
5199 |
#. translators: %s HTML tags
|
5200 |
+
#: settings.php:5300
|
5201 |
msgid "%s GEO targeting %s"
|
5202 |
msgstr ""
|
5203 |
|
5204 |
#. translators: %s HTML tags
|
5205 |
+
#: settings.php:5301
|
5206 |
msgid "%s Scheduling %s"
|
5207 |
msgstr ""
|
5208 |
|
6005 |
msgstr ""
|
6006 |
|
6007 |
#: strings.php:254
|
6008 |
+
msgid "Select or upload background image"
|
6009 |
msgstr ""
|
6010 |
|
6011 |
#: strings.php:255
|
6012 |
+
msgid "Use this image"
|
6013 |
+
msgstr ""
|
6014 |
+
|
6015 |
+
#: strings.php:256
|
6016 |
msgid "Switching to physical ads.txt file will delete virtual ads.txt file."
|
6017 |
msgstr ""
|
6018 |
|
6019 |
+
#: strings.php:258
|
6020 |
msgctxt "Monday"
|
6021 |
msgid "MO"
|
6022 |
msgstr ""
|
6023 |
|
6024 |
+
#: strings.php:259
|
6025 |
msgctxt "Tuesday"
|
6026 |
msgid "TU"
|
6027 |
msgstr ""
|
6028 |
|
6029 |
+
#: strings.php:260
|
6030 |
msgctxt "Wednesday"
|
6031 |
msgid "WE"
|
6032 |
msgstr ""
|
6033 |
|
6034 |
+
#: strings.php:261
|
6035 |
msgctxt "Thursday"
|
6036 |
msgid "TH"
|
6037 |
msgstr ""
|
6038 |
|
6039 |
+
#: strings.php:262
|
6040 |
msgctxt "Friday"
|
6041 |
msgid "FR"
|
6042 |
msgstr ""
|
6043 |
|
6044 |
+
#: strings.php:263
|
6045 |
msgctxt "Saturday"
|
6046 |
msgid "SA"
|
6047 |
msgstr ""
|
6048 |
|
6049 |
+
#: strings.php:264
|
6050 |
msgctxt "Sunday"
|
6051 |
msgid "SU"
|
6052 |
msgstr ""
|
6053 |
|
6054 |
+
#: strings.php:280
|
6055 |
msgctxt "Scheduling"
|
6056 |
msgid "FALLBACK"
|
6057 |
msgstr ""
|
6058 |
|
6059 |
+
#: strings.php:281
|
6060 |
msgid "Automatically placed by AdSense Auto ads code"
|
6061 |
msgstr ""
|
6062 |
|
6063 |
+
#: strings.php:286
|
6064 |
msgid "Add"
|
6065 |
msgstr ""
|
6066 |
|
6067 |
+
#: strings.php:287
|
6068 |
msgctxt "Element"
|
6069 |
msgid "Parent"
|
6070 |
msgstr ""
|
6071 |
|
6072 |
+
#: strings.php:288
|
6073 |
msgid "Cancel element selection"
|
6074 |
msgstr ""
|
6075 |
|
6076 |
+
#: strings.php:289
|
6077 |
msgid "Select parent element"
|
6078 |
msgstr ""
|
6079 |
|
6080 |
+
#: strings.php:290
|
6081 |
msgid "CSS selector"
|
6082 |
msgstr ""
|
6083 |
|
6084 |
+
#: strings.php:291
|
6085 |
msgid "Use current selector"
|
6086 |
msgstr ""
|
6087 |
|
6088 |
+
#: strings.php:292
|
6089 |
msgid "ELEMENT"
|
6090 |
msgstr ""
|
6091 |
|
6092 |
+
#: strings.php:293
|
6093 |
msgid "PATH"
|
6094 |
msgstr ""
|
6095 |
|
6096 |
+
#: strings.php:294
|
6097 |
msgid "SELECTOR"
|
6098 |
msgstr ""
|
6099 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection,
|
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 2.6.
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
@@ -132,7 +132,7 @@ It's all about the [settings](https://adinserter.pro/documentation).
|
|
132 |
* Support for sticky ad bar
|
133 |
* Support for scheduling date and time with fallback option
|
134 |
* Support for ads in iframes
|
135 |
-
*
|
136 |
* Ad blocking statistics
|
137 |
* Multisite options to limit settings on the sites
|
138 |
* Individual post/page exception management
|
@@ -332,6 +332,19 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
332 |
|
333 |
== Changelog ==
|
334 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
= 2.6.8 =
|
336 |
- Added support to disable PHP processing by PHP constant
|
337 |
- Added support to repeat COUNT options
|
@@ -483,6 +496,19 @@ For the changelog of earlier versions, please refer to the separate changelog.tx
|
|
483 |
|
484 |
== Upgrade Notice ==
|
485 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
= 2.6.8 =
|
487 |
Added support to disable PHP processing by PHP constant;
|
488 |
Added support to repeat COUNT options;
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.4
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.6.9
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
132 |
* Support for sticky ad bar
|
133 |
* Support for scheduling date and time with fallback option
|
134 |
* Support for ads in iframes
|
135 |
+
* Anti ad blocking features - replace ads, protect content
|
136 |
* Ad blocking statistics
|
137 |
* Multisite options to limit settings on the sites
|
138 |
* Individual post/page exception management
|
332 |
|
333 |
== Changelog ==
|
334 |
|
335 |
+
= 2.6.9 =
|
336 |
+
- Added option for paragraph counting to search only tag attributes for text
|
337 |
+
- Added option to embed block Javascript code (to be loaded with Ajax calls)
|
338 |
+
- Added support to prevent duplicate insertions when the_content filter is called more than once (experimental)
|
339 |
+
- Added support for the client list to check for partial user agent strings
|
340 |
+
- Added support for check of cookie object properties
|
341 |
+
- Improved ad blocking detection
|
342 |
+
- Viewports no longer need to be in descending width order
|
343 |
+
- Added option to protect inserted block content (Pro only)
|
344 |
+
- Added support for adb scripts path filter hook (Pro only)
|
345 |
+
- Added support to export statistics data to CSV file (Pro only)
|
346 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
347 |
+
|
348 |
= 2.6.8 =
|
349 |
- Added support to disable PHP processing by PHP constant
|
350 |
- Added support to repeat COUNT options
|
496 |
|
497 |
== Upgrade Notice ==
|
498 |
|
499 |
+
= 2.6.9 =
|
500 |
+
Added option for paragraph counting to search only tag attributes for text;
|
501 |
+
Added option to embed block Javascript code (to be loaded with Ajax calls);
|
502 |
+
Added support to prevent duplicate insertions when the_content filter is called more than once (experimental);
|
503 |
+
Added support for the client list to check for partial user agent strings;
|
504 |
+
Added support for check of cookie object properties;
|
505 |
+
Improved ad blocking detection;
|
506 |
+
Viewports no longer need to be in descending width order;
|
507 |
+
Added option to protect inserted block content (Pro only);
|
508 |
+
Added support for adb scripts path filter hook (Pro only);
|
509 |
+
Added support to export statistics data to CSV file (Pro only);
|
510 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
511 |
+
|
512 |
= 2.6.8 =
|
513 |
Added support to disable PHP processing by PHP constant;
|
514 |
Added support to repeat COUNT options;
|
settings.php
CHANGED
@@ -585,6 +585,7 @@ function generate_settings_form (){
|
|
585 |
$obj->get_enable_feed () == AI_ENABLED ||
|
586 |
$obj->get_max_page_blocks_enabled () ||
|
587 |
$obj->get_only_in_the_loop () ||
|
|
|
588 |
$obj->get_disable_caching ();
|
589 |
|
590 |
$word_count_options =
|
@@ -616,7 +617,7 @@ function generate_settings_form (){
|
|
616 |
$adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
|
617 |
|
618 |
$display_options =
|
619 |
-
$obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
|
620 |
$obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
|
621 |
$obj->get_delay_showing () || $obj->get_show_every () ||
|
622 |
$obj->get_iframe ();
|
@@ -649,18 +650,24 @@ function generate_settings_form (){
|
|
649 |
$general_style = '';
|
650 |
|
651 |
$paragraph_counting = $paragraph_settings && (
|
652 |
-
$obj->get_direction_type()
|
653 |
-
$obj->get_paragraph_tags()
|
654 |
-
$obj->get_minimum_paragraph_words()
|
655 |
-
$obj->get_maximum_paragraph_words()
|
656 |
-
$obj->get_paragraph_text_type()
|
657 |
-
$obj->get_paragraph_text()
|
658 |
-
|
659 |
-
$obj->
|
660 |
-
$obj->
|
661 |
-
$obj->
|
662 |
-
$obj->
|
663 |
-
$obj->
|
|
|
|
|
|
|
|
|
|
|
|
|
664 |
);
|
665 |
|
666 |
$paragraph_clearance = $paragraph_settings && (
|
@@ -1476,18 +1483,6 @@ function generate_settings_form (){
|
|
1476 |
<hr style="margin: 0 -8px;" />
|
1477 |
|
1478 |
<div class="max-input" style="margin: 8px 0 0 0;">
|
1479 |
-
<?php
|
1480 |
-
$title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
|
1481 |
-
$elements = get_no_paragraph_counting_inside ();
|
1482 |
-
?>
|
1483 |
-
<span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 1px; white-space: nowrap; padding-right: 8px;">
|
1484 |
-
<input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1485 |
-
<input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
|
1486 |
-
<label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.$elements.' </pre></strong>'); ?></label>
|
1487 |
-
</span>
|
1488 |
-
</div>
|
1489 |
-
|
1490 |
-
<div class="max-input" style="margin: 8px 0 8px 0;">
|
1491 |
<span style="display: table-cell; width: 1px; white-space: nowrap;">
|
1492 |
<select style="margin-bottom: 3px;" name="<?php echo AI_OPTION_COUNT_INSIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_count_inside (); ?>">
|
1493 |
<option value="<?php echo AI_DO_NOT_COUNT; ?>" <?php echo ($obj->get_count_inside () == AI_DO_NOT_COUNT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_COUNT; ?></option>
|
@@ -1505,7 +1500,7 @@ function generate_settings_form (){
|
|
1505 |
type="text" name="<?php echo AI_OPTION_COUNT_INSIDE_ELEMENTS, WP_FORM_FIELD_POSTFIX, $block; ?>"
|
1506 |
default="<?php echo $default->get_count_inside_elements (); ?>"
|
1507 |
value="<?php echo $obj->get_count_inside_elements (); ?>"
|
1508 |
-
size="
|
1509 |
maxlength="50"/>
|
1510 |
</span>
|
1511 |
|
@@ -1532,6 +1527,30 @@ function generate_settings_form (){
|
|
1532 |
</span>
|
1533 |
</div>
|
1534 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1535 |
<hr style="margin: 0 -8px;" />
|
1536 |
|
1537 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
@@ -1699,14 +1718,6 @@ function generate_settings_form (){
|
|
1699 |
<input type="checkbox" name="<?php echo AI_OPTION_CATEGORY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="category-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_cat_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1700 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_cat_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1701 |
</td>
|
1702 |
-
<!-- <td style="padding-right: 7px;">-->
|
1703 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_CATEGORY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="category-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_cat_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_block_cat_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1704 |
-
<!-- <label for="category-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist categories', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1705 |
-
<!-- </td>-->
|
1706 |
-
<!-- <td>-->
|
1707 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_CATEGORY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="category-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_cat_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_ad_block_cat_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1708 |
-
<!-- <label for="category-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist categories', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1709 |
-
<!-- </td>-->
|
1710 |
</tr>
|
1711 |
<tr class="<?php if ($show_cat_list) echo 'list-items'; ?>" style="<?php if (!$show_cat_list) echo ' display: none;'; ?>">
|
1712 |
<td colspan="5">
|
@@ -1730,14 +1741,6 @@ function generate_settings_form (){
|
|
1730 |
<input type="checkbox" name="<?php echo AI_OPTION_TAG_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="tag-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_tag_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1731 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_tag_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1732 |
</td>
|
1733 |
-
<!-- <td style="padding-right: 7px;">-->
|
1734 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_TAG_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="tag-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_tag_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_block_tag_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1735 |
-
<!-- <label for="tag-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist tags', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1736 |
-
<!-- </td>-->
|
1737 |
-
<!-- <td>-->
|
1738 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_TAG_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="tag-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_tag_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_ad_block_tag_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1739 |
-
<!-- <label for="tag-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist tags', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1740 |
-
<!-- </td>-->
|
1741 |
</tr>
|
1742 |
<tr class="<?php if ($show_tag_list) echo 'list-items'; ?>" style="<?php if (!$show_tag_list) echo ' display: none;'; ?>">
|
1743 |
<td colspan="5">
|
@@ -1761,14 +1764,6 @@ function generate_settings_form (){
|
|
1761 |
<input type="checkbox" name="<?php echo AI_OPTION_TAXONOMY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="taxonomy-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_taxonomy_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1762 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_taxonomy_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1763 |
</td>
|
1764 |
-
<!-- <td style="padding-right: 7px;">-->
|
1765 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_TAXONOMY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="taxonomy-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_taxonomy_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_block_taxonomy_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1766 |
-
<!-- <label for="category-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist taxonomies', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1767 |
-
<!-- </td>-->
|
1768 |
-
<!-- <td>-->
|
1769 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_TAXONOMY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="taxonomy-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_ad_block_taxonomy_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_ad_block_taxonomy_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1770 |
-
<!-- <label for="category-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist taxonomies', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1771 |
-
<!-- </td>-->
|
1772 |
</tr>
|
1773 |
<tr class="<?php if ($show_taxonomy_list) echo 'list-items'; ?>" style="<?php if (!$show_taxonomy_list) echo ' display: none;'; ?>">
|
1774 |
<td colspan="5">
|
@@ -1792,14 +1787,6 @@ function generate_settings_form (){
|
|
1792 |
<input type="checkbox" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="id-list-input-<?php echo $block; ?>" <?php if ($obj->get_id_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1793 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_id_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1794 |
</td>
|
1795 |
-
<!-- <td style="padding-right: 7px;">-->
|
1796 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="id-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_id_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_id_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1797 |
-
<!-- <label for="id-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist IDs', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1798 |
-
<!-- </td>-->
|
1799 |
-
<!-- <td>-->
|
1800 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="id-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_id_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_id_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1801 |
-
<!-- <label for="id-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist IDs', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1802 |
-
<!-- </td>-->
|
1803 |
</tr>
|
1804 |
<tr class="<?php if ($show_id_list) echo 'list-items'; ?>" style="<?php if (!$show_id_list) echo ' display: none;'; ?>">
|
1805 |
<td colspan="5">
|
@@ -1823,14 +1810,6 @@ function generate_settings_form (){
|
|
1823 |
<input type="checkbox" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="url-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_url_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1824 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_url_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1825 |
</td>
|
1826 |
-
<!-- <td style="padding-right: 7px;">-->
|
1827 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_url_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_url_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1828 |
-
<!-- <label for="url-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist urls', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1829 |
-
<!-- </td>-->
|
1830 |
-
<!-- <td>-->
|
1831 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_ad_url_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_ad_url_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1832 |
-
<!-- <label for="url-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist urls', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1833 |
-
<!-- </td>-->
|
1834 |
</tr>
|
1835 |
<tr class="<?php if ($show_url_list) echo 'list-items'; ?>" style="<?php if (!$show_url_list) echo ' display: none;'; ?>">
|
1836 |
<td colspan="5">
|
@@ -1854,14 +1833,6 @@ function generate_settings_form (){
|
|
1854 |
<input type="checkbox" name="<?php echo AI_OPTION_URL_PARAMETER_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="url-parameter-list-input-<?php echo $block; ?>" <?php if ($obj->get_url_parameter_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1855 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_url_parameter_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1856 |
</td>
|
1857 |
-
<!-- <td style="padding-right: 7px;">-->
|
1858 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_URL_PARAMETER_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-parameter-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_url_parameter_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_url_parameter_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1859 |
-
<!-- <label for="url-parameter-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist url parameters', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1860 |
-
<!-- </td>-->
|
1861 |
-
<!-- <td>-->
|
1862 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_URL_PARAMETER_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="url-parameter-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_url_parameter_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_url_parameter_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1863 |
-
<!-- <label for="url-parameter-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist url parameters', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1864 |
-
<!-- </td>-->
|
1865 |
</tr>
|
1866 |
<tr class="<?php if ($show_url_parameter_list) echo 'list-items'; ?>" style="<?php if (!$show_url_parameter_list) echo ' display: none;'; ?>">
|
1867 |
<td colspan="5">
|
@@ -1884,14 +1855,6 @@ function generate_settings_form (){
|
|
1884 |
<input type="checkbox" name="<?php echo AI_OPTION_DOMAIN_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="referer-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_domain_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1885 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_domain_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1886 |
</td>
|
1887 |
-
<!-- <td style="padding-right: 7px;">-->
|
1888 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_DOMAIN_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="referer-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_ad_domain_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_ad_domain_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1889 |
-
<!-- <label for="referer-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist referers', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1890 |
-
<!-- </td>-->
|
1891 |
-
<!-- <td>-->
|
1892 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_DOMAIN_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="referer-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_ad_domain_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_ad_domain_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1893 |
-
<!-- <label for="referer-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist referers', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1894 |
-
<!-- </td>-->
|
1895 |
</tr>
|
1896 |
<tr class="<?php if ($show_domain_list) echo 'list-items'; ?>" style="<?php if (!$show_domain_list) echo ' display: none;'; ?>">
|
1897 |
<td colspan="5">
|
@@ -1907,21 +1870,13 @@ function generate_settings_form (){
|
|
1907 |
<button id="client-button-<?php echo $block; ?>" type="button" class='ai-button' title="<?php _e ('Toggle client editor', 'ad-inserter'); ?>"></button>
|
1908 |
</td>
|
1909 |
<td style="padding-right: 7px; width: 92%;">
|
1910 |
-
<input id="client-list-<?php echo $block; ?>" style="width: 100%;" title="<?php _e ('Comma separated names (operating systems, browsers, devices)', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_CLIENT_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_client_list(); ?>" value="<?php echo $client_list; ?>" size="54" maxlength="1500"/>
|
1911 |
</td>
|
1912 |
<td>
|
1913 |
<input type="hidden" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1914 |
<input type="checkbox" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="client-list-input-<?php echo $block; ?>" <?php if ($obj->get_client_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1915 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_client_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1916 |
</td>
|
1917 |
-
<!-- <td style="padding-right: 7px;">-->
|
1918 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="client-blacklist-<?php echo $block; ?>" default="<?php echo $default->get_client_list_type() == AI_BLACK_LIST; ?>" value="<?php echo AI_BLACK_LIST; ?>" <?php if ($obj->get_client_list_type() == AI_BLACK_LIST) echo 'checked '; ?> />-->
|
1919 |
-
<!-- <label for="client-blacklist-<?php echo $block; ?>" title="<?php _e ('Blacklist clients', 'ad-inserter'); ?>"><?php echo AI_TEXT_BLACK_LIST; ?></label>-->
|
1920 |
-
<!-- </td>-->
|
1921 |
-
<!-- <td>-->
|
1922 |
-
<!-- <input type="radio" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" id="client-whitelist-<?php echo $block; ?>" default="<?php echo $default->get_client_list_type() == AI_WHITE_LIST; ?>" value="<?php echo AI_WHITE_LIST; ?>" <?php if ($obj->get_client_list_type() == AI_WHITE_LIST) echo 'checked '; ?> />-->
|
1923 |
-
<!-- <label for="client-whitelist-<?php echo $block; ?>" title="<?php _e ('Whitelist clients', 'ad-inserter'); ?>"><?php echo AI_TEXT_WHITE_LIST; ?></label>-->
|
1924 |
-
<!-- </td>-->
|
1925 |
</tr>
|
1926 |
<tr class="<?php if ($show_client_list) echo 'list-items'; ?>" style="<?php if (!$show_client_list) echo ' display: none;'; ?>">
|
1927 |
<td colspan="5">
|
@@ -2143,16 +2098,25 @@ function generate_settings_form (){
|
|
2143 |
<option value="<?php echo AI_DISPLAY_ADMINISTRATORS; ?>" <?php echo ($obj->get_display_for_users()==AI_DISPLAY_ADMINISTRATORS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_ADMINISTRATORS; ?></option>
|
2144 |
</select>
|
2145 |
</td>
|
2146 |
-
<td title="<?php _e ('Insert block only when WP function in_the_loop () returns true (WP loop is currently active). Might speed up insertion on content pages when the_content filter is called multiple times.', 'ad-inserter'); ?>" >
|
2147 |
-
<
|
2148 |
-
|
2149 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2150 |
</td>
|
2151 |
-
<td style="width:
|
2152 |
<span style="float: right;">
|
2153 |
<input type="hidden" name="<?php echo AI_OPTION_DISABLE_CACHING, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
2154 |
<input id="disable-caching-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISABLE_CACHING, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_disable_caching (); ?>" <?php if ($obj->get_disable_caching () == AI_ENABLED) echo 'checked '; ?> />
|
2155 |
-
<label for="disable-caching-<?php echo $block; ?>"
|
2156 |
</span>
|
2157 |
</td>
|
2158 |
</tr>
|
585 |
$obj->get_enable_feed () == AI_ENABLED ||
|
586 |
$obj->get_max_page_blocks_enabled () ||
|
587 |
$obj->get_only_in_the_loop () ||
|
588 |
+
$obj->get_embed_js_code () ||
|
589 |
$obj->get_disable_caching ();
|
590 |
|
591 |
$word_count_options =
|
617 |
$adb_block_action_active = $obj->get_adb_block_action () != AI_ADB_BLOCK_ACTION_DO_NOTHING;
|
618 |
|
619 |
$display_options =
|
620 |
+
$obj->get_show_label () || $obj->get_lazy_loading () || $obj->get_protected () || $obj->get_manual_loading () != AI_MANUAL_LOADING_DISABLED ||
|
621 |
$obj->get_close_button () || $obj->get_auto_close_time () || $obj->get_stay_closed_time () ||
|
622 |
$obj->get_delay_showing () || $obj->get_show_every () ||
|
623 |
$obj->get_iframe ();
|
650 |
$general_style = '';
|
651 |
|
652 |
$paragraph_counting = $paragraph_settings && (
|
653 |
+
$obj->get_direction_type() != $default->get_direction_type() ||
|
654 |
+
$obj->get_paragraph_tags() != $default->get_paragraph_tags() ||
|
655 |
+
$obj->get_minimum_paragraph_words() != $default->get_minimum_paragraph_words() ||
|
656 |
+
$obj->get_maximum_paragraph_words() != $default->get_maximum_paragraph_words() ||
|
657 |
+
$obj->get_paragraph_text_type() != $default->get_paragraph_text_type() ||
|
658 |
+
$obj->get_paragraph_text() != $default->get_paragraph_text() ||
|
659 |
+
|
660 |
+
$obj->get_count_inside_blockquote() != $default->get_count_inside_blockquote() ||
|
661 |
+
$obj->get_count_inside() != $default->get_count_inside() ||
|
662 |
+
$obj->get_count_inside_elements() != $default->get_count_inside_elements() ||
|
663 |
+
$obj->get_count_inside_elements_contain() != $default->get_count_inside_elements_contain() ||
|
664 |
+
$obj->get_count_inside_elements_text() != $default->get_count_inside_elements_text() ||
|
665 |
+
|
666 |
+
$obj->get_paragraph_number_minimum() != $default->get_paragraph_number_minimum() ||
|
667 |
+
$obj->get_paragraph_number_maximum() != $default->get_paragraph_number_maximum() ||
|
668 |
+
$obj->get_skip_first_paragraphs() != $default->get_skip_first_paragraphs() ||
|
669 |
+
$obj->get_skip_last_paragraphs() != $default->get_skip_last_paragraphs() ||
|
670 |
+
$obj->get_minimum_words_above() != $default->get_minimum_words_above()
|
671 |
);
|
672 |
|
673 |
$paragraph_clearance = $paragraph_settings && (
|
1483 |
<hr style="margin: 0 -8px;" />
|
1484 |
|
1485 |
<div class="max-input" style="margin: 8px 0 0 0;">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1486 |
<span style="display: table-cell; width: 1px; white-space: nowrap;">
|
1487 |
<select style="margin-bottom: 3px;" name="<?php echo AI_OPTION_COUNT_INSIDE, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_count_inside (); ?>">
|
1488 |
<option value="<?php echo AI_DO_NOT_COUNT; ?>" <?php echo ($obj->get_count_inside () == AI_DO_NOT_COUNT) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DO_NOT_COUNT; ?></option>
|
1500 |
type="text" name="<?php echo AI_OPTION_COUNT_INSIDE_ELEMENTS, WP_FORM_FIELD_POSTFIX, $block; ?>"
|
1501 |
default="<?php echo $default->get_count_inside_elements (); ?>"
|
1502 |
value="<?php echo $obj->get_count_inside_elements (); ?>"
|
1503 |
+
size="4"
|
1504 |
maxlength="50"/>
|
1505 |
</span>
|
1506 |
|
1527 |
</span>
|
1528 |
</div>
|
1529 |
|
1530 |
+
<div class="max-input" style="margin: 8px 0 8px 0;">
|
1531 |
+
<span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 80%; white-space: nowrap; padding-right: 8px;">
|
1532 |
+
<input type="hidden" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1533 |
+
<input id="check-only-tag-attr-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_CHECK_ONLY_TAG_ATTRIBUTES, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>" default="<?php echo $default->get_check_only_tag_attributes (); ?>" <?php if ($obj->get_check_only_tag_attributes ()==AI_ENABLED) echo 'checked '; ?> />
|
1534 |
+
<label for="check-only-tag-attr-<?php echo $block; ?>" style="vertical-align: top;" title="<?php _e('If checked it will search for the text only in tag attributes like [[id]], [[class]], [[style]], etc. Otherwise the whole tag including its content will be searched.', 'ad-inserter'); ?>"><?php _e('Check only tag attributes', 'ad-inserter'); ?></label>
|
1535 |
+
</span>
|
1536 |
+
|
1537 |
+
<?php
|
1538 |
+
$title = __('Count also paragraphs inside these elements - defined on general plugin settings page - tab [*] / tab General', 'ad-inserter');
|
1539 |
+
$elements = get_no_paragraph_counting_inside ();
|
1540 |
+
?>
|
1541 |
+
<span style="display: <?php echo $elements == '' ? 'none' : 'table-cell'; ?>; width: 1px; white-space: nowrap;">
|
1542 |
+
<input type="hidden" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1543 |
+
<input id="ignore_blockquote-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_COUNT_INSIDE_BLOCKQUOTE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" title="<?php echo $title; ?>" default="<?php echo $default->get_count_inside_blockquote(); ?>" <?php if ($obj->get_count_inside_blockquote()==AI_ENABLED) echo 'checked '; ?> />
|
1544 |
+
<label for="ignore_blockquote-<?php echo $block; ?>" style="vertical-align: top;" title="<?php echo $title; ?>"><?php /* Translators: %s: HTML tags */ echo sprintf (__('Count inside %s elements', 'ad-inserter'), '<strong><pre style="display: inline;"> '.$elements.' </pre></strong>'); ?></label>
|
1545 |
+
</span>
|
1546 |
+
|
1547 |
+
|
1548 |
+
</div>
|
1549 |
+
|
1550 |
+
<!-- <div class="max-input" style="margin: 8px 0 8px 0;">-->
|
1551 |
+
|
1552 |
+
<!-- </div>-->
|
1553 |
+
|
1554 |
<hr style="margin: 0 -8px;" />
|
1555 |
|
1556 |
<div class="max-input" style="margin: 8px 0 8px 0;">
|
1718 |
<input type="checkbox" name="<?php echo AI_OPTION_CATEGORY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="category-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_cat_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1719 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_cat_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1720 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1721 |
</tr>
|
1722 |
<tr class="<?php if ($show_cat_list) echo 'list-items'; ?>" style="<?php if (!$show_cat_list) echo ' display: none;'; ?>">
|
1723 |
<td colspan="5">
|
1741 |
<input type="checkbox" name="<?php echo AI_OPTION_TAG_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="tag-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_tag_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1742 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_tag_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1743 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1744 |
</tr>
|
1745 |
<tr class="<?php if ($show_tag_list) echo 'list-items'; ?>" style="<?php if (!$show_tag_list) echo ' display: none;'; ?>">
|
1746 |
<td colspan="5">
|
1764 |
<input type="checkbox" name="<?php echo AI_OPTION_TAXONOMY_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="taxonomy-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_block_taxonomy_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1765 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_block_taxonomy_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1766 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1767 |
</tr>
|
1768 |
<tr class="<?php if ($show_taxonomy_list) echo 'list-items'; ?>" style="<?php if (!$show_taxonomy_list) echo ' display: none;'; ?>">
|
1769 |
<td colspan="5">
|
1787 |
<input type="checkbox" name="<?php echo AI_OPTION_ID_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="id-list-input-<?php echo $block; ?>" <?php if ($obj->get_id_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1788 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_id_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1789 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1790 |
</tr>
|
1791 |
<tr class="<?php if ($show_id_list) echo 'list-items'; ?>" style="<?php if (!$show_id_list) echo ' display: none;'; ?>">
|
1792 |
<td colspan="5">
|
1810 |
<input type="checkbox" name="<?php echo AI_OPTION_URL_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="url-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_url_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1811 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_url_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1812 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1813 |
</tr>
|
1814 |
<tr class="<?php if ($show_url_list) echo 'list-items'; ?>" style="<?php if (!$show_url_list) echo ' display: none;'; ?>">
|
1815 |
<td colspan="5">
|
1833 |
<input type="checkbox" name="<?php echo AI_OPTION_URL_PARAMETER_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="url-parameter-list-input-<?php echo $block; ?>" <?php if ($obj->get_url_parameter_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1834 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_url_parameter_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1835 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1836 |
</tr>
|
1837 |
<tr class="<?php if ($show_url_parameter_list) echo 'list-items'; ?>" style="<?php if (!$show_url_parameter_list) echo ' display: none;'; ?>">
|
1838 |
<td colspan="5">
|
1855 |
<input type="checkbox" name="<?php echo AI_OPTION_DOMAIN_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="referer-list-input-<?php echo $block; ?>" <?php if ($obj->get_ad_domain_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1856 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_ad_domain_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1857 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1858 |
</tr>
|
1859 |
<tr class="<?php if ($show_domain_list) echo 'list-items'; ?>" style="<?php if (!$show_domain_list) echo ' display: none;'; ?>">
|
1860 |
<td colspan="5">
|
1870 |
<button id="client-button-<?php echo $block; ?>" type="button" class='ai-button' title="<?php _e ('Toggle client editor', 'ad-inserter'); ?>"></button>
|
1871 |
</td>
|
1872 |
<td style="padding-right: 7px; width: 92%;">
|
1873 |
+
<input id="client-list-<?php echo $block; ?>" class="ai-list-custom" style="width: 100%;" title="<?php _e ('Comma separated names (operating systems, browsers, devices). You can also list partial user agent strings with * (user-agent-start*. *user-agent-pattern*, *user-agent-end)', 'ad-inserter'); ?>" type="text" name="<?php echo AI_OPTION_CLIENT_LIST, WP_FORM_FIELD_POSTFIX, $block; ?>" default="<?php echo $default->get_client_list(); ?>" value="<?php echo $client_list; ?>" size="54" maxlength="1500"/>
|
1874 |
</td>
|
1875 |
<td>
|
1876 |
<input type="hidden" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
1877 |
<input type="checkbox" name="<?php echo AI_OPTION_CLIENT_LIST_TYPE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo AI_BLACK_LIST; ?>" id="client-list-input-<?php echo $block; ?>" <?php if ($obj->get_client_list_type() == AI_WHITE_LIST) echo 'checked '; ?> style="display: none;" />
|
1878 |
<span class="checkbox-button checkbox-list-button dashicons dashicons-<?php echo $obj->get_client_list_type() == AI_BLACK_LIST ? 'no' : 'yes'; ?>" title="<?php _e ('Click to select black or white list', 'ad-inserter'); ?>"></span>
|
1879 |
</td>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1880 |
</tr>
|
1881 |
<tr class="<?php if ($show_client_list) echo 'list-items'; ?>" style="<?php if (!$show_client_list) echo ' display: none;'; ?>">
|
1882 |
<td colspan="5">
|
2098 |
<option value="<?php echo AI_DISPLAY_ADMINISTRATORS; ?>" <?php echo ($obj->get_display_for_users()==AI_DISPLAY_ADMINISTRATORS) ? AD_SELECT_SELECTED : AD_EMPTY_VALUE; ?>><?php echo AI_TEXT_DISPLAY_ADMINISTRATORS; ?></option>
|
2099 |
</select>
|
2100 |
</td>
|
2101 |
+
<td title="<?php _e ('Insert block only when WP function [[in_the_loop ()]] returns true (WP loop is currently active). Might speed up insertion on content pages when [[the_content]] filter hook is called multiple times.', 'ad-inserter'); ?>" >
|
2102 |
+
<span style="margin-left: 10px;">
|
2103 |
+
<input type="hidden" name="<?php echo AI_OPTION_ONLY_IN_THE_LOOP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
2104 |
+
<input id="only-in-the-loop-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_ONLY_IN_THE_LOOP, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_only_in_the_loop (); ?>" <?php if ($obj->get_only_in_the_loop () == AI_ENABLED) echo 'checked '; ?> />
|
2105 |
+
<label for="only-in-the-loop-<?php echo $block; ?>"><?php _e ('Insert only in the loop', 'ad-inserter'); ?></label>
|
2106 |
+
</span>
|
2107 |
+
</td>
|
2108 |
+
<td title="<?php _e ('When enabled, Javascript code (if needed for the blok) will be inserted next to the block HTML code. Otherwise, the Javascript code will be inserted in the page footer. Plugin Javascript functions will still be inserted in the footer.', 'ad-inserter'); ?>">
|
2109 |
+
<span style="margin-left: 10px;">
|
2110 |
+
<input type="hidden" name="<?php echo AI_OPTION_EMBED_JS_CODE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
2111 |
+
<input id="embed-js-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_EMBED_JS_CODE, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_embed_js_code (); ?>" <?php if ($obj->get_embed_js_code () == AI_ENABLED) echo 'checked '; ?> />
|
2112 |
+
<label for="embed-js-<?php echo $block; ?>"><?php _e ('Embed JS code', 'ad-inserter'); ?></label>
|
2113 |
+
</span>
|
2114 |
</td>
|
2115 |
+
<td style="width: 35%" title="<?php _e ('Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins', 'ad-inserter'); ?>">
|
2116 |
<span style="float: right;">
|
2117 |
<input type="hidden" name="<?php echo AI_OPTION_DISABLE_CACHING, WP_FORM_FIELD_POSTFIX, $block; ?>" value="0" />
|
2118 |
<input id="disable-caching-<?php echo $block; ?>" type="checkbox" name="<?php echo AI_OPTION_DISABLE_CACHING, WP_FORM_FIELD_POSTFIX, $block; ?>" value="1" default="<?php echo $default->get_disable_caching (); ?>" <?php if ($obj->get_disable_caching () == AI_ENABLED) echo 'checked '; ?> />
|
2119 |
+
<label for="disable-caching-<?php echo $block; ?>"><?php _e ('Disable caching', 'ad-inserter'); ?></label>
|
2120 |
</span>
|
2121 |
</td>
|
2122 |
</tr>
|
strings.php
CHANGED
@@ -251,6 +251,7 @@ $ai_admin_translations = array (
|
|
251 |
'position_available' => __('Position available', 'ad-inserter'),
|
252 |
'select_header_image' => __('Select or upload header image', 'ad-inserter'),
|
253 |
'select_banner_image' => __('Select or upload banner image', 'ad-inserter'),
|
|
|
254 |
'use_this_image' => __('Use this image', 'ad-inserter'),
|
255 |
'switch_to_physical_ads_txt' => __('Switching to physical ads.txt file will delete virtual ads.txt file.', 'ad-inserter'),
|
256 |
|
251 |
'position_available' => __('Position available', 'ad-inserter'),
|
252 |
'select_header_image' => __('Select or upload header image', 'ad-inserter'),
|
253 |
'select_banner_image' => __('Select or upload banner image', 'ad-inserter'),
|
254 |
+
'select_background_image' => __('Select or upload background image', 'ad-inserter'),
|
255 |
'use_this_image' => __('Use this image', 'ad-inserter'),
|
256 |
'switch_to_physical_ads_txt' => __('Switching to physical ads.txt file will delete virtual ads.txt file.', 'ad-inserter'),
|
257 |
|