Version Description
- Added support to disable caching of block PHP code
- Added support to pause blocks on the blocks list
- Added support for no url parameters list item
- Added support for client-side scheduling (Pro only)
- Added support for server-side scheduling using W3TC (Pro only)
- Added support for multisite:site-id taxonomy list item (Pro only)
- Updated MaxMind GeoLite2 database download using license key (Pro only)
- Changed settings format in the database to prevent export/import issues with MySQL/PhpMyAdmin
- Fix for [ADINSERTER counter] shortcode not expanding inside HTML tags
- 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.2 |
Comparing to | |
See all releases |
Code changes from version 2.6.1 to 2.6.2
- ad-inserter.php +102 -137
- changelog.txt +136 -0
- class.php +150 -133
- constants.php +4 -1
- css/ai-settings.css +10 -1
- includes/js/ai-adb.js +2 -1
- includes/js/ai-adb.min.js +2 -2
- includes/js/ai-errors-footer.js +17 -6
- includes/js/ai-errors-footer.min.js +1 -1
- includes/js/ai-lists.js +110 -23
- includes/js/ai-lists.min.js +10 -8
- includes/js/ai-select.js +22 -22
- includes/js/ai-select.min.js +11 -17
- js/ad-inserter.js +28 -36
- languages/ad-inserter-sl_SI.mo +0 -0
- languages/ad-inserter-sl_SI.po +797 -779
- languages/ad-inserter.pot +795 -777
- readme.txt +26 -275
- settings.php +67 -12
- strings.php +2 -1
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,18 @@ Domain Path: /languages
|
|
15 |
|
16 |
Change Log
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
Ad Inserter 2.6.1 - 2020-01-10
|
19 |
- Fix for errors on the settings page
|
20 |
- Fix for non English characters in ads
|
@@ -1685,7 +1697,7 @@ function ai_init_hook () {
|
|
1685 |
// if ($plugin == $this_plugin) {
|
1686 |
// if (defined ('AI_EXTRACT_GENERATED') && isset ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'])) {
|
1687 |
// $ai_db_options [AI_OPTION_EXTRACT] = $ai_db_options_extract;
|
1688 |
-
//
|
1689 |
// }
|
1690 |
// break;
|
1691 |
// }
|
@@ -1837,6 +1849,10 @@ function ai_admin_remove_scripts ($hook_suffix) {
|
|
1837 |
global $ai_settings_page;
|
1838 |
|
1839 |
if ($hook_suffix == $ai_settings_page) {
|
|
|
|
|
|
|
|
|
1840 |
// Fix for Publisher theme: remove scripts loaded on Ad Inserter admin page
|
1841 |
wp_deregister_script ('ace-editor-script');
|
1842 |
wp_dequeue_script ('publisher-admin');
|
@@ -1978,8 +1994,8 @@ function ai_get_client_side_styles () {
|
|
1978 |
".ai-rotate {position: relative;}\n" .
|
1979 |
".ai-rotate-hidden {visibility: hidden;}\n" .
|
1980 |
".ai-rotate-hidden-2 {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}\n" .
|
1981 |
-
".ai-list-data, .ai-ip-data, .ai-list-block {".AI_ALIGNMENT_CSS_HIDDEN_LIST."}\n";
|
1982 |
-
".ai-list-data, .ai-ip-data {min-width: 1px;}\n";
|
1983 |
"";
|
1984 |
}
|
1985 |
|
@@ -2365,7 +2381,6 @@ function add_footer_inline_scripts () {
|
|
2365 |
ai_set_footer_inline_scripts ();
|
2366 |
|
2367 |
if ($ai_wp_data [AI_FOOTER_INLINE_SCRIPTS]) {
|
2368 |
-
// echo "<span ai-ao></span>\n";
|
2369 |
echo "<script>\n";
|
2370 |
|
2371 |
$client_side_dynamic_blocks = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
|
@@ -2401,55 +2416,7 @@ function add_footer_inline_scripts () {
|
|
2401 |
$jquery_ready_code = explode ("AI_JS_CODE=1", ai_get_js ('ai-wait-jquery', false));
|
2402 |
|
2403 |
echo $jquery_ready_code [0];
|
2404 |
-
|
2405 |
-
// if ($ai_wp_data [AI_FRONTEND_JS_DEBUGGING]) {
|
2406 |
-
// $debug_js_0 = "var ai_debug = typeof ai_debugging !== 'undefined';";
|
2407 |
-
// $debug_js_1 = "if (ai_debug) console.log ('AI jQuery READY');\n";
|
2408 |
-
// $debug_js_2 = "if (ai_debug) console.log ('AI jQuery NOT READY:', ai_jquery_waiting_counter);";
|
2409 |
-
// $debug_js_3 = "else if (ai_debug) console.log ('AI jQuery NOT LOADED');";
|
2410 |
-
// $debug_js_4 = "if (ai_debug) console.log ('AI jQuery LOADING...');\n";
|
2411 |
-
// $debug_js_5 = "if (ai_debug) console.log ('AI jQuery LOADED');\n";
|
2412 |
-
// } else {
|
2413 |
-
// $debug_js_0 = '';
|
2414 |
-
// $debug_js_1 = '';
|
2415 |
-
// $debug_js_2 = '';
|
2416 |
-
// $debug_js_3 = '';
|
2417 |
-
// $debug_js_4 = '';
|
2418 |
-
// $debug_js_5 = '';
|
2419 |
-
// }
|
2420 |
-
|
2421 |
-
// echo "function ai_wait_for_jquery () {
|
2422 |
-
// {$debug_js_0}
|
2423 |
-
|
2424 |
-
// function ai_get_script (url, action) {
|
2425 |
-
// var script = document.createElement ('script');
|
2426 |
-
// script.src = url;
|
2427 |
-
|
2428 |
-
// var head = document.getElementsByTagName ('head')[0],
|
2429 |
-
// done = false;
|
2430 |
-
|
2431 |
-
// // Attach handlers for all browsers
|
2432 |
-
// script.onload = script.onreadystatechange = function () {
|
2433 |
-
// if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) {
|
2434 |
-
// done = true;
|
2435 |
-
// {$debug_js_5}
|
2436 |
-
|
2437 |
-
// if (action) {
|
2438 |
-
// action ();
|
2439 |
-
// }
|
2440 |
-
|
2441 |
-
// script.onload = script.onreadystatechange = null;
|
2442 |
-
// head.removeChild (script);
|
2443 |
-
// };
|
2444 |
-
// };
|
2445 |
-
|
2446 |
-
// head.appendChild (script);
|
2447 |
-
// };
|
2448 |
-
|
2449 |
-
// if (window.jQuery) {
|
2450 |
-
// {$debug_js_1}
|
2451 |
-
//";
|
2452 |
-
} // Wait for jQuery
|
2453 |
|
2454 |
if ($ai_wp_data [AI_STICKY_WIDGETS] && get_sticky_widget_mode() == AI_STICKY_WIDGET_MODE_JS) {
|
2455 |
// echo ai_get_js ('ResizeSensor');
|
@@ -2502,15 +2469,6 @@ function add_footer_inline_scripts () {
|
|
2502 |
echo ai_get_js ('ai-ads');
|
2503 |
}
|
2504 |
|
2505 |
-
// echo "jQuery(window).on ('load', function () {
|
2506 |
-
// setTimeout (function() {
|
2507 |
-
//// var google_auto_placed = jQuery ('.google-auto-placed ins ins iframe');
|
2508 |
-
// var google_auto_placed = jQuery ('.google-auto-placed ins ins ins, .google-auto-placed ins ins iframe');
|
2509 |
-
// google_auto_placed.before ('<section class=\"ai-debug-bar ai-debug-adsense ai-adsense-auto-ads\">' + ai_front.automatically_placed + '</section>');
|
2510 |
-
// }, 50);
|
2511 |
-
//});
|
2512 |
-
|
2513 |
-
//";
|
2514 |
echo ai_get_js ('ai-auto-ads', false);
|
2515 |
}
|
2516 |
|
@@ -2522,10 +2480,6 @@ function add_footer_inline_scripts () {
|
|
2522 |
add_footer_inline_scripts_2 ();
|
2523 |
}
|
2524 |
|
2525 |
-
// if ($ai_wp_data [AI_CLIENT_SIDE_INSERTION] && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2526 |
-
// echo 'setTimeout (function() {Array.prototype.forEach.call (document.querySelectorAll (".ai-viewports"), function (element, index) {ai_insert_code (element);});}, 10);', PHP_EOL;
|
2527 |
-
// }
|
2528 |
-
|
2529 |
if ($ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] != '') {
|
2530 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] = ai_get_js ('ai-errors', false) . $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY];
|
2531 |
|
@@ -2542,27 +2496,6 @@ function add_footer_inline_scripts () {
|
|
2542 |
|
2543 |
// Wait for jQuery - for iframe pages it is always loaded
|
2544 |
if ($wait_for_jquery && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
2545 |
-
// echo "
|
2546 |
-
// } else {
|
2547 |
-
// ai_jquery_waiting_counter ++;
|
2548 |
-
// {$debug_js_2}
|
2549 |
-
// if (ai_jquery_waiting_counter == 4) {
|
2550 |
-
// {$debug_js_4}
|
2551 |
-
// ai_get_script ('", includes_url ('js/jquery/jquery.js'), '?ver=', $wp_version, "', function () {
|
2552 |
-
// ai_get_script ('", includes_url ('js/jquery/jquery-migrate.min.js'), '?ver=', $wp_version, "', null);
|
2553 |
-
// });
|
2554 |
-
//",
|
2555 |
-
// ai_front_translations_code (), "
|
2556 |
-
// }
|
2557 |
-
|
2558 |
-
// if (ai_jquery_waiting_counter < 30) {
|
2559 |
-
// setTimeout (function () {ai_wait_for_jquery ()}, 50);
|
2560 |
-
// } {$debug_js_3}
|
2561 |
-
// }
|
2562 |
-
// }
|
2563 |
-
//ai_jquery_waiting_counter = 0;
|
2564 |
-
//ai_wait_for_jquery ();
|
2565 |
-
//";
|
2566 |
|
2567 |
echo str_replace (array (
|
2568 |
'AI_JS_JQUERY0',
|
@@ -3116,7 +3049,7 @@ function ai_wp_head_hook () {
|
|
3116 |
}
|
3117 |
}
|
3118 |
|
3119 |
-
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0) {
|
3120 |
echo "<script>\n", ai_get_js ('ai-errors-head', false), "</script>\n";
|
3121 |
}
|
3122 |
|
@@ -3538,31 +3471,11 @@ function ai_wp_footer_hook () {
|
|
3538 |
echo get_code_debug_block (' ' . __('Footer code', 'ad-inserter') . ' ' . ($footer->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Footer code', 'ad-inserter')), '...</body>', strlen ($footer_code).' ' . _n('character inserted', 'characters inserted', strlen ($footer_code), 'ad-inserter'), $footer->ai_getCode (), $footer_code);
|
3539 |
}
|
3540 |
|
3541 |
-
if (
|
3542 |
$class_0 = AI_DEBUG_STATUS_CLASS.' status-error';
|
3543 |
$class_1 = AI_DEBUG_STATUS_CLASS.' status-ok';
|
3544 |
$javascript_text = "<section class='ai-js-0 $class_0'>" . __('JAVASCRIPT NOT WORKING', 'ad-inserter') . "</section><section class='ai-js-1 $class_1' style='display: none;'>" . __('NO JAVASCRIPT ERRORS', 'ad-inserter') . "</section><section class='ai-js-2 $class_0' style='display: none;'>" . __('JAVASCRIPT ERRORS', 'ad-inserter') . "</section>";
|
3545 |
|
3546 |
-
// echo "<script>
|
3547 |
-
// jQuery(document).ready(function($) {
|
3548 |
-
// $('body').prepend (\"", $javascript_text, "\");
|
3549 |
-
// $('.ai-js-0').hide ();
|
3550 |
-
// if (ai_js_errors.length != 0) {
|
3551 |
-
// $('.ai-js-2').show ();
|
3552 |
-
// } else {
|
3553 |
-
// $('.ai-js-1').show ();
|
3554 |
-
// }
|
3555 |
-
// });
|
3556 |
-
// </script>\n";
|
3557 |
-
// $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= " jQuery('body').prepend ('<section class=\"ai-js-0 $class_0\">' + ai_front.javascript_not_working + '</section><section class=\"ai-js-1 $class_1\" style=\"display: none;\">' + ai_front.no_javascript_errors + '</section><section class=\"ai-js-2 $class_0\" style=\"display: none;\">' + ai_front.javascript_errors + '</section>');
|
3558 |
-
// jQuery('.ai-js-0').hide ();
|
3559 |
-
// if (ai_js_errors.length != 0) {
|
3560 |
-
// jQuery('.ai-js-2').show ();
|
3561 |
-
// } else {
|
3562 |
-
// jQuery('.ai-js-1').show ();
|
3563 |
-
// }
|
3564 |
-
//";
|
3565 |
-
|
3566 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= str_replace ('AI_HTML_CODE', $javascript_text, ai_get_js ('ai-errors-footer', false));
|
3567 |
|
3568 |
echo $javascript_text, "\n";
|
@@ -3657,6 +3570,8 @@ function ai_amp_footer_hook () {
|
|
3657 |
function ai_write_debug_info ($write_processing_log = false) {
|
3658 |
global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log, $ai_custom_hooks, $version_string, $subversion_string;
|
3659 |
|
|
|
|
|
3660 |
echo sprintf ("%-25s%s", AD_INSERTER_NAME, AD_INSERTER_VERSION);
|
3661 |
if (function_exists ('ai_debug_header')) {
|
3662 |
$ai_option = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='));
|
@@ -3694,7 +3609,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3694 |
(int) ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'][4].$ai_db_options [AI_OPTION_GLOBAL]['VERSION'][5]);
|
3695 |
|
3696 |
echo "\n";
|
3697 |
-
echo "SETTINGS SIZE: ", strlen (serialize (
|
3698 |
echo "SETTINGS TIMESTAMP: ";
|
3699 |
echo isset ($ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP']) ? date ("Y-m-d H:i:s", $ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
|
3700 |
|
@@ -3704,7 +3619,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3704 |
}
|
3705 |
|
3706 |
$extract_source = '';
|
3707 |
-
$saved_settings =
|
3708 |
if (isset ($saved_settings [AI_OPTION_EXTRACT]['VERSION']) && $saved_settings [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
|
3709 |
$saved_extract = $saved_settings [AI_OPTION_EXTRACT];
|
3710 |
$extract_source = 'SAVED SETTINGS';
|
@@ -3960,6 +3875,7 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
3960 |
|
3961 |
$agent = $ai_wp_data [AI_AGENT];
|
3962 |
if (!empty ($ai_wp_data [AI_CLIENTS])) {
|
|
|
3963 |
foreach ($ai_wp_data [AI_CLIENTS] as $client) {
|
3964 |
echo sprintf (" %-23s", $client.':'), $agent->is ($client) ? 'YES' : 'NO', "\n";
|
3965 |
}
|
@@ -4323,7 +4239,10 @@ function ai_write_debug_info ($write_processing_log = false) {
|
|
4323 |
}
|
4324 |
}
|
4325 |
|
|
|
4326 |
|
|
|
|
|
4327 |
}
|
4328 |
|
4329 |
function ai_shutdown_hook () {
|
@@ -4525,12 +4444,30 @@ function option_stripslashes (&$options) {
|
|
4525 |
}
|
4526 |
|
4527 |
// Deprecated
|
4528 |
-
function
|
4529 |
$options = get_option ($option_name);
|
4530 |
option_stripslashes ($options);
|
4531 |
return ($options);
|
4532 |
}
|
4533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4534 |
function ai_load_options () {
|
4535 |
global $ai_db_options, $ai_db_options_multisite, $ai_wp_data;
|
4536 |
|
@@ -4543,9 +4480,15 @@ function ai_load_options () {
|
|
4543 |
|
4544 |
if (is_multisite() && multisite_main_for_all_blogs () && defined ('BLOG_ID_CURRENT_SITE')) {
|
4545 |
$ai_db_options = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
|
|
|
|
|
|
|
|
|
|
|
4546 |
option_stripslashes ($ai_db_options);
|
4547 |
} else {
|
4548 |
-
$ai_db_options =
|
|
|
4549 |
option_stripslashes ($ai_db_options);
|
4550 |
}
|
4551 |
|
@@ -5193,9 +5136,7 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
5193 |
$option == AI_OPTION_HTML_SELECTOR ||
|
5194 |
$option == AI_OPTION_ANIMATION_TRIGGER_VALUE ||
|
5195 |
$option == 'MAIN_CONTENT_ELEMENT') {
|
5196 |
-
// $value = str_replace (array ("\\", "/", "?", "\"", "'", "<", ">", "'", '"'), "", $value);
|
5197 |
$value = str_replace (array ("\\", "/", "?", "\"", "'", "'", '"'), "", $value);
|
5198 |
-
// $value = str_replace (array ("\\", "/", "?"), "", $value);
|
5199 |
$value = esc_html ($value);
|
5200 |
}
|
5201 |
elseif ($option == AI_OPTION_DOMAIN_LIST ||
|
@@ -5225,7 +5166,6 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
5225 |
$option == AI_OPTION_ID_LIST ||
|
5226 |
$option == AI_OPTION_URL_LIST ||
|
5227 |
$option == AI_OPTION_URL_PARAMETER_LIST ||
|
5228 |
-
// $option == AI_OPTION_PARAGRAPH_TEXT_TYPE ||
|
5229 |
$option == AI_OPTION_PARAGRAPH_NUMBER ||
|
5230 |
$option == AI_OPTION_MIN_PARAGRAPHS ||
|
5231 |
$option == AI_OPTION_MAX_PARAGRAPHS ||
|
@@ -5292,6 +5232,12 @@ function filter_option ($option, $value, $delete_escaped_backslashes = true){
|
|
5292 |
$value = str_replace (array ("http://", "https://", ":". "\"", "<", ">", "[", "]"), "", $value);
|
5293 |
$value = esc_html ($value);
|
5294 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
5295 |
|
5296 |
return $value;
|
5297 |
}
|
@@ -6204,6 +6150,9 @@ a.ai-debug-center {text-align: center; cursor: default; font-size: 10px; text-de
|
|
6204 |
.ai-debug-block.ai-debug-lists {border-color: #00c5be; outline-color: #00c5be;}
|
6205 |
.ai-debug-bar.ai-debug-lists {background: #00c5be;}
|
6206 |
|
|
|
|
|
|
|
6207 |
.ai-debug-adb-hidden {visibility: hidden; display: none;}
|
6208 |
.ai-debug-adb-center {text-align: center; font-weight: bold; margin: 0; padding: 4px 0;}
|
6209 |
|
@@ -6333,7 +6282,13 @@ function ai_settings () {
|
|
6333 |
$import_switch_name = AI_OPTION_IMPORT . WP_FORM_FIELD_POSTFIX . '0';
|
6334 |
if (isset ($_POST [$import_switch_name]) && $_POST [$import_switch_name] == "1") {
|
6335 |
// Import Ad Inserter settings
|
6336 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
6337 |
|
6338 |
if ($ai_options === false) {
|
6339 |
// Use saved settings
|
@@ -6584,7 +6539,7 @@ function ai_settings () {
|
|
6584 |
if ($settings_ok) {
|
6585 |
// Generate and save extract
|
6586 |
// Save new options as some function may need new settings
|
6587 |
-
|
6588 |
ai_load_settings ();
|
6589 |
|
6590 |
$ai_options [AI_OPTION_EXTRACT] = ai_generate_extract ($ai_options);
|
@@ -6599,7 +6554,7 @@ function ai_settings () {
|
|
6599 |
update_option (AI_INSTALL_NAME, time ());
|
6600 |
}
|
6601 |
|
6602 |
-
|
6603 |
|
6604 |
update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
|
6605 |
|
@@ -8455,10 +8410,11 @@ function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$fou
|
|
8455 |
$parameter_list = trim ($list);
|
8456 |
$return = $white_list;
|
8457 |
$found = false;
|
|
|
8458 |
|
8459 |
if ($parameter_list == AD_EMPTY_DATA) return true;
|
8460 |
|
8461 |
-
if (
|
8462 |
return !$return;
|
8463 |
}
|
8464 |
|
@@ -8477,10 +8433,14 @@ function check_url_parameter_cookie_list ($list, $white_list, $parameters, &$fou
|
|
8477 |
}
|
8478 |
|
8479 |
foreach ($parameters_listed as $parameter) {
|
8480 |
-
if (
|
|
|
|
|
|
|
8481 |
$parameter_value = explode ("=", $parameter);
|
8482 |
if (array_key_exists ($parameter_value [0], $parameters) && $parameters [$parameter_value [0]] == $parameter_value [1]) return $return;
|
8483 |
-
}
|
|
|
8484 |
}
|
8485 |
|
8486 |
$found = false;
|
@@ -8939,6 +8899,20 @@ function ai_yoast_primary_category () {
|
|
8939 |
return $primary_category;
|
8940 |
}
|
8941 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8942 |
function ai_add_rewrite_rules () {
|
8943 |
if (get_option (AI_ADS_TXT_NAME) !== false) {
|
8944 |
add_rewrite_rule ('ads\.txt', str_replace (home_url () .'/', '', admin_url ('admin-ajax.php?action=ai_ajax&ads-txt=')), 'top');
|
@@ -9107,8 +9081,8 @@ function ai_w3tc_execute_php ($code, &$ai_index, &$ai_fallback) {
|
|
9107 |
preg_match_all ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', $code, $php_codes);
|
9108 |
$html_codes = explode ('[?#?]', preg_replace ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', '[?#?]', $code));
|
9109 |
|
9110 |
-
$initial_ai_index = $ai_index;
|
9111 |
-
$initial_ai_fallback = $ai_fallback;
|
9112 |
|
9113 |
ob_start ();
|
9114 |
|
@@ -9135,23 +9109,14 @@ function ai_w3tc_execute_php ($code, &$ai_index, &$ai_fallback) {
|
|
9135 |
|
9136 |
$html = ob_get_clean();
|
9137 |
|
9138 |
-
if ($
|
9139 |
-
|
9140 |
-
}
|
9141 |
-
|
9142 |
-
if ($ai_index === null && $ai_fallback === initial_ai_fallback) {
|
9143 |
-
$ai_index = $initial_ai_index;
|
9144 |
-
}
|
9145 |
-
|
9146 |
-
if ($ai_fallback === null) {
|
9147 |
-
$ai_fallback = $initial_ai_fallback;
|
9148 |
-
}
|
9149 |
|
9150 |
if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
9151 |
ai_w3tc_log_run (' EXECUTE END' . ' ['.(isset ($ai_fallback) ? $ai_fallback : '') . ',' . (isset ($ai_index) ? $ai_index : '').']');
|
9152 |
}
|
9153 |
|
9154 |
-
|
9155 |
return ($html);
|
9156 |
}
|
9157 |
|
2 |
|
3 |
/*
|
4 |
Plugin Name: Ad Inserter
|
5 |
+
Version: 2.6.2
|
6 |
Description: Ad management with many advanced advertising features to insert ads at optimal positions
|
7 |
Author: Igor Funa
|
8 |
Author URI: http://igorfuna.com/
|
15 |
|
16 |
Change Log
|
17 |
|
18 |
+
Ad Inserter 2.6.2 - 2020-01-20
|
19 |
+
- Added support to disable caching of block PHP code
|
20 |
+
- Added support to pause blocks on the blocks list
|
21 |
+
- Added support for no url parameters list item
|
22 |
+
- Added support for client-side scheduling (Pro only)
|
23 |
+
- Added support for server-side scheduling using W3TC (Pro only)
|
24 |
+
- Added support for multisite:site-id taxonomy list item (Pro only)
|
25 |
+
- Updated MaxMind GeoLite2 database download using license key (Pro only)
|
26 |
+
- Changed settings format in the database to prevent export/import issues with MySQL/PhpMyAdmin
|
27 |
+
- Fix for [ADINSERTER counter] shortcode not expanding inside HTML tags
|
28 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
29 |
+
|
30 |
Ad Inserter 2.6.1 - 2020-01-10
|
31 |
- Fix for errors on the settings page
|
32 |
- Fix for non English characters in ads
|
1697 |
// if ($plugin == $this_plugin) {
|
1698 |
// if (defined ('AI_EXTRACT_GENERATED') && isset ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'])) {
|
1699 |
// $ai_db_options [AI_OPTION_EXTRACT] = $ai_db_options_extract;
|
1700 |
+
// ai_update_option (AI_OPTION_NAME, $ai_db_options);
|
1701 |
// }
|
1702 |
// break;
|
1703 |
// }
|
1849 |
global $ai_settings_page;
|
1850 |
|
1851 |
if ($hook_suffix == $ai_settings_page) {
|
1852 |
+
|
1853 |
+
// Prevent converting emojis to images
|
1854 |
+
remove_action ('admin_print_scripts', 'print_emoji_detection_script');
|
1855 |
+
|
1856 |
// Fix for Publisher theme: remove scripts loaded on Ad Inserter admin page
|
1857 |
wp_deregister_script ('ace-editor-script');
|
1858 |
wp_dequeue_script ('publisher-admin');
|
1994 |
".ai-rotate {position: relative;}\n" .
|
1995 |
".ai-rotate-hidden {visibility: hidden;}\n" .
|
1996 |
".ai-rotate-hidden-2 {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}\n" .
|
1997 |
+
".ai-list-data, .ai-ip-data, .ai-fallback, .ai-list-block {".AI_ALIGNMENT_CSS_HIDDEN_LIST."}\n";
|
1998 |
+
".ai-list-data, .ai-ip-data, .ai-fallback {min-width: 1px;}\n";
|
1999 |
"";
|
2000 |
}
|
2001 |
|
2381 |
ai_set_footer_inline_scripts ();
|
2382 |
|
2383 |
if ($ai_wp_data [AI_FOOTER_INLINE_SCRIPTS]) {
|
|
|
2384 |
echo "<script>\n";
|
2385 |
|
2386 |
$client_side_dynamic_blocks = get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW || get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT;
|
2416 |
$jquery_ready_code = explode ("AI_JS_CODE=1", ai_get_js ('ai-wait-jquery', false));
|
2417 |
|
2418 |
echo $jquery_ready_code [0];
|
2419 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2420 |
|
2421 |
if ($ai_wp_data [AI_STICKY_WIDGETS] && get_sticky_widget_mode() == AI_STICKY_WIDGET_MODE_JS) {
|
2422 |
// echo ai_get_js ('ResizeSensor');
|
2469 |
echo ai_get_js ('ai-ads');
|
2470 |
}
|
2471 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2472 |
echo ai_get_js ('ai-auto-ads', false);
|
2473 |
}
|
2474 |
|
2480 |
add_footer_inline_scripts_2 ();
|
2481 |
}
|
2482 |
|
|
|
|
|
|
|
|
|
2483 |
if ($ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] != '') {
|
2484 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] = ai_get_js ('ai-errors', false) . $ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY];
|
2485 |
|
2496 |
|
2497 |
// Wait for jQuery - for iframe pages it is always loaded
|
2498 |
if ($wait_for_jquery && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2499 |
|
2500 |
echo str_replace (array (
|
2501 |
'AI_JS_JQUERY0',
|
3049 |
}
|
3050 |
}
|
3051 |
|
3052 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 || (isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0)) {
|
3053 |
echo "<script>\n", ai_get_js ('ai-errors-head', false), "</script>\n";
|
3054 |
}
|
3055 |
|
3471 |
echo get_code_debug_block (' ' . __('Footer code', 'ad-inserter') . ' ' . ($footer->get_enable_manual () ? '' : ' ' . _x('DISABLED', 'Footer code', 'ad-inserter')), '...</body>', strlen ($footer_code).' ' . _n('character inserted', 'characters inserted', strlen ($footer_code), 'ad-inserter'), $footer->ai_getCode (), $footer_code);
|
3472 |
}
|
3473 |
|
3474 |
+
if (!get_disable_js_code () && ($ai_wp_data [AI_WP_DEBUGGING] & (AI_DEBUG_POSITIONS | AI_DEBUG_BLOCKS)) != 0 || (isset ($_GET [AI_URL_DEBUG_PROCESSING_FE]) && $_GET [AI_URL_DEBUG_PROCESSING_FE] != 0)) {
|
3475 |
$class_0 = AI_DEBUG_STATUS_CLASS.' status-error';
|
3476 |
$class_1 = AI_DEBUG_STATUS_CLASS.' status-ok';
|
3477 |
$javascript_text = "<section class='ai-js-0 $class_0'>" . __('JAVASCRIPT NOT WORKING', 'ad-inserter') . "</section><section class='ai-js-1 $class_1' style='display: none;'>" . __('NO JAVASCRIPT ERRORS', 'ad-inserter') . "</section><section class='ai-js-2 $class_0' style='display: none;'>" . __('JAVASCRIPT ERRORS', 'ad-inserter') . "</section>";
|
3478 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3479 |
$ai_wp_data [AI_FOOTER_JS_CODE_DOM_READY] .= str_replace ('AI_HTML_CODE', $javascript_text, ai_get_js ('ai-errors-footer', false));
|
3480 |
|
3481 |
echo $javascript_text, "\n";
|
3570 |
function ai_write_debug_info ($write_processing_log = false) {
|
3571 |
global $block_object, $ai_last_time, $ai_total_plugin_time, $ai_total_php_time, $ai_processing_log, $ai_db_options_extract, $ai_wp_data, $ai_db_options, $block_insertion_log, $ai_custom_hooks, $version_string, $subversion_string;
|
3572 |
|
3573 |
+
ob_start ();
|
3574 |
+
|
3575 |
echo sprintf ("%-25s%s", AD_INSERTER_NAME, AD_INSERTER_VERSION);
|
3576 |
if (function_exists ('ai_debug_header')) {
|
3577 |
$ai_option = get_option ('ad_inserter' . '_' . base64_decode ('cHJvX2xpY2Vuc2U='));
|
3609 |
(int) ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'][4].$ai_db_options [AI_OPTION_GLOBAL]['VERSION'][5]);
|
3610 |
|
3611 |
echo "\n";
|
3612 |
+
echo "SETTINGS SIZE: ", strlen (serialize (ai_get_option (AI_OPTION_NAME))), "\n";
|
3613 |
echo "SETTINGS TIMESTAMP: ";
|
3614 |
echo isset ($ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP']) ? date ("Y-m-d H:i:s", $ai_db_options [AI_OPTION_GLOBAL]['TIMESTAMP'] + get_option ('gmt_offset') * 3600) : "", "\n";
|
3615 |
|
3619 |
}
|
3620 |
|
3621 |
$extract_source = '';
|
3622 |
+
$saved_settings = ai_get_option (AI_OPTION_NAME);
|
3623 |
if (isset ($saved_settings [AI_OPTION_EXTRACT]['VERSION']) && $saved_settings [AI_OPTION_EXTRACT]['VERSION'] == $expected_extract_version) {
|
3624 |
$saved_extract = $saved_settings [AI_OPTION_EXTRACT];
|
3625 |
$extract_source = 'SAVED SETTINGS';
|
3875 |
|
3876 |
$agent = $ai_wp_data [AI_AGENT];
|
3877 |
if (!empty ($ai_wp_data [AI_CLIENTS])) {
|
3878 |
+
$ai_wp_data [AI_CLIENTS] = array_unique ($ai_wp_data [AI_CLIENTS]);
|
3879 |
foreach ($ai_wp_data [AI_CLIENTS] as $client) {
|
3880 |
echo sprintf (" %-23s", $client.':'), $agent->is ($client) ? 'YES' : 'NO', "\n";
|
3881 |
}
|
4239 |
}
|
4240 |
}
|
4241 |
|
4242 |
+
$log = ob_get_clean ();
|
4243 |
|
4244 |
+
$log = str_replace (array ('<', '>'), array ('<', '>'), $log);
|
4245 |
+
echo $log;
|
4246 |
}
|
4247 |
|
4248 |
function ai_shutdown_hook () {
|
4444 |
}
|
4445 |
|
4446 |
// Deprecated
|
4447 |
+
function ai_get_old_option ($option_name) {
|
4448 |
$options = get_option ($option_name);
|
4449 |
option_stripslashes ($options);
|
4450 |
return ($options);
|
4451 |
}
|
4452 |
|
4453 |
+
function ai_get_option ($option_name) {
|
4454 |
+
$ai_db_options = get_option ($option_name);
|
4455 |
+
|
4456 |
+
if ($ai_db_options === false) {
|
4457 |
+
return $ai_db_options;
|
4458 |
+
}
|
4459 |
+
|
4460 |
+
if (is_string ($ai_db_options) && substr ($ai_db_options, 0, 4) === ':AI:') {
|
4461 |
+
$ai_db_options = unserialize (base64_decode (substr ($ai_db_options, 4), true));
|
4462 |
+
}
|
4463 |
+
|
4464 |
+
return $ai_db_options;
|
4465 |
+
}
|
4466 |
+
|
4467 |
+
function ai_update_option ($option_name, $value) {
|
4468 |
+
update_option ($option_name, ':AI:'. base64_encode (serialize ($value)));
|
4469 |
+
}
|
4470 |
+
|
4471 |
function ai_load_options () {
|
4472 |
global $ai_db_options, $ai_db_options_multisite, $ai_wp_data;
|
4473 |
|
4480 |
|
4481 |
if (is_multisite() && multisite_main_for_all_blogs () && defined ('BLOG_ID_CURRENT_SITE')) {
|
4482 |
$ai_db_options = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
|
4483 |
+
|
4484 |
+
if (is_string ($ai_db_options) && substr ($ai_db_options, 0, 4) === ':AI:') {
|
4485 |
+
$ai_db_options = unserialize (base64_decode (substr ($ai_db_options, 4), true));
|
4486 |
+
}
|
4487 |
+
|
4488 |
option_stripslashes ($ai_db_options);
|
4489 |
} else {
|
4490 |
+
$ai_db_options = ai_get_option (AI_OPTION_NAME);
|
4491 |
+
|
4492 |
option_stripslashes ($ai_db_options);
|
4493 |
}
|
4494 |
|
5136 |
$option == AI_OPTION_HTML_SELECTOR ||
|
5137 |
$option == AI_OPTION_ANIMATION_TRIGGER_VALUE ||
|
5138 |
$option == 'MAIN_CONTENT_ELEMENT') {
|
|
|
5139 |
$value = str_replace (array ("\\", "/", "?", "\"", "'", "'", '"'), "", $value);
|
|
|
5140 |
$value = esc_html ($value);
|
5141 |
}
|
5142 |
elseif ($option == AI_OPTION_DOMAIN_LIST ||
|
5166 |
$option == AI_OPTION_ID_LIST ||
|
5167 |
$option == AI_OPTION_URL_LIST ||
|
5168 |
$option == AI_OPTION_URL_PARAMETER_LIST ||
|
|
|
5169 |
$option == AI_OPTION_PARAGRAPH_NUMBER ||
|
5170 |
$option == AI_OPTION_MIN_PARAGRAPHS ||
|
5171 |
$option == AI_OPTION_MAX_PARAGRAPHS ||
|
5232 |
$value = str_replace (array ("http://", "https://", ":". "\"", "<", ">", "[", "]"), "", $value);
|
5233 |
$value = esc_html ($value);
|
5234 |
}
|
5235 |
+
elseif (
|
5236 |
+
$option == 'MAXMIND_LICENSE_KEY' ||
|
5237 |
+
$option == 'GEO_DB'
|
5238 |
+
) {
|
5239 |
+
$value = str_replace (array (":". "\"", "<", ">", "[", "]"), "", $value);
|
5240 |
+
}
|
5241 |
|
5242 |
return $value;
|
5243 |
}
|
6150 |
.ai-debug-block.ai-debug-lists {border-color: #00c5be; outline-color: #00c5be;}
|
6151 |
.ai-debug-bar.ai-debug-lists {background: #00c5be;}
|
6152 |
|
6153 |
+
.ai-debug-block.ai-debug-scheduling {border-color: #00c5be; outline-color: #00c5be;}
|
6154 |
+
.ai-debug-bar.ai-debug-scheduling {background: #00c5be;}
|
6155 |
+
|
6156 |
.ai-debug-adb-hidden {visibility: hidden; display: none;}
|
6157 |
.ai-debug-adb-center {text-align: center; font-weight: bold; margin: 0; padding: 4px 0;}
|
6158 |
|
6282 |
$import_switch_name = AI_OPTION_IMPORT . WP_FORM_FIELD_POSTFIX . '0';
|
6283 |
if (isset ($_POST [$import_switch_name]) && $_POST [$import_switch_name] == "1") {
|
6284 |
// Import Ad Inserter settings
|
6285 |
+
|
6286 |
+
$settings = str_replace (array ("\\\""), array ("\""), $_POST ["export_settings_0"]);
|
6287 |
+
// if (substr ($settings, 0, 4) === ':AI:') {
|
6288 |
+
// $settings = substr ($settings, 4);
|
6289 |
+
// }
|
6290 |
+
|
6291 |
+
$ai_options = @unserialize (base64_decode ($settings));
|
6292 |
|
6293 |
if ($ai_options === false) {
|
6294 |
// Use saved settings
|
6539 |
if ($settings_ok) {
|
6540 |
// Generate and save extract
|
6541 |
// Save new options as some function may need new settings
|
6542 |
+
ai_update_option (AI_OPTION_NAME, $ai_options);
|
6543 |
ai_load_settings ();
|
6544 |
|
6545 |
$ai_options [AI_OPTION_EXTRACT] = ai_generate_extract ($ai_options);
|
6554 |
update_option (AI_INSTALL_NAME, time ());
|
6555 |
}
|
6556 |
|
6557 |
+
ai_update_option (AI_OPTION_NAME, $ai_options);
|
6558 |
|
6559 |
update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
|
6560 |
|
8410 |
$parameter_list = trim ($list);
|
8411 |
$return = $white_list;
|
8412 |
$found = false;
|
8413 |
+
$query_string = isset ($_SERVER ['QUERY_STRING']) ? trim ($_SERVER ['QUERY_STRING']) != '' : false;
|
8414 |
|
8415 |
if ($parameter_list == AD_EMPTY_DATA) return true;
|
8416 |
|
8417 |
+
if (count ($parameters) == 0 && strpos ($list, '#') === false) {
|
8418 |
return !$return;
|
8419 |
}
|
8420 |
|
8433 |
}
|
8434 |
|
8435 |
foreach ($parameters_listed as $parameter) {
|
8436 |
+
if ($parameter == '#') {
|
8437 |
+
if (!$query_string) return $return;
|
8438 |
+
}
|
8439 |
+
elseif (strpos ($parameter, "=") !== false) {
|
8440 |
$parameter_value = explode ("=", $parameter);
|
8441 |
if (array_key_exists ($parameter_value [0], $parameters) && $parameters [$parameter_value [0]] == $parameter_value [1]) return $return;
|
8442 |
+
}
|
8443 |
+
else if (array_key_exists ($parameter, $parameters)) return $return;
|
8444 |
}
|
8445 |
|
8446 |
$found = false;
|
8899 |
return $primary_category;
|
8900 |
}
|
8901 |
|
8902 |
+
function ai_is_page_builder () {
|
8903 |
+
// echo $_SERVER ['HTTP_HOST'], ' ', $_SERVER ['REQUEST_URI'], "<br />\n";
|
8904 |
+
// global $ai_wp_data;
|
8905 |
+
// echo $ai_wp_data [AI_WP_PAGE_TYPE], "<br />\n";
|
8906 |
+
|
8907 |
+
// Elemetor
|
8908 |
+
if (class_exists ('Elementor\Plugin') && (\Elementor\Plugin::$instance->editor->is_edit_mode () || \Elementor\Plugin::$instance->preview->is_preview_mode ())) {
|
8909 |
+
return true;
|
8910 |
+
}
|
8911 |
+
|
8912 |
+
return false;
|
8913 |
+
}
|
8914 |
+
|
8915 |
+
|
8916 |
function ai_add_rewrite_rules () {
|
8917 |
if (get_option (AI_ADS_TXT_NAME) !== false) {
|
8918 |
add_rewrite_rule ('ads\.txt', str_replace (home_url () .'/', '', admin_url ('admin-ajax.php?action=ai_ajax&ads-txt=')), 'top');
|
9081 |
preg_match_all ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', $code, $php_codes);
|
9082 |
$html_codes = explode ('[?#?]', preg_replace ('#<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->(.*?)<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->#', '[?#?]', $code));
|
9083 |
|
9084 |
+
// $initial_ai_index = $ai_index;
|
9085 |
+
// $initial_ai_fallback = $ai_fallback;
|
9086 |
|
9087 |
ob_start ();
|
9088 |
|
9109 |
|
9110 |
$html = ob_get_clean();
|
9111 |
|
9112 |
+
// if ($ai_fallback === null) {
|
9113 |
+
// $ai_fallback = $initial_ai_fallback;
|
9114 |
+
// }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9115 |
|
9116 |
if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
9117 |
ai_w3tc_log_run (' EXECUTE END' . ' ['.(isset ($ai_fallback) ? $ai_fallback : '') . ',' . (isset ($ai_index) ? $ai_index : '').']');
|
9118 |
}
|
9119 |
|
|
|
9120 |
return ($html);
|
9121 |
}
|
9122 |
|
changelog.txt
CHANGED
@@ -2,6 +2,142 @@
|
|
2 |
|
3 |
This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
|
4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
= 2.3.21 =
|
6 |
- Added option to force showing admin toolbar when viewing site
|
7 |
- Added additional debugging info for blocks in Ajax requests
|
2 |
|
3 |
This is an archive of older changelog entries. Most recent entries are maintained in readme.txt
|
4 |
|
5 |
+
= 2.4.23 =
|
6 |
+
- Added support to define custom fields with shortocdes
|
7 |
+
- Added support to delay showing ads for specified number of pageviews (Pro only)
|
8 |
+
- Added support to remember closed ad for specified time period (Pro only)
|
9 |
+
- Added support to automatically close ad after specified time period (Pro only)
|
10 |
+
- Fix for false positive ad blocking detection (Pro only)
|
11 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
12 |
+
|
13 |
+
= 2.4.22 =
|
14 |
+
- Fix for remote code execution vulnerability - credit to Wordfence
|
15 |
+
|
16 |
+
= 2.4.21 =
|
17 |
+
- Fix for possible error Class not found (Pro only)
|
18 |
+
|
19 |
+
= 2.4.20 =
|
20 |
+
- Fix for path traversal vulnerability - credit to Wilfried Becard of Synacktiv (https://synacktiv.com)
|
21 |
+
- Fix for block rearrangement issues
|
22 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
23 |
+
|
24 |
+
= 2.4.19 =
|
25 |
+
- Added support for taxonomy for Yoast primary category
|
26 |
+
- Layout changes to accomodate longer translated texts
|
27 |
+
- Fix for escape character not saved in header, footer and ad blocking message code
|
28 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
29 |
+
|
30 |
+
= 2.4.18 =
|
31 |
+
- Added support for full width responsive AdSense code option
|
32 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
33 |
+
|
34 |
+
= 2.4.17 =
|
35 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
36 |
+
|
37 |
+
= 2.4.16 =
|
38 |
+
- Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress
|
39 |
+
- Few minor bug fixes
|
40 |
+
|
41 |
+
= 2.4.15 =
|
42 |
+
- Fix for improved compatibility with other plugins
|
43 |
+
- Few minor bug fixes and cosmetic changes
|
44 |
+
|
45 |
+
= 2.4.14 =
|
46 |
+
- Fix for ROTATE shortcodes with option name identical to block name
|
47 |
+
- Fix for possible conflict with output buffering in other plugins
|
48 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
49 |
+
|
50 |
+
= 2.4.13 =
|
51 |
+
- Added shortcode to disable ad blocking detection code
|
52 |
+
- Added options to disable ad blocking actions for administrators or logged in users
|
53 |
+
- Added option to change PDF report footer (Pro only)
|
54 |
+
- Added support for public ad impression and click reports (Pro only)
|
55 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
56 |
+
|
57 |
+
= 2.4.12 =
|
58 |
+
- Added ads.txt editor
|
59 |
+
- Added option to prevent disabling caching for logged in administrators
|
60 |
+
- Improved compatibility with PHP 7.2
|
61 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
62 |
+
|
63 |
+
= 2.4.11 =
|
64 |
+
- Fix for saving code with slashes
|
65 |
+
- Fix for rotation editor code import
|
66 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
67 |
+
|
68 |
+
= 2.4.10 =
|
69 |
+
- Added support for counter shortcodes
|
70 |
+
- Added support for code separator selection for code preview
|
71 |
+
- Added support for group rotations
|
72 |
+
- Added support for CHECK separator (Pro only)
|
73 |
+
- Added links to test pages for check for available positions
|
74 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
75 |
+
|
76 |
+
= 2.4.9 =
|
77 |
+
- Added support for HEAD separator
|
78 |
+
- Added support for DoubleClick for Publishers (DFP) ads
|
79 |
+
- Added support to generate statistics reports in PDF format (Pro only)
|
80 |
+
- Fix for ad label when using AMP separator
|
81 |
+
- Fix for AdSense code fixed by viewport
|
82 |
+
- Fix for error when checking for available positions
|
83 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
84 |
+
|
85 |
+
= 2.4.8 =
|
86 |
+
- Added support for automatic insertion before/after image
|
87 |
+
- Added support for theme checker for available positions for automatic insertion
|
88 |
+
|
89 |
+
= 2.4.7 =
|
90 |
+
- Fix for lazy loading in Ajax calls (Pro only)
|
91 |
+
- Fix for country list editor (Pro only)
|
92 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
93 |
+
|
94 |
+
= 2.4.6 =
|
95 |
+
- Improved ad blocking detection (detects Firefox content blocking)
|
96 |
+
- Added support for wildcards for referrers (domains)
|
97 |
+
- Added debugging notice when JavaScript errors are detected
|
98 |
+
- Added support to load blocks in iframes (Pro only)
|
99 |
+
- Added geolocation support for country subdivisions and cities (Pro only)
|
100 |
+
- Added option to hide license key on client websites (Pro only)
|
101 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
102 |
+
|
103 |
+
= 2.4.5 =
|
104 |
+
- Added support for AMP WP - Google AMP For WordPress
|
105 |
+
- Added support to individually disable insertions for debugging purposes
|
106 |
+
- Improved HTML element selection tool
|
107 |
+
- Fix for Call to undefined function wp_get_current_user()
|
108 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
109 |
+
|
110 |
+
= 2.4.4 =
|
111 |
+
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
112 |
+
|
113 |
+
= 2.4.3 =
|
114 |
+
- Added support for insertion before/after every N paragraphs (%N)
|
115 |
+
- Added support for i18n
|
116 |
+
- Fix for insertion on admin pages
|
117 |
+
- Fix for client-side cookie check
|
118 |
+
- Fix for loaded styles from other plugins/themes on the settings page
|
119 |
+
- Fix for client-side insertion near HTML elements using :eq selector
|
120 |
+
- Fix for deactivation feedback form not closing
|
121 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
122 |
+
|
123 |
+
= 2.4.2 =
|
124 |
+
- Added support for visual HTML element selection
|
125 |
+
- Fix for client-side insertion inside HTML elements
|
126 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
127 |
+
|
128 |
+
= 2.4.1 =
|
129 |
+
- Added option to insert into HTML element (prepend, append, replace content)
|
130 |
+
- Added option to remove HTML element
|
131 |
+
- Added option to not show deactivation feedback form
|
132 |
+
- Added support for negative relative positions for paragraph counting
|
133 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
134 |
+
|
135 |
+
= 2.4.0 =
|
136 |
+
- Improved code for client-side insertion
|
137 |
+
- Added support for usage tracking
|
138 |
+
- Fix for compatibility with older PHP versions (below 5.4)
|
139 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
140 |
+
|
141 |
= 2.3.21 =
|
142 |
- Added option to force showing admin toolbar when viewing site
|
143 |
- Added additional debugging info for blocks in Ajax requests
|
class.php
CHANGED
@@ -119,9 +119,9 @@ abstract class ai_BaseCodeBlock {
|
|
119 |
// Convert old options
|
120 |
if (empty ($options) && !isset ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'])) {
|
121 |
|
122 |
-
if ($block == "h") $options =
|
123 |
-
elseif ($block == "f") $options =
|
124 |
-
else $options =
|
125 |
|
126 |
if (is_array ($options)) {
|
127 |
|
@@ -479,11 +479,15 @@ abstract class ai_BaseCodeBlock {
|
|
479 |
}
|
480 |
|
481 |
public function empty_code () {
|
482 |
-
global $ai_last_check;
|
483 |
|
484 |
$ai_last_check = AI_CHECK_CODE;
|
485 |
$empty = $this->ai_getCode () == '';
|
486 |
|
|
|
|
|
|
|
|
|
487 |
if ($this->get_automatic_insertion () == AI_AUTOMATIC_INSERTION_INSIDE_HTML_ELEMENT &&
|
488 |
($this->get_inside_element () == AI_HTML_REPLACE_CONTENT ||
|
489 |
$this->get_inside_element () == AI_HTML_REPLACE_ELEMENT)) {
|
@@ -519,7 +523,8 @@ abstract class ai_BaseCodeBlock {
|
|
519 |
|
520 |
if ($obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ())) {
|
521 |
$global_name = 'GENERATED_CODE';
|
522 |
-
|
|
|
523 |
|
524 |
$start_time = microtime (true);
|
525 |
|
@@ -548,7 +553,9 @@ abstract class ai_BaseCodeBlock {
|
|
548 |
} else $code = $processed_code;
|
549 |
|
550 |
// Cache generated code
|
551 |
-
$
|
|
|
|
|
552 |
|
553 |
$ai_total_php_time += microtime (true) - $start_time;
|
554 |
}
|
@@ -2716,13 +2723,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
2716 |
unset ($ai_wp_data [AI_SHORTCODES]['viewport']);
|
2717 |
|
2718 |
$ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $this->number;
|
2719 |
-
$code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode (), true));
|
|
|
2720 |
unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
|
2721 |
}
|
2722 |
}
|
2723 |
|
2724 |
-
|
2725 |
-
|
2726 |
$processed_code .= $code;
|
2727 |
|
2728 |
$this->needs_class = true;
|
@@ -3105,7 +3111,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3105 |
$this->w3tc_code .= 'ai_w3tc_log_run (\'PROCESS ROTATE: \' . $ai_index);';
|
3106 |
}
|
3107 |
|
3108 |
-
$this->w3tc_code .= ' if ($ai_index != 0) {$
|
3109 |
|
3110 |
$this->w3tc_code .= ' if ($ai_enabled) {$groups_marker = base64_decode (\'' . base64_encode ($groups_marker) .
|
3111 |
'\'); global $ai_groups; if (preg_match ($groups_marker, $ai_code, $matches)) {$ai_groups = json_decode (base64_decode ($matches [1])); $ai_code = preg_replace ($groups_marker, \'\', $ai_code);}}';
|
@@ -3180,7 +3186,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3180 |
|
3181 |
$this->w3tc_code .= '$ai_amp_separator = base64_decode (\'' . base64_encode (AD_AMP_SEPARATOR) . '\'); $ai_amp_page = ' . ($ai_wp_data [AI_WP_AMP_PAGE] ? 'true' : 'false') . '; $ai_amp_enabled = ' . $this->get_enable_amp () . ';';
|
3182 |
|
3183 |
-
$this->w3tc_code .= '$
|
3184 |
|
3185 |
// Fix to prevent converting && into && on AMP pages
|
3186 |
// $this->w3tc_code .= 'if (strpos ($ai_code, $ai_amp_separator) !== false) {$codes = explode ($ai_amp_separator, $ai_code); $ai_code = trim ($codes [$ai_amp_page ? 1 : 0]); } else {if ($ai_amp_page && !$ai_amp_enabled) $ai_code = \'\';} $ai_enabled = true;';
|
@@ -3325,35 +3331,23 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3325 |
$clients_raw = trim (str_replace (' ', '', strtolower ($this->get_client_list ())));
|
3326 |
$client_list_type = $this->get_client_list_type ();
|
3327 |
|
3328 |
-
|
3329 |
-
|
3330 |
-
|
3331 |
-
|
3332 |
-
|
3333 |
-
|
3334 |
-
|
3335 |
-
|
3336 |
-
|
3337 |
-
|
|
|
|
|
3338 |
}
|
3339 |
|
3340 |
$url_parameters = base64_encode ($url_parameters_raw);
|
3341 |
-
$referers
|
3342 |
-
$clients
|
3343 |
-
|
3344 |
-
|
3345 |
-
|
3346 |
-
// $url_parameters_raw = trim (str_replace (' ', '', isset ($this->check_url_parameters) ? $this->check_url_parameters : $this->get_url_parameter_list ()));
|
3347 |
-
// $url_parameters = base64_encode ($url_parameters_raw);
|
3348 |
-
// $url_parameter_list_type = isset ($this->check_url_parameter_list_type) ? $this->check_url_parameter_list_type : $this->get_url_parameter_list_type ();
|
3349 |
-
|
3350 |
-
// $referers_raw = trim (str_replace (' ', '', strtolower (isset ($this->check_referers) ? $this->check_referers : $this->get_ad_domain_list ())));
|
3351 |
-
// $referers = base64_encode ($referers_raw);
|
3352 |
-
// $referer_list_type = isset ($this->check_referers_list_type) ? $this->check_referers_list_type : $this->get_ad_domain_list_type ();
|
3353 |
-
|
3354 |
-
// $clients_raw = trim (str_replace (' ', '', strtolower (isset ($this->check_clients) ? $this->check_clients : $this->get_client_list ())));
|
3355 |
-
// $clients = base64_encode ($clients_raw);
|
3356 |
-
// $client_list_type = isset ($this->check_client_list_type) ? $this->check_clients_list_type : $this->get_client_list_type ();
|
3357 |
|
3358 |
if (($this->client_side_cookie_check && $url_parameters != '') || $referers != '' || $clients != '' || $scheduling_type !== null) {
|
3359 |
switch ($dynamic_blocks) {
|
@@ -3362,10 +3356,40 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3362 |
if ($url_parameter_list_type == AI_BLACK_LIST) $url_parameter_list_type = 'B'; else $url_parameter_list_type = 'W';
|
3363 |
if ($referer_list_type == AI_BLACK_LIST) $referer_list_type = 'B'; else $referer_list_type = 'W';
|
3364 |
if ($client_list_type == AI_BLACK_LIST) $client_list_type = 'B'; else $client_list_type = 'W';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3365 |
|
3366 |
-
if ($this->client_side_cookie_check && $url_parameters != '') $url_parameter_attributes = "parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
|
3367 |
-
if ( $referers != '') $referer_attributes = "referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
|
3368 |
-
if ( $clients != '') $client_attributes = "client-list='$clients' client-list-type='$client_list_type'"; else $client_attributes = '';
|
3369 |
|
3370 |
// Deprecated
|
3371 |
$this->client_side_list_detection = true;
|
@@ -3375,20 +3399,21 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3375 |
|
3376 |
switch ($dynamic_blocks) {
|
3377 |
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
|
3378 |
-
|
3379 |
-
|
3380 |
-
|
3381 |
-
|
|
|
3382 |
break;
|
3383 |
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
|
3384 |
-
$code_data = "data-code='".base64_encode ($processed_code)."'";
|
3385 |
|
3386 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
3387 |
$block_id = 'ai-list-' . $this->number . '-' . rand (1000, 9999) . rand (1000, 9999);
|
3388 |
$list_class = ' ' . $block_id ;
|
3389 |
} else $list_class = '';
|
3390 |
|
3391 |
-
$processed_code = "\n<div class='ai-dynamic{$list_class} ai-list-data'
|
3392 |
|
3393 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3394 |
$processed_code .= "<script>var ai_block_div = jQuery ('.{$block_id}'); ai_process_lists (ai_block_div); ai_block_div.removeClass ('{$block_id}');</script>\n";
|
@@ -3398,6 +3423,14 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3398 |
}
|
3399 |
|
3400 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3401 |
// translators: %s: list parameters and type
|
3402 |
if ($this->client_side_cookie_check && ($url_parameters != '')) $url_parameter_attributes_dbg = sprintf (__ ("parameters='%s' type='%s'", 'ad-inserter'), $url_parameters_raw, $url_parameter_list_type); else $url_parameter_attributes_dbg = '';
|
3403 |
// translators: %s: list parameters and type
|
@@ -3405,10 +3438,12 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3405 |
// translators: %s: list parameters and type
|
3406 |
if ( $clients != '') $client_attributes_dbg = sprintf (__ ("clients='%s' type='%s'", 'ad-inserter'), $clients_raw, $client_list_type); else $client_attributes_dbg = '';
|
3407 |
|
3408 |
-
$
|
3409 |
-
|
|
|
3410 |
|
3411 |
-
|
|
|
3412 |
}
|
3413 |
|
3414 |
break;
|
@@ -3417,7 +3452,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3417 |
$this->w3tc_debug []= 'PROCESS LISTS';
|
3418 |
}
|
3419 |
|
3420 |
-
// if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
|
3421 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3422 |
|
3423 |
if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
@@ -3479,9 +3513,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3479 |
|
3480 |
if ($fallback_obj->get_tracking ()) {
|
3481 |
$fallback_tracking_block = $fallback_block;
|
3482 |
-
} else $fallback_tracking_block =
|
3483 |
|
3484 |
-
$fallback_code = ' if (!$ai_enabled) {'.$w3tc_fallback_status.' $ai_enabled = true; $ai_index = 0; $ai_fallback = '.$fallback_tracking_block.'; $ai_code = ai_w3tc_execute_php (base64_decode (\''. $fallback_block_code . '\'), $ai_index, $ai_fallback);}';
|
3485 |
} else $fallback_code = '';
|
3486 |
|
3487 |
$this->w3tc_code .= ' if ($ai_enabled) {$ai_enabled = check_scheduling_time (base64_decode (\''. $scheduling_start_time.'\'), base64_decode (\''.$scheduling_end_time.'\'), base64_decode (\''.$scheduling_days_in_week.'\'), '.($scheduling_type == AI_SCHEDULING_BETWEEN_DATES ? 'true':'false').');' . $w3tc_status . $fallback_code . '};';
|
@@ -3588,7 +3622,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3588 |
$this->w3tc_debug []= 'PROCESS IP ADDRESSES';
|
3589 |
}
|
3590 |
|
3591 |
-
// if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
|
3592 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3593 |
|
3594 |
$this->w3tc_code .= ' require_once \''.AD_INSERTER_PLUGIN_DIR.'includes/geo/Ip2Country.php\';';
|
@@ -3758,7 +3791,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3758 |
$w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
|
3759 |
} else $w3tc_status = '';
|
3760 |
|
3761 |
-
// if ($this->w3tc_code == '') $this->w3tc_code = '$ai_code = base64_decode (\''.base64_encode ($processed_code).'\'); $ai_index = 0; $ai_enabled = true;';
|
3762 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3763 |
|
3764 |
$this->w3tc_code .= $ai_check_block_w3tc_code;
|
@@ -3799,6 +3831,8 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3799 |
// } while (is_array ($this->check_codes) && isset ($this->check_codes [$this->check_codes_index + 1]));
|
3800 |
|
3801 |
|
|
|
|
|
3802 |
if (defined ('AI_DEBUGGING_DEMO') && !$this->demo_debugging) {
|
3803 |
$this->hide_debug_labels = true;
|
3804 |
}
|
@@ -3884,7 +3918,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3884 |
|
3885 |
$w3tc = $this->w3tc_code != '' && get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC');
|
3886 |
|
3887 |
-
if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING || $code_only || $this->check_code_empty)
|
|
|
|
|
3888 |
|
3889 |
// Prevent empty wrapping div on AMP pages
|
3890 |
if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
@@ -3912,51 +3948,35 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3912 |
$classes [] = 'ai-close';
|
3913 |
}
|
3914 |
|
3915 |
-
|
3916 |
-
// if ($block_object [$this->fallback]->get_tracking () && $not_iframe_or_inside) {
|
3917 |
-
// $classes [] = 'ai-track';
|
3918 |
-
// }
|
3919 |
-
// } else {
|
3920 |
-
// if ($this->get_tracking () && $not_iframe_or_inside) {
|
3921 |
-
// $classes [] = 'ai-track';
|
3922 |
-
// }
|
3923 |
-
// }
|
3924 |
-
|
3925 |
$tracking_code_pre = '';
|
3926 |
$tracking_code_data = '';
|
3927 |
$tracking_code_post = '';
|
3928 |
$tracking_code = '';
|
3929 |
|
3930 |
-
// if ($this->fallback != 0) {
|
3931 |
-
// if ($block_object [$this->fallback]->get_tracking () && $not_iframe_or_inside) {
|
3932 |
-
// $tracking_block = $this->fallback;
|
3933 |
-
// $tracking_code_pre = " data-ai='";
|
3934 |
-
// $tracking_code_data = "[{$this->fallback},{$this->code_version},\"{$block_object [$this->fallback]->get_ad_name ()}\",\"{$this->version_name}\"]";
|
3935 |
-
// $tracking_code_post = "'";
|
3936 |
-
|
3937 |
-
// $tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
3938 |
-
// }
|
3939 |
-
// } else {
|
3940 |
-
// if ($this->get_tracking () && $not_iframe_or_inside) {
|
3941 |
-
// $tracking_block = $this->number;
|
3942 |
-
// $tracking_code_pre = " data-ai='";
|
3943 |
-
// $tracking_code_data = "[{$this->number},{$this->code_version},\"{$this->get_ad_name ()}\",\"{$this->version_name}\"]";
|
3944 |
-
// $tracking_code_post = "'";
|
3945 |
-
|
3946 |
-
// $tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
3947 |
-
// }
|
3948 |
-
// }
|
3949 |
-
|
3950 |
if ($not_iframe_or_inside) {
|
3951 |
-
|
|
|
3952 |
$classes [] = 'ai-track';
|
3953 |
-
|
|
|
|
|
3954 |
|
3955 |
$tracking_code_pre = " data-ai='";
|
3956 |
-
$tracking_code_data =
|
3957 |
$tracking_code_post = "'";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3958 |
|
3959 |
-
|
|
|
3960 |
}
|
3961 |
elseif ($this->get_tracking ()) {
|
3962 |
$classes [] = 'ai-track';
|
@@ -3968,14 +3988,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3968 |
|
3969 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
3970 |
}
|
3971 |
-
|
3972 |
-
if ($w3tc) {
|
3973 |
-
if ($this->get_tracking () || ($this->fallback != 0 && $block_object [$this->fallback]->get_tracking ())) {
|
3974 |
-
$classes [] = 'ai-track';
|
3975 |
-
|
3976 |
-
$tracking_code_data = '[#AI_DATA#]';
|
3977 |
-
}
|
3978 |
-
}
|
3979 |
}
|
3980 |
|
3981 |
$classes = array_unique ($classes);
|
@@ -3988,8 +4000,6 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
3988 |
} else $class = "";
|
3989 |
|
3990 |
if ($w3tc) {
|
3991 |
-
// if ($this->get_tracking () && $not_iframe_or_inside) $tracking_code_data = '[#AI_DATA#]';
|
3992 |
-
|
3993 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
3994 |
$wrapper_before = $this->hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . ">\n";
|
3995 |
} else {
|
@@ -4012,15 +4022,9 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4012 |
$wrapper_before .= $this->additional_code_before;
|
4013 |
$wrapper_after = $this->additional_code_after . $wrapper_after;
|
4014 |
|
4015 |
-
$this->w3tc_code .= '
|
4016 |
-
|
4017 |
-
|
4018 |
-
// $this->w3tc_code = $this->w3tc_fallback_code . ' $ai_code2 = $ai_enabled ? $ai_code : "";' . $this->w3tc_code . ' $ai_code = str_replace ("[#AI_CODE2#]", $ai_code2, $ai_code);';
|
4019 |
-
// }
|
4020 |
-
|
4021 |
-
// $code = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
4022 |
-
// $code .= $this->w3tc_code . ' if ($ai_enabled) echo $ai_code;';
|
4023 |
-
// $code .= '<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
4024 |
|
4025 |
$code = $this->generate_html_from_w3tc_code ();
|
4026 |
} else {
|
@@ -4038,23 +4042,7 @@ abstract class ai_CodeBlock extends ai_BaseCodeBlock {
|
|
4038 |
|
4039 |
$wrapper_after = "</div>\n";
|
4040 |
|
4041 |
-
$
|
4042 |
-
|
4043 |
-
// if ($this->w3tc_fallback_code != '') {
|
4044 |
-
// if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
4045 |
-
// $this->w3tc_debug []= 'PROCESS FALLBACK BLOCK';
|
4046 |
-
// }
|
4047 |
-
|
4048 |
-
// $this->before_w3tc_fallback_code = $wrapped_code;
|
4049 |
-
|
4050 |
-
// $code2 = '<!-- mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
4051 |
-
// $code2 .= $this->w3tc_fallback_code .' if ($ai_enabled) echo $ai_code;';
|
4052 |
-
// $code2 .= '<!-- /mfunc '.W3TC_DYNAMIC_SECURITY.' -->';
|
4053 |
-
|
4054 |
-
// $code = str_replace ("[#AI_CODE2#]", $code2, $code);
|
4055 |
-
// }
|
4056 |
-
|
4057 |
-
$code = $wrapped_code;
|
4058 |
}
|
4059 |
|
4060 |
return $code;
|
@@ -6760,6 +6748,13 @@ echo '</body>
|
|
6760 |
$primary_category = explode (':', $taxonomy_disabled);
|
6761 |
if ($primary_category [1] == ai_yoast_primary_category ()) return false;
|
6762 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6763 |
|
6764 |
foreach ($taxonomy_names as $taxonomy_name) {
|
6765 |
$terms = get_the_terms (0, $taxonomy_name);
|
@@ -6820,6 +6815,13 @@ echo '</body>
|
|
6820 |
$primary_category = explode (':', $taxonomy_enabled);
|
6821 |
if ($primary_category [1] == ai_yoast_primary_category ()) return true;
|
6822 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6823 |
|
6824 |
foreach ($taxonomy_names as $taxonomy_name) {
|
6825 |
$terms = get_the_terms (0, $taxonomy_name);
|
@@ -6939,6 +6941,7 @@ echo '</body>
|
|
6939 |
}
|
6940 |
|
6941 |
function check_scheduling ($server_side_check) {
|
|
|
6942 |
|
6943 |
switch ($this->get_scheduling()) {
|
6944 |
case AI_SCHEDULING_OFF:
|
@@ -6972,7 +6975,7 @@ echo '</body>
|
|
6972 |
case AI_SCHEDULING_BETWEEN_DATES:
|
6973 |
if (!function_exists ('ai_scheduling_options')) return true;
|
6974 |
|
6975 |
-
|
6976 |
|
6977 |
$start_time = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
|
6978 |
$end_time = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
|
@@ -6981,11 +6984,18 @@ echo '</body>
|
|
6981 |
$insertion_enabled = check_scheduling_time ($start_time, $end_time, $days_in_week, true);
|
6982 |
|
6983 |
if (!$insertion_enabled) {
|
|
|
|
|
6984 |
$fallback = intval ($this->get_fallback());
|
6985 |
-
if ($fallback != $this->number && $fallback != 0 && $fallback <= 96) {
|
6986 |
-
$
|
6987 |
-
|
|
|
|
|
|
|
6988 |
}
|
|
|
|
|
6989 |
}
|
6990 |
|
6991 |
return ($insertion_enabled);
|
@@ -6994,7 +7004,7 @@ echo '</body>
|
|
6994 |
case AI_SCHEDULING_OUTSIDE_DATES:
|
6995 |
if (!function_exists ('ai_scheduling_options')) return true;
|
6996 |
|
6997 |
-
|
6998 |
|
6999 |
$start_time = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
|
7000 |
$end_time = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
|
@@ -7003,11 +7013,18 @@ echo '</body>
|
|
7003 |
$insertion_enabled = check_scheduling_time ($start_time, $end_time, $days_in_week, false);
|
7004 |
|
7005 |
if (!$insertion_enabled) {
|
|
|
|
|
7006 |
$fallback = intval ($this->get_fallback());
|
7007 |
-
if ($fallback != $this->number && $fallback != 0 && $fallback <= 96) {
|
7008 |
-
$
|
7009 |
-
|
|
|
|
|
|
|
7010 |
}
|
|
|
|
|
7011 |
}
|
7012 |
|
7013 |
return ($insertion_enabled);
|
119 |
// Convert old options
|
120 |
if (empty ($options) && !isset ($ai_db_options [AI_OPTION_GLOBAL]['VERSION'])) {
|
121 |
|
122 |
+
if ($block == "h") $options = ai_get_old_option (str_replace ("#", "Header", AD_ADx_OPTIONS));
|
123 |
+
elseif ($block == "f") $options = ai_get_old_option (str_replace ("#", "Footer", AD_ADx_OPTIONS));
|
124 |
+
else $options = ai_get_old_option (str_replace ("#", $block, AD_ADx_OPTIONS));
|
125 |
|
126 |
if (is_array ($options)) {
|
127 |
|
479 |
}
|
480 |
|
481 |
public function empty_code () {
|
482 |
+
global $ai_last_check, $ai_wp_data;
|
483 |
|
484 |
$ai_last_check = AI_CHECK_CODE;
|
485 |
$empty = $this->ai_getCode () == '';
|
486 |
|
487 |
+
if (isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) && !$ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) {
|
488 |
+
return false;
|
489 |
+
}
|
490 |
+
|
491 |
if ($this->get_automatic_insertion () == AI_AUTOMATIC_INSERTION_INSIDE_HTML_ELEMENT &&
|
492 |
($this->get_inside_element () == AI_HTML_REPLACE_CONTENT ||
|
493 |
$this->get_inside_element () == AI_HTML_REPLACE_ELEMENT)) {
|
523 |
|
524 |
if ($obj->get_process_php () && !get_disable_php_processing () && (!is_multisite() || is_main_site () || multisite_php_processing ())) {
|
525 |
$global_name = 'GENERATED_CODE';
|
526 |
+
|
527 |
+
if (isset ($obj->wp_options [$global_name]) && (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number])) return $obj->wp_options [$global_name];
|
528 |
|
529 |
$start_time = microtime (true);
|
530 |
|
553 |
} else $code = $processed_code;
|
554 |
|
555 |
// Cache generated code
|
556 |
+
if (!isset ($ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) || $ai_wp_data [AI_BLOCK_PHP_CODE_CACHING][$this->number]) {
|
557 |
+
$obj->wp_options [$global_name] = $code;
|
558 |
+
}
|
559 |
|
560 |
$ai_total_php_time += microtime (true) - $start_time;
|
561 |
}
|
2723 |
unset ($ai_wp_data [AI_SHORTCODES]['viewport']);
|
2724 |
|
2725 |
$ai_wp_data ['AI_CURRENT_BLOCK_NUMBER'] = $this->number;
|
2726 |
+
// $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"]'>
|
2727 |
+
$code = $this->replace_ai_tags (do_shortcode ($this->ai_getCode ()));
|
2728 |
unset ($ai_wp_data ['AI_CURRENT_BLOCK_NUMBER']);
|
2729 |
}
|
2730 |
}
|
2731 |
|
|
|
|
|
2732 |
$processed_code .= $code;
|
2733 |
|
2734 |
$this->needs_class = true;
|
3111 |
$this->w3tc_code .= 'ai_w3tc_log_run (\'PROCESS ROTATE: \' . $ai_index);';
|
3112 |
}
|
3113 |
|
3114 |
+
$this->w3tc_code .= ' if ($ai_index != 0) {$ai_dummy1 = $ai_dummy2 = null; $ai_code = ai_w3tc_execute_php ($ai_code [$ai_index - 1], $ai_dummy1, $ai_dummy2); $ai_enabled = true;} else {$ai_code = \'\'; $ai_enabled = false;}';
|
3115 |
|
3116 |
$this->w3tc_code .= ' if ($ai_enabled) {$groups_marker = base64_decode (\'' . base64_encode ($groups_marker) .
|
3117 |
'\'); global $ai_groups; if (preg_match ($groups_marker, $ai_code, $matches)) {$ai_groups = json_decode (base64_decode ($matches [1])); $ai_code = preg_replace ($groups_marker, \'\', $ai_code);}}';
|
3186 |
|
3187 |
$this->w3tc_code .= '$ai_amp_separator = base64_decode (\'' . base64_encode (AD_AMP_SEPARATOR) . '\'); $ai_amp_page = ' . ($ai_wp_data [AI_WP_AMP_PAGE] ? 'true' : 'false') . '; $ai_amp_enabled = ' . $this->get_enable_amp () . ';';
|
3188 |
|
3189 |
+
$this->w3tc_code .= '$ai_dummy1 = $ai_dummy2 = null; $ai_code = ai_w3tc_execute_php ($ai_code, $ai_dummy1, $ai_dummy2);';
|
3190 |
|
3191 |
// Fix to prevent converting && into && on AMP pages
|
3192 |
// $this->w3tc_code .= 'if (strpos ($ai_code, $ai_amp_separator) !== false) {$codes = explode ($ai_amp_separator, $ai_code); $ai_code = trim ($codes [$ai_amp_page ? 1 : 0]); } else {if ($ai_amp_page && !$ai_amp_enabled) $ai_code = \'\';} $ai_enabled = true;';
|
3331 |
$clients_raw = trim (str_replace (' ', '', strtolower ($this->get_client_list ())));
|
3332 |
$client_list_type = $this->get_client_list_type ();
|
3333 |
|
3334 |
+
switch ($this->get_scheduling()) {
|
3335 |
+
case AI_SCHEDULING_BETWEEN_DATES:
|
3336 |
+
case AI_SCHEDULING_OUTSIDE_DATES:
|
3337 |
+
$scheduling_start_time_raw = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
|
3338 |
+
$scheduling_start_time = base64_encode ($scheduling_start_time_raw);
|
3339 |
+
$scheduling_end_time_raw = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
|
3340 |
+
$scheduling_end_time = base64_encode ($scheduling_end_time_raw);
|
3341 |
+
$scheduling_days_in_week_raw = $this->get_schedule_weekdays ();
|
3342 |
+
$scheduling_days_in_week = base64_encode ($scheduling_days_in_week_raw);
|
3343 |
+
$scheduling_type = $this->get_scheduling();
|
3344 |
+
break;
|
3345 |
+
}
|
3346 |
}
|
3347 |
|
3348 |
$url_parameters = base64_encode ($url_parameters_raw);
|
3349 |
+
$referers = base64_encode ($referers_raw);
|
3350 |
+
$clients = base64_encode ($clients_raw);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3351 |
|
3352 |
if (($this->client_side_cookie_check && $url_parameters != '') || $referers != '' || $clients != '' || $scheduling_type !== null) {
|
3353 |
switch ($dynamic_blocks) {
|
3356 |
if ($url_parameter_list_type == AI_BLACK_LIST) $url_parameter_list_type = 'B'; else $url_parameter_list_type = 'W';
|
3357 |
if ($referer_list_type == AI_BLACK_LIST) $referer_list_type = 'B'; else $referer_list_type = 'W';
|
3358 |
if ($client_list_type == AI_BLACK_LIST) $client_list_type = 'B'; else $client_list_type = 'W';
|
3359 |
+
if ($scheduling_type == AI_SCHEDULING_OUTSIDE_DATES) {
|
3360 |
+
$scheduling_type_code = 'B';
|
3361 |
+
$scheduling_type_text = 'OUT';
|
3362 |
+
} else {
|
3363 |
+
$scheduling_type_code = 'W';
|
3364 |
+
$scheduling_type_text = 'IN';
|
3365 |
+
}
|
3366 |
+
$gmt = get_option ('gmt_offset') * 3600 * 1000;
|
3367 |
+
|
3368 |
+
$fallback_code = '';
|
3369 |
+
$fallback_code_data = '';
|
3370 |
+
$fallback_block_data = 0;
|
3371 |
+
$fallback_tracking_data = '';
|
3372 |
+
if ($scheduling_type !== null) {
|
3373 |
+
$fallback_block = intval ($this->get_fallback());
|
3374 |
+
if ($fallback_block != $this->number && $fallback_block >= 1 && $fallback_block <= 96) {
|
3375 |
+
$fallback_block_data = $fallback_block;
|
3376 |
+
$fallback_obj = $block_object [$fallback_block];
|
3377 |
+
// $fallback_obj->hide_debug_labels = true;
|
3378 |
+
$fallback_code = $fallback_obj->ai_getProcessedCode ();
|
3379 |
+
$fallback_code_data = " data-fallback-code='" . base64_encode ($fallback_code) . "'";
|
3380 |
+
// $fallback_obj->hide_debug_labels = false;
|
3381 |
+
|
3382 |
+
$fallback_tracking_block = $fallback_obj->get_tracking () ? $fallback_obj->number : 0;
|
3383 |
+
$fallback_tracking_data = base64_encode ("[{$fallback_tracking_block},{$fallback_obj->code_version},\"{$fallback_obj->get_ad_name ()}\",\"{$fallback_obj->version_name}\"]");
|
3384 |
+
|
3385 |
+
}
|
3386 |
+
}
|
3387 |
+
|
3388 |
+
if ($this->client_side_cookie_check && $url_parameters != '') $url_parameter_attributes = " parameter-list='$url_parameters' parameter-list-type='$url_parameter_list_type'"; else $url_parameter_attributes = '';
|
3389 |
+
if ( $referers != '') $referer_attributes = " referer-list='$referers' referer-list-type='$referer_list_type'"; else $referer_attributes = '';
|
3390 |
+
if ( $clients != '') $client_attributes = " client-list='$clients' client-list-type='$client_list_type'"; else $client_attributes = '';
|
3391 |
+
if ($scheduling_type !== null ) $scheduling_attributes = " scheduling-start='$scheduling_start_time' scheduling-end='$scheduling_end_time' scheduling-days='$scheduling_days_in_week' scheduling-type='$scheduling_type_code' gmt='$gmt' scheduling-fallback='$fallback_block_data' fallback-tracking='$fallback_tracking_data'"; else $scheduling_attributes = '';
|
3392 |
|
|
|
|
|
|
|
3393 |
|
3394 |
// Deprecated
|
3395 |
$this->client_side_list_detection = true;
|
3399 |
|
3400 |
switch ($dynamic_blocks) {
|
3401 |
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_SHOW:
|
3402 |
+
$processed_code = "\n<div class='ai-dynamic ai-list-data'{$referer_attributes}{$client_attributes}{$url_parameter_attributes}{$scheduling_attributes}>{$processed_code}</div>\n";
|
3403 |
+
|
3404 |
+
if ($scheduling_type !== null) {
|
3405 |
+
$processed_code .= "<div class='ai-fallback'>{$fallback_code}</div>\n";
|
3406 |
+
}
|
3407 |
break;
|
3408 |
case AI_DYNAMIC_BLOCKS_CLIENT_SIDE_INSERT:
|
3409 |
+
$code_data = " data-code='".base64_encode ($processed_code)."'";
|
3410 |
|
3411 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME]) {
|
3412 |
$block_id = 'ai-list-' . $this->number . '-' . rand (1000, 9999) . rand (1000, 9999);
|
3413 |
$list_class = ' ' . $block_id ;
|
3414 |
} else $list_class = '';
|
3415 |
|
3416 |
+
$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";
|
3417 |
|
3418 |
if ($ai_wp_data [AI_WP_PAGE_TYPE] == AI_PT_AJAX && !$ai_wp_data [AI_CODE_FOR_IFRAME] && !get_disable_js_code ()) {
|
3419 |
$processed_code .= "<script>var ai_block_div = jQuery ('.{$block_id}'); ai_process_lists (ai_block_div); ai_block_div.removeClass ('{$block_id}');</script>\n";
|
3423 |
}
|
3424 |
|
3425 |
if (($ai_wp_data [AI_WP_DEBUGGING] & AI_DEBUG_BLOCKS) != 0 && !$this->hide_debug_labels) {
|
3426 |
+
if ($scheduling_type !== null) {
|
3427 |
+
$scheduling_attributes_dbg = sprintf (__ ("start='%s' end='%s' days='%s' type='%s'", 'ad-inserter'), $scheduling_start_time_raw, $scheduling_end_time_raw, $scheduling_days_in_week_raw, $scheduling_type_text);
|
3428 |
+
|
3429 |
+
$debug_scheduling = new ai_block_labels ('ai-debug-scheduling');
|
3430 |
+
$debug_processed_code = $debug_scheduling->bar ($scheduling_attributes_dbg, 'OUT = ' . AI_TEXT_INSERT_OUTSIDE_DATES .', IN = ' . AI_TEXT_INSERT_BETWEEN_DATES, '<kbd class="ai-debug-name ai-scheduling-status"></kbd>', '<kbd class="ai-debug-name ai-scheduling-info"></kbd>');
|
3431 |
+
|
3432 |
+
$processed_code = $debug_processed_code . $processed_code;
|
3433 |
+
}
|
3434 |
// translators: %s: list parameters and type
|
3435 |
if ($this->client_side_cookie_check && ($url_parameters != '')) $url_parameter_attributes_dbg = sprintf (__ ("parameters='%s' type='%s'", 'ad-inserter'), $url_parameters_raw, $url_parameter_list_type); else $url_parameter_attributes_dbg = '';
|
3436 |
// translators: %s: list parameters and type
|
3438 |
// translators: %s: list parameters and type
|
3439 |
if ( $clients != '') $client_attributes_dbg = sprintf (__ ("clients='%s' type='%s'", 'ad-inserter'), $clients_raw, $client_list_type); else $client_attributes_dbg = '';
|
3440 |
|
3441 |
+
if ($url_parameter_attributes_dbg != '' || $referer_attributes_dbg != '' || $client_attributes_dbg) {
|
3442 |
+
$debug_list = new ai_block_labels ('ai-debug-lists');
|
3443 |
+
$debug_processed_code = $debug_list->bar ($url_parameter_attributes_dbg . ' ' . $referer_attributes_dbg . ' ' . $client_attributes_dbg, 'B = ' . AI_TEXT_BLACK_LIST .', W = ' . AI_TEXT_WHITE_LIST, '<kbd class="ai-debug-name ai-list-status"></kbd>', '<kbd class="ai-debug-name ai-list-info"></kbd>');
|
3444 |
|
3445 |
+
$processed_code = $debug_processed_code . $processed_code;
|
3446 |
+
}
|
3447 |
}
|
3448 |
|
3449 |
break;
|
3452 |
$this->w3tc_debug []= 'PROCESS LISTS';
|
3453 |
}
|
3454 |
|
|
|
3455 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3456 |
|
3457 |
if ($ai_wp_data [AI_W3TC_DEBUGGING]) {
|
3513 |
|
3514 |
if ($fallback_obj->get_tracking ()) {
|
3515 |
$fallback_tracking_block = $fallback_block;
|
3516 |
+
} else $fallback_tracking_block = '0';
|
3517 |
|
3518 |
+
$fallback_code = ' if (!$ai_enabled) {'.$w3tc_fallback_status.' $ai_enabled = true; if (!isset ($ai_index)) $ai_index = 0; $ai_fallback = '.$fallback_tracking_block.'; $ai_code = ai_w3tc_execute_php (base64_decode (\''. $fallback_block_code . '\'), $ai_index, $ai_fallback);}';
|
3519 |
} else $fallback_code = '';
|
3520 |
|
3521 |
$this->w3tc_code .= ' if ($ai_enabled) {$ai_enabled = check_scheduling_time (base64_decode (\''. $scheduling_start_time.'\'), base64_decode (\''.$scheduling_end_time.'\'), base64_decode (\''.$scheduling_days_in_week.'\'), '.($scheduling_type == AI_SCHEDULING_BETWEEN_DATES ? 'true':'false').');' . $w3tc_status . $fallback_code . '};';
|
3622 |
$this->w3tc_debug []= 'PROCESS IP ADDRESSES';
|
3623 |
}
|
3624 |
|
|
|
3625 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3626 |
|
3627 |
$this->w3tc_code .= ' require_once \''.AD_INSERTER_PLUGIN_DIR.'includes/geo/Ip2Country.php\';';
|
3791 |
$w3tc_status = ' if (!$ai_enabled) ai_w3tc_log_run (\' FAILED\', \'color: red;\');';
|
3792 |
} else $w3tc_status = '';
|
3793 |
|
|
|
3794 |
$this->generate_w3tc_code_from_html ($processed_code);
|
3795 |
|
3796 |
$this->w3tc_code .= $ai_check_block_w3tc_code;
|
3831 |
// } while (is_array ($this->check_codes) && isset ($this->check_codes [$this->check_codes_index + 1]));
|
3832 |
|
3833 |
|
3834 |
+
|
3835 |
+
|
3836 |
if (defined ('AI_DEBUGGING_DEMO') && !$this->demo_debugging) {
|
3837 |
$this->hide_debug_labels = true;
|
3838 |
}
|
3918 |
|
3919 |
$w3tc = $this->w3tc_code != '' && get_dynamic_blocks () == AI_DYNAMIC_BLOCKS_SERVER_SIDE_W3TC && !defined ('AI_NO_W3TC');
|
3920 |
|
3921 |
+
if ($this->get_alignment_type() == AI_ALIGNMENT_NO_WRAPPING || $code_only || $this->check_code_empty) {
|
3922 |
+
return $code;
|
3923 |
+
}
|
3924 |
|
3925 |
// Prevent empty wrapping div on AMP pages
|
3926 |
if ($ai_wp_data [AI_WP_AMP_PAGE] && $code == '') return '';
|
3948 |
$classes [] = 'ai-close';
|
3949 |
}
|
3950 |
|
3951 |
+
$tracking_block = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3952 |
$tracking_code_pre = '';
|
3953 |
$tracking_code_data = '';
|
3954 |
$tracking_code_post = '';
|
3955 |
$tracking_code = '';
|
3956 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3957 |
if ($not_iframe_or_inside) {
|
3958 |
+
|
3959 |
+
if ($w3tc) {
|
3960 |
$classes [] = 'ai-track';
|
3961 |
+
if ($this->get_tracking ()) {
|
3962 |
+
$tracking_block = $this->number;
|
3963 |
+
}
|
3964 |
|
3965 |
$tracking_code_pre = " data-ai='";
|
3966 |
+
$tracking_code_data = '[#AI_DATA#]';
|
3967 |
$tracking_code_post = "'";
|
3968 |
+
}
|
3969 |
+
elseif ($this->fallback != 0) {
|
3970 |
+
if ($block_object [$this->fallback]->get_tracking ()) {
|
3971 |
+
$classes [] = 'ai-track';
|
3972 |
+
$tracking_block = $this->fallback;
|
3973 |
+
|
3974 |
+
$tracking_code_pre = " data-ai='";
|
3975 |
+
$tracking_code_data = "[{$this->fallback},{$this->code_version},\"{$block_object [$this->fallback]->get_ad_name ()}\",\"{$this->version_name}\"]";
|
3976 |
+
$tracking_code_post = "'";
|
3977 |
|
3978 |
+
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
3979 |
+
}
|
3980 |
}
|
3981 |
elseif ($this->get_tracking ()) {
|
3982 |
$classes [] = 'ai-track';
|
3988 |
|
3989 |
$tracking_code = $tracking_code_pre . base64_encode ($tracking_code_data) . $tracking_code_post;
|
3990 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3991 |
}
|
3992 |
|
3993 |
$classes = array_unique ($classes);
|
4000 |
} else $class = "";
|
4001 |
|
4002 |
if ($w3tc) {
|
|
|
|
|
4003 |
if ($ai_wp_data [AI_WP_AMP_PAGE] || ($alignment_class != '' && defined ('AI_NORMAL_HEADER_STYLES') && AI_NORMAL_HEADER_STYLES && !get_inline_styles ())) {
|
4004 |
$wrapper_before = $this->hidden_viewports . "<div" . $class . $tracking_code_pre . $tracking_code_data . $tracking_code_post . $sticky_parameters . ">\n";
|
4005 |
} else {
|
4022 |
$wrapper_before .= $this->additional_code_before;
|
4023 |
$wrapper_after = $this->additional_code_after . $wrapper_after;
|
4024 |
|
4025 |
+
$this->w3tc_code .= ' if (!isset ($ai_fallback)) $ai_fallback = null; if (!isset ($ai_index)) $ai_index = ' . $this->code_version . ';';
|
4026 |
+
$this->w3tc_code .= ' if ($ai_fallback === null) $ai_tracking_data = \'['.$tracking_block.',\'.$ai_index.\']\'; else $ai_tracking_data = \'[\'.$ai_fallback.\',\'.$ai_index.\']\';';
|
4027 |
+
$this->w3tc_code .= ' $ai_code = str_replace (\'[#AI_DATA#]\', base64_encode ($ai_tracking_data), base64_decode (\''.base64_encode ($wrapper_before).'\')) . $ai_code . base64_decode (\''.$this->base64_encode_w3tc ($wrapper_after, false).'\');';
|
|
|
|
|
|
|
|
|
|
|
|
|
4028 |
|
4029 |
$code = $this->generate_html_from_w3tc_code ();
|
4030 |
} else {
|
4042 |
|
4043 |
$wrapper_after = "</div>\n";
|
4044 |
|
4045 |
+
$code = $wrapper_before . $code . $wrapper_after;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4046 |
}
|
4047 |
|
4048 |
return $code;
|
6748 |
$primary_category = explode (':', $taxonomy_disabled);
|
6749 |
if ($primary_category [1] == ai_yoast_primary_category ()) return false;
|
6750 |
}
|
6751 |
+
elseif (strpos ($taxonomy_disabled, 'multisite:') === 0) {
|
6752 |
+
if (is_multisite () && function_exists ('ai_plugin_settings')) {
|
6753 |
+
$site_id = explode (':', $taxonomy_disabled);
|
6754 |
+
if ($site_id [1] == '#' && is_main_site ()) return false;
|
6755 |
+
if (get_current_blog_id () == $site_id [1]) return false;
|
6756 |
+
} else return true;
|
6757 |
+
}
|
6758 |
|
6759 |
foreach ($taxonomy_names as $taxonomy_name) {
|
6760 |
$terms = get_the_terms (0, $taxonomy_name);
|
6815 |
$primary_category = explode (':', $taxonomy_enabled);
|
6816 |
if ($primary_category [1] == ai_yoast_primary_category ()) return true;
|
6817 |
}
|
6818 |
+
elseif (strpos ($taxonomy_enabled, 'multisite:') === 0) {
|
6819 |
+
if (is_multisite () && function_exists ('ai_plugin_settings')) {
|
6820 |
+
$site_id = explode (':', $taxonomy_enabled);
|
6821 |
+
if ($site_id [1] == '#' && is_main_site ()) return true;
|
6822 |
+
if (get_current_blog_id () == $site_id [1]) return true;
|
6823 |
+
} else return false;
|
6824 |
+
}
|
6825 |
|
6826 |
foreach ($taxonomy_names as $taxonomy_name) {
|
6827 |
$terms = get_the_terms (0, $taxonomy_name);
|
6941 |
}
|
6942 |
|
6943 |
function check_scheduling ($server_side_check) {
|
6944 |
+
global $block_object, $ai_wp_data;
|
6945 |
|
6946 |
switch ($this->get_scheduling()) {
|
6947 |
case AI_SCHEDULING_OFF:
|
6975 |
case AI_SCHEDULING_BETWEEN_DATES:
|
6976 |
if (!function_exists ('ai_scheduling_options')) return true;
|
6977 |
|
6978 |
+
if (!$server_side_check) return true;
|
6979 |
|
6980 |
$start_time = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
|
6981 |
$end_time = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
|
6984 |
$insertion_enabled = check_scheduling_time ($start_time, $end_time, $days_in_week, true);
|
6985 |
|
6986 |
if (!$insertion_enabled) {
|
6987 |
+
if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
|
6988 |
+
|
6989 |
$fallback = intval ($this->get_fallback());
|
6990 |
+
if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
|
6991 |
+
$fallback_obj = $block_object [$fallback];
|
6992 |
+
if ($fallback_obj->check_scheduling ($server_side_check)) {
|
6993 |
+
$this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
|
6994 |
+
$insertion_enabled = true;
|
6995 |
+
}
|
6996 |
}
|
6997 |
+
|
6998 |
+
$ai_wp_data [AI_FALLBACK_LEVEL] --;
|
6999 |
}
|
7000 |
|
7001 |
return ($insertion_enabled);
|
7004 |
case AI_SCHEDULING_OUTSIDE_DATES:
|
7005 |
if (!function_exists ('ai_scheduling_options')) return true;
|
7006 |
|
7007 |
+
if (!$server_side_check) return true;
|
7008 |
|
7009 |
$start_time = $this->get_schedule_start_date () . ' ' . $this->get_schedule_start_time ();
|
7010 |
$end_time = $this->get_schedule_end_date () . ' ' . $this->get_schedule_end_time ();
|
7013 |
$insertion_enabled = check_scheduling_time ($start_time, $end_time, $days_in_week, false);
|
7014 |
|
7015 |
if (!$insertion_enabled) {
|
7016 |
+
if (!isset ($ai_wp_data [AI_FALLBACK_LEVEL])) $ai_wp_data [AI_FALLBACK_LEVEL] = 1; else $ai_wp_data [AI_FALLBACK_LEVEL] ++;
|
7017 |
+
|
7018 |
$fallback = intval ($this->get_fallback());
|
7019 |
+
if ($fallback != $this->number && $fallback != 0 && $fallback <= 96 && $ai_wp_data [AI_FALLBACK_LEVEL] <= 2) {
|
7020 |
+
$fallback_obj = $block_object [$fallback];
|
7021 |
+
if ($fallback_obj->check_scheduling ($server_side_check)) {
|
7022 |
+
$this->fallback = $fallback_obj->fallback != 0 ? $fallback_obj->fallback : $fallback;
|
7023 |
+
$insertion_enabled = true;
|
7024 |
+
}
|
7025 |
}
|
7026 |
+
|
7027 |
+
$ai_wp_data [AI_FALLBACK_LEVEL] --;
|
7028 |
}
|
7029 |
|
7030 |
return ($insertion_enabled);
|
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__));
|
@@ -860,6 +860,7 @@ define ('DEFAULT_TRIGGER_CLICK_FRAUD_PROTECTION', AI_DISABLED);
|
|
860 |
define ('DEFAULT_COUNT_INSIDE', AI_DO_NOT_COUNT);
|
861 |
define ('DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN', AI_CONTAIN);
|
862 |
define ('DEFAULT_WEEKDAYS', '0,1,2,3,4,5,6');
|
|
|
863 |
|
864 |
define ('AI_ADBLOCKING_DETECTION', true);
|
865 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
@@ -1069,6 +1070,8 @@ define ('AI_FOOTER_JS_CODE_DOM_READY', 60);
|
|
1069 |
define ('AI_FOOTER_INLINE_SCRIPTS', 61);
|
1070 |
define ('AI_NESTING_LEVEL', 62);
|
1071 |
define ('AI_W3TC_DEBUGGING', 63);
|
|
|
|
|
1072 |
|
1073 |
define ('AI_CONTEXT_NONE', 0);
|
1074 |
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.2');
|
35 |
|
36 |
if (!defined ('AD_INSERTER_PLUGIN_BASENAME'))
|
37 |
define ('AD_INSERTER_PLUGIN_BASENAME', plugin_basename (__FILE__));
|
860 |
define ('DEFAULT_COUNT_INSIDE', AI_DO_NOT_COUNT);
|
861 |
define ('DEFAULT_COUNT_INSIDE_ELEMENTS_CONTAIN', AI_CONTAIN);
|
862 |
define ('DEFAULT_WEEKDAYS', '0,1,2,3,4,5,6');
|
863 |
+
define ('DEFAULT_MAXMIND_LICENSE_KEY', '');
|
864 |
|
865 |
define ('AI_ADBLOCKING_DETECTION', true);
|
866 |
define ('AI_NORMAL_HEADER_STYLES', true);
|
1070 |
define ('AI_FOOTER_INLINE_SCRIPTS', 61);
|
1071 |
define ('AI_NESTING_LEVEL', 62);
|
1072 |
define ('AI_W3TC_DEBUGGING', 63);
|
1073 |
+
define ('AI_BLOCK_PHP_CODE_CACHING', 64);
|
1074 |
+
define ('AI_FALLBACK_LEVEL', 62);
|
1075 |
|
1076 |
define ('AI_CONTEXT_NONE', 0);
|
1077 |
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 {
|
@@ -612,6 +612,8 @@ table.ai-lists .ai-button {
|
|
612 |
}
|
613 |
|
614 |
.ai-list-button .checkbox-button {
|
|
|
|
|
615 |
border-radius: 3px;
|
616 |
-webkit-border-radius: 3px;
|
617 |
-moz-border-radius: 3px;
|
@@ -681,6 +683,13 @@ span.checkbox-icon {
|
|
681 |
height: 8px;
|
682 |
}
|
683 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
684 |
.checkbox-icon.icon-none {
|
685 |
width: 10px;
|
686 |
height: 12px;
|
1 |
#ai-data {
|
2 |
+
font-family: "2.6.2"; /* Used for version number of the file */
|
3 |
}
|
4 |
|
5 |
#blocked-warning {
|
612 |
}
|
613 |
|
614 |
.ai-list-button .checkbox-button {
|
615 |
+
padding: 2px 2px;
|
616 |
+
margin: 1px 0 1px;
|
617 |
border-radius: 3px;
|
618 |
-webkit-border-radius: 3px;
|
619 |
-moz-border-radius: 3px;
|
683 |
height: 8px;
|
684 |
}
|
685 |
|
686 |
+
.checkbox-icon.size-8.icon-text {
|
687 |
+
font-size: 9px;
|
688 |
+
line-height: 9px;
|
689 |
+
text-indent: 0;
|
690 |
+
color: #ccc;
|
691 |
+
}
|
692 |
+
|
693 |
.checkbox-icon.icon-none {
|
694 |
width: 10px;
|
695 |
height: 12px;
|
includes/js/ai-adb.js
CHANGED
@@ -447,7 +447,8 @@ var ai_adb_undetected = function(n) {
|
|
447 |
|
448 |
// Prevent tracking if block was not displayed because of cookie
|
449 |
jQuery(".ai-adb-hide").each (function () {
|
450 |
-
console.log ('AI ai-adb-hide', jQuery(this), jQuery(this).outerHeight (), jQuery(this).closest ('.ai-adb-show').length);
|
|
|
451 |
if (jQuery(this).outerHeight () == 0 && jQuery(this).closest ('.ai-adb-show').length == 0) {
|
452 |
// Top level (not nested) block
|
453 |
var wrapper = jQuery(this).closest ('div[data-ai]');
|
447 |
|
448 |
// Prevent tracking if block was not displayed because of cookie
|
449 |
jQuery(".ai-adb-hide").each (function () {
|
450 |
+
if (ai_adb_debugging) console.log ('AI ai-adb-hide', jQuery(this), jQuery(this).outerHeight (), jQuery(this).closest ('.ai-adb-show').length);
|
451 |
+
|
452 |
if (jQuery(this).outerHeight () == 0 && jQuery(this).closest ('.ai-adb-show').length == 0) {
|
453 |
// Top level (not nested) block
|
454 |
var wrapper = jQuery(this).closest ('div[data-ai]');
|
includes/js/ai-adb.min.js
CHANGED
@@ -12,8 +12,8 @@ typeof a(this).data("code")){var b=b64d(a(this).data("code"));a(this).append(b);
|
|
12 |
10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;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,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==
|
13 |
c){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.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor",
|
14 |
"pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+
|
15 |
-
1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(ai_adb=!1,jQuery(".ai-adb-hide").each(function(){
|
16 |
-
|
17 |
jQuery(document).ready(function(a){a(window).ready(function(){var c="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||c)&&""!=ai_adb_selectors){var b=0,d=0,e=ai_adb_selectors.split(",");a.each(e,function(f){e[f]=e[f].trim();0!=a(e[f]).length&&a(e[f]).each(function(e){var f=a(this).outerHeight();
|
18 |
e=a(this).find(".ai-attributes");e.length&&e.each(function(){f>=a(this).outerHeight()&&(f-=a(this).outerHeight())});b++;if(0===f&&(a(document).ready(function(){ai_adb_active&&!c||ai_adb_detected(4)}),d++,!c))return!1})});0!=b&&0==d&&a(document).ready(function(){ai_adb_undetected(4)})}})});
|
19 |
jQuery(window).on("load",function(){setTimeout(function(){var a="undefined"!==typeof ai_adb_fe_dbg;jQuery("#ai-adb-ads").length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!a||ai_adb_detected(1));jQuery("#ai-adb-ga").length&&("function"==typeof ga&&30<ga.toString().length||"function"==typeof __gaTracker&&30<__gaTracker.toString().length?ai_adb_undetected(5):ai_adb_active&&!a||ai_adb_detected(5));jQuery("#ai-adb-sponsors").length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?
|
12 |
10)});if(0!=ai_adb_page_views){var b=1,c=AiCookies.get(ai_adb_pgv_cookie_name);"undefined"!=typeof c&&(b=parseInt(c)+1);if(b<=ai_adb_page_views){AiCookies.set(ai_adb_pgv_cookie_name,b,{expires:365,path:"/"});window.ai_d1=b;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,{path:"/"});else{c=AiCookies.get(ai_adb_act_cookie_name);if("undefined"!=typeof c&&"AI_CONST_AI_ADB_COOKIE_VALUE"==
|
13 |
c){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.click(function(){a(this).remove();ai_adb_message_window.remove()}).css("cursor","pointer"),ai_adb_message_window.click(function(){a(this).remove();ai_adb_overlay.remove()}).css("cursor",
|
14 |
"pointer"),window.onkeydown=function(a){27===a.keyCode&&(ai_adb_overlay.click(),ai_adb_message_window.click())});a("body").prepend(ai_adb_overlay).prepend(ai_adb_message_window);break;case 2:""!=ai_adb_redirection_url&&(b=!0,"http"==ai_adb_redirection_url.toLowerCase().substring(0,4)?window.location.href==ai_adb_redirection_url&&(b=!1):window.location.pathname==ai_adb_redirection_url&&(b=!1),b?(c=AiCookies.get(ai_adb_page_redirection_cookie_name),"undefined"==typeof c&&(b=new Date,b.setTime(b.getTime()+
|
15 |
+
1E4),AiCookies.set(ai_adb_page_redirection_cookie_name,window.location.href,{expires:b,path:"/"}),window.location.replace(ai_adb_redirection_url))):AiCookies.remove(ai_adb_page_redirection_cookie_name,{path:"/"}))}}(jQuery),ai_adb=!0)},ai_adb_undetected=function(a){ai_adb_counter++;ai_adb_active||4!=ai_adb_counter||(ai_adb=!1,jQuery(".ai-adb-hide").each(function(){if(0==jQuery(this).outerHeight()&&0==jQuery(this).closest(".ai-adb-show").length){var a=jQuery(this).closest("div[data-ai]");if("undefined"!=
|
16 |
+
typeof a.attr("data-ai")){var b=JSON.parse(b64d(a.attr("data-ai")));"undefined"!==typeof b&&b.constructor===Array&&(b[1]="",a.attr("data-ai",b64e(JSON.stringify(b))),a.addClass("ai-viewport-0").css("display","none"))}}}),jQuery(".ai-adb-show").each(function(){ai_disable_processing(jQuery(this))}),window.AI_ADB_STATUS_MESSAGE=4,ai_dummy=14)};AI_DBG_AI_DEBUG_AD_BLOCKING&&jQuery(document).ready(function(){ai_adb_detected(0)});
|
17 |
jQuery(document).ready(function(a){a(window).ready(function(){var c="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||c)&&""!=ai_adb_selectors){var b=0,d=0,e=ai_adb_selectors.split(",");a.each(e,function(f){e[f]=e[f].trim();0!=a(e[f]).length&&a(e[f]).each(function(e){var f=a(this).outerHeight();
|
18 |
e=a(this).find(".ai-attributes");e.length&&e.each(function(){f>=a(this).outerHeight()&&(f-=a(this).outerHeight())});b++;if(0===f&&(a(document).ready(function(){ai_adb_active&&!c||ai_adb_detected(4)}),d++,!c))return!1})});0!=b&&0==d&&a(document).ready(function(){ai_adb_undetected(4)})}})});
|
19 |
jQuery(window).on("load",function(){setTimeout(function(){var a="undefined"!==typeof ai_adb_fe_dbg;jQuery("#ai-adb-ads").length&&(document.getElementById("AI_CONST_AI_ADB_1_NAME")?ai_adb_undetected(1):ai_adb_active&&!a||ai_adb_detected(1));jQuery("#ai-adb-ga").length&&("function"==typeof ga&&30<ga.toString().length||"function"==typeof __gaTracker&&30<__gaTracker.toString().length?ai_adb_undetected(5):ai_adb_active&&!a||ai_adb_detected(5));jQuery("#ai-adb-sponsors").length&&("undefined"==typeof window.AI_CONST_AI_ADB_2_NAME?
|
includes/js/ai-errors-footer.js
CHANGED
@@ -1,7 +1,18 @@
|
|
1 |
jQuery('body').prepend ("AI_HTML_CODE");
|
2 |
-
|
3 |
-
|
4 |
-
jQuery('.ai-js-
|
5 |
-
|
6 |
-
jQuery('.ai-js-
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
jQuery('body').prepend ("AI_HTML_CODE");
|
2 |
+
|
3 |
+
ai_check_js_errors = function () {
|
4 |
+
jQuery('.ai-js-0').hide ();
|
5 |
+
if (ai_js_errors.length != 0) {
|
6 |
+
jQuery('.ai-js-2').show ();
|
7 |
+
jQuery('.ai-js-1').hide ();
|
8 |
+
} else {
|
9 |
+
jQuery('.ai-js-1').show ();
|
10 |
+
jQuery('.ai-js-2').hide ();
|
11 |
+
}
|
12 |
+
}
|
13 |
+
|
14 |
+
ai_check_js_errors ();
|
15 |
+
|
16 |
+
setTimeout (ai_check_js_errors, 500);
|
17 |
+
|
18 |
+
setTimeout (ai_check_js_errors, 3000);
|
includes/js/ai-errors-footer.min.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
jQuery("body").prepend("AI_HTML_CODE");jQuery(".ai-js-0").hide();0!=ai_js_errors.length?jQuery(".ai-js-2").show():jQuery(".ai-js-1").show();
|
1 |
+
jQuery("body").prepend("AI_HTML_CODE");ai_check_js_errors=function(){jQuery(".ai-js-0").hide();0!=ai_js_errors.length?(jQuery(".ai-js-2").show(),jQuery(".ai-js-1").hide()):(jQuery(".ai-js-1").show(),jQuery(".ai-js-2").hide())};ai_check_js_errors();setTimeout(ai_check_js_errors,500);setTimeout(ai_check_js_errors,3E3);
|
includes/js/ai-lists.js
CHANGED
@@ -30,6 +30,18 @@ jQuery (function ($) {
|
|
30 |
}
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
ai_process_lists = function (ai_list_blocks) {
|
34 |
|
35 |
if (ai_list_blocks == null) {
|
@@ -211,26 +223,107 @@ jQuery (function ($) {
|
|
211 |
}
|
212 |
}
|
213 |
|
214 |
-
$(this).
|
215 |
-
// block_wrapping_div.find ('.ai-debug-name.ai-list-info').text (referrer);
|
216 |
-
// block_wrapping_div.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
217 |
-
// block_wrapping_div.find ('.ai-debug-name.ai-user-agent').text (window.navigator.userAgent);
|
218 |
-
|
219 |
-
var debug_bar = $(this).prev ('.ai-debug-bar');
|
220 |
var referrer_text = referrer == '' ? '#' : referrer;
|
221 |
debug_bar.find ('.ai-debug-name.ai-list-info').text (referrer_text).attr ('title', window.navigator.userAgent);
|
222 |
debug_bar.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
223 |
|
224 |
-
|
225 |
-
|
226 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
if (block_wrapping_div.hasClass ('ai-remove-position')) {
|
231 |
block_wrapping_div.css ({"position": ""});
|
232 |
}
|
233 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
234 |
} else {
|
235 |
block_wrapping_div.css ({"visibility": ""});
|
236 |
if (block_wrapping_div.hasClass ('ai-remove-position')) {
|
@@ -240,25 +333,19 @@ jQuery (function ($) {
|
|
240 |
if (typeof $(this).data ('code') != 'undefined') {
|
241 |
var block_code = b64d ($(this).data ('code'));
|
242 |
$(this).append (block_code);
|
243 |
-
// if (!ai_debug)
|
244 |
-
$(this).attr ('data-code', '');
|
245 |
|
246 |
if (ai_debug) console.log ('AI INSERT CODE', $(block_code).attr ('class'));
|
247 |
if (ai_debug) console.log ('');
|
248 |
|
249 |
-
// if (typeof ai_process_lists == 'function') {
|
250 |
-
// ai_process_lists ($("div.ai-list-data", this)); // Doesn't process rotations
|
251 |
-
// }
|
252 |
-
// if (typeof ai_process_ip_addresses == 'function') {
|
253 |
-
// ai_process_ip_addresses ($("div.ai-ip-data", this));
|
254 |
-
// }
|
255 |
-
|
256 |
-
// // Doesn't process inserted code for rotation - it will be called with setTimeout 5 ms later
|
257 |
-
|
258 |
ai_process_element (this);
|
259 |
}
|
260 |
}
|
261 |
|
|
|
|
|
|
|
|
|
|
|
262 |
block_wrapping_div.removeClass ('ai-list-block');
|
263 |
});
|
264 |
}
|
30 |
}
|
31 |
}
|
32 |
|
33 |
+
function ai_get_date (date_time_string) {
|
34 |
+
var date;
|
35 |
+
try {
|
36 |
+
date = Date.parse (date_time_string);
|
37 |
+
if (isNaN (date)) date = null;
|
38 |
+
} catch (error) {
|
39 |
+
date = null;
|
40 |
+
}
|
41 |
+
|
42 |
+
return date;
|
43 |
+
}
|
44 |
+
|
45 |
ai_process_lists = function (ai_list_blocks) {
|
46 |
|
47 |
if (ai_list_blocks == null) {
|
223 |
}
|
224 |
}
|
225 |
|
226 |
+
var debug_bar = $(this).prevAll ('.ai-debug-bar.ai-debug-lists');
|
|
|
|
|
|
|
|
|
|
|
227 |
var referrer_text = referrer == '' ? '#' : referrer;
|
228 |
debug_bar.find ('.ai-debug-name.ai-list-info').text (referrer_text).attr ('title', window.navigator.userAgent);
|
229 |
debug_bar.find ('.ai-debug-name.ai-list-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
230 |
|
231 |
+
var scheduling = false;
|
232 |
+
if (enable_block) {
|
233 |
+
var scheduling_start = $(this).attr ("scheduling-start");
|
234 |
+
var scheduling_end = $(this).attr ("scheduling-end");
|
235 |
+
var scheduling_days = $(this).attr ("scheduling-days");
|
236 |
+
if (typeof scheduling_start != "undefined" && typeof scheduling_end != "undefined" && typeof scheduling_days != "undefined") {
|
237 |
+
var scheduling = true;
|
238 |
+
|
239 |
+
var scheduling_fallback = parseInt ($(this).attr ("scheduling-fallback"));
|
240 |
+
var gmt = parseInt ($(this).attr ("gmt"));
|
241 |
+
var scheduling_start_date = ai_get_date (b64d (scheduling_start)) + gmt;
|
242 |
+
var scheduling_end_date = ai_get_date (b64d (scheduling_end)) + gmt;
|
243 |
+
var scheduling_days_array = b64d (scheduling_days).split (',');
|
244 |
+
var scheduling_type = $(this).attr ("scheduling-type");
|
245 |
+
|
246 |
+
var current_time = new Date ().getTime () + gmt;
|
247 |
+
var date = new Date (current_time);
|
248 |
+
var current_day = date.getDay ();
|
249 |
+
if (current_day == 0) current_day = 6; else current_day --;
|
250 |
+
|
251 |
+
if (ai_debug) console.log ('');
|
252 |
+
if (ai_debug) console.log ("AI SCHEDULING:", b64d (scheduling_start), ' ', b64d (scheduling_end), ' ', b64d (scheduling_days), ' ', scheduling_type == 'W' ? 'IN' : 'OUT');
|
253 |
|
254 |
+
var scheduling_ok = current_time >= scheduling_start_date && current_time < scheduling_end_date && scheduling_days_array.includes (current_day.toString ());
|
255 |
+
|
256 |
+
switch (scheduling_type) {
|
257 |
+
case "B":
|
258 |
+
scheduling_ok = !scheduling_ok;
|
259 |
+
break;
|
260 |
+
}
|
261 |
+
|
262 |
+
if (!scheduling_ok) {
|
263 |
+
enable_block = false;
|
264 |
+
}
|
265 |
+
|
266 |
+
var date_time_string = date.toISOString ().split ('.');
|
267 |
+
var date_time = date_time_string [0].replace ('T', ' ');
|
268 |
+
|
269 |
+
var debug_bar = $(this).prevAll ('.ai-debug-bar.ai-debug-scheduling');
|
270 |
+
debug_bar.find ('.ai-debug-name.ai-scheduling-info').text (date_time + ' ' + current_day);
|
271 |
+
debug_bar.find ('.ai-debug-name.ai-scheduling-status').text (enable_block ? ai_front.visible : ai_front.hidden);
|
272 |
+
|
273 |
+
if (ai_debug) console.log ("AI SCHEDULING:", date_time + ' ' + current_day);
|
274 |
+
if (ai_debug) console.log ("AI SCHEDULING pass", scheduling_ok);
|
275 |
+
if (ai_debug) console.log ("AI LISTS list pass", enable_block);
|
276 |
+
|
277 |
+
if (!enable_block && scheduling_fallback != 0) {
|
278 |
+
debug_bar.removeClass ('ai-debug-scheduling').addClass ('ai-debug-fallback');
|
279 |
+
debug_bar.find ('.ai-debug-name.ai-scheduling-status').text (ai_front.fallback + '=' + scheduling_fallback);
|
280 |
+
|
281 |
+
if (ai_debug) console.log ("AI SCHEDULING fallback block", scheduling_fallback);
|
282 |
+
}
|
283 |
+
}
|
284 |
+
}
|
285 |
+
|
286 |
+
$(this).css ({"visibility": "", "position": "", "width": "", "height": "", "z-index": ""});
|
287 |
+
|
288 |
+
if (!enable_block) {
|
289 |
+
if (scheduling && !scheduling_ok && scheduling_fallback != 0) {
|
290 |
+
block_wrapping_div.css ({"visibility": ""});
|
291 |
if (block_wrapping_div.hasClass ('ai-remove-position')) {
|
292 |
block_wrapping_div.css ({"position": ""});
|
293 |
}
|
294 |
+
|
295 |
+
var fallback_div = $(this).next ('.ai-fallback');
|
296 |
+
fallback_div.removeClass ('ai-fallback');
|
297 |
+
|
298 |
+
if (typeof $(this).data ('fallback-code') != 'undefined') {
|
299 |
+
var block_code = b64d ($(this).data ('fallback-code'));
|
300 |
+
$(this).append (block_code);
|
301 |
+
|
302 |
+
if (ai_debug) console.log ('AI INSERT CODE', $(block_code).attr ('class'));
|
303 |
+
if (ai_debug) console.log ('');
|
304 |
+
|
305 |
+
ai_process_element (this);
|
306 |
+
} else $(this).hide ();
|
307 |
+
|
308 |
+
var tracking_data = block_wrapping_div.attr ('data-ai');
|
309 |
+
if (typeof tracking_data !== typeof undefined && tracking_data !== false) {
|
310 |
+
var fallback_tracking_data = $(this).attr ('fallback-tracking');
|
311 |
+
if (typeof fallback_tracking_data !== typeof undefined && fallback_tracking_data !== false) {
|
312 |
+
block_wrapping_div.attr ('data-ai', fallback_tracking_data);
|
313 |
+
}
|
314 |
+
}
|
315 |
+
} else {
|
316 |
+
$(this).hide ();
|
317 |
+
|
318 |
+
block_wrapping_div.removeAttr ('data-ai').removeClass ('ai-track');
|
319 |
+
|
320 |
+
if (block_wrapping_div.find ('.ai-debug-block').length) {
|
321 |
+
block_wrapping_div.css ({"visibility": ""}).removeClass ('ai-close');
|
322 |
+
if (block_wrapping_div.hasClass ('ai-remove-position')) {
|
323 |
+
block_wrapping_div.css ({"position": ""});
|
324 |
+
}
|
325 |
+
} else block_wrapping_div.hide ();
|
326 |
+
}
|
327 |
} else {
|
328 |
block_wrapping_div.css ({"visibility": ""});
|
329 |
if (block_wrapping_div.hasClass ('ai-remove-position')) {
|
333 |
if (typeof $(this).data ('code') != 'undefined') {
|
334 |
var block_code = b64d ($(this).data ('code'));
|
335 |
$(this).append (block_code);
|
|
|
|
|
336 |
|
337 |
if (ai_debug) console.log ('AI INSERT CODE', $(block_code).attr ('class'));
|
338 |
if (ai_debug) console.log ('');
|
339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
ai_process_element (this);
|
341 |
}
|
342 |
}
|
343 |
|
344 |
+
if (!ai_debug) {
|
345 |
+
$(this).attr ('data-code', '');
|
346 |
+
$(this).attr ('data-fallback-code', '');
|
347 |
+
}
|
348 |
+
|
349 |
block_wrapping_div.removeClass ('ai-list-block');
|
350 |
});
|
351 |
}
|
includes/js/ai-lists.min.js
CHANGED
@@ -1,8 +1,10 @@
|
|
1 |
-
jQuery(function(a){function
|
2 |
-
var
|
3 |
-
1)){if(b=b.substr(1,b.length-2),-1!=
|
4 |
-
a){if(""==
|
5 |
-
|
6 |
-
(
|
7 |
-
|
8 |
-
|
|
|
|
1 |
+
jQuery(function(a){function e(a){return decodeURIComponent(atob(a).split("").map(function(a){return"%"+("00"+a.charCodeAt(0).toString(16)).slice(-2)}).join(""))}function n(a){a=a.match(h);return null!=a&&1<a.length&&"string"===typeof a[1]&&0<a[1].length?a[1].toLowerCase():null}function k(a){try{var b=Date.parse(a);isNaN(b)&&(b=null)}catch(w){b=null}return b}var h=/:\/\/(.[^/:]+)/i;ai_process_lists=function(b){b=null==b?a("div.ai-list-data"):b.filter(".ai-list-data");if(b.length){b.removeClass("ai-list-data");
|
2 |
+
var r=document.cookie.split(";");r.forEach(function(a,c){r[c]=a.trim()});var h=getAllUrlParams(window.location.search);if(null!=h.referrer)var m=h.referrer;else m=document.referrer,""!=m&&(m=n(m));if("undefined"!==typeof MobileDetect)var u=new MobileDetect(window.navigator.userAgent);b.each(function(){var b=a(this).closest("div.AI_FUNCT_GET_BLOCK_CLASS_NAME"),c=!0,f=!1,d=a(this).attr("referer-list");if("undefined"!=typeof d){d=e(d).split(",");var g=a(this).attr("referer-list-type");a.each(d,function(a,
|
3 |
+
b){if(""==b)return!0;if("*"==b.charAt(0))if("*"==b.charAt(b.length-1)){if(b=b.substr(1,b.length-2),-1!=m.indexOf(b))return f=!0,!1}else{if(b=b.substr(1),m.substr(-b.length)==b)return f=!0,!1}else if("*"==b.charAt(b.length-1)){if(b=b.substr(0,b.length-1),0==m.indexOf(b))return f=!0,!1}else if("#"==b){if(""==m)return f=!0,!1}else if(b==m)return f=!0,!1});switch(g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}}d=a(this).attr("client-list");if("undefined"!=typeof d&&"undefined"!==typeof u)switch(d=e(d).split(","),
|
4 |
+
g=a(this).attr("client-list-type"),a.each(d,function(a,b){if(""==b)return!0;if(u.is(b))return f=!0,!1}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}if(c&&(d=a(this).attr("parameter-list"),"undefined"!=typeof d))switch(d=e(d).split(","),g=a(this).attr("parameter-list-type"),f=!1,a.each(d,function(a,b){if(-1!=b.indexOf("=")){if(-1!=r.indexOf(b))return f=!0,!1}else r.forEach(function(a){a=a.split("=");if(b==a[0])return f=!0,!1})}),g){case "B":f&&(c=!1);break;case "W":f||(c=!1)}var l=a(this).prevAll(".ai-debug-bar.ai-debug-lists");
|
5 |
+
d=""==m?"#":m;l.find(".ai-debug-name.ai-list-info").text(d).attr("title",window.navigator.userAgent);l.find(".ai-debug-name.ai-list-status").text(c?ai_front.visible:ai_front.hidden);d=!1;if(c){var h=a(this).attr("scheduling-start");l=a(this).attr("scheduling-end");var p=a(this).attr("scheduling-days");if("undefined"!=typeof h&&"undefined"!=typeof l&&"undefined"!=typeof p){d=!0;var n=parseInt(a(this).attr("scheduling-fallback"));g=parseInt(a(this).attr("gmt"));var q=k(e(h))+g;l=k(e(l))+g;h=e(p).split(",");
|
6 |
+
p=a(this).attr("scheduling-type");var t=(new Date).getTime()+g,v=new Date(t);g=v.getDay();0==g?g=6:g--;q=t>=q&&t<l&&h.includes(g.toString());switch(p){case "B":q=!q}q||(c=!1);p=v.toISOString().split(".")[0].replace("T"," ");l=a(this).prevAll(".ai-debug-bar.ai-debug-scheduling");l.find(".ai-debug-name.ai-scheduling-info").text(p+" "+g);l.find(".ai-debug-name.ai-scheduling-status").text(c?ai_front.visible:ai_front.hidden);c||0==n||(l.removeClass("ai-debug-scheduling").addClass("ai-debug-fallback"),
|
7 |
+
l.find(".ai-debug-name.ai-scheduling-status").text(ai_front.fallback+"="+n))}}a(this).css({visibility:"",position:"",width:"",height:"","z-index":""});c?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),"undefined"!=typeof a(this).data("code")&&(c=e(a(this).data("code")),a(this).append(c),ai_process_element(this))):d&&!q&&0!=n?(b.css({visibility:""}),b.hasClass("ai-remove-position")&&b.css({position:""}),a(this).next(".ai-fallback").removeClass("ai-fallback"),"undefined"!=
|
8 |
+
typeof a(this).data("fallback-code")?(c=e(a(this).data("fallback-code")),a(this).append(c),ai_process_element(this)):a(this).hide(),c=b.attr("data-ai"),"undefined"!==typeof c&&!1!==c&&(c=a(this).attr("fallback-tracking"),"undefined"!==typeof c&&!1!==c&&b.attr("data-ai",c))):(a(this).hide(),b.removeAttr("data-ai").removeClass("ai-track"),b.find(".ai-debug-block").length?(b.css({visibility:""}).removeClass("ai-close"),b.hasClass("ai-remove-position")&&b.css({position:""})):b.hide());a(this).attr("data-code",
|
9 |
+
"");a(this).attr("data-fallback-code","");b.removeClass("ai-list-block")})}};a(document).ready(function(a){setTimeout(function(){ai_process_lists()},5)})});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))},5)}
|
10 |
+
function getAllUrlParams(a){var e=a?a.split("?")[1]:window.location.search.slice(1);a={};if(e){e=e.split("#")[0];e=e.split("&");for(var n=0;n<e.length;n++){var k=e[n].split("="),h=void 0,b=k[0].replace(/\[\d*\]/,function(a){h=a.slice(1,-1);return""});k="undefined"===typeof k[1]?"":k[1];b=b.toLowerCase();k=k.toLowerCase();a[b]?("string"===typeof a[b]&&(a[b]=[a[b]]),"undefined"===typeof h?a[b].push(k):a[b][h]=k):a[b]=k}}return a};
|
includes/js/ai-select.js
CHANGED
@@ -226,28 +226,28 @@ jQuery (document).ready (function ($) {
|
|
226 |
|
227 |
$('body').css ({'user-select': 'none', 'margin-top': '140px'});
|
228 |
|
229 |
-
$('body').prepend ('<section id="ai-selector-data">
|
230 |
-
<table>
|
231 |
-
<tbody>
|
232 |
-
<tr>
|
233 |
-
<td class="data-name">' + ai_front.element + '</td>
|
234 |
-
<td class="data-value"><section id="ai-selector-element"></section></td>
|
235 |
-
<td><button type="button" id="ai-cancel-button" style="min-width:
|
236 |
-
</tr>
|
237 |
-
<tr>
|
238 |
-
<td>' + ai_front.path + '</td>
|
239 |
-
<td><section id="ai-selector-path"></section></td>
|
240 |
-
<td><button type="button" id="ai-parent-button" style="min-width:
|
241 |
-
</tr>
|
242 |
-
<tr>
|
243 |
-
<td>' + ai_front.selector + '</td>
|
244 |
-
<td style="width: 100%;"><input id="ai-selector" type="text" value="" maxlength="500" title="' + ai_front.css_selector + '" /></td>
|
245 |
-
<td><button type="button" id="ai-use-button" style="min-width:
|
246 |
-
<button type="button" id="ai-add-button" style="min-width:
|
247 |
-
</tr>
|
248 |
-
</tbody>
|
249 |
-
</table>
|
250 |
-
</section>');
|
251 |
|
252 |
$('body').bind ('mouseover mouseout click', function (event) {
|
253 |
var element = $(event.target);
|
226 |
|
227 |
$('body').css ({'user-select': 'none', 'margin-top': '140px'});
|
228 |
|
229 |
+
$('body').prepend ('<section id="ai-selector-data">' +
|
230 |
+
'<table>' +
|
231 |
+
' <tbody>' +
|
232 |
+
' <tr>' +
|
233 |
+
' <td class="data-name">' + ai_front.element + '</td>' +
|
234 |
+
' <td class="data-value"><section id="ai-selector-element"></section></td>' +
|
235 |
+
' <td><button type="button" id="ai-cancel-button" style="min-width: 110px;" title="' + ai_front.cancel_element_selection + '"> ' + ai_front.cancel + ' </button></td>' +
|
236 |
+
' </tr>' +
|
237 |
+
' <tr>' +
|
238 |
+
' <td>' + ai_front.path + '</td>' +
|
239 |
+
' <td><section id="ai-selector-path"></section></td>' +
|
240 |
+
' <td><button type="button" id="ai-parent-button" style="min-width: 110px;" title="' + ai_front.select_parent_element + '"> ' + ai_front.parent + ' </button></td>' +
|
241 |
+
' </tr>' +
|
242 |
+
' <tr>' +
|
243 |
+
' <td>' + ai_front.selector + '</td>' +
|
244 |
+
' <td style="width: 100%;"><input id="ai-selector" type="text" value="" maxlength="500" title="' + ai_front.css_selector + '" /></td>' +
|
245 |
+
' <td><button type="button" id="ai-use-button" style="min-width: 110px;" title="' + ai_front.use_current_selector + '"> ' + ai_front.use + ' </button>' +
|
246 |
+
' <button type="button" id="ai-add-button" style="min-width: 110px; display: none;" title="' + ai_front.add_current_selector + '"> ' + ai_front.add + ' </button></td>' +
|
247 |
+
' </tr>' +
|
248 |
+
' </tbody>' +
|
249 |
+
'</table>' +
|
250 |
+
'</section>');
|
251 |
|
252 |
$('body').bind ('mouseover mouseout click', function (event) {
|
253 |
var element = $(event.target);
|
includes/js/ai-select.min.js
CHANGED
@@ -1,17 +1,11 @@
|
|
1 |
-
jQuery(document).ready(function(
|
2 |
-
"
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
"
|
10 |
-
|
11 |
-
|
12 |
-
ai_front.use_current_selector+'"> '+ai_front.use+' </button> <button type="button" id="ai-add-button" style="min-width: 100px; display: none;" title="'+ai_front.add_current_selector+'"> '+ai_front.add+" </button></td> </tr> </tbody> </table> </section>");
|
13 |
-
$("body").bind("mouseover mouseout click",function(event){var element=$(event.target);var elements=getDomPath(element[0]);var path=elements.join(" > ");if(path.indexOf("ai-selector-data")!=-1)return;if(element.hasClass("ai-html-element"))return;switch(event.type){case "click":if(element.prop("tagName")!="A"||ctrl_pressed){selected_element=element;$("#ai-selector-element").html(wrapElement(getElementSelector(element[0])));$("#ai-selector-path").html(wrapElements(elements).join(" > "));createClickableElements();
|
14 |
-
$(".ai-highlighted").removeClass("ai-highlighted");$(".ai-selected").removeClass("ai-selected");element.addClass("ai-selected");$("#ai-selector").val(getShortestPath(elements).join(" > "))}break;case "mouseover":current_element=element;if(element.prop("tagName")!="A"||ctrl_pressed)element.addClass("ai-highlighted");break;case "mouseout":element.removeClass("ai-highlighted");break}});$("#ai-selector").on("input",function(){$(".ai-highlighted").removeClass("ai-highlighted");$(".ai-selected").removeClass("ai-selected");
|
15 |
-
var selectors=cleanSelectors($("#ai-selector").val());$(selectors).addClass("ai-selected");var elements=selectors.split(",");elements.forEach(function(element){$("#ai-selector-data "+element).removeClass("ai-selected")});if(elements.length==1&&$(selectors).length==1){selected_element=$(elements[0]);$("#ai-selector-element").html(wrapElement(getElementSelector(selected_element[0])));$("#ai-selector-path").html(wrapElements(getDomPath(selected_element[0])).join(" > "));createClickableElements()}else{selected_element=
|
16 |
-
null;$("#ai-selector-element").text("");$("#ai-selector-path").text("")}});window.onkeydown=function(event){if(event.keyCode===27)window.close()};loadFromSettings();$("#ai-cancel-button").button({}).click(function(){window.close()});$("#ai-parent-button").button({}).click(function(){if(selected_element.prop("tagName")!="BODY"){selected_element=selected_element.parent();selected_element.click()}});$("#ai-use-button").button({}).click(function(){applyToSettings(false);window.close()});$("#ai-add-button").button({}).click(function(){applyToSettings(true);
|
17 |
-
window.close()})});
|
1 |
+
jQuery(document).ready(function(b){function m(a){var c=a.nodeName.toLowerCase();a.hasAttribute("id")&&""!=a.id&&(c=c+"#"+a.id);a.className&&(classes=a.className.replace(/ai-selected|ai-highlighted/g,"").trim())&&(c=c+"."+classes.replace(/\s{2,}/g," ").trim().replace(/ /g,"."));return c}function n(a){for(var c=[];null!=a.parentNode;){for(var b=0,e=0,f=0;f<a.parentNode.childNodes.length;f++){var g=a.parentNode.childNodes[f];g.nodeName==a.nodeName&&(g===a&&(e=b),b++)}a.hasAttribute("id")&&""!=a.id?c.unshift(a.nodeName.toLowerCase()+
|
2 |
+
"#"+a.id):1<b?c.unshift(a.nodeName.toLowerCase()+":eq("+e+")"):c.unshift(a.nodeName.toLowerCase());a=a.parentNode}return c.slice(1)}function u(a){var b=[],d=!1;a.reverse().forEach(function(a){d||b.unshift(a);d=-1!=a.indexOf("#")});return b}function k(a){a=a.trim();","==a.slice(0,1)&&(a=a.slice(1,a.length));","==a.slice(-1)&&(a=a.slice(0,a.length-1));return a.trim()}function h(a){return'<kbd class="ai-html-element">'+a+"</kbd>"}function p(a){var b=[];a.forEach(function(a){b.push(h(a))});return b}function q(){b(".ai-html-element").click(function(){var a=
|
3 |
+
b(this).text();b("#ai-selector-element").html(h(a));b(".ai-highlighted").removeClass("ai-highlighted");b(".ai-selected").removeClass("ai-selected");b(a).addClass("ai-selected");b("#ai-selector-data "+a).removeClass("ai-selected");b("#ai-selector").val(a)})}function r(a){if(null!=window.opener&&!window.opener.closed){var c=b(window.opener.document).contents(),d=b("#ai-selector").val();a&&(a=c.find(l).val().trim(),a=k(a),""!=a&&(a+=", "),d=a+d);c.find(l).val(d)}}function t(){g?(b("#ai-use-button").hide(),
|
4 |
+
b("#ai-add-button").show()):(b("#ai-use-button").show(),b("#ai-add-button").hide())}var l="AI_POST_INPUT",g=!1,e=null,f=null;document.onclick=function(a){a=a||event;var c;a:{for(c=a.target||a.srcElement;c;){if("a"===(c.nodeName||c.tagName).toLowerCase())break a;c=c.parentNode}c=null}if(c&&(a.preventDefault(),!g)){a={html_element_selection:"AI_POST_HTML_ELEMENT_SELECTION",selector:b("#ai-selector").val(),input:l};var d=document.createElement("form");d.setAttribute("method","post");d.setAttribute("action",
|
5 |
+
c.href);d.setAttribute("target","_self");for(var e in a)a.hasOwnProperty(e)&&(c=document.createElement("input"),c.type="hidden",c.name=e,c.value=encodeURI(a[e]),d.appendChild(c));document.body.appendChild(d);d.submit();document.body.removeChild(d)}};b(document).keydown(function(a){"17"==a.which&&(g=!0,t(),null!=f&&"A"==f.prop("tagName")&&b(f).trigger("mouseover"))});b(document).keyup(function(){g=!1;t();null!=f&&"A"==f.prop("tagName")&&b(f).trigger("mouseout")});b("body").css({"user-select":"none",
|
6 |
+
"margin-top":"140px"});b("body").prepend('<section id="ai-selector-data"><table> <tbody> <tr> <td class="data-name">'+ai_front.element+'</td> <td class="data-value"><section id="ai-selector-element"></section></td> <td><button type="button" id="ai-cancel-button" style="min-width: 110px;" title="'+ai_front.cancel_element_selection+'"> '+ai_front.cancel+" </button></td> </tr> <tr> <td>"+ai_front.path+'</td> <td><section id="ai-selector-path"></section></td> <td><button type="button" id="ai-parent-button" style="min-width: 110px;" title="'+
|
7 |
+
ai_front.select_parent_element+'"> '+ai_front.parent+" </button></td> </tr> <tr> <td>"+ai_front.selector+'</td> <td style="width: 100%;"><input id="ai-selector" type="text" value="" maxlength="500" title="'+ai_front.css_selector+'" /></td> <td><button type="button" id="ai-use-button" style="min-width: 110px;" title="'+ai_front.use_current_selector+'"> '+ai_front.use+' </button> <button type="button" id="ai-add-button" style="min-width: 110px; display: none;" title="'+
|
8 |
+
ai_front.add_current_selector+'"> '+ai_front.add+" </button></td> </tr> </tbody></table></section>");b("body").bind("mouseover mouseout click",function(a){var c=b(a.target),d=n(c[0]);if(-1==d.join(" > ").indexOf("ai-selector-data")&&!c.hasClass("ai-html-element"))switch(a.type){case "click":if("A"!=c.prop("tagName")||g)e=c,b("#ai-selector-element").html(h(m(c[0]))),b("#ai-selector-path").html(p(d).join(" > ")),q(),b(".ai-highlighted").removeClass("ai-highlighted"),b(".ai-selected").removeClass("ai-selected"),
|
9 |
+
c.addClass("ai-selected"),b("#ai-selector").val(u(d).join(" > "));break;case "mouseover":f=c;("A"!=c.prop("tagName")||g)&&c.addClass("ai-highlighted");break;case "mouseout":c.removeClass("ai-highlighted")}});b("#ai-selector").on("input",function(){b(".ai-highlighted").removeClass("ai-highlighted");b(".ai-selected").removeClass("ai-selected");var a=k(b("#ai-selector").val());b(a).addClass("ai-selected");var c=a.split(",");c.forEach(function(a){b("#ai-selector-data "+a).removeClass("ai-selected")});
|
10 |
+
1==c.length&&1==b(a).length?(e=b(c[0]),b("#ai-selector-element").html(h(m(e[0]))),b("#ai-selector-path").html(p(n(e[0])).join(" > ")),q()):(e=null,b("#ai-selector-element").text(""),b("#ai-selector-path").text(""))});window.onkeydown=function(a){27===a.keyCode&&window.close()};null==window.opener||window.opener.closed||(b("#ai-selector").val(k("AI_POST_SELECTOR")),b("#ai-selector").trigger("input"));b("#ai-cancel-button").button({}).click(function(){window.close()});b("#ai-parent-button").button({}).click(function(){"BODY"!=
|
11 |
+
e.prop("tagName")&&(e=e.parent(),e.click())});b("#ai-use-button").button({}).click(function(){r(!1);window.close()});b("#ai-add-button").button({}).click(function(){r(!0);window.close()})});
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
@@ -4531,6 +4531,21 @@ jQuery(document).ready (function($) {
|
|
4531 |
load_saved_settings_to_clipboard (block, true);
|
4532 |
});
|
4533 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4534 |
$("label.ai-preview-block").click (function () {
|
4535 |
var block = $(this).closest ('tr').data ('block');
|
4536 |
|
@@ -4538,7 +4553,6 @@ jQuery(document).ready (function($) {
|
|
4538 |
var window_height = 820;
|
4539 |
var window_left = 100;
|
4540 |
var window_top = (screen.height / 2) - (820 / 2);
|
4541 |
-
// var nonce = $("#ai-form").attr ('nonce');
|
4542 |
|
4543 |
var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
|
4544 |
open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
|
@@ -4547,7 +4561,7 @@ jQuery(document).ready (function($) {
|
|
4547 |
data_container.disableSelection();
|
4548 |
}
|
4549 |
|
4550 |
-
function reload_list () {
|
4551 |
list_search_reload = false;
|
4552 |
var list = encodeURIComponent ($("#ai-list-search").val());
|
4553 |
var all = + !$("#ai-load-all").hasClass ('light-blue');
|
@@ -4575,42 +4589,23 @@ jQuery(document).ready (function($) {
|
|
4575 |
var data_container = $("#ai-list-data");
|
4576 |
var safe_mode = Boolean (parseInt ($('#ai-data').attr ('safe-mode')));
|
4577 |
var safe_mode_url = safe_mode ? '&safe-mode' : '';
|
|
|
|
|
|
|
4578 |
|
4579 |
-
data_container.load (ajaxurl+"?action=ai_ajax_backend&list=" + list + "&all=" + all + "&start=" + start + "&end=" + end + rearrange_data + safe_mode_url + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
|
|
4580 |
if (status == "error") {
|
4581 |
var message = "Error downloading list data: " + xhr.status + " " + xhr.statusText;
|
4582 |
data_container.html (message);
|
4583 |
if (debug) console.log (message);
|
4584 |
} else {
|
4585 |
-
// $(".ai-tab-link").click (function () {
|
4586 |
-
// var tab = $(this).data ('tab') - start;
|
4587 |
-
// $("#ai-tab-container").tabs ({active: tab});
|
4588 |
-
// });
|
4589 |
-
|
4590 |
-
// $("label.ai-copy-block").click (function () {
|
4591 |
-
// var block = $(this).closest ('tr').data ('block');
|
4592 |
-
|
4593 |
-
// load_saved_settings_to_clipboard (block, true);
|
4594 |
-
// });
|
4595 |
-
|
4596 |
-
// $("label.ai-preview-block").click (function () {
|
4597 |
-
// var block = $(this).closest ('tr').data ('block');
|
4598 |
-
|
4599 |
-
// var window_width = 820;
|
4600 |
-
// var window_height = 820;
|
4601 |
-
// var window_left = 100;
|
4602 |
-
// var window_top = (screen.height / 2) - (820 / 2);
|
4603 |
-
//// var nonce = $("#ai-form").attr ('nonce');
|
4604 |
-
|
4605 |
-
// var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
|
4606 |
-
// open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
|
4607 |
-
// });
|
4608 |
-
|
4609 |
-
|
4610 |
-
// data_container.disableSelection();
|
4611 |
-
|
4612 |
configure_list ();
|
4613 |
|
|
|
|
|
|
|
|
|
4614 |
if (rearrange) reload_settings ();
|
4615 |
}
|
4616 |
});
|
@@ -5188,7 +5183,6 @@ jQuery(document).ready (function($) {
|
|
5188 |
function reload_settings () {
|
5189 |
if (debug) console.log ('RELOAD SETTINGS');
|
5190 |
|
5191 |
-
// var nonce = $("#ai-form").attr ('nonce');
|
5192 |
var settings_container = $("#ai-container");
|
5193 |
|
5194 |
$('#ai-error-container').hide ();
|
@@ -5200,8 +5194,6 @@ jQuery(document).ready (function($) {
|
|
5200 |
var simple_editor = $('#simple-editor-' + active_tab).is(":checked");
|
5201 |
var copy = $("#copy-block-" + active_tab).next ("label").find ('.checkbox-icon').hasClass("on");
|
5202 |
|
5203 |
-
|
5204 |
-
|
5205 |
settings_container.load (ajaxurl+"?action=ai_ajax_backend&settings=" + active_tab + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
5206 |
if (status == "error") {
|
5207 |
$('#ai-loading').hide ();
|
@@ -5527,9 +5519,9 @@ jQuery(document).ready (function($) {
|
|
5527 |
$("span.maxmind-db-missing").closest ('.notice.notice-error').hide ();
|
5528 |
$("#maxmind-db-status").text ('');
|
5529 |
} else {
|
5530 |
-
|
5531 |
var status = JSON.parse (update_status);
|
5532 |
-
|
5533 |
if (typeof status !== "undefined") {
|
5534 |
$(".notice span.maxmind-db-missing").text (status [0]);
|
5535 |
$("#maxmind-db-status").text (status [1]);
|
1 |
+
var javascript_version = "2.6.2";
|
2 |
var ignore_key = true;
|
3 |
var start = 1;
|
4 |
var end = 16;
|
4531 |
load_saved_settings_to_clipboard (block, true);
|
4532 |
});
|
4533 |
|
4534 |
+
$("label.ai-pause-block").click (function () {
|
4535 |
+
var block = $(this).closest ('tr').data ('block');
|
4536 |
+
var paused = !$(this).hasClass ('ai-paused');
|
4537 |
+
|
4538 |
+
reload_list ('cmd=pause&cmd-block=' + block);
|
4539 |
+
ai_reload_list_function = function () {
|
4540 |
+
var block_button = $('#disable-insertion-' + block);
|
4541 |
+
var block_button_paused = block_button.parent ().find ('.icon-pause').hasClass ('on');
|
4542 |
+
|
4543 |
+
if ((paused && !block_button_paused) || (!paused && block_button_paused)) {
|
4544 |
+
$('#disable-insertion-' + block).click ();
|
4545 |
+
}
|
4546 |
+
}
|
4547 |
+
});
|
4548 |
+
|
4549 |
$("label.ai-preview-block").click (function () {
|
4550 |
var block = $(this).closest ('tr').data ('block');
|
4551 |
|
4553 |
var window_height = 820;
|
4554 |
var window_left = 100;
|
4555 |
var window_top = (screen.height / 2) - (820 / 2);
|
|
|
4556 |
|
4557 |
var param = {'action': 'ai_ajax_backend', 'preview': block, 'ai_check': ai_nonce, 'read_only': 1};
|
4558 |
open_popup_window_post (ajaxurl, 'width='+window_width+',height='+window_height+',top='+window_top+',left='+window_left+',resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no', 'preview', param);
|
4561 |
data_container.disableSelection();
|
4562 |
}
|
4563 |
|
4564 |
+
function reload_list (settings) {
|
4565 |
list_search_reload = false;
|
4566 |
var list = encodeURIComponent ($("#ai-list-search").val());
|
4567 |
var all = + !$("#ai-load-all").hasClass ('light-blue');
|
4589 |
var data_container = $("#ai-list-data");
|
4590 |
var safe_mode = Boolean (parseInt ($('#ai-data').attr ('safe-mode')));
|
4591 |
var safe_mode_url = safe_mode ? '&safe-mode' : '';
|
4592 |
+
var settings_data = typeof settings == 'undefined' ? '' : '&' + settings;
|
4593 |
+
|
4594 |
+
$('#ai-loading').show ();
|
4595 |
|
4596 |
+
data_container.load (ajaxurl+"?action=ai_ajax_backend&list=" + list + "&all=" + all + "&start=" + start + "&end=" + end + rearrange_data + safe_mode_url + settings_data + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
4597 |
+
$('#ai-loading').hide ();
|
4598 |
if (status == "error") {
|
4599 |
var message = "Error downloading list data: " + xhr.status + " " + xhr.statusText;
|
4600 |
data_container.html (message);
|
4601 |
if (debug) console.log (message);
|
4602 |
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4603 |
configure_list ();
|
4604 |
|
4605 |
+
if (typeof ai_reload_list_function == 'function') {
|
4606 |
+
ai_reload_list_function ();
|
4607 |
+
ai_reload_list_function = null;
|
4608 |
+
}
|
4609 |
if (rearrange) reload_settings ();
|
4610 |
}
|
4611 |
});
|
5183 |
function reload_settings () {
|
5184 |
if (debug) console.log ('RELOAD SETTINGS');
|
5185 |
|
|
|
5186 |
var settings_container = $("#ai-container");
|
5187 |
|
5188 |
$('#ai-error-container').hide ();
|
5194 |
var simple_editor = $('#simple-editor-' + active_tab).is(":checked");
|
5195 |
var copy = $("#copy-block-" + active_tab).next ("label").find ('.checkbox-icon').hasClass("on");
|
5196 |
|
|
|
|
|
5197 |
settings_container.load (ajaxurl+"?action=ai_ajax_backend&settings=" + active_tab + "&ai_check=" + ai_nonce, function (response, status, xhr) {
|
5198 |
if (status == "error") {
|
5199 |
$('#ai-loading').hide ();
|
5519 |
$("span.maxmind-db-missing").closest ('.notice.notice-error').hide ();
|
5520 |
$("#maxmind-db-status").text ('');
|
5521 |
} else {
|
5522 |
+
if (debug) console.log (update_status);
|
5523 |
var status = JSON.parse (update_status);
|
5524 |
+
if (debug) console.log (status);
|
5525 |
if (typeof status !== "undefined") {
|
5526 |
$(".notice span.maxmind-db-missing").text (status [0]);
|
5527 |
$("#maxmind-db-status").text (status [1]);
|
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-01-
|
8 |
-
"PO-Revision-Date: 2020-01-
|
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:2002 includes/preview.php:2045
|
228 |
-
#: includes/preview.php:2082 settings.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:2458 strings.php:16
|
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,38 +466,38 @@ 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 |
msgid "requires WordPress 4.6 or newer"
|
487 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
488 |
|
489 |
-
#: ad-inserter.php:
|
490 |
msgid "Please update!"
|
491 |
msgstr "Prosimo, posodobite!"
|
492 |
|
493 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
494 |
#. name with HTML tags will be added)
|
495 |
-
#: ad-inserter.php:
|
496 |
msgid "Thank you for installing"
|
497 |
msgstr "Hvala za namestitev vtičnika"
|
498 |
|
499 |
#. translators: Opt-in message: %s: HTML tags
|
500 |
-
#: ad-inserter.php:
|
501 |
msgid ""
|
502 |
"We would like to %s track its usage %s on your site. This is completely "
|
503 |
"optional and can be disabled at any time."
|
@@ -505,7 +505,7 @@ msgstr ""
|
|
505 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
506 |
"izbirno in se lahko izključi kadarkoli."
|
507 |
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid ""
|
510 |
"We don't record any sensitive data, only information regarding the WordPress "
|
511 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -515,7 +515,7 @@ msgstr ""
|
|
515 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
516 |
|
517 |
#. translators: Deactivation message: %s: HTML tags
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid ""
|
520 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
521 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -526,51 +526,51 @@ msgstr ""
|
|
526 |
"nam %s in poskušali vam bomo pomagati."
|
527 |
|
528 |
#. translators: %s: Ad Inserter
|
529 |
-
#: ad-inserter.php:
|
530 |
msgid "%s block."
|
531 |
msgstr "%s blok."
|
532 |
|
533 |
#. translators: widget title
|
534 |
-
#: ad-inserter.php:
|
535 |
msgid "Processing log"
|
536 |
msgstr "Dnevnik procesiranja"
|
537 |
|
538 |
#. translators: widget title
|
539 |
-
#: ad-inserter.php:
|
540 |
msgid "Dummy widget"
|
541 |
msgstr "Prazen gradnik"
|
542 |
|
543 |
#. translators: widget title
|
544 |
-
#: ad-inserter.php:
|
545 |
msgid "Debugging tools"
|
546 |
msgstr "Orodja za razhroščevanje"
|
547 |
|
548 |
#. translators: block status (widget title)
|
549 |
-
#: ad-inserter.php:
|
550 |
msgctxt "block"
|
551 |
msgid "PAUSED"
|
552 |
msgstr "USTAVLJEN"
|
553 |
|
554 |
-
#: ad-inserter.php:
|
555 |
msgid "WIDGET DISABLED"
|
556 |
msgstr "GRADNIK ONEMOGOČEN"
|
557 |
|
558 |
-
#: ad-inserter.php:
|
559 |
msgid "Unknown block"
|
560 |
msgstr "Neznan blok"
|
561 |
|
562 |
-
#: ad-inserter.php:
|
563 |
-
#: includes/functions.old.php:3186 includes/functions.php:
|
564 |
-
#: settings.php:
|
565 |
msgid "Title"
|
566 |
msgstr "Naslov"
|
567 |
|
568 |
-
#: ad-inserter.php:
|
569 |
msgctxt "Widget"
|
570 |
msgid "Sticky"
|
571 |
msgstr "Lepljiv"
|
572 |
|
573 |
-
#: ad-inserter.php:
|
574 |
msgid ""
|
575 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
576 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
@@ -579,7 +579,7 @@ msgstr ""
|
|
579 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
580 |
"Inserter Pro."
|
581 |
|
582 |
-
#: ad-inserter.php:
|
583 |
msgid ""
|
584 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
585 |
"will clear all settings that are available only in the Pro version "
|
@@ -590,166 +590,170 @@ msgstr ""
|
|
590 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
591 |
|
592 |
#. translators: %s: Ad Inserter
|
593 |
-
#: class.php:
|
594 |
msgid "PHP error in %s block"
|
595 |
msgstr "PHP napaka v bloku %s"
|
596 |
|
597 |
-
#: class.php:
|
598 |
msgid "Counters"
|
599 |
msgstr "Števci"
|
600 |
|
601 |
-
#: class.php:
|
602 |
msgid "Content"
|
603 |
msgstr "Vsebina"
|
604 |
|
605 |
-
#: class.php:
|
606 |
msgid "Excerpt"
|
607 |
msgstr "Izvleček"
|
608 |
|
609 |
-
#: class.php:
|
610 |
msgid "Before post"
|
611 |
msgstr "Pred prispevkom"
|
612 |
|
613 |
-
#: class.php:
|
614 |
msgid "After post"
|
615 |
msgstr "Za prispevkom"
|
616 |
|
617 |
-
#: class.php:
|
618 |
msgid "Between posts"
|
619 |
msgstr "Med prispevki"
|
620 |
|
621 |
-
#: class.php:
|
622 |
msgid "Widget"
|
623 |
msgstr "Gradnik"
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgid "PHP function call"
|
627 |
msgstr "Klic PHP funkcije"
|
628 |
|
629 |
#. Translators: %s: custom hook name
|
630 |
-
#: class.php:
|
631 |
msgid "Custom hook %s call"
|
632 |
msgstr "Klic ročice po meri %s"
|
633 |
|
634 |
-
#: class.php:
|
635 |
msgid "AJAX REQUEST"
|
636 |
msgstr "AJAX ZAHTEVEK"
|
637 |
|
638 |
-
#: class.php:
|
639 |
msgid "Ajax request for block in iframe"
|
640 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
641 |
|
642 |
-
#: class.php:
|
643 |
msgid "Ajax request url, click to open it in a new tab"
|
644 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
645 |
|
646 |
-
#: class.php:
|
647 |
msgid "IN THE LOOP"
|
648 |
msgstr "V ZANKI"
|
649 |
|
650 |
-
#: class.php:
|
651 |
msgid "YES"
|
652 |
msgstr "DA"
|
653 |
|
654 |
-
#: class.php:
|
655 |
msgid "NO"
|
656 |
msgstr "NE"
|
657 |
|
658 |
-
#: class.php:
|
659 |
msgid "BLOCK"
|
660 |
msgstr "BLOK"
|
661 |
|
662 |
-
#: class.php:
|
663 |
msgctxt "block or widget"
|
664 |
msgid "INSERTED BUT NOT VISIBLE"
|
665 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
666 |
|
667 |
-
#: class.php:
|
668 |
msgctxt "viewports"
|
669 |
msgid "ALL"
|
670 |
msgstr "VSI"
|
671 |
|
672 |
-
#: class.php:
|
673 |
msgctxt "Block"
|
674 |
msgid "HIDDEN"
|
675 |
msgstr "SKRIT"
|
676 |
|
677 |
-
#: class.php:
|
678 |
msgctxt "Block"
|
679 |
msgid "VISIBLE"
|
680 |
msgstr "VIDEN"
|
681 |
|
682 |
-
#: class.php:
|
683 |
msgid "ACTIVE GROUPS"
|
684 |
msgstr "AKTIVNE SKUPINE"
|
685 |
|
|
|
|
|
|
|
|
|
686 |
#. translators: %s: list parameters and type
|
687 |
-
#: class.php:
|
688 |
msgid "parameters='%s' type='%s'"
|
689 |
msgstr "parametri='%s' tip='%s'"
|
690 |
|
691 |
#. translators: %s: list parameters and type
|
692 |
-
#: class.php:
|
693 |
msgid "referers='%s' type='%s'"
|
694 |
msgstr "napotitelji='%s' tip='%s'"
|
695 |
|
696 |
#. translators: %s: list parameters and type
|
697 |
-
#: class.php:
|
698 |
msgid "clients='%s' type='%s'"
|
699 |
msgstr "odjemalci='%s' tip='%s'"
|
700 |
|
701 |
#. translators: %s: list parameters and type
|
702 |
-
#: class.php:
|
703 |
msgid "countries='%s' type='%s'"
|
704 |
msgstr "države='%s' tip='%s'"
|
705 |
|
706 |
#. translators: %s: list parameters and type
|
707 |
-
#: class.php:
|
708 |
msgid "ip addresses='%s' type='%s'"
|
709 |
msgstr "ip naslovi='%s' tip='%s'"
|
710 |
|
711 |
-
#: class.php:
|
712 |
msgid "viewport='%s' type='%s'"
|
713 |
msgstr "pogled='%s' tip='%s'"
|
714 |
|
715 |
-
#: class.php:
|
716 |
msgid "BEFORE"
|
717 |
msgstr "PRED"
|
718 |
|
719 |
-
#: class.php:
|
720 |
msgid "PREPEND CONTENT"
|
721 |
msgstr "DODAJ PRED VSEBINO"
|
722 |
|
723 |
-
#: class.php:
|
724 |
msgid "APPEND CONTENT"
|
725 |
msgstr "DODAJ ZA VSEBINO"
|
726 |
|
727 |
-
#: class.php:
|
728 |
msgid "REPLACE CONTENT"
|
729 |
msgstr "NADOMESTI VSEBINO"
|
730 |
|
731 |
-
#: class.php:
|
732 |
msgid "REPLACE ELEMENT"
|
733 |
msgstr "NADOMESTI ELEMENT"
|
734 |
|
735 |
-
#: class.php:
|
736 |
msgid "AFTER"
|
737 |
msgstr "ZA"
|
738 |
|
739 |
-
#: class.php:
|
740 |
msgid "Code"
|
741 |
msgstr "Koda"
|
742 |
|
743 |
-
#: class.php:
|
744 |
msgid "for block"
|
745 |
msgstr "za blok"
|
746 |
|
747 |
-
#: class.php:
|
748 |
msgctxt "category name"
|
749 |
msgid "Uncategorized"
|
750 |
msgstr "Nekategorizirano"
|
751 |
|
752 |
-
#: class.php:
|
753 |
msgid ""
|
754 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
755 |
"extension for PHP."
|
@@ -767,7 +771,7 @@ msgid "Reset"
|
|
767 |
msgstr "Ponastavi"
|
768 |
|
769 |
#: includes/editor.php:9 includes/placeholders.php:354
|
770 |
-
#: includes/preview.php:1991 settings.php:
|
771 |
msgid "Cancel"
|
772 |
msgstr "Prekliči"
|
773 |
|
@@ -784,7 +788,7 @@ msgstr ""
|
|
784 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
785 |
"blokiranje oglasov."
|
786 |
|
787 |
-
#: includes/editor.php:264 settings.php:
|
788 |
msgid "Error loading page"
|
789 |
msgstr "Napaka pri nalaganju strani"
|
790 |
|
@@ -864,7 +868,7 @@ msgstr ""
|
|
864 |
"Pustite prazno razen v primeru, ko položaj ni pravilno izračunan."
|
865 |
|
866 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
867 |
-
#: includes/functions.php:450 settings.php:
|
868 |
msgid "Open HTML element selector"
|
869 |
msgstr "Odpri izbirnik HTML elementa"
|
870 |
|
@@ -910,7 +914,7 @@ msgstr "Preklopi Statistiko Blokiranja Oglasov"
|
|
910 |
|
911 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
912 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
913 |
-
#: includes/functions.php:518 includes/functions.php:
|
914 |
msgid "Toggle Statistics"
|
915 |
msgstr "Preklopi Statistiko"
|
916 |
|
@@ -937,7 +941,7 @@ msgid "%s license overused. Continue?"
|
|
937 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
938 |
|
939 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
940 |
-
#: includes/functions.php:558 settings.php:
|
941 |
msgid "Save Settings"
|
942 |
msgstr "Shrani Nastavitve"
|
943 |
|
@@ -1040,8 +1044,8 @@ msgid "Double click to toggle controls in public reports"
|
|
1040 |
msgstr "Dvojni klik za preklop kontrol v javnih poročilih"
|
1041 |
|
1042 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
1043 |
-
#: includes/functions.php:789 settings.php:
|
1044 |
-
#: settings.php:
|
1045 |
msgid "Loading..."
|
1046 |
msgstr "Nalagam..."
|
1047 |
|
@@ -1229,7 +1233,7 @@ msgstr "Mesta"
|
|
1229 |
|
1230 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1231 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1232 |
-
#: includes/functions.php:968 includes/functions.php:
|
1233 |
msgid "Toggle country editor"
|
1234 |
msgstr "Preklopi urejevalnik držav"
|
1235 |
|
@@ -1240,7 +1244,7 @@ msgstr "Preklopi urejevalnik mest"
|
|
1240 |
|
1241 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1242 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1243 |
-
#: includes/functions.php:975 includes/functions.php:
|
1244 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1245 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1246 |
|
@@ -1405,7 +1409,7 @@ msgid "Geolocation"
|
|
1405 |
msgstr "Geolokacija"
|
1406 |
|
1407 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1408 |
-
#: includes/functions.php:2394 settings.php:
|
1409 |
msgid "Exceptions"
|
1410 |
msgstr "Izjeme"
|
1411 |
|
@@ -1415,7 +1419,7 @@ msgid "Multisite"
|
|
1415 |
msgstr "Multisite"
|
1416 |
|
1417 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1418 |
-
#: includes/functions.php:2404 settings.php:
|
1419 |
msgid "Tracking"
|
1420 |
msgstr "Sledenje"
|
1421 |
|
@@ -1438,8 +1442,8 @@ msgid "Expired"
|
|
1438 |
msgstr "Poteklo"
|
1439 |
|
1440 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1441 |
-
#: includes/functions.php:2474 settings.php:
|
1442 |
-
#: settings.php:
|
1443 |
msgid "and"
|
1444 |
msgstr "in"
|
1445 |
|
@@ -1490,13 +1494,13 @@ msgid "Preview iframe code"
|
|
1490 |
msgstr "Predpreglej kodo iframe"
|
1491 |
|
1492 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1493 |
-
#: includes/functions.php:2518 includes/preview.php:2000 settings.php:
|
1494 |
-
#: settings.php:
|
1495 |
msgid "Preview"
|
1496 |
msgstr "Predogled"
|
1497 |
|
1498 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1499 |
-
#: includes/functions.php:2532 settings.php:
|
1500 |
msgid "Limits"
|
1501 |
msgstr "Omejitve"
|
1502 |
|
@@ -1504,7 +1508,7 @@ msgstr "Omejitve"
|
|
1504 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1505 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1506 |
#: includes/functions.php:2537 includes/functions.php:4519
|
1507 |
-
#: includes/functions.php:4582 settings.php:
|
1508 |
msgid "Ad Blocking"
|
1509 |
msgstr "Blokiranje Oglasov"
|
1510 |
|
@@ -1573,7 +1577,7 @@ msgstr "Trenutna vrednost"
|
|
1573 |
#: includes/functions.php:2664 includes/functions.php:2674
|
1574 |
#: includes/functions.php:2693 includes/functions.php:2703
|
1575 |
#: includes/functions.php:2749 includes/functions.php:2758
|
1576 |
-
#: includes/functions.php:2776 includes/functions.php:2785 settings.php:
|
1577 |
msgid "Max"
|
1578 |
msgstr "Največ"
|
1579 |
|
@@ -1643,7 +1647,7 @@ msgstr "Časovno obdobje v dneh. Prazno pomeni brez časovnih omejitev."
|
|
1643 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1644 |
#: includes/functions.php:2684 includes/functions.php:2713
|
1645 |
#: includes/functions.php:2768 includes/functions.php:2795
|
1646 |
-
#: includes/functions.php:2901 includes/functions.php:
|
1647 |
#: strings.php:202 strings.php:203 strings.php:204 strings.php:205
|
1648 |
#: strings.php:206
|
1649 |
msgid "day"
|
@@ -1868,27 +1872,27 @@ msgstr "Leno nalaganje"
|
|
1868 |
|
1869 |
#. Translators: %s MaxMind
|
1870 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1871 |
-
#: includes/functions.php:
|
1872 |
msgid "This product includes GeoLite2 data created by %s"
|
1873 |
msgstr "Ta izdelek vsebuje %s GeoLite2 podatke"
|
1874 |
|
1875 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1876 |
-
#: includes/functions.php:
|
1877 |
msgid "IP geolocation database"
|
1878 |
msgstr "Podatkovna baza za IP geolokacijo"
|
1879 |
|
1880 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1881 |
-
#: includes/functions.php:
|
1882 |
msgid "Select IP geolocation database."
|
1883 |
msgstr "Izberite podatkovno bazo za IP geolokacijo."
|
1884 |
|
1885 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1886 |
-
#: includes/functions.php:
|
1887 |
msgid "Automatic database updates"
|
1888 |
msgstr "Samodejna posodobitev podatkovne baze"
|
1889 |
|
1890 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1891 |
-
#: includes/functions.php:
|
1892 |
msgid ""
|
1893 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1894 |
"MaxMind"
|
@@ -1897,12 +1901,12 @@ msgstr ""
|
|
1897 |
"podatkovno bazo MaxMind"
|
1898 |
|
1899 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1900 |
-
#: includes/functions.php:
|
1901 |
msgid "Database"
|
1902 |
msgstr "Podatkovna baza"
|
1903 |
|
1904 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1905 |
-
#: includes/functions.php:
|
1906 |
msgid ""
|
1907 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1908 |
"file"
|
@@ -1912,17 +1916,17 @@ msgstr ""
|
|
1912 |
|
1913 |
#. translators: %d: group number
|
1914 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1915 |
-
#: includes/functions.php:
|
1916 |
msgid "Group %d"
|
1917 |
msgstr "Skupina %d"
|
1918 |
|
1919 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1920 |
-
#: includes/functions.php:
|
1921 |
msgid "countries"
|
1922 |
msgstr "države"
|
1923 |
|
1924 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1925 |
-
#: includes/functions.php:
|
1926 |
msgid ""
|
1927 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1928 |
"each block you want to track."
|
@@ -1931,38 +1935,38 @@ msgstr ""
|
|
1931 |
"vsak blok, ki bi ga radi sledili."
|
1932 |
|
1933 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1934 |
-
#: includes/functions.php:
|
1935 |
msgid "Generate report"
|
1936 |
msgstr "Generiraj poročilo"
|
1937 |
|
1938 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1939 |
-
#: includes/functions.php:
|
1940 |
msgid "Impression and Click Tracking"
|
1941 |
msgstr "Sledenje Prikazov in Klikov"
|
1942 |
|
1943 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1944 |
-
#: includes/functions.php:
|
1945 |
msgctxt "ad blocking detection"
|
1946 |
msgid "NOT ENABLED"
|
1947 |
msgstr "NI OMOGOČENO"
|
1948 |
|
1949 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1950 |
-
#: includes/functions.php:
|
1951 |
msgid "Internal"
|
1952 |
msgstr "Notranje"
|
1953 |
|
1954 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1955 |
-
#: includes/functions.php:
|
1956 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1957 |
msgstr "Sledi prikazom in klikom z notranjim sledenjem in statistiko"
|
1958 |
|
1959 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1960 |
-
#: includes/functions.php:
|
1961 |
msgid "External"
|
1962 |
msgstr "Zunanje"
|
1963 |
|
1964 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1965 |
-
#: includes/functions.php:
|
1966 |
msgid ""
|
1967 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1968 |
"code installed)"
|
@@ -1971,32 +1975,32 @@ msgstr ""
|
|
1971 |
"kodo za sledenje)"
|
1972 |
|
1973 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1974 |
-
#: includes/functions.php:
|
1975 |
msgid "Track Pageviews"
|
1976 |
msgstr "Sledi Ogledom Strani"
|
1977 |
|
1978 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1979 |
-
#: includes/functions.php:
|
1980 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1981 |
msgstr "Sledi Ogledom Strani po Napravah (kot so nastavljene za poglede)"
|
1982 |
|
1983 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1984 |
-
#: includes/functions.php:
|
1985 |
msgid "Track for Logged in Users"
|
1986 |
msgstr "Sledi za Prijavljene Upor."
|
1987 |
|
1988 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1989 |
-
#: includes/functions.php:
|
1990 |
msgid "Track impressions and clicks from logged in users"
|
1991 |
msgstr "Sledi prikazom in klikom neprijavljenih uporabnikov"
|
1992 |
|
1993 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1994 |
-
#: includes/functions.php:
|
1995 |
msgid "Click Detection"
|
1996 |
msgstr "Zaznavanje klikov"
|
1997 |
|
1998 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1999 |
-
#: includes/functions.php:
|
2000 |
msgid ""
|
2001 |
"Standard method detects clicks only on banners with links, Advanced method "
|
2002 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
@@ -2005,22 +2009,22 @@ msgstr ""
|
|
2005 |
"lahko zazna klike na kateremkoli oglasu, ampak je rahlo manj zanesljiv"
|
2006 |
|
2007 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
2008 |
-
#: includes/functions.php:
|
2009 |
msgid "Click fraud protection"
|
2010 |
msgstr "Zaščita pred goljufijo s kliki"
|
2011 |
|
2012 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
2013 |
-
#: includes/functions.php:
|
2014 |
msgid "Globally enable click fraud protection for selected blocks."
|
2015 |
msgstr "Globalno omogočite zaščito pred goljufijo s kliki za izbrane bloke."
|
2016 |
|
2017 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
2018 |
-
#: includes/functions.php:
|
2019 |
msgid "Protection time"
|
2020 |
msgstr "Čas zaščite"
|
2021 |
|
2022 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
2023 |
-
#: includes/functions.php:
|
2024 |
msgid ""
|
2025 |
"Time period in days in which blocks with enabled click fraud protection will "
|
2026 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
@@ -2030,12 +2034,12 @@ msgstr ""
|
|
2030 |
"za krajša obdobja."
|
2031 |
|
2032 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
2033 |
-
#: includes/functions.php:
|
2034 |
msgid "Report header image"
|
2035 |
msgstr "Slika v glavi poročila"
|
2036 |
|
2037 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
2038 |
-
#: includes/functions.php:
|
2039 |
msgid ""
|
2040 |
"Image or logo to be displayed in the header of the statistins report. "
|
2041 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -2046,17 +2050,17 @@ msgstr ""
|
|
2046 |
"ponastavitev na privzeto sliko."
|
2047 |
|
2048 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
2049 |
-
#: includes/functions.php:
|
2050 |
msgid "Select or upload header image"
|
2051 |
msgstr "Izberi ali naloži sliko glave"
|
2052 |
|
2053 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
2054 |
-
#: includes/functions.php:
|
2055 |
msgid "Report header title"
|
2056 |
msgstr "Naslov v glavi poročila"
|
2057 |
|
2058 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
2059 |
-
#: includes/functions.php:
|
2060 |
msgid ""
|
2061 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
2062 |
"code, clear to reset to default text."
|
@@ -2065,12 +2069,12 @@ msgstr ""
|
|
2065 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2066 |
|
2067 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
2068 |
-
#: includes/functions.php:
|
2069 |
msgid "Report header description"
|
2070 |
msgstr "Opis v glavi poročila"
|
2071 |
|
2072 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
2073 |
-
#: includes/functions.php:
|
2074 |
msgid ""
|
2075 |
"Description to be displayed in the header of the statistics report. Text or "
|
2076 |
"HTML code, clear to reset to default text."
|
@@ -2079,12 +2083,12 @@ msgstr ""
|
|
2079 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2080 |
|
2081 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
2082 |
-
#: includes/functions.php:
|
2083 |
msgid "Report footer"
|
2084 |
msgstr "Noga poročila"
|
2085 |
|
2086 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
2087 |
-
#: includes/functions.php:
|
2088 |
msgid ""
|
2089 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2090 |
"to default text."
|
@@ -2093,139 +2097,139 @@ msgstr ""
|
|
2093 |
"koda, pobrišite za ponastavitev na privzeto besedilo."
|
2094 |
|
2095 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
2096 |
-
#: includes/functions.php:
|
2097 |
msgid "Public report key"
|
2098 |
msgstr "Ključ za javno poročilo"
|
2099 |
|
2100 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
2101 |
-
#: includes/functions.php:
|
2102 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
2103 |
msgstr ""
|
2104 |
"Niz za ustvaritev unikatnega IDja poročila. Pobrišite za ponastavitev na "
|
2105 |
"privzeto vrednost."
|
2106 |
|
2107 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
2108 |
-
#: includes/functions.php:
|
2109 |
msgid "Are you sure you want to clear all exceptions for block"
|
2110 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok"
|
2111 |
|
2112 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
2113 |
-
#: includes/functions.php:
|
2114 |
msgid "Clear all exceptions for block"
|
2115 |
msgstr "Pobriši vse izjeme za blok"
|
2116 |
|
2117 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2118 |
-
#: includes/functions.php:
|
2119 |
msgid "Are you sure you want to clear all exceptions?"
|
2120 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme?"
|
2121 |
|
2122 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
2123 |
-
#: includes/functions.php:
|
2124 |
msgid "Clear all exceptions for all blocks"
|
2125 |
msgstr "Pobriši vse izjeme za vse bloke"
|
2126 |
|
2127 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
2128 |
-
#: includes/functions.php:
|
2129 |
msgid "Type"
|
2130 |
msgstr "Vrsta"
|
2131 |
|
2132 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
2133 |
-
#: includes/functions.php:
|
2134 |
msgid "View"
|
2135 |
msgstr "Poglej"
|
2136 |
|
2137 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
2138 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
2139 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
2140 |
-
#: includes/functions.php:
|
2141 |
-
#: includes/functions.php:
|
2142 |
-
#: includes/preview.php:2306 settings.php:
|
2143 |
msgid "Edit"
|
2144 |
msgstr "Uredi"
|
2145 |
|
2146 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2147 |
-
#: includes/functions.php:
|
2148 |
msgid "Are you sure you want to clear all exceptions for"
|
2149 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za"
|
2150 |
|
2151 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2152 |
-
#: includes/functions.php:
|
2153 |
msgid "Clear all exceptions for"
|
2154 |
msgstr "Pobriši vse izjeme za"
|
2155 |
|
2156 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2157 |
-
#: includes/functions.php:
|
2158 |
msgid "No exceptions"
|
2159 |
msgstr "Brez izjem"
|
2160 |
|
2161 |
#. translators: %s: Ad Inserter Pro
|
2162 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2163 |
-
#: includes/functions.php:
|
2164 |
msgid "%s options for network blogs"
|
2165 |
msgstr "%s izbire za omrežne bloge"
|
2166 |
|
2167 |
#. translators: %s: Ad Inserter Pro
|
2168 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2169 |
-
#: includes/functions.php:
|
2170 |
msgid "Enable %s widgets for sub-sites"
|
2171 |
msgstr "Omogoči %s gradnik za pod-spletišča"
|
2172 |
|
2173 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2174 |
-
#: includes/functions.php:
|
2175 |
msgid "Widgets"
|
2176 |
msgstr "Gradniki"
|
2177 |
|
2178 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2179 |
-
#: includes/functions.php:
|
2180 |
msgid "Enable PHP code processing for sub-sites"
|
2181 |
msgstr "Omogoči procesiranje PHP kode za pod-spletišča"
|
2182 |
|
2183 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2184 |
-
#: includes/functions.php:
|
2185 |
msgid "PHP Processing"
|
2186 |
msgstr "PHP Procesiranje"
|
2187 |
|
2188 |
#. translators: %s: Ad Inserter Pro
|
2189 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2190 |
-
#: includes/functions.php:
|
2191 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2192 |
msgstr ""
|
2193 |
"Omogoči %s izjeme blokov v urejevalniku prispevkov/strani za pod-spletišča"
|
2194 |
|
2195 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2196 |
-
#: includes/functions.php:
|
2197 |
msgid "Post/Page exceptions"
|
2198 |
msgstr "Izjeme prispevkov/strani"
|
2199 |
|
2200 |
#. translators: %s: Ad Inserter Pro
|
2201 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2202 |
-
#: includes/functions.php:
|
2203 |
msgid "Enable %s settings page for sub-sites"
|
2204 |
msgstr "Omogoči nastavitveno stran %s za pod-spletišča"
|
2205 |
|
2206 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2207 |
-
#: includes/functions.php:
|
2208 |
msgid "Settings page"
|
2209 |
msgstr "Stran z nastavitvami"
|
2210 |
|
2211 |
#. translators: %s: Ad Inserter Pro
|
2212 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2213 |
-
#: includes/functions.php:
|
2214 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2215 |
msgstr "Omogoči %s nastavitve glavnega spletišča za uporabo na vseh blogih"
|
2216 |
|
2217 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2218 |
-
#: includes/functions.php:
|
2219 |
msgid "Main site settings used for all blogs"
|
2220 |
msgstr "Nastavitve glavnega spletišča uporabljene na vseh blogih"
|
2221 |
|
2222 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2223 |
-
#: includes/functions.php:
|
2224 |
msgid "Ad Blocking Detection"
|
2225 |
msgstr "Zaznavanje Blokiranja Oglasov"
|
2226 |
|
2227 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2228 |
-
#: includes/functions.php:
|
2229 |
msgid ""
|
2230 |
"Standard method is reliable but should be used only if Advanced method does "
|
2231 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2240,7 +2244,7 @@ msgstr ""
|
|
2240 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2241 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2242 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2243 |
-
#: includes/functions.php:
|
2244 |
#: includes/functions.php:4292
|
2245 |
msgid "AD BLOCKING"
|
2246 |
msgstr "BLOKIRANJE OGLASOV"
|
@@ -2249,7 +2253,7 @@ msgstr "BLOKIRANJE OGLASOV"
|
|
2249 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2250 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2251 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2252 |
-
#: includes/functions.php:
|
2253 |
#: includes/functions.php:4266 includes/functions.php:4293
|
2254 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2255 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
@@ -2257,14 +2261,14 @@ msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
|
2257 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2258 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2259 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2260 |
-
#: includes/functions.php:
|
2261 |
#: includes/functions.php:4299
|
2262 |
msgid "NO AD BLOCKING"
|
2263 |
msgstr "NI BLOKIRANJA OGLASOV"
|
2264 |
|
2265 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2266 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2267 |
-
#: includes/functions.php:
|
2268 |
msgid "AD BLOCKING REPLACEMENT"
|
2269 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2270 |
|
@@ -2426,9 +2430,9 @@ msgstr "za zadnjih 365 dni"
|
|
2426 |
msgid "Invalid %s version. Continue?"
|
2427 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2428 |
|
2429 |
-
#: includes/functions.php:944 includes/functions.php:980 settings.php:
|
2430 |
-
#: settings.php:
|
2431 |
-
#: settings.php:
|
2432 |
msgid "Click to select black or white list"
|
2433 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2434 |
|
@@ -2479,14 +2483,14 @@ msgid "Select wanted days in week"
|
|
2479 |
msgstr "Izberite želene dneve v tednu"
|
2480 |
|
2481 |
#. translators: %s: Ad Inserter Pro
|
2482 |
-
#: includes/functions.php:
|
2483 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2484 |
msgstr ""
|
2485 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2486 |
"Spletišča"
|
2487 |
|
2488 |
#. translators: %s: Ad Inserter Pro
|
2489 |
-
#: includes/functions.php:
|
2490 |
msgid "Show link to %s on the Sites page"
|
2491 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2492 |
|
@@ -2514,7 +2518,7 @@ msgstr "Zapri urejevalnik polnila"
|
|
2514 |
msgid "Placeholder"
|
2515 |
msgstr "Polnilo"
|
2516 |
|
2517 |
-
#: includes/placeholders.php:363 settings.php:
|
2518 |
msgid "Size"
|
2519 |
msgstr "Velikost"
|
2520 |
|
@@ -2647,11 +2651,11 @@ msgstr "Prekliči"
|
|
2647 |
msgid "Ad Blocking Detected Message Preview"
|
2648 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2649 |
|
2650 |
-
#: includes/preview-adb.php:348 settings.php:
|
2651 |
msgid "Message CSS"
|
2652 |
msgstr "CSS sporočila"
|
2653 |
|
2654 |
-
#: includes/preview-adb.php:353 settings.php:
|
2655 |
msgid "Overlay CSS"
|
2656 |
msgstr "CSS prevleke"
|
2657 |
|
@@ -2687,7 +2691,7 @@ msgstr "div za ovijanje"
|
|
2687 |
msgid "background"
|
2688 |
msgstr "ozadje"
|
2689 |
|
2690 |
-
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:
|
2691 |
msgid "Alignment"
|
2692 |
msgstr "Poravnava"
|
2693 |
|
@@ -2832,7 +2836,7 @@ msgstr ""
|
|
2832 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2833 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2834 |
|
2835 |
-
#: settings.php:
|
2836 |
msgid ""
|
2837 |
"Settings for individual exceptions have been updated. Please check all "
|
2838 |
"blocks that have exceptions and and then save settings."
|
@@ -2840,32 +2844,32 @@ msgstr ""
|
|
2840 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
2841 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
2842 |
|
2843 |
-
#: settings.php:
|
2844 |
msgid "Online documentation"
|
2845 |
msgstr "Spletna Dokumentacija"
|
2846 |
|
2847 |
-
#: settings.php:
|
2848 |
msgid "Show AdSense ad units"
|
2849 |
msgstr "Pokaži oglasne enote AdSense"
|
2850 |
|
2851 |
-
#: settings.php:
|
2852 |
msgid "Edit ads.txt file"
|
2853 |
msgstr "Uredi datoteko ads.txt"
|
2854 |
|
2855 |
-
#: settings.php:
|
2856 |
msgid "Check theme for available positions for automatic insertion"
|
2857 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2858 |
|
2859 |
-
#: settings.php:
|
2860 |
msgid "List all blocks"
|
2861 |
msgstr "Izpiši seznam vseh blokov"
|
2862 |
|
2863 |
-
#: settings.php:
|
2864 |
msgid "Loaded plugin JavaScript file version"
|
2865 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2866 |
|
2867 |
#. translators: %s: HTML tags
|
2868 |
-
#: settings.php:
|
2869 |
msgid ""
|
2870 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2871 |
"due to inappropriate caching."
|
@@ -2873,7 +2877,7 @@ msgstr ""
|
|
2873 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2874 |
"zaradi nepravilnega predpomnjenja."
|
2875 |
|
2876 |
-
#: settings.php:
|
2877 |
msgid ""
|
2878 |
"Missing version parameter of the JavaScript file, probably due to "
|
2879 |
"inappropriate caching."
|
@@ -2881,7 +2885,7 @@ msgstr ""
|
|
2881 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2882 |
"predpomnjenja."
|
2883 |
|
2884 |
-
#: settings.php:
|
2885 |
msgid ""
|
2886 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2887 |
"caching."
|
@@ -2889,7 +2893,7 @@ msgstr ""
|
|
2889 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2890 |
"zaradi nepravilnega predpomnjenja."
|
2891 |
|
2892 |
-
#: settings.php:
|
2893 |
msgid ""
|
2894 |
"Please delete browser's cache and all other caches used and then reload this "
|
2895 |
"page."
|
@@ -2897,12 +2901,12 @@ msgstr ""
|
|
2897 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2898 |
"potem na novo naložite to stran."
|
2899 |
|
2900 |
-
#: settings.php:
|
2901 |
msgid "Loaded plugin CSS file version"
|
2902 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2903 |
|
2904 |
#. translators: %s: HTML tags
|
2905 |
-
#: settings.php:
|
2906 |
msgid ""
|
2907 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2908 |
"inappropriate caching."
|
@@ -2910,7 +2914,7 @@ msgstr ""
|
|
2910 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2911 |
"nepravilnega predpomnjenja."
|
2912 |
|
2913 |
-
#: settings.php:
|
2914 |
msgid ""
|
2915 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2916 |
"caching."
|
@@ -2918,39 +2922,39 @@ msgstr ""
|
|
2918 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2919 |
"predpomnjenja."
|
2920 |
|
2921 |
-
#: settings.php:
|
2922 |
msgid ""
|
2923 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2924 |
msgstr ""
|
2925 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2926 |
"nepravilnega predpomnjenja."
|
2927 |
|
2928 |
-
#: settings.php:
|
2929 |
msgid "WARNING"
|
2930 |
msgstr "OPOZORILO"
|
2931 |
|
2932 |
#. translators: %s: HTML tags
|
2933 |
-
#: settings.php:
|
2934 |
msgid "Page may %s not be loaded properly. %s"
|
2935 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2936 |
|
2937 |
-
#: settings.php:
|
2938 |
msgid ""
|
2939 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2940 |
msgstr ""
|
2941 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2942 |
"JavaScript ali slikovne datoteke."
|
2943 |
|
2944 |
-
#: settings.php:
|
2945 |
msgid "SAFE MODE"
|
2946 |
msgstr "VARNI NAČIN"
|
2947 |
|
2948 |
#. translators: %s: HTML tags
|
2949 |
-
#: settings.php:
|
2950 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2951 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
2952 |
|
2953 |
-
#: settings.php:
|
2954 |
msgid ""
|
2955 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2956 |
"Debugging"
|
@@ -2958,23 +2962,23 @@ msgstr ""
|
|
2958 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
2959 |
"na zavihek [*] / zavihek Razhroščevanje"
|
2960 |
|
2961 |
-
#: settings.php:
|
2962 |
msgid "Debugging functions enabled - some code is not inserted"
|
2963 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
2964 |
|
2965 |
-
#: settings.php:
|
2966 |
msgid "Group name"
|
2967 |
msgstr "Ime skupine"
|
2968 |
|
2969 |
-
#: settings.php:
|
2970 |
msgid "Option name"
|
2971 |
msgstr "Ime različice"
|
2972 |
|
2973 |
-
#: settings.php:
|
2974 |
msgid "Share"
|
2975 |
msgstr "Delež"
|
2976 |
|
2977 |
-
#: settings.php:
|
2978 |
msgid ""
|
2979 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2980 |
"option is not defined it will be calculated automatically. Leave all share "
|
@@ -2984,11 +2988,11 @@ msgstr ""
|
|
2984 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2985 |
"prazne za enakomerno porazdelitev deležev različic."
|
2986 |
|
2987 |
-
#: settings.php:
|
2988 |
msgid "Time"
|
2989 |
msgstr "Čas"
|
2990 |
|
2991 |
-
#: settings.php:
|
2992 |
msgid ""
|
2993 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2994 |
"Leave all time fields empty for no timed rotation."
|
@@ -2996,162 +3000,162 @@ msgstr ""
|
|
2996 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
2997 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
2998 |
|
2999 |
-
#: settings.php:
|
3000 |
msgid "General Settings"
|
3001 |
msgstr "Splošne Nastavitve"
|
3002 |
|
3003 |
-
#: settings.php:
|
3004 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3005 |
msgstr ""
|
3006 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3007 |
|
3008 |
-
#: settings.php:
|
3009 |
msgid "Toggle tools"
|
3010 |
msgstr "Preklopi orodja"
|
3011 |
|
3012 |
-
#: settings.php:
|
3013 |
msgid "Process PHP code in block"
|
3014 |
msgstr "Procesiraj PHP kodo v bloku"
|
3015 |
|
3016 |
-
#: settings.php:
|
3017 |
msgid "Disable insertion of this block"
|
3018 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3019 |
|
3020 |
-
#: settings.php:
|
3021 |
msgid "Toggle code generator"
|
3022 |
msgstr "Preklopi generator kode"
|
3023 |
|
3024 |
-
#: settings.php:
|
3025 |
msgid "Toggle rotation editor"
|
3026 |
msgstr "Preklopi urejevalnik rotacije"
|
3027 |
|
3028 |
-
#: settings.php:
|
3029 |
msgid "Open visual HTML editor"
|
3030 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3031 |
|
3032 |
-
#: settings.php:
|
3033 |
msgid "Clear block"
|
3034 |
msgstr "Počisti blok"
|
3035 |
|
3036 |
-
#: settings.php:
|
3037 |
msgid "Copy block"
|
3038 |
msgstr "Kopiraj blok"
|
3039 |
|
3040 |
-
#: settings.php:
|
3041 |
msgid "Paste name"
|
3042 |
msgstr "Prilepi ime"
|
3043 |
|
3044 |
-
#: settings.php:
|
3045 |
msgid "Paste code"
|
3046 |
msgstr "Prilepi kodo"
|
3047 |
|
3048 |
-
#: settings.php:
|
3049 |
msgid "Paste settings"
|
3050 |
msgstr "Prilepi nastavitve"
|
3051 |
|
3052 |
-
#: settings.php:
|
3053 |
msgid "Paste block (name, code and settings)"
|
3054 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3055 |
|
3056 |
-
#: settings.php:
|
3057 |
msgid "Rotation groups"
|
3058 |
msgstr "Skupine za rotacijo"
|
3059 |
|
3060 |
-
#: settings.php:
|
3061 |
msgid "Remove option"
|
3062 |
msgstr "Odstrani različico"
|
3063 |
|
3064 |
-
#: settings.php:
|
3065 |
msgid "Add option"
|
3066 |
msgstr "Dodaj različico"
|
3067 |
|
3068 |
-
#: settings.php:
|
3069 |
msgid "Import code"
|
3070 |
msgstr "Uvozi kodo"
|
3071 |
|
3072 |
-
#: settings.php:
|
3073 |
msgid "Generate code"
|
3074 |
msgstr "Generiraj kodo"
|
3075 |
|
3076 |
-
#: settings.php:
|
3077 |
msgid "Banner"
|
3078 |
msgstr "Pasica"
|
3079 |
|
3080 |
-
#: settings.php:
|
3081 |
msgid "Image"
|
3082 |
msgstr "Slika"
|
3083 |
|
3084 |
-
#: settings.php:
|
3085 |
msgid "Link"
|
3086 |
msgstr "Povezava"
|
3087 |
|
3088 |
-
#: settings.php:
|
3089 |
msgid "Open link in a new tab"
|
3090 |
msgstr "Odpri povezavo v novem zavihku"
|
3091 |
|
3092 |
-
#: settings.php:
|
3093 |
msgid "Select Image"
|
3094 |
msgstr "Izberi Sliko"
|
3095 |
|
3096 |
-
#: settings.php:
|
3097 |
msgid "Select Placeholder"
|
3098 |
msgstr "Izberi Polnilo"
|
3099 |
|
3100 |
-
#: settings.php:
|
3101 |
msgid "Comment"
|
3102 |
msgstr "Komentar"
|
3103 |
|
3104 |
-
#: settings.php:
|
3105 |
msgctxt "AdSense"
|
3106 |
msgid "Publisher ID"
|
3107 |
msgstr "ID založnika"
|
3108 |
|
3109 |
-
#: settings.php:
|
3110 |
msgctxt "AdSense"
|
3111 |
msgid "Ad Slot ID"
|
3112 |
msgstr "ID mesta"
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "Ad Type"
|
3116 |
msgstr "Vrsta"
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid "AMP Ad"
|
3120 |
msgstr "AMP Oglas"
|
3121 |
|
3122 |
-
#: settings.php:
|
3123 |
msgid "Show ad units from your AdSense account"
|
3124 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3125 |
|
3126 |
-
#: settings.php:
|
3127 |
msgid "AdSense ad units"
|
3128 |
msgstr "Oglasne enote AdSense"
|
3129 |
|
3130 |
-
#: settings.php:
|
3131 |
msgctxt "AdSense"
|
3132 |
msgid "Layout"
|
3133 |
msgstr "Postavitev"
|
3134 |
|
3135 |
-
#: settings.php:
|
3136 |
msgctxt "AdSense"
|
3137 |
msgid "Layout Key"
|
3138 |
msgstr "Ključ postavitve"
|
3139 |
|
3140 |
-
#: settings.php:
|
3141 |
msgid "Full width"
|
3142 |
msgstr "Celotna širina"
|
3143 |
|
3144 |
-
#: settings.php:
|
3145 |
msgctxt "Full width"
|
3146 |
msgid "Enabled"
|
3147 |
msgstr "Omogočena"
|
3148 |
|
3149 |
-
#: settings.php:
|
3150 |
msgctxt "Full width"
|
3151 |
msgid "Disabled"
|
3152 |
msgstr "Onemogočena"
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid ""
|
3156 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3157 |
"Cookie or Referer (domain)"
|
@@ -3159,28 +3163,28 @@ msgstr ""
|
|
3159 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3160 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3161 |
|
3162 |
-
#: settings.php:
|
3163 |
msgid "Lists"
|
3164 |
msgstr "Seznami"
|
3165 |
|
3166 |
-
#: settings.php:
|
3167 |
msgid "Widget, Shortcode and PHP function call"
|
3168 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid "Manual"
|
3172 |
msgstr "Ročno"
|
3173 |
|
3174 |
-
#: settings.php:
|
3175 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3176 |
msgstr ""
|
3177 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3178 |
|
3179 |
-
#: settings.php:
|
3180 |
msgid "Devices"
|
3181 |
msgstr "Naprave"
|
3182 |
|
3183 |
-
#: settings.php:
|
3184 |
msgid ""
|
3185 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3186 |
"feeds), Filter, Scheduling, General tag"
|
@@ -3188,15 +3192,15 @@ msgstr ""
|
|
3188 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3189 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3190 |
|
3191 |
-
#: settings.php:
|
3192 |
msgid "Misc"
|
3193 |
msgstr "Razno"
|
3194 |
|
3195 |
-
#: settings.php:
|
3196 |
msgid "Preview code and alignment"
|
3197 |
msgstr "Predogled kode in poravnave"
|
3198 |
|
3199 |
-
#: settings.php:
|
3200 |
msgid ""
|
3201 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3202 |
"editor is active before saving settings."
|
@@ -3204,15 +3208,15 @@ msgstr ""
|
|
3204 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3205 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3206 |
|
3207 |
-
#: settings.php:
|
3208 |
msgid "Enable insertion on posts"
|
3209 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3210 |
|
3211 |
-
#: settings.php:
|
3212 |
msgid "Posts"
|
3213 |
msgstr "Prispevki"
|
3214 |
|
3215 |
-
#: settings.php:
|
3216 |
msgid ""
|
3217 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3218 |
"page or theme homepage (available positions may depend on hooks used by the "
|
@@ -3222,43 +3226,43 @@ msgstr ""
|
|
3222 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3223 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3224 |
|
3225 |
-
#: settings.php:
|
3226 |
msgid "Homepage"
|
3227 |
msgstr "Domača stran"
|
3228 |
|
3229 |
-
#: settings.php:
|
3230 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3231 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3232 |
|
3233 |
-
#: settings.php:
|
3234 |
msgid "Category pages"
|
3235 |
msgstr "Strani kategorij"
|
3236 |
|
3237 |
-
#: settings.php:
|
3238 |
msgid "Enable insertion on static pages"
|
3239 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3240 |
|
3241 |
-
#: settings.php:
|
3242 |
msgid "Static pages"
|
3243 |
msgstr "Statične strani"
|
3244 |
|
3245 |
-
#: settings.php:
|
3246 |
msgid "Enable insertion on search blog pages"
|
3247 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3248 |
|
3249 |
-
#: settings.php:
|
3250 |
msgid "Search pages"
|
3251 |
msgstr "Iskalne strani"
|
3252 |
|
3253 |
-
#: settings.php:
|
3254 |
msgid "Enable insertion on tag or archive blog pages"
|
3255 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3259 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgid ""
|
3263 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3264 |
"be configured on the individual post/page editor page (in the settings below "
|
@@ -3268,7 +3272,7 @@ msgstr ""
|
|
3268 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3269 |
"nastavitvah pod urejevalnikom)."
|
3270 |
|
3271 |
-
#: settings.php:
|
3272 |
msgid ""
|
3273 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3274 |
"enabled they can be configured on the individual post/page editor page (in "
|
@@ -3278,13 +3282,13 @@ msgstr ""
|
|
3278 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3279 |
"strani (v nastavitvah pod urejevalnikom)."
|
3280 |
|
3281 |
-
#: settings.php:
|
3282 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3283 |
msgstr ""
|
3284 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3285 |
|
3286 |
#. Translators: Enabled means...
|
3287 |
-
#: settings.php:
|
3288 |
msgid ""
|
3289 |
"means the insertion for this block is enabled by default and disabled for "
|
3290 |
"exceptions."
|
@@ -3293,7 +3297,7 @@ msgstr ""
|
|
3293 |
"izjeme."
|
3294 |
|
3295 |
#. Translators: Disabled means...
|
3296 |
-
#: settings.php:
|
3297 |
msgid ""
|
3298 |
"means the insertion for this block is disabled by default and enabled for "
|
3299 |
"exceptions."
|
@@ -3301,7 +3305,7 @@ msgstr ""
|
|
3301 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3302 |
"izjeme."
|
3303 |
|
3304 |
-
#: settings.php:
|
3305 |
msgid ""
|
3306 |
"When individual post/page exceptions are enabled they can be configured on "
|
3307 |
"the individual post/page editor page (in the settings below the editor)."
|
@@ -3310,27 +3314,27 @@ msgstr ""
|
|
3310 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3311 |
"urejevalnikom)."
|
3312 |
|
3313 |
-
#: settings.php:
|
3314 |
msgid ""
|
3315 |
"No exception for post or static page defined. Block will not be inserted."
|
3316 |
msgstr ""
|
3317 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3318 |
|
3319 |
-
#: settings.php:
|
3320 |
msgctxt "post"
|
3321 |
msgid "Type"
|
3322 |
msgstr "Vrsta"
|
3323 |
|
3324 |
#. translators: %d: block number
|
3325 |
-
#: settings.php:
|
3326 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
3327 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
|
3328 |
|
3329 |
-
#: settings.php:
|
3330 |
msgid "Insertion"
|
3331 |
msgstr "Vstavljanje"
|
3332 |
|
3333 |
-
#: settings.php:
|
3334 |
msgid ""
|
3335 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3336 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3346,7 +3350,7 @@ msgstr ""
|
|
3346 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3347 |
"število pomeni štetje z nasprotne smeri"
|
3348 |
|
3349 |
-
#: settings.php:
|
3350 |
msgid ""
|
3351 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3352 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3361,7 +3365,7 @@ msgstr ""
|
|
3361 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3362 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3363 |
|
3364 |
-
#: settings.php:
|
3365 |
msgid ""
|
3366 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3367 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
@@ -3370,7 +3374,7 @@ msgstr ""
|
|
3370 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3371 |
"izvlečki"
|
3372 |
|
3373 |
-
#: settings.php:
|
3374 |
msgid ""
|
3375 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3376 |
"numbers, %N means every N posts, empty means all posts"
|
@@ -3379,7 +3383,7 @@ msgstr ""
|
|
3379 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3380 |
"prispevki"
|
3381 |
|
3382 |
-
#: settings.php:
|
3383 |
msgid ""
|
3384 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3385 |
"numbers, %N means every N comments, empty means all comments"
|
@@ -3388,44 +3392,44 @@ msgstr ""
|
|
3388 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3389 |
"vsi komentarji"
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid "Toggle paragraph counting settings"
|
3393 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3394 |
|
3395 |
-
#: settings.php:
|
3396 |
msgid "Toggle paragraph clearance settings"
|
3397 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3398 |
|
3399 |
-
#: settings.php:
|
3400 |
msgid "Toggle insertion filter settings"
|
3401 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3402 |
|
3403 |
-
#: settings.php:
|
3404 |
msgid "Toggle insertion and alignment icons"
|
3405 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3406 |
|
3407 |
-
#: settings.php:
|
3408 |
msgid "Custom CSS code for the wrapping div"
|
3409 |
msgstr "CSS koda po meri za div za ovijanje"
|
3410 |
|
3411 |
-
#: settings.php:
|
3412 |
-
#: settings.php:
|
3413 |
msgid "CSS code for the wrapping div, click to edit"
|
3414 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3415 |
|
3416 |
-
#: settings.php:
|
3417 |
msgid "HTML element"
|
3418 |
msgstr "HTML element"
|
3419 |
|
3420 |
-
#: settings.php:
|
3421 |
msgid "HTML element selector or comma separated list of selectors"
|
3422 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3423 |
|
3424 |
-
#: settings.php:
|
3425 |
msgid "Action"
|
3426 |
msgstr "Akcija"
|
3427 |
|
3428 |
-
#: settings.php:
|
3429 |
msgid ""
|
3430 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3431 |
"Server-side insertion inserts block when the page is generated but needs "
|
@@ -3435,50 +3439,50 @@ msgstr ""
|
|
3435 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3436 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3437 |
|
3438 |
-
#: settings.php:
|
3439 |
msgid "Code position"
|
3440 |
msgstr "Položaj kode"
|
3441 |
|
3442 |
-
#: settings.php:
|
3443 |
msgid ""
|
3444 |
"Page position where the code for client-side insertion will be inserted."
|
3445 |
msgstr ""
|
3446 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3447 |
|
3448 |
-
#: settings.php:
|
3449 |
msgid "Count"
|
3450 |
msgstr "Štej"
|
3451 |
|
3452 |
-
#: settings.php:
|
3453 |
msgid "paragraphs with tags"
|
3454 |
msgstr "odstavke z značkami"
|
3455 |
|
3456 |
-
#: settings.php:
|
3457 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3458 |
msgstr ""
|
3459 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3460 |
|
3461 |
-
#: settings.php:
|
3462 |
msgid "that have between"
|
3463 |
msgstr "ki imajo med"
|
3464 |
|
3465 |
-
#: settings.php:
|
3466 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3467 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3468 |
|
3469 |
-
#: settings.php:
|
3470 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3471 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3472 |
|
3473 |
-
#: settings.php:
|
3474 |
msgid "words"
|
3475 |
msgstr "besed"
|
3476 |
|
3477 |
-
#: settings.php:
|
3478 |
msgid "Comma separated texts"
|
3479 |
msgstr "Z vejico ločena besedila"
|
3480 |
|
3481 |
-
#: settings.php:
|
3482 |
msgid ""
|
3483 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3484 |
"settings page - tab [*] / tab General"
|
@@ -3487,38 +3491,38 @@ msgstr ""
|
|
3487 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3488 |
|
3489 |
#. Translators: %s: HTML tags
|
3490 |
-
#: settings.php:
|
3491 |
msgid "Count inside %s elements"
|
3492 |
msgstr "Štej znotraj elementov %s"
|
3493 |
|
3494 |
#. translators: inside [HTML tags] elements that contain
|
3495 |
-
#: settings.php:
|
3496 |
msgid "inside"
|
3497 |
msgstr "znotraj"
|
3498 |
|
3499 |
-
#: settings.php:
|
3500 |
msgid "Comma separated HTML tag names of container elements"
|
3501 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3502 |
|
3503 |
#. translators: inside [HTML tags] elements that contain
|
3504 |
-
#: settings.php:
|
3505 |
msgid "elements that"
|
3506 |
msgstr "elementov, ki"
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid "Post/Static page must have between"
|
3510 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3511 |
|
3512 |
-
#: settings.php:
|
3513 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3514 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3515 |
|
3516 |
-
#: settings.php:
|
3517 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3518 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3519 |
|
3520 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3521 |
-
#: settings.php:
|
3522 |
msgid "paragraph"
|
3523 |
msgid_plural "paragraphs"
|
3524 |
msgstr[0] "odstavek"
|
@@ -3526,11 +3530,11 @@ msgstr[1] "odstavka"
|
|
3526 |
msgstr[2] "odstavke"
|
3527 |
msgstr[3] "odstavkov"
|
3528 |
|
3529 |
-
#: settings.php:
|
3530 |
msgid "Minimum number of words in paragraphs above"
|
3531 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3532 |
|
3533 |
-
#: settings.php:
|
3534 |
msgid ""
|
3535 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3536 |
"numbers"
|
@@ -3538,128 +3542,128 @@ msgstr ""
|
|
3538 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3539 |
"številkami odstavkov"
|
3540 |
|
3541 |
-
#: settings.php:
|
3542 |
msgid "In"
|
3543 |
msgstr "V"
|
3544 |
|
3545 |
-
#: settings.php:
|
3546 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3547 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3548 |
|
3549 |
-
#: settings.php:
|
3550 |
msgid "paragraphs above avoid"
|
3551 |
msgstr "odstavkih zgoraj se izogni"
|
3552 |
|
3553 |
-
#: settings.php:
|
3554 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3555 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3556 |
|
3557 |
-
#: settings.php:
|
3558 |
msgid "paragraphs below avoid"
|
3559 |
msgstr "odstavkih spodaj se izogni"
|
3560 |
|
3561 |
-
#: settings.php:
|
3562 |
msgid "If text is found"
|
3563 |
msgstr "Če je besedilo najdeno"
|
3564 |
|
3565 |
-
#: settings.php:
|
3566 |
msgid "check up to"
|
3567 |
msgstr "preveri do"
|
3568 |
|
3569 |
-
#: settings.php:
|
3570 |
msgctxt "check up to"
|
3571 |
msgid "paragraphs"
|
3572 |
msgstr "odstavkov"
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid "Categories"
|
3576 |
msgstr "Kategorije"
|
3577 |
|
3578 |
-
#: settings.php:
|
3579 |
msgid "Toggle category editor"
|
3580 |
msgstr "Preklopi urejevalnik kategorij"
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid "Comma separated category slugs"
|
3584 |
msgstr "Z vejico ločeni ključi kategorij"
|
3585 |
|
3586 |
-
#: settings.php:
|
3587 |
msgid "Blacklist categories"
|
3588 |
msgstr "Črni seznam kategorij"
|
3589 |
|
3590 |
-
#: settings.php:
|
3591 |
msgid "Whitelist categories"
|
3592 |
msgstr "Beli seznam kategorij"
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid "Tags"
|
3596 |
msgstr "Oznake"
|
3597 |
|
3598 |
-
#: settings.php:
|
3599 |
msgid "Toggle tag editor"
|
3600 |
msgstr "Preklopi urejevalnik oznak"
|
3601 |
|
3602 |
-
#: settings.php:
|
3603 |
msgid "Comma separated tag slugs"
|
3604 |
msgstr "Z vejico ločeni ključi oznak"
|
3605 |
|
3606 |
-
#: settings.php:
|
3607 |
msgid "Blacklist tags"
|
3608 |
msgstr "Črni seznam oznak"
|
3609 |
|
3610 |
-
#: settings.php:
|
3611 |
msgid "Whitelist tags"
|
3612 |
msgstr "Beli seznam oznak"
|
3613 |
|
3614 |
-
#: settings.php:
|
3615 |
msgid "Taxonomies"
|
3616 |
msgstr "Taksonomije"
|
3617 |
|
3618 |
-
#: settings.php:
|
3619 |
msgid "Toggle taxonomy editor"
|
3620 |
msgstr "Preklopi urejevalnik taksonomij"
|
3621 |
|
3622 |
-
#: settings.php:
|
3623 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3624 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3625 |
|
3626 |
-
#: settings.php:
|
3627 |
msgid "Blacklist taxonomies"
|
3628 |
msgstr "Črni seznam taksonomij"
|
3629 |
|
3630 |
-
#: settings.php:
|
3631 |
msgid "Whitelist taxonomies"
|
3632 |
msgstr "Beli seznam taksonomij"
|
3633 |
|
3634 |
-
#: settings.php:
|
3635 |
msgid "Post IDs"
|
3636 |
msgstr "ID-ji prispevkov"
|
3637 |
|
3638 |
-
#: settings.php:
|
3639 |
msgid "Toggle post/page ID editor"
|
3640 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3641 |
|
3642 |
-
#: settings.php:
|
3643 |
msgid "Comma separated post/page IDs"
|
3644 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3645 |
|
3646 |
-
#: settings.php:
|
3647 |
msgid "Blacklist IDs"
|
3648 |
msgstr "Črni seznam ID-jev"
|
3649 |
|
3650 |
-
#: settings.php:
|
3651 |
msgid "Whitelist IDs"
|
3652 |
msgstr "Beli seznam ID-jev"
|
3653 |
|
3654 |
-
#: settings.php:
|
3655 |
msgid "Urls"
|
3656 |
msgstr "Url-ji"
|
3657 |
|
3658 |
-
#: settings.php:
|
3659 |
msgid "Toggle url editor"
|
3660 |
msgstr "Preklopi urejevalnik url-jev"
|
3661 |
|
3662 |
-
#: settings.php:
|
3663 |
msgid ""
|
3664 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3665 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3671,23 +3675,23 @@ msgstr ""
|
|
3671 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3672 |
"začetek*. *url-vzorec*, *url-konec)"
|
3673 |
|
3674 |
-
#: settings.php:
|
3675 |
msgid "Blacklist urls"
|
3676 |
msgstr "Črni seznam url-jev"
|
3677 |
|
3678 |
-
#: settings.php:
|
3679 |
msgid "Whitelist urls"
|
3680 |
msgstr "Beli seznam url-jev"
|
3681 |
|
3682 |
-
#: settings.php:
|
3683 |
msgid "Url parameters"
|
3684 |
msgstr "Url parametri"
|
3685 |
|
3686 |
-
#: settings.php:
|
3687 |
msgid "Toggle url parameter and cookie editor"
|
3688 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3689 |
|
3690 |
-
#: settings.php:
|
3691 |
msgid ""
|
3692 |
"Comma separated url query parameters or cookies with optional values (use "
|
3693 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
@@ -3696,23 +3700,23 @@ msgstr ""
|
|
3696 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3697 |
"'piškotek=vrednost')"
|
3698 |
|
3699 |
-
#: settings.php:
|
3700 |
msgid "Blacklist url parameters"
|
3701 |
msgstr "Črni seznam url parametrov"
|
3702 |
|
3703 |
-
#: settings.php:
|
3704 |
msgid "Whitelist url parameters"
|
3705 |
msgstr "Beli seznam url parametrov"
|
3706 |
|
3707 |
-
#: settings.php:
|
3708 |
msgid "Referrers"
|
3709 |
msgstr "Napotitelji"
|
3710 |
|
3711 |
-
#: settings.php:
|
3712 |
msgid "Toggle referer editor"
|
3713 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3714 |
|
3715 |
-
#: settings.php:
|
3716 |
msgid ""
|
3717 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3718 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
@@ -3720,48 +3724,48 @@ msgstr ""
|
|
3720 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3721 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3722 |
|
3723 |
-
#: settings.php:
|
3724 |
msgid "Blacklist referers"
|
3725 |
msgstr "Črni seznam napotiteljev"
|
3726 |
|
3727 |
-
#: settings.php:
|
3728 |
msgid "Whitelist referers"
|
3729 |
msgstr "Beli seznam napotiteljev"
|
3730 |
|
3731 |
-
#: settings.php:
|
3732 |
msgid "Clients"
|
3733 |
msgstr "Odjemalci"
|
3734 |
|
3735 |
-
#: settings.php:
|
3736 |
msgid "Toggle client editor"
|
3737 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3738 |
|
3739 |
-
#: settings.php:
|
3740 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3741 |
msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
|
3742 |
|
3743 |
-
#: settings.php:
|
3744 |
msgid "Blacklist clients"
|
3745 |
msgstr "Črni seznam odjemalcev"
|
3746 |
|
3747 |
-
#: settings.php:
|
3748 |
msgid "Whitelist clients"
|
3749 |
msgstr "Beli seznam odjemalcev"
|
3750 |
|
3751 |
-
#: settings.php:
|
3752 |
msgid "Enable widget for this block"
|
3753 |
msgstr "Omogočite gradnik za ta blok"
|
3754 |
|
3755 |
-
#: settings.php:
|
3756 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3757 |
msgstr ""
|
3758 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3759 |
|
3760 |
-
#: settings.php:
|
3761 |
msgid "Shortcode"
|
3762 |
msgstr "Kratka koda"
|
3763 |
|
3764 |
-
#: settings.php:
|
3765 |
msgid ""
|
3766 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3767 |
"If function is disabled for block it will return empty string."
|
@@ -3770,66 +3774,66 @@ msgstr ""
|
|
3770 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3771 |
"prazen niz."
|
3772 |
|
3773 |
-
#: settings.php:
|
3774 |
msgid "PHP function"
|
3775 |
msgstr "PHP funkcija"
|
3776 |
|
3777 |
-
#: settings.php:
|
3778 |
msgid "Client-side device detection"
|
3779 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3780 |
|
3781 |
-
#: settings.php:
|
3782 |
msgid "Server-side device detection"
|
3783 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "Use client-side detection to"
|
3787 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3788 |
|
3789 |
-
#: settings.php:
|
3790 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3791 |
msgstr ""
|
3792 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3793 |
|
3794 |
#. Translators: only on (the following devices): viewport names (devices)
|
3795 |
#. listed
|
3796 |
-
#: settings.php:
|
3797 |
msgid "only on"
|
3798 |
msgstr "samo na"
|
3799 |
|
3800 |
-
#: settings.php:
|
3801 |
msgid "Device min width %s px"
|
3802 |
msgstr "Najmanjša širina naprave %s px"
|
3803 |
|
3804 |
-
#: settings.php:
|
3805 |
msgid "Use server-side detection to insert block only for"
|
3806 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3807 |
|
3808 |
-
#: settings.php:
|
3809 |
msgid "Filter"
|
3810 |
msgstr "Filter"
|
3811 |
|
3812 |
-
#: settings.php:
|
3813 |
msgid "Word Count"
|
3814 |
msgstr "Število Besed"
|
3815 |
|
3816 |
-
#: settings.php:
|
3817 |
msgid "Scheduling"
|
3818 |
msgstr "Urnik"
|
3819 |
|
3820 |
-
#: settings.php:
|
3821 |
msgid "Display"
|
3822 |
msgstr "Prikaz"
|
3823 |
|
3824 |
-
#: settings.php:
|
3825 |
msgid "General"
|
3826 |
msgstr "Splošno"
|
3827 |
|
3828 |
-
#: settings.php:
|
3829 |
msgid "Old settings for AMP pages detected"
|
3830 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3831 |
|
3832 |
-
#: settings.php:
|
3833 |
msgid ""
|
3834 |
"To insert different codes on normal and AMP pages separate them with "
|
3835 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
@@ -3840,44 +3844,44 @@ msgstr ""
|
|
3840 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3841 |
"separatorja)."
|
3842 |
|
3843 |
-
#: settings.php:
|
3844 |
msgid "AMP pages"
|
3845 |
msgstr "AMP strani"
|
3846 |
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Enable insertion for Ajax requests"
|
3849 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid "Ajax requests"
|
3853 |
msgstr "Ajax zahteve"
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "Enable insertion in RSS feeds"
|
3857 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3858 |
|
3859 |
-
#: settings.php:
|
3860 |
msgid "RSS Feed"
|
3861 |
msgstr "RSS Vir"
|
3862 |
|
3863 |
-
#: settings.php:
|
3864 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3865 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3866 |
|
3867 |
-
#: settings.php:
|
3868 |
msgid "Error 404 page"
|
3869 |
msgstr "Stran napake 404"
|
3870 |
|
3871 |
-
#: settings.php:
|
3872 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3873 |
msgstr ""
|
3874 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3875 |
|
3876 |
-
#: settings.php:
|
3877 |
msgid "insertions"
|
3878 |
msgstr "vstavljanj"
|
3879 |
|
3880 |
-
#: settings.php:
|
3881 |
msgid ""
|
3882 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3883 |
"General)"
|
@@ -3885,15 +3889,15 @@ msgstr ""
|
|
3885 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3886 |
"zavihek Splošno)"
|
3887 |
|
3888 |
-
#: settings.php:
|
3889 |
msgid "Max blocks per page"
|
3890 |
msgstr "Največ blokov na stran"
|
3891 |
|
3892 |
-
#: settings.php:
|
3893 |
msgid "Insert for"
|
3894 |
msgstr "Vstavi za"
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid ""
|
3898 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3899 |
"currently active). Might speed up insertion on content pages when "
|
@@ -3903,26 +3907,26 @@ msgstr ""
|
|
3903 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3904 |
"filter the_content večkrat klican."
|
3905 |
|
3906 |
-
#: settings.php:
|
3907 |
msgid "Insert only in the loop"
|
3908 |
msgstr "Vstavi samo v zanki"
|
3909 |
|
3910 |
-
#: settings.php:
|
3911 |
msgid ""
|
3912 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3913 |
msgstr ""
|
3914 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3915 |
"Rocket"
|
3916 |
|
3917 |
-
#: settings.php:
|
3918 |
msgid "Disable caching"
|
3919 |
msgstr "Onemogoči predpomnjenje"
|
3920 |
|
3921 |
-
#: settings.php:
|
3922 |
msgid "Filter insertions"
|
3923 |
msgstr "Filtriraj vstavljanja"
|
3924 |
|
3925 |
-
#: settings.php:
|
3926 |
msgid ""
|
3927 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3928 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3934,56 +3938,56 @@ msgstr ""
|
|
3934 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
3935 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
3936 |
|
3937 |
-
#: settings.php:
|
3938 |
msgid "using"
|
3939 |
msgstr "z uporabo"
|
3940 |
|
3941 |
-
#: settings.php:
|
3942 |
msgid "Checked means specified calls are unwanted"
|
3943 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
3944 |
|
3945 |
-
#: settings.php:
|
3946 |
msgid "Invert filter"
|
3947 |
msgstr "Obrni filter"
|
3948 |
|
3949 |
-
#: settings.php:
|
3950 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3951 |
msgstr ""
|
3952 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3953 |
"omejitev"
|
3954 |
|
3955 |
-
#: settings.php:
|
3956 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3957 |
msgstr ""
|
3958 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3959 |
"omejitev"
|
3960 |
|
3961 |
-
#: settings.php:
|
3962 |
msgid "for"
|
3963 |
msgstr "za"
|
3964 |
|
3965 |
-
#: settings.php:
|
3966 |
msgid "days after publishing"
|
3967 |
msgstr "dni po objavi"
|
3968 |
|
3969 |
-
#: settings.php:
|
3970 |
msgid "Not available"
|
3971 |
msgstr "Ni na razpolago"
|
3972 |
|
3973 |
-
#: settings.php:
|
3974 |
msgid "Ad label"
|
3975 |
msgstr "Oznaka oglasa"
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgid "General tag"
|
3979 |
msgstr "Splošna oznaka"
|
3980 |
|
3981 |
-
#: settings.php:
|
3982 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3983 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
3984 |
|
3985 |
#. translators: %s: HTML tags
|
3986 |
-
#: settings.php:
|
3987 |
msgid ""
|
3988 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3989 |
"client-side device detection!"
|
@@ -3992,7 +3996,7 @@ msgstr ""
|
|
3992 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
3993 |
|
3994 |
#. translators: %s: HTML tags for text and link
|
3995 |
-
#: settings.php:
|
3996 |
msgid ""
|
3997 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3998 |
"side %s insertion. Use %s Server-side %s insertion."
|
@@ -4001,86 +4005,86 @@ msgstr ""
|
|
4001 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4002 |
"strežnika%s."
|
4003 |
|
4004 |
-
#: settings.php:
|
4005 |
msgid "Settings"
|
4006 |
msgstr "Nastavitve"
|
4007 |
|
4008 |
-
#: settings.php:
|
4009 |
msgid "Settings timestamp"
|
4010 |
msgstr "Časovni žig nastavitev"
|
4011 |
|
4012 |
-
#: settings.php:
|
4013 |
msgid "Are you sure you want to reset all settings?"
|
4014 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4015 |
|
4016 |
-
#: settings.php:
|
4017 |
msgid "Reset All Settings"
|
4018 |
msgstr "Ponastavi Vse Nastavitve"
|
4019 |
|
4020 |
-
#: settings.php:
|
4021 |
msgid "Viewports"
|
4022 |
msgstr "Pogledi"
|
4023 |
|
4024 |
-
#: settings.php:
|
4025 |
msgid "Hooks"
|
4026 |
msgstr "Ročice"
|
4027 |
|
4028 |
-
#: settings.php:
|
4029 |
msgid "Header"
|
4030 |
msgstr "Glava"
|
4031 |
|
4032 |
-
#: settings.php:
|
4033 |
msgid "Footer"
|
4034 |
msgstr "Noga"
|
4035 |
|
4036 |
-
#: settings.php:
|
4037 |
msgid "Debugging"
|
4038 |
msgstr "Razhroščevanje"
|
4039 |
|
4040 |
-
#: settings.php:
|
4041 |
msgid "Plugin priority"
|
4042 |
msgstr "Prednost vtičnika"
|
4043 |
|
4044 |
-
#: settings.php:
|
4045 |
msgid "Output buffering"
|
4046 |
msgstr "Predpomnjenje izhoda"
|
4047 |
|
4048 |
-
#: settings.php:
|
4049 |
msgid "Needed for position Above header but may not work with all themes"
|
4050 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4051 |
|
4052 |
-
#: settings.php:
|
4053 |
msgid "Syntax highlighting theme"
|
4054 |
msgstr "Tema za poudarjanje sintakse"
|
4055 |
|
4056 |
-
#: settings.php:
|
4057 |
msgctxt "no syntax highlighting themes"
|
4058 |
msgid "None"
|
4059 |
msgstr "Brez"
|
4060 |
|
4061 |
-
#: settings.php:
|
4062 |
msgid "No Syntax Highlighting"
|
4063 |
msgstr "Brez Poudarjanja Sintakse"
|
4064 |
|
4065 |
-
#: settings.php:
|
4066 |
msgctxt "syntax highlighting themes"
|
4067 |
msgid "Light"
|
4068 |
msgstr "Svetle"
|
4069 |
|
4070 |
-
#: settings.php:
|
4071 |
msgctxt "syntax highlighting themes"
|
4072 |
msgid "Dark"
|
4073 |
msgstr "Temne"
|
4074 |
|
4075 |
-
#: settings.php:
|
4076 |
msgid "Min. user role for ind. exceptions editing"
|
4077 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4078 |
|
4079 |
-
#: settings.php:
|
4080 |
msgid "Disable caching for logged in administrators"
|
4081 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4082 |
|
4083 |
-
#: settings.php:
|
4084 |
msgid ""
|
4085 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4086 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
@@ -4088,11 +4092,11 @@ msgstr ""
|
|
4088 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4089 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4090 |
|
4091 |
-
#: settings.php:
|
4092 |
msgid "Wait for jQuery"
|
4093 |
msgstr "Čakaj na jQuery"
|
4094 |
|
4095 |
-
#: settings.php:
|
4096 |
msgid ""
|
4097 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4098 |
"it will run the scripts that may need it"
|
@@ -4100,11 +4104,11 @@ msgstr ""
|
|
4100 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4101 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4102 |
|
4103 |
-
#: settings.php:
|
4104 |
msgid "Sticky widget mode"
|
4105 |
msgstr "Način za lepljive gradnike"
|
4106 |
|
4107 |
-
#: settings.php:
|
4108 |
msgid ""
|
4109 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4110 |
"mode works with most themes but may reload ads on page load."
|
@@ -4113,19 +4117,19 @@ msgstr ""
|
|
4113 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4114 |
"nalaganju strani."
|
4115 |
|
4116 |
-
#: settings.php:
|
4117 |
msgid "Sticky widget top margin"
|
4118 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4119 |
|
4120 |
-
#: settings.php:
|
4121 |
msgid "Dynamic blocks"
|
4122 |
msgstr "Dinamični bloki"
|
4123 |
|
4124 |
-
#: settings.php:
|
4125 |
msgid "Functions for paragraph counting"
|
4126 |
msgstr "Funkcije za štetje odstavkov"
|
4127 |
|
4128 |
-
#: settings.php:
|
4129 |
msgid ""
|
4130 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4131 |
"functions if paragraphs are not counted properly on non-english pages."
|
@@ -4134,15 +4138,15 @@ msgstr ""
|
|
4134 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4135 |
"šteti."
|
4136 |
|
4137 |
-
#: settings.php:
|
4138 |
msgid "No paragraph counting inside"
|
4139 |
msgstr "Ni štetja odstavkov znotraj"
|
4140 |
|
4141 |
-
#: settings.php:
|
4142 |
msgid "Label text or HTML code"
|
4143 |
msgstr "Besedilo oznake ali HTML koda"
|
4144 |
|
4145 |
-
#: settings.php:
|
4146 |
msgid ""
|
4147 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4148 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
@@ -4151,12 +4155,12 @@ msgstr ""
|
|
4151 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4152 |
"omejitev."
|
4153 |
|
4154 |
-
#: settings.php:
|
4155 |
msgid "Plugin usage tracking"
|
4156 |
msgstr "Sledenje uporabe vtičnika"
|
4157 |
|
4158 |
#. translators: %s: Ad Inserter
|
4159 |
-
#: settings.php:
|
4160 |
msgid ""
|
4161 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4162 |
"Only information regarding the WordPress environment and %s usage is "
|
@@ -4166,125 +4170,125 @@ msgstr ""
|
|
4166 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4167 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4168 |
|
4169 |
-
#: settings.php:
|
4170 |
msgid "CSS class name for the wrapping div"
|
4171 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4172 |
|
4173 |
-
#: settings.php:
|
4174 |
msgid "Block class name"
|
4175 |
msgstr "Ime razreda za blok"
|
4176 |
|
4177 |
-
#: settings.php:
|
4178 |
msgid "Include block number class"
|
4179 |
msgstr "Vključi razred številke bloka"
|
4180 |
|
4181 |
-
#: settings.php:
|
4182 |
msgid "Block number class"
|
4183 |
msgstr "Razred številke bloka"
|
4184 |
|
4185 |
-
#: settings.php:
|
4186 |
msgid "Include block name class"
|
4187 |
msgstr "Vključi razred imena bloka"
|
4188 |
|
4189 |
-
#: settings.php:
|
4190 |
msgid "Block name class"
|
4191 |
msgstr "Razred imena bloka"
|
4192 |
|
4193 |
-
#: settings.php:
|
4194 |
msgid ""
|
4195 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4196 |
msgstr ""
|
4197 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4198 |
|
4199 |
-
#: settings.php:
|
4200 |
msgid "Inline styles"
|
4201 |
msgstr "Medvrstični slogi"
|
4202 |
|
4203 |
-
#: settings.php:
|
4204 |
msgid "Preview of the block wrapping code"
|
4205 |
msgstr "Predogled kode za ovijanje blokov"
|
4206 |
|
4207 |
-
#: settings.php:
|
4208 |
msgid "Wrapping div"
|
4209 |
msgstr "div za ovijanje"
|
4210 |
|
4211 |
-
#: settings.php:
|
4212 |
msgid "BLOCK CODE"
|
4213 |
msgstr "KODA BLOKA"
|
4214 |
|
4215 |
-
#: settings.php:
|
4216 |
msgid "Viewport Settings used for client-side device detection"
|
4217 |
msgstr ""
|
4218 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4219 |
|
4220 |
#. Translators: %d: viewport number
|
4221 |
-
#: settings.php:
|
4222 |
msgid "Viewport %d name"
|
4223 |
msgstr "Ime pogleda %d"
|
4224 |
|
4225 |
-
#: settings.php:
|
4226 |
msgid "min width"
|
4227 |
msgstr "najmanjša širina"
|
4228 |
|
4229 |
-
#: settings.php:
|
4230 |
msgid "Custom Hooks"
|
4231 |
msgstr "Ročice Po Meri"
|
4232 |
|
4233 |
-
#: settings.php:
|
4234 |
msgid "Enable hook"
|
4235 |
msgstr "Omogoči ročico"
|
4236 |
|
4237 |
#. translators: %d: hook number
|
4238 |
-
#: settings.php:
|
4239 |
msgid "Hook %d name"
|
4240 |
msgstr "Ime ročice %d"
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid "Hook name for automatic insertion selection"
|
4244 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4245 |
|
4246 |
-
#: settings.php:
|
4247 |
msgid "action"
|
4248 |
msgstr "akcija"
|
4249 |
|
4250 |
-
#: settings.php:
|
4251 |
msgid "Action name as used in the do_action () function"
|
4252 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4253 |
|
4254 |
-
#: settings.php:
|
4255 |
msgid "priority"
|
4256 |
msgstr "prednost"
|
4257 |
|
4258 |
-
#: settings.php:
|
4259 |
msgid "Priority for the hook (default is 10)"
|
4260 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4261 |
|
4262 |
-
#: settings.php:
|
4263 |
msgid "Enable insertion of this code into HTML page header"
|
4264 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4265 |
|
4266 |
-
#: settings.php:
|
4267 |
msgid "Process PHP code"
|
4268 |
msgstr "Procesiraj PHP kodo"
|
4269 |
|
4270 |
-
#: settings.php:
|
4271 |
msgid "HTML Page Header Code"
|
4272 |
msgstr "Koda v Glavi HTML Strani"
|
4273 |
|
4274 |
-
#: settings.php:
|
4275 |
msgid "Code in the %s section of the HTML page"
|
4276 |
msgstr "Koda v %s delu HTML strani"
|
4277 |
|
4278 |
-
#: settings.php:
|
4279 |
msgctxt "code in the header"
|
4280 |
msgid "NOT ENABLED"
|
4281 |
msgstr "NI OMOGOČENA"
|
4282 |
|
4283 |
-
#: settings.php:
|
4284 |
msgid "Use server-side detection to insert code only for"
|
4285 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4286 |
|
4287 |
-
#: settings.php:
|
4288 |
msgid ""
|
4289 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4290 |
"Page not found"
|
@@ -4292,29 +4296,29 @@ msgstr ""
|
|
4292 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4293 |
"obstaja"
|
4294 |
|
4295 |
-
#: settings.php:
|
4296 |
msgid "Insert on Error 404 page"
|
4297 |
msgstr "Vstavi na strani Napake 404"
|
4298 |
|
4299 |
-
#: settings.php:
|
4300 |
msgid "Enable insertion of this code into HTML page footer"
|
4301 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4302 |
|
4303 |
-
#: settings.php:
|
4304 |
msgid "HTML Page Footer Code"
|
4305 |
msgstr "Koda v Nogi HTML Strani"
|
4306 |
|
4307 |
#. translators: %s: HTML tags
|
4308 |
-
#: settings.php:
|
4309 |
msgid "Code before the %s tag of the the HTML page"
|
4310 |
msgstr "Koda pred %s značko HTML strani"
|
4311 |
|
4312 |
-
#: settings.php:
|
4313 |
msgctxt "code in the footer"
|
4314 |
msgid "NOT ENABLED"
|
4315 |
msgstr "NI OMOGOČENA"
|
4316 |
|
4317 |
-
#: settings.php:
|
4318 |
msgid ""
|
4319 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4320 |
"Page not found"
|
@@ -4322,32 +4326,32 @@ msgstr ""
|
|
4322 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4323 |
"Stran ne obstaja"
|
4324 |
|
4325 |
-
#: settings.php:
|
4326 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4327 |
msgstr ""
|
4328 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4329 |
|
4330 |
-
#: settings.php:
|
4331 |
msgid "Enable detection of ad blocking"
|
4332 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4333 |
|
4334 |
-
#: settings.php:
|
4335 |
msgid "Global action when ad blocking is detected"
|
4336 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4337 |
|
4338 |
-
#: settings.php:
|
4339 |
msgid "No action for"
|
4340 |
msgstr "Ni akcije za"
|
4341 |
|
4342 |
-
#: settings.php:
|
4343 |
msgid "Exceptions for global action when ad blocking is detected."
|
4344 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4345 |
|
4346 |
-
#: settings.php:
|
4347 |
msgid "Delay Action"
|
4348 |
msgstr "Zakasni Akcijo"
|
4349 |
|
4350 |
-
#: settings.php:
|
4351 |
msgid ""
|
4352 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4353 |
"empty for no delay (action fires on first page view). Sets cookie."
|
@@ -4356,16 +4360,16 @@ msgstr ""
|
|
4356 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4357 |
"strani). Nastavi piškotek."
|
4358 |
|
4359 |
-
#: settings.php:
|
4360 |
msgctxt "Delay Action for x "
|
4361 |
msgid "page views"
|
4362 |
msgstr "ogledov strani"
|
4363 |
|
4364 |
-
#: settings.php:
|
4365 |
msgid "No Action Period"
|
4366 |
msgstr "Obdobje Brez Akcije"
|
4367 |
|
4368 |
-
#: settings.php:
|
4369 |
msgid ""
|
4370 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4371 |
"for no no-action period (action fires always after defined page view delay). "
|
@@ -4375,16 +4379,16 @@ msgstr ""
|
|
4375 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4376 |
"strani). Nastavi piškotek."
|
4377 |
|
4378 |
-
#: settings.php:
|
4379 |
msgctxt "no action period"
|
4380 |
msgid "days"
|
4381 |
msgstr "dni"
|
4382 |
|
4383 |
-
#: settings.php:
|
4384 |
msgid "Custom Selectors"
|
4385 |
msgstr "Selektorji Po Meri"
|
4386 |
|
4387 |
-
#: settings.php:
|
4388 |
msgid ""
|
4389 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4390 |
"blocking detection. Invisible element or element with zero height means ad "
|
@@ -4394,15 +4398,15 @@ msgstr ""
|
|
4394 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4395 |
"pomeni prisotnost blokiranja oglasov."
|
4396 |
|
4397 |
-
#: settings.php:
|
4398 |
msgid "Redirection Page"
|
4399 |
msgstr "Stran za Preusmeritev"
|
4400 |
|
4401 |
-
#: settings.php:
|
4402 |
msgid "Custom Url"
|
4403 |
msgstr "Url Po Meri"
|
4404 |
|
4405 |
-
#: settings.php:
|
4406 |
msgid ""
|
4407 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4408 |
"select Custom url and set it below."
|
@@ -4410,35 +4414,35 @@ msgstr ""
|
|
4410 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4411 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4412 |
|
4413 |
-
#: settings.php:
|
4414 |
msgid "Custom Redirection Url"
|
4415 |
msgstr "Url za Preusmeritev Po Meri"
|
4416 |
|
4417 |
-
#: settings.php:
|
4418 |
msgid "Message HTML code"
|
4419 |
msgstr "HTML koda sporočila"
|
4420 |
|
4421 |
-
#: settings.php:
|
4422 |
msgid "Preview message when ad blocking is detected"
|
4423 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4424 |
|
4425 |
-
#: settings.php:
|
4426 |
msgid "Prevent visitors from closing the warning message"
|
4427 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4428 |
|
4429 |
-
#: settings.php:
|
4430 |
msgid "Undismissible Message"
|
4431 |
msgstr "Neodstranljivo Sporočilo"
|
4432 |
|
4433 |
-
#: settings.php:
|
4434 |
msgid "Not undismissible for"
|
4435 |
msgstr "Ni neodstranljivo za"
|
4436 |
|
4437 |
-
#: settings.php:
|
4438 |
msgid "Users which can close the warning message."
|
4439 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4440 |
|
4441 |
-
#: settings.php:
|
4442 |
msgid ""
|
4443 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4444 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
@@ -4447,84 +4451,84 @@ msgstr ""
|
|
4447 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4448 |
"skrbnike."
|
4449 |
|
4450 |
-
#: settings.php:
|
4451 |
msgid "Disable header code (Header tab)"
|
4452 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4453 |
|
4454 |
-
#: settings.php:
|
4455 |
msgid "Disable footer code (Footer tab)"
|
4456 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4457 |
|
4458 |
#. translators: %s: Ad Inserter
|
4459 |
-
#: settings.php:
|
4460 |
msgid "Disable %s JavaScript code"
|
4461 |
msgstr "Onemogoči %s JavaScript kodo"
|
4462 |
|
4463 |
#. translators: %s: Ad Inserter
|
4464 |
-
#: settings.php:
|
4465 |
msgid "Disable %s CSS code"
|
4466 |
msgstr "Onemogoči %s CSS kodo"
|
4467 |
|
4468 |
-
#: settings.php:
|
4469 |
msgid ""
|
4470 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4471 |
msgstr ""
|
4472 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4473 |
|
4474 |
-
#: settings.php:
|
4475 |
msgid "Disable insertion of all blocks"
|
4476 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4477 |
|
4478 |
-
#: settings.php:
|
4479 |
msgid "Disable insertions"
|
4480 |
msgstr "Onemogoči vstavljanja"
|
4481 |
|
4482 |
#. translators: %s: Ad Inserter
|
4483 |
-
#: settings.php:
|
4484 |
msgid "%s CSS CODE"
|
4485 |
msgstr "%s CSS KODA"
|
4486 |
|
4487 |
-
#: settings.php:
|
4488 |
msgid "HEADER CODE"
|
4489 |
msgstr "KODA GLAVE"
|
4490 |
|
4491 |
#. translators: %s: PHP tags
|
4492 |
-
#: settings.php:
|
4493 |
msgid "BLOCK PHP CODE"
|
4494 |
msgstr "PHP KODA BLOKA"
|
4495 |
|
4496 |
#. translators: %s: Ad Inserter
|
4497 |
-
#: settings.php:
|
4498 |
msgid "%s JS CODE"
|
4499 |
msgstr "%s JS KODA"
|
4500 |
|
4501 |
-
#: settings.php:
|
4502 |
msgid "FOOTER CODE"
|
4503 |
msgstr "KODA NOGE"
|
4504 |
|
4505 |
-
#: settings.php:
|
4506 |
msgid "Force showing admin toolbar when viewing site"
|
4507 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4508 |
|
4509 |
-
#: settings.php:
|
4510 |
msgid "Enable debugging functions in admin toolbar"
|
4511 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4512 |
|
4513 |
-
#: settings.php:
|
4514 |
msgid "Debugging functions in admin toolbar"
|
4515 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4516 |
|
4517 |
-
#: settings.php:
|
4518 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4519 |
msgstr ""
|
4520 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4521 |
"zaslonih"
|
4522 |
|
4523 |
-
#: settings.php:
|
4524 |
msgid "Debugging functions on mobile screens"
|
4525 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4526 |
|
4527 |
-
#: settings.php:
|
4528 |
msgid ""
|
4529 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4530 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4539,11 +4543,11 @@ msgstr ""
|
|
4539 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4540 |
"vedno omogočeno."
|
4541 |
|
4542 |
-
#: settings.php:
|
4543 |
msgid "Remote debugging"
|
4544 |
msgstr "Oddaljeno razhroščevanje"
|
4545 |
|
4546 |
-
#: settings.php:
|
4547 |
msgid ""
|
4548 |
"Disable translation to see original texts for the settings and messages in "
|
4549 |
"English"
|
@@ -4551,206 +4555,214 @@ msgstr ""
|
|
4551 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4552 |
"angleščini"
|
4553 |
|
4554 |
-
#: settings.php:
|
4555 |
msgid "Disable translation"
|
4556 |
msgstr "Onemogoči prevod"
|
4557 |
|
4558 |
-
#: settings.php:
|
4559 |
msgid "Available positions for current theme"
|
4560 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4561 |
|
4562 |
-
#: settings.php:
|
4563 |
msgid "Error checking pages"
|
4564 |
msgstr "Napaka pri preverjanju strani"
|
4565 |
|
4566 |
-
#: settings.php:
|
4567 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4568 |
msgstr ""
|
4569 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4570 |
|
4571 |
-
#: settings.php:
|
4572 |
msgctxt "Button"
|
4573 |
msgid "Check"
|
4574 |
msgstr "Preveri"
|
4575 |
|
4576 |
-
#: settings.php:
|
4577 |
msgid "Position"
|
4578 |
msgstr "Položaj"
|
4579 |
|
4580 |
-
#: settings.php:
|
4581 |
msgid "Archive pages"
|
4582 |
msgstr "Strani arhiva"
|
4583 |
|
4584 |
-
#: settings.php:
|
4585 |
msgid ""
|
4586 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4587 |
msgstr ""
|
4588 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4589 |
|
4590 |
-
#: settings.php:
|
4591 |
msgid "Position not checked yet"
|
4592 |
msgstr "Položaj še ni bil preverjen"
|
4593 |
|
4594 |
-
#: settings.php:
|
4595 |
msgid "Toggle active/all blocks"
|
4596 |
msgstr "Preklopi aktive/vse bloke"
|
4597 |
|
4598 |
-
#: settings.php:
|
4599 |
msgid "Rearrange block order"
|
4600 |
msgstr "Preuredi vrstni red blokov"
|
4601 |
|
4602 |
-
#: settings.php:
|
4603 |
msgid "Save new block order"
|
4604 |
msgstr "Shrani vrstni red blokov"
|
4605 |
|
4606 |
-
#: settings.php:
|
4607 |
msgid "Toggle active/all ad units"
|
4608 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4609 |
|
4610 |
-
#: settings.php:
|
4611 |
msgid "Reload AdSense ad units"
|
4612 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4613 |
|
4614 |
-
#: settings.php:
|
4615 |
msgid "Clear authorization to access AdSense account"
|
4616 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4617 |
|
4618 |
-
#: settings.php:
|
4619 |
msgid "Google AdSense Homepage"
|
4620 |
msgstr "Google AdSense Domača Stran"
|
4621 |
|
4622 |
-
#: settings.php:
|
4623 |
msgid "Switch to physical ads.txt file"
|
4624 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4625 |
|
4626 |
-
#: settings.php:
|
4627 |
msgid "Switch to virtual ads.txt file"
|
4628 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4629 |
|
4630 |
#. translators: %s: ads.txt
|
4631 |
-
#: settings.php:
|
4632 |
msgid "Open %s"
|
4633 |
msgstr "Odpri %s"
|
4634 |
|
4635 |
-
#: settings.php:
|
4636 |
msgid "Reload ads.txt file"
|
4637 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4638 |
|
4639 |
-
#: settings.php:
|
4640 |
msgid "Save"
|
4641 |
msgstr "Shrani"
|
4642 |
|
4643 |
#. translators: %s: Ad Inserter
|
4644 |
-
#: settings.php:
|
4645 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4646 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4647 |
|
4648 |
-
#: settings.php:
|
4649 |
msgid "Warning"
|
4650 |
msgstr "Opozorilo"
|
4651 |
|
4652 |
#. translators: %s: Ad Inserter
|
4653 |
-
#: settings.php:
|
4654 |
msgid "%s virtual file ads.txt not found"
|
4655 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4656 |
|
4657 |
-
#: settings.php:
|
4658 |
msgid "IMPORTANT"
|
4659 |
msgstr "POMEMBNO"
|
4660 |
|
4661 |
-
#: settings.php:
|
4662 |
msgid "ads.txt file must be placed on the root domain"
|
4663 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4664 |
|
4665 |
-
#: settings.php:
|
4666 |
msgid "ads.txt file"
|
4667 |
msgstr "datoteka ads.txt"
|
4668 |
|
4669 |
-
#: settings.php:
|
4670 |
msgid "NOT WRITABLE"
|
4671 |
msgstr "NI ZAPISLJIVO"
|
4672 |
|
4673 |
-
#: settings.php:
|
4674 |
msgid "file %s not found"
|
4675 |
msgstr "datoteka %s ni najdena"
|
4676 |
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4679 |
msgstr ""
|
4680 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4681 |
|
4682 |
#. translators: %s: Ad Inserter
|
4683 |
-
#: settings.php:
|
4684 |
msgid "%s virtual ads.txt file"
|
4685 |
msgstr "%s navidezna datoteka ads.txt"
|
4686 |
|
4687 |
-
#: settings.php:
|
4688 |
msgid "Advertising system"
|
4689 |
msgstr "Oglaševalski sistem"
|
4690 |
|
4691 |
-
#: settings.php:
|
4692 |
msgid "Account ID"
|
4693 |
msgstr "ID Računa"
|
4694 |
|
4695 |
-
#: settings.php:
|
4696 |
msgid "Certification authority ID"
|
4697 |
msgstr "ID organa za potrjevanje"
|
4698 |
|
4699 |
-
#: settings.php:
|
4700 |
msgid "Account ID found in block and present in ads.txt"
|
4701 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4702 |
|
4703 |
-
#: settings.php:
|
4704 |
msgid "Account ID found in block but not present in ads.txt"
|
4705 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4706 |
|
4707 |
-
#: settings.php:
|
4708 |
msgid "Preview block"
|
4709 |
msgstr "Predogled bloka"
|
4710 |
|
4711 |
-
#: settings.php:
|
4712 |
msgid "Insertion disabled"
|
4713 |
msgstr "Vstavljanje onemogočeno"
|
4714 |
|
4715 |
-
#: settings.php:
|
4716 |
msgid "Automatic insertion"
|
4717 |
msgstr "Samodejno vstavljanje"
|
4718 |
|
4719 |
#. translators: %s HTML tags
|
4720 |
-
#: settings.php:
|
4721 |
msgid "PHP code processing"
|
4722 |
msgstr "Procesiranje PHP kode"
|
4723 |
|
4724 |
-
#: settings.php:
|
4725 |
msgid "Device detection"
|
4726 |
msgstr "Zaznavanje naprave"
|
4727 |
|
4728 |
-
#: settings.php:
|
4729 |
msgid "Widget positions"
|
4730 |
msgstr "Položaji gradnikov"
|
4731 |
|
4732 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4733 |
msgid "Ad unit"
|
4734 |
msgstr "Enota"
|
4735 |
|
4736 |
-
#: settings.php:
|
4737 |
msgid "Slot ID"
|
4738 |
msgstr "ID mesta"
|
4739 |
|
4740 |
-
#: settings.php:
|
4741 |
msgid "Copy AdSense code"
|
4742 |
msgstr "Kopiraj kodo AdSense"
|
4743 |
|
4744 |
-
#: settings.php:
|
4745 |
msgid "Preview AdSense ad"
|
4746 |
msgstr "Predogled oglasa AdSense"
|
4747 |
|
4748 |
-
#: settings.php:
|
4749 |
msgid "Get AdSense code"
|
4750 |
msgstr "Pridobi kodo AdSense"
|
4751 |
|
4752 |
#. translators: %s: HTML tags
|
4753 |
-
#: settings.php:
|
4754 |
msgid ""
|
4755 |
"Please %s clear authorization %s with the button %s above and once again "
|
4756 |
"authorize access to your AdSense account."
|
@@ -4758,16 +4770,16 @@ msgstr ""
|
|
4758 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4759 |
"avtorizirajte dostop do vašega računa AdSense."
|
4760 |
|
4761 |
-
#: settings.php:
|
4762 |
msgid "AdSense Integration"
|
4763 |
msgstr "Integracija AdSense"
|
4764 |
|
4765 |
-
#: settings.php:
|
4766 |
msgid "AdSense Integration - Step 2"
|
4767 |
msgstr "Integracija AdSense - Korak 2"
|
4768 |
|
4769 |
#. translators: %s: HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid ""
|
4772 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4773 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4780,7 +4792,7 @@ msgstr ""
|
|
4780 |
"Avtoriziraj. %s"
|
4781 |
|
4782 |
#. translators: %s: HTML tags
|
4783 |
-
#: settings.php:
|
4784 |
msgid ""
|
4785 |
"If you get error, can't access ad units or would like to use own Google API "
|
4786 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4791,7 +4803,7 @@ msgstr ""
|
|
4791 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4792 |
|
4793 |
#. translators: %s: HTML tags
|
4794 |
-
#: settings.php:
|
4795 |
msgid ""
|
4796 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4797 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4804,7 +4816,7 @@ msgstr ""
|
|
4804 |
"gumb %s Avtoriziraj. %s"
|
4805 |
|
4806 |
#. translators: %s: HTML tags
|
4807 |
-
#: settings.php:
|
4808 |
msgid ""
|
4809 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4810 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
@@ -4812,32 +4824,32 @@ msgstr ""
|
|
4812 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4813 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4814 |
|
4815 |
-
#: settings.php:
|
4816 |
msgid "Get Authorization Code"
|
4817 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4818 |
|
4819 |
-
#: settings.php:
|
4820 |
msgid "Enter Authorization Code"
|
4821 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4822 |
|
4823 |
-
#: settings.php:
|
4824 |
msgid "Use own API IDs"
|
4825 |
msgstr "Uporabi lastne API ID-je"
|
4826 |
|
4827 |
-
#: settings.php:
|
4828 |
msgid "Clear and return to Step 1"
|
4829 |
msgstr "Odstrani in se vrni na Korak 1"
|
4830 |
|
4831 |
-
#: settings.php:
|
4832 |
msgid "Authorize"
|
4833 |
msgstr "Avtoriziraj"
|
4834 |
|
4835 |
-
#: settings.php:
|
4836 |
msgid "AdSense Integration - Step 1"
|
4837 |
msgstr "Integracija AdSense - Korak 1"
|
4838 |
|
4839 |
#. translators: %s: Ad Inserter
|
4840 |
-
#: settings.php:
|
4841 |
msgid ""
|
4842 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4843 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4850,12 +4862,12 @@ msgstr ""
|
|
4850 |
"Odjemalca in Skrivnost Odjemalca."
|
4851 |
|
4852 |
#. translators: %s: HTML tags
|
4853 |
-
#: settings.php:
|
4854 |
msgid "Go to %s Google APIs and Services console %s"
|
4855 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4856 |
|
4857 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4858 |
-
#: settings.php:
|
4859 |
msgid ""
|
4860 |
"Create %1$s project - if the project and IDs are already created click on "
|
4861 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
@@ -4864,7 +4876,7 @@ msgstr ""
|
|
4864 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4865 |
|
4866 |
#. translators: %s: HTML tags
|
4867 |
-
#: settings.php:
|
4868 |
msgid ""
|
4869 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4870 |
"create a new project"
|
@@ -4873,12 +4885,12 @@ msgstr ""
|
|
4873 |
"ustvaritev novega projekta"
|
4874 |
|
4875 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4876 |
-
#: settings.php:
|
4877 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4878 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4879 |
|
4880 |
#. translators: %s: HTML tags
|
4881 |
-
#: settings.php:
|
4882 |
msgid ""
|
4883 |
"Click on project selection, wait for the project to be created and then and "
|
4884 |
"select %s as the current project"
|
@@ -4887,39 +4899,39 @@ msgstr ""
|
|
4887 |
"izberite %s kot trenutni projekt"
|
4888 |
|
4889 |
#. translators: %s: HTML tags
|
4890 |
-
#: settings.php:
|
4891 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4892 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4893 |
|
4894 |
#. translators: %s: HTML tags
|
4895 |
-
#: settings.php:
|
4896 |
msgid "Search for adsense and enable %s"
|
4897 |
msgstr "Poiščite adsense in omogočite %s"
|
4898 |
|
4899 |
#. translators: %s: HTML tags
|
4900 |
-
#: settings.php:
|
4901 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4902 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4903 |
|
4904 |
#. translators: %s: HTML tags
|
4905 |
-
#: settings.php:
|
4906 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4907 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4908 |
|
4909 |
#. translators: %s: HTML tags
|
4910 |
-
#: settings.php:
|
4911 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4912 |
msgstr ""
|
4913 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4914 |
"podatki %s"
|
4915 |
|
4916 |
#. translators: %s: HTML tags
|
4917 |
-
#: settings.php:
|
4918 |
msgid "Click on %s What credentials do I need? %s"
|
4919 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
4920 |
|
4921 |
#. translators: %s: HTML tags
|
4922 |
-
#: settings.php:
|
4923 |
msgid ""
|
4924 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4925 |
"Ad Inserter client %s"
|
@@ -4928,7 +4940,7 @@ msgstr ""
|
|
4928 |
"vnestite %s Ad Inserter odjemalec %s"
|
4929 |
|
4930 |
#. translators: %s: HTML tags
|
4931 |
-
#: settings.php:
|
4932 |
msgid ""
|
4933 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4934 |
"enter %s"
|
@@ -4937,17 +4949,17 @@ msgstr ""
|
|
4937 |
"uporabnikom %s vnesite %s"
|
4938 |
|
4939 |
#. translators: %s: HTML tags
|
4940 |
-
#: settings.php:
|
4941 |
msgid "Click on %s Continue %s"
|
4942 |
msgstr "Kliknite na %s Nadaljuj %s"
|
4943 |
|
4944 |
#. translators: %s: HTML tags
|
4945 |
-
#: settings.php:
|
4946 |
msgid "Click on %s Done %s"
|
4947 |
msgstr "Kliknite na %s Končaj %s"
|
4948 |
|
4949 |
#. translators: %s: HTML tags
|
4950 |
-
#: settings.php:
|
4951 |
msgid ""
|
4952 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4953 |
"secret %s"
|
@@ -4955,67 +4967,67 @@ msgstr ""
|
|
4955 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
4956 |
"%s Skrivnost odjemalca %s"
|
4957 |
|
4958 |
-
#: settings.php:
|
4959 |
msgid "Copy them to the appropriate fields below"
|
4960 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
4961 |
|
4962 |
-
#: settings.php:
|
4963 |
msgid "Client ID"
|
4964 |
msgstr "ID odjemalca"
|
4965 |
|
4966 |
-
#: settings.php:
|
4967 |
msgid "Enter Client ID"
|
4968 |
msgstr "Vnesite ID odjemalca"
|
4969 |
|
4970 |
-
#: settings.php:
|
4971 |
msgid "Client secret"
|
4972 |
msgstr "Skrivnost odjemalca"
|
4973 |
|
4974 |
-
#: settings.php:
|
4975 |
msgid "Enter Client secret"
|
4976 |
msgstr "Vnesite Skrivnost odjemalca"
|
4977 |
|
4978 |
-
#: settings.php:
|
4979 |
msgid "Use default API IDs"
|
4980 |
msgstr "Uporabi privzete API ID-je"
|
4981 |
|
4982 |
-
#: settings.php:
|
4983 |
msgid "All posts"
|
4984 |
msgstr "Vsi prispevki"
|
4985 |
|
4986 |
-
#: settings.php:
|
4987 |
msgid "All static pages"
|
4988 |
msgstr "Vse statične strani"
|
4989 |
|
4990 |
-
#: settings.php:
|
4991 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4992 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
4993 |
|
4994 |
-
#: settings.php:
|
4995 |
-
#: settings.php:
|
4996 |
-
#: settings.php:
|
4997 |
-
#: settings.php:
|
4998 |
msgid "Looking for AdSense alternative?"
|
4999 |
msgstr "Iščete alternativo za AdSense?"
|
5000 |
|
5001 |
-
#: settings.php:
|
5002 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5003 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5004 |
|
5005 |
-
#: settings.php:
|
5006 |
-
#: settings.php:
|
5007 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5008 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5009 |
|
5010 |
-
#: settings.php:
|
5011 |
msgid "Maximize your revenue!"
|
5012 |
msgstr "Povečajte svoj prihodek!"
|
5013 |
|
5014 |
-
#: settings.php:
|
5015 |
msgid "Support plugin development"
|
5016 |
msgstr "Podprite razvoj vtičnika"
|
5017 |
|
5018 |
-
#: settings.php:
|
5019 |
msgid ""
|
5020 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5021 |
"reviewing the plugin on WordPres"
|
@@ -5023,12 +5035,12 @@ msgstr ""
|
|
5023 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5024 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5025 |
|
5026 |
-
#: settings.php:
|
5027 |
msgctxt "Review Ad Inserter"
|
5028 |
msgid "Review"
|
5029 |
msgstr "Ocenite"
|
5030 |
|
5031 |
-
#: settings.php:
|
5032 |
msgid ""
|
5033 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5034 |
"rating the plugin on WordPres"
|
@@ -5036,12 +5048,12 @@ msgstr ""
|
|
5036 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5037 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5038 |
|
5039 |
-
#: settings.php:
|
5040 |
msgctxt "Rate Ad Inserter"
|
5041 |
msgid "Rate"
|
5042 |
msgstr "Ocenite"
|
5043 |
|
5044 |
-
#: settings.php:
|
5045 |
msgid ""
|
5046 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5047 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
@@ -5050,16 +5062,16 @@ msgstr ""
|
|
5050 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5051 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5052 |
|
5053 |
-
#: settings.php:
|
5054 |
msgid "Donate"
|
5055 |
msgstr "Donirajte"
|
5056 |
|
5057 |
-
#: settings.php:
|
5058 |
msgid "Average rating of the plugin - Thank you!"
|
5059 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5060 |
|
5061 |
#. translators: %s: Ad Inserter, HTML tags
|
5062 |
-
#: settings.php:
|
5063 |
msgid ""
|
5064 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5065 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -5074,24 +5086,24 @@ msgstr ""
|
|
5074 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5075 |
"bi rekli 'Hvala'."
|
5076 |
|
5077 |
-
#: settings.php:
|
5078 |
msgid "Review"
|
5079 |
msgstr "Ocena"
|
5080 |
|
5081 |
-
#: settings.php:
|
5082 |
msgid "Ad Inserter on Twitter"
|
5083 |
msgstr "Ad Inserter na Twitter-ju"
|
5084 |
|
5085 |
-
#: settings.php:
|
5086 |
msgid "Ad Inserter on Facebook"
|
5087 |
msgstr "Ad Inserter na Facebook-u"
|
5088 |
|
5089 |
-
#: settings.php:
|
5090 |
msgid "Follow Ad Inserter"
|
5091 |
msgstr "Sledi Ad Inserter-ju"
|
5092 |
|
5093 |
#. translators: %s: HTML tags
|
5094 |
-
#: settings.php:
|
5095 |
msgid ""
|
5096 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5097 |
"and %s Common Settings %s pages"
|
@@ -5100,7 +5112,7 @@ msgstr ""
|
|
5100 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5101 |
|
5102 |
#. translators: %s: HTML tags
|
5103 |
-
#: settings.php:
|
5104 |
msgid ""
|
5105 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5106 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -5111,7 +5123,7 @@ msgstr ""
|
|
5111 |
"%s Infolinks %s oglasno kodo %s"
|
5112 |
|
5113 |
#. translators: %s: HTML tags
|
5114 |
-
#: settings.php:
|
5115 |
msgid ""
|
5116 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5117 |
"purchase you refer to us"
|
@@ -5120,7 +5132,7 @@ msgstr ""
|
|
5120 |
"nakup, ki nam ga posredujete"
|
5121 |
|
5122 |
#. translators: %s: HTML tags
|
5123 |
-
#: settings.php:
|
5124 |
msgid ""
|
5125 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5126 |
"diagnose and fix the problem."
|
@@ -5129,7 +5141,7 @@ msgstr ""
|
|
5129 |
"navodili za diagnozo in rešitvami za težave."
|
5130 |
|
5131 |
#. translators: %s: HTML tags
|
5132 |
-
#: settings.php:
|
5133 |
msgid ""
|
5134 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5135 |
"thread on the %s support forum. %s"
|
@@ -5137,49 +5149,49 @@ msgstr ""
|
|
5137 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5138 |
"nit na %s podpornem forumu. %s"
|
5139 |
|
5140 |
-
#: settings.php:
|
5141 |
msgid "Code preview with visual CSS editor"
|
5142 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5143 |
|
5144 |
-
#: settings.php:
|
5145 |
msgid "A/B testing - Track ad impressions and clicks"
|
5146 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5147 |
|
5148 |
-
#: settings.php:
|
5149 |
msgid "Looking for Pro Ad Management plugin?"
|
5150 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5151 |
|
5152 |
-
#: settings.php:
|
5153 |
msgid "To Optimally Monetize your WordPress website?"
|
5154 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5155 |
|
5156 |
#. Translators: %s: price of Ad Inserter Pro
|
5157 |
-
#: settings.php:
|
5158 |
msgid "Different license types starting from %s"
|
5159 |
msgstr "Različni tipi licenc začenši od %s"
|
5160 |
|
5161 |
#. translators: %s HTML tags
|
5162 |
-
#: settings.php:
|
5163 |
msgid "%s AdSense Integration %s"
|
5164 |
msgstr "%s Integracija AdSense %s"
|
5165 |
|
5166 |
#. translators: %s HTML tags
|
5167 |
-
#: settings.php:
|
5168 |
msgid "Syntax highlighting %s editor %s"
|
5169 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5170 |
|
5171 |
#. translators: %s HTML tags
|
5172 |
-
#: settings.php:
|
5173 |
msgid "%s Code preview %s with visual CSS editor"
|
5174 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5175 |
|
5176 |
#. translators: %s HTML tags
|
5177 |
-
#: settings.php:
|
5178 |
msgid "Simple user interface - all settings on a single page"
|
5179 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5180 |
|
5181 |
#. translators: %s HTML tags
|
5182 |
-
#: settings.php:
|
5183 |
msgid ""
|
5184 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5185 |
"image / excerpt"
|
@@ -5188,27 +5200,27 @@ msgstr ""
|
|
5188 |
"%s / sliko / izvlečkom"
|
5189 |
|
5190 |
#. translators: %s HTML tags
|
5191 |
-
#: settings.php:
|
5192 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5193 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5194 |
|
5195 |
#. translators: %s HTML tags
|
5196 |
-
#: settings.php:
|
5197 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5198 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5199 |
|
5200 |
#. translators: %s HTML tags
|
5201 |
-
#: settings.php:
|
5202 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5203 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5204 |
|
5205 |
#. translators: %s HTML tags
|
5206 |
-
#: settings.php:
|
5207 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5208 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5209 |
|
5210 |
#. translators: %s HTML tags
|
5211 |
-
#: settings.php:
|
5212 |
msgid ""
|
5213 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5214 |
"selectors)"
|
@@ -5217,17 +5229,17 @@ msgstr ""
|
|
5217 |
"selektorjev)"
|
5218 |
|
5219 |
#. translators: %s HTML tags
|
5220 |
-
#: settings.php:
|
5221 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5222 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5223 |
|
5224 |
#. translators: %s HTML tags
|
5225 |
-
#: settings.php:
|
5226 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5227 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5228 |
|
5229 |
#. translators: %s HTML tags
|
5230 |
-
#: settings.php:
|
5231 |
msgid ""
|
5232 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5233 |
"scrolls)"
|
@@ -5236,19 +5248,19 @@ msgstr ""
|
|
5236 |
"se stran pomika)"
|
5237 |
|
5238 |
#. translators: %s HTML tags
|
5239 |
-
#: settings.php:
|
5240 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5241 |
msgstr ""
|
5242 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5243 |
|
5244 |
#. translators: %s HTML tags
|
5245 |
-
#: settings.php:
|
5246 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5247 |
msgstr ""
|
5248 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5249 |
|
5250 |
#. translators: %s HTML tags
|
5251 |
-
#: settings.php:
|
5252 |
msgid ""
|
5253 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5254 |
"visible)"
|
@@ -5257,7 +5269,7 @@ msgstr ""
|
|
5257 |
"postane viden)"
|
5258 |
|
5259 |
#. translators: %s HTML tags
|
5260 |
-
#: settings.php:
|
5261 |
msgid ""
|
5262 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5263 |
msgstr ""
|
@@ -5265,12 +5277,12 @@ msgstr ""
|
|
5265 |
"strani)"
|
5266 |
|
5267 |
#. translators: %s HTML tags
|
5268 |
-
#: settings.php:
|
5269 |
msgid "Block %s alignment and style %s customizations"
|
5270 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5271 |
|
5272 |
#. translators: %s HTML tags
|
5273 |
-
#: settings.php:
|
5274 |
msgid ""
|
5275 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5276 |
"TOS)"
|
@@ -5278,7 +5290,7 @@ msgstr ""
|
|
5278 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5279 |
|
5280 |
#. translators: %s HTML tags
|
5281 |
-
#: settings.php:
|
5282 |
msgid ""
|
5283 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5284 |
"feeds"
|
@@ -5287,17 +5299,17 @@ msgstr ""
|
|
5287 |
"virih"
|
5288 |
|
5289 |
#. translators: %s HTML tags
|
5290 |
-
#: settings.php:
|
5291 |
msgid "%s Ad rotation %s (works also with caching)"
|
5292 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5293 |
|
5294 |
#. translators: %s HTML tags
|
5295 |
-
#: settings.php:
|
5296 |
msgid "Create, edit and check %s ads.txt %s file"
|
5297 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5298 |
|
5299 |
#. translators: %s HTML tags
|
5300 |
-
#: settings.php:
|
5301 |
msgid ""
|
5302 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5303 |
"AdSense)"
|
@@ -5306,81 +5318,81 @@ msgstr ""
|
|
5306 |
"AdSense)"
|
5307 |
|
5308 |
#. translators: %s HTML tags
|
5309 |
-
#: settings.php:
|
5310 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5311 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5312 |
|
5313 |
#. translators: %s HTML tags
|
5314 |
-
#: settings.php:
|
5315 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5316 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5317 |
|
5318 |
#. translators: %s HTML tags
|
5319 |
-
#: settings.php:
|
5320 |
msgid "Support for %s A/B testing %s"
|
5321 |
msgstr "Podpora za %s A/B testiranje %s"
|
5322 |
|
5323 |
#. translators: %s HTML tags
|
5324 |
-
#: settings.php:
|
5325 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5326 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5327 |
|
5328 |
#. translators: %s HTML tags
|
5329 |
-
#: settings.php:
|
5330 |
msgid "Click fraud %s protection %s"
|
5331 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5332 |
|
5333 |
#. translators: %s HTML tags
|
5334 |
-
#: settings.php:
|
5335 |
msgid "Support for %s lazy loading %s"
|
5336 |
msgstr "Podpora za %s leno nalaganje %s"
|
5337 |
|
5338 |
#. translators: %s HTML tags
|
5339 |
-
#: settings.php:
|
5340 |
msgid "Support for ads on %s AMP pages %s"
|
5341 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5342 |
|
5343 |
#. translators: %s HTML tags
|
5344 |
-
#: settings.php:
|
5345 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5346 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5347 |
|
5348 |
#. translators: %s HTML tags
|
5349 |
-
#: settings.php:
|
5350 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5351 |
msgstr ""
|
5352 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5353 |
|
5354 |
#. translators: %s HTML tags
|
5355 |
-
#: settings.php:
|
5356 |
msgid "%s Banner %s code generator"
|
5357 |
msgstr "Generator kode za %s pasice %s"
|
5358 |
|
5359 |
#. translators: %s HTML tags
|
5360 |
-
#: settings.php:
|
5361 |
msgid "Support for %s header and footer %s code"
|
5362 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5363 |
|
5364 |
#. translators: %s HTML tags
|
5365 |
-
#: settings.php:
|
5366 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5367 |
msgstr ""
|
5368 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5369 |
|
5370 |
#. translators: %s HTML tags
|
5371 |
-
#: settings.php:
|
5372 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5373 |
msgstr ""
|
5374 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5375 |
"strežnika"
|
5376 |
|
5377 |
#. translators: %s HTML tags
|
5378 |
-
#: settings.php:
|
5379 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5380 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5381 |
|
5382 |
#. translators: %s HTML tags
|
5383 |
-
#: settings.php:
|
5384 |
msgid ""
|
5385 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5386 |
"protection"
|
@@ -5389,12 +5401,12 @@ msgstr ""
|
|
5389 |
"vsebine"
|
5390 |
|
5391 |
#. translators: %s HTML tags
|
5392 |
-
#: settings.php:
|
5393 |
msgid "%s Ad blocking statistics %s"
|
5394 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5395 |
|
5396 |
#. translators: %s HTML tags
|
5397 |
-
#: settings.php:
|
5398 |
msgid ""
|
5399 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5400 |
"referrers, operating systems, browsers"
|
@@ -5403,75 +5415,75 @@ msgstr ""
|
|
5403 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5404 |
|
5405 |
#. translators: %s HTML tags
|
5406 |
-
#: settings.php:
|
5407 |
msgid ""
|
5408 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5409 |
msgstr ""
|
5410 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5411 |
|
5412 |
#. translators: %s HTML tags
|
5413 |
-
#: settings.php:
|
5414 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5415 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5416 |
|
5417 |
#. translators: %s HTML tags
|
5418 |
-
#: settings.php:
|
5419 |
msgid "%s Import/Export %s block or plugin settings"
|
5420 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5421 |
|
5422 |
#. translators: %s HTML tags
|
5423 |
-
#: settings.php:
|
5424 |
msgid "%s Insertion scheduling %s with fallback option"
|
5425 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5426 |
|
5427 |
#. translators: %s HTML tags
|
5428 |
-
#: settings.php:
|
5429 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5430 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5431 |
|
5432 |
#. translators: %s HTML tags
|
5433 |
-
#: settings.php:
|
5434 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5435 |
msgstr ""
|
5436 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5437 |
|
5438 |
#. translators: %s HTML tags
|
5439 |
-
#: settings.php:
|
5440 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5441 |
msgstr ""
|
5442 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
-
#: settings.php:
|
5446 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5447 |
msgstr ""
|
5448 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5449 |
|
5450 |
#. translators: %s HTML tags
|
5451 |
-
#: settings.php:
|
5452 |
msgid ""
|
5453 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5454 |
msgstr ""
|
5455 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5456 |
|
5457 |
#. translators: %s HTML tags
|
5458 |
-
#: settings.php:
|
5459 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5460 |
msgstr ""
|
5461 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5462 |
|
5463 |
#. translators: %s HTML tags
|
5464 |
-
#: settings.php:
|
5465 |
msgid "No ads on the settings page"
|
5466 |
msgstr "Stran z nastavitvami brez oglasov"
|
5467 |
|
5468 |
#. translators: %s HTML tags
|
5469 |
-
#: settings.php:
|
5470 |
msgid "Premium support"
|
5471 |
msgstr "Vrhunska podpora"
|
5472 |
|
5473 |
#. translators: %s HTML tags
|
5474 |
-
#: settings.php:
|
5475 |
msgid ""
|
5476 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5477 |
"website with many advertising features to automatically insert adverts on "
|
@@ -5498,82 +5510,82 @@ msgstr ""
|
|
5498 |
"bodo ohranile)."
|
5499 |
|
5500 |
#. translators: %s HTML tags
|
5501 |
-
#: settings.php:
|
5502 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5503 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5504 |
|
5505 |
#. translators: %s HTML tags
|
5506 |
-
#: settings.php:
|
5507 |
msgid "Ads between posts"
|
5508 |
msgstr "Oglasi med prispevki"
|
5509 |
|
5510 |
#. translators: %s HTML tags
|
5511 |
-
#: settings.php:
|
5512 |
msgid "Ads between comments"
|
5513 |
msgstr "Oglasi med komentarji"
|
5514 |
|
5515 |
#. translators: %s HTML tags
|
5516 |
-
#: settings.php:
|
5517 |
msgid "Support via email"
|
5518 |
msgstr "Podpora prek elektronske pošte"
|
5519 |
|
5520 |
#. translators: %s HTML tags
|
5521 |
-
#: settings.php:
|
5522 |
msgid "%s Sticky positions %s"
|
5523 |
msgstr "%s Lepljivi položaji %s"
|
5524 |
|
5525 |
#. translators: %s HTML tags
|
5526 |
-
#: settings.php:
|
5527 |
msgid "%s Limit insertions %s"
|
5528 |
msgstr "%s Omeji vstavljanja %s"
|
5529 |
|
5530 |
#. translators: %s HTML tags
|
5531 |
-
#: settings.php:
|
5532 |
msgid "%s Clearance %s options"
|
5533 |
msgstr "Možnosti %s izogibanja %s"
|
5534 |
|
5535 |
#. translators: %s HTML tags
|
5536 |
-
#: settings.php:
|
5537 |
msgid "Ad rotation"
|
5538 |
msgstr "Vrtenje oglasov"
|
5539 |
|
5540 |
#. translators: %s HTML tags
|
5541 |
-
#: settings.php:
|
5542 |
msgid "%s A/B testing %s"
|
5543 |
msgstr "%s A/B testiranje %s"
|
5544 |
|
5545 |
#. translators: %s HTML tags
|
5546 |
-
#: settings.php:
|
5547 |
msgid "%s Ad tracking %s"
|
5548 |
msgstr "%s Sledenje oglasom %s"
|
5549 |
|
5550 |
#. translators: %s HTML tags
|
5551 |
-
#: settings.php:
|
5552 |
msgid "Support for %s AMP pages %s"
|
5553 |
msgstr "Podpora za %s AMP strani %s"
|
5554 |
|
5555 |
#. translators: %s HTML tags
|
5556 |
-
#: settings.php:
|
5557 |
msgid "%s Ad blocking detection %s"
|
5558 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5559 |
|
5560 |
#. translators: %s HTML tags
|
5561 |
-
#: settings.php:
|
5562 |
msgid "%s Mobile device detection %s"
|
5563 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5564 |
|
5565 |
#. translators: %s HTML tags
|
5566 |
-
#: settings.php:
|
5567 |
msgid "64 code blocks"
|
5568 |
msgstr "64 kodnih blokov"
|
5569 |
|
5570 |
#. translators: %s HTML tags
|
5571 |
-
#: settings.php:
|
5572 |
msgid "%s GEO targeting %s"
|
5573 |
msgstr "%s GEO ciljanje %s"
|
5574 |
|
5575 |
#. translators: %s HTML tags
|
5576 |
-
#: settings.php:
|
5577 |
msgid "%s Scheduling %s"
|
5578 |
msgstr "%s Urnik %s"
|
5579 |
|
@@ -6360,8 +6372,9 @@ msgid "Add"
|
|
6360 |
msgstr "Dodaj"
|
6361 |
|
6362 |
#: strings.php:258
|
|
|
6363 |
msgid "Parent"
|
6364 |
-
msgstr "
|
6365 |
|
6366 |
#: strings.php:259
|
6367 |
msgid "Cancel element selection"
|
@@ -6369,7 +6382,7 @@ msgstr "Prekliči izbor HTML elementa"
|
|
6369 |
|
6370 |
#: strings.php:260
|
6371 |
msgid "Select parent element"
|
6372 |
-
msgstr "Izberi
|
6373 |
|
6374 |
#: strings.php:261
|
6375 |
msgid "CSS selector"
|
@@ -6392,6 +6405,11 @@ msgid "SELECTOR"
|
|
6392 |
msgstr "SELEKTOR"
|
6393 |
|
6394 |
#: strings.php:268
|
|
|
|
|
|
|
|
|
|
|
6395 |
msgid "Automatically placed by AdSense Auto ads code"
|
6396 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6397 |
|
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-01-15 17:16:55+00:00\n"
|
8 |
+
"PO-Revision-Date: 2020-01-15 18:19+0100\n"
|
9 |
"Last-Translator: Igor Funa <info@adinserter.pro>\n"
|
10 |
"Language-Team: \n"
|
11 |
"Language: sl_SI\n"
|
16 |
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100>=3 && n"
|
17 |
"%100<=4 ? 2 : 3);\n"
|
18 |
|
19 |
+
#: ad-inserter.php:353
|
20 |
msgctxt "Menu item"
|
21 |
msgid "Debugging DEMO"
|
22 |
msgstr "DEMO Razhroščevanje"
|
23 |
|
24 |
+
#: ad-inserter.php:369
|
25 |
msgctxt "Menu item"
|
26 |
msgid "Label Blocks"
|
27 |
msgstr "Označi bloke"
|
28 |
|
29 |
+
#: ad-inserter.php:376
|
30 |
msgctxt "Menu item"
|
31 |
msgid "Show Positions"
|
32 |
msgstr "Pokaži položaje"
|
33 |
|
34 |
+
#: ad-inserter.php:461
|
35 |
msgctxt "Menu item"
|
36 |
msgid "Show HTML Tags"
|
37 |
msgstr "Pokaži HTML značke"
|
38 |
|
39 |
+
#: ad-inserter.php:468
|
40 |
msgctxt "Menu item"
|
41 |
msgid "Disable Insertion"
|
42 |
msgstr "Onemogoči vstavljanje"
|
43 |
|
44 |
+
#: ad-inserter.php:477
|
45 |
msgctxt "Menu item"
|
46 |
msgid "Ad Blocking Status"
|
47 |
msgstr "Status blokiranja oglasov"
|
48 |
|
49 |
+
#: ad-inserter.php:484
|
50 |
msgctxt "Menu item"
|
51 |
msgid "Simulate Ad Blocking"
|
52 |
msgstr "Simuliraj blokiranje oglasov"
|
53 |
|
54 |
+
#: ad-inserter.php:495
|
55 |
msgctxt "Menu item"
|
56 |
msgid "Log Processing"
|
57 |
msgstr "Beleži procesiranje"
|
58 |
|
59 |
+
#: ad-inserter.php:502
|
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:1110
|
66 |
msgid "Before"
|
67 |
msgstr "Pred"
|
68 |
|
69 |
#. translators: Debugging position name After HTML element
|
70 |
+
#: ad-inserter.php:1115
|
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:1120 strings.php:103
|
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:1125 strings.php:104
|
83 |
msgid "Append content"
|
84 |
msgstr "Dodaj za vsebino"
|
85 |
|
86 |
#. translators: Debugging position name Replace content of HTML element
|
87 |
+
#: ad-inserter.php:1130 strings.php:105
|
88 |
msgid "Replace content"
|
89 |
msgstr "Nadomesti vsebino"
|
90 |
|
91 |
#. translators: Debugging position name Replace HTML element
|
92 |
+
#: ad-inserter.php:1135 strings.php:155
|
93 |
msgid "Replace"
|
94 |
msgstr "Nadomesti"
|
95 |
|
96 |
#. translators: Debugging message when output buffering is enabled
|
97 |
+
#: ad-inserter.php:1182
|
98 |
msgid "OUTPUT BUFFERING"
|
99 |
msgstr "PREDPOMNJENJE IZHODA"
|
100 |
|
101 |
#. translators: Debugging position
|
102 |
+
#: ad-inserter.php:1186
|
103 |
msgid "Above Header"
|
104 |
msgstr "Nad Glavo"
|
105 |
|
106 |
+
#: ad-inserter.php:1426
|
107 |
msgctxt "Menu item"
|
108 |
msgid "Log In"
|
109 |
msgstr "Prijava"
|
110 |
|
111 |
#. translators: %s: Ad Inserter
|
112 |
+
#: ad-inserter.php:1761 ad-inserter.php:2853
|
113 |
msgid "%s Settings"
|
114 |
msgstr "%s Nastavitve"
|
115 |
|
116 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
117 |
+
#: ad-inserter.php:2247
|
118 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
119 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, OGLEDI STRANI"
|
120 |
|
121 |
+
#: ad-inserter.php:2247
|
122 |
msgid "NO ACTION"
|
123 |
msgstr "NI AKCIJE"
|
124 |
|
125 |
+
#: ad-inserter.php:2248
|
126 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
127 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV, ZAZNAN PIŠKOTEK, NI AKCIJE"
|
128 |
|
129 |
+
#: ad-inserter.php:2249
|
130 |
msgid "AD BLOCKING DETECTED - ACTION"
|
131 |
msgstr "ZAZNANO BLOKIRANJE OGLASOV - AKCIJA"
|
132 |
|
133 |
+
#: ad-inserter.php:2250
|
134 |
msgid "AD BLOCKING NOT DETECTED"
|
135 |
msgstr "BLOKIRANJE OGLASOV NI ZAZNANO"
|
136 |
|
137 |
+
#: ad-inserter.php:2251
|
138 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
139 |
msgstr "PIŠKOTKI ZA ZAZNAVANJE BLOKIRANJA OGLASOV POBRISANI"
|
140 |
|
141 |
+
#: ad-inserter.php:2252
|
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:2548
|
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:2551
|
155 |
msgid "Please help me to solve a problem first"
|
156 |
msgstr "Najprej mi, prosim, pomagajte rešiti problem"
|
157 |
|
158 |
+
#: ad-inserter.php:2555
|
159 |
msgid "Maybe later"
|
160 |
msgstr "Mogoče kasneje"
|
161 |
|
162 |
#. Translators: %s: Ad Inserter
|
163 |
+
#: ad-inserter.php:2560
|
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:2563
|
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:2576
|
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:2578
|
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:2584
|
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:2601 ad-inserter.php:2636
|
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:2608
|
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:2618
|
204 |
msgctxt "Menu item"
|
205 |
msgid "Settings"
|
206 |
msgstr "Nastavitve"
|
207 |
|
208 |
+
#: ad-inserter.php:2650
|
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:2650
|
217 |
msgid "Safe mode"
|
218 |
msgstr "Varni način"
|
219 |
|
220 |
#. translators: %s: Ad Inserter
|
221 |
+
#: ad-inserter.php:2745
|
222 |
msgctxt "Meta box name"
|
223 |
msgid "%s Individual Exceptions"
|
224 |
msgstr "Posamezne Izjeme za %s"
|
225 |
|
226 |
+
#: ad-inserter.php:2774 ad-inserter.php:9652 class.php:2123
|
227 |
#: includes/preview.php:2002 includes/preview.php:2045
|
228 |
+
#: includes/preview.php:2082 settings.php:4188 strings.php:3
|
229 |
msgid "Block"
|
230 |
msgstr "Blok"
|
231 |
|
232 |
+
#: ad-inserter.php:2775 settings.php:4189 settings.php:4274
|
233 |
msgid "Name"
|
234 |
msgstr "Ime"
|
235 |
|
236 |
+
#: ad-inserter.php:2778 settings.php:1158
|
237 |
msgid "Default insertion"
|
238 |
msgstr "Privzeto vstavljanje"
|
239 |
|
240 |
#. translators: For this post or page
|
241 |
+
#: ad-inserter.php:2781
|
242 |
msgctxt "Page"
|
243 |
msgid "For this"
|
244 |
msgstr "Za to"
|
245 |
|
246 |
+
#: ad-inserter.php:2782
|
247 |
msgctxt "Post"
|
248 |
msgid "For this"
|
249 |
msgstr "Za ta"
|
250 |
|
251 |
+
#: ad-inserter.php:2794
|
252 |
msgctxt "Enabled/disabled on all"
|
253 |
msgid "pages"
|
254 |
msgstr "straneh"
|
255 |
|
256 |
+
#: ad-inserter.php:2797
|
257 |
msgctxt "Enabled/disabled on all"
|
258 |
msgid "posts"
|
259 |
msgstr "prispevkih"
|
260 |
|
261 |
+
#: ad-inserter.php:2814 ad-inserter.php:2826 strings.php:161
|
262 |
msgid "Enabled"
|
263 |
msgstr "Omogočeno"
|
264 |
|
265 |
#. translators: Menu items
|
266 |
+
#: ad-inserter.php:2814 ad-inserter.php:2826
|
267 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
268 |
#: includes/functions.php:2458 strings.php:16
|
269 |
msgid "Disabled"
|
270 |
msgstr "Onemogočeno"
|
271 |
|
272 |
+
#: ad-inserter.php:2816
|
273 |
msgid "No individual exceptions"
|
274 |
msgstr "Ni posameznih izjem"
|
275 |
|
276 |
#. translators: Not enabled for pages or posts
|
277 |
+
#: ad-inserter.php:2818
|
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:2846
|
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:2851
|
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:2854 settings.php:1136
|
296 |
msgid "Tag / Archive pages"
|
297 |
msgstr "Strani oznak / arhiva"
|
298 |
|
299 |
+
#: ad-inserter.php:2856
|
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:2857
|
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:2859
|
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:2861
|
321 |
msgid "Individual Exceptions"
|
322 |
msgstr "Posamezne Izjeme"
|
323 |
|
324 |
+
#: ad-inserter.php:2908
|
325 |
msgid "STATIC PAGE"
|
326 |
msgstr "STATIČNA STRAN"
|
327 |
|
328 |
+
#: ad-inserter.php:2911
|
329 |
msgid "POST"
|
330 |
msgstr "PRISPEVEK"
|
331 |
|
332 |
+
#: ad-inserter.php:2914
|
333 |
msgid "HOMEPAGE"
|
334 |
msgstr "DOMAČA STRAN"
|
335 |
|
336 |
+
#: ad-inserter.php:2917
|
337 |
msgid "CATEGORY PAGE"
|
338 |
msgstr "STRAN KATEGORIJE"
|
339 |
|
340 |
+
#: ad-inserter.php:2920
|
341 |
msgid "SEARCH PAGE"
|
342 |
msgstr "STRAN ISKANJE"
|
343 |
|
344 |
+
#: ad-inserter.php:2923
|
345 |
msgid "ARCHIVE PAGE"
|
346 |
msgstr "STRAN ARHIVA"
|
347 |
|
348 |
+
#: ad-inserter.php:2926
|
349 |
msgid "ERROR 404 PAGE"
|
350 |
msgstr "STRAN NAPAKA 404"
|
351 |
|
352 |
+
#: ad-inserter.php:2929
|
353 |
msgid "AJAX CALL"
|
354 |
msgstr "AJAX KLIC"
|
355 |
|
356 |
+
#: ad-inserter.php:2932
|
357 |
msgid "UNKNOWN PAGE TYPE"
|
358 |
msgstr "NEZNAN TIP STRANI"
|
359 |
|
360 |
+
#: ad-inserter.php:2949
|
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:2950
|
365 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
366 |
msgstr "NEZNAN STATUS BLOKIRANJA OGLASOV"
|
367 |
|
368 |
#. translators: %s: AdSense Auto Ads
|
369 |
+
#: ad-inserter.php:2979
|
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:3128
|
378 |
msgid "Code for insertion"
|
379 |
msgstr "Koda za vstavljanje"
|
380 |
|
381 |
+
#: ad-inserter.php:3128
|
382 |
msgid "character"
|
383 |
msgid_plural "characters"
|
384 |
msgstr[0] "znak"
|
386 |
msgstr[2] "znaki"
|
387 |
msgstr[3] "znakov"
|
388 |
|
389 |
+
#: ad-inserter.php:3185
|
390 |
msgid "Header code"
|
391 |
msgstr "Koda v glavi"
|
392 |
|
393 |
+
#: ad-inserter.php:3185
|
394 |
msgctxt "Header code"
|
395 |
msgid "DISABLED"
|
396 |
msgstr "ONEMOGOČENA"
|
397 |
|
398 |
+
#: ad-inserter.php:3185 ad-inserter.php:3463
|
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:3463
|
407 |
msgid "Footer code"
|
408 |
msgstr "Koda v nogi"
|
409 |
|
410 |
+
#: ad-inserter.php:3463
|
411 |
msgctxt "Footer code"
|
412 |
msgid "DISABLED"
|
413 |
msgstr "ONEMOGOČENA"
|
414 |
|
415 |
+
#: ad-inserter.php:3469
|
416 |
msgid "JAVASCRIPT NOT WORKING"
|
417 |
msgstr "JAVASCRIPT NE DELA"
|
418 |
|
419 |
+
#: ad-inserter.php:3469
|
420 |
msgid "NO JAVASCRIPT ERRORS"
|
421 |
msgstr "BREZ JAVASCRIPT NAPAK"
|
422 |
|
423 |
+
#: ad-inserter.php:3469
|
424 |
msgid "JAVASCRIPT ERRORS"
|
425 |
msgstr "JAVASCRIPT NAPAKE"
|
426 |
|
427 |
#. translators: block name (block with default settings)
|
428 |
+
#: ad-inserter.php:5856
|
429 |
msgctxt "Block name"
|
430 |
msgid "Default"
|
431 |
msgstr "Privzeti"
|
432 |
|
433 |
#. translators: %s: Ad Inserter
|
434 |
+
#: ad-inserter.php:6520
|
435 |
msgid "Error importing %s settings."
|
436 |
msgstr "Napaka pri uvozu %s nastavitev."
|
437 |
|
438 |
+
#: ad-inserter.php:6521
|
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:6574
|
447 |
msgid "Settings saved."
|
448 |
msgstr "Nastavitve shranjene."
|
449 |
|
450 |
#. translators: %s: Ad Inserter
|
451 |
+
#: ad-inserter.php:6576
|
452 |
msgid "Invalid data received - %s settings not saved."
|
453 |
msgstr "Prejeti neveljavni podatki - nastavitve %s niso shranjene."
|
454 |
|
455 |
+
#: ad-inserter.php:6670
|
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:7036 ad-inserter.php:7038 ad-inserter.php:7061
|
461 |
+
#: settings.php:2154
|
462 |
msgid "word"
|
463 |
msgid_plural "words"
|
464 |
msgstr[0] "besedo"
|
466 |
msgstr[2] "besede"
|
467 |
msgstr[3] "besed"
|
468 |
|
469 |
+
#: ad-inserter.php:7075 ad-inserter.php:7194
|
470 |
msgid "HTML TAGS REMOVED"
|
471 |
msgstr "HTML ZNAČKE ODSTRANJENE"
|
472 |
|
473 |
+
#: ad-inserter.php:7270
|
474 |
msgid "BEFORE COMMENTS"
|
475 |
msgstr "PRED KOMENTARJI"
|
476 |
|
477 |
+
#: ad-inserter.php:7387
|
478 |
msgid "AFTER COMMENTS"
|
479 |
msgstr "PO KOMETARJIH"
|
480 |
|
481 |
+
#: ad-inserter.php:7459
|
482 |
msgid "BETWEEN COMMENTS"
|
483 |
msgstr "MED KOMENTARJI"
|
484 |
|
485 |
+
#: ad-inserter.php:9270
|
486 |
msgid "requires WordPress 4.6 or newer"
|
487 |
msgstr "potrebuje WordPress 4.6 ali novejši"
|
488 |
|
489 |
+
#: ad-inserter.php:9270
|
490 |
msgid "Please update!"
|
491 |
msgstr "Prosimo, posodobite!"
|
492 |
|
493 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
494 |
#. name with HTML tags will be added)
|
495 |
+
#: ad-inserter.php:9525
|
496 |
msgid "Thank you for installing"
|
497 |
msgstr "Hvala za namestitev vtičnika"
|
498 |
|
499 |
#. translators: Opt-in message: %s: HTML tags
|
500 |
+
#: ad-inserter.php:9527
|
501 |
msgid ""
|
502 |
"We would like to %s track its usage %s on your site. This is completely "
|
503 |
"optional and can be disabled at any time."
|
505 |
"Radi bi %s sledili njegovi uporabi %s na vašem spletnem mestu. To je povsem "
|
506 |
"izbirno in se lahko izključi kadarkoli."
|
507 |
|
508 |
+
#: ad-inserter.php:9529
|
509 |
msgid ""
|
510 |
"We don't record any sensitive data, only information regarding the WordPress "
|
511 |
"environment and plugin usage, which will help us to make improvements to the "
|
515 |
"uporabe vtičnika, kar nam bo omogočilo izdelavo izboljšav za vtičnik."
|
516 |
|
517 |
#. translators: Deactivation message: %s: HTML tags
|
518 |
+
#: ad-inserter.php:9566
|
519 |
msgid ""
|
520 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
521 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
526 |
"nam %s in poskušali vam bomo pomagati."
|
527 |
|
528 |
#. translators: %s: Ad Inserter
|
529 |
+
#: ad-inserter.php:9610
|
530 |
msgid "%s block."
|
531 |
msgstr "%s blok."
|
532 |
|
533 |
#. translators: widget title
|
534 |
+
#: ad-inserter.php:9626 ad-inserter.php:9661
|
535 |
msgid "Processing log"
|
536 |
msgstr "Dnevnik procesiranja"
|
537 |
|
538 |
#. translators: widget title
|
539 |
+
#: ad-inserter.php:9628 ad-inserter.php:9662
|
540 |
msgid "Dummy widget"
|
541 |
msgstr "Prazen gradnik"
|
542 |
|
543 |
#. translators: widget title
|
544 |
+
#: ad-inserter.php:9630 ad-inserter.php:9660
|
545 |
msgid "Debugging tools"
|
546 |
msgstr "Orodja za razhroščevanje"
|
547 |
|
548 |
#. translators: block status (widget title)
|
549 |
+
#: ad-inserter.php:9637
|
550 |
msgctxt "block"
|
551 |
msgid "PAUSED"
|
552 |
msgstr "USTAVLJEN"
|
553 |
|
554 |
+
#: ad-inserter.php:9638
|
555 |
msgid "WIDGET DISABLED"
|
556 |
msgstr "GRADNIK ONEMOGOČEN"
|
557 |
|
558 |
+
#: ad-inserter.php:9639
|
559 |
msgid "Unknown block"
|
560 |
msgstr "Neznan blok"
|
561 |
|
562 |
+
#: ad-inserter.php:9647 includes/functions-check-now.php:3261
|
563 |
+
#: includes/functions.old.php:3186 includes/functions.php:3333
|
564 |
+
#: settings.php:1188
|
565 |
msgid "Title"
|
566 |
msgstr "Naslov"
|
567 |
|
568 |
+
#: ad-inserter.php:9669
|
569 |
msgctxt "Widget"
|
570 |
msgid "Sticky"
|
571 |
msgstr "Lepljiv"
|
572 |
|
573 |
+
#: ad-inserter.php:9718
|
574 |
msgid ""
|
575 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
576 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
579 |
"aktiven! Za aktivacijo vtičnika Ad Inserter morate najprej onemogočiti Ad "
|
580 |
"Inserter Pro."
|
581 |
|
582 |
+
#: ad-inserter.php:9719
|
583 |
msgid ""
|
584 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
585 |
"will clear all settings that are available only in the Pro version "
|
590 |
"različici (dodatne nastavitve blokov in vtičnika)!"
|
591 |
|
592 |
#. translators: %s: Ad Inserter
|
593 |
+
#: class.php:538 class.php:547 class.php:550
|
594 |
msgid "PHP error in %s block"
|
595 |
msgstr "PHP napaka v bloku %s"
|
596 |
|
597 |
+
#: class.php:2073
|
598 |
msgid "Counters"
|
599 |
msgstr "Števci"
|
600 |
|
601 |
+
#: class.php:2077
|
602 |
msgid "Content"
|
603 |
msgstr "Vsebina"
|
604 |
|
605 |
+
#: class.php:2082
|
606 |
msgid "Excerpt"
|
607 |
msgstr "Izvleček"
|
608 |
|
609 |
+
#: class.php:2087 strings.php:17
|
610 |
msgid "Before post"
|
611 |
msgstr "Pred prispevkom"
|
612 |
|
613 |
+
#: class.php:2092 strings.php:18
|
614 |
msgid "After post"
|
615 |
msgstr "Za prispevkom"
|
616 |
|
617 |
+
#: class.php:2097 strings.php:25
|
618 |
msgid "Between posts"
|
619 |
msgstr "Med prispevki"
|
620 |
|
621 |
+
#: class.php:2102 settings.php:1897 settings.php:4206
|
622 |
msgid "Widget"
|
623 |
msgstr "Gradnik"
|
624 |
|
625 |
+
#: class.php:2107 settings.php:4204
|
626 |
msgid "PHP function call"
|
627 |
msgstr "Klic PHP funkcije"
|
628 |
|
629 |
#. Translators: %s: custom hook name
|
630 |
+
#: class.php:2117
|
631 |
msgid "Custom hook %s call"
|
632 |
msgstr "Klic ročice po meri %s"
|
633 |
|
634 |
+
#: class.php:2153
|
635 |
msgid "AJAX REQUEST"
|
636 |
msgstr "AJAX ZAHTEVEK"
|
637 |
|
638 |
+
#: class.php:2156
|
639 |
msgid "Ajax request for block in iframe"
|
640 |
msgstr "Ajax zahtevek za blok v iframe-u"
|
641 |
|
642 |
+
#: class.php:2190
|
643 |
msgid "Ajax request url, click to open it in a new tab"
|
644 |
msgstr "Url Ajax zahtevka, kliknite, da ga odprete v novem zavihku"
|
645 |
|
646 |
+
#: class.php:2193
|
647 |
msgid "IN THE LOOP"
|
648 |
msgstr "V ZANKI"
|
649 |
|
650 |
+
#: class.php:2193
|
651 |
msgid "YES"
|
652 |
msgstr "DA"
|
653 |
|
654 |
+
#: class.php:2193
|
655 |
msgid "NO"
|
656 |
msgstr "NE"
|
657 |
|
658 |
+
#: class.php:2229
|
659 |
msgid "BLOCK"
|
660 |
msgstr "BLOK"
|
661 |
|
662 |
+
#: class.php:2229
|
663 |
msgctxt "block or widget"
|
664 |
msgid "INSERTED BUT NOT VISIBLE"
|
665 |
msgstr "VSTAVLJEN, VENDAR NI VIDEN"
|
666 |
|
667 |
+
#: class.php:2397
|
668 |
msgctxt "viewports"
|
669 |
msgid "ALL"
|
670 |
msgstr "VSI"
|
671 |
|
672 |
+
#: class.php:2430 class.php:2472 class.php:3727 strings.php:267
|
673 |
msgctxt "Block"
|
674 |
msgid "HIDDEN"
|
675 |
msgstr "SKRIT"
|
676 |
|
677 |
+
#: class.php:2479 class.php:3730 strings.php:266
|
678 |
msgctxt "Block"
|
679 |
msgid "VISIBLE"
|
680 |
msgstr "VIDEN"
|
681 |
|
682 |
+
#: class.php:2984 class.php:3054
|
683 |
msgid "ACTIVE GROUPS"
|
684 |
msgstr "AKTIVNE SKUPINE"
|
685 |
|
686 |
+
#: class.php:3426
|
687 |
+
msgid "start='%s' end='%s' days='%s' type='%s'"
|
688 |
+
msgstr "začetek='%s' konec='%s' dnevi='%s' tip='%s'"
|
689 |
+
|
690 |
#. translators: %s: list parameters and type
|
691 |
+
#: class.php:3434
|
692 |
msgid "parameters='%s' type='%s'"
|
693 |
msgstr "parametri='%s' tip='%s'"
|
694 |
|
695 |
#. translators: %s: list parameters and type
|
696 |
+
#: class.php:3436
|
697 |
msgid "referers='%s' type='%s'"
|
698 |
msgstr "napotitelji='%s' tip='%s'"
|
699 |
|
700 |
#. translators: %s: list parameters and type
|
701 |
+
#: class.php:3438
|
702 |
msgid "clients='%s' type='%s'"
|
703 |
msgstr "odjemalci='%s' tip='%s'"
|
704 |
|
705 |
#. translators: %s: list parameters and type
|
706 |
+
#: class.php:3610
|
707 |
msgid "countries='%s' type='%s'"
|
708 |
msgstr "države='%s' tip='%s'"
|
709 |
|
710 |
#. translators: %s: list parameters and type
|
711 |
+
#: class.php:3612
|
712 |
msgid "ip addresses='%s' type='%s'"
|
713 |
msgstr "ip naslovi='%s' tip='%s'"
|
714 |
|
715 |
+
#: class.php:3727 class.php:3730
|
716 |
msgid "viewport='%s' type='%s'"
|
717 |
msgstr "pogled='%s' tip='%s'"
|
718 |
|
719 |
+
#: class.php:4113 strings.php:249
|
720 |
msgid "BEFORE"
|
721 |
msgstr "PRED"
|
722 |
|
723 |
+
#: class.php:4121 strings.php:251
|
724 |
msgid "PREPEND CONTENT"
|
725 |
msgstr "DODAJ PRED VSEBINO"
|
726 |
|
727 |
+
#: class.php:4125 strings.php:252
|
728 |
msgid "APPEND CONTENT"
|
729 |
msgstr "DODAJ ZA VSEBINO"
|
730 |
|
731 |
+
#: class.php:4129 strings.php:253
|
732 |
msgid "REPLACE CONTENT"
|
733 |
msgstr "NADOMESTI VSEBINO"
|
734 |
|
735 |
+
#: class.php:4133 strings.php:254
|
736 |
msgid "REPLACE ELEMENT"
|
737 |
msgstr "NADOMESTI ELEMENT"
|
738 |
|
739 |
+
#: class.php:4144 strings.php:250
|
740 |
msgid "AFTER"
|
741 |
msgstr "ZA"
|
742 |
|
743 |
+
#: class.php:4229 includes/preview.php:2045 includes/preview.php:2082
|
744 |
msgid "Code"
|
745 |
msgstr "Koda"
|
746 |
|
747 |
+
#: class.php:4232
|
748 |
msgid "for block"
|
749 |
msgstr "za blok"
|
750 |
|
751 |
+
#: class.php:7451 class.php:7503
|
752 |
msgctxt "category name"
|
753 |
msgid "Uncategorized"
|
754 |
msgstr "Nekategorizirano"
|
755 |
|
756 |
+
#: class.php:8041
|
757 |
msgid ""
|
758 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
759 |
"extension for PHP."
|
771 |
msgstr "Ponastavi"
|
772 |
|
773 |
#: includes/editor.php:9 includes/placeholders.php:354
|
774 |
+
#: includes/preview.php:1991 settings.php:3598 strings.php:210 strings.php:255
|
775 |
msgid "Cancel"
|
776 |
msgstr "Prekliči"
|
777 |
|
788 |
"Ta stran se ni naložila pravilno. Prevrrite brskalnik, vtičnike in "
|
789 |
"blokiranje oglasov."
|
790 |
|
791 |
+
#: includes/editor.php:264 settings.php:277
|
792 |
msgid "Error loading page"
|
793 |
msgstr "Napaka pri nalaganju strani"
|
794 |
|
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:450 settings.php:1339 settings.php:2811
|
872 |
msgid "Open HTML element selector"
|
873 |
msgstr "Odpri izbirnik HTML elementa"
|
874 |
|
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:518 includes/functions.php:3107
|
918 |
msgid "Toggle Statistics"
|
919 |
msgstr "Preklopi Statistiko"
|
920 |
|
941 |
msgstr "%s licenca prekomerno uporabljena. Nadaljujem?"
|
942 |
|
943 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
944 |
+
#: includes/functions.php:558 settings.php:1093 settings.php:2255
|
945 |
msgid "Save Settings"
|
946 |
msgstr "Shrani Nastavitve"
|
947 |
|
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:789 settings.php:3533 settings.php:3569
|
1048 |
+
#: settings.php:3611 strings.php:220
|
1049 |
msgid "Loading..."
|
1050 |
msgstr "Nalagam..."
|
1051 |
|
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:968 includes/functions.php:3072
|
1237 |
msgid "Toggle country editor"
|
1238 |
msgstr "Preklopi urejevalnik držav"
|
1239 |
|
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:975 includes/functions.php:3075
|
1248 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1249 |
msgstr "Z vejico ločene ISO Alpha-2 kode držav"
|
1250 |
|
1409 |
msgstr "Geolokacija"
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1412 |
+
#: includes/functions.php:2394 settings.php:4193
|
1413 |
msgid "Exceptions"
|
1414 |
msgstr "Izjeme"
|
1415 |
|
1419 |
msgstr "Multisite"
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1422 |
+
#: includes/functions.php:2404 settings.php:4199
|
1423 |
msgid "Tracking"
|
1424 |
msgstr "Sledenje"
|
1425 |
|
1442 |
msgstr "Poteklo"
|
1443 |
|
1444 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1445 |
+
#: includes/functions.php:2474 settings.php:1421 settings.php:1436
|
1446 |
+
#: settings.php:1526 settings.php:2152
|
1447 |
msgid "and"
|
1448 |
msgstr "in"
|
1449 |
|
1494 |
msgstr "Predpreglej kodo iframe"
|
1495 |
|
1496 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1497 |
+
#: includes/functions.php:2518 includes/preview.php:2000 settings.php:1088
|
1498 |
+
#: settings.php:2873
|
1499 |
msgid "Preview"
|
1500 |
msgstr "Predogled"
|
1501 |
|
1502 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1503 |
+
#: includes/functions.php:2532 settings.php:4200
|
1504 |
msgid "Limits"
|
1505 |
msgstr "Omejitve"
|
1506 |
|
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:2537 includes/functions.php:4519
|
1511 |
+
#: includes/functions.php:4582 settings.php:2302
|
1512 |
msgid "Ad Blocking"
|
1513 |
msgstr "Blokiranje Oglasov"
|
1514 |
|
1577 |
#: includes/functions.php:2664 includes/functions.php:2674
|
1578 |
#: includes/functions.php:2693 includes/functions.php:2703
|
1579 |
#: includes/functions.php:2749 includes/functions.php:2758
|
1580 |
+
#: includes/functions.php:2776 includes/functions.php:2785 settings.php:2073
|
1581 |
msgid "Max"
|
1582 |
msgstr "Največ"
|
1583 |
|
1647 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1648 |
#: includes/functions.php:2684 includes/functions.php:2713
|
1649 |
#: includes/functions.php:2768 includes/functions.php:2795
|
1650 |
+
#: includes/functions.php:2901 includes/functions.php:3233 strings.php:201
|
1651 |
#: strings.php:202 strings.php:203 strings.php:204 strings.php:205
|
1652 |
#: strings.php:206
|
1653 |
msgid "day"
|
1872 |
|
1873 |
#. Translators: %s MaxMind
|
1874 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1875 |
+
#: includes/functions.php:3007
|
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:3018
|
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:3021
|
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:3032
|
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:3035
|
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:3043
|
1905 |
msgid "Database"
|
1906 |
msgstr "Podatkovna baza"
|
1907 |
|
1908 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1909 |
+
#: includes/functions.php:3046
|
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:3064
|
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:3070
|
1925 |
msgid "countries"
|
1926 |
msgstr "države"
|
1927 |
|
1928 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1929 |
+
#: includes/functions.php:3115
|
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 |
+
#: includes/functions.php:3122
|
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:3130
|
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:3131 settings.php:2761
|
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:3147
|
1955 |
msgid "Internal"
|
1956 |
msgstr "Notranje"
|
1957 |
|
1958 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1959 |
+
#: includes/functions.php:3151
|
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:3156
|
1965 |
msgid "External"
|
1966 |
msgstr "Zunanje"
|
1967 |
|
1968 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1969 |
+
#: includes/functions.php:3160
|
1970 |
msgid ""
|
1971 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1972 |
"code installed)"
|
1975 |
"kodo za sledenje)"
|
1976 |
|
1977 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1978 |
+
#: includes/functions.php:3165
|
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:3171
|
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:3181
|
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:3187
|
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:3197
|
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:3203
|
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 |
"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:3222
|
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:3226
|
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:3232
|
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:3233
|
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 |
"za krajša obdobja."
|
2035 |
|
2036 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
2037 |
+
#: includes/functions.php:3252
|
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:3255
|
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 |
"ponastavitev na privzeto sliko."
|
2051 |
|
2052 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
2053 |
+
#: includes/functions.php:3256 strings.php:232
|
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:3261
|
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:3264
|
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 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2070 |
|
2071 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
2072 |
+
#: includes/functions.php:3269
|
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:3272
|
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 |
"pobrišite za ponastavitev na privzeto besedilo."
|
2084 |
|
2085 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
2086 |
+
#: includes/functions.php:3277
|
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:3280
|
2092 |
msgid ""
|
2093 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
2094 |
"to default text."
|
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:3285
|
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:3288
|
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:3320
|
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:3321 settings.php:1191
|
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:3328
|
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:3328
|
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:3333 settings.php:3842 settings.php:4276
|
2133 |
msgid "Type"
|
2134 |
msgstr "Vrsta"
|
2135 |
|
2136 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
2137 |
+
#: includes/functions.php:3351
|
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:3352 includes/functions.php:3359
|
2145 |
+
#: includes/functions.php:3363 includes/placeholders.php:353
|
2146 |
+
#: includes/preview.php:2306 settings.php:1325 settings.php:3602
|
2147 |
msgid "Edit"
|
2148 |
msgstr "Uredi"
|
2149 |
|
2150 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2151 |
+
#: includes/functions.php:3382
|
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:3383
|
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:3396
|
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:3407
|
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:3412
|
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:3412
|
2179 |
msgid "Widgets"
|
2180 |
msgstr "Gradniki"
|
2181 |
|
2182 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2183 |
+
#: includes/functions.php:3417
|
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:3417
|
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:3422
|
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:3422
|
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:3427
|
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:3427
|
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:3432
|
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:3432
|
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:3448 settings.php:2760
|
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:3454
|
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 |
#: 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:4151 includes/functions.php:4272
|
2248 |
#: includes/functions.php:4292
|
2249 |
msgid "AD BLOCKING"
|
2250 |
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:4152 includes/functions.php:4198
|
2257 |
#: includes/functions.php:4266 includes/functions.php:4293
|
2258 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2259 |
msgstr "BLOK VSTAVLJEN, VENDAR NI VIDEN"
|
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:4155 includes/functions.php:4265
|
2265 |
#: includes/functions.php:4299
|
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:4197 includes/functions.php:4204
|
2272 |
msgid "AD BLOCKING REPLACEMENT"
|
2273 |
msgstr "NADOMESTEK V PRIMERU BLOKIRANJA OGLASOV"
|
2274 |
|
2430 |
msgid "Invalid %s version. Continue?"
|
2431 |
msgstr "Neveljavna izdaja %s. Nadaljujem?"
|
2432 |
|
2433 |
+
#: includes/functions.php:944 includes/functions.php:980 settings.php:1652
|
2434 |
+
#: settings.php:1683 settings.php:1714 settings.php:1745 settings.php:1776
|
2435 |
+
#: settings.php:1807 settings.php:1837 settings.php:1867
|
2436 |
msgid "Click to select black or white list"
|
2437 |
msgstr "Klikni za za izbor črnega ali belega seznama"
|
2438 |
|
2483 |
msgstr "Izberite želene dneve v tednu"
|
2484 |
|
2485 |
#. translators: %s: Ad Inserter Pro
|
2486 |
+
#: includes/functions.php:3437
|
2487 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2488 |
msgstr ""
|
2489 |
"Pokaži povezavo na %s stran z nastavitvami za vsako spletišče na strani "
|
2490 |
"Spletišča"
|
2491 |
|
2492 |
#. translators: %s: Ad Inserter Pro
|
2493 |
+
#: includes/functions.php:3437
|
2494 |
msgid "Show link to %s on the Sites page"
|
2495 |
msgstr "Pokaži povezavo na %s na strani Spletišča"
|
2496 |
|
2518 |
msgid "Placeholder"
|
2519 |
msgstr "Polnilo"
|
2520 |
|
2521 |
+
#: includes/placeholders.php:363 settings.php:934 settings.php:4277
|
2522 |
msgid "Size"
|
2523 |
msgstr "Velikost"
|
2524 |
|
2651 |
msgid "Ad Blocking Detected Message Preview"
|
2652 |
msgstr "Predogled Sporočila ko je Zaznano Blokiranje Oglasov"
|
2653 |
|
2654 |
+
#: includes/preview-adb.php:348 settings.php:2886
|
2655 |
msgid "Message CSS"
|
2656 |
msgstr "CSS sporočila"
|
2657 |
|
2658 |
+
#: includes/preview-adb.php:353 settings.php:2894
|
2659 |
msgid "Overlay CSS"
|
2660 |
msgstr "CSS prevleke"
|
2661 |
|
2691 |
msgid "background"
|
2692 |
msgstr "ozadje"
|
2693 |
|
2694 |
+
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:1286
|
2695 |
msgid "Alignment"
|
2696 |
msgstr "Poravnava"
|
2697 |
|
2836 |
"Označi označi ozadje, območje odmika in območje kode, medtem ko gumb "
|
2837 |
"Ponastavi vrne vse vrednosti na tiste od trenutnega bloka."
|
2838 |
|
2839 |
+
#: settings.php:188 settings.php:1175
|
2840 |
msgid ""
|
2841 |
"Settings for individual exceptions have been updated. Please check all "
|
2842 |
"blocks that have exceptions and and then save settings."
|
2844 |
"Nastavitve za posamezne izjeme so bile posodobljene. Prosimo, preverite vse "
|
2845 |
"bloke, ki imajo izjeme in potem shranite nastavitve."
|
2846 |
|
2847 |
+
#: settings.php:230
|
2848 |
msgid "Online documentation"
|
2849 |
msgstr "Spletna Dokumentacija"
|
2850 |
|
2851 |
+
#: settings.php:234 settings.php:769 settings.php:2269
|
2852 |
msgid "Show AdSense ad units"
|
2853 |
msgstr "Pokaži oglasne enote AdSense"
|
2854 |
|
2855 |
+
#: settings.php:243
|
2856 |
msgid "Edit ads.txt file"
|
2857 |
msgstr "Uredi datoteko ads.txt"
|
2858 |
|
2859 |
+
#: settings.php:246 settings.php:1118
|
2860 |
msgid "Check theme for available positions for automatic insertion"
|
2861 |
msgstr "Preveri temo za razpoložljive položaje za samodejno vstavljanje"
|
2862 |
|
2863 |
+
#: settings.php:248
|
2864 |
msgid "List all blocks"
|
2865 |
msgstr "Izpiši seznam vseh blokov"
|
2866 |
|
2867 |
+
#: settings.php:255
|
2868 |
msgid "Loaded plugin JavaScript file version"
|
2869 |
msgstr "Naložena različica JavaScript datoteke vtičnika"
|
2870 |
|
2871 |
#. translators: %s: HTML tags
|
2872 |
+
#: settings.php:257
|
2873 |
msgid ""
|
2874 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2875 |
"due to inappropriate caching."
|
2877 |
"Napačen ali %s manjkajoč parameter verzije %s JavaScript datoteke, najbrž "
|
2878 |
"zaradi nepravilnega predpomnjenja."
|
2879 |
|
2880 |
+
#: settings.php:258
|
2881 |
msgid ""
|
2882 |
"Missing version parameter of the JavaScript file, probably due to "
|
2883 |
"inappropriate caching."
|
2885 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2886 |
"predpomnjenja."
|
2887 |
|
2888 |
+
#: settings.php:259
|
2889 |
msgid ""
|
2890 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2891 |
"caching."
|
2893 |
"Naložena je nezdružljiva (stara) različica JavaScript datoteke, najbrž "
|
2894 |
"zaradi nepravilnega predpomnjenja."
|
2895 |
|
2896 |
+
#: settings.php:260 settings.php:271
|
2897 |
msgid ""
|
2898 |
"Please delete browser's cache and all other caches used and then reload this "
|
2899 |
"page."
|
2901 |
"Prosimo, pobrišite predpomnilnik brskalnika in vse druge predpomnilnike ter "
|
2902 |
"potem na novo naložite to stran."
|
2903 |
|
2904 |
+
#: settings.php:266
|
2905 |
msgid "Loaded plugin CSS file version"
|
2906 |
msgstr "Naložena različica CSS datoteke vtičnika"
|
2907 |
|
2908 |
#. translators: %s: HTML tags
|
2909 |
+
#: settings.php:268
|
2910 |
msgid ""
|
2911 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2912 |
"inappropriate caching."
|
2914 |
"Napačen ali %s manjkajoč parameter verzije %s CSS datoteke, najbrž zaradi "
|
2915 |
"nepravilnega predpomnjenja."
|
2916 |
|
2917 |
+
#: settings.php:269
|
2918 |
msgid ""
|
2919 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2920 |
"caching."
|
2922 |
"Manjka parameter verzije JavaScript datoteke, najbrž zaradi nepravilnega "
|
2923 |
"predpomnjenja."
|
2924 |
|
2925 |
+
#: settings.php:270
|
2926 |
msgid ""
|
2927 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2928 |
msgstr ""
|
2929 |
"Naložena je nezdružljiva (stara) različica CSS datoteke, najbrž zaradi "
|
2930 |
"nepravilnega predpomnjenja."
|
2931 |
|
2932 |
+
#: settings.php:277 settings.php:303
|
2933 |
msgid "WARNING"
|
2934 |
msgstr "OPOZORILO"
|
2935 |
|
2936 |
#. translators: %s: HTML tags
|
2937 |
+
#: settings.php:279
|
2938 |
msgid "Page may %s not be loaded properly. %s"
|
2939 |
msgstr "Stran mogoče %s ni naložena pravilno. %s"
|
2940 |
|
2941 |
+
#: settings.php:280
|
2942 |
msgid ""
|
2943 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2944 |
msgstr ""
|
2945 |
"Preverite programe za blokiranje oglasov, ki lahko onemogočijo CSS, "
|
2946 |
"JavaScript ali slikovne datoteke."
|
2947 |
|
2948 |
+
#: settings.php:289
|
2949 |
msgid "SAFE MODE"
|
2950 |
msgstr "VARNI NAČIN"
|
2951 |
|
2952 |
#. translators: %s: HTML tags
|
2953 |
+
#: settings.php:291
|
2954 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2955 |
msgstr "Stran je naložena v %s varnem načinu. %s Vse skripte niso naložene."
|
2956 |
|
2957 |
+
#: settings.php:303
|
2958 |
msgid ""
|
2959 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2960 |
"Debugging"
|
2962 |
"Za izključitev razhroščevalnih funkcij in za vključitev vstavljanja pojdite "
|
2963 |
"na zavihek [*] / zavihek Razhroščevanje"
|
2964 |
|
2965 |
+
#: settings.php:305
|
2966 |
msgid "Debugging functions enabled - some code is not inserted"
|
2967 |
msgstr "Vključene so funkcije za razhroščevanje - nekatera koda ni vstavljena"
|
2968 |
|
2969 |
+
#: settings.php:322
|
2970 |
msgid "Group name"
|
2971 |
msgstr "Ime skupine"
|
2972 |
|
2973 |
+
#: settings.php:323
|
2974 |
msgid "Option name"
|
2975 |
msgstr "Ime različice"
|
2976 |
|
2977 |
+
#: settings.php:329
|
2978 |
msgid "Share"
|
2979 |
msgstr "Delež"
|
2980 |
|
2981 |
+
#: settings.php:332
|
2982 |
msgid ""
|
2983 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2984 |
"option is not defined it will be calculated automatically. Leave all share "
|
2988 |
"eno različico ni določen bo izračunan samodejno. Pustite vsa polja za deleže "
|
2989 |
"prazne za enakomerno porazdelitev deležev različic."
|
2990 |
|
2991 |
+
#: settings.php:335
|
2992 |
msgid "Time"
|
2993 |
msgstr "Čas"
|
2994 |
|
2995 |
+
#: settings.php:338
|
2996 |
msgid ""
|
2997 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2998 |
"Leave all time fields empty for no timed rotation."
|
3000 |
"Čas različice v sekundah - 0 pomeni, da je različica onemogočena in bo "
|
3001 |
"preskočena. Pustite vse polja za čas prazna za rotacijo brez časov."
|
3002 |
|
3003 |
+
#: settings.php:490
|
3004 |
msgid "General Settings"
|
3005 |
msgstr "Splošne Nastavitve"
|
3006 |
|
3007 |
+
#: settings.php:717 settings.php:2613 settings.php:2680 settings.php:2866
|
3008 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
3009 |
msgstr ""
|
3010 |
"Preklopi Poudarjanje Sintakse / Preprost urejevalnik za mobilne naprave"
|
3011 |
|
3012 |
+
#: settings.php:724
|
3013 |
msgid "Toggle tools"
|
3014 |
msgstr "Preklopi orodja"
|
3015 |
|
3016 |
+
#: settings.php:732
|
3017 |
msgid "Process PHP code in block"
|
3018 |
msgstr "Procesiraj PHP kodo v bloku"
|
3019 |
|
3020 |
+
#: settings.php:739
|
3021 |
msgid "Disable insertion of this block"
|
3022 |
msgstr "Onemogoči vstavljanje tega bloka"
|
3023 |
|
3024 |
+
#: settings.php:751
|
3025 |
msgid "Toggle code generator"
|
3026 |
msgstr "Preklopi generator kode"
|
3027 |
|
3028 |
+
#: settings.php:755
|
3029 |
msgid "Toggle rotation editor"
|
3030 |
msgstr "Preklopi urejevalnik rotacije"
|
3031 |
|
3032 |
+
#: settings.php:759
|
3033 |
msgid "Open visual HTML editor"
|
3034 |
msgstr "Odpri vizualni HTML urejevalnik"
|
3035 |
|
3036 |
+
#: settings.php:778
|
3037 |
msgid "Clear block"
|
3038 |
msgstr "Počisti blok"
|
3039 |
|
3040 |
+
#: settings.php:783 settings.php:4149
|
3041 |
msgid "Copy block"
|
3042 |
msgstr "Kopiraj blok"
|
3043 |
|
3044 |
+
#: settings.php:787
|
3045 |
msgid "Paste name"
|
3046 |
msgstr "Prilepi ime"
|
3047 |
|
3048 |
+
#: settings.php:791
|
3049 |
msgid "Paste code"
|
3050 |
msgstr "Prilepi kodo"
|
3051 |
|
3052 |
+
#: settings.php:795
|
3053 |
msgid "Paste settings"
|
3054 |
msgstr "Prilepi nastavitve"
|
3055 |
|
3056 |
+
#: settings.php:799
|
3057 |
msgid "Paste block (name, code and settings)"
|
3058 |
msgstr "Prilepi blok (ime, kodo in nastavitve)"
|
3059 |
|
3060 |
+
#: settings.php:818
|
3061 |
msgid "Rotation groups"
|
3062 |
msgstr "Skupine za rotacijo"
|
3063 |
|
3064 |
+
#: settings.php:822
|
3065 |
msgid "Remove option"
|
3066 |
msgstr "Odstrani različico"
|
3067 |
|
3068 |
+
#: settings.php:826
|
3069 |
msgid "Add option"
|
3070 |
msgstr "Dodaj različico"
|
3071 |
|
3072 |
+
#: settings.php:841
|
3073 |
msgid "Import code"
|
3074 |
msgstr "Uvozi kodo"
|
3075 |
|
3076 |
+
#: settings.php:845
|
3077 |
msgid "Generate code"
|
3078 |
msgstr "Generiraj kodo"
|
3079 |
|
3080 |
+
#: settings.php:850
|
3081 |
msgid "Banner"
|
3082 |
msgstr "Pasica"
|
3083 |
|
3084 |
+
#: settings.php:861
|
3085 |
msgid "Image"
|
3086 |
msgstr "Slika"
|
3087 |
|
3088 |
+
#: settings.php:869
|
3089 |
msgid "Link"
|
3090 |
msgstr "Povezava"
|
3091 |
|
3092 |
+
#: settings.php:880
|
3093 |
msgid "Open link in a new tab"
|
3094 |
msgstr "Odpri povezavo v novem zavihku"
|
3095 |
|
3096 |
+
#: settings.php:881
|
3097 |
msgid "Select Image"
|
3098 |
msgstr "Izberi Sliko"
|
3099 |
|
3100 |
+
#: settings.php:882
|
3101 |
msgid "Select Placeholder"
|
3102 |
msgstr "Izberi Polnilo"
|
3103 |
|
3104 |
+
#: settings.php:894
|
3105 |
msgid "Comment"
|
3106 |
msgstr "Komentar"
|
3107 |
|
3108 |
+
#: settings.php:903
|
3109 |
msgctxt "AdSense"
|
3110 |
msgid "Publisher ID"
|
3111 |
msgstr "ID založnika"
|
3112 |
|
3113 |
+
#: settings.php:912
|
3114 |
msgctxt "AdSense"
|
3115 |
msgid "Ad Slot ID"
|
3116 |
msgstr "ID mesta"
|
3117 |
|
3118 |
+
#: settings.php:921
|
3119 |
msgid "Ad Type"
|
3120 |
msgstr "Vrsta"
|
3121 |
|
3122 |
+
#: settings.php:946
|
3123 |
msgid "AMP Ad"
|
3124 |
msgstr "AMP Oglas"
|
3125 |
|
3126 |
+
#: settings.php:964
|
3127 |
msgid "Show ad units from your AdSense account"
|
3128 |
msgstr "Prikaži oglasne enote s tvojega AdSense računa"
|
3129 |
|
3130 |
+
#: settings.php:964
|
3131 |
msgid "AdSense ad units"
|
3132 |
msgstr "Oglasne enote AdSense"
|
3133 |
|
3134 |
+
#: settings.php:981
|
3135 |
msgctxt "AdSense"
|
3136 |
msgid "Layout"
|
3137 |
msgstr "Postavitev"
|
3138 |
|
3139 |
+
#: settings.php:990
|
3140 |
msgctxt "AdSense"
|
3141 |
msgid "Layout Key"
|
3142 |
msgstr "Ključ postavitve"
|
3143 |
|
3144 |
+
#: settings.php:1000
|
3145 |
msgid "Full width"
|
3146 |
msgstr "Celotna širina"
|
3147 |
|
3148 |
+
#: settings.php:1002
|
3149 |
msgctxt "Full width"
|
3150 |
msgid "Enabled"
|
3151 |
msgstr "Omogočena"
|
3152 |
|
3153 |
+
#: settings.php:1003
|
3154 |
msgctxt "Full width"
|
3155 |
msgid "Disabled"
|
3156 |
msgstr "Onemogočena"
|
3157 |
|
3158 |
+
#: settings.php:1084
|
3159 |
msgid ""
|
3160 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
3161 |
"Cookie or Referer (domain)"
|
3163 |
"Bel/Črn seznam Kategorij, Oznak, Taksonomij, ID Prispevkov, Url-jev, Url "
|
3164 |
"parametrov, Piškotkov ali napotiteljev (domen)"
|
3165 |
|
3166 |
+
#: settings.php:1084
|
3167 |
msgid "Lists"
|
3168 |
msgstr "Seznami"
|
3169 |
|
3170 |
+
#: settings.php:1085
|
3171 |
msgid "Widget, Shortcode and PHP function call"
|
3172 |
msgstr "Gradnik, Kratka koda in Klic PHP funkcije"
|
3173 |
|
3174 |
+
#: settings.php:1085
|
3175 |
msgid "Manual"
|
3176 |
msgstr "Ročno"
|
3177 |
|
3178 |
+
#: settings.php:1086
|
3179 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
3180 |
msgstr ""
|
3181 |
"Zaznavanje Naprave na strani Strežnika/Odjemalca (Namizni, Tablica, Telefon)"
|
3182 |
|
3183 |
+
#: settings.php:1086
|
3184 |
msgid "Devices"
|
3185 |
msgstr "Naprave"
|
3186 |
|
3187 |
+
#: settings.php:1087
|
3188 |
msgid ""
|
3189 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
3190 |
"feeds), Filter, Scheduling, General tag"
|
3192 |
"Preveri status uporabnika, Omeji vstavljanja (napaka 404, zahteve Ajax, vir "
|
3193 |
"RSS), Filter, Urnik, Splošna oznaka"
|
3194 |
|
3195 |
+
#: settings.php:1087
|
3196 |
msgid "Misc"
|
3197 |
msgstr "Razno"
|
3198 |
|
3199 |
+
#: settings.php:1088
|
3200 |
msgid "Preview code and alignment"
|
3201 |
msgstr "Predogled kode in poravnave"
|
3202 |
|
3203 |
+
#: settings.php:1091 settings.php:2253
|
3204 |
msgid ""
|
3205 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
3206 |
"editor is active before saving settings."
|
3208 |
"Aktiven urejevalnik rotacij - koda za rotacijo ni generirana! Poskrbite, da "
|
3209 |
"noben urejevalnik rotacij ni aktiven pred shranjevanjem nastavitev."
|
3210 |
|
3211 |
+
#: settings.php:1104 settings.php:1105
|
3212 |
msgid "Enable insertion on posts"
|
3213 |
msgstr "Omogoči vstavljanje na prispevkih"
|
3214 |
|
3215 |
+
#: settings.php:1105 settings.php:3414
|
3216 |
msgid "Posts"
|
3217 |
msgstr "Prispevki"
|
3218 |
|
3219 |
+
#: settings.php:1109 settings.php:1110
|
3220 |
msgid ""
|
3221 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
3222 |
"page or theme homepage (available positions may depend on hooks used by the "
|
3226 |
"podstraneh), statična stran ali domača stran teme (razpoložljivi položaji so "
|
3227 |
"lahko odvisni od ročic, ki jih tema uporablja)"
|
3228 |
|
3229 |
+
#: settings.php:1110 settings.php:3416
|
3230 |
msgid "Homepage"
|
3231 |
msgstr "Domača stran"
|
3232 |
|
3233 |
+
#: settings.php:1114 settings.php:1115
|
3234 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
3235 |
msgstr "Omogoči vstavljanje na straneh kategorij (vključno s podstranmi)"
|
3236 |
|
3237 |
+
#: settings.php:1115 settings.php:3417
|
3238 |
msgid "Category pages"
|
3239 |
msgstr "Strani kategorij"
|
3240 |
|
3241 |
+
#: settings.php:1125 settings.php:1126
|
3242 |
msgid "Enable insertion on static pages"
|
3243 |
msgstr "Omogoči vstavljanje na statičnih straneh"
|
3244 |
|
3245 |
+
#: settings.php:1126 settings.php:3415
|
3246 |
msgid "Static pages"
|
3247 |
msgstr "Statične strani"
|
3248 |
|
3249 |
+
#: settings.php:1130 settings.php:1131
|
3250 |
msgid "Enable insertion on search blog pages"
|
3251 |
msgstr "Omogoči vstavljanje na iskalnih straneh"
|
3252 |
|
3253 |
+
#: settings.php:1131 settings.php:3419
|
3254 |
msgid "Search pages"
|
3255 |
msgstr "Iskalne strani"
|
3256 |
|
3257 |
+
#: settings.php:1135 settings.php:1136
|
3258 |
msgid "Enable insertion on tag or archive blog pages"
|
3259 |
msgstr "Omogoči vstavljanje na straneh oznak in arhivskih straneh"
|
3260 |
|
3261 |
+
#: settings.php:1139
|
3262 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
3263 |
msgstr "Preklopi nastavitve za privzeto vstavljanje in seznam posameznih izjem"
|
3264 |
|
3265 |
+
#: settings.php:1151
|
3266 |
msgid ""
|
3267 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
3268 |
"be configured on the individual post/page editor page (in the settings below "
|
3272 |
"lahko nastavijo na posamezni strani urejevalnika prispevka/strani (v "
|
3273 |
"nastavitvah pod urejevalnikom)."
|
3274 |
|
3275 |
+
#: settings.php:1152
|
3276 |
msgid ""
|
3277 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3278 |
"enabled they can be configured on the individual post/page editor page (in "
|
3282 |
"omogočene, se te lahko nastavijo na posamezni strani urejevalnika prispevka/"
|
3283 |
"strani (v nastavitvah pod urejevalnikom)."
|
3284 |
|
3285 |
+
#: settings.php:1152
|
3286 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3287 |
msgstr ""
|
3288 |
"Uporabi izjeme za posamezne prispevke ali strani za spremembo vstavljanja"
|
3289 |
|
3290 |
#. Translators: Enabled means...
|
3291 |
+
#: settings.php:1160
|
3292 |
msgid ""
|
3293 |
"means the insertion for this block is enabled by default and disabled for "
|
3294 |
"exceptions."
|
3297 |
"izjeme."
|
3298 |
|
3299 |
#. Translators: Disabled means...
|
3300 |
+
#: settings.php:1161
|
3301 |
msgid ""
|
3302 |
"means the insertion for this block is disabled by default and enabled for "
|
3303 |
"exceptions."
|
3305 |
"pomeni, da je vstavljanje za ta blok privzeto onemogočeno in omogočeno za "
|
3306 |
"izjeme."
|
3307 |
|
3308 |
+
#: settings.php:1162
|
3309 |
msgid ""
|
3310 |
"When individual post/page exceptions are enabled they can be configured on "
|
3311 |
"the individual post/page editor page (in the settings below the editor)."
|
3314 |
"v urejevalniku posameznega prispevka/strani (v nastavitvah pod "
|
3315 |
"urejevalnikom)."
|
3316 |
|
3317 |
+
#: settings.php:1170
|
3318 |
msgid ""
|
3319 |
"No exception for post or static page defined. Block will not be inserted."
|
3320 |
msgstr ""
|
3321 |
"Ni nastavljene nobene izjeme za prispevek ali stran. Blok ne bo vstavljen."
|
3322 |
|
3323 |
+
#: settings.php:1188
|
3324 |
msgctxt "post"
|
3325 |
msgid "Type"
|
3326 |
msgstr "Vrsta"
|
3327 |
|
3328 |
#. translators: %d: block number
|
3329 |
+
#: settings.php:1190
|
3330 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
3331 |
msgstr "Ali ste prepričani, da želite pobrisati vse izjeme za blok %d?"
|
3332 |
|
3333 |
+
#: settings.php:1217 settings.php:1365 settings.php:2027
|
3334 |
msgid "Insertion"
|
3335 |
msgstr "Vstavljanje"
|
3336 |
|
3337 |
+
#: settings.php:1255
|
3338 |
msgid ""
|
3339 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3340 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3350 |
"polovici strani, 0.9 pomeni odstavek pri 90% odstavkov strani...), negativno "
|
3351 |
"število pomeni štetje z nasprotne smeri"
|
3352 |
|
3353 |
+
#: settings.php:1256
|
3354 |
msgid ""
|
3355 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3356 |
"means every N images, empty means all images, 0 means random image, value "
|
3365 |
"sliko pri 20% slik na strani, 0.5 pomeni srednjo sliko, 0.9 pomeni sliko pri "
|
3366 |
"90% slik strani...), negativno število pomeni štetje z nasprotne smeri"
|
3367 |
|
3368 |
+
#: settings.php:1269
|
3369 |
msgid ""
|
3370 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3371 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3374 |
"ločene številke izvlečkov, %N pomeni vsakih N izvlečkov, prazno pomeni vsi "
|
3375 |
"izvlečki"
|
3376 |
|
3377 |
+
#: settings.php:1270
|
3378 |
msgid ""
|
3379 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3380 |
"numbers, %N means every N posts, empty means all posts"
|
3383 |
"ločene številke prispevkov, %N pomeni vsakih N prispevkov, prazno pomeni vsi "
|
3384 |
"prispevki"
|
3385 |
|
3386 |
+
#: settings.php:1271
|
3387 |
msgid ""
|
3388 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3389 |
"numbers, %N means every N comments, empty means all comments"
|
3392 |
"ločene številke komentarjev, %N pomeni vsakih N komentarjev, prazno pomeni "
|
3393 |
"vsi komentarji"
|
3394 |
|
3395 |
+
#: settings.php:1278
|
3396 |
msgid "Toggle paragraph counting settings"
|
3397 |
msgstr "Preklopi nastavitve za štetje odstavkov"
|
3398 |
|
3399 |
+
#: settings.php:1279
|
3400 |
msgid "Toggle paragraph clearance settings"
|
3401 |
msgstr "Preklopi nastavitve za izogibanje odstavkom"
|
3402 |
|
3403 |
+
#: settings.php:1282
|
3404 |
msgid "Toggle insertion filter settings"
|
3405 |
msgstr "Preklopi nastavitve filtra vstavljanja"
|
3406 |
|
3407 |
+
#: settings.php:1300
|
3408 |
msgid "Toggle insertion and alignment icons"
|
3409 |
msgstr "Preklopi ikone za vstavljanje in poravnavo"
|
3410 |
|
3411 |
+
#: settings.php:1314
|
3412 |
msgid "Custom CSS code for the wrapping div"
|
3413 |
msgstr "CSS koda po meri za div za ovijanje"
|
3414 |
|
3415 |
+
#: settings.php:1317 settings.php:1318 settings.php:1319 settings.php:1320
|
3416 |
+
#: settings.php:1321 settings.php:1322
|
3417 |
msgid "CSS code for the wrapping div, click to edit"
|
3418 |
msgstr "CSS koda za div za ovijanje, kliknite za urejanje"
|
3419 |
|
3420 |
+
#: settings.php:1335
|
3421 |
msgid "HTML element"
|
3422 |
msgstr "HTML element"
|
3423 |
|
3424 |
+
#: settings.php:1348
|
3425 |
msgid "HTML element selector or comma separated list of selectors"
|
3426 |
msgstr "Selektor HTML elementa ali z vejicami ločen seznam selektorjev"
|
3427 |
|
3428 |
+
#: settings.php:1354 settings.php:2771
|
3429 |
msgid "Action"
|
3430 |
msgstr "Akcija"
|
3431 |
|
3432 |
+
#: settings.php:1366
|
3433 |
msgid ""
|
3434 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3435 |
"Server-side insertion inserts block when the page is generated but needs "
|
3439 |
"se stran naloži. Vstavljanje na strani strežnika vstavi blok, ko se stran "
|
3440 |
"ustvari, vendar potrebuje omogočeno Predpomnjenje izhoda."
|
3441 |
|
3442 |
+
#: settings.php:1375
|
3443 |
msgid "Code position"
|
3444 |
msgstr "Položaj kode"
|
3445 |
|
3446 |
+
#: settings.php:1376
|
3447 |
msgid ""
|
3448 |
"Page position where the code for client-side insertion will be inserted."
|
3449 |
msgstr ""
|
3450 |
"Položaj na strani kjer bo vstavljena koda za vstavljanje na strani odjemalca."
|
3451 |
|
3452 |
+
#: settings.php:1391
|
3453 |
msgid "Count"
|
3454 |
msgstr "Štej"
|
3455 |
|
3456 |
+
#: settings.php:1397
|
3457 |
msgid "paragraphs with tags"
|
3458 |
msgstr "odstavke z značkami"
|
3459 |
|
3460 |
+
#: settings.php:1403
|
3461 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3462 |
msgstr ""
|
3463 |
"Z vejico ločena imena HTML značk, običajno so uporabljene samo značke 'p'"
|
3464 |
|
3465 |
+
#: settings.php:1412
|
3466 |
msgid "that have between"
|
3467 |
msgstr "ki imajo med"
|
3468 |
|
3469 |
+
#: settings.php:1418
|
3470 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3471 |
msgstr "Najmanjše število besed v odstavkih, prazno pomeni brez omejitev"
|
3472 |
|
3473 |
+
#: settings.php:1427
|
3474 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3475 |
msgstr "Največje število besed v odstavkih, prazno pomeni brez omejitev"
|
3476 |
|
3477 |
+
#: settings.php:1430
|
3478 |
msgid "words"
|
3479 |
msgstr "besed"
|
3480 |
|
3481 |
+
#: settings.php:1445 settings.php:1504 settings.php:1574 settings.php:1600
|
3482 |
msgid "Comma separated texts"
|
3483 |
msgstr "Z vejico ločena besedila"
|
3484 |
|
3485 |
+
#: settings.php:1458
|
3486 |
msgid ""
|
3487 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3488 |
"settings page - tab [*] / tab General"
|
3491 |
"nastavitev vtičnika - zavihek [*] / zavihek Splošno"
|
3492 |
|
3493 |
#. Translators: %s: HTML tags
|
3494 |
+
#: settings.php:1464
|
3495 |
msgid "Count inside %s elements"
|
3496 |
msgstr "Štej znotraj elementov %s"
|
3497 |
|
3498 |
#. translators: inside [HTML tags] elements that contain
|
3499 |
+
#: settings.php:1476
|
3500 |
msgid "inside"
|
3501 |
msgstr "znotraj"
|
3502 |
|
3503 |
+
#: settings.php:1482
|
3504 |
msgid "Comma separated HTML tag names of container elements"
|
3505 |
msgstr "Z vejico ločena imena HTML značk vsebovalnih elementov"
|
3506 |
|
3507 |
#. translators: inside [HTML tags] elements that contain
|
3508 |
+
#: settings.php:1491
|
3509 |
msgid "elements that"
|
3510 |
msgstr "elementov, ki"
|
3511 |
|
3512 |
+
#: settings.php:1517 settings.php:2150
|
3513 |
msgid "Post/Static page must have between"
|
3514 |
msgstr "Prispevek/Statična stran mora imeti med"
|
3515 |
|
3516 |
+
#: settings.php:1523
|
3517 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3518 |
msgstr "Najmanjše število odstavkov, prazno pomeni brez omejitev"
|
3519 |
|
3520 |
+
#: settings.php:1532
|
3521 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3522 |
msgstr "Največje število odstavkov, prazno pomeni brez omejitev"
|
3523 |
|
3524 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3525 |
+
#: settings.php:1535
|
3526 |
msgid "paragraph"
|
3527 |
msgid_plural "paragraphs"
|
3528 |
msgstr[0] "odstavek"
|
3530 |
msgstr[2] "odstavke"
|
3531 |
msgstr[3] "odstavkov"
|
3532 |
|
3533 |
+
#: settings.php:1543
|
3534 |
msgid "Minimum number of words in paragraphs above"
|
3535 |
msgstr "Najmanjše število besed v odstavkih zgoraj"
|
3536 |
|
3537 |
+
#: settings.php:1549
|
3538 |
msgid ""
|
3539 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3540 |
"numbers"
|
3542 |
"Uporabljeno samo s samodejnim vstavljanjem Za odstavkom in s praznimi "
|
3543 |
"številkami odstavkov"
|
3544 |
|
3545 |
+
#: settings.php:1559 settings.php:1585
|
3546 |
msgid "In"
|
3547 |
msgstr "V"
|
3548 |
|
3549 |
+
#: settings.php:1565
|
3550 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3551 |
msgstr "Število odstavkov zgoraj za preverjanje, prazno onemogoči preverjanje"
|
3552 |
|
3553 |
+
#: settings.php:1568
|
3554 |
msgid "paragraphs above avoid"
|
3555 |
msgstr "odstavkih zgoraj se izogni"
|
3556 |
|
3557 |
+
#: settings.php:1591
|
3558 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3559 |
msgstr "Število odstavkov spodaj za preverjanje, prazno onemogoči preverjanje"
|
3560 |
|
3561 |
+
#: settings.php:1594
|
3562 |
msgid "paragraphs below avoid"
|
3563 |
msgstr "odstavkih spodaj se izogni"
|
3564 |
|
3565 |
+
#: settings.php:1610
|
3566 |
msgid "If text is found"
|
3567 |
msgstr "Če je besedilo najdeno"
|
3568 |
|
3569 |
+
#: settings.php:1617
|
3570 |
msgid "check up to"
|
3571 |
msgstr "preveri do"
|
3572 |
|
3573 |
+
#: settings.php:1625
|
3574 |
msgctxt "check up to"
|
3575 |
msgid "paragraphs"
|
3576 |
msgstr "odstavkov"
|
3577 |
|
3578 |
+
#: settings.php:1641
|
3579 |
msgid "Categories"
|
3580 |
msgstr "Kategorije"
|
3581 |
|
3582 |
+
#: settings.php:1644
|
3583 |
msgid "Toggle category editor"
|
3584 |
msgstr "Preklopi urejevalnik kategorij"
|
3585 |
|
3586 |
+
#: settings.php:1647
|
3587 |
msgid "Comma separated category slugs"
|
3588 |
msgstr "Z vejico ločeni ključi kategorij"
|
3589 |
|
3590 |
+
#: settings.php:1656
|
3591 |
msgid "Blacklist categories"
|
3592 |
msgstr "Črni seznam kategorij"
|
3593 |
|
3594 |
+
#: settings.php:1660
|
3595 |
msgid "Whitelist categories"
|
3596 |
msgstr "Beli seznam kategorij"
|
3597 |
|
3598 |
+
#: settings.php:1672
|
3599 |
msgid "Tags"
|
3600 |
msgstr "Oznake"
|
3601 |
|
3602 |
+
#: settings.php:1675
|
3603 |
msgid "Toggle tag editor"
|
3604 |
msgstr "Preklopi urejevalnik oznak"
|
3605 |
|
3606 |
+
#: settings.php:1678
|
3607 |
msgid "Comma separated tag slugs"
|
3608 |
msgstr "Z vejico ločeni ključi oznak"
|
3609 |
|
3610 |
+
#: settings.php:1687
|
3611 |
msgid "Blacklist tags"
|
3612 |
msgstr "Črni seznam oznak"
|
3613 |
|
3614 |
+
#: settings.php:1691
|
3615 |
msgid "Whitelist tags"
|
3616 |
msgstr "Beli seznam oznak"
|
3617 |
|
3618 |
+
#: settings.php:1703
|
3619 |
msgid "Taxonomies"
|
3620 |
msgstr "Taksonomije"
|
3621 |
|
3622 |
+
#: settings.php:1706
|
3623 |
msgid "Toggle taxonomy editor"
|
3624 |
msgstr "Preklopi urejevalnik taksonomij"
|
3625 |
|
3626 |
+
#: settings.php:1709
|
3627 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3628 |
msgstr "Z vejico ločeni ključi: taksonomija, izraz ali taksonomija:izraz"
|
3629 |
|
3630 |
+
#: settings.php:1718
|
3631 |
msgid "Blacklist taxonomies"
|
3632 |
msgstr "Črni seznam taksonomij"
|
3633 |
|
3634 |
+
#: settings.php:1722
|
3635 |
msgid "Whitelist taxonomies"
|
3636 |
msgstr "Beli seznam taksonomij"
|
3637 |
|
3638 |
+
#: settings.php:1734
|
3639 |
msgid "Post IDs"
|
3640 |
msgstr "ID-ji prispevkov"
|
3641 |
|
3642 |
+
#: settings.php:1737
|
3643 |
msgid "Toggle post/page ID editor"
|
3644 |
msgstr "Preklopi urejevalnik ID-jev prispevkov/strani"
|
3645 |
|
3646 |
+
#: settings.php:1740
|
3647 |
msgid "Comma separated post/page IDs"
|
3648 |
msgstr "Z vejico ločeni ID-ji prispevkov/strani"
|
3649 |
|
3650 |
+
#: settings.php:1749
|
3651 |
msgid "Blacklist IDs"
|
3652 |
msgstr "Črni seznam ID-jev"
|
3653 |
|
3654 |
+
#: settings.php:1753
|
3655 |
msgid "Whitelist IDs"
|
3656 |
msgstr "Beli seznam ID-jev"
|
3657 |
|
3658 |
+
#: settings.php:1765
|
3659 |
msgid "Urls"
|
3660 |
msgstr "Url-ji"
|
3661 |
|
3662 |
+
#: settings.php:1768
|
3663 |
msgid "Toggle url editor"
|
3664 |
msgstr "Preklopi urejevalnik url-jev"
|
3665 |
|
3666 |
+
#: settings.php:1771
|
3667 |
msgid ""
|
3668 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3669 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3675 |
"nsalov, ki drugače ni dostopen). Uporabite lahko tudi delne url-je z * (/url-"
|
3676 |
"začetek*. *url-vzorec*, *url-konec)"
|
3677 |
|
3678 |
+
#: settings.php:1780
|
3679 |
msgid "Blacklist urls"
|
3680 |
msgstr "Črni seznam url-jev"
|
3681 |
|
3682 |
+
#: settings.php:1784
|
3683 |
msgid "Whitelist urls"
|
3684 |
msgstr "Beli seznam url-jev"
|
3685 |
|
3686 |
+
#: settings.php:1795
|
3687 |
msgid "Url parameters"
|
3688 |
msgstr "Url parametri"
|
3689 |
|
3690 |
+
#: settings.php:1799
|
3691 |
msgid "Toggle url parameter and cookie editor"
|
3692 |
msgstr "Preklopi urejevalnik url parametrov in piškotkov"
|
3693 |
|
3694 |
+
#: settings.php:1802
|
3695 |
msgid ""
|
3696 |
"Comma separated url query parameters or cookies with optional values (use "
|
3697 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3700 |
"vrednostmi (uporabite 'prameter', 'prameter=vrednost', 'piškotek' or "
|
3701 |
"'piškotek=vrednost')"
|
3702 |
|
3703 |
+
#: settings.php:1811
|
3704 |
msgid "Blacklist url parameters"
|
3705 |
msgstr "Črni seznam url parametrov"
|
3706 |
|
3707 |
+
#: settings.php:1815
|
3708 |
msgid "Whitelist url parameters"
|
3709 |
msgstr "Beli seznam url parametrov"
|
3710 |
|
3711 |
+
#: settings.php:1826
|
3712 |
msgid "Referrers"
|
3713 |
msgstr "Napotitelji"
|
3714 |
|
3715 |
+
#: settings.php:1829
|
3716 |
msgid "Toggle referer editor"
|
3717 |
msgstr "Preklopi urejevalnik napotiteljev"
|
3718 |
|
3719 |
+
#: settings.php:1832
|
3720 |
msgid ""
|
3721 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3722 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3724 |
"Z vejico ločene domene, uporabite # za primer, ko ni napotitelja, uporabite "
|
3725 |
"lahko tudi delne domene z * (začetek-domene*. *vzorec-domene*, *konec-domene)"
|
3726 |
|
3727 |
+
#: settings.php:1841
|
3728 |
msgid "Blacklist referers"
|
3729 |
msgstr "Črni seznam napotiteljev"
|
3730 |
|
3731 |
+
#: settings.php:1845
|
3732 |
msgid "Whitelist referers"
|
3733 |
msgstr "Beli seznam napotiteljev"
|
3734 |
|
3735 |
+
#: settings.php:1856
|
3736 |
msgid "Clients"
|
3737 |
msgstr "Odjemalci"
|
3738 |
|
3739 |
+
#: settings.php:1859
|
3740 |
msgid "Toggle client editor"
|
3741 |
msgstr "Preklopi urejevalnik odjemalcev"
|
3742 |
|
3743 |
+
#: settings.php:1862
|
3744 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3745 |
msgstr "Z vejico ločena imena (operacijski sistemi, brskalniki, naprave)"
|
3746 |
|
3747 |
+
#: settings.php:1871
|
3748 |
msgid "Blacklist clients"
|
3749 |
msgstr "Črni seznam odjemalcev"
|
3750 |
|
3751 |
+
#: settings.php:1875
|
3752 |
msgid "Whitelist clients"
|
3753 |
msgstr "Beli seznam odjemalcev"
|
3754 |
|
3755 |
+
#: settings.php:1896
|
3756 |
msgid "Enable widget for this block"
|
3757 |
msgstr "Omogočite gradnik za ta blok"
|
3758 |
|
3759 |
+
#: settings.php:1908
|
3760 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3761 |
msgstr ""
|
3762 |
"Omogočite kratko kodo za ročno vstavljanje tega bloka v prispevke in strani"
|
3763 |
|
3764 |
+
#: settings.php:1909 settings.php:4205
|
3765 |
msgid "Shortcode"
|
3766 |
msgstr "Kratka koda"
|
3767 |
|
3768 |
+
#: settings.php:1924
|
3769 |
msgid ""
|
3770 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3771 |
"If function is disabled for block it will return empty string."
|
3774 |
"položaju v datoteki teme. Če je funkcija za blok onemogočena, bo vrnila "
|
3775 |
"prazen niz."
|
3776 |
|
3777 |
+
#: settings.php:1925
|
3778 |
msgid "PHP function"
|
3779 |
msgstr "PHP funkcija"
|
3780 |
|
3781 |
+
#: settings.php:1940
|
3782 |
msgid "Client-side device detection"
|
3783 |
msgstr "Zaznavanje naprave na strani odjemalca"
|
3784 |
|
3785 |
+
#: settings.php:1941
|
3786 |
msgid "Server-side device detection"
|
3787 |
msgstr "Zaznavanje naprave na strani strežnika"
|
3788 |
|
3789 |
+
#: settings.php:1948
|
3790 |
msgid "Use client-side detection to"
|
3791 |
msgstr "Uporabi zaznavanje na strani odjemalca in"
|
3792 |
|
3793 |
+
#: settings.php:1950
|
3794 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3795 |
msgstr ""
|
3796 |
"Bodisi prikaži/skrij ali vstavi, ko se stran naloži na želenih pogledih"
|
3797 |
|
3798 |
#. Translators: only on (the following devices): viewport names (devices)
|
3799 |
#. listed
|
3800 |
+
#: settings.php:1955
|
3801 |
msgid "only on"
|
3802 |
msgstr "samo na"
|
3803 |
|
3804 |
+
#: settings.php:1983
|
3805 |
msgid "Device min width %s px"
|
3806 |
msgstr "Najmanjša širina naprave %s px"
|
3807 |
|
3808 |
+
#: settings.php:2009
|
3809 |
msgid "Use server-side detection to insert block only for"
|
3810 |
msgstr "Uporabi zaznavanje na strani strežnika za vstavljanje bloka samo za"
|
3811 |
|
3812 |
+
#: settings.php:2028
|
3813 |
msgid "Filter"
|
3814 |
msgstr "Filter"
|
3815 |
|
3816 |
+
#: settings.php:2029
|
3817 |
msgid "Word Count"
|
3818 |
msgstr "Število Besed"
|
3819 |
|
3820 |
+
#: settings.php:2030 settings.php:4195
|
3821 |
msgid "Scheduling"
|
3822 |
msgstr "Urnik"
|
3823 |
|
3824 |
+
#: settings.php:2031
|
3825 |
msgid "Display"
|
3826 |
msgstr "Prikaz"
|
3827 |
|
3828 |
+
#: settings.php:2033 settings.php:2295
|
3829 |
msgid "General"
|
3830 |
msgstr "Splošno"
|
3831 |
|
3832 |
+
#: settings.php:2045
|
3833 |
msgid "Old settings for AMP pages detected"
|
3834 |
msgstr "Zaznane stare nastavitve za AMP strani"
|
3835 |
|
3836 |
+
#: settings.php:2045
|
3837 |
msgid ""
|
3838 |
"To insert different codes on normal and AMP pages separate them with "
|
3839 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3844 |
"straneh samo, ko želite vstaviti ISTO KODO tudi na AMP straneh (brez AMP "
|
3845 |
"separatorja)."
|
3846 |
|
3847 |
+
#: settings.php:2045
|
3848 |
msgid "AMP pages"
|
3849 |
msgstr "AMP strani"
|
3850 |
|
3851 |
+
#: settings.php:2050
|
3852 |
msgid "Enable insertion for Ajax requests"
|
3853 |
msgstr "Omogoči vstavljanje v Ajax zahtevah"
|
3854 |
|
3855 |
+
#: settings.php:2050
|
3856 |
msgid "Ajax requests"
|
3857 |
msgstr "Ajax zahteve"
|
3858 |
|
3859 |
+
#: settings.php:2055
|
3860 |
msgid "Enable insertion in RSS feeds"
|
3861 |
msgstr "Omogoči vstavljanje v RSS virih"
|
3862 |
|
3863 |
+
#: settings.php:2055
|
3864 |
msgid "RSS Feed"
|
3865 |
msgstr "RSS Vir"
|
3866 |
|
3867 |
+
#: settings.php:2060
|
3868 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3869 |
msgstr "Omogoči vstavljanje na strani za napako 404: Stran ne obstaja"
|
3870 |
|
3871 |
+
#: settings.php:2060
|
3872 |
msgid "Error 404 page"
|
3873 |
msgstr "Stran napake 404"
|
3874 |
|
3875 |
+
#: settings.php:2072
|
3876 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3877 |
msgstr ""
|
3878 |
"Največje število vstavljanj tega bloka. Prazno ali 0 pomeni brez omejitev."
|
3879 |
|
3880 |
+
#: settings.php:2073
|
3881 |
msgid "insertions"
|
3882 |
msgstr "vstavljanj"
|
3883 |
|
3884 |
+
#: settings.php:2075
|
3885 |
msgid ""
|
3886 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3887 |
"General)"
|
3889 |
"Štej ta blok za omejitev Največ blokov na stran (določena na zavihku [*] / "
|
3890 |
"zavihek Splošno)"
|
3891 |
|
3892 |
+
#: settings.php:2078 settings.php:2475
|
3893 |
msgid "Max blocks per page"
|
3894 |
msgstr "Največ blokov na stran"
|
3895 |
|
3896 |
+
#: settings.php:2090
|
3897 |
msgid "Insert for"
|
3898 |
msgstr "Vstavi za"
|
3899 |
|
3900 |
+
#: settings.php:2098
|
3901 |
msgid ""
|
3902 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3903 |
"currently active). Might speed up insertion on content pages when "
|
3907 |
"trenutno aktivna). Lahko pospeši vstavljanje na določenih straneh, ko je "
|
3908 |
"filter the_content večkrat klican."
|
3909 |
|
3910 |
+
#: settings.php:2101
|
3911 |
msgid "Insert only in the loop"
|
3912 |
msgstr "Vstavi samo v zanki"
|
3913 |
|
3914 |
+
#: settings.php:2107
|
3915 |
msgid ""
|
3916 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3917 |
msgstr ""
|
3918 |
"Onemogoči predpomnenje za vtičnike WP Super Cache, W3 Total Cache in WP "
|
3919 |
"Rocket"
|
3920 |
|
3921 |
+
#: settings.php:2107
|
3922 |
msgid "Disable caching"
|
3923 |
msgstr "Onemogoči predpomnjenje"
|
3924 |
|
3925 |
+
#: settings.php:2119
|
3926 |
msgid "Filter insertions"
|
3927 |
msgstr "Filtriraj vstavljanja"
|
3928 |
|
3929 |
+
#: settings.php:2122
|
3930 |
msgid ""
|
3931 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3932 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3938 |
"- prazno pomeni vsa vstavljanja / brez filtra. Nastavite Števec za filter na "
|
3939 |
"Samodejni števec, če uporabljate samo eno vrsto vstavljanja."
|
3940 |
|
3941 |
+
#: settings.php:2125
|
3942 |
msgid "using"
|
3943 |
msgstr "z uporabo"
|
3944 |
|
3945 |
+
#: settings.php:2144
|
3946 |
msgid "Checked means specified calls are unwanted"
|
3947 |
msgstr "Odkljukano pomeni, da so našteti klici neželjeni"
|
3948 |
|
3949 |
+
#: settings.php:2144
|
3950 |
msgid "Invert filter"
|
3951 |
msgstr "Obrni filter"
|
3952 |
|
3953 |
+
#: settings.php:2151
|
3954 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3955 |
msgstr ""
|
3956 |
"Najmanjše število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3957 |
"omejitev"
|
3958 |
|
3959 |
+
#: settings.php:2153
|
3960 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3961 |
msgstr ""
|
3962 |
"Največje število besed v prispevkih/statičnih straneh, prazno pomeni brez "
|
3963 |
"omejitev"
|
3964 |
|
3965 |
+
#: settings.php:2166
|
3966 |
msgid "for"
|
3967 |
msgstr "za"
|
3968 |
|
3969 |
+
#: settings.php:2166
|
3970 |
msgid "days after publishing"
|
3971 |
msgstr "dni po objavi"
|
3972 |
|
3973 |
+
#: settings.php:2168
|
3974 |
msgid "Not available"
|
3975 |
msgstr "Ni na razpolago"
|
3976 |
|
3977 |
+
#: settings.php:2181 settings.php:2467
|
3978 |
msgid "Ad label"
|
3979 |
msgstr "Oznaka oglasa"
|
3980 |
|
3981 |
+
#: settings.php:2201
|
3982 |
msgid "General tag"
|
3983 |
msgstr "Splošna oznaka"
|
3984 |
|
3985 |
+
#: settings.php:2205
|
3986 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3987 |
msgstr "Uporabljeno za kratke kode [adinserter data=''] ko ni podatkov"
|
3988 |
|
3989 |
#. translators: %s: HTML tags
|
3990 |
+
#: settings.php:2214
|
3991 |
msgid ""
|
3992 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3993 |
"client-side device detection!"
|
3996 |
"potrebna za zaznavanje naprave na strani odjemalca!"
|
3997 |
|
3998 |
#. translators: %s: HTML tags for text and link
|
3999 |
+
#: settings.php:2228
|
4000 |
msgid ""
|
4001 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
4002 |
"side %s insertion. Use %s Server-side %s insertion."
|
4005 |
"vstavljanjem %s Na strani odjemalca%s. Uporabite vstavljanje %s Na strani "
|
4006 |
"strežnika%s."
|
4007 |
|
4008 |
+
#: settings.php:2244
|
4009 |
msgid "Settings"
|
4010 |
msgstr "Nastavitve"
|
4011 |
|
4012 |
+
#: settings.php:2247
|
4013 |
msgid "Settings timestamp"
|
4014 |
msgstr "Časovni žig nastavitev"
|
4015 |
|
4016 |
+
#: settings.php:2260
|
4017 |
msgid "Are you sure you want to reset all settings?"
|
4018 |
msgstr "Ali ste prepričani, da želite ponastaviti vse nastavitve?"
|
4019 |
|
4020 |
+
#: settings.php:2260
|
4021 |
msgid "Reset All Settings"
|
4022 |
msgstr "Ponastavi Vse Nastavitve"
|
4023 |
|
4024 |
+
#: settings.php:2296
|
4025 |
msgid "Viewports"
|
4026 |
msgstr "Pogledi"
|
4027 |
|
4028 |
+
#: settings.php:2297
|
4029 |
msgid "Hooks"
|
4030 |
msgstr "Ročice"
|
4031 |
|
4032 |
+
#: settings.php:2298
|
4033 |
msgid "Header"
|
4034 |
msgstr "Glava"
|
4035 |
|
4036 |
+
#: settings.php:2299 strings.php:30
|
4037 |
msgid "Footer"
|
4038 |
msgstr "Noga"
|
4039 |
|
4040 |
+
#: settings.php:2304
|
4041 |
msgid "Debugging"
|
4042 |
msgstr "Razhroščevanje"
|
4043 |
|
4044 |
+
#: settings.php:2314
|
4045 |
msgid "Plugin priority"
|
4046 |
msgstr "Prednost vtičnika"
|
4047 |
|
4048 |
+
#: settings.php:2322
|
4049 |
msgid "Output buffering"
|
4050 |
msgstr "Predpomnjenje izhoda"
|
4051 |
|
4052 |
+
#: settings.php:2325
|
4053 |
msgid "Needed for position Above header but may not work with all themes"
|
4054 |
msgstr "Potrebno za položaj Nad glavo, ampak lahko, da ne dela z vsemi temami"
|
4055 |
|
4056 |
+
#: settings.php:2333
|
4057 |
msgid "Syntax highlighting theme"
|
4058 |
msgstr "Tema za poudarjanje sintakse"
|
4059 |
|
4060 |
+
#: settings.php:2340
|
4061 |
msgctxt "no syntax highlighting themes"
|
4062 |
msgid "None"
|
4063 |
msgstr "Brez"
|
4064 |
|
4065 |
+
#: settings.php:2341
|
4066 |
msgid "No Syntax Highlighting"
|
4067 |
msgstr "Brez Poudarjanja Sintakse"
|
4068 |
|
4069 |
+
#: settings.php:2343
|
4070 |
msgctxt "syntax highlighting themes"
|
4071 |
msgid "Light"
|
4072 |
msgstr "Svetle"
|
4073 |
|
4074 |
+
#: settings.php:2358
|
4075 |
msgctxt "syntax highlighting themes"
|
4076 |
msgid "Dark"
|
4077 |
msgstr "Temne"
|
4078 |
|
4079 |
+
#: settings.php:2384
|
4080 |
msgid "Min. user role for ind. exceptions editing"
|
4081 |
msgstr "Najm. uporabniška vloga za urejanje izjem"
|
4082 |
|
4083 |
+
#: settings.php:2394
|
4084 |
msgid "Disable caching for logged in administrators"
|
4085 |
msgstr "Onemogoči predpomnenje za prijavljene skrbnike"
|
4086 |
|
4087 |
+
#: settings.php:2397
|
4088 |
msgid ""
|
4089 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
4090 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
4092 |
"Omogočeno pomeni, da bodo prijavljeni skrbniki videli ne-predpomnjene (žive) "
|
4093 |
"strani (velja za vtičnike WP Super Cache, W3 Total Cache in WP Rocket)"
|
4094 |
|
4095 |
+
#: settings.php:2405
|
4096 |
msgid "Wait for jQuery"
|
4097 |
msgstr "Čakaj na jQuery"
|
4098 |
|
4099 |
+
#: settings.php:2408
|
4100 |
msgid ""
|
4101 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
4102 |
"it will run the scripts that may need it"
|
4104 |
"Ko je omogočeno, bo Ad Inserter čakal, da se naloži knjižnica jQuery, preden "
|
4105 |
"bo pognal svoje skripte, ki jo potrebujejo"
|
4106 |
|
4107 |
+
#: settings.php:2416
|
4108 |
msgid "Sticky widget mode"
|
4109 |
msgstr "Način za lepljive gradnike"
|
4110 |
|
4111 |
+
#: settings.php:2419
|
4112 |
msgid ""
|
4113 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
4114 |
"mode works with most themes but may reload ads on page load."
|
4117 |
"Način JavaScript dela z večino tem, ampak lahko ponovno naloži oglase pri "
|
4118 |
"nalaganju strani."
|
4119 |
|
4120 |
+
#: settings.php:2427
|
4121 |
msgid "Sticky widget top margin"
|
4122 |
msgstr "Zgornji rob za lepljiv gradnik"
|
4123 |
|
4124 |
+
#: settings.php:2435
|
4125 |
msgid "Dynamic blocks"
|
4126 |
msgstr "Dinamični bloki"
|
4127 |
|
4128 |
+
#: settings.php:2448
|
4129 |
msgid "Functions for paragraph counting"
|
4130 |
msgstr "Funkcije za štetje odstavkov"
|
4131 |
|
4132 |
+
#: settings.php:2451
|
4133 |
msgid ""
|
4134 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
4135 |
"functions if paragraphs are not counted properly on non-english pages."
|
4138 |
"Večznakovne funkcije, če na ne-angleških straneh odstavki niso pravilno "
|
4139 |
"šteti."
|
4140 |
|
4141 |
+
#: settings.php:2459
|
4142 |
msgid "No paragraph counting inside"
|
4143 |
msgstr "Ni štetja odstavkov znotraj"
|
4144 |
|
4145 |
+
#: settings.php:2470
|
4146 |
msgid "Label text or HTML code"
|
4147 |
msgstr "Besedilo oznake ali HTML koda"
|
4148 |
|
4149 |
+
#: settings.php:2478
|
4150 |
msgid ""
|
4151 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
4152 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
4155 |
"blokov na stran (gumb Razno / zavihek Vstavljanje), da bo blok štel za to "
|
4156 |
"omejitev."
|
4157 |
|
4158 |
+
#: settings.php:2492
|
4159 |
msgid "Plugin usage tracking"
|
4160 |
msgstr "Sledenje uporabe vtičnika"
|
4161 |
|
4162 |
#. translators: %s: Ad Inserter
|
4163 |
+
#: settings.php:2495
|
4164 |
msgid ""
|
4165 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
4166 |
"Only information regarding the WordPress environment and %s usage is "
|
4170 |
"Beležijo se samo informacije glede okolja WordPress in uporabe %s-ja (enkrat "
|
4171 |
"mesečno in ob dogodkih kot so aktivacija/deaktivacija)."
|
4172 |
|
4173 |
+
#: settings.php:2513
|
4174 |
msgid "CSS class name for the wrapping div"
|
4175 |
msgstr "Ime CSS razreda za div za ovijanje"
|
4176 |
|
4177 |
+
#: settings.php:2513
|
4178 |
msgid "Block class name"
|
4179 |
msgstr "Ime razreda za blok"
|
4180 |
|
4181 |
+
#: settings.php:2519
|
4182 |
msgid "Include block number class"
|
4183 |
msgstr "Vključi razred številke bloka"
|
4184 |
|
4185 |
+
#: settings.php:2519
|
4186 |
msgid "Block number class"
|
4187 |
msgstr "Razred številke bloka"
|
4188 |
|
4189 |
+
#: settings.php:2524
|
4190 |
msgid "Include block name class"
|
4191 |
msgstr "Vključi razred imena bloka"
|
4192 |
|
4193 |
+
#: settings.php:2524
|
4194 |
msgid "Block name class"
|
4195 |
msgstr "Razred imena bloka"
|
4196 |
|
4197 |
+
#: settings.php:2529
|
4198 |
msgid ""
|
4199 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
4200 |
msgstr ""
|
4201 |
"Namesto razredov za poravnavo ustvari medvrstične sloge za poravnavo blokov"
|
4202 |
|
4203 |
+
#: settings.php:2529
|
4204 |
msgid "Inline styles"
|
4205 |
msgstr "Medvrstični slogi"
|
4206 |
|
4207 |
+
#: settings.php:2535
|
4208 |
msgid "Preview of the block wrapping code"
|
4209 |
msgstr "Predogled kode za ovijanje blokov"
|
4210 |
|
4211 |
+
#: settings.php:2536
|
4212 |
msgid "Wrapping div"
|
4213 |
msgstr "div za ovijanje"
|
4214 |
|
4215 |
+
#: settings.php:2537 settings.php:2977
|
4216 |
msgid "BLOCK CODE"
|
4217 |
msgstr "KODA BLOKA"
|
4218 |
|
4219 |
+
#: settings.php:2545
|
4220 |
msgid "Viewport Settings used for client-side device detection"
|
4221 |
msgstr ""
|
4222 |
"Nastavitve Pogledov, uporabljenih za zaznavanje naprav na strani odjemalca"
|
4223 |
|
4224 |
#. Translators: %d: viewport number
|
4225 |
+
#: settings.php:2553
|
4226 |
msgid "Viewport %d name"
|
4227 |
msgstr "Ime pogleda %d"
|
4228 |
|
4229 |
+
#: settings.php:2556
|
4230 |
msgid "min width"
|
4231 |
msgstr "najmanjša širina"
|
4232 |
|
4233 |
+
#: settings.php:2567
|
4234 |
msgid "Custom Hooks"
|
4235 |
msgstr "Ročice Po Meri"
|
4236 |
|
4237 |
+
#: settings.php:2579 settings.php:2582
|
4238 |
msgid "Enable hook"
|
4239 |
msgstr "Omogoči ročico"
|
4240 |
|
4241 |
#. translators: %d: hook number
|
4242 |
+
#: settings.php:2582
|
4243 |
msgid "Hook %d name"
|
4244 |
msgstr "Ime ročice %d"
|
4245 |
|
4246 |
+
#: settings.php:2585
|
4247 |
msgid "Hook name for automatic insertion selection"
|
4248 |
msgstr "Ime ročice za izbiro samodejnega vstavljanja"
|
4249 |
|
4250 |
+
#: settings.php:2588
|
4251 |
msgid "action"
|
4252 |
msgstr "akcija"
|
4253 |
|
4254 |
+
#: settings.php:2591
|
4255 |
msgid "Action name as used in the do_action () function"
|
4256 |
msgstr "Ime akcije kot je uporabljena v do_action () funkciji"
|
4257 |
|
4258 |
+
#: settings.php:2594
|
4259 |
msgid "priority"
|
4260 |
msgstr "prednost"
|
4261 |
|
4262 |
+
#: settings.php:2597
|
4263 |
msgid "Priority for the hook (default is 10)"
|
4264 |
msgstr "Prednost za ročico (privzeta je 10)"
|
4265 |
|
4266 |
+
#: settings.php:2618
|
4267 |
msgid "Enable insertion of this code into HTML page header"
|
4268 |
msgstr "Omogoči vstavljanje te kode v glavi HTML strani"
|
4269 |
|
4270 |
+
#: settings.php:2622 settings.php:2689 settings.php:2871
|
4271 |
msgid "Process PHP code"
|
4272 |
msgstr "Procesiraj PHP kodo"
|
4273 |
|
4274 |
+
#: settings.php:2626
|
4275 |
msgid "HTML Page Header Code"
|
4276 |
msgstr "Koda v Glavi HTML Strani"
|
4277 |
|
4278 |
+
#: settings.php:2634
|
4279 |
msgid "Code in the %s section of the HTML page"
|
4280 |
msgstr "Koda v %s delu HTML strani"
|
4281 |
|
4282 |
+
#: settings.php:2635
|
4283 |
msgctxt "code in the header"
|
4284 |
msgid "NOT ENABLED"
|
4285 |
msgstr "NI OMOGOČENA"
|
4286 |
|
4287 |
+
#: settings.php:2652 settings.php:2720
|
4288 |
msgid "Use server-side detection to insert code only for"
|
4289 |
msgstr "Zaznavanje na strani strežnika za vstavljanje samo za"
|
4290 |
|
4291 |
+
#: settings.php:2667
|
4292 |
msgid ""
|
4293 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
4294 |
"Page not found"
|
4296 |
"Omogoči vstavljanje te kode v HTML glavo na strani za napako 404: Stran ne "
|
4297 |
"obstaja"
|
4298 |
|
4299 |
+
#: settings.php:2667 settings.php:2735
|
4300 |
msgid "Insert on Error 404 page"
|
4301 |
msgstr "Vstavi na strani Napake 404"
|
4302 |
|
4303 |
+
#: settings.php:2685
|
4304 |
msgid "Enable insertion of this code into HTML page footer"
|
4305 |
msgstr "Omogoči vstavljanje te kode v HTML nogi"
|
4306 |
|
4307 |
+
#: settings.php:2693
|
4308 |
msgid "HTML Page Footer Code"
|
4309 |
msgstr "Koda v Nogi HTML Strani"
|
4310 |
|
4311 |
#. translators: %s: HTML tags
|
4312 |
+
#: settings.php:2701
|
4313 |
msgid "Code before the %s tag of the the HTML page"
|
4314 |
msgstr "Koda pred %s značko HTML strani"
|
4315 |
|
4316 |
+
#: settings.php:2702
|
4317 |
msgctxt "code in the footer"
|
4318 |
msgid "NOT ENABLED"
|
4319 |
msgstr "NI OMOGOČENA"
|
4320 |
|
4321 |
+
#: settings.php:2735
|
4322 |
msgid ""
|
4323 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
4324 |
"Page not found"
|
4326 |
"Omogoči vstavljanje te kode v nogo HTML strani na strani za napako 404: "
|
4327 |
"Stran ne obstaja"
|
4328 |
|
4329 |
+
#: settings.php:2751
|
4330 |
msgid "Code for ad blocking detection inserted. Click for details."
|
4331 |
msgstr ""
|
4332 |
"Vstavljena je koda za zaznavanje blokiranja oglasov. Klikni za podrobnosti."
|
4333 |
|
4334 |
+
#: settings.php:2756
|
4335 |
msgid "Enable detection of ad blocking"
|
4336 |
msgstr "Omogoči zaznavanje blokiranja oglasov"
|
4337 |
|
4338 |
+
#: settings.php:2774
|
4339 |
msgid "Global action when ad blocking is detected"
|
4340 |
msgstr "Globalna akcija, ko je zaznano blokiranje oglasov"
|
4341 |
|
4342 |
+
#: settings.php:2780
|
4343 |
msgid "No action for"
|
4344 |
msgstr "Ni akcije za"
|
4345 |
|
4346 |
+
#: settings.php:2781
|
4347 |
msgid "Exceptions for global action when ad blocking is detected."
|
4348 |
msgstr "Izjeme za globalno akcijo, ko je zaznano blokiranje oglasov"
|
4349 |
|
4350 |
+
#: settings.php:2791
|
4351 |
msgid "Delay Action"
|
4352 |
msgstr "Zakasni Akcijo"
|
4353 |
|
4354 |
+
#: settings.php:2794
|
4355 |
msgid ""
|
4356 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
4357 |
"empty for no delay (action fires on first page view). Sets cookie."
|
4360 |
"oglasov. Prazno pomeni brez zakasnitve (akcija se sproži pri prvem ogledu "
|
4361 |
"strani). Nastavi piškotek."
|
4362 |
|
4363 |
+
#: settings.php:2794
|
4364 |
msgctxt "Delay Action for x "
|
4365 |
msgid "page views"
|
4366 |
msgstr "ogledov strani"
|
4367 |
|
4368 |
+
#: settings.php:2799
|
4369 |
msgid "No Action Period"
|
4370 |
msgstr "Obdobje Brez Akcije"
|
4371 |
|
4372 |
+
#: settings.php:2802
|
4373 |
msgid ""
|
4374 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
4375 |
"for no no-action period (action fires always after defined page view delay). "
|
4379 |
"pomeni brez zadržanja (akcija se sproži vedno po določeni zakasnitvi ogledov "
|
4380 |
"strani). Nastavi piškotek."
|
4381 |
|
4382 |
+
#: settings.php:2802
|
4383 |
msgctxt "no action period"
|
4384 |
msgid "days"
|
4385 |
msgstr "dni"
|
4386 |
|
4387 |
+
#: settings.php:2807
|
4388 |
msgid "Custom Selectors"
|
4389 |
msgstr "Selektorji Po Meri"
|
4390 |
|
4391 |
+
#: settings.php:2810
|
4392 |
msgid ""
|
4393 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4394 |
"blocking detection. Invisible element or element with zero height means ad "
|
4398 |
"zaznavanje blokiranja oglasov. Neviden element ali element z ničelno višino "
|
4399 |
"pomeni prisotnost blokiranja oglasov."
|
4400 |
|
4401 |
+
#: settings.php:2822
|
4402 |
msgid "Redirection Page"
|
4403 |
msgstr "Stran za Preusmeritev"
|
4404 |
|
4405 |
+
#: settings.php:2834
|
4406 |
msgid "Custom Url"
|
4407 |
msgstr "Url Po Meri"
|
4408 |
|
4409 |
+
#: settings.php:2839
|
4410 |
msgid ""
|
4411 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4412 |
"select Custom url and set it below."
|
4414 |
"Statična stran za preusmeritev, ko je zaznano blokiranje oglasov. Za druge "
|
4415 |
"strani izberite Url Po Meri in ga nastavite spodaj."
|
4416 |
|
4417 |
+
#: settings.php:2848
|
4418 |
msgid "Custom Redirection Url"
|
4419 |
msgstr "Url za Preusmeritev Po Meri"
|
4420 |
|
4421 |
+
#: settings.php:2860
|
4422 |
msgid "Message HTML code"
|
4423 |
msgstr "HTML koda sporočila"
|
4424 |
|
4425 |
+
#: settings.php:2873
|
4426 |
msgid "Preview message when ad blocking is detected"
|
4427 |
msgstr "Predogled sporočila, ko je zaznano blokiranje oglasov"
|
4428 |
|
4429 |
+
#: settings.php:2902
|
4430 |
msgid "Prevent visitors from closing the warning message"
|
4431 |
msgstr "Prepreči obiskovalcem, da zaprejo opozorilno sporočilo"
|
4432 |
|
4433 |
+
#: settings.php:2902
|
4434 |
msgid "Undismissible Message"
|
4435 |
msgstr "Neodstranljivo Sporočilo"
|
4436 |
|
4437 |
+
#: settings.php:2908
|
4438 |
msgid "Not undismissible for"
|
4439 |
msgstr "Ni neodstranljivo za"
|
4440 |
|
4441 |
+
#: settings.php:2909
|
4442 |
msgid "Users which can close the warning message."
|
4443 |
msgstr "Obiskovalci, ki lahko zaprejo opozorilno sporočilo."
|
4444 |
|
4445 |
+
#: settings.php:2923
|
4446 |
msgid ""
|
4447 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4448 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4451 |
"možnost, če ste prijavljeni kot skrbnik, pa ne vidite orodne vrstice za "
|
4452 |
"skrbnike."
|
4453 |
|
4454 |
+
#: settings.php:2931
|
4455 |
msgid "Disable header code (Header tab)"
|
4456 |
msgstr "Onemogoči kodo v glavi (zavihek Glava)"
|
4457 |
|
4458 |
+
#: settings.php:2935
|
4459 |
msgid "Disable footer code (Footer tab)"
|
4460 |
msgstr "Onemogoči kodo v nogi (zavihek Noga)"
|
4461 |
|
4462 |
#. translators: %s: Ad Inserter
|
4463 |
+
#: settings.php:2939
|
4464 |
msgid "Disable %s JavaScript code"
|
4465 |
msgstr "Onemogoči %s JavaScript kodo"
|
4466 |
|
4467 |
#. translators: %s: Ad Inserter
|
4468 |
+
#: settings.php:2943
|
4469 |
msgid "Disable %s CSS code"
|
4470 |
msgstr "Onemogoči %s CSS kodo"
|
4471 |
|
4472 |
+
#: settings.php:2947
|
4473 |
msgid ""
|
4474 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4475 |
msgstr ""
|
4476 |
"Onemogoči procesiranje PHP kode (v vseh blokh vključno z glavo in nogo)"
|
4477 |
|
4478 |
+
#: settings.php:2951
|
4479 |
msgid "Disable insertion of all blocks"
|
4480 |
msgstr "Onemogoči vstavljanje vseh blokov"
|
4481 |
|
4482 |
+
#: settings.php:2955
|
4483 |
msgid "Disable insertions"
|
4484 |
msgstr "Onemogoči vstavljanja"
|
4485 |
|
4486 |
#. translators: %s: Ad Inserter
|
4487 |
+
#: settings.php:2967
|
4488 |
msgid "%s CSS CODE"
|
4489 |
msgstr "%s CSS KODA"
|
4490 |
|
4491 |
+
#: settings.php:2970
|
4492 |
msgid "HEADER CODE"
|
4493 |
msgstr "KODA GLAVE"
|
4494 |
|
4495 |
#. translators: %s: PHP tags
|
4496 |
+
#: settings.php:2976
|
4497 |
msgid "BLOCK PHP CODE"
|
4498 |
msgstr "PHP KODA BLOKA"
|
4499 |
|
4500 |
#. translators: %s: Ad Inserter
|
4501 |
+
#: settings.php:2982
|
4502 |
msgid "%s JS CODE"
|
4503 |
msgstr "%s JS KODA"
|
4504 |
|
4505 |
+
#: settings.php:2985
|
4506 |
msgid "FOOTER CODE"
|
4507 |
msgstr "KODA NOGE"
|
4508 |
|
4509 |
+
#: settings.php:2994
|
4510 |
msgid "Force showing admin toolbar when viewing site"
|
4511 |
msgstr "Vsili prikaz orodne vrstice za skrbnike pri ogledu strani"
|
4512 |
|
4513 |
+
#: settings.php:3001
|
4514 |
msgid "Enable debugging functions in admin toolbar"
|
4515 |
msgstr "Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4516 |
|
4517 |
+
#: settings.php:3003
|
4518 |
msgid "Debugging functions in admin toolbar"
|
4519 |
msgstr "Funkcije za razhroščevanje v orodni vrstici za skrbnike"
|
4520 |
|
4521 |
+
#: settings.php:3010
|
4522 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4523 |
msgstr ""
|
4524 |
"Omogoči funkcije za razhroščevanje v orodni vrstici za skrbnike na mobilnih "
|
4525 |
"zaslonih"
|
4526 |
|
4527 |
+
#: settings.php:3012
|
4528 |
msgid "Debugging functions on mobile screens"
|
4529 |
msgstr "Funkcije za razhroščevanje na mobilnih zaslonih"
|
4530 |
|
4531 |
+
#: settings.php:3019
|
4532 |
msgid ""
|
4533 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4534 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4543 |
"pomagali diagnosticirati težave. Za prijavljene skrbnike je razhroščevanje "
|
4544 |
"vedno omogočeno."
|
4545 |
|
4546 |
+
#: settings.php:3021
|
4547 |
msgid "Remote debugging"
|
4548 |
msgstr "Oddaljeno razhroščevanje"
|
4549 |
|
4550 |
+
#: settings.php:3028
|
4551 |
msgid ""
|
4552 |
"Disable translation to see original texts for the settings and messages in "
|
4553 |
"English"
|
4555 |
"Onemogoči prevod za prikaz prvotnih besedil nastavitev in sporočil v "
|
4556 |
"angleščini"
|
4557 |
|
4558 |
+
#: settings.php:3030
|
4559 |
msgid "Disable translation"
|
4560 |
msgstr "Onemogoči prevod"
|
4561 |
|
4562 |
+
#: settings.php:3402
|
4563 |
msgid "Available positions for current theme"
|
4564 |
msgstr "Razpoložljivi položaji za trenutno temo"
|
4565 |
|
4566 |
+
#: settings.php:3403
|
4567 |
msgid "Error checking pages"
|
4568 |
msgstr "Napaka pri preverjanju strani"
|
4569 |
|
4570 |
+
#: settings.php:3406
|
4571 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4572 |
msgstr ""
|
4573 |
"Preklopi preverjanje teme za razpoložljive položaje za samodejno vstavljanje"
|
4574 |
|
4575 |
+
#: settings.php:3406
|
4576 |
msgctxt "Button"
|
4577 |
msgid "Check"
|
4578 |
msgstr "Preveri"
|
4579 |
|
4580 |
+
#: settings.php:3413
|
4581 |
msgid "Position"
|
4582 |
msgstr "Položaj"
|
4583 |
|
4584 |
+
#: settings.php:3418
|
4585 |
msgid "Archive pages"
|
4586 |
msgstr "Strani arhiva"
|
4587 |
|
4588 |
+
#: settings.php:3477
|
4589 |
msgid ""
|
4590 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4591 |
msgstr ""
|
4592 |
"Položaj ni na razpolago ker predpomnjenje izhoda (zavihek [*]) ni omogočeno"
|
4593 |
|
4594 |
+
#: settings.php:3480 strings.php:228
|
4595 |
msgid "Position not checked yet"
|
4596 |
msgstr "Položaj še ni bil preverjen"
|
4597 |
|
4598 |
+
#: settings.php:3516
|
4599 |
msgid "Toggle active/all blocks"
|
4600 |
msgstr "Preklopi aktive/vse bloke"
|
4601 |
|
4602 |
+
#: settings.php:3520 strings.php:215
|
4603 |
msgid "Rearrange block order"
|
4604 |
msgstr "Preuredi vrstni red blokov"
|
4605 |
|
4606 |
+
#: settings.php:3525
|
4607 |
msgid "Save new block order"
|
4608 |
msgstr "Shrani vrstni red blokov"
|
4609 |
|
4610 |
+
#: settings.php:3551
|
4611 |
msgid "Toggle active/all ad units"
|
4612 |
msgstr "Preklopi aktivne/vse oglasne enote"
|
4613 |
|
4614 |
+
#: settings.php:3555
|
4615 |
msgid "Reload AdSense ad units"
|
4616 |
msgstr "Ponovno naloži oglasne enote AdSense"
|
4617 |
|
4618 |
+
#: settings.php:3559
|
4619 |
msgid "Clear authorization to access AdSense account"
|
4620 |
msgstr "Odstrani avtorizacijo za dostop do računa AdSense"
|
4621 |
|
4622 |
+
#: settings.php:3563 settings.php:4362 settings.php:4429 strings.php:223
|
4623 |
msgid "Google AdSense Homepage"
|
4624 |
msgstr "Google AdSense Domača Stran"
|
4625 |
|
4626 |
+
#: settings.php:3579
|
4627 |
msgid "Switch to physical ads.txt file"
|
4628 |
msgstr "Preklopi na fizično datoteko ads.txt"
|
4629 |
|
4630 |
+
#: settings.php:3580
|
4631 |
msgid "Switch to virtual ads.txt file"
|
4632 |
msgstr "Preklopi na navidezno datoteko ads.txt"
|
4633 |
|
4634 |
#. translators: %s: ads.txt
|
4635 |
+
#: settings.php:3590
|
4636 |
msgid "Open %s"
|
4637 |
msgstr "Odpri %s"
|
4638 |
|
4639 |
+
#: settings.php:3598
|
4640 |
msgid "Reload ads.txt file"
|
4641 |
msgstr "Ponovno naloži datoteko ads.txt"
|
4642 |
|
4643 |
+
#: settings.php:3602 settings.php:4489
|
4644 |
msgid "Save"
|
4645 |
msgstr "Shrani"
|
4646 |
|
4647 |
#. translators: %s: Ad Inserter
|
4648 |
+
#: settings.php:3777
|
4649 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4650 |
msgstr "datoteka ads.txt: %s navidezna datoteka ads.txt"
|
4651 |
|
4652 |
+
#: settings.php:3782 settings.php:3802 strings.php:207
|
4653 |
msgid "Warning"
|
4654 |
msgstr "Opozorilo"
|
4655 |
|
4656 |
#. translators: %s: Ad Inserter
|
4657 |
+
#: settings.php:3782
|
4658 |
msgid "%s virtual file ads.txt not found"
|
4659 |
msgstr "%s navidezna datoteka ads.txt ni najdena"
|
4660 |
|
4661 |
+
#: settings.php:3790
|
4662 |
msgid "IMPORTANT"
|
4663 |
msgstr "POMEMBNO"
|
4664 |
|
4665 |
+
#: settings.php:3790
|
4666 |
msgid "ads.txt file must be placed on the root domain"
|
4667 |
msgstr "Datoteka ads.txt mora biti nameščena na korensko domeno"
|
4668 |
|
4669 |
+
#: settings.php:3795
|
4670 |
msgid "ads.txt file"
|
4671 |
msgstr "datoteka ads.txt"
|
4672 |
|
4673 |
+
#: settings.php:3795
|
4674 |
msgid "NOT WRITABLE"
|
4675 |
msgstr "NI ZAPISLJIVO"
|
4676 |
|
4677 |
+
#: settings.php:3802
|
4678 |
msgid "file %s not found"
|
4679 |
msgstr "datoteka %s ni najdena"
|
4680 |
|
4681 |
+
#: settings.php:3812
|
4682 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4683 |
msgstr ""
|
4684 |
"IDji računov najdeni v blokih, vendar pa niso prisotni v datoteki ads.txt"
|
4685 |
|
4686 |
#. translators: %s: Ad Inserter
|
4687 |
+
#: settings.php:3818
|
4688 |
msgid "%s virtual ads.txt file"
|
4689 |
msgstr "%s navidezna datoteka ads.txt"
|
4690 |
|
4691 |
+
#: settings.php:3840
|
4692 |
msgid "Advertising system"
|
4693 |
msgstr "Oglaševalski sistem"
|
4694 |
|
4695 |
+
#: settings.php:3841
|
4696 |
msgid "Account ID"
|
4697 |
msgstr "ID Računa"
|
4698 |
|
4699 |
+
#: settings.php:3843
|
4700 |
msgid "Certification authority ID"
|
4701 |
msgstr "ID organa za potrjevanje"
|
4702 |
|
4703 |
+
#: settings.php:3858
|
4704 |
msgid "Account ID found in block and present in ads.txt"
|
4705 |
msgstr "ID računa najden v bloku in prisoten v datoteki ads.txt"
|
4706 |
|
4707 |
+
#: settings.php:3862
|
4708 |
msgid "Account ID found in block but not present in ads.txt"
|
4709 |
msgstr "ID računa najden v bloku, vendar ni prisoten v datoteki ads.txt"
|
4710 |
|
4711 |
+
#: settings.php:4152
|
4712 |
msgid "Preview block"
|
4713 |
msgstr "Predogled bloka"
|
4714 |
|
4715 |
+
#: settings.php:4161
|
4716 |
msgid "Insertion disabled"
|
4717 |
msgstr "Vstavljanje onemogočeno"
|
4718 |
|
4719 |
+
#: settings.php:4191
|
4720 |
msgid "Automatic insertion"
|
4721 |
msgstr "Samodejno vstavljanje"
|
4722 |
|
4723 |
#. translators: %s HTML tags
|
4724 |
+
#: settings.php:4192 settings.php:5191
|
4725 |
msgid "PHP code processing"
|
4726 |
msgstr "Procesiranje PHP kode"
|
4727 |
|
4728 |
+
#: settings.php:4194
|
4729 |
msgid "Device detection"
|
4730 |
msgstr "Zaznavanje naprave"
|
4731 |
|
4732 |
+
#: settings.php:4207
|
4733 |
msgid "Widget positions"
|
4734 |
msgstr "Položaji gradnikov"
|
4735 |
|
4736 |
+
#: settings.php:4217
|
4737 |
+
msgid "No active code block"
|
4738 |
+
msgstr "Noben aktiven blok"
|
4739 |
+
|
4740 |
+
#: settings.php:4218
|
4741 |
+
msgid "No code block matches search keywords"
|
4742 |
+
msgstr "Noben blok ne ustreza iskalnim ključnim besedam"
|
4743 |
+
|
4744 |
+
#: settings.php:4273
|
4745 |
msgid "Ad unit"
|
4746 |
msgstr "Enota"
|
4747 |
|
4748 |
+
#: settings.php:4275
|
4749 |
msgid "Slot ID"
|
4750 |
msgstr "ID mesta"
|
4751 |
|
4752 |
+
#: settings.php:4301
|
4753 |
msgid "Copy AdSense code"
|
4754 |
msgstr "Kopiraj kodo AdSense"
|
4755 |
|
4756 |
+
#: settings.php:4304
|
4757 |
msgid "Preview AdSense ad"
|
4758 |
msgstr "Predogled oglasa AdSense"
|
4759 |
|
4760 |
+
#: settings.php:4307
|
4761 |
msgid "Get AdSense code"
|
4762 |
msgstr "Pridobi kodo AdSense"
|
4763 |
|
4764 |
#. translators: %s: HTML tags
|
4765 |
+
#: settings.php:4339
|
4766 |
msgid ""
|
4767 |
"Please %s clear authorization %s with the button %s above and once again "
|
4768 |
"authorize access to your AdSense account."
|
4770 |
"Prosimo, %s odstranite avtorizacijo %s z gumbom %s zgoraj in še enkrat "
|
4771 |
"avtorizirajte dostop do vašega računa AdSense."
|
4772 |
|
4773 |
+
#: settings.php:4358
|
4774 |
msgid "AdSense Integration"
|
4775 |
msgstr "Integracija AdSense"
|
4776 |
|
4777 |
+
#: settings.php:4360
|
4778 |
msgid "AdSense Integration - Step 2"
|
4779 |
msgstr "Integracija AdSense - Korak 2"
|
4780 |
|
4781 |
#. translators: %s: HTML tags
|
4782 |
+
#: settings.php:4366
|
4783 |
msgid ""
|
4784 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4785 |
"Authorization Code %s button to open a new window where you can allow "
|
4792 |
"Avtoriziraj. %s"
|
4793 |
|
4794 |
#. translators: %s: HTML tags
|
4795 |
+
#: settings.php:4373
|
4796 |
msgid ""
|
4797 |
"If you get error, can't access ad units or would like to use own Google API "
|
4798 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4803 |
"je %s za vnos podatkov ID Odjemalca in Skrivnost Odjemalca."
|
4804 |
|
4805 |
#. translators: %s: HTML tags
|
4806 |
+
#: settings.php:4375
|
4807 |
msgid ""
|
4808 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4809 |
"Authorization Code %s button to open a new window where you can allow "
|
4816 |
"gumb %s Avtoriziraj. %s"
|
4817 |
|
4818 |
#. translators: %s: HTML tags
|
4819 |
+
#: settings.php:4382
|
4820 |
msgid ""
|
4821 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4822 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4824 |
"Če se pojavi napaka %s neveljaven odjemalec %s, kliknite na gumb %s Odstrani "
|
4825 |
"in se vrni na Korak 1 %s za ponoven vnos ID odjemalca in Skrivnost Odjemalca."
|
4826 |
|
4827 |
+
#: settings.php:4393
|
4828 |
msgid "Get Authorization Code"
|
4829 |
msgstr "Pridobi Avtoriazcijsko Kodo"
|
4830 |
|
4831 |
+
#: settings.php:4396
|
4832 |
msgid "Enter Authorization Code"
|
4833 |
msgstr "Vnesi Avorizacijsko Kodo"
|
4834 |
|
4835 |
+
#: settings.php:4406
|
4836 |
msgid "Use own API IDs"
|
4837 |
msgstr "Uporabi lastne API ID-je"
|
4838 |
|
4839 |
+
#: settings.php:4408
|
4840 |
msgid "Clear and return to Step 1"
|
4841 |
msgstr "Odstrani in se vrni na Korak 1"
|
4842 |
|
4843 |
+
#: settings.php:4412
|
4844 |
msgid "Authorize"
|
4845 |
msgstr "Avtoriziraj"
|
4846 |
|
4847 |
+
#: settings.php:4428
|
4848 |
msgid "AdSense Integration - Step 1"
|
4849 |
msgstr "Integracija AdSense - Korak 1"
|
4850 |
|
4851 |
#. translators: %s: Ad Inserter
|
4852 |
+
#: settings.php:4432
|
4853 |
msgid ""
|
4854 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4855 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4862 |
"Odjemalca in Skrivnost Odjemalca."
|
4863 |
|
4864 |
#. translators: %s: HTML tags
|
4865 |
+
#: settings.php:4441
|
4866 |
msgid "Go to %s Google APIs and Services console %s"
|
4867 |
msgstr "Pojdite na %s konzolo Google API-ji in Storitve %s"
|
4868 |
|
4869 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4870 |
+
#: settings.php:4442
|
4871 |
msgid ""
|
4872 |
"Create %1$s project - if the project and IDs are already created click on "
|
4873 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4876 |
"%2$s Pooblastila %3$s v stranski vrstici in pojdite na korak 16"
|
4877 |
|
4878 |
#. translators: %s: HTML tags
|
4879 |
+
#: settings.php:4443
|
4880 |
msgid ""
|
4881 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4882 |
"create a new project"
|
4885 |
"ustvaritev novega projekta"
|
4886 |
|
4887 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4888 |
+
#: settings.php:4444
|
4889 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4890 |
msgstr "Vnesite %1$s za ime projekta in kliknite na gumb %2$s Ustvari %3$s"
|
4891 |
|
4892 |
#. translators: %s: HTML tags
|
4893 |
+
#: settings.php:4445
|
4894 |
msgid ""
|
4895 |
"Click on project selection, wait for the project to be created and then and "
|
4896 |
"select %s as the current project"
|
4899 |
"izberite %s kot trenutni projekt"
|
4900 |
|
4901 |
#. translators: %s: HTML tags
|
4902 |
+
#: settings.php:4446
|
4903 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4904 |
msgstr "Klinkite na %s OMOGOČI API-je IN STORITVE %s"
|
4905 |
|
4906 |
#. translators: %s: HTML tags
|
4907 |
+
#: settings.php:4447
|
4908 |
msgid "Search for adsense and enable %s"
|
4909 |
msgstr "Poiščite adsense in omogočite %s"
|
4910 |
|
4911 |
#. translators: %s: HTML tags
|
4912 |
+
#: settings.php:4448
|
4913 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4914 |
msgstr "Klinkite na %s USTVARI POOBLASTILA %s"
|
4915 |
|
4916 |
#. translators: %s: HTML tags
|
4917 |
+
#: settings.php:4449
|
4918 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4919 |
msgstr "Za %s Od kod boste klicali API-je? %s izberite %s Drugi UI %s"
|
4920 |
|
4921 |
#. translators: %s: HTML tags
|
4922 |
+
#: settings.php:4450
|
4923 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4924 |
msgstr ""
|
4925 |
"Za %s Do katerih podatkov boste dostopali? %s izberite %s Uporabniški "
|
4926 |
"podatki %s"
|
4927 |
|
4928 |
#. translators: %s: HTML tags
|
4929 |
+
#: settings.php:4451
|
4930 |
msgid "Click on %s What credentials do I need? %s"
|
4931 |
msgstr "Kliknite na %s Kakšna pooblastila potrebujem? %s"
|
4932 |
|
4933 |
#. translators: %s: HTML tags
|
4934 |
+
#: settings.php:4452
|
4935 |
msgid ""
|
4936 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4937 |
"Ad Inserter client %s"
|
4940 |
"vnestite %s Ad Inserter odjemalec %s"
|
4941 |
|
4942 |
#. translators: %s: HTML tags
|
4943 |
+
#: settings.php:4453
|
4944 |
msgid ""
|
4945 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4946 |
"enter %s"
|
4949 |
"uporabnikom %s vnesite %s"
|
4950 |
|
4951 |
#. translators: %s: HTML tags
|
4952 |
+
#: settings.php:4454
|
4953 |
msgid "Click on %s Continue %s"
|
4954 |
msgstr "Kliknite na %s Nadaljuj %s"
|
4955 |
|
4956 |
#. translators: %s: HTML tags
|
4957 |
+
#: settings.php:4455
|
4958 |
msgid "Click on %s Done %s"
|
4959 |
msgstr "Kliknite na %s Končaj %s"
|
4960 |
|
4961 |
#. translators: %s: HTML tags
|
4962 |
+
#: settings.php:4456
|
4963 |
msgid ""
|
4964 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4965 |
"secret %s"
|
4967 |
"Kliknite na %s Ad Inserter odjemalcec, %s da bi dobili %s ID odjemalca %s in "
|
4968 |
"%s Skrivnost odjemalca %s"
|
4969 |
|
4970 |
+
#: settings.php:4457
|
4971 |
msgid "Copy them to the appropriate fields below"
|
4972 |
msgstr "Skopirajte ju na ustrezni polji spodaj"
|
4973 |
|
4974 |
+
#: settings.php:4463
|
4975 |
msgid "Client ID"
|
4976 |
msgstr "ID odjemalca"
|
4977 |
|
4978 |
+
#: settings.php:4466
|
4979 |
msgid "Enter Client ID"
|
4980 |
msgstr "Vnesite ID odjemalca"
|
4981 |
|
4982 |
+
#: settings.php:4471
|
4983 |
msgid "Client secret"
|
4984 |
msgstr "Skrivnost odjemalca"
|
4985 |
|
4986 |
+
#: settings.php:4474
|
4987 |
msgid "Enter Client secret"
|
4988 |
msgstr "Vnesite Skrivnost odjemalca"
|
4989 |
|
4990 |
+
#: settings.php:4484
|
4991 |
msgid "Use default API IDs"
|
4992 |
msgstr "Uporabi privzete API ID-je"
|
4993 |
|
4994 |
+
#: settings.php:4648
|
4995 |
msgid "All posts"
|
4996 |
msgstr "Vsi prispevki"
|
4997 |
|
4998 |
+
#: settings.php:4649
|
4999 |
msgid "All static pages"
|
5000 |
msgstr "Vse statične strani"
|
5001 |
|
5002 |
+
#: settings.php:4804 settings.php:4817 settings.php:4831 settings.php:4847
|
5003 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
5004 |
msgstr "Prazni oglasni bloki? Iščete alternativo za AdSense?"
|
5005 |
|
5006 |
+
#: settings.php:4809 settings.php:4822 settings.php:4836 settings.php:4852
|
5007 |
+
#: settings.php:5081 settings.php:5083 settings.php:5100 settings.php:5104
|
5008 |
+
#: settings.php:5112 settings.php:5113 settings.php:5116 settings.php:5122
|
5009 |
+
#: settings.php:5132 settings.php:5136
|
5010 |
msgid "Looking for AdSense alternative?"
|
5011 |
msgstr "Iščete alternativo za AdSense?"
|
5012 |
|
5013 |
+
#: settings.php:4864
|
5014 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
5015 |
msgstr "Poskusite oglase Infolinks z oglasi AdSense ali Media.net"
|
5016 |
|
5017 |
+
#: settings.php:4869 settings.php:5079 settings.php:5091 settings.php:5119
|
5018 |
+
#: settings.php:5146
|
5019 |
msgid "Use Infolinks ads with Adsense to earn more"
|
5020 |
msgstr "Uporabite oglase Infolinks z AdSense za večji zaslužek"
|
5021 |
|
5022 |
+
#: settings.php:4879 settings.php:4894
|
5023 |
msgid "Maximize your revenue!"
|
5024 |
msgstr "Povečajte svoj prihodek!"
|
5025 |
|
5026 |
+
#: settings.php:4920 settings.php:4970
|
5027 |
msgid "Support plugin development"
|
5028 |
msgstr "Podprite razvoj vtičnika"
|
5029 |
|
5030 |
+
#: settings.php:4925 settings.php:4971
|
5031 |
msgid ""
|
5032 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5033 |
"reviewing the plugin on WordPres"
|
5035 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5036 |
"razširiti novico z mnenjem o vtičniku na WordPress-u"
|
5037 |
|
5038 |
+
#: settings.php:4925
|
5039 |
msgctxt "Review Ad Inserter"
|
5040 |
msgid "Review"
|
5041 |
msgstr "Ocenite"
|
5042 |
|
5043 |
+
#: settings.php:4930
|
5044 |
msgid ""
|
5045 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
5046 |
"rating the plugin on WordPres"
|
5048 |
"Če vam je Ad Inserter všeč in imate trenutek časa, mi prosim pomagajte "
|
5049 |
"razširiti novico z oceno vtičnika na WordPress-u"
|
5050 |
|
5051 |
+
#: settings.php:4930
|
5052 |
msgctxt "Rate Ad Inserter"
|
5053 |
msgid "Rate"
|
5054 |
msgstr "Ocenite"
|
5055 |
|
5056 |
+
#: settings.php:4935
|
5057 |
msgid ""
|
5058 |
"Support free Ad Inserter development. If you are making money with Ad "
|
5059 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
5062 |
"Podprite razvoj brezplačnega Ad Inserter-ja. Če služite denar z Ad Inserter-"
|
5063 |
"jem razmislite o donaciji manjšega zneska. Tudi 1 evro šteje. Hvala!"
|
5064 |
|
5065 |
+
#: settings.php:4935
|
5066 |
msgid "Donate"
|
5067 |
msgstr "Donirajte"
|
5068 |
|
5069 |
+
#: settings.php:4942 settings.php:4986
|
5070 |
msgid "Average rating of the plugin - Thank you!"
|
5071 |
msgstr "Povprečna ocena vtičnika - Hvala!"
|
5072 |
|
5073 |
#. translators: %s: Ad Inserter, HTML tags
|
5074 |
+
#: settings.php:4953
|
5075 |
msgid ""
|
5076 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
5077 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
5086 |
"monetizacijo vašega spletnega mesta. Ko ga ocenite s 5-imi zvezdicami je kot "
|
5087 |
"bi rekli 'Hvala'."
|
5088 |
|
5089 |
+
#: settings.php:4971
|
5090 |
msgid "Review"
|
5091 |
msgstr "Ocena"
|
5092 |
|
5093 |
+
#: settings.php:4975
|
5094 |
msgid "Ad Inserter on Twitter"
|
5095 |
msgstr "Ad Inserter na Twitter-ju"
|
5096 |
|
5097 |
+
#: settings.php:4976
|
5098 |
msgid "Ad Inserter on Facebook"
|
5099 |
msgstr "Ad Inserter na Facebook-u"
|
5100 |
|
5101 |
+
#: settings.php:4979
|
5102 |
msgid "Follow Ad Inserter"
|
5103 |
msgstr "Sledi Ad Inserter-ju"
|
5104 |
|
5105 |
#. translators: %s: HTML tags
|
5106 |
+
#: settings.php:5006
|
5107 |
msgid ""
|
5108 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
5109 |
"and %s Common Settings %s pages"
|
5112 |
"Urejanje Kode, %s %s Pogoste Nastavitve %s"
|
5113 |
|
5114 |
#. translators: %s: HTML tags
|
5115 |
+
#: settings.php:5018
|
5116 |
msgid ""
|
5117 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
5118 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
5123 |
"%s Infolinks %s oglasno kodo %s"
|
5124 |
|
5125 |
#. translators: %s: HTML tags
|
5126 |
+
#: settings.php:5039
|
5127 |
msgid ""
|
5128 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
5129 |
"purchase you refer to us"
|
5132 |
"nakup, ki nam ga posredujete"
|
5133 |
|
5134 |
#. translators: %s: HTML tags
|
5135 |
+
#: settings.php:5046
|
5136 |
msgid ""
|
5137 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
5138 |
"diagnose and fix the problem."
|
5141 |
"navodili za diagnozo in rešitvami za težave."
|
5142 |
|
5143 |
#. translators: %s: HTML tags
|
5144 |
+
#: settings.php:5050
|
5145 |
msgid ""
|
5146 |
"If you need any kind of help or support, please do not hesitate to open a "
|
5147 |
"thread on the %s support forum. %s"
|
5149 |
"Če potrebujete kakršno koli pomoč ali podporo ne oklevajte in odprite novo "
|
5150 |
"nit na %s podpornem forumu. %s"
|
5151 |
|
5152 |
+
#: settings.php:5076 settings.php:5145
|
5153 |
msgid "Code preview with visual CSS editor"
|
5154 |
msgstr "Predogled kode z vizualnim CSS urejevalnikom"
|
5155 |
|
5156 |
+
#: settings.php:5095 settings.php:5140
|
5157 |
msgid "A/B testing - Track ad impressions and clicks"
|
5158 |
msgstr "A/B testiranje - Sledi prikazom in klikom"
|
5159 |
|
5160 |
+
#: settings.php:5154
|
5161 |
msgid "Looking for Pro Ad Management plugin?"
|
5162 |
msgstr "Iščete Pro vtičnik za Upravljanje z Oglasi?"
|
5163 |
|
5164 |
+
#: settings.php:5155
|
5165 |
msgid "To Optimally Monetize your WordPress website?"
|
5166 |
msgstr "Za optimalno monetizacijo vašega WordPress spletnega mesta?"
|
5167 |
|
5168 |
#. Translators: %s: price of Ad Inserter Pro
|
5169 |
+
#: settings.php:5156
|
5170 |
msgid "Different license types starting from %s"
|
5171 |
msgstr "Različni tipi licenc začenši od %s"
|
5172 |
|
5173 |
#. translators: %s HTML tags
|
5174 |
+
#: settings.php:5159
|
5175 |
msgid "%s AdSense Integration %s"
|
5176 |
msgstr "%s Integracija AdSense %s"
|
5177 |
|
5178 |
#. translators: %s HTML tags
|
5179 |
+
#: settings.php:5160
|
5180 |
msgid "Syntax highlighting %s editor %s"
|
5181 |
msgstr "%s Urejevalnik %s s poudarjanjem sintakse"
|
5182 |
|
5183 |
#. translators: %s HTML tags
|
5184 |
+
#: settings.php:5161
|
5185 |
msgid "%s Code preview %s with visual CSS editor"
|
5186 |
msgstr "%s Predogled kode %s z vizualnim CSS urejevalnikom"
|
5187 |
|
5188 |
#. translators: %s HTML tags
|
5189 |
+
#: settings.php:5162
|
5190 |
msgid "Simple user interface - all settings on a single page"
|
5191 |
msgstr "Preprost uporabniški vmesnik - vse nastavitve na eni strani"
|
5192 |
|
5193 |
#. translators: %s HTML tags
|
5194 |
+
#: settings.php:5163
|
5195 |
msgid ""
|
5196 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
5197 |
"image / excerpt"
|
5200 |
"%s / sliko / izvlečkom"
|
5201 |
|
5202 |
#. translators: %s HTML tags
|
5203 |
+
#: settings.php:5164
|
5204 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
5205 |
msgstr "%s Samodejno vstavljanje %s med prispevki na straneh bloga"
|
5206 |
|
5207 |
#. translators: %s HTML tags
|
5208 |
+
#: settings.php:5165
|
5209 |
msgid "%s Automatic insertion %s before, between and after comments"
|
5210 |
msgstr "%s Samodejno vstavljanje %s pred, med in po kometarjih"
|
5211 |
|
5212 |
#. translators: %s HTML tags
|
5213 |
+
#: settings.php:5166
|
5214 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
5215 |
msgstr "%s Samodejno vstavljanje %s za %s ali pred %s začko"
|
5216 |
|
5217 |
#. translators: %s HTML tags
|
5218 |
+
#: settings.php:5167
|
5219 |
msgid "Automatic insertion at %s custom hook positions %s"
|
5220 |
msgstr "Samodejno vstavljanje na %s položajih ročic po meri %s"
|
5221 |
|
5222 |
#. translators: %s HTML tags
|
5223 |
+
#: settings.php:5168
|
5224 |
msgid ""
|
5225 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
5226 |
"selectors)"
|
5229 |
"selektorjev)"
|
5230 |
|
5231 |
#. translators: %s HTML tags
|
5232 |
+
#: settings.php:5169
|
5233 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
5234 |
msgstr "%s Izjeme vstavljanja %s za individualne prispevke in strani"
|
5235 |
|
5236 |
#. translators: %s HTML tags
|
5237 |
+
#: settings.php:5170
|
5238 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
5239 |
msgstr "%s Ročno vstavljanje: %s gradniki, kratke kode in klic PHP funkcije"
|
5240 |
|
5241 |
#. translators: %s HTML tags
|
5242 |
+
#: settings.php:5171
|
5243 |
msgid ""
|
5244 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
5245 |
"scrolls)"
|
5248 |
"se stran pomika)"
|
5249 |
|
5250 |
#. translators: %s HTML tags
|
5251 |
+
#: settings.php:5172
|
5252 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
5253 |
msgstr ""
|
5254 |
"%s Lepljivi oglasi v stranski vrstici %s (lepljivi na zaslon ali vsebino)"
|
5255 |
|
5256 |
#. translators: %s HTML tags
|
5257 |
+
#: settings.php:5173
|
5258 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
5259 |
msgstr ""
|
5260 |
"%s Animacije lepljivih oglasov %s (uveni, drsaj, obrni, prekucni, približaj)"
|
5261 |
|
5262 |
#. translators: %s HTML tags
|
5263 |
+
#: settings.php:5174
|
5264 |
msgid ""
|
5265 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
5266 |
"visible)"
|
5269 |
"postane viden)"
|
5270 |
|
5271 |
#. translators: %s HTML tags
|
5272 |
+
#: settings.php:5175
|
5273 |
msgid ""
|
5274 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
5275 |
msgstr ""
|
5277 |
"strani)"
|
5278 |
|
5279 |
#. translators: %s HTML tags
|
5280 |
+
#: settings.php:5176
|
5281 |
msgid "Block %s alignment and style %s customizations"
|
5282 |
msgstr "%s Poravnave in slogi %s bloka po meri"
|
5283 |
|
5284 |
#. translators: %s HTML tags
|
5285 |
+
#: settings.php:5177
|
5286 |
msgid ""
|
5287 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
5288 |
"TOS)"
|
5290 |
"%s Izogibanje %s vstavljanja oglasov zraven slik ali naslovov (AdSense TOS)"
|
5291 |
|
5292 |
#. translators: %s HTML tags
|
5293 |
+
#: settings.php:5178
|
5294 |
msgid ""
|
5295 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
5296 |
"feeds"
|
5299 |
"virih"
|
5300 |
|
5301 |
#. translators: %s HTML tags
|
5302 |
+
#: settings.php:5179
|
5303 |
msgid "%s Ad rotation %s (works also with caching)"
|
5304 |
msgstr "%s Rotacija oglasov %s (deluje tudi s predpomnjenjem)"
|
5305 |
|
5306 |
#. translators: %s HTML tags
|
5307 |
+
#: settings.php:5180
|
5308 |
msgid "Create, edit and check %s ads.txt %s file"
|
5309 |
msgstr "Ustvari, urejaj in preveri datoteko %s ads.txt %s"
|
5310 |
|
5311 |
#. translators: %s HTML tags
|
5312 |
+
#: settings.php:5181
|
5313 |
msgid ""
|
5314 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
5315 |
"AdSense)"
|
5318 |
"AdSense)"
|
5319 |
|
5320 |
#. translators: %s HTML tags
|
5321 |
+
#: settings.php:5182
|
5322 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
5323 |
msgstr "Notranje ali zunanje %s sledenje %s (prek Google Analytics ali Matomo)"
|
5324 |
|
5325 |
#. translators: %s HTML tags
|
5326 |
+
#: settings.php:5183
|
5327 |
msgid "%s Public web reports %s for clients, export to PDF"
|
5328 |
msgstr "%s Javna spletna poročila %s za stranke, izvoz v PDF"
|
5329 |
|
5330 |
#. translators: %s HTML tags
|
5331 |
+
#: settings.php:5184
|
5332 |
msgid "Support for %s A/B testing %s"
|
5333 |
msgstr "Podpora za %s A/B testiranje %s"
|
5334 |
|
5335 |
#. translators: %s HTML tags
|
5336 |
+
#: settings.php:5185
|
5337 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
5338 |
msgstr "Omejevanje frekvence - %s omejite prikaze ali klike %s"
|
5339 |
|
5340 |
#. translators: %s HTML tags
|
5341 |
+
#: settings.php:5186
|
5342 |
msgid "Click fraud %s protection %s"
|
5343 |
msgstr "%s Zaščita %s pred goljufijo s kliki"
|
5344 |
|
5345 |
#. translators: %s HTML tags
|
5346 |
+
#: settings.php:5187
|
5347 |
msgid "Support for %s lazy loading %s"
|
5348 |
msgstr "Podpora za %s leno nalaganje %s"
|
5349 |
|
5350 |
#. translators: %s HTML tags
|
5351 |
+
#: settings.php:5188
|
5352 |
msgid "Support for ads on %s AMP pages %s"
|
5353 |
msgstr "Podpora za oglase na %s AMP straneh %s"
|
5354 |
|
5355 |
#. translators: %s HTML tags
|
5356 |
+
#: settings.php:5189
|
5357 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
5358 |
msgstr "Podpora za kontekstualne %s Amazon Native Shopping Ads %s (odzivni)"
|
5359 |
|
5360 |
#. translators: %s HTML tags
|
5361 |
+
#: settings.php:5190
|
5362 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
5363 |
msgstr ""
|
5364 |
"Ime CSS razreda za div za ovijanje po meri za izogibanje blokiranju oglasov"
|
5365 |
|
5366 |
#. translators: %s HTML tags
|
5367 |
+
#: settings.php:5192
|
5368 |
msgid "%s Banner %s code generator"
|
5369 |
msgstr "Generator kode za %s pasice %s"
|
5370 |
|
5371 |
#. translators: %s HTML tags
|
5372 |
+
#: settings.php:5193
|
5373 |
msgid "Support for %s header and footer %s code"
|
5374 |
msgstr "Podpora za kodo v %s glavi in nogi %s"
|
5375 |
|
5376 |
#. translators: %s HTML tags
|
5377 |
+
#: settings.php:5194
|
5378 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
5379 |
msgstr ""
|
5380 |
"Podpora za Google Analytics, Matomo ali katerokoli drugo spletno analitiko"
|
5381 |
|
5382 |
#. translators: %s HTML tags
|
5383 |
+
#: settings.php:5195
|
5384 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
5385 |
msgstr ""
|
5386 |
"%s Zaznava namizne, tablične in telefonske naprave %s na strani strani "
|
5387 |
"strežnika"
|
5388 |
|
5389 |
#. translators: %s HTML tags
|
5390 |
+
#: settings.php:5196
|
5391 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
5392 |
msgstr "%s Zaznava mobilne naprave %s (deluje s predpomnjenjem)"
|
5393 |
|
5394 |
#. translators: %s HTML tags
|
5395 |
+
#: settings.php:5197
|
5396 |
msgid ""
|
5397 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
5398 |
"protection"
|
5401 |
"vsebine"
|
5402 |
|
5403 |
#. translators: %s HTML tags
|
5404 |
+
#: settings.php:5198
|
5405 |
msgid "%s Ad blocking statistics %s"
|
5406 |
msgstr "%s Statistika blokiranja oglasov %s"
|
5407 |
|
5408 |
#. translators: %s HTML tags
|
5409 |
+
#: settings.php:5199
|
5410 |
msgid ""
|
5411 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
5412 |
"referrers, operating systems, browsers"
|
5415 |
"prispevkov, url-jev, napotiteljev, operacijskih sistemov, brskalnikov"
|
5416 |
|
5417 |
#. translators: %s HTML tags
|
5418 |
+
#: settings.php:5200
|
5419 |
msgid ""
|
5420 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
5421 |
msgstr ""
|
5422 |
"%s Črni/Beli seznam %s IP naslovov ali držav (deluje tudi s predpomnjenjem)"
|
5423 |
|
5424 |
#. translators: %s HTML tags
|
5425 |
+
#: settings.php:5201
|
5426 |
msgid "%s Multisite options %s to limit settings on the sites"
|
5427 |
msgstr "%s Multisite možnosti %s za omejitev nastavitev na spletiščih"
|
5428 |
|
5429 |
#. translators: %s HTML tags
|
5430 |
+
#: settings.php:5202
|
5431 |
msgid "%s Import/Export %s block or plugin settings"
|
5432 |
msgstr "%s Uvoz/Izvoz %s nastavitve bloka ali vtičnika"
|
5433 |
|
5434 |
#. translators: %s HTML tags
|
5435 |
+
#: settings.php:5203
|
5436 |
msgid "%s Insertion scheduling %s with fallback option"
|
5437 |
msgstr "%s Urnik vstavljanja %s z možnostjo rezerve"
|
5438 |
|
5439 |
#. translators: %s HTML tags
|
5440 |
+
#: settings.php:5204
|
5441 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
5442 |
msgstr "%s GEO ciljanje na ravni države %s (deluje tudi s predpomnjenjem)"
|
5443 |
|
5444 |
#. translators: %s HTML tags
|
5445 |
+
#: settings.php:5205
|
5446 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
5447 |
msgstr ""
|
5448 |
"Preprosto odpravljanje napak z veliko %s funkcijami za razhroščevanje %s"
|
5449 |
|
5450 |
#. translators: %s HTML tags
|
5451 |
+
#: settings.php:5206
|
5452 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
5453 |
msgstr ""
|
5454 |
"%s Vizualizacija %s vstavljenih blokov ali oglasov za enostavno umeščanje"
|
5455 |
|
5456 |
#. translators: %s HTML tags
|
5457 |
+
#: settings.php:5207
|
5458 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
5459 |
msgstr ""
|
5460 |
"%s Vizualizacija %s razpoložljivih položajev za samodejno vstavljanje oglasov"
|
5461 |
|
5462 |
#. translators: %s HTML tags
|
5463 |
+
#: settings.php:5208
|
5464 |
msgid ""
|
5465 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
5466 |
msgstr ""
|
5467 |
"%s Vizualizacija %s HTML značk za enostavno vstavljanje oglasov med odstavki"
|
5468 |
|
5469 |
#. translators: %s HTML tags
|
5470 |
+
#: settings.php:5209
|
5471 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
5472 |
msgstr ""
|
5473 |
"%s Podpora za odložišče %s za enostavno kopiranje blokov ali nastavitev"
|
5474 |
|
5475 |
#. translators: %s HTML tags
|
5476 |
+
#: settings.php:5210
|
5477 |
msgid "No ads on the settings page"
|
5478 |
msgstr "Stran z nastavitvami brez oglasov"
|
5479 |
|
5480 |
#. translators: %s HTML tags
|
5481 |
+
#: settings.php:5211
|
5482 |
msgid "Premium support"
|
5483 |
msgstr "Vrhunska podpora"
|
5484 |
|
5485 |
#. translators: %s HTML tags
|
5486 |
+
#: settings.php:5214
|
5487 |
msgid ""
|
5488 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
5489 |
"website with many advertising features to automatically insert adverts on "
|
5510 |
"bodo ohranile)."
|
5511 |
|
5512 |
#. translators: %s HTML tags
|
5513 |
+
#: settings.php:5227
|
5514 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5515 |
msgstr "Iščete Pro vtičnik za %s Upravljanje z Oglasi? %s"
|
5516 |
|
5517 |
#. translators: %s HTML tags
|
5518 |
+
#: settings.php:5232
|
5519 |
msgid "Ads between posts"
|
5520 |
msgstr "Oglasi med prispevki"
|
5521 |
|
5522 |
#. translators: %s HTML tags
|
5523 |
+
#: settings.php:5233
|
5524 |
msgid "Ads between comments"
|
5525 |
msgstr "Oglasi med komentarji"
|
5526 |
|
5527 |
#. translators: %s HTML tags
|
5528 |
+
#: settings.php:5234
|
5529 |
msgid "Support via email"
|
5530 |
msgstr "Podpora prek elektronske pošte"
|
5531 |
|
5532 |
#. translators: %s HTML tags
|
5533 |
+
#: settings.php:5240
|
5534 |
msgid "%s Sticky positions %s"
|
5535 |
msgstr "%s Lepljivi položaji %s"
|
5536 |
|
5537 |
#. translators: %s HTML tags
|
5538 |
+
#: settings.php:5241
|
5539 |
msgid "%s Limit insertions %s"
|
5540 |
msgstr "%s Omeji vstavljanja %s"
|
5541 |
|
5542 |
#. translators: %s HTML tags
|
5543 |
+
#: settings.php:5242
|
5544 |
msgid "%s Clearance %s options"
|
5545 |
msgstr "Možnosti %s izogibanja %s"
|
5546 |
|
5547 |
#. translators: %s HTML tags
|
5548 |
+
#: settings.php:5248
|
5549 |
msgid "Ad rotation"
|
5550 |
msgstr "Vrtenje oglasov"
|
5551 |
|
5552 |
#. translators: %s HTML tags
|
5553 |
+
#: settings.php:5249
|
5554 |
msgid "%s A/B testing %s"
|
5555 |
msgstr "%s A/B testiranje %s"
|
5556 |
|
5557 |
#. translators: %s HTML tags
|
5558 |
+
#: settings.php:5250
|
5559 |
msgid "%s Ad tracking %s"
|
5560 |
msgstr "%s Sledenje oglasom %s"
|
5561 |
|
5562 |
#. translators: %s HTML tags
|
5563 |
+
#: settings.php:5256
|
5564 |
msgid "Support for %s AMP pages %s"
|
5565 |
msgstr "Podpora za %s AMP strani %s"
|
5566 |
|
5567 |
#. translators: %s HTML tags
|
5568 |
+
#: settings.php:5257
|
5569 |
msgid "%s Ad blocking detection %s"
|
5570 |
msgstr "%s Zaznavanje blokiranja oglasov %s"
|
5571 |
|
5572 |
#. translators: %s HTML tags
|
5573 |
+
#: settings.php:5258
|
5574 |
msgid "%s Mobile device detection %s"
|
5575 |
msgstr "%s Zaznavanje mobilne naprave %s"
|
5576 |
|
5577 |
#. translators: %s HTML tags
|
5578 |
+
#: settings.php:5265
|
5579 |
msgid "64 code blocks"
|
5580 |
msgstr "64 kodnih blokov"
|
5581 |
|
5582 |
#. translators: %s HTML tags
|
5583 |
+
#: settings.php:5266
|
5584 |
msgid "%s GEO targeting %s"
|
5585 |
msgstr "%s GEO ciljanje %s"
|
5586 |
|
5587 |
#. translators: %s HTML tags
|
5588 |
+
#: settings.php:5267
|
5589 |
msgid "%s Scheduling %s"
|
5590 |
msgstr "%s Urnik %s"
|
5591 |
|
6372 |
msgstr "Dodaj"
|
6373 |
|
6374 |
#: strings.php:258
|
6375 |
+
msgctxt "Element"
|
6376 |
msgid "Parent"
|
6377 |
+
msgstr "Nadrejeni"
|
6378 |
|
6379 |
#: strings.php:259
|
6380 |
msgid "Cancel element selection"
|
6382 |
|
6383 |
#: strings.php:260
|
6384 |
msgid "Select parent element"
|
6385 |
+
msgstr "Izberi nadrejeni element"
|
6386 |
|
6387 |
#: strings.php:261
|
6388 |
msgid "CSS selector"
|
6405 |
msgstr "SELEKTOR"
|
6406 |
|
6407 |
#: strings.php:268
|
6408 |
+
msgctxt "Scheduling"
|
6409 |
+
msgid "FALLBACK"
|
6410 |
+
msgstr "REZERVA"
|
6411 |
+
|
6412 |
+
#: strings.php:269
|
6413 |
msgid "Automatically placed by AdSense Auto ads code"
|
6414 |
msgstr "Samodejno postavila koda za oglase AdSense Auto ads"
|
6415 |
|
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 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
-
"POT-Creation-Date: 2020-01-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -12,469 +12,469 @@ 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:2002 includes/preview.php:2045
|
215 |
-
#: includes/preview.php:2082 settings.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:2458 strings.php:16
|
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 |
msgid "requires WordPress 4.6 or newer"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: ad-inserter.php:
|
461 |
msgid "Please update!"
|
462 |
msgstr ""
|
463 |
|
464 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
465 |
#. name with HTML tags will be added)
|
466 |
-
#: ad-inserter.php:
|
467 |
msgid "Thank you for installing"
|
468 |
msgstr ""
|
469 |
|
470 |
#. translators: Opt-in message: %s: HTML tags
|
471 |
-
#: ad-inserter.php:
|
472 |
msgid ""
|
473 |
"We would like to %s track its usage %s on your site. This is completely "
|
474 |
"optional and can be disabled at any time."
|
475 |
msgstr ""
|
476 |
|
477 |
-
#: ad-inserter.php:
|
478 |
msgid ""
|
479 |
"We don't record any sensitive data, only information regarding the WordPress "
|
480 |
"environment and plugin usage, which will help us to make improvements to the "
|
@@ -482,7 +482,7 @@ msgid ""
|
|
482 |
msgstr ""
|
483 |
|
484 |
#. translators: Deactivation message: %s: HTML tags
|
485 |
-
#: ad-inserter.php:
|
486 |
msgid ""
|
487 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
488 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
@@ -490,57 +490,57 @@ msgid ""
|
|
490 |
msgstr ""
|
491 |
|
492 |
#. translators: %s: Ad Inserter
|
493 |
-
#: ad-inserter.php:
|
494 |
msgid "%s block."
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: widget title
|
498 |
-
#: ad-inserter.php:
|
499 |
msgid "Processing log"
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
-
#: ad-inserter.php:
|
504 |
msgid "Dummy widget"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
-
#: ad-inserter.php:
|
509 |
msgid "Debugging tools"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: block status (widget title)
|
513 |
-
#: ad-inserter.php:
|
514 |
msgctxt "block"
|
515 |
msgid "PAUSED"
|
516 |
msgstr ""
|
517 |
|
518 |
-
#: ad-inserter.php:
|
519 |
msgid "WIDGET DISABLED"
|
520 |
msgstr ""
|
521 |
|
522 |
-
#: ad-inserter.php:
|
523 |
msgid "Unknown block"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: ad-inserter.php:
|
527 |
-
#: includes/functions.old.php:3186 includes/functions.php:
|
528 |
-
#: settings.php:
|
529 |
msgid "Title"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: ad-inserter.php:
|
533 |
msgctxt "Widget"
|
534 |
msgid "Sticky"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: ad-inserter.php:
|
538 |
msgid ""
|
539 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
540 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: ad-inserter.php:
|
544 |
msgid ""
|
545 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
546 |
"will clear all settings that are available only in the Pro version "
|
@@ -548,166 +548,170 @@ msgid ""
|
|
548 |
msgstr ""
|
549 |
|
550 |
#. translators: %s: Ad Inserter
|
551 |
-
#: class.php:
|
552 |
msgid "PHP error in %s block"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: class.php:
|
556 |
msgid "Counters"
|
557 |
msgstr ""
|
558 |
|
559 |
-
#: class.php:
|
560 |
msgid "Content"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: class.php:
|
564 |
msgid "Excerpt"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: class.php:
|
568 |
msgid "Before post"
|
569 |
msgstr ""
|
570 |
|
571 |
-
#: class.php:
|
572 |
msgid "After post"
|
573 |
msgstr ""
|
574 |
|
575 |
-
#: class.php:
|
576 |
msgid "Between posts"
|
577 |
msgstr ""
|
578 |
|
579 |
-
#: class.php:
|
580 |
msgid "Widget"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: class.php:
|
584 |
msgid "PHP function call"
|
585 |
msgstr ""
|
586 |
|
587 |
#. Translators: %s: custom hook name
|
588 |
-
#: class.php:
|
589 |
msgid "Custom hook %s call"
|
590 |
msgstr ""
|
591 |
|
592 |
-
#: class.php:
|
593 |
msgid "AJAX REQUEST"
|
594 |
msgstr ""
|
595 |
|
596 |
-
#: class.php:
|
597 |
msgid "Ajax request for block in iframe"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: class.php:
|
601 |
msgid "Ajax request url, click to open it in a new tab"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: class.php:
|
605 |
msgid "IN THE LOOP"
|
606 |
msgstr ""
|
607 |
|
608 |
-
#: class.php:
|
609 |
msgid "YES"
|
610 |
msgstr ""
|
611 |
|
612 |
-
#: class.php:
|
613 |
msgid "NO"
|
614 |
msgstr ""
|
615 |
|
616 |
-
#: class.php:
|
617 |
msgid "BLOCK"
|
618 |
msgstr ""
|
619 |
|
620 |
-
#: class.php:
|
621 |
msgctxt "block or widget"
|
622 |
msgid "INSERTED BUT NOT VISIBLE"
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: class.php:
|
626 |
msgctxt "viewports"
|
627 |
msgid "ALL"
|
628 |
msgstr ""
|
629 |
|
630 |
-
#: class.php:
|
631 |
msgctxt "Block"
|
632 |
msgid "HIDDEN"
|
633 |
msgstr ""
|
634 |
|
635 |
-
#: class.php:
|
636 |
msgctxt "Block"
|
637 |
msgid "VISIBLE"
|
638 |
msgstr ""
|
639 |
|
640 |
-
#: class.php:
|
641 |
msgid "ACTIVE GROUPS"
|
642 |
msgstr ""
|
643 |
|
|
|
|
|
|
|
|
|
644 |
#. translators: %s: list parameters and type
|
645 |
-
#: class.php:
|
646 |
msgid "parameters='%s' type='%s'"
|
647 |
msgstr ""
|
648 |
|
649 |
#. translators: %s: list parameters and type
|
650 |
-
#: class.php:
|
651 |
msgid "referers='%s' type='%s'"
|
652 |
msgstr ""
|
653 |
|
654 |
#. translators: %s: list parameters and type
|
655 |
-
#: class.php:
|
656 |
msgid "clients='%s' type='%s'"
|
657 |
msgstr ""
|
658 |
|
659 |
#. translators: %s: list parameters and type
|
660 |
-
#: class.php:
|
661 |
msgid "countries='%s' type='%s'"
|
662 |
msgstr ""
|
663 |
|
664 |
#. translators: %s: list parameters and type
|
665 |
-
#: class.php:
|
666 |
msgid "ip addresses='%s' type='%s'"
|
667 |
msgstr ""
|
668 |
|
669 |
-
#: class.php:
|
670 |
msgid "viewport='%s' type='%s'"
|
671 |
msgstr ""
|
672 |
|
673 |
-
#: class.php:
|
674 |
msgid "BEFORE"
|
675 |
msgstr ""
|
676 |
|
677 |
-
#: class.php:
|
678 |
msgid "PREPEND CONTENT"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: class.php:
|
682 |
msgid "APPEND CONTENT"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: class.php:
|
686 |
msgid "REPLACE CONTENT"
|
687 |
msgstr ""
|
688 |
|
689 |
-
#: class.php:
|
690 |
msgid "REPLACE ELEMENT"
|
691 |
msgstr ""
|
692 |
|
693 |
-
#: class.php:
|
694 |
msgid "AFTER"
|
695 |
msgstr ""
|
696 |
|
697 |
-
#: class.php:
|
698 |
msgid "Code"
|
699 |
msgstr ""
|
700 |
|
701 |
-
#: class.php:
|
702 |
msgid "for block"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: class.php:
|
706 |
msgctxt "category name"
|
707 |
msgid "Uncategorized"
|
708 |
msgstr ""
|
709 |
|
710 |
-
#: class.php:
|
711 |
msgid ""
|
712 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
713 |
"extension for PHP."
|
@@ -723,7 +727,7 @@ msgid "Reset"
|
|
723 |
msgstr ""
|
724 |
|
725 |
#: includes/editor.php:9 includes/placeholders.php:354
|
726 |
-
#: includes/preview.php:1991 settings.php:
|
727 |
msgid "Cancel"
|
728 |
msgstr ""
|
729 |
|
@@ -738,7 +742,7 @@ msgid ""
|
|
738 |
"blockers."
|
739 |
msgstr ""
|
740 |
|
741 |
-
#: includes/editor.php:264 settings.php:
|
742 |
msgid "Error loading page"
|
743 |
msgstr ""
|
744 |
|
@@ -814,7 +818,7 @@ msgid ""
|
|
814 |
msgstr ""
|
815 |
|
816 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
817 |
-
#: includes/functions.php:450 settings.php:
|
818 |
msgid "Open HTML element selector"
|
819 |
msgstr ""
|
820 |
|
@@ -860,7 +864,7 @@ msgstr ""
|
|
860 |
|
861 |
#: includes/functions-check-now.php:519 includes/functions-check-now.php:3035
|
862 |
#: includes/functions.old.php:508 includes/functions.old.php:2960
|
863 |
-
#: includes/functions.php:518 includes/functions.php:
|
864 |
msgid "Toggle Statistics"
|
865 |
msgstr ""
|
866 |
|
@@ -887,7 +891,7 @@ msgid "%s license overused. Continue?"
|
|
887 |
msgstr ""
|
888 |
|
889 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
890 |
-
#: includes/functions.php:558 settings.php:
|
891 |
msgid "Save Settings"
|
892 |
msgstr ""
|
893 |
|
@@ -984,8 +988,8 @@ msgid "Double click to toggle controls in public reports"
|
|
984 |
msgstr ""
|
985 |
|
986 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
987 |
-
#: includes/functions.php:789 settings.php:
|
988 |
-
#: settings.php:
|
989 |
msgid "Loading..."
|
990 |
msgstr ""
|
991 |
|
@@ -1162,7 +1166,7 @@ msgstr ""
|
|
1162 |
|
1163 |
#: includes/functions-check-now.php:957 includes/functions-check-now.php:3000
|
1164 |
#: includes/functions.old.php:938 includes/functions.old.php:2925
|
1165 |
-
#: includes/functions.php:968 includes/functions.php:
|
1166 |
msgid "Toggle country editor"
|
1167 |
msgstr ""
|
1168 |
|
@@ -1173,7 +1177,7 @@ msgstr ""
|
|
1173 |
|
1174 |
#: includes/functions-check-now.php:964 includes/functions-check-now.php:3003
|
1175 |
#: includes/functions.old.php:945 includes/functions.old.php:2928
|
1176 |
-
#: includes/functions.php:975 includes/functions.php:
|
1177 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1178 |
msgstr ""
|
1179 |
|
@@ -1325,7 +1329,7 @@ msgid "Geolocation"
|
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1328 |
-
#: includes/functions.php:2394 settings.php:
|
1329 |
msgid "Exceptions"
|
1330 |
msgstr ""
|
1331 |
|
@@ -1335,7 +1339,7 @@ msgid "Multisite"
|
|
1335 |
msgstr ""
|
1336 |
|
1337 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1338 |
-
#: includes/functions.php:2404 settings.php:
|
1339 |
msgid "Tracking"
|
1340 |
msgstr ""
|
1341 |
|
@@ -1358,8 +1362,8 @@ msgid "Expired"
|
|
1358 |
msgstr ""
|
1359 |
|
1360 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1361 |
-
#: includes/functions.php:2474 settings.php:
|
1362 |
-
#: settings.php:
|
1363 |
msgid "and"
|
1364 |
msgstr ""
|
1365 |
|
@@ -1409,13 +1413,13 @@ msgid "Preview iframe code"
|
|
1409 |
msgstr ""
|
1410 |
|
1411 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1412 |
-
#: includes/functions.php:2518 includes/preview.php:2000 settings.php:
|
1413 |
-
#: settings.php:
|
1414 |
msgid "Preview"
|
1415 |
msgstr ""
|
1416 |
|
1417 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1418 |
-
#: includes/functions.php:2532 settings.php:
|
1419 |
msgid "Limits"
|
1420 |
msgstr ""
|
1421 |
|
@@ -1423,7 +1427,7 @@ msgstr ""
|
|
1423 |
#: includes/functions-check-now.php:4429 includes/functions.old.php:2393
|
1424 |
#: includes/functions.old.php:4266 includes/functions.old.php:4329
|
1425 |
#: includes/functions.php:2537 includes/functions.php:4519
|
1426 |
-
#: includes/functions.php:4582 settings.php:
|
1427 |
msgid "Ad Blocking"
|
1428 |
msgstr ""
|
1429 |
|
@@ -1488,7 +1492,7 @@ msgstr ""
|
|
1488 |
#: includes/functions.php:2664 includes/functions.php:2674
|
1489 |
#: includes/functions.php:2693 includes/functions.php:2703
|
1490 |
#: includes/functions.php:2749 includes/functions.php:2758
|
1491 |
-
#: includes/functions.php:2776 includes/functions.php:2785 settings.php:
|
1492 |
msgid "Max"
|
1493 |
msgstr ""
|
1494 |
|
@@ -1552,7 +1556,7 @@ msgstr ""
|
|
1552 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1553 |
#: includes/functions.php:2684 includes/functions.php:2713
|
1554 |
#: includes/functions.php:2768 includes/functions.php:2795
|
1555 |
-
#: includes/functions.php:2901 includes/functions.php:
|
1556 |
#: strings.php:202 strings.php:203 strings.php:204 strings.php:205
|
1557 |
#: strings.php:206
|
1558 |
msgid "day"
|
@@ -1742,39 +1746,39 @@ msgstr ""
|
|
1742 |
|
1743 |
#. Translators: %s MaxMind
|
1744 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1745 |
-
#: includes/functions.php:
|
1746 |
msgid "This product includes GeoLite2 data created by %s"
|
1747 |
msgstr ""
|
1748 |
|
1749 |
#: includes/functions-check-now.php:2946 includes/functions.old.php:2871
|
1750 |
-
#: includes/functions.php:
|
1751 |
msgid "IP geolocation database"
|
1752 |
msgstr ""
|
1753 |
|
1754 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1755 |
-
#: includes/functions.php:
|
1756 |
msgid "Select IP geolocation database."
|
1757 |
msgstr ""
|
1758 |
|
1759 |
#: includes/functions-check-now.php:2960 includes/functions.old.php:2885
|
1760 |
-
#: includes/functions.php:
|
1761 |
msgid "Automatic database updates"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1765 |
-
#: includes/functions.php:
|
1766 |
msgid ""
|
1767 |
"Automatically download and update free GeoLite2 IP geolocation database by "
|
1768 |
"MaxMind"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
#: includes/functions-check-now.php:2971 includes/functions.old.php:2896
|
1772 |
-
#: includes/functions.php:
|
1773 |
msgid "Database"
|
1774 |
msgstr ""
|
1775 |
|
1776 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1777 |
-
#: includes/functions.php:
|
1778 |
msgid ""
|
1779 |
"Aabsolute path starting with '/' or relative path to the MaxMind database "
|
1780 |
"file"
|
@@ -1782,121 +1786,121 @@ msgstr ""
|
|
1782 |
|
1783 |
#. translators: %d: group number
|
1784 |
#: includes/functions-check-now.php:2992 includes/functions.old.php:2917
|
1785 |
-
#: includes/functions.php:
|
1786 |
msgid "Group %d"
|
1787 |
msgstr ""
|
1788 |
|
1789 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1790 |
-
#: includes/functions.php:
|
1791 |
msgid "countries"
|
1792 |
msgstr ""
|
1793 |
|
1794 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1795 |
-
#: includes/functions.php:
|
1796 |
msgid ""
|
1797 |
"Enable impression and click tracking. You also need to enable tracking for "
|
1798 |
"each block you want to track."
|
1799 |
msgstr ""
|
1800 |
|
1801 |
#: includes/functions-check-now.php:3050 includes/functions.old.php:2975
|
1802 |
-
#: includes/functions.php:
|
1803 |
msgid "Generate report"
|
1804 |
msgstr ""
|
1805 |
|
1806 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1807 |
-
#: includes/functions.php:
|
1808 |
msgid "Impression and Click Tracking"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
#: includes/functions-check-now.php:3059 includes/functions.old.php:2984
|
1812 |
-
#: includes/functions.php:
|
1813 |
msgctxt "ad blocking detection"
|
1814 |
msgid "NOT ENABLED"
|
1815 |
msgstr ""
|
1816 |
|
1817 |
#: includes/functions-check-now.php:3075 includes/functions.old.php:3000
|
1818 |
-
#: includes/functions.php:
|
1819 |
msgid "Internal"
|
1820 |
msgstr ""
|
1821 |
|
1822 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1823 |
-
#: includes/functions.php:
|
1824 |
msgid "Track impressions and clicks with internal tracking and statistics"
|
1825 |
msgstr ""
|
1826 |
|
1827 |
#: includes/functions-check-now.php:3084 includes/functions.old.php:3009
|
1828 |
-
#: includes/functions.php:
|
1829 |
msgid "External"
|
1830 |
msgstr ""
|
1831 |
|
1832 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1833 |
-
#: includes/functions.php:
|
1834 |
msgid ""
|
1835 |
"Track impressions and clicks with Google Analytics or Matomo (needs tracking "
|
1836 |
"code installed)"
|
1837 |
msgstr ""
|
1838 |
|
1839 |
#: includes/functions-check-now.php:3093 includes/functions.old.php:3018
|
1840 |
-
#: includes/functions.php:
|
1841 |
msgid "Track Pageviews"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1845 |
-
#: includes/functions.php:
|
1846 |
msgid "Track Pageviews by Device (as configured for viewports)"
|
1847 |
msgstr ""
|
1848 |
|
1849 |
#: includes/functions-check-now.php:3109 includes/functions.old.php:3034
|
1850 |
-
#: includes/functions.php:
|
1851 |
msgid "Track for Logged in Users"
|
1852 |
msgstr ""
|
1853 |
|
1854 |
#: includes/functions-check-now.php:3115 includes/functions.old.php:3040
|
1855 |
-
#: includes/functions.php:
|
1856 |
msgid "Track impressions and clicks from logged in users"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
#: includes/functions-check-now.php:3125 includes/functions.old.php:3050
|
1860 |
-
#: includes/functions.php:
|
1861 |
msgid "Click Detection"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1865 |
-
#: includes/functions.php:
|
1866 |
msgid ""
|
1867 |
"Standard method detects clicks only on banners with links, Advanced method "
|
1868 |
"can detect clicks on any kind of ads, but it is slightly less accurate"
|
1869 |
msgstr ""
|
1870 |
|
1871 |
#: includes/functions-check-now.php:3150 includes/functions.old.php:3075
|
1872 |
-
#: includes/functions.php:
|
1873 |
msgid "Click fraud protection"
|
1874 |
msgstr ""
|
1875 |
|
1876 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1877 |
-
#: includes/functions.php:
|
1878 |
msgid "Globally enable click fraud protection for selected blocks."
|
1879 |
msgstr ""
|
1880 |
|
1881 |
#: includes/functions-check-now.php:3160 includes/functions.old.php:3085
|
1882 |
-
#: includes/functions.php:
|
1883 |
msgid "Protection time"
|
1884 |
msgstr ""
|
1885 |
|
1886 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1887 |
-
#: includes/functions.php:
|
1888 |
msgid ""
|
1889 |
"Time period in days in which blocks with enabled click fraud protection will "
|
1890 |
"be hidden. Use decimal value (with decimal point) for shorter periods."
|
1891 |
msgstr ""
|
1892 |
|
1893 |
#: includes/functions-check-now.php:3180 includes/functions.old.php:3105
|
1894 |
-
#: includes/functions.php:
|
1895 |
msgid "Report header image"
|
1896 |
msgstr ""
|
1897 |
|
1898 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1899 |
-
#: includes/functions.php:
|
1900 |
msgid ""
|
1901 |
"Image or logo to be displayed in the header of the statistins report. "
|
1902 |
"Aabsolute path starting with '/' or relative path to the image file. Clear "
|
@@ -1904,177 +1908,177 @@ msgid ""
|
|
1904 |
msgstr ""
|
1905 |
|
1906 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
1907 |
-
#: includes/functions.php:
|
1908 |
msgid "Select or upload header image"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
#: includes/functions-check-now.php:3189 includes/functions.old.php:3114
|
1912 |
-
#: includes/functions.php:
|
1913 |
msgid "Report header title"
|
1914 |
msgstr ""
|
1915 |
|
1916 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
1917 |
-
#: includes/functions.php:
|
1918 |
msgid ""
|
1919 |
"Title to be displayed in the header of the statistics report. Text or HTML "
|
1920 |
"code, clear to reset to default text."
|
1921 |
msgstr ""
|
1922 |
|
1923 |
#: includes/functions-check-now.php:3197 includes/functions.old.php:3122
|
1924 |
-
#: includes/functions.php:
|
1925 |
msgid "Report header description"
|
1926 |
msgstr ""
|
1927 |
|
1928 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
1929 |
-
#: includes/functions.php:
|
1930 |
msgid ""
|
1931 |
"Description to be displayed in the header of the statistics report. Text or "
|
1932 |
"HTML code, clear to reset to default text."
|
1933 |
msgstr ""
|
1934 |
|
1935 |
#: includes/functions-check-now.php:3205 includes/functions.old.php:3130
|
1936 |
-
#: includes/functions.php:
|
1937 |
msgid "Report footer"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
1941 |
-
#: includes/functions.php:
|
1942 |
msgid ""
|
1943 |
"Text to be displayed in the footer of the statistics report. Clear to reset "
|
1944 |
"to default text."
|
1945 |
msgstr ""
|
1946 |
|
1947 |
#: includes/functions-check-now.php:3213 includes/functions.old.php:3138
|
1948 |
-
#: includes/functions.php:
|
1949 |
msgid "Public report key"
|
1950 |
msgstr ""
|
1951 |
|
1952 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
1953 |
-
#: includes/functions.php:
|
1954 |
msgid "String to generate unique report IDs. Clear to reset to default value."
|
1955 |
msgstr ""
|
1956 |
|
1957 |
#: includes/functions-check-now.php:3248 includes/functions.old.php:3173
|
1958 |
-
#: includes/functions.php:
|
1959 |
msgid "Are you sure you want to clear all exceptions for block"
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: includes/functions-check-now.php:3249 includes/functions.old.php:3174
|
1963 |
-
#: includes/functions.php:
|
1964 |
msgid "Clear all exceptions for block"
|
1965 |
msgstr ""
|
1966 |
|
1967 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1968 |
-
#: includes/functions.php:
|
1969 |
msgid "Are you sure you want to clear all exceptions?"
|
1970 |
msgstr ""
|
1971 |
|
1972 |
#: includes/functions-check-now.php:3256 includes/functions.old.php:3181
|
1973 |
-
#: includes/functions.php:
|
1974 |
msgid "Clear all exceptions for all blocks"
|
1975 |
msgstr ""
|
1976 |
|
1977 |
#: includes/functions-check-now.php:3261 includes/functions.old.php:3186
|
1978 |
-
#: includes/functions.php:
|
1979 |
msgid "Type"
|
1980 |
msgstr ""
|
1981 |
|
1982 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
1983 |
-
#: includes/functions.php:
|
1984 |
msgid "View"
|
1985 |
msgstr ""
|
1986 |
|
1987 |
#: includes/functions-check-now.php:3280 includes/functions-check-now.php:3287
|
1988 |
#: includes/functions-check-now.php:3291 includes/functions.old.php:3205
|
1989 |
#: includes/functions.old.php:3212 includes/functions.old.php:3216
|
1990 |
-
#: includes/functions.php:
|
1991 |
-
#: includes/functions.php:
|
1992 |
-
#: includes/preview.php:2306 settings.php:
|
1993 |
msgid "Edit"
|
1994 |
msgstr ""
|
1995 |
|
1996 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
1997 |
-
#: includes/functions.php:
|
1998 |
msgid "Are you sure you want to clear all exceptions for"
|
1999 |
msgstr ""
|
2000 |
|
2001 |
#: includes/functions-check-now.php:3311 includes/functions.old.php:3236
|
2002 |
-
#: includes/functions.php:
|
2003 |
msgid "Clear all exceptions for"
|
2004 |
msgstr ""
|
2005 |
|
2006 |
#: includes/functions-check-now.php:3324 includes/functions.old.php:3249
|
2007 |
-
#: includes/functions.php:
|
2008 |
msgid "No exceptions"
|
2009 |
msgstr ""
|
2010 |
|
2011 |
#. translators: %s: Ad Inserter Pro
|
2012 |
#: includes/functions-check-now.php:3335 includes/functions.old.php:3260
|
2013 |
-
#: includes/functions.php:
|
2014 |
msgid "%s options for network blogs"
|
2015 |
msgstr ""
|
2016 |
|
2017 |
#. translators: %s: Ad Inserter Pro
|
2018 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2019 |
-
#: includes/functions.php:
|
2020 |
msgid "Enable %s widgets for sub-sites"
|
2021 |
msgstr ""
|
2022 |
|
2023 |
#: includes/functions-check-now.php:3340 includes/functions.old.php:3265
|
2024 |
-
#: includes/functions.php:
|
2025 |
msgid "Widgets"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2029 |
-
#: includes/functions.php:
|
2030 |
msgid "Enable PHP code processing for sub-sites"
|
2031 |
msgstr ""
|
2032 |
|
2033 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2034 |
-
#: includes/functions.php:
|
2035 |
msgid "PHP Processing"
|
2036 |
msgstr ""
|
2037 |
|
2038 |
#. translators: %s: Ad Inserter Pro
|
2039 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2040 |
-
#: includes/functions.php:
|
2041 |
msgid "Enable %s block exceptions in post/page editor for sub-sites"
|
2042 |
msgstr ""
|
2043 |
|
2044 |
#: includes/functions-check-now.php:3350 includes/functions.old.php:3275
|
2045 |
-
#: includes/functions.php:
|
2046 |
msgid "Post/Page exceptions"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
#. translators: %s: Ad Inserter Pro
|
2050 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2051 |
-
#: includes/functions.php:
|
2052 |
msgid "Enable %s settings page for sub-sites"
|
2053 |
msgstr ""
|
2054 |
|
2055 |
#: includes/functions-check-now.php:3355 includes/functions.old.php:3280
|
2056 |
-
#: includes/functions.php:
|
2057 |
msgid "Settings page"
|
2058 |
msgstr ""
|
2059 |
|
2060 |
#. translators: %s: Ad Inserter Pro
|
2061 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2062 |
-
#: includes/functions.php:
|
2063 |
msgid "Enable %s settings of main site to be used for all blogs"
|
2064 |
msgstr ""
|
2065 |
|
2066 |
#: includes/functions-check-now.php:3360 includes/functions.old.php:3285
|
2067 |
-
#: includes/functions.php:
|
2068 |
msgid "Main site settings used for all blogs"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
#: includes/functions-check-now.php:3371 includes/functions.old.php:3296
|
2072 |
-
#: includes/functions.php:
|
2073 |
msgid "Ad Blocking Detection"
|
2074 |
msgstr ""
|
2075 |
|
2076 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2077 |
-
#: includes/functions.php:
|
2078 |
msgid ""
|
2079 |
"Standard method is reliable but should be used only if Advanced method does "
|
2080 |
"not work. Advanced method recreates files used for detection with random "
|
@@ -2085,7 +2089,7 @@ msgstr ""
|
|
2085 |
#: includes/functions-check-now.php:4029 includes/functions-check-now.php:4119
|
2086 |
#: includes/functions-check-now.php:4139 includes/functions.old.php:3929
|
2087 |
#: includes/functions.old.php:4019 includes/functions.old.php:4039
|
2088 |
-
#: includes/functions.php:
|
2089 |
#: includes/functions.php:4292
|
2090 |
msgid "AD BLOCKING"
|
2091 |
msgstr ""
|
@@ -2094,7 +2098,7 @@ msgstr ""
|
|
2094 |
#: includes/functions-check-now.php:4113 includes/functions-check-now.php:4140
|
2095 |
#: includes/functions.old.php:3930 includes/functions.old.php:3970
|
2096 |
#: includes/functions.old.php:4013 includes/functions.old.php:4040
|
2097 |
-
#: includes/functions.php:
|
2098 |
#: includes/functions.php:4266 includes/functions.php:4293
|
2099 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2100 |
msgstr ""
|
@@ -2102,14 +2106,14 @@ msgstr ""
|
|
2102 |
#: includes/functions-check-now.php:4033 includes/functions-check-now.php:4112
|
2103 |
#: includes/functions-check-now.php:4146 includes/functions.old.php:3933
|
2104 |
#: includes/functions.old.php:4012 includes/functions.old.php:4046
|
2105 |
-
#: includes/functions.php:
|
2106 |
#: includes/functions.php:4299
|
2107 |
msgid "NO AD BLOCKING"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
#: includes/functions-check-now.php:4069 includes/functions-check-now.php:4076
|
2111 |
#: includes/functions.old.php:3969 includes/functions.old.php:3976
|
2112 |
-
#: includes/functions.php:
|
2113 |
msgid "AD BLOCKING REPLACEMENT"
|
2114 |
msgstr ""
|
2115 |
|
@@ -2265,9 +2269,9 @@ msgstr ""
|
|
2265 |
msgid "Invalid %s version. Continue?"
|
2266 |
msgstr ""
|
2267 |
|
2268 |
-
#: includes/functions.php:944 includes/functions.php:980 settings.php:
|
2269 |
-
#: settings.php:
|
2270 |
-
#: settings.php:
|
2271 |
msgid "Click to select black or white list"
|
2272 |
msgstr ""
|
2273 |
|
@@ -2318,12 +2322,12 @@ msgid "Select wanted days in week"
|
|
2318 |
msgstr ""
|
2319 |
|
2320 |
#. translators: %s: Ad Inserter Pro
|
2321 |
-
#: includes/functions.php:
|
2322 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2323 |
msgstr ""
|
2324 |
|
2325 |
#. translators: %s: Ad Inserter Pro
|
2326 |
-
#: includes/functions.php:
|
2327 |
msgid "Show link to %s on the Sites page"
|
2328 |
msgstr ""
|
2329 |
|
@@ -2351,7 +2355,7 @@ msgstr ""
|
|
2351 |
msgid "Placeholder"
|
2352 |
msgstr ""
|
2353 |
|
2354 |
-
#: includes/placeholders.php:363 settings.php:
|
2355 |
msgid "Size"
|
2356 |
msgstr ""
|
2357 |
|
@@ -2459,11 +2463,11 @@ msgstr ""
|
|
2459 |
msgid "Ad Blocking Detected Message Preview"
|
2460 |
msgstr ""
|
2461 |
|
2462 |
-
#: includes/preview-adb.php:348 settings.php:
|
2463 |
msgid "Message CSS"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
-
#: includes/preview-adb.php:353 settings.php:
|
2467 |
msgid "Overlay CSS"
|
2468 |
msgstr ""
|
2469 |
|
@@ -2499,7 +2503,7 @@ msgstr ""
|
|
2499 |
msgid "background"
|
2500 |
msgstr ""
|
2501 |
|
2502 |
-
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:
|
2503 |
msgid "Alignment"
|
2504 |
msgstr ""
|
2505 |
|
@@ -2597,454 +2601,454 @@ msgid ""
|
|
2597 |
"the values to those of the current block."
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#: settings.php:
|
2601 |
msgid ""
|
2602 |
"Settings for individual exceptions have been updated. Please check all "
|
2603 |
"blocks that have exceptions and and then save settings."
|
2604 |
msgstr ""
|
2605 |
|
2606 |
-
#: settings.php:
|
2607 |
msgid "Online documentation"
|
2608 |
msgstr ""
|
2609 |
|
2610 |
-
#: settings.php:
|
2611 |
msgid "Show AdSense ad units"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
-
#: settings.php:
|
2615 |
msgid "Edit ads.txt file"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#: settings.php:
|
2619 |
msgid "Check theme for available positions for automatic insertion"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#: settings.php:
|
2623 |
msgid "List all blocks"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
-
#: settings.php:
|
2627 |
msgid "Loaded plugin JavaScript file version"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
#. translators: %s: HTML tags
|
2631 |
-
#: settings.php:
|
2632 |
msgid ""
|
2633 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2634 |
"due to inappropriate caching."
|
2635 |
msgstr ""
|
2636 |
|
2637 |
-
#: settings.php:
|
2638 |
msgid ""
|
2639 |
"Missing version parameter of the JavaScript file, probably due to "
|
2640 |
"inappropriate caching."
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#: settings.php:
|
2644 |
msgid ""
|
2645 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2646 |
"caching."
|
2647 |
msgstr ""
|
2648 |
|
2649 |
-
#: settings.php:
|
2650 |
msgid ""
|
2651 |
"Please delete browser's cache and all other caches used and then reload this "
|
2652 |
"page."
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#: settings.php:
|
2656 |
msgid "Loaded plugin CSS file version"
|
2657 |
msgstr ""
|
2658 |
|
2659 |
#. translators: %s: HTML tags
|
2660 |
-
#: settings.php:
|
2661 |
msgid ""
|
2662 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2663 |
"inappropriate caching."
|
2664 |
msgstr ""
|
2665 |
|
2666 |
-
#: settings.php:
|
2667 |
msgid ""
|
2668 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2669 |
"caching."
|
2670 |
msgstr ""
|
2671 |
|
2672 |
-
#: settings.php:
|
2673 |
msgid ""
|
2674 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2675 |
msgstr ""
|
2676 |
|
2677 |
-
#: settings.php:
|
2678 |
msgid "WARNING"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
#. translators: %s: HTML tags
|
2682 |
-
#: settings.php:
|
2683 |
msgid "Page may %s not be loaded properly. %s"
|
2684 |
msgstr ""
|
2685 |
|
2686 |
-
#: settings.php:
|
2687 |
msgid ""
|
2688 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2689 |
msgstr ""
|
2690 |
|
2691 |
-
#: settings.php:
|
2692 |
msgid "SAFE MODE"
|
2693 |
msgstr ""
|
2694 |
|
2695 |
#. translators: %s: HTML tags
|
2696 |
-
#: settings.php:
|
2697 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#: settings.php:
|
2701 |
msgid ""
|
2702 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2703 |
"Debugging"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
-
#: settings.php:
|
2707 |
msgid "Debugging functions enabled - some code is not inserted"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
-
#: settings.php:
|
2711 |
msgid "Group name"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
-
#: settings.php:
|
2715 |
msgid "Option name"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#: settings.php:
|
2719 |
msgid "Share"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
-
#: settings.php:
|
2723 |
msgid ""
|
2724 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2725 |
"option is not defined it will be calculated automatically. Leave all share "
|
2726 |
"fields empty for equal option shares."
|
2727 |
msgstr ""
|
2728 |
|
2729 |
-
#: settings.php:
|
2730 |
msgid "Time"
|
2731 |
msgstr ""
|
2732 |
|
2733 |
-
#: settings.php:
|
2734 |
msgid ""
|
2735 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2736 |
"Leave all time fields empty for no timed rotation."
|
2737 |
msgstr ""
|
2738 |
|
2739 |
-
#: settings.php:
|
2740 |
msgid "General Settings"
|
2741 |
msgstr ""
|
2742 |
|
2743 |
-
#: settings.php:
|
2744 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
-
#: settings.php:
|
2748 |
msgid "Toggle tools"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
-
#: settings.php:
|
2752 |
msgid "Process PHP code in block"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
-
#: settings.php:
|
2756 |
msgid "Disable insertion of this block"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#: settings.php:
|
2760 |
msgid "Toggle code generator"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#: settings.php:
|
2764 |
msgid "Toggle rotation editor"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#: settings.php:
|
2768 |
msgid "Open visual HTML editor"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#: settings.php:
|
2772 |
msgid "Clear block"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
-
#: settings.php:
|
2776 |
msgid "Copy block"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
-
#: settings.php:
|
2780 |
msgid "Paste name"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
-
#: settings.php:
|
2784 |
msgid "Paste code"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
-
#: settings.php:
|
2788 |
msgid "Paste settings"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
-
#: settings.php:
|
2792 |
msgid "Paste block (name, code and settings)"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#: settings.php:
|
2796 |
msgid "Rotation groups"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#: settings.php:
|
2800 |
msgid "Remove option"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#: settings.php:
|
2804 |
msgid "Add option"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#: settings.php:
|
2808 |
msgid "Import code"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#: settings.php:
|
2812 |
msgid "Generate code"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#: settings.php:
|
2816 |
msgid "Banner"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
#: settings.php:
|
2820 |
msgid "Image"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
-
#: settings.php:
|
2824 |
msgid "Link"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
-
#: settings.php:
|
2828 |
msgid "Open link in a new tab"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
-
#: settings.php:
|
2832 |
msgid "Select Image"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
-
#: settings.php:
|
2836 |
msgid "Select Placeholder"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
-
#: settings.php:
|
2840 |
msgid "Comment"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
-
#: settings.php:
|
2844 |
msgctxt "AdSense"
|
2845 |
msgid "Publisher ID"
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#: settings.php:
|
2849 |
msgctxt "AdSense"
|
2850 |
msgid "Ad Slot ID"
|
2851 |
msgstr ""
|
2852 |
|
2853 |
-
#: settings.php:
|
2854 |
msgid "Ad Type"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
-
#: settings.php:
|
2858 |
msgid "AMP Ad"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
-
#: settings.php:
|
2862 |
msgid "Show ad units from your AdSense account"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
-
#: settings.php:
|
2866 |
msgid "AdSense ad units"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
-
#: settings.php:
|
2870 |
msgctxt "AdSense"
|
2871 |
msgid "Layout"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#: settings.php:
|
2875 |
msgctxt "AdSense"
|
2876 |
msgid "Layout Key"
|
2877 |
msgstr ""
|
2878 |
|
2879 |
-
#: settings.php:
|
2880 |
msgid "Full width"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
-
#: settings.php:
|
2884 |
msgctxt "Full width"
|
2885 |
msgid "Enabled"
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: settings.php:
|
2889 |
msgctxt "Full width"
|
2890 |
msgid "Disabled"
|
2891 |
msgstr ""
|
2892 |
|
2893 |
-
#: settings.php:
|
2894 |
msgid ""
|
2895 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2896 |
"Cookie or Referer (domain)"
|
2897 |
msgstr ""
|
2898 |
|
2899 |
-
#: settings.php:
|
2900 |
msgid "Lists"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
-
#: settings.php:
|
2904 |
msgid "Widget, Shortcode and PHP function call"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
-
#: settings.php:
|
2908 |
msgid "Manual"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
-
#: settings.php:
|
2912 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
-
#: settings.php:
|
2916 |
msgid "Devices"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
-
#: settings.php:
|
2920 |
msgid ""
|
2921 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2922 |
"feeds), Filter, Scheduling, General tag"
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#: settings.php:
|
2926 |
msgid "Misc"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
-
#: settings.php:
|
2930 |
msgid "Preview code and alignment"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
-
#: settings.php:
|
2934 |
msgid ""
|
2935 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2936 |
"editor is active before saving settings."
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#: settings.php:
|
2940 |
msgid "Enable insertion on posts"
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#: settings.php:
|
2944 |
msgid "Posts"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#: settings.php:
|
2948 |
msgid ""
|
2949 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2950 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2951 |
"theme)"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: settings.php:
|
2955 |
msgid "Homepage"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: settings.php:
|
2959 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: settings.php:
|
2963 |
msgid "Category pages"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: settings.php:
|
2967 |
msgid "Enable insertion on static pages"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: settings.php:
|
2971 |
msgid "Static pages"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: settings.php:
|
2975 |
msgid "Enable insertion on search blog pages"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: settings.php:
|
2979 |
msgid "Search pages"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: settings.php:
|
2983 |
msgid "Enable insertion on tag or archive blog pages"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: settings.php:
|
2987 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: settings.php:
|
2991 |
msgid ""
|
2992 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
2993 |
"be configured on the individual post/page editor page (in the settings below "
|
2994 |
"the editor)."
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#: settings.php:
|
2998 |
msgid ""
|
2999 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3000 |
"enabled they can be configured on the individual post/page editor page (in "
|
3001 |
"the settings below the editor)."
|
3002 |
msgstr ""
|
3003 |
|
3004 |
-
#: settings.php:
|
3005 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
#. Translators: Enabled means...
|
3009 |
-
#: settings.php:
|
3010 |
msgid ""
|
3011 |
"means the insertion for this block is enabled by default and disabled for "
|
3012 |
"exceptions."
|
3013 |
msgstr ""
|
3014 |
|
3015 |
#. Translators: Disabled means...
|
3016 |
-
#: settings.php:
|
3017 |
msgid ""
|
3018 |
"means the insertion for this block is disabled by default and enabled for "
|
3019 |
"exceptions."
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: settings.php:
|
3023 |
msgid ""
|
3024 |
"When individual post/page exceptions are enabled they can be configured on "
|
3025 |
"the individual post/page editor page (in the settings below the editor)."
|
3026 |
msgstr ""
|
3027 |
|
3028 |
-
#: settings.php:
|
3029 |
msgid ""
|
3030 |
"No exception for post or static page defined. Block will not be inserted."
|
3031 |
msgstr ""
|
3032 |
|
3033 |
-
#: settings.php:
|
3034 |
msgctxt "post"
|
3035 |
msgid "Type"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
#. translators: %d: block number
|
3039 |
-
#: settings.php:
|
3040 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
3041 |
msgstr ""
|
3042 |
|
3043 |
-
#: settings.php:
|
3044 |
msgid "Insertion"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
-
#: settings.php:
|
3048 |
msgid ""
|
3049 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3050 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
@@ -3054,7 +3058,7 @@ msgid ""
|
|
3054 |
"negative number means counting from the opposite direction"
|
3055 |
msgstr ""
|
3056 |
|
3057 |
-
#: settings.php:
|
3058 |
msgid ""
|
3059 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3060 |
"means every N images, empty means all images, 0 means random image, value "
|
@@ -3064,285 +3068,285 @@ msgid ""
|
|
3064 |
"direction"
|
3065 |
msgstr ""
|
3066 |
|
3067 |
-
#: settings.php:
|
3068 |
msgid ""
|
3069 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3070 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3071 |
msgstr ""
|
3072 |
|
3073 |
-
#: settings.php:
|
3074 |
msgid ""
|
3075 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3076 |
"numbers, %N means every N posts, empty means all posts"
|
3077 |
msgstr ""
|
3078 |
|
3079 |
-
#: settings.php:
|
3080 |
msgid ""
|
3081 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3082 |
"numbers, %N means every N comments, empty means all comments"
|
3083 |
msgstr ""
|
3084 |
|
3085 |
-
#: settings.php:
|
3086 |
msgid "Toggle paragraph counting settings"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
-
#: settings.php:
|
3090 |
msgid "Toggle paragraph clearance settings"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: settings.php:
|
3094 |
msgid "Toggle insertion filter settings"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#: settings.php:
|
3098 |
msgid "Toggle insertion and alignment icons"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
-
#: settings.php:
|
3102 |
msgid "Custom CSS code for the wrapping div"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
-
#: settings.php:
|
3106 |
-
#: settings.php:
|
3107 |
msgid "CSS code for the wrapping div, click to edit"
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: settings.php:
|
3111 |
msgid "HTML element"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: settings.php:
|
3115 |
msgid "HTML element selector or comma separated list of selectors"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: settings.php:
|
3119 |
msgid "Action"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: settings.php:
|
3123 |
msgid ""
|
3124 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3125 |
"Server-side insertion inserts block when the page is generated but needs "
|
3126 |
"Output buffering enabled."
|
3127 |
msgstr ""
|
3128 |
|
3129 |
-
#: settings.php:
|
3130 |
msgid "Code position"
|
3131 |
msgstr ""
|
3132 |
|
3133 |
-
#: settings.php:
|
3134 |
msgid ""
|
3135 |
"Page position where the code for client-side insertion will be inserted."
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: settings.php:
|
3139 |
msgid "Count"
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: settings.php:
|
3143 |
msgid "paragraphs with tags"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: settings.php:
|
3147 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: settings.php:
|
3151 |
msgid "that have between"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: settings.php:
|
3155 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: settings.php:
|
3159 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: settings.php:
|
3163 |
msgid "words"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: settings.php:
|
3167 |
msgid "Comma separated texts"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
-
#: settings.php:
|
3171 |
msgid ""
|
3172 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3173 |
"settings page - tab [*] / tab General"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
#. Translators: %s: HTML tags
|
3177 |
-
#: settings.php:
|
3178 |
msgid "Count inside %s elements"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
#. translators: inside [HTML tags] elements that contain
|
3182 |
-
#: settings.php:
|
3183 |
msgid "inside"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
-
#: settings.php:
|
3187 |
msgid "Comma separated HTML tag names of container elements"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
#. translators: inside [HTML tags] elements that contain
|
3191 |
-
#: settings.php:
|
3192 |
msgid "elements that"
|
3193 |
msgstr ""
|
3194 |
|
3195 |
-
#: settings.php:
|
3196 |
msgid "Post/Static page must have between"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
-
#: settings.php:
|
3200 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
-
#: settings.php:
|
3204 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3208 |
-
#: settings.php:
|
3209 |
msgid "paragraph"
|
3210 |
msgid_plural "paragraphs"
|
3211 |
msgstr[0] ""
|
3212 |
msgstr[1] ""
|
3213 |
|
3214 |
-
#: settings.php:
|
3215 |
msgid "Minimum number of words in paragraphs above"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
-
#: settings.php:
|
3219 |
msgid ""
|
3220 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3221 |
"numbers"
|
3222 |
msgstr ""
|
3223 |
|
3224 |
-
#: settings.php:
|
3225 |
msgid "In"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
-
#: settings.php:
|
3229 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: settings.php:
|
3233 |
msgid "paragraphs above avoid"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: settings.php:
|
3237 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
-
#: settings.php:
|
3241 |
msgid "paragraphs below avoid"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
-
#: settings.php:
|
3245 |
msgid "If text is found"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
-
#: settings.php:
|
3249 |
msgid "check up to"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
-
#: settings.php:
|
3253 |
msgctxt "check up to"
|
3254 |
msgid "paragraphs"
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: settings.php:
|
3258 |
msgid "Categories"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
-
#: settings.php:
|
3262 |
msgid "Toggle category editor"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
-
#: settings.php:
|
3266 |
msgid "Comma separated category slugs"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
-
#: settings.php:
|
3270 |
msgid "Blacklist categories"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
-
#: settings.php:
|
3274 |
msgid "Whitelist categories"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
-
#: settings.php:
|
3278 |
msgid "Tags"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
-
#: settings.php:
|
3282 |
msgid "Toggle tag editor"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
-
#: settings.php:
|
3286 |
msgid "Comma separated tag slugs"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
-
#: settings.php:
|
3290 |
msgid "Blacklist tags"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
-
#: settings.php:
|
3294 |
msgid "Whitelist tags"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
-
#: settings.php:
|
3298 |
msgid "Taxonomies"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
-
#: settings.php:
|
3302 |
msgid "Toggle taxonomy editor"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
-
#: settings.php:
|
3306 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
-
#: settings.php:
|
3310 |
msgid "Blacklist taxonomies"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
-
#: settings.php:
|
3314 |
msgid "Whitelist taxonomies"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
-
#: settings.php:
|
3318 |
msgid "Post IDs"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
-
#: settings.php:
|
3322 |
msgid "Toggle post/page ID editor"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
-
#: settings.php:
|
3326 |
msgid "Comma separated post/page IDs"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
-
#: settings.php:
|
3330 |
msgid "Blacklist IDs"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
-
#: settings.php:
|
3334 |
msgid "Whitelist IDs"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
-
#: settings.php:
|
3338 |
msgid "Urls"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
-
#: settings.php:
|
3342 |
msgid "Toggle url editor"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
-
#: settings.php:
|
3346 |
msgid ""
|
3347 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3348 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
@@ -3350,236 +3354,236 @@ msgid ""
|
|
3350 |
"start*. *url-pattern*, *url-end)"
|
3351 |
msgstr ""
|
3352 |
|
3353 |
-
#: settings.php:
|
3354 |
msgid "Blacklist urls"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
-
#: settings.php:
|
3358 |
msgid "Whitelist urls"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
-
#: settings.php:
|
3362 |
msgid "Url parameters"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
-
#: settings.php:
|
3366 |
msgid "Toggle url parameter and cookie editor"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
-
#: settings.php:
|
3370 |
msgid ""
|
3371 |
"Comma separated url query parameters or cookies with optional values (use "
|
3372 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: settings.php:
|
3376 |
msgid "Blacklist url parameters"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: settings.php:
|
3380 |
msgid "Whitelist url parameters"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#: settings.php:
|
3384 |
msgid "Referrers"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#: settings.php:
|
3388 |
msgid "Toggle referer editor"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#: settings.php:
|
3392 |
msgid ""
|
3393 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3394 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: settings.php:
|
3398 |
msgid "Blacklist referers"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: settings.php:
|
3402 |
msgid "Whitelist referers"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: settings.php:
|
3406 |
msgid "Clients"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: settings.php:
|
3410 |
msgid "Toggle client editor"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: settings.php:
|
3414 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: settings.php:
|
3418 |
msgid "Blacklist clients"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: settings.php:
|
3422 |
msgid "Whitelist clients"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: settings.php:
|
3426 |
msgid "Enable widget for this block"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: settings.php:
|
3430 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: settings.php:
|
3434 |
msgid "Shortcode"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: settings.php:
|
3438 |
msgid ""
|
3439 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3440 |
"If function is disabled for block it will return empty string."
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#: settings.php:
|
3444 |
msgid "PHP function"
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#: settings.php:
|
3448 |
msgid "Client-side device detection"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#: settings.php:
|
3452 |
msgid "Server-side device detection"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#: settings.php:
|
3456 |
msgid "Use client-side detection to"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#: settings.php:
|
3460 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
#. Translators: only on (the following devices): viewport names (devices)
|
3464 |
#. listed
|
3465 |
-
#: settings.php:
|
3466 |
msgid "only on"
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: settings.php:
|
3470 |
msgid "Device min width %s px"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
#: settings.php:
|
3474 |
msgid "Use server-side detection to insert block only for"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
-
#: settings.php:
|
3478 |
msgid "Filter"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
-
#: settings.php:
|
3482 |
msgid "Word Count"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
-
#: settings.php:
|
3486 |
msgid "Scheduling"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
-
#: settings.php:
|
3490 |
msgid "Display"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
-
#: settings.php:
|
3494 |
msgid "General"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
-
#: settings.php:
|
3498 |
msgid "Old settings for AMP pages detected"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
-
#: settings.php:
|
3502 |
msgid ""
|
3503 |
"To insert different codes on normal and AMP pages separate them with "
|
3504 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3505 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: settings.php:
|
3509 |
msgid "AMP pages"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: settings.php:
|
3513 |
msgid "Enable insertion for Ajax requests"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#: settings.php:
|
3517 |
msgid "Ajax requests"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#: settings.php:
|
3521 |
msgid "Enable insertion in RSS feeds"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
-
#: settings.php:
|
3525 |
msgid "RSS Feed"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
-
#: settings.php:
|
3529 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#: settings.php:
|
3533 |
msgid "Error 404 page"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
-
#: settings.php:
|
3537 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#: settings.php:
|
3541 |
msgid "insertions"
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#: settings.php:
|
3545 |
msgid ""
|
3546 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3547 |
"General)"
|
3548 |
msgstr ""
|
3549 |
|
3550 |
-
#: settings.php:
|
3551 |
msgid "Max blocks per page"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
-
#: settings.php:
|
3555 |
msgid "Insert for"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
-
#: settings.php:
|
3559 |
msgid ""
|
3560 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3561 |
"currently active). Might speed up insertion on content pages when "
|
3562 |
"the_content filter is called multiple times."
|
3563 |
msgstr ""
|
3564 |
|
3565 |
-
#: settings.php:
|
3566 |
msgid "Insert only in the loop"
|
3567 |
msgstr ""
|
3568 |
|
3569 |
-
#: settings.php:
|
3570 |
msgid ""
|
3571 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#: settings.php:
|
3575 |
msgid "Disable caching"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#: settings.php:
|
3579 |
msgid "Filter insertions"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
-
#: settings.php:
|
3583 |
msgid ""
|
3584 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3585 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
@@ -3587,548 +3591,548 @@ msgid ""
|
|
3587 |
"using only one insertion type."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
-
#: settings.php:
|
3591 |
msgid "using"
|
3592 |
msgstr ""
|
3593 |
|
3594 |
-
#: settings.php:
|
3595 |
msgid "Checked means specified calls are unwanted"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#: settings.php:
|
3599 |
msgid "Invert filter"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#: settings.php:
|
3603 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
-
#: settings.php:
|
3607 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
-
#: settings.php:
|
3611 |
msgid "for"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
-
#: settings.php:
|
3615 |
msgid "days after publishing"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
-
#: settings.php:
|
3619 |
msgid "Not available"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
-
#: settings.php:
|
3623 |
msgid "Ad label"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
-
#: settings.php:
|
3627 |
msgid "General tag"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#: settings.php:
|
3631 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
#. translators: %s: HTML tags
|
3635 |
-
#: settings.php:
|
3636 |
msgid ""
|
3637 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3638 |
"client-side device detection!"
|
3639 |
msgstr ""
|
3640 |
|
3641 |
#. translators: %s: HTML tags for text and link
|
3642 |
-
#: settings.php:
|
3643 |
msgid ""
|
3644 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3645 |
"side %s insertion. Use %s Server-side %s insertion."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#: settings.php:
|
3649 |
msgid "Settings"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: settings.php:
|
3653 |
msgid "Settings timestamp"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#: settings.php:
|
3657 |
msgid "Are you sure you want to reset all settings?"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#: settings.php:
|
3661 |
msgid "Reset All Settings"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#: settings.php:
|
3665 |
msgid "Viewports"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#: settings.php:
|
3669 |
msgid "Hooks"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
-
#: settings.php:
|
3673 |
msgid "Header"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
-
#: settings.php:
|
3677 |
msgid "Footer"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: settings.php:
|
3681 |
msgid "Debugging"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
-
#: settings.php:
|
3685 |
msgid "Plugin priority"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
-
#: settings.php:
|
3689 |
msgid "Output buffering"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
-
#: settings.php:
|
3693 |
msgid "Needed for position Above header but may not work with all themes"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#: settings.php:
|
3697 |
msgid "Syntax highlighting theme"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#: settings.php:
|
3701 |
msgctxt "no syntax highlighting themes"
|
3702 |
msgid "None"
|
3703 |
msgstr ""
|
3704 |
|
3705 |
-
#: settings.php:
|
3706 |
msgid "No Syntax Highlighting"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: settings.php:
|
3710 |
msgctxt "syntax highlighting themes"
|
3711 |
msgid "Light"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
-
#: settings.php:
|
3715 |
msgctxt "syntax highlighting themes"
|
3716 |
msgid "Dark"
|
3717 |
msgstr ""
|
3718 |
|
3719 |
-
#: settings.php:
|
3720 |
msgid "Min. user role for ind. exceptions editing"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
-
#: settings.php:
|
3724 |
msgid "Disable caching for logged in administrators"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
-
#: settings.php:
|
3728 |
msgid ""
|
3729 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3730 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#: settings.php:
|
3734 |
msgid "Wait for jQuery"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: settings.php:
|
3738 |
msgid ""
|
3739 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3740 |
"it will run the scripts that may need it"
|
3741 |
msgstr ""
|
3742 |
|
3743 |
-
#: settings.php:
|
3744 |
msgid "Sticky widget mode"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: settings.php:
|
3748 |
msgid ""
|
3749 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3750 |
"mode works with most themes but may reload ads on page load."
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#: settings.php:
|
3754 |
msgid "Sticky widget top margin"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: settings.php:
|
3758 |
msgid "Dynamic blocks"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#: settings.php:
|
3762 |
msgid "Functions for paragraph counting"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#: settings.php:
|
3766 |
msgid ""
|
3767 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3768 |
"functions if paragraphs are not counted properly on non-english pages."
|
3769 |
msgstr ""
|
3770 |
|
3771 |
-
#: settings.php:
|
3772 |
msgid "No paragraph counting inside"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: settings.php:
|
3776 |
msgid "Label text or HTML code"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
-
#: settings.php:
|
3780 |
msgid ""
|
3781 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3782 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: settings.php:
|
3786 |
msgid "Plugin usage tracking"
|
3787 |
msgstr ""
|
3788 |
|
3789 |
#. translators: %s: Ad Inserter
|
3790 |
-
#: settings.php:
|
3791 |
msgid ""
|
3792 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3793 |
"Only information regarding the WordPress environment and %s usage is "
|
3794 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#: settings.php:
|
3798 |
msgid "CSS class name for the wrapping div"
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#: settings.php:
|
3802 |
msgid "Block class name"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: settings.php:
|
3806 |
msgid "Include block number class"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: settings.php:
|
3810 |
msgid "Block number class"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: settings.php:
|
3814 |
msgid "Include block name class"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#: settings.php:
|
3818 |
msgid "Block name class"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#: settings.php:
|
3822 |
msgid ""
|
3823 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3824 |
msgstr ""
|
3825 |
|
3826 |
-
#: settings.php:
|
3827 |
msgid "Inline styles"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
-
#: settings.php:
|
3831 |
msgid "Preview of the block wrapping code"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
-
#: settings.php:
|
3835 |
msgid "Wrapping div"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
-
#: settings.php:
|
3839 |
msgid "BLOCK CODE"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
-
#: settings.php:
|
3843 |
msgid "Viewport Settings used for client-side device detection"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
#. Translators: %d: viewport number
|
3847 |
-
#: settings.php:
|
3848 |
msgid "Viewport %d name"
|
3849 |
msgstr ""
|
3850 |
|
3851 |
-
#: settings.php:
|
3852 |
msgid "min width"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
-
#: settings.php:
|
3856 |
msgid "Custom Hooks"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
-
#: settings.php:
|
3860 |
msgid "Enable hook"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
#. translators: %d: hook number
|
3864 |
-
#: settings.php:
|
3865 |
msgid "Hook %d name"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
-
#: settings.php:
|
3869 |
msgid "Hook name for automatic insertion selection"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
-
#: settings.php:
|
3873 |
msgid "action"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#: settings.php:
|
3877 |
msgid "Action name as used in the do_action () function"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
-
#: settings.php:
|
3881 |
msgid "priority"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
-
#: settings.php:
|
3885 |
msgid "Priority for the hook (default is 10)"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
-
#: settings.php:
|
3889 |
msgid "Enable insertion of this code into HTML page header"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
-
#: settings.php:
|
3893 |
msgid "Process PHP code"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
-
#: settings.php:
|
3897 |
msgid "HTML Page Header Code"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
-
#: settings.php:
|
3901 |
msgid "Code in the %s section of the HTML page"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
-
#: settings.php:
|
3905 |
msgctxt "code in the header"
|
3906 |
msgid "NOT ENABLED"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#: settings.php:
|
3910 |
msgid "Use server-side detection to insert code only for"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#: settings.php:
|
3914 |
msgid ""
|
3915 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3916 |
"Page not found"
|
3917 |
msgstr ""
|
3918 |
|
3919 |
-
#: settings.php:
|
3920 |
msgid "Insert on Error 404 page"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
-
#: settings.php:
|
3924 |
msgid "Enable insertion of this code into HTML page footer"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
-
#: settings.php:
|
3928 |
msgid "HTML Page Footer Code"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
#. translators: %s: HTML tags
|
3932 |
-
#: settings.php:
|
3933 |
msgid "Code before the %s tag of the the HTML page"
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: settings.php:
|
3937 |
msgctxt "code in the footer"
|
3938 |
msgid "NOT ENABLED"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#: settings.php:
|
3942 |
msgid ""
|
3943 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3944 |
"Page not found"
|
3945 |
msgstr ""
|
3946 |
|
3947 |
-
#: settings.php:
|
3948 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3949 |
msgstr ""
|
3950 |
|
3951 |
-
#: settings.php:
|
3952 |
msgid "Enable detection of ad blocking"
|
3953 |
msgstr ""
|
3954 |
|
3955 |
-
#: settings.php:
|
3956 |
msgid "Global action when ad blocking is detected"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
-
#: settings.php:
|
3960 |
msgid "No action for"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#: settings.php:
|
3964 |
msgid "Exceptions for global action when ad blocking is detected."
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#: settings.php:
|
3968 |
msgid "Delay Action"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
-
#: settings.php:
|
3972 |
msgid ""
|
3973 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3974 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#: settings.php:
|
3978 |
msgctxt "Delay Action for x "
|
3979 |
msgid "page views"
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: settings.php:
|
3983 |
msgid "No Action Period"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#: settings.php:
|
3987 |
msgid ""
|
3988 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3989 |
"for no no-action period (action fires always after defined page view delay). "
|
3990 |
"Sets cookie."
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#: settings.php:
|
3994 |
msgctxt "no action period"
|
3995 |
msgid "days"
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#: settings.php:
|
3999 |
msgid "Custom Selectors"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#: settings.php:
|
4003 |
msgid ""
|
4004 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4005 |
"blocking detection. Invisible element or element with zero height means ad "
|
4006 |
"blocking is present."
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#: settings.php:
|
4010 |
msgid "Redirection Page"
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#: settings.php:
|
4014 |
msgid "Custom Url"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#: settings.php:
|
4018 |
msgid ""
|
4019 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4020 |
"select Custom url and set it below."
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: settings.php:
|
4024 |
msgid "Custom Redirection Url"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
-
#: settings.php:
|
4028 |
msgid "Message HTML code"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
-
#: settings.php:
|
4032 |
msgid "Preview message when ad blocking is detected"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: settings.php:
|
4036 |
msgid "Prevent visitors from closing the warning message"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
-
#: settings.php:
|
4040 |
msgid "Undismissible Message"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
-
#: settings.php:
|
4044 |
msgid "Not undismissible for"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
-
#: settings.php:
|
4048 |
msgid "Users which can close the warning message."
|
4049 |
msgstr ""
|
4050 |
|
4051 |
-
#: settings.php:
|
4052 |
msgid ""
|
4053 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4054 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: settings.php:
|
4058 |
msgid "Disable header code (Header tab)"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
-
#: settings.php:
|
4062 |
msgid "Disable footer code (Footer tab)"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
#. translators: %s: Ad Inserter
|
4066 |
-
#: settings.php:
|
4067 |
msgid "Disable %s JavaScript code"
|
4068 |
msgstr ""
|
4069 |
|
4070 |
#. translators: %s: Ad Inserter
|
4071 |
-
#: settings.php:
|
4072 |
msgid "Disable %s CSS code"
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: settings.php:
|
4076 |
msgid ""
|
4077 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: settings.php:
|
4081 |
msgid "Disable insertion of all blocks"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: settings.php:
|
4085 |
msgid "Disable insertions"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
#. translators: %s: Ad Inserter
|
4089 |
-
#: settings.php:
|
4090 |
msgid "%s CSS CODE"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: settings.php:
|
4094 |
msgid "HEADER CODE"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
#. translators: %s: PHP tags
|
4098 |
-
#: settings.php:
|
4099 |
msgid "BLOCK PHP CODE"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
#. translators: %s: Ad Inserter
|
4103 |
-
#: settings.php:
|
4104 |
msgid "%s JS CODE"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
-
#: settings.php:
|
4108 |
msgid "FOOTER CODE"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
-
#: settings.php:
|
4112 |
msgid "Force showing admin toolbar when viewing site"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
-
#: settings.php:
|
4116 |
msgid "Enable debugging functions in admin toolbar"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
-
#: settings.php:
|
4120 |
msgid "Debugging functions in admin toolbar"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#: settings.php:
|
4124 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
-
#: settings.php:
|
4128 |
msgid "Debugging functions on mobile screens"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
-
#: settings.php:
|
4132 |
msgid ""
|
4133 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4134 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
@@ -4137,228 +4141,236 @@ msgid ""
|
|
4137 |
"administrators debugging is always enabled."
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#: settings.php:
|
4141 |
msgid "Remote debugging"
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#: settings.php:
|
4145 |
msgid ""
|
4146 |
"Disable translation to see original texts for the settings and messages in "
|
4147 |
"English"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
-
#: settings.php:
|
4151 |
msgid "Disable translation"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
-
#: settings.php:
|
4155 |
msgid "Available positions for current theme"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: settings.php:
|
4159 |
msgid "Error checking pages"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
-
#: settings.php:
|
4163 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
-
#: settings.php:
|
4167 |
msgctxt "Button"
|
4168 |
msgid "Check"
|
4169 |
msgstr ""
|
4170 |
|
4171 |
-
#: settings.php:
|
4172 |
msgid "Position"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
-
#: settings.php:
|
4176 |
msgid "Archive pages"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
-
#: settings.php:
|
4180 |
msgid ""
|
4181 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#: settings.php:
|
4185 |
msgid "Position not checked yet"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
-
#: settings.php:
|
4189 |
msgid "Toggle active/all blocks"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
-
#: settings.php:
|
4193 |
msgid "Rearrange block order"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
-
#: settings.php:
|
4197 |
msgid "Save new block order"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
-
#: settings.php:
|
4201 |
msgid "Toggle active/all ad units"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
-
#: settings.php:
|
4205 |
msgid "Reload AdSense ad units"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
-
#: settings.php:
|
4209 |
msgid "Clear authorization to access AdSense account"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
-
#: settings.php:
|
4213 |
msgid "Google AdSense Homepage"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
-
#: settings.php:
|
4217 |
msgid "Switch to physical ads.txt file"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
-
#: settings.php:
|
4221 |
msgid "Switch to virtual ads.txt file"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
#. translators: %s: ads.txt
|
4225 |
-
#: settings.php:
|
4226 |
msgid "Open %s"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
-
#: settings.php:
|
4230 |
msgid "Reload ads.txt file"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
-
#: settings.php:
|
4234 |
msgid "Save"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
#. translators: %s: Ad Inserter
|
4238 |
-
#: settings.php:
|
4239 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: settings.php:
|
4243 |
msgid "Warning"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
#. translators: %s: Ad Inserter
|
4247 |
-
#: settings.php:
|
4248 |
msgid "%s virtual file ads.txt not found"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#: settings.php:
|
4252 |
msgid "IMPORTANT"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#: settings.php:
|
4256 |
msgid "ads.txt file must be placed on the root domain"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#: settings.php:
|
4260 |
msgid "ads.txt file"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#: settings.php:
|
4264 |
msgid "NOT WRITABLE"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#: settings.php:
|
4268 |
msgid "file %s not found"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#: settings.php:
|
4272 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
#. translators: %s: Ad Inserter
|
4276 |
-
#: settings.php:
|
4277 |
msgid "%s virtual ads.txt file"
|
4278 |
msgstr ""
|
4279 |
|
4280 |
-
#: settings.php:
|
4281 |
msgid "Advertising system"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
-
#: settings.php:
|
4285 |
msgid "Account ID"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
-
#: settings.php:
|
4289 |
msgid "Certification authority ID"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
-
#: settings.php:
|
4293 |
msgid "Account ID found in block and present in ads.txt"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
-
#: settings.php:
|
4297 |
msgid "Account ID found in block but not present in ads.txt"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
-
#: settings.php:
|
4301 |
msgid "Preview block"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
-
#: settings.php:
|
4305 |
msgid "Insertion disabled"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
-
#: settings.php:
|
4309 |
msgid "Automatic insertion"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
#. translators: %s HTML tags
|
4313 |
-
#: settings.php:
|
4314 |
msgid "PHP code processing"
|
4315 |
msgstr ""
|
4316 |
|
4317 |
-
#: settings.php:
|
4318 |
msgid "Device detection"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
-
#: settings.php:
|
4322 |
msgid "Widget positions"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
-
#: settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4326 |
msgid "Ad unit"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
-
#: settings.php:
|
4330 |
msgid "Slot ID"
|
4331 |
msgstr ""
|
4332 |
|
4333 |
-
#: settings.php:
|
4334 |
msgid "Copy AdSense code"
|
4335 |
msgstr ""
|
4336 |
|
4337 |
-
#: settings.php:
|
4338 |
msgid "Preview AdSense ad"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
-
#: settings.php:
|
4342 |
msgid "Get AdSense code"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
#. translators: %s: HTML tags
|
4346 |
-
#: settings.php:
|
4347 |
msgid ""
|
4348 |
"Please %s clear authorization %s with the button %s above and once again "
|
4349 |
"authorize access to your AdSense account."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
-
#: settings.php:
|
4353 |
msgid "AdSense Integration"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
-
#: settings.php:
|
4357 |
msgid "AdSense Integration - Step 2"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
#. translators: %s: HTML tags
|
4361 |
-
#: settings.php:
|
4362 |
msgid ""
|
4363 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4364 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4367,7 +4379,7 @@ msgid ""
|
|
4367 |
msgstr ""
|
4368 |
|
4369 |
#. translators: %s: HTML tags
|
4370 |
-
#: settings.php:
|
4371 |
msgid ""
|
4372 |
"If you get error, can't access ad units or would like to use own Google API "
|
4373 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
@@ -4375,7 +4387,7 @@ msgid ""
|
|
4375 |
msgstr ""
|
4376 |
|
4377 |
#. translators: %s: HTML tags
|
4378 |
-
#: settings.php:
|
4379 |
msgid ""
|
4380 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4381 |
"Authorization Code %s button to open a new window where you can allow "
|
@@ -4384,38 +4396,38 @@ msgid ""
|
|
4384 |
msgstr ""
|
4385 |
|
4386 |
#. translators: %s: HTML tags
|
4387 |
-
#: settings.php:
|
4388 |
msgid ""
|
4389 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4390 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4391 |
msgstr ""
|
4392 |
|
4393 |
-
#: settings.php:
|
4394 |
msgid "Get Authorization Code"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
-
#: settings.php:
|
4398 |
msgid "Enter Authorization Code"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
-
#: settings.php:
|
4402 |
msgid "Use own API IDs"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
-
#: settings.php:
|
4406 |
msgid "Clear and return to Step 1"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
-
#: settings.php:
|
4410 |
msgid "Authorize"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
-
#: settings.php:
|
4414 |
msgid "AdSense Integration - Step 1"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
#. translators: %s: Ad Inserter
|
4418 |
-
#: settings.php:
|
4419 |
msgid ""
|
4420 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4421 |
"To do this you need to authorize %s to access your AdSense account. The "
|
@@ -4424,196 +4436,196 @@ msgid ""
|
|
4424 |
msgstr ""
|
4425 |
|
4426 |
#. translators: %s: HTML tags
|
4427 |
-
#: settings.php:
|
4428 |
msgid "Go to %s Google APIs and Services console %s"
|
4429 |
msgstr ""
|
4430 |
|
4431 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4432 |
-
#: settings.php:
|
4433 |
msgid ""
|
4434 |
"Create %1$s project - if the project and IDs are already created click on "
|
4435 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4436 |
msgstr ""
|
4437 |
|
4438 |
#. translators: %s: HTML tags
|
4439 |
-
#: settings.php:
|
4440 |
msgid ""
|
4441 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4442 |
"create a new project"
|
4443 |
msgstr ""
|
4444 |
|
4445 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4446 |
-
#: settings.php:
|
4447 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
#. translators: %s: HTML tags
|
4451 |
-
#: settings.php:
|
4452 |
msgid ""
|
4453 |
"Click on project selection, wait for the project to be created and then and "
|
4454 |
"select %s as the current project"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
#. translators: %s: HTML tags
|
4458 |
-
#: settings.php:
|
4459 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
#. translators: %s: HTML tags
|
4463 |
-
#: settings.php:
|
4464 |
msgid "Search for adsense and enable %s"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
#. translators: %s: HTML tags
|
4468 |
-
#: settings.php:
|
4469 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4470 |
msgstr ""
|
4471 |
|
4472 |
#. translators: %s: HTML tags
|
4473 |
-
#: settings.php:
|
4474 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4475 |
msgstr ""
|
4476 |
|
4477 |
#. translators: %s: HTML tags
|
4478 |
-
#: settings.php:
|
4479 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4480 |
msgstr ""
|
4481 |
|
4482 |
#. translators: %s: HTML tags
|
4483 |
-
#: settings.php:
|
4484 |
msgid "Click on %s What credentials do I need? %s"
|
4485 |
msgstr ""
|
4486 |
|
4487 |
#. translators: %s: HTML tags
|
4488 |
-
#: settings.php:
|
4489 |
msgid ""
|
4490 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4491 |
"Ad Inserter client %s"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
#. translators: %s: HTML tags
|
4495 |
-
#: settings.php:
|
4496 |
msgid ""
|
4497 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4498 |
"enter %s"
|
4499 |
msgstr ""
|
4500 |
|
4501 |
#. translators: %s: HTML tags
|
4502 |
-
#: settings.php:
|
4503 |
msgid "Click on %s Continue %s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
#. translators: %s: HTML tags
|
4507 |
-
#: settings.php:
|
4508 |
msgid "Click on %s Done %s"
|
4509 |
msgstr ""
|
4510 |
|
4511 |
#. translators: %s: HTML tags
|
4512 |
-
#: settings.php:
|
4513 |
msgid ""
|
4514 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4515 |
"secret %s"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
-
#: settings.php:
|
4519 |
msgid "Copy them to the appropriate fields below"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
-
#: settings.php:
|
4523 |
msgid "Client ID"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
-
#: settings.php:
|
4527 |
msgid "Enter Client ID"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
-
#: settings.php:
|
4531 |
msgid "Client secret"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
-
#: settings.php:
|
4535 |
msgid "Enter Client secret"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
-
#: settings.php:
|
4539 |
msgid "Use default API IDs"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
-
#: settings.php:
|
4543 |
msgid "All posts"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
-
#: settings.php:
|
4547 |
msgid "All static pages"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
-
#: settings.php:
|
4551 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
-
#: settings.php:
|
4555 |
-
#: settings.php:
|
4556 |
-
#: settings.php:
|
4557 |
-
#: settings.php:
|
4558 |
msgid "Looking for AdSense alternative?"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
-
#: settings.php:
|
4562 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
-
#: settings.php:
|
4566 |
-
#: settings.php:
|
4567 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4568 |
msgstr ""
|
4569 |
|
4570 |
-
#: settings.php:
|
4571 |
msgid "Maximize your revenue!"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
-
#: settings.php:
|
4575 |
msgid "Support plugin development"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
-
#: settings.php:
|
4579 |
msgid ""
|
4580 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4581 |
"reviewing the plugin on WordPres"
|
4582 |
msgstr ""
|
4583 |
|
4584 |
-
#: settings.php:
|
4585 |
msgctxt "Review Ad Inserter"
|
4586 |
msgid "Review"
|
4587 |
msgstr ""
|
4588 |
|
4589 |
-
#: settings.php:
|
4590 |
msgid ""
|
4591 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4592 |
"rating the plugin on WordPres"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
#: settings.php:
|
4596 |
msgctxt "Rate Ad Inserter"
|
4597 |
msgid "Rate"
|
4598 |
msgstr ""
|
4599 |
|
4600 |
-
#: settings.php:
|
4601 |
msgid ""
|
4602 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4603 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4604 |
"you!"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#: settings.php:
|
4608 |
msgid "Donate"
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#: settings.php:
|
4612 |
msgid "Average rating of the plugin - Thank you!"
|
4613 |
msgstr ""
|
4614 |
|
4615 |
#. translators: %s: Ad Inserter, HTML tags
|
4616 |
-
#: settings.php:
|
4617 |
msgid ""
|
4618 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4619 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
@@ -4622,31 +4634,31 @@ msgid ""
|
|
4622 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
-
#: settings.php:
|
4626 |
msgid "Review"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
-
#: settings.php:
|
4630 |
msgid "Ad Inserter on Twitter"
|
4631 |
msgstr ""
|
4632 |
|
4633 |
-
#: settings.php:
|
4634 |
msgid "Ad Inserter on Facebook"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
-
#: settings.php:
|
4638 |
msgid "Follow Ad Inserter"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
#. translators: %s: HTML tags
|
4642 |
-
#: settings.php:
|
4643 |
msgid ""
|
4644 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4645 |
"and %s Common Settings %s pages"
|
4646 |
msgstr ""
|
4647 |
|
4648 |
#. translators: %s: HTML tags
|
4649 |
-
#: settings.php:
|
4650 |
msgid ""
|
4651 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4652 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
@@ -4654,330 +4666,330 @@ msgid ""
|
|
4654 |
msgstr ""
|
4655 |
|
4656 |
#. translators: %s: HTML tags
|
4657 |
-
#: settings.php:
|
4658 |
msgid ""
|
4659 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4660 |
"purchase you refer to us"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
#. translators: %s: HTML tags
|
4664 |
-
#: settings.php:
|
4665 |
msgid ""
|
4666 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4667 |
"diagnose and fix the problem."
|
4668 |
msgstr ""
|
4669 |
|
4670 |
#. translators: %s: HTML tags
|
4671 |
-
#: settings.php:
|
4672 |
msgid ""
|
4673 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4674 |
"thread on the %s support forum. %s"
|
4675 |
msgstr ""
|
4676 |
|
4677 |
-
#: settings.php:
|
4678 |
msgid "Code preview with visual CSS editor"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
-
#: settings.php:
|
4682 |
msgid "A/B testing - Track ad impressions and clicks"
|
4683 |
msgstr ""
|
4684 |
|
4685 |
-
#: settings.php:
|
4686 |
msgid "Looking for Pro Ad Management plugin?"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
-
#: settings.php:
|
4690 |
msgid "To Optimally Monetize your WordPress website?"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
#. Translators: %s: price of Ad Inserter Pro
|
4694 |
-
#: settings.php:
|
4695 |
msgid "Different license types starting from %s"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
#. translators: %s HTML tags
|
4699 |
-
#: settings.php:
|
4700 |
msgid "%s AdSense Integration %s"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
#. translators: %s HTML tags
|
4704 |
-
#: settings.php:
|
4705 |
msgid "Syntax highlighting %s editor %s"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
#. translators: %s HTML tags
|
4709 |
-
#: settings.php:
|
4710 |
msgid "%s Code preview %s with visual CSS editor"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
#. translators: %s HTML tags
|
4714 |
-
#: settings.php:
|
4715 |
msgid "Simple user interface - all settings on a single page"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
#. translators: %s HTML tags
|
4719 |
-
#: settings.php:
|
4720 |
msgid ""
|
4721 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4722 |
"image / excerpt"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
#. translators: %s HTML tags
|
4726 |
-
#: settings.php:
|
4727 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s HTML tags
|
4731 |
-
#: settings.php:
|
4732 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4733 |
msgstr ""
|
4734 |
|
4735 |
#. translators: %s HTML tags
|
4736 |
-
#: settings.php:
|
4737 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4738 |
msgstr ""
|
4739 |
|
4740 |
#. translators: %s HTML tags
|
4741 |
-
#: settings.php:
|
4742 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4743 |
msgstr ""
|
4744 |
|
4745 |
#. translators: %s HTML tags
|
4746 |
-
#: settings.php:
|
4747 |
msgid ""
|
4748 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4749 |
"selectors)"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
#. translators: %s HTML tags
|
4753 |
-
#: settings.php:
|
4754 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#. translators: %s HTML tags
|
4758 |
-
#: settings.php:
|
4759 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
#. translators: %s HTML tags
|
4763 |
-
#: settings.php:
|
4764 |
msgid ""
|
4765 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4766 |
"scrolls)"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s HTML tags
|
4770 |
-
#: settings.php:
|
4771 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s HTML tags
|
4775 |
-
#: settings.php:
|
4776 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4777 |
msgstr ""
|
4778 |
|
4779 |
#. translators: %s HTML tags
|
4780 |
-
#: settings.php:
|
4781 |
msgid ""
|
4782 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4783 |
"visible)"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
#. translators: %s HTML tags
|
4787 |
-
#: settings.php:
|
4788 |
msgid ""
|
4789 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4790 |
msgstr ""
|
4791 |
|
4792 |
#. translators: %s HTML tags
|
4793 |
-
#: settings.php:
|
4794 |
msgid "Block %s alignment and style %s customizations"
|
4795 |
msgstr ""
|
4796 |
|
4797 |
#. translators: %s HTML tags
|
4798 |
-
#: settings.php:
|
4799 |
msgid ""
|
4800 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4801 |
"TOS)"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
#. translators: %s HTML tags
|
4805 |
-
#: settings.php:
|
4806 |
msgid ""
|
4807 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4808 |
"feeds"
|
4809 |
msgstr ""
|
4810 |
|
4811 |
#. translators: %s HTML tags
|
4812 |
-
#: settings.php:
|
4813 |
msgid "%s Ad rotation %s (works also with caching)"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
#. translators: %s HTML tags
|
4817 |
-
#: settings.php:
|
4818 |
msgid "Create, edit and check %s ads.txt %s file"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
#. translators: %s HTML tags
|
4822 |
-
#: settings.php:
|
4823 |
msgid ""
|
4824 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4825 |
"AdSense)"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
#. translators: %s HTML tags
|
4829 |
-
#: settings.php:
|
4830 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#. translators: %s HTML tags
|
4834 |
-
#: settings.php:
|
4835 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4836 |
msgstr ""
|
4837 |
|
4838 |
#. translators: %s HTML tags
|
4839 |
-
#: settings.php:
|
4840 |
msgid "Support for %s A/B testing %s"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
#. translators: %s HTML tags
|
4844 |
-
#: settings.php:
|
4845 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
#. translators: %s HTML tags
|
4849 |
-
#: settings.php:
|
4850 |
msgid "Click fraud %s protection %s"
|
4851 |
msgstr ""
|
4852 |
|
4853 |
#. translators: %s HTML tags
|
4854 |
-
#: settings.php:
|
4855 |
msgid "Support for %s lazy loading %s"
|
4856 |
msgstr ""
|
4857 |
|
4858 |
#. translators: %s HTML tags
|
4859 |
-
#: settings.php:
|
4860 |
msgid "Support for ads on %s AMP pages %s"
|
4861 |
msgstr ""
|
4862 |
|
4863 |
#. translators: %s HTML tags
|
4864 |
-
#: settings.php:
|
4865 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
#. translators: %s HTML tags
|
4869 |
-
#: settings.php:
|
4870 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
#. translators: %s HTML tags
|
4874 |
-
#: settings.php:
|
4875 |
msgid "%s Banner %s code generator"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
#. translators: %s HTML tags
|
4879 |
-
#: settings.php:
|
4880 |
msgid "Support for %s header and footer %s code"
|
4881 |
msgstr ""
|
4882 |
|
4883 |
#. translators: %s HTML tags
|
4884 |
-
#: settings.php:
|
4885 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4886 |
msgstr ""
|
4887 |
|
4888 |
#. translators: %s HTML tags
|
4889 |
-
#: settings.php:
|
4890 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
#. translators: %s HTML tags
|
4894 |
-
#: settings.php:
|
4895 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4896 |
msgstr ""
|
4897 |
|
4898 |
#. translators: %s HTML tags
|
4899 |
-
#: settings.php:
|
4900 |
msgid ""
|
4901 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4902 |
"protection"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
#. translators: %s HTML tags
|
4906 |
-
#: settings.php:
|
4907 |
msgid "%s Ad blocking statistics %s"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
#. translators: %s HTML tags
|
4911 |
-
#: settings.php:
|
4912 |
msgid ""
|
4913 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4914 |
"referrers, operating systems, browsers"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
#. translators: %s HTML tags
|
4918 |
-
#: settings.php:
|
4919 |
msgid ""
|
4920 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4921 |
msgstr ""
|
4922 |
|
4923 |
#. translators: %s HTML tags
|
4924 |
-
#: settings.php:
|
4925 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4926 |
msgstr ""
|
4927 |
|
4928 |
#. translators: %s HTML tags
|
4929 |
-
#: settings.php:
|
4930 |
msgid "%s Import/Export %s block or plugin settings"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
#. translators: %s HTML tags
|
4934 |
-
#: settings.php:
|
4935 |
msgid "%s Insertion scheduling %s with fallback option"
|
4936 |
msgstr ""
|
4937 |
|
4938 |
#. translators: %s HTML tags
|
4939 |
-
#: settings.php:
|
4940 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4941 |
msgstr ""
|
4942 |
|
4943 |
#. translators: %s HTML tags
|
4944 |
-
#: settings.php:
|
4945 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4946 |
msgstr ""
|
4947 |
|
4948 |
#. translators: %s HTML tags
|
4949 |
-
#: settings.php:
|
4950 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4951 |
msgstr ""
|
4952 |
|
4953 |
#. translators: %s HTML tags
|
4954 |
-
#: settings.php:
|
4955 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4956 |
msgstr ""
|
4957 |
|
4958 |
#. translators: %s HTML tags
|
4959 |
-
#: settings.php:
|
4960 |
msgid ""
|
4961 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4962 |
msgstr ""
|
4963 |
|
4964 |
#. translators: %s HTML tags
|
4965 |
-
#: settings.php:
|
4966 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
#. translators: %s HTML tags
|
4970 |
-
#: settings.php:
|
4971 |
msgid "No ads on the settings page"
|
4972 |
msgstr ""
|
4973 |
|
4974 |
#. translators: %s HTML tags
|
4975 |
-
#: settings.php:
|
4976 |
msgid "Premium support"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
#. translators: %s HTML tags
|
4980 |
-
#: settings.php:
|
4981 |
msgid ""
|
4982 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4983 |
"website with many advertising features to automatically insert adverts on "
|
@@ -4992,82 +5004,82 @@ msgid ""
|
|
4992 |
msgstr ""
|
4993 |
|
4994 |
#. translators: %s HTML tags
|
4995 |
-
#: settings.php:
|
4996 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s HTML tags
|
5000 |
-
#: settings.php:
|
5001 |
msgid "Ads between posts"
|
5002 |
msgstr ""
|
5003 |
|
5004 |
#. translators: %s HTML tags
|
5005 |
-
#: settings.php:
|
5006 |
msgid "Ads between comments"
|
5007 |
msgstr ""
|
5008 |
|
5009 |
#. translators: %s HTML tags
|
5010 |
-
#: settings.php:
|
5011 |
msgid "Support via email"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
#. translators: %s HTML tags
|
5015 |
-
#: settings.php:
|
5016 |
msgid "%s Sticky positions %s"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
#. translators: %s HTML tags
|
5020 |
-
#: settings.php:
|
5021 |
msgid "%s Limit insertions %s"
|
5022 |
msgstr ""
|
5023 |
|
5024 |
#. translators: %s HTML tags
|
5025 |
-
#: settings.php:
|
5026 |
msgid "%s Clearance %s options"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
#. translators: %s HTML tags
|
5030 |
-
#: settings.php:
|
5031 |
msgid "Ad rotation"
|
5032 |
msgstr ""
|
5033 |
|
5034 |
#. translators: %s HTML tags
|
5035 |
-
#: settings.php:
|
5036 |
msgid "%s A/B testing %s"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
#. translators: %s HTML tags
|
5040 |
-
#: settings.php:
|
5041 |
msgid "%s Ad tracking %s"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
#. translators: %s HTML tags
|
5045 |
-
#: settings.php:
|
5046 |
msgid "Support for %s AMP pages %s"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
#. translators: %s HTML tags
|
5050 |
-
#: settings.php:
|
5051 |
msgid "%s Ad blocking detection %s"
|
5052 |
msgstr ""
|
5053 |
|
5054 |
#. translators: %s HTML tags
|
5055 |
-
#: settings.php:
|
5056 |
msgid "%s Mobile device detection %s"
|
5057 |
msgstr ""
|
5058 |
|
5059 |
#. translators: %s HTML tags
|
5060 |
-
#: settings.php:
|
5061 |
msgid "64 code blocks"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
#. translators: %s HTML tags
|
5065 |
-
#: settings.php:
|
5066 |
msgid "%s GEO targeting %s"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
#. translators: %s HTML tags
|
5070 |
-
#: settings.php:
|
5071 |
msgid "%s Scheduling %s"
|
5072 |
msgstr ""
|
5073 |
|
@@ -5846,6 +5858,7 @@ msgid "Add"
|
|
5846 |
msgstr ""
|
5847 |
|
5848 |
#: strings.php:258
|
|
|
5849 |
msgid "Parent"
|
5850 |
msgstr ""
|
5851 |
|
@@ -5878,6 +5891,11 @@ msgid "SELECTOR"
|
|
5878 |
msgstr ""
|
5879 |
|
5880 |
#: strings.php:268
|
|
|
|
|
|
|
|
|
|
|
5881 |
msgid "Automatically placed by AdSense Auto ads code"
|
5882 |
msgstr ""
|
5883 |
|
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.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/ad-inserter\n"
|
7 |
+
"POT-Creation-Date: 2020-01-15 17:16:55+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:353
|
16 |
msgctxt "Menu item"
|
17 |
msgid "Debugging DEMO"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#: ad-inserter.php:369
|
21 |
msgctxt "Menu item"
|
22 |
msgid "Label Blocks"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: ad-inserter.php:376
|
26 |
msgctxt "Menu item"
|
27 |
msgid "Show Positions"
|
28 |
msgstr ""
|
29 |
|
30 |
+
#: ad-inserter.php:461
|
31 |
msgctxt "Menu item"
|
32 |
msgid "Show HTML Tags"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ad-inserter.php:468
|
36 |
msgctxt "Menu item"
|
37 |
msgid "Disable Insertion"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: ad-inserter.php:477
|
41 |
msgctxt "Menu item"
|
42 |
msgid "Ad Blocking Status"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: ad-inserter.php:484
|
46 |
msgctxt "Menu item"
|
47 |
msgid "Simulate Ad Blocking"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: ad-inserter.php:495
|
51 |
msgctxt "Menu item"
|
52 |
msgid "Log Processing"
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: ad-inserter.php:502
|
56 |
msgctxt "Menu item"
|
57 |
msgid "Show Log"
|
58 |
msgstr ""
|
59 |
|
60 |
#. translators: Debugging position name Before HTML element
|
61 |
+
#: ad-inserter.php:1110
|
62 |
msgid "Before"
|
63 |
msgstr ""
|
64 |
|
65 |
#. translators: Debugging position name After HTML element
|
66 |
+
#: ad-inserter.php:1115
|
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:1120 strings.php:103
|
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:1125 strings.php:104
|
79 |
msgid "Append content"
|
80 |
msgstr ""
|
81 |
|
82 |
#. translators: Debugging position name Replace content of HTML element
|
83 |
+
#: ad-inserter.php:1130 strings.php:105
|
84 |
msgid "Replace content"
|
85 |
msgstr ""
|
86 |
|
87 |
#. translators: Debugging position name Replace HTML element
|
88 |
+
#: ad-inserter.php:1135 strings.php:155
|
89 |
msgid "Replace"
|
90 |
msgstr ""
|
91 |
|
92 |
#. translators: Debugging message when output buffering is enabled
|
93 |
+
#: ad-inserter.php:1182
|
94 |
msgid "OUTPUT BUFFERING"
|
95 |
msgstr ""
|
96 |
|
97 |
#. translators: Debugging position
|
98 |
+
#: ad-inserter.php:1186
|
99 |
msgid "Above Header"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: ad-inserter.php:1426
|
103 |
msgctxt "Menu item"
|
104 |
msgid "Log In"
|
105 |
msgstr ""
|
106 |
|
107 |
#. translators: %s: Ad Inserter
|
108 |
+
#: ad-inserter.php:1761 ad-inserter.php:2853
|
109 |
msgid "%s Settings"
|
110 |
msgstr ""
|
111 |
|
112 |
#. translators: AD BLOCKING DETECTED, PAGE VIEWS: n - NO ACTION
|
113 |
+
#: ad-inserter.php:2247
|
114 |
msgid "AD BLOCKING DETECTED, PAGE VIEWS"
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: ad-inserter.php:2247
|
118 |
msgid "NO ACTION"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: ad-inserter.php:2248
|
122 |
msgid "AD BLOCKING DETECTED, COOKIE DETECTED - NO ACTION"
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: ad-inserter.php:2249
|
126 |
msgid "AD BLOCKING DETECTED - ACTION"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: ad-inserter.php:2250
|
130 |
msgid "AD BLOCKING NOT DETECTED"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: ad-inserter.php:2251
|
134 |
msgid "AD BLOCKING DETECTION COOKIES DELETED"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: ad-inserter.php:2252
|
138 |
msgid "AD BLOCKING DETECTED - NO ACTION"
|
139 |
msgstr ""
|
140 |
|
141 |
#. Translators: 1: number of blocks, 2: Ad Inserter
|
142 |
+
#: ad-inserter.php:2548
|
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:2551
|
149 |
msgid "Please help me to solve a problem first"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: ad-inserter.php:2555
|
153 |
msgid "Maybe later"
|
154 |
msgstr ""
|
155 |
|
156 |
#. Translators: %s: Ad Inserter
|
157 |
+
#: ad-inserter.php:2560
|
158 |
msgid "Hey, you are using %s and I hope you're happy with it."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: ad-inserter.php:2563
|
162 |
msgid "OK, but please help me with the settings first"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: ad-inserter.php:2576
|
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:2578
|
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:2584
|
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:2601 ad-inserter.php:2636
|
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:2608
|
189 |
msgid "Warning: %1$s requires PHP 5.6 or newer. %2$s Please update! %3$s"
|
190 |
msgstr ""
|
191 |
|
192 |
+
#: ad-inserter.php:2618
|
193 |
msgctxt "Menu item"
|
194 |
msgid "Settings"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: ad-inserter.php:2650
|
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:2650
|
204 |
msgid "Safe mode"
|
205 |
msgstr ""
|
206 |
|
207 |
#. translators: %s: Ad Inserter
|
208 |
+
#: ad-inserter.php:2745
|
209 |
msgctxt "Meta box name"
|
210 |
msgid "%s Individual Exceptions"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: ad-inserter.php:2774 ad-inserter.php:9652 class.php:2123
|
214 |
#: includes/preview.php:2002 includes/preview.php:2045
|
215 |
+
#: includes/preview.php:2082 settings.php:4188 strings.php:3
|
216 |
msgid "Block"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: ad-inserter.php:2775 settings.php:4189 settings.php:4274
|
220 |
msgid "Name"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: ad-inserter.php:2778 settings.php:1158
|
224 |
msgid "Default insertion"
|
225 |
msgstr ""
|
226 |
|
227 |
#. translators: For this post or page
|
228 |
+
#: ad-inserter.php:2781
|
229 |
msgctxt "Page"
|
230 |
msgid "For this"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: ad-inserter.php:2782
|
234 |
msgctxt "Post"
|
235 |
msgid "For this"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: ad-inserter.php:2794
|
239 |
msgctxt "Enabled/disabled on all"
|
240 |
msgid "pages"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: ad-inserter.php:2797
|
244 |
msgctxt "Enabled/disabled on all"
|
245 |
msgid "posts"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: ad-inserter.php:2814 ad-inserter.php:2826 strings.php:161
|
249 |
msgid "Enabled"
|
250 |
msgstr ""
|
251 |
|
252 |
#. translators: Menu items
|
253 |
+
#: ad-inserter.php:2814 ad-inserter.php:2826
|
254 |
#: includes/functions-check-now.php:2401 includes/functions.old.php:2326
|
255 |
#: includes/functions.php:2458 strings.php:16
|
256 |
msgid "Disabled"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: ad-inserter.php:2816
|
260 |
msgid "No individual exceptions"
|
261 |
msgstr ""
|
262 |
|
263 |
#. translators: Not enabled for pages or posts
|
264 |
+
#: ad-inserter.php:2818
|
265 |
msgid "Not enabled for"
|
266 |
msgstr ""
|
267 |
|
268 |
#. translators: No individual exceptions enabled for pages or posts
|
269 |
+
#: ad-inserter.php:2846
|
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:2851
|
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:2854 settings.php:1136
|
281 |
msgid "Tag / Archive pages"
|
282 |
msgstr ""
|
283 |
|
284 |
+
#: ad-inserter.php:2856
|
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:2857
|
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:2859
|
297 |
msgid "For more information check page %s"
|
298 |
msgstr ""
|
299 |
|
300 |
#. translators: Ad Inserter Exceptions documentation page
|
301 |
+
#: ad-inserter.php:2861
|
302 |
msgid "Individual Exceptions"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: ad-inserter.php:2908
|
306 |
msgid "STATIC PAGE"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: ad-inserter.php:2911
|
310 |
msgid "POST"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: ad-inserter.php:2914
|
314 |
msgid "HOMEPAGE"
|
315 |
msgstr ""
|
316 |
|
317 |
+
#: ad-inserter.php:2917
|
318 |
msgid "CATEGORY PAGE"
|
319 |
msgstr ""
|
320 |
|
321 |
+
#: ad-inserter.php:2920
|
322 |
msgid "SEARCH PAGE"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: ad-inserter.php:2923
|
326 |
msgid "ARCHIVE PAGE"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: ad-inserter.php:2926
|
330 |
msgid "ERROR 404 PAGE"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: ad-inserter.php:2929
|
334 |
msgid "AJAX CALL"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: ad-inserter.php:2932
|
338 |
msgid "UNKNOWN PAGE TYPE"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: ad-inserter.php:2949
|
342 |
msgid "Click to delete ad blocking detection cokies"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: ad-inserter.php:2950
|
346 |
msgid "AD BLOCKING STATUS UNKNOWN"
|
347 |
msgstr ""
|
348 |
|
349 |
#. translators: %s: AdSense Auto Ads
|
350 |
+
#: ad-inserter.php:2979
|
351 |
msgid ""
|
352 |
"Code for %s detected - Code will automatically insert AdSense ads at optimal "
|
353 |
"positions"
|
354 |
msgstr ""
|
355 |
|
356 |
+
#: ad-inserter.php:3128
|
357 |
msgid "Code for insertion"
|
358 |
msgstr ""
|
359 |
|
360 |
+
#: ad-inserter.php:3128
|
361 |
msgid "character"
|
362 |
msgid_plural "characters"
|
363 |
msgstr[0] ""
|
364 |
msgstr[1] ""
|
365 |
|
366 |
+
#: ad-inserter.php:3185
|
367 |
msgid "Header code"
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: ad-inserter.php:3185
|
371 |
msgctxt "Header code"
|
372 |
msgid "DISABLED"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: ad-inserter.php:3185 ad-inserter.php:3463
|
376 |
msgid "character inserted"
|
377 |
msgid_plural "characters inserted"
|
378 |
msgstr[0] ""
|
379 |
msgstr[1] ""
|
380 |
|
381 |
+
#: ad-inserter.php:3463
|
382 |
msgid "Footer code"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: ad-inserter.php:3463
|
386 |
msgctxt "Footer code"
|
387 |
msgid "DISABLED"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: ad-inserter.php:3469
|
391 |
msgid "JAVASCRIPT NOT WORKING"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: ad-inserter.php:3469
|
395 |
msgid "NO JAVASCRIPT ERRORS"
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: ad-inserter.php:3469
|
399 |
msgid "JAVASCRIPT ERRORS"
|
400 |
msgstr ""
|
401 |
|
402 |
#. translators: block name (block with default settings)
|
403 |
+
#: ad-inserter.php:5856
|
404 |
msgctxt "Block name"
|
405 |
msgid "Default"
|
406 |
msgstr ""
|
407 |
|
408 |
#. translators: %s: Ad Inserter
|
409 |
+
#: ad-inserter.php:6520
|
410 |
msgid "Error importing %s settings."
|
411 |
msgstr ""
|
412 |
|
413 |
+
#: ad-inserter.php:6521
|
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:6574
|
420 |
msgid "Settings saved."
|
421 |
msgstr ""
|
422 |
|
423 |
#. translators: %s: Ad Inserter
|
424 |
+
#: ad-inserter.php:6576
|
425 |
msgid "Invalid data received - %s settings not saved."
|
426 |
msgstr ""
|
427 |
|
428 |
+
#: ad-inserter.php:6670
|
429 |
msgid "Settings cleared."
|
430 |
msgstr ""
|
431 |
|
432 |
#. Translators: Post/Static page must have between X and Y words
|
433 |
+
#: ad-inserter.php:7036 ad-inserter.php:7038 ad-inserter.php:7061
|
434 |
+
#: settings.php:2154
|
435 |
msgid "word"
|
436 |
msgid_plural "words"
|
437 |
msgstr[0] ""
|
438 |
msgstr[1] ""
|
439 |
|
440 |
+
#: ad-inserter.php:7075 ad-inserter.php:7194
|
441 |
msgid "HTML TAGS REMOVED"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: ad-inserter.php:7270
|
445 |
msgid "BEFORE COMMENTS"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: ad-inserter.php:7387
|
449 |
msgid "AFTER COMMENTS"
|
450 |
msgstr ""
|
451 |
|
452 |
+
#: ad-inserter.php:7459
|
453 |
msgid "BETWEEN COMMENTS"
|
454 |
msgstr ""
|
455 |
|
456 |
+
#: ad-inserter.php:9270
|
457 |
msgid "requires WordPress 4.6 or newer"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: ad-inserter.php:9270
|
461 |
msgid "Please update!"
|
462 |
msgstr ""
|
463 |
|
464 |
#. translators: Opt-in message: Thank you for installing Ad Inserter (plugin
|
465 |
#. name with HTML tags will be added)
|
466 |
+
#: ad-inserter.php:9525
|
467 |
msgid "Thank you for installing"
|
468 |
msgstr ""
|
469 |
|
470 |
#. translators: Opt-in message: %s: HTML tags
|
471 |
+
#: ad-inserter.php:9527
|
472 |
msgid ""
|
473 |
"We would like to %s track its usage %s on your site. This is completely "
|
474 |
"optional and can be disabled at any time."
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: ad-inserter.php:9529
|
478 |
msgid ""
|
479 |
"We don't record any sensitive data, only information regarding the WordPress "
|
480 |
"environment and plugin usage, which will help us to make improvements to the "
|
482 |
msgstr ""
|
483 |
|
484 |
#. translators: Deactivation message: %s: HTML tags
|
485 |
+
#: ad-inserter.php:9566
|
486 |
msgid ""
|
487 |
"Looking for %s Documentation, %s %s Common Settings, %s %s Quick Start %s or "
|
488 |
"help for %s AdSense ads? %s The plugin doesn't work with your theme? %s Let "
|
490 |
msgstr ""
|
491 |
|
492 |
#. translators: %s: Ad Inserter
|
493 |
+
#: ad-inserter.php:9610
|
494 |
msgid "%s block."
|
495 |
msgstr ""
|
496 |
|
497 |
#. translators: widget title
|
498 |
+
#: ad-inserter.php:9626 ad-inserter.php:9661
|
499 |
msgid "Processing log"
|
500 |
msgstr ""
|
501 |
|
502 |
#. translators: widget title
|
503 |
+
#: ad-inserter.php:9628 ad-inserter.php:9662
|
504 |
msgid "Dummy widget"
|
505 |
msgstr ""
|
506 |
|
507 |
#. translators: widget title
|
508 |
+
#: ad-inserter.php:9630 ad-inserter.php:9660
|
509 |
msgid "Debugging tools"
|
510 |
msgstr ""
|
511 |
|
512 |
#. translators: block status (widget title)
|
513 |
+
#: ad-inserter.php:9637
|
514 |
msgctxt "block"
|
515 |
msgid "PAUSED"
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: ad-inserter.php:9638
|
519 |
msgid "WIDGET DISABLED"
|
520 |
msgstr ""
|
521 |
|
522 |
+
#: ad-inserter.php:9639
|
523 |
msgid "Unknown block"
|
524 |
msgstr ""
|
525 |
|
526 |
+
#: ad-inserter.php:9647 includes/functions-check-now.php:3261
|
527 |
+
#: includes/functions.old.php:3186 includes/functions.php:3333
|
528 |
+
#: settings.php:1188
|
529 |
msgid "Title"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: ad-inserter.php:9669
|
533 |
msgctxt "Widget"
|
534 |
msgid "Sticky"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: ad-inserter.php:9718
|
538 |
msgid ""
|
539 |
"Ad Inserter can't be used while Ad Inserter Pro is active! To activate Ad "
|
540 |
"Inserter you need to first deactivate Ad Inserter Pro."
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: ad-inserter.php:9719
|
544 |
msgid ""
|
545 |
"<strong>WARNING</strong>: Please note that saving settings in Ad Inserter "
|
546 |
"will clear all settings that are available only in the Pro version "
|
548 |
msgstr ""
|
549 |
|
550 |
#. translators: %s: Ad Inserter
|
551 |
+
#: class.php:538 class.php:547 class.php:550
|
552 |
msgid "PHP error in %s block"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: class.php:2073
|
556 |
msgid "Counters"
|
557 |
msgstr ""
|
558 |
|
559 |
+
#: class.php:2077
|
560 |
msgid "Content"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: class.php:2082
|
564 |
msgid "Excerpt"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: class.php:2087 strings.php:17
|
568 |
msgid "Before post"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: class.php:2092 strings.php:18
|
572 |
msgid "After post"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: class.php:2097 strings.php:25
|
576 |
msgid "Between posts"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: class.php:2102 settings.php:1897 settings.php:4206
|
580 |
msgid "Widget"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: class.php:2107 settings.php:4204
|
584 |
msgid "PHP function call"
|
585 |
msgstr ""
|
586 |
|
587 |
#. Translators: %s: custom hook name
|
588 |
+
#: class.php:2117
|
589 |
msgid "Custom hook %s call"
|
590 |
msgstr ""
|
591 |
|
592 |
+
#: class.php:2153
|
593 |
msgid "AJAX REQUEST"
|
594 |
msgstr ""
|
595 |
|
596 |
+
#: class.php:2156
|
597 |
msgid "Ajax request for block in iframe"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: class.php:2190
|
601 |
msgid "Ajax request url, click to open it in a new tab"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: class.php:2193
|
605 |
msgid "IN THE LOOP"
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: class.php:2193
|
609 |
msgid "YES"
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: class.php:2193
|
613 |
msgid "NO"
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: class.php:2229
|
617 |
msgid "BLOCK"
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: class.php:2229
|
621 |
msgctxt "block or widget"
|
622 |
msgid "INSERTED BUT NOT VISIBLE"
|
623 |
msgstr ""
|
624 |
|
625 |
+
#: class.php:2397
|
626 |
msgctxt "viewports"
|
627 |
msgid "ALL"
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: class.php:2430 class.php:2472 class.php:3727 strings.php:267
|
631 |
msgctxt "Block"
|
632 |
msgid "HIDDEN"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: class.php:2479 class.php:3730 strings.php:266
|
636 |
msgctxt "Block"
|
637 |
msgid "VISIBLE"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: class.php:2984 class.php:3054
|
641 |
msgid "ACTIVE GROUPS"
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: class.php:3426
|
645 |
+
msgid "start='%s' end='%s' days='%s' type='%s'"
|
646 |
+
msgstr ""
|
647 |
+
|
648 |
#. translators: %s: list parameters and type
|
649 |
+
#: class.php:3434
|
650 |
msgid "parameters='%s' type='%s'"
|
651 |
msgstr ""
|
652 |
|
653 |
#. translators: %s: list parameters and type
|
654 |
+
#: class.php:3436
|
655 |
msgid "referers='%s' type='%s'"
|
656 |
msgstr ""
|
657 |
|
658 |
#. translators: %s: list parameters and type
|
659 |
+
#: class.php:3438
|
660 |
msgid "clients='%s' type='%s'"
|
661 |
msgstr ""
|
662 |
|
663 |
#. translators: %s: list parameters and type
|
664 |
+
#: class.php:3610
|
665 |
msgid "countries='%s' type='%s'"
|
666 |
msgstr ""
|
667 |
|
668 |
#. translators: %s: list parameters and type
|
669 |
+
#: class.php:3612
|
670 |
msgid "ip addresses='%s' type='%s'"
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: class.php:3727 class.php:3730
|
674 |
msgid "viewport='%s' type='%s'"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: class.php:4113 strings.php:249
|
678 |
msgid "BEFORE"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: class.php:4121 strings.php:251
|
682 |
msgid "PREPEND CONTENT"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: class.php:4125 strings.php:252
|
686 |
msgid "APPEND CONTENT"
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: class.php:4129 strings.php:253
|
690 |
msgid "REPLACE CONTENT"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: class.php:4133 strings.php:254
|
694 |
msgid "REPLACE ELEMENT"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: class.php:4144 strings.php:250
|
698 |
msgid "AFTER"
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: class.php:4229 includes/preview.php:2045 includes/preview.php:2082
|
702 |
msgid "Code"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: class.php:4232
|
706 |
msgid "for block"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: class.php:7451 class.php:7503
|
710 |
msgctxt "category name"
|
711 |
msgid "Uncategorized"
|
712 |
msgstr ""
|
713 |
|
714 |
+
#: class.php:8041
|
715 |
msgid ""
|
716 |
"ERROR: class DOMDocument not found. Your webhost needs to install the DOM "
|
717 |
"extension for PHP."
|
727 |
msgstr ""
|
728 |
|
729 |
#: includes/editor.php:9 includes/placeholders.php:354
|
730 |
+
#: includes/preview.php:1991 settings.php:3598 strings.php:210 strings.php:255
|
731 |
msgid "Cancel"
|
732 |
msgstr ""
|
733 |
|
742 |
"blockers."
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: includes/editor.php:264 settings.php:277
|
746 |
msgid "Error loading page"
|
747 |
msgstr ""
|
748 |
|
818 |
msgstr ""
|
819 |
|
820 |
#: includes/functions-check-now.php:451 includes/functions.old.php:440
|
821 |
+
#: includes/functions.php:450 settings.php:1339 settings.php:2811
|
822 |
msgid "Open HTML element selector"
|
823 |
msgstr ""
|
824 |
|
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:518 includes/functions.php:3107
|
868 |
msgid "Toggle Statistics"
|
869 |
msgstr ""
|
870 |
|
891 |
msgstr ""
|
892 |
|
893 |
#: includes/functions-check-now.php:555 includes/functions.old.php:536
|
894 |
+
#: includes/functions.php:558 settings.php:1093 settings.php:2255
|
895 |
msgid "Save Settings"
|
896 |
msgstr ""
|
897 |
|
988 |
msgstr ""
|
989 |
|
990 |
#: includes/functions-check-now.php:786 includes/functions.old.php:767
|
991 |
+
#: includes/functions.php:789 settings.php:3533 settings.php:3569
|
992 |
+
#: settings.php:3611 strings.php:220
|
993 |
msgid "Loading..."
|
994 |
msgstr ""
|
995 |
|
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:968 includes/functions.php:3072
|
1170 |
msgid "Toggle country editor"
|
1171 |
msgstr ""
|
1172 |
|
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:975 includes/functions.php:3075
|
1181 |
msgid "Comma separated country ISO Alpha-2 codes"
|
1182 |
msgstr ""
|
1183 |
|
1329 |
msgstr ""
|
1330 |
|
1331 |
#: includes/functions-check-now.php:2334 includes/functions.old.php:2259
|
1332 |
+
#: includes/functions.php:2394 settings.php:4193
|
1333 |
msgid "Exceptions"
|
1334 |
msgstr ""
|
1335 |
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/functions-check-now.php:2344 includes/functions.old.php:2269
|
1342 |
+
#: includes/functions.php:2404 settings.php:4199
|
1343 |
msgid "Tracking"
|
1344 |
msgstr ""
|
1345 |
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/functions-check-now.php:2396 includes/functions.old.php:2321
|
1365 |
+
#: includes/functions.php:2474 settings.php:1421 settings.php:1436
|
1366 |
+
#: settings.php:1526 settings.php:2152
|
1367 |
msgid "and"
|
1368 |
msgstr ""
|
1369 |
|
1413 |
msgstr ""
|
1414 |
|
1415 |
#: includes/functions-check-now.php:2449 includes/functions.old.php:2374
|
1416 |
+
#: includes/functions.php:2518 includes/preview.php:2000 settings.php:1088
|
1417 |
+
#: settings.php:2873
|
1418 |
msgid "Preview"
|
1419 |
msgstr ""
|
1420 |
|
1421 |
#: includes/functions-check-now.php:2463 includes/functions.old.php:2388
|
1422 |
+
#: includes/functions.php:2532 settings.php:4200
|
1423 |
msgid "Limits"
|
1424 |
msgstr ""
|
1425 |
|
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:2537 includes/functions.php:4519
|
1430 |
+
#: includes/functions.php:4582 settings.php:2302
|
1431 |
msgid "Ad Blocking"
|
1432 |
msgstr ""
|
1433 |
|
1492 |
#: includes/functions.php:2664 includes/functions.php:2674
|
1493 |
#: includes/functions.php:2693 includes/functions.php:2703
|
1494 |
#: includes/functions.php:2749 includes/functions.php:2758
|
1495 |
+
#: includes/functions.php:2776 includes/functions.php:2785 settings.php:2073
|
1496 |
msgid "Max"
|
1497 |
msgstr ""
|
1498 |
|
1556 |
#: includes/functions.old.php:2758 includes/functions.old.php:3086
|
1557 |
#: includes/functions.php:2684 includes/functions.php:2713
|
1558 |
#: includes/functions.php:2768 includes/functions.php:2795
|
1559 |
+
#: includes/functions.php:2901 includes/functions.php:3233 strings.php:201
|
1560 |
#: strings.php:202 strings.php:203 strings.php:204 strings.php:205
|
1561 |
#: strings.php:206
|
1562 |
msgid "day"
|
1746 |
|
1747 |
#. Translators: %s MaxMind
|
1748 |
#: includes/functions-check-now.php:2935 includes/functions.old.php:2860
|
1749 |
+
#: includes/functions.php:3007
|
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:3018
|
1755 |
msgid "IP geolocation database"
|
1756 |
msgstr ""
|
1757 |
|
1758 |
#: includes/functions-check-now.php:2949 includes/functions.old.php:2874
|
1759 |
+
#: includes/functions.php:3021
|
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:3032
|
1765 |
msgid "Automatic database updates"
|
1766 |
msgstr ""
|
1767 |
|
1768 |
#: includes/functions-check-now.php:2963 includes/functions.old.php:2888
|
1769 |
+
#: includes/functions.php:3035
|
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:3043
|
1777 |
msgid "Database"
|
1778 |
msgstr ""
|
1779 |
|
1780 |
#: includes/functions-check-now.php:2974 includes/functions.old.php:2899
|
1781 |
+
#: includes/functions.php:3046
|
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:3064
|
1790 |
msgid "Group %d"
|
1791 |
msgstr ""
|
1792 |
|
1793 |
#: includes/functions-check-now.php:2998 includes/functions.old.php:2923
|
1794 |
+
#: includes/functions.php:3070
|
1795 |
msgid "countries"
|
1796 |
msgstr ""
|
1797 |
|
1798 |
#: includes/functions-check-now.php:3043 includes/functions.old.php:2968
|
1799 |
+
#: includes/functions.php:3115
|
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:3122
|
1807 |
msgid "Generate report"
|
1808 |
msgstr ""
|
1809 |
|
1810 |
#: includes/functions-check-now.php:3058 includes/functions.old.php:2983
|
1811 |
+
#: includes/functions.php:3130
|
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:3131 settings.php:2761
|
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:3147
|
1823 |
msgid "Internal"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
#: includes/functions-check-now.php:3079 includes/functions.old.php:3004
|
1827 |
+
#: includes/functions.php:3151
|
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:3156
|
1833 |
msgid "External"
|
1834 |
msgstr ""
|
1835 |
|
1836 |
#: includes/functions-check-now.php:3088 includes/functions.old.php:3013
|
1837 |
+
#: includes/functions.php:3160
|
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:3165
|
1845 |
msgid "Track Pageviews"
|
1846 |
msgstr ""
|
1847 |
|
1848 |
#: includes/functions-check-now.php:3099 includes/functions.old.php:3024
|
1849 |
+
#: includes/functions.php:3171
|
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:3181
|
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:3187
|
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:3197
|
1865 |
msgid "Click Detection"
|
1866 |
msgstr ""
|
1867 |
|
1868 |
#: includes/functions-check-now.php:3131 includes/functions.old.php:3056
|
1869 |
+
#: includes/functions.php:3203
|
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:3222
|
1877 |
msgid "Click fraud protection"
|
1878 |
msgstr ""
|
1879 |
|
1880 |
#: includes/functions-check-now.php:3154 includes/functions.old.php:3079
|
1881 |
+
#: includes/functions.php:3226
|
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:3232
|
1887 |
msgid "Protection time"
|
1888 |
msgstr ""
|
1889 |
|
1890 |
#: includes/functions-check-now.php:3161 includes/functions.old.php:3086
|
1891 |
+
#: includes/functions.php:3233
|
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:3252
|
1899 |
msgid "Report header image"
|
1900 |
msgstr ""
|
1901 |
|
1902 |
#: includes/functions-check-now.php:3183 includes/functions.old.php:3108
|
1903 |
+
#: includes/functions.php:3255
|
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 |
msgstr ""
|
1909 |
|
1910 |
#: includes/functions-check-now.php:3184 includes/functions.old.php:3109
|
1911 |
+
#: includes/functions.php:3256 strings.php:232
|
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:3261
|
1917 |
msgid "Report header title"
|
1918 |
msgstr ""
|
1919 |
|
1920 |
#: includes/functions-check-now.php:3192 includes/functions.old.php:3117
|
1921 |
+
#: includes/functions.php:3264
|
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:3269
|
1929 |
msgid "Report header description"
|
1930 |
msgstr ""
|
1931 |
|
1932 |
#: includes/functions-check-now.php:3200 includes/functions.old.php:3125
|
1933 |
+
#: includes/functions.php:3272
|
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:3277
|
1941 |
msgid "Report footer"
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: includes/functions-check-now.php:3208 includes/functions.old.php:3133
|
1945 |
+
#: includes/functions.php:3280
|
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:3285
|
1953 |
msgid "Public report key"
|
1954 |
msgstr ""
|
1955 |
|
1956 |
#: includes/functions-check-now.php:3216 includes/functions.old.php:3141
|
1957 |
+
#: includes/functions.php:3288
|
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:3320
|
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:3321 settings.php:1191
|
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:3328
|
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:3328
|
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:3333 settings.php:3842 settings.php:4276
|
1983 |
msgid "Type"
|
1984 |
msgstr ""
|
1985 |
|
1986 |
#: includes/functions-check-now.php:3279 includes/functions.old.php:3204
|
1987 |
+
#: includes/functions.php:3351
|
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:3352 includes/functions.php:3359
|
1995 |
+
#: includes/functions.php:3363 includes/placeholders.php:353
|
1996 |
+
#: includes/preview.php:2306 settings.php:1325 settings.php:3602
|
1997 |
msgid "Edit"
|
1998 |
msgstr ""
|
1999 |
|
2000 |
#: includes/functions-check-now.php:3310 includes/functions.old.php:3235
|
2001 |
+
#: includes/functions.php:3382
|
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:3383
|
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:3396
|
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:3407
|
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:3412
|
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:3412
|
2029 |
msgid "Widgets"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
#: includes/functions-check-now.php:3345 includes/functions.old.php:3270
|
2033 |
+
#: includes/functions.php:3417
|
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:3417
|
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:3422
|
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:3422
|
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:3427
|
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:3427
|
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:3432
|
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:3432
|
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:3448 settings.php:2760
|
2077 |
msgid "Ad Blocking Detection"
|
2078 |
msgstr ""
|
2079 |
|
2080 |
#: includes/functions-check-now.php:3377 includes/functions.old.php:3302
|
2081 |
+
#: includes/functions.php:3454
|
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 |
#: 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:4151 includes/functions.php:4272
|
2093 |
#: includes/functions.php:4292
|
2094 |
msgid "AD BLOCKING"
|
2095 |
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:4152 includes/functions.php:4198
|
2102 |
#: includes/functions.php:4266 includes/functions.php:4293
|
2103 |
msgid "BLOCK INSERTED BUT NOT VISIBLE"
|
2104 |
msgstr ""
|
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:4155 includes/functions.php:4265
|
2110 |
#: includes/functions.php:4299
|
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:4197 includes/functions.php:4204
|
2117 |
msgid "AD BLOCKING REPLACEMENT"
|
2118 |
msgstr ""
|
2119 |
|
2269 |
msgid "Invalid %s version. Continue?"
|
2270 |
msgstr ""
|
2271 |
|
2272 |
+
#: includes/functions.php:944 includes/functions.php:980 settings.php:1652
|
2273 |
+
#: settings.php:1683 settings.php:1714 settings.php:1745 settings.php:1776
|
2274 |
+
#: settings.php:1807 settings.php:1837 settings.php:1867
|
2275 |
msgid "Click to select black or white list"
|
2276 |
msgstr ""
|
2277 |
|
2322 |
msgstr ""
|
2323 |
|
2324 |
#. translators: %s: Ad Inserter Pro
|
2325 |
+
#: includes/functions.php:3437
|
2326 |
msgid "Show link to %s settings page for each site on the Sites page"
|
2327 |
msgstr ""
|
2328 |
|
2329 |
#. translators: %s: Ad Inserter Pro
|
2330 |
+
#: includes/functions.php:3437
|
2331 |
msgid "Show link to %s on the Sites page"
|
2332 |
msgstr ""
|
2333 |
|
2355 |
msgid "Placeholder"
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: includes/placeholders.php:363 settings.php:934 settings.php:4277
|
2359 |
msgid "Size"
|
2360 |
msgstr ""
|
2361 |
|
2463 |
msgid "Ad Blocking Detected Message Preview"
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: includes/preview-adb.php:348 settings.php:2886
|
2467 |
msgid "Message CSS"
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: includes/preview-adb.php:353 settings.php:2894
|
2471 |
msgid "Overlay CSS"
|
2472 |
msgstr ""
|
2473 |
|
2503 |
msgid "background"
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: includes/preview.php:2110 includes/preview.php:2261 settings.php:1286
|
2507 |
msgid "Alignment"
|
2508 |
msgstr ""
|
2509 |
|
2601 |
"the values to those of the current block."
|
2602 |
msgstr ""
|
2603 |
|
2604 |
+
#: settings.php:188 settings.php:1175
|
2605 |
msgid ""
|
2606 |
"Settings for individual exceptions have been updated. Please check all "
|
2607 |
"blocks that have exceptions and and then save settings."
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: settings.php:230
|
2611 |
msgid "Online documentation"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: settings.php:234 settings.php:769 settings.php:2269
|
2615 |
msgid "Show AdSense ad units"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: settings.php:243
|
2619 |
msgid "Edit ads.txt file"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: settings.php:246 settings.php:1118
|
2623 |
msgid "Check theme for available positions for automatic insertion"
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: settings.php:248
|
2627 |
msgid "List all blocks"
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: settings.php:255
|
2631 |
msgid "Loaded plugin JavaScript file version"
|
2632 |
msgstr ""
|
2633 |
|
2634 |
#. translators: %s: HTML tags
|
2635 |
+
#: settings.php:257
|
2636 |
msgid ""
|
2637 |
"Wrong or %s missing version parameter %s of the JavaScript file, probably "
|
2638 |
"due to inappropriate caching."
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: settings.php:258
|
2642 |
msgid ""
|
2643 |
"Missing version parameter of the JavaScript file, probably due to "
|
2644 |
"inappropriate caching."
|
2645 |
msgstr ""
|
2646 |
|
2647 |
+
#: settings.php:259
|
2648 |
msgid ""
|
2649 |
"Incompatible (old) JavaScript file loaded, probably due to inappropriate "
|
2650 |
"caching."
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: settings.php:260 settings.php:271
|
2654 |
msgid ""
|
2655 |
"Please delete browser's cache and all other caches used and then reload this "
|
2656 |
"page."
|
2657 |
msgstr ""
|
2658 |
|
2659 |
+
#: settings.php:266
|
2660 |
msgid "Loaded plugin CSS file version"
|
2661 |
msgstr ""
|
2662 |
|
2663 |
#. translators: %s: HTML tags
|
2664 |
+
#: settings.php:268
|
2665 |
msgid ""
|
2666 |
"Wrong or %s missing version parameter %s of the CSS file, probably due to "
|
2667 |
"inappropriate caching."
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: settings.php:269
|
2671 |
msgid ""
|
2672 |
"Missing version parameter of the CSS file, probably due to inappropriate "
|
2673 |
"caching."
|
2674 |
msgstr ""
|
2675 |
|
2676 |
+
#: settings.php:270
|
2677 |
msgid ""
|
2678 |
"Incompatible (old) CSS file loaded, probably due to inappropriate caching."
|
2679 |
msgstr ""
|
2680 |
|
2681 |
+
#: settings.php:277 settings.php:303
|
2682 |
msgid "WARNING"
|
2683 |
msgstr ""
|
2684 |
|
2685 |
#. translators: %s: HTML tags
|
2686 |
+
#: settings.php:279
|
2687 |
msgid "Page may %s not be loaded properly. %s"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: settings.php:280
|
2691 |
msgid ""
|
2692 |
"Check ad blocking software that may block CSS, JavaScript or image files."
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: settings.php:289
|
2696 |
msgid "SAFE MODE"
|
2697 |
msgstr ""
|
2698 |
|
2699 |
#. translators: %s: HTML tags
|
2700 |
+
#: settings.php:291
|
2701 |
msgid "Page is loaded in %s safe mode. %s Not all scripts are loaded."
|
2702 |
msgstr ""
|
2703 |
|
2704 |
+
#: settings.php:303
|
2705 |
msgid ""
|
2706 |
"To disable debugging functions and to enable insertions go to tab [*] / tab "
|
2707 |
"Debugging"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: settings.php:305
|
2711 |
msgid "Debugging functions enabled - some code is not inserted"
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: settings.php:322
|
2715 |
msgid "Group name"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: settings.php:323
|
2719 |
msgid "Option name"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: settings.php:329
|
2723 |
msgid "Share"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: settings.php:332
|
2727 |
msgid ""
|
2728 |
"Option share in percents - 0 means option is disabled, if share for one "
|
2729 |
"option is not defined it will be calculated automatically. Leave all share "
|
2730 |
"fields empty for equal option shares."
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: settings.php:335
|
2734 |
msgid "Time"
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: settings.php:338
|
2738 |
msgid ""
|
2739 |
"Option time in seconds - 0 means option is disabled and will be skipped. "
|
2740 |
"Leave all time fields empty for no timed rotation."
|
2741 |
msgstr ""
|
2742 |
|
2743 |
+
#: settings.php:490
|
2744 |
msgid "General Settings"
|
2745 |
msgstr ""
|
2746 |
|
2747 |
+
#: settings.php:717 settings.php:2613 settings.php:2680 settings.php:2866
|
2748 |
msgid "Toggle Syntax Highlighting / Simple editor for mobile devices"
|
2749 |
msgstr ""
|
2750 |
|
2751 |
+
#: settings.php:724
|
2752 |
msgid "Toggle tools"
|
2753 |
msgstr ""
|
2754 |
|
2755 |
+
#: settings.php:732
|
2756 |
msgid "Process PHP code in block"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
+
#: settings.php:739
|
2760 |
msgid "Disable insertion of this block"
|
2761 |
msgstr ""
|
2762 |
|
2763 |
+
#: settings.php:751
|
2764 |
msgid "Toggle code generator"
|
2765 |
msgstr ""
|
2766 |
|
2767 |
+
#: settings.php:755
|
2768 |
msgid "Toggle rotation editor"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
+
#: settings.php:759
|
2772 |
msgid "Open visual HTML editor"
|
2773 |
msgstr ""
|
2774 |
|
2775 |
+
#: settings.php:778
|
2776 |
msgid "Clear block"
|
2777 |
msgstr ""
|
2778 |
|
2779 |
+
#: settings.php:783 settings.php:4149
|
2780 |
msgid "Copy block"
|
2781 |
msgstr ""
|
2782 |
|
2783 |
+
#: settings.php:787
|
2784 |
msgid "Paste name"
|
2785 |
msgstr ""
|
2786 |
|
2787 |
+
#: settings.php:791
|
2788 |
msgid "Paste code"
|
2789 |
msgstr ""
|
2790 |
|
2791 |
+
#: settings.php:795
|
2792 |
msgid "Paste settings"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
+
#: settings.php:799
|
2796 |
msgid "Paste block (name, code and settings)"
|
2797 |
msgstr ""
|
2798 |
|
2799 |
+
#: settings.php:818
|
2800 |
msgid "Rotation groups"
|
2801 |
msgstr ""
|
2802 |
|
2803 |
+
#: settings.php:822
|
2804 |
msgid "Remove option"
|
2805 |
msgstr ""
|
2806 |
|
2807 |
+
#: settings.php:826
|
2808 |
msgid "Add option"
|
2809 |
msgstr ""
|
2810 |
|
2811 |
+
#: settings.php:841
|
2812 |
msgid "Import code"
|
2813 |
msgstr ""
|
2814 |
|
2815 |
+
#: settings.php:845
|
2816 |
msgid "Generate code"
|
2817 |
msgstr ""
|
2818 |
|
2819 |
+
#: settings.php:850
|
2820 |
msgid "Banner"
|
2821 |
msgstr ""
|
2822 |
|
2823 |
+
#: settings.php:861
|
2824 |
msgid "Image"
|
2825 |
msgstr ""
|
2826 |
|
2827 |
+
#: settings.php:869
|
2828 |
msgid "Link"
|
2829 |
msgstr ""
|
2830 |
|
2831 |
+
#: settings.php:880
|
2832 |
msgid "Open link in a new tab"
|
2833 |
msgstr ""
|
2834 |
|
2835 |
+
#: settings.php:881
|
2836 |
msgid "Select Image"
|
2837 |
msgstr ""
|
2838 |
|
2839 |
+
#: settings.php:882
|
2840 |
msgid "Select Placeholder"
|
2841 |
msgstr ""
|
2842 |
|
2843 |
+
#: settings.php:894
|
2844 |
msgid "Comment"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: settings.php:903
|
2848 |
msgctxt "AdSense"
|
2849 |
msgid "Publisher ID"
|
2850 |
msgstr ""
|
2851 |
|
2852 |
+
#: settings.php:912
|
2853 |
msgctxt "AdSense"
|
2854 |
msgid "Ad Slot ID"
|
2855 |
msgstr ""
|
2856 |
|
2857 |
+
#: settings.php:921
|
2858 |
msgid "Ad Type"
|
2859 |
msgstr ""
|
2860 |
|
2861 |
+
#: settings.php:946
|
2862 |
msgid "AMP Ad"
|
2863 |
msgstr ""
|
2864 |
|
2865 |
+
#: settings.php:964
|
2866 |
msgid "Show ad units from your AdSense account"
|
2867 |
msgstr ""
|
2868 |
|
2869 |
+
#: settings.php:964
|
2870 |
msgid "AdSense ad units"
|
2871 |
msgstr ""
|
2872 |
|
2873 |
+
#: settings.php:981
|
2874 |
msgctxt "AdSense"
|
2875 |
msgid "Layout"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: settings.php:990
|
2879 |
msgctxt "AdSense"
|
2880 |
msgid "Layout Key"
|
2881 |
msgstr ""
|
2882 |
|
2883 |
+
#: settings.php:1000
|
2884 |
msgid "Full width"
|
2885 |
msgstr ""
|
2886 |
|
2887 |
+
#: settings.php:1002
|
2888 |
msgctxt "Full width"
|
2889 |
msgid "Enabled"
|
2890 |
msgstr ""
|
2891 |
|
2892 |
+
#: settings.php:1003
|
2893 |
msgctxt "Full width"
|
2894 |
msgid "Disabled"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: settings.php:1084
|
2898 |
msgid ""
|
2899 |
"White/Black-list Category, Tag, Taxonomy, Post ID, Url, Url parameter, "
|
2900 |
"Cookie or Referer (domain)"
|
2901 |
msgstr ""
|
2902 |
|
2903 |
+
#: settings.php:1084
|
2904 |
msgid "Lists"
|
2905 |
msgstr ""
|
2906 |
|
2907 |
+
#: settings.php:1085
|
2908 |
msgid "Widget, Shortcode and PHP function call"
|
2909 |
msgstr ""
|
2910 |
|
2911 |
+
#: settings.php:1085
|
2912 |
msgid "Manual"
|
2913 |
msgstr ""
|
2914 |
|
2915 |
+
#: settings.php:1086
|
2916 |
msgid "Client/Server-side Device Detection (Desktop, Tablet, Phone,...)"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: settings.php:1086
|
2920 |
msgid "Devices"
|
2921 |
msgstr ""
|
2922 |
|
2923 |
+
#: settings.php:1087
|
2924 |
msgid ""
|
2925 |
"Check for user status, Limit insertions (error 404 page, Ajax requests, RSS "
|
2926 |
"feeds), Filter, Scheduling, General tag"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#: settings.php:1087
|
2930 |
msgid "Misc"
|
2931 |
msgstr ""
|
2932 |
|
2933 |
+
#: settings.php:1088
|
2934 |
msgid "Preview code and alignment"
|
2935 |
msgstr ""
|
2936 |
|
2937 |
+
#: settings.php:1091 settings.php:2253
|
2938 |
msgid ""
|
2939 |
"Rotation editor active - rotation code not generated! Make sure no rotation "
|
2940 |
"editor is active before saving settings."
|
2941 |
msgstr ""
|
2942 |
|
2943 |
+
#: settings.php:1104 settings.php:1105
|
2944 |
msgid "Enable insertion on posts"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: settings.php:1105 settings.php:3414
|
2948 |
msgid "Posts"
|
2949 |
msgstr ""
|
2950 |
|
2951 |
+
#: settings.php:1109 settings.php:1110
|
2952 |
msgid ""
|
2953 |
"Enable insertion on homepage: latest posts (including on sub-pages), static "
|
2954 |
"page or theme homepage (available positions may depend on hooks used by the "
|
2955 |
"theme)"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: settings.php:1110 settings.php:3416
|
2959 |
msgid "Homepage"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: settings.php:1114 settings.php:1115
|
2963 |
msgid "Enable insertion on category blog pages (including sub-pages)"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: settings.php:1115 settings.php:3417
|
2967 |
msgid "Category pages"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: settings.php:1125 settings.php:1126
|
2971 |
msgid "Enable insertion on static pages"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: settings.php:1126 settings.php:3415
|
2975 |
msgid "Static pages"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: settings.php:1130 settings.php:1131
|
2979 |
msgid "Enable insertion on search blog pages"
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: settings.php:1131 settings.php:3419
|
2983 |
msgid "Search pages"
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: settings.php:1135 settings.php:1136
|
2987 |
msgid "Enable insertion on tag or archive blog pages"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: settings.php:1139
|
2991 |
msgid "Toggle settings for default insertion and list of individual exceptions"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: settings.php:1151
|
2995 |
msgid ""
|
2996 |
"Enable individual post/page exceptions for insertion of this block. They can "
|
2997 |
"be configured on the individual post/page editor page (in the settings below "
|
2998 |
"the editor)."
|
2999 |
msgstr ""
|
3000 |
|
3001 |
+
#: settings.php:1152
|
3002 |
msgid ""
|
3003 |
"Enable individual post/page exceptions for insertion of this block. When "
|
3004 |
"enabled they can be configured on the individual post/page editor page (in "
|
3005 |
"the settings below the editor)."
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: settings.php:1152
|
3009 |
msgid "Use exceptions for individual posts or pages to change insertion"
|
3010 |
msgstr ""
|
3011 |
|
3012 |
#. Translators: Enabled means...
|
3013 |
+
#: settings.php:1160
|
3014 |
msgid ""
|
3015 |
"means the insertion for this block is enabled by default and disabled for "
|
3016 |
"exceptions."
|
3017 |
msgstr ""
|
3018 |
|
3019 |
#. Translators: Disabled means...
|
3020 |
+
#: settings.php:1161
|
3021 |
msgid ""
|
3022 |
"means the insertion for this block is disabled by default and enabled for "
|
3023 |
"exceptions."
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: settings.php:1162
|
3027 |
msgid ""
|
3028 |
"When individual post/page exceptions are enabled they can be configured on "
|
3029 |
"the individual post/page editor page (in the settings below the editor)."
|
3030 |
msgstr ""
|
3031 |
|
3032 |
+
#: settings.php:1170
|
3033 |
msgid ""
|
3034 |
"No exception for post or static page defined. Block will not be inserted."
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: settings.php:1188
|
3038 |
msgctxt "post"
|
3039 |
msgid "Type"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
#. translators: %d: block number
|
3043 |
+
#: settings.php:1190
|
3044 |
msgid "Are you sure you want to clear all exceptions for block %d?"
|
3045 |
msgstr ""
|
3046 |
|
3047 |
+
#: settings.php:1217 settings.php:1365 settings.php:2027
|
3048 |
msgid "Insertion"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: settings.php:1255
|
3052 |
msgid ""
|
3053 |
"Paragraph number or comma separated paragraph numbers: 1 to N means "
|
3054 |
"paragraph number, %N means every N paragraphs, empty means all paragraphs, 0 "
|
3058 |
"negative number means counting from the opposite direction"
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: settings.php:1256
|
3062 |
msgid ""
|
3063 |
"Image number or comma separated image numbers: 1 to N means image number, %N "
|
3064 |
"means every N images, empty means all images, 0 means random image, value "
|
3068 |
"direction"
|
3069 |
msgstr ""
|
3070 |
|
3071 |
+
#: settings.php:1269
|
3072 |
msgid ""
|
3073 |
"Insertion Filter Mirror Setting | Excerpt number or comma separated excerpt "
|
3074 |
"numbers, %N means every N excerpts, empty means all excerpts"
|
3075 |
msgstr ""
|
3076 |
|
3077 |
+
#: settings.php:1270
|
3078 |
msgid ""
|
3079 |
"Insertion Filter Mirror Setting | Post number or comma separated post "
|
3080 |
"numbers, %N means every N posts, empty means all posts"
|
3081 |
msgstr ""
|
3082 |
|
3083 |
+
#: settings.php:1271
|
3084 |
msgid ""
|
3085 |
"Insertion Filter Mirror Setting | Comment number or comma separated comment "
|
3086 |
"numbers, %N means every N comments, empty means all comments"
|
3087 |
msgstr ""
|
3088 |
|
3089 |
+
#: settings.php:1278
|
3090 |
msgid "Toggle paragraph counting settings"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
+
#: settings.php:1279
|
3094 |
msgid "Toggle paragraph clearance settings"
|
3095 |
msgstr ""
|
3096 |
|
3097 |
+
#: settings.php:1282
|
3098 |
msgid "Toggle insertion filter settings"
|
3099 |
msgstr ""
|
3100 |
|
3101 |
+
#: settings.php:1300
|
3102 |
msgid "Toggle insertion and alignment icons"
|
3103 |
msgstr ""
|
3104 |
|
3105 |
+
#: settings.php:1314
|
3106 |
msgid "Custom CSS code for the wrapping div"
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: settings.php:1317 settings.php:1318 settings.php:1319 settings.php:1320
|
3110 |
+
#: settings.php:1321 settings.php:1322
|
3111 |
msgid "CSS code for the wrapping div, click to edit"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: settings.php:1335
|
3115 |
msgid "HTML element"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: settings.php:1348
|
3119 |
msgid "HTML element selector or comma separated list of selectors"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: settings.php:1354 settings.php:2771
|
3123 |
msgid "Action"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: settings.php:1366
|
3127 |
msgid ""
|
3128 |
"Client-side insertion uses JavaScript to insert block when the page loads. "
|
3129 |
"Server-side insertion inserts block when the page is generated but needs "
|
3130 |
"Output buffering enabled."
|
3131 |
msgstr ""
|
3132 |
|
3133 |
+
#: settings.php:1375
|
3134 |
msgid "Code position"
|
3135 |
msgstr ""
|
3136 |
|
3137 |
+
#: settings.php:1376
|
3138 |
msgid ""
|
3139 |
"Page position where the code for client-side insertion will be inserted."
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: settings.php:1391
|
3143 |
msgid "Count"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: settings.php:1397
|
3147 |
msgid "paragraphs with tags"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: settings.php:1403
|
3151 |
msgid "Comma separated HTML tag names, usually only 'p' tags are used"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: settings.php:1412
|
3155 |
msgid "that have between"
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: settings.php:1418
|
3159 |
msgid "Minimum number of paragraph words, leave empty for no limit"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: settings.php:1427
|
3163 |
msgid "Maximum number of paragraph words, leave empty for no limit"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: settings.php:1430
|
3167 |
msgid "words"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: settings.php:1445 settings.php:1504 settings.php:1574 settings.php:1600
|
3171 |
msgid "Comma separated texts"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: settings.php:1458
|
3175 |
msgid ""
|
3176 |
"Count also paragraphs inside these elements - defined on general plugin "
|
3177 |
"settings page - tab [*] / tab General"
|
3178 |
msgstr ""
|
3179 |
|
3180 |
#. Translators: %s: HTML tags
|
3181 |
+
#: settings.php:1464
|
3182 |
msgid "Count inside %s elements"
|
3183 |
msgstr ""
|
3184 |
|
3185 |
#. translators: inside [HTML tags] elements that contain
|
3186 |
+
#: settings.php:1476
|
3187 |
msgid "inside"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: settings.php:1482
|
3191 |
msgid "Comma separated HTML tag names of container elements"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
#. translators: inside [HTML tags] elements that contain
|
3195 |
+
#: settings.php:1491
|
3196 |
msgid "elements that"
|
3197 |
msgstr ""
|
3198 |
|
3199 |
+
#: settings.php:1517 settings.php:2150
|
3200 |
msgid "Post/Static page must have between"
|
3201 |
msgstr ""
|
3202 |
|
3203 |
+
#: settings.php:1523
|
3204 |
msgid "Minimum number of paragraphs, leave empty for no limit"
|
3205 |
msgstr ""
|
3206 |
|
3207 |
+
#: settings.php:1532
|
3208 |
msgid "Maximum number of paragraphs, leave empty for no limit"
|
3209 |
msgstr ""
|
3210 |
|
3211 |
#. Translators: Post/Static page must have between X and Y paragraphs
|
3212 |
+
#: settings.php:1535
|
3213 |
msgid "paragraph"
|
3214 |
msgid_plural "paragraphs"
|
3215 |
msgstr[0] ""
|
3216 |
msgstr[1] ""
|
3217 |
|
3218 |
+
#: settings.php:1543
|
3219 |
msgid "Minimum number of words in paragraphs above"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: settings.php:1549
|
3223 |
msgid ""
|
3224 |
"Used only with automatic insertion After paragraph and empty paragraph "
|
3225 |
"numbers"
|
3226 |
msgstr ""
|
3227 |
|
3228 |
+
#: settings.php:1559 settings.php:1585
|
3229 |
msgid "In"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
+
#: settings.php:1565
|
3233 |
msgid "Number of paragraphs above to check, leave empty to disable checking"
|
3234 |
msgstr ""
|
3235 |
|
3236 |
+
#: settings.php:1568
|
3237 |
msgid "paragraphs above avoid"
|
3238 |
msgstr ""
|
3239 |
|
3240 |
+
#: settings.php:1591
|
3241 |
msgid "Number of paragraphs below to check, leave empty to disable checking"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: settings.php:1594
|
3245 |
msgid "paragraphs below avoid"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: settings.php:1610
|
3249 |
msgid "If text is found"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: settings.php:1617
|
3253 |
msgid "check up to"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: settings.php:1625
|
3257 |
msgctxt "check up to"
|
3258 |
msgid "paragraphs"
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: settings.php:1641
|
3262 |
msgid "Categories"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: settings.php:1644
|
3266 |
msgid "Toggle category editor"
|
3267 |
msgstr ""
|
3268 |
|
3269 |
+
#: settings.php:1647
|
3270 |
msgid "Comma separated category slugs"
|
3271 |
msgstr ""
|
3272 |
|
3273 |
+
#: settings.php:1656
|
3274 |
msgid "Blacklist categories"
|
3275 |
msgstr ""
|
3276 |
|
3277 |
+
#: settings.php:1660
|
3278 |
msgid "Whitelist categories"
|
3279 |
msgstr ""
|
3280 |
|
3281 |
+
#: settings.php:1672
|
3282 |
msgid "Tags"
|
3283 |
msgstr ""
|
3284 |
|
3285 |
+
#: settings.php:1675
|
3286 |
msgid "Toggle tag editor"
|
3287 |
msgstr ""
|
3288 |
|
3289 |
+
#: settings.php:1678
|
3290 |
msgid "Comma separated tag slugs"
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: settings.php:1687
|
3294 |
msgid "Blacklist tags"
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: settings.php:1691
|
3298 |
msgid "Whitelist tags"
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: settings.php:1703
|
3302 |
msgid "Taxonomies"
|
3303 |
msgstr ""
|
3304 |
|
3305 |
+
#: settings.php:1706
|
3306 |
msgid "Toggle taxonomy editor"
|
3307 |
msgstr ""
|
3308 |
|
3309 |
+
#: settings.php:1709
|
3310 |
msgid "Comma separated slugs: taxonomy, term or taxonomy:term"
|
3311 |
msgstr ""
|
3312 |
|
3313 |
+
#: settings.php:1718
|
3314 |
msgid "Blacklist taxonomies"
|
3315 |
msgstr ""
|
3316 |
|
3317 |
+
#: settings.php:1722
|
3318 |
msgid "Whitelist taxonomies"
|
3319 |
msgstr ""
|
3320 |
|
3321 |
+
#: settings.php:1734
|
3322 |
msgid "Post IDs"
|
3323 |
msgstr ""
|
3324 |
|
3325 |
+
#: settings.php:1737
|
3326 |
msgid "Toggle post/page ID editor"
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: settings.php:1740
|
3330 |
msgid "Comma separated post/page IDs"
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: settings.php:1749
|
3334 |
msgid "Blacklist IDs"
|
3335 |
msgstr ""
|
3336 |
|
3337 |
+
#: settings.php:1753
|
3338 |
msgid "Whitelist IDs"
|
3339 |
msgstr ""
|
3340 |
|
3341 |
+
#: settings.php:1765
|
3342 |
msgid "Urls"
|
3343 |
msgstr ""
|
3344 |
|
3345 |
+
#: settings.php:1768
|
3346 |
msgid "Toggle url editor"
|
3347 |
msgstr ""
|
3348 |
|
3349 |
+
#: settings.php:1771
|
3350 |
msgid ""
|
3351 |
"Comma separated urls (page addresses) starting with / after domain name (e."
|
3352 |
"g. /permalink-url, use only when you need to taget a specific url not "
|
3354 |
"start*. *url-pattern*, *url-end)"
|
3355 |
msgstr ""
|
3356 |
|
3357 |
+
#: settings.php:1780
|
3358 |
msgid "Blacklist urls"
|
3359 |
msgstr ""
|
3360 |
|
3361 |
+
#: settings.php:1784
|
3362 |
msgid "Whitelist urls"
|
3363 |
msgstr ""
|
3364 |
|
3365 |
+
#: settings.php:1795
|
3366 |
msgid "Url parameters"
|
3367 |
msgstr ""
|
3368 |
|
3369 |
+
#: settings.php:1799
|
3370 |
msgid "Toggle url parameter and cookie editor"
|
3371 |
msgstr ""
|
3372 |
|
3373 |
+
#: settings.php:1802
|
3374 |
msgid ""
|
3375 |
"Comma separated url query parameters or cookies with optional values (use "
|
3376 |
"'prameter', 'prameter=value', 'cookie' or 'cookie=value')"
|
3377 |
msgstr ""
|
3378 |
|
3379 |
+
#: settings.php:1811
|
3380 |
msgid "Blacklist url parameters"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
+
#: settings.php:1815
|
3384 |
msgid "Whitelist url parameters"
|
3385 |
msgstr ""
|
3386 |
|
3387 |
+
#: settings.php:1826
|
3388 |
msgid "Referrers"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: settings.php:1829
|
3392 |
msgid "Toggle referer editor"
|
3393 |
msgstr ""
|
3394 |
|
3395 |
+
#: settings.php:1832
|
3396 |
msgid ""
|
3397 |
"Comma separated domains, use # for no referrer, you can also use partial "
|
3398 |
"domains with * (domain-start*. *domain-pattern*, *domain-end)"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: settings.php:1841
|
3402 |
msgid "Blacklist referers"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: settings.php:1845
|
3406 |
msgid "Whitelist referers"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: settings.php:1856
|
3410 |
msgid "Clients"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: settings.php:1859
|
3414 |
msgid "Toggle client editor"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
+
#: settings.php:1862
|
3418 |
msgid "Comma separated names (operating systems, browsers, devices)"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
+
#: settings.php:1871
|
3422 |
msgid "Blacklist clients"
|
3423 |
msgstr ""
|
3424 |
|
3425 |
+
#: settings.php:1875
|
3426 |
msgid "Whitelist clients"
|
3427 |
msgstr ""
|
3428 |
|
3429 |
+
#: settings.php:1896
|
3430 |
msgid "Enable widget for this block"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: settings.php:1908
|
3434 |
msgid "Enable shortcode for manual insertion of this block in posts and pages"
|
3435 |
msgstr ""
|
3436 |
|
3437 |
+
#: settings.php:1909 settings.php:4205
|
3438 |
msgid "Shortcode"
|
3439 |
msgstr ""
|
3440 |
|
3441 |
+
#: settings.php:1924
|
3442 |
msgid ""
|
3443 |
"Enable PHP function call to insert this block at any position in theme file. "
|
3444 |
"If function is disabled for block it will return empty string."
|
3445 |
msgstr ""
|
3446 |
|
3447 |
+
#: settings.php:1925
|
3448 |
msgid "PHP function"
|
3449 |
msgstr ""
|
3450 |
|
3451 |
+
#: settings.php:1940
|
3452 |
msgid "Client-side device detection"
|
3453 |
msgstr ""
|
3454 |
|
3455 |
+
#: settings.php:1941
|
3456 |
msgid "Server-side device detection"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: settings.php:1948
|
3460 |
msgid "Use client-side detection to"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: settings.php:1950
|
3464 |
msgid "Either show/hide or insert when the page is loaded on wanted viewports"
|
3465 |
msgstr ""
|
3466 |
|
3467 |
#. Translators: only on (the following devices): viewport names (devices)
|
3468 |
#. listed
|
3469 |
+
#: settings.php:1955
|
3470 |
msgid "only on"
|
3471 |
msgstr ""
|
3472 |
|
3473 |
+
#: settings.php:1983
|
3474 |
msgid "Device min width %s px"
|
3475 |
msgstr ""
|
3476 |
|
3477 |
+
#: settings.php:2009
|
3478 |
msgid "Use server-side detection to insert block only for"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: settings.php:2028
|
3482 |
msgid "Filter"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: settings.php:2029
|
3486 |
msgid "Word Count"
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: settings.php:2030 settings.php:4195
|
3490 |
msgid "Scheduling"
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: settings.php:2031
|
3494 |
msgid "Display"
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: settings.php:2033 settings.php:2295
|
3498 |
msgid "General"
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: settings.php:2045
|
3502 |
msgid "Old settings for AMP pages detected"
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: settings.php:2045
|
3506 |
msgid ""
|
3507 |
"To insert different codes on normal and AMP pages separate them with "
|
3508 |
"[ADINSERTER AMP] separator. Here you can enable insertion on AMP pages only "
|
3509 |
"when you need to insert THE SAME CODE also on AMP pages (no AMP separator)."
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: settings.php:2045
|
3513 |
msgid "AMP pages"
|
3514 |
msgstr ""
|
3515 |
|
3516 |
+
#: settings.php:2050
|
3517 |
msgid "Enable insertion for Ajax requests"
|
3518 |
msgstr ""
|
3519 |
|
3520 |
+
#: settings.php:2050
|
3521 |
msgid "Ajax requests"
|
3522 |
msgstr ""
|
3523 |
|
3524 |
+
#: settings.php:2055
|
3525 |
msgid "Enable insertion in RSS feeds"
|
3526 |
msgstr ""
|
3527 |
|
3528 |
+
#: settings.php:2055
|
3529 |
msgid "RSS Feed"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: settings.php:2060
|
3533 |
msgid "Enable insertion on page for Error 404: Page not found"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: settings.php:2060
|
3537 |
msgid "Error 404 page"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#: settings.php:2072
|
3541 |
msgid "Maximum number of insertions of this block. Empty or 0 means no limit."
|
3542 |
msgstr ""
|
3543 |
|
3544 |
+
#: settings.php:2073
|
3545 |
msgid "insertions"
|
3546 |
msgstr ""
|
3547 |
|
3548 |
+
#: settings.php:2075
|
3549 |
msgid ""
|
3550 |
"Count this block for Max blocks per page limit (defined on the tab [*] / tab "
|
3551 |
"General)"
|
3552 |
msgstr ""
|
3553 |
|
3554 |
+
#: settings.php:2078 settings.php:2475
|
3555 |
msgid "Max blocks per page"
|
3556 |
msgstr ""
|
3557 |
|
3558 |
+
#: settings.php:2090
|
3559 |
msgid "Insert for"
|
3560 |
msgstr ""
|
3561 |
|
3562 |
+
#: settings.php:2098
|
3563 |
msgid ""
|
3564 |
"Insert block only when WP function in_the_loop () returns true (WP loop is "
|
3565 |
"currently active). Might speed up insertion on content pages when "
|
3566 |
"the_content filter is called multiple times."
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: settings.php:2101
|
3570 |
msgid "Insert only in the loop"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: settings.php:2107
|
3574 |
msgid ""
|
3575 |
"Disable caching for WP Super Cache, W3 Total Cache and WP Rocket plugins"
|
3576 |
msgstr ""
|
3577 |
|
3578 |
+
#: settings.php:2107
|
3579 |
msgid "Disable caching"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: settings.php:2119
|
3583 |
msgid "Filter insertions"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: settings.php:2122
|
3587 |
msgid ""
|
3588 |
"Filter multiple insertions by specifying wanted insertions for this block - "
|
3589 |
"single number, comma separated numbers or %N for every N insertions - empty "
|
3591 |
"using only one insertion type."
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: settings.php:2125
|
3595 |
msgid "using"
|
3596 |
msgstr ""
|
3597 |
|
3598 |
+
#: settings.php:2144
|
3599 |
msgid "Checked means specified calls are unwanted"
|
3600 |
msgstr ""
|
3601 |
|
3602 |
+
#: settings.php:2144
|
3603 |
msgid "Invert filter"
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: settings.php:2151
|
3607 |
msgid "Minimum number of post/static page words, leave empty for no limit"
|
3608 |
msgstr ""
|
3609 |
|
3610 |
+
#: settings.php:2153
|
3611 |
msgid "Maximum number of post/static page words, leave empty for no limit"
|
3612 |
msgstr ""
|
3613 |
|
3614 |
+
#: settings.php:2166
|
3615 |
msgid "for"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: settings.php:2166
|
3619 |
msgid "days after publishing"
|
3620 |
msgstr ""
|
3621 |
|
3622 |
+
#: settings.php:2168
|
3623 |
msgid "Not available"
|
3624 |
msgstr ""
|
3625 |
|
3626 |
+
#: settings.php:2181 settings.php:2467
|
3627 |
msgid "Ad label"
|
3628 |
msgstr ""
|
3629 |
|
3630 |
+
#: settings.php:2201
|
3631 |
msgid "General tag"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
+
#: settings.php:2205
|
3635 |
msgid "Used for [adinserter data=''] shortcodes when no data is found"
|
3636 |
msgstr ""
|
3637 |
|
3638 |
#. translators: %s: HTML tags
|
3639 |
+
#: settings.php:2214
|
3640 |
msgid ""
|
3641 |
"%s WARNING: %s %s No Wrapping %s style has no wrapping code needed for "
|
3642 |
"client-side device detection!"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
#. translators: %s: HTML tags for text and link
|
3646 |
+
#: settings.php:2228
|
3647 |
msgid ""
|
3648 |
"%s WARNING: %s Settings Filter or Max insertions can't work with %s Client-"
|
3649 |
"side %s insertion. Use %s Server-side %s insertion."
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: settings.php:2244
|
3653 |
msgid "Settings"
|
3654 |
msgstr ""
|
3655 |
|
3656 |
+
#: settings.php:2247
|
3657 |
msgid "Settings timestamp"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: settings.php:2260
|
3661 |
msgid "Are you sure you want to reset all settings?"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: settings.php:2260
|
3665 |
msgid "Reset All Settings"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: settings.php:2296
|
3669 |
msgid "Viewports"
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: settings.php:2297
|
3673 |
msgid "Hooks"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: settings.php:2298
|
3677 |
msgid "Header"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: settings.php:2299 strings.php:30
|
3681 |
msgid "Footer"
|
3682 |
msgstr ""
|
3683 |
|
3684 |
+
#: settings.php:2304
|
3685 |
msgid "Debugging"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#: settings.php:2314
|
3689 |
msgid "Plugin priority"
|
3690 |
msgstr ""
|
3691 |
|
3692 |
+
#: settings.php:2322
|
3693 |
msgid "Output buffering"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
+
#: settings.php:2325
|
3697 |
msgid "Needed for position Above header but may not work with all themes"
|
3698 |
msgstr ""
|
3699 |
|
3700 |
+
#: settings.php:2333
|
3701 |
msgid "Syntax highlighting theme"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: settings.php:2340
|
3705 |
msgctxt "no syntax highlighting themes"
|
3706 |
msgid "None"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: settings.php:2341
|
3710 |
msgid "No Syntax Highlighting"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: settings.php:2343
|
3714 |
msgctxt "syntax highlighting themes"
|
3715 |
msgid "Light"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: settings.php:2358
|
3719 |
msgctxt "syntax highlighting themes"
|
3720 |
msgid "Dark"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#: settings.php:2384
|
3724 |
msgid "Min. user role for ind. exceptions editing"
|
3725 |
msgstr ""
|
3726 |
|
3727 |
+
#: settings.php:2394
|
3728 |
msgid "Disable caching for logged in administrators"
|
3729 |
msgstr ""
|
3730 |
|
3731 |
+
#: settings.php:2397
|
3732 |
msgid ""
|
3733 |
"Enabled means that logged in administrators will see non-cached (live) pages "
|
3734 |
"(applies to WP Super Cache, W3 Total Cache and WP Rocket plugins)"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: settings.php:2405
|
3738 |
msgid "Wait for jQuery"
|
3739 |
msgstr ""
|
3740 |
|
3741 |
+
#: settings.php:2408
|
3742 |
msgid ""
|
3743 |
"When enabled, Ad Inserter will wait for jQuery library to be loaded before "
|
3744 |
"it will run the scripts that may need it"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: settings.php:2416
|
3748 |
msgid "Sticky widget mode"
|
3749 |
msgstr ""
|
3750 |
|
3751 |
+
#: settings.php:2419
|
3752 |
msgid ""
|
3753 |
"CSS mode is the best approach but may not work with all themes. JavaScript "
|
3754 |
"mode works with most themes but may reload ads on page load."
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: settings.php:2427
|
3758 |
msgid "Sticky widget top margin"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: settings.php:2435
|
3762 |
msgid "Dynamic blocks"
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: settings.php:2448
|
3766 |
msgid "Functions for paragraph counting"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: settings.php:2451
|
3770 |
msgid ""
|
3771 |
"Standard PHP functions are faster and work in most cases, use Multibyte "
|
3772 |
"functions if paragraphs are not counted properly on non-english pages."
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: settings.php:2459
|
3776 |
msgid "No paragraph counting inside"
|
3777 |
msgstr ""
|
3778 |
|
3779 |
+
#: settings.php:2470
|
3780 |
msgid "Label text or HTML code"
|
3781 |
msgstr ""
|
3782 |
|
3783 |
+
#: settings.php:2478
|
3784 |
msgid ""
|
3785 |
"Maximum number of inserted blocks per page. You need to enable Max page "
|
3786 |
"insertions (button Misc / tab Insertion) to count block for this limit."
|
3787 |
msgstr ""
|
3788 |
|
3789 |
+
#: settings.php:2492
|
3790 |
msgid "Plugin usage tracking"
|
3791 |
msgstr ""
|
3792 |
|
3793 |
#. translators: %s: Ad Inserter
|
3794 |
+
#: settings.php:2495
|
3795 |
msgid ""
|
3796 |
"Enable tracking of %s usage and help us to make improvements to the plugin. "
|
3797 |
"Only information regarding the WordPress environment and %s usage is "
|
3798 |
"recorded (once per month and on events like plugin activation/deactivation)."
|
3799 |
msgstr ""
|
3800 |
|
3801 |
+
#: settings.php:2513
|
3802 |
msgid "CSS class name for the wrapping div"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: settings.php:2513
|
3806 |
msgid "Block class name"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: settings.php:2519
|
3810 |
msgid "Include block number class"
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: settings.php:2519
|
3814 |
msgid "Block number class"
|
3815 |
msgstr ""
|
3816 |
|
3817 |
+
#: settings.php:2524
|
3818 |
msgid "Include block name class"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
#: settings.php:2524
|
3822 |
msgid "Block name class"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: settings.php:2529
|
3826 |
msgid ""
|
3827 |
"Instead of alignment classes generate inline alignment styles for blocks"
|
3828 |
msgstr ""
|
3829 |
|
3830 |
+
#: settings.php:2529
|
3831 |
msgid "Inline styles"
|
3832 |
msgstr ""
|
3833 |
|
3834 |
+
#: settings.php:2535
|
3835 |
msgid "Preview of the block wrapping code"
|
3836 |
msgstr ""
|
3837 |
|
3838 |
+
#: settings.php:2536
|
3839 |
msgid "Wrapping div"
|
3840 |
msgstr ""
|
3841 |
|
3842 |
+
#: settings.php:2537 settings.php:2977
|
3843 |
msgid "BLOCK CODE"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: settings.php:2545
|
3847 |
msgid "Viewport Settings used for client-side device detection"
|
3848 |
msgstr ""
|
3849 |
|
3850 |
#. Translators: %d: viewport number
|
3851 |
+
#: settings.php:2553
|
3852 |
msgid "Viewport %d name"
|
3853 |
msgstr ""
|
3854 |
|
3855 |
+
#: settings.php:2556
|
3856 |
msgid "min width"
|
3857 |
msgstr ""
|
3858 |
|
3859 |
+
#: settings.php:2567
|
3860 |
msgid "Custom Hooks"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: settings.php:2579 settings.php:2582
|
3864 |
msgid "Enable hook"
|
3865 |
msgstr ""
|
3866 |
|
3867 |
#. translators: %d: hook number
|
3868 |
+
#: settings.php:2582
|
3869 |
msgid "Hook %d name"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: settings.php:2585
|
3873 |
msgid "Hook name for automatic insertion selection"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
+
#: settings.php:2588
|
3877 |
msgid "action"
|
3878 |
msgstr ""
|
3879 |
|
3880 |
+
#: settings.php:2591
|
3881 |
msgid "Action name as used in the do_action () function"
|
3882 |
msgstr ""
|
3883 |
|
3884 |
+
#: settings.php:2594
|
3885 |
msgid "priority"
|
3886 |
msgstr ""
|
3887 |
|
3888 |
+
#: settings.php:2597
|
3889 |
msgid "Priority for the hook (default is 10)"
|
3890 |
msgstr ""
|
3891 |
|
3892 |
+
#: settings.php:2618
|
3893 |
msgid "Enable insertion of this code into HTML page header"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: settings.php:2622 settings.php:2689 settings.php:2871
|
3897 |
msgid "Process PHP code"
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: settings.php:2626
|
3901 |
msgid "HTML Page Header Code"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: settings.php:2634
|
3905 |
msgid "Code in the %s section of the HTML page"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: settings.php:2635
|
3909 |
msgctxt "code in the header"
|
3910 |
msgid "NOT ENABLED"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: settings.php:2652 settings.php:2720
|
3914 |
msgid "Use server-side detection to insert code only for"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: settings.php:2667
|
3918 |
msgid ""
|
3919 |
"Enable insertion of this code into HTML page header on page for Error 404: "
|
3920 |
"Page not found"
|
3921 |
msgstr ""
|
3922 |
|
3923 |
+
#: settings.php:2667 settings.php:2735
|
3924 |
msgid "Insert on Error 404 page"
|
3925 |
msgstr ""
|
3926 |
|
3927 |
+
#: settings.php:2685
|
3928 |
msgid "Enable insertion of this code into HTML page footer"
|
3929 |
msgstr ""
|
3930 |
|
3931 |
+
#: settings.php:2693
|
3932 |
msgid "HTML Page Footer Code"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
#. translators: %s: HTML tags
|
3936 |
+
#: settings.php:2701
|
3937 |
msgid "Code before the %s tag of the the HTML page"
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: settings.php:2702
|
3941 |
msgctxt "code in the footer"
|
3942 |
msgid "NOT ENABLED"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: settings.php:2735
|
3946 |
msgid ""
|
3947 |
"Enable insertion of this code into HTML page footer on page for Error 404: "
|
3948 |
"Page not found"
|
3949 |
msgstr ""
|
3950 |
|
3951 |
+
#: settings.php:2751
|
3952 |
msgid "Code for ad blocking detection inserted. Click for details."
|
3953 |
msgstr ""
|
3954 |
|
3955 |
+
#: settings.php:2756
|
3956 |
msgid "Enable detection of ad blocking"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: settings.php:2774
|
3960 |
msgid "Global action when ad blocking is detected"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: settings.php:2780
|
3964 |
msgid "No action for"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: settings.php:2781
|
3968 |
msgid "Exceptions for global action when ad blocking is detected."
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: settings.php:2791
|
3972 |
msgid "Delay Action"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: settings.php:2794
|
3976 |
msgid ""
|
3977 |
"Number of page views to delay action when ad blocking is detected. Leave "
|
3978 |
"empty for no delay (action fires on first page view). Sets cookie."
|
3979 |
msgstr ""
|
3980 |
|
3981 |
+
#: settings.php:2794
|
3982 |
msgctxt "Delay Action for x "
|
3983 |
msgid "page views"
|
3984 |
msgstr ""
|
3985 |
|
3986 |
+
#: settings.php:2799
|
3987 |
msgid "No Action Period"
|
3988 |
msgstr ""
|
3989 |
|
3990 |
+
#: settings.php:2802
|
3991 |
msgid ""
|
3992 |
"Number of days to supress action when ad blocking is detected. Leave empty "
|
3993 |
"for no no-action period (action fires always after defined page view delay). "
|
3994 |
"Sets cookie."
|
3995 |
msgstr ""
|
3996 |
|
3997 |
+
#: settings.php:2802
|
3998 |
msgctxt "no action period"
|
3999 |
msgid "days"
|
4000 |
msgstr ""
|
4001 |
|
4002 |
+
#: settings.php:2807
|
4003 |
msgid "Custom Selectors"
|
4004 |
msgstr ""
|
4005 |
|
4006 |
+
#: settings.php:2810
|
4007 |
msgid ""
|
4008 |
"Comma seprarated list of selectors (.class, #id) used for additional ad "
|
4009 |
"blocking detection. Invisible element or element with zero height means ad "
|
4010 |
"blocking is present."
|
4011 |
msgstr ""
|
4012 |
|
4013 |
+
#: settings.php:2822
|
4014 |
msgid "Redirection Page"
|
4015 |
msgstr ""
|
4016 |
|
4017 |
+
#: settings.php:2834
|
4018 |
msgid "Custom Url"
|
4019 |
msgstr ""
|
4020 |
|
4021 |
+
#: settings.php:2839
|
4022 |
msgid ""
|
4023 |
"Static page for redirection when ad blocking is detected. For other pages "
|
4024 |
"select Custom url and set it below."
|
4025 |
msgstr ""
|
4026 |
|
4027 |
+
#: settings.php:2848
|
4028 |
msgid "Custom Redirection Url"
|
4029 |
msgstr ""
|
4030 |
|
4031 |
+
#: settings.php:2860
|
4032 |
msgid "Message HTML code"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: settings.php:2873
|
4036 |
msgid "Preview message when ad blocking is detected"
|
4037 |
msgstr ""
|
4038 |
|
4039 |
+
#: settings.php:2902
|
4040 |
msgid "Prevent visitors from closing the warning message"
|
4041 |
msgstr ""
|
4042 |
|
4043 |
+
#: settings.php:2902
|
4044 |
msgid "Undismissible Message"
|
4045 |
msgstr ""
|
4046 |
|
4047 |
+
#: settings.php:2908
|
4048 |
msgid "Not undismissible for"
|
4049 |
msgstr ""
|
4050 |
|
4051 |
+
#: settings.php:2909
|
4052 |
msgid "Users which can close the warning message."
|
4053 |
msgstr ""
|
4054 |
|
4055 |
+
#: settings.php:2923
|
4056 |
msgid ""
|
4057 |
"Force showing admin toolbar for administrators when viewing site. Enable "
|
4058 |
"this option when you are logged in as admin and you don't see admin toolbar."
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: settings.php:2931
|
4062 |
msgid "Disable header code (Header tab)"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: settings.php:2935
|
4066 |
msgid "Disable footer code (Footer tab)"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
#. translators: %s: Ad Inserter
|
4070 |
+
#: settings.php:2939
|
4071 |
msgid "Disable %s JavaScript code"
|
4072 |
msgstr ""
|
4073 |
|
4074 |
#. translators: %s: Ad Inserter
|
4075 |
+
#: settings.php:2943
|
4076 |
msgid "Disable %s CSS code"
|
4077 |
msgstr ""
|
4078 |
|
4079 |
+
#: settings.php:2947
|
4080 |
msgid ""
|
4081 |
"Disable PHP code processing (in all blocks including header and footer code)"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: settings.php:2951
|
4085 |
msgid "Disable insertion of all blocks"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: settings.php:2955
|
4089 |
msgid "Disable insertions"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
#. translators: %s: Ad Inserter
|
4093 |
+
#: settings.php:2967
|
4094 |
msgid "%s CSS CODE"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: settings.php:2970
|
4098 |
msgid "HEADER CODE"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
#. translators: %s: PHP tags
|
4102 |
+
#: settings.php:2976
|
4103 |
msgid "BLOCK PHP CODE"
|
4104 |
msgstr ""
|
4105 |
|
4106 |
#. translators: %s: Ad Inserter
|
4107 |
+
#: settings.php:2982
|
4108 |
msgid "%s JS CODE"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: settings.php:2985
|
4112 |
msgid "FOOTER CODE"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: settings.php:2994
|
4116 |
msgid "Force showing admin toolbar when viewing site"
|
4117 |
msgstr ""
|
4118 |
|
4119 |
+
#: settings.php:3001
|
4120 |
msgid "Enable debugging functions in admin toolbar"
|
4121 |
msgstr ""
|
4122 |
|
4123 |
+
#: settings.php:3003
|
4124 |
msgid "Debugging functions in admin toolbar"
|
4125 |
msgstr ""
|
4126 |
|
4127 |
+
#: settings.php:3010
|
4128 |
msgid "Enable debugging functions in admin toolbar on mobile screens"
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: settings.php:3012
|
4132 |
msgid "Debugging functions on mobile screens"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: settings.php:3019
|
4136 |
msgid ""
|
4137 |
"Enable Debugger widget and code insertion debugging (blocks, positions, "
|
4138 |
"tags, processing) by url parameters for non-logged in users. Enable this "
|
4141 |
"administrators debugging is always enabled."
|
4142 |
msgstr ""
|
4143 |
|
4144 |
+
#: settings.php:3021
|
4145 |
msgid "Remote debugging"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: settings.php:3028
|
4149 |
msgid ""
|
4150 |
"Disable translation to see original texts for the settings and messages in "
|
4151 |
"English"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: settings.php:3030
|
4155 |
msgid "Disable translation"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: settings.php:3402
|
4159 |
msgid "Available positions for current theme"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: settings.php:3403
|
4163 |
msgid "Error checking pages"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: settings.php:3406
|
4167 |
msgid "Toggle theme checker for available positions for automatic insertion"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: settings.php:3406
|
4171 |
msgctxt "Button"
|
4172 |
msgid "Check"
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: settings.php:3413
|
4176 |
msgid "Position"
|
4177 |
msgstr ""
|
4178 |
|
4179 |
+
#: settings.php:3418
|
4180 |
msgid "Archive pages"
|
4181 |
msgstr ""
|
4182 |
|
4183 |
+
#: settings.php:3477
|
4184 |
msgid ""
|
4185 |
"Position not available because output buffering (tab [*]) is not enabled"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: settings.php:3480 strings.php:228
|
4189 |
msgid "Position not checked yet"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: settings.php:3516
|
4193 |
msgid "Toggle active/all blocks"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: settings.php:3520 strings.php:215
|
4197 |
msgid "Rearrange block order"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: settings.php:3525
|
4201 |
msgid "Save new block order"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: settings.php:3551
|
4205 |
msgid "Toggle active/all ad units"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: settings.php:3555
|
4209 |
msgid "Reload AdSense ad units"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: settings.php:3559
|
4213 |
msgid "Clear authorization to access AdSense account"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: settings.php:3563 settings.php:4362 settings.php:4429 strings.php:223
|
4217 |
msgid "Google AdSense Homepage"
|
4218 |
msgstr ""
|
4219 |
|
4220 |
+
#: settings.php:3579
|
4221 |
msgid "Switch to physical ads.txt file"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: settings.php:3580
|
4225 |
msgid "Switch to virtual ads.txt file"
|
4226 |
msgstr ""
|
4227 |
|
4228 |
#. translators: %s: ads.txt
|
4229 |
+
#: settings.php:3590
|
4230 |
msgid "Open %s"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: settings.php:3598
|
4234 |
msgid "Reload ads.txt file"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: settings.php:3602 settings.php:4489
|
4238 |
msgid "Save"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
#. translators: %s: Ad Inserter
|
4242 |
+
#: settings.php:3777
|
4243 |
msgid "ads.txt file: %s virtual ads.txt file"
|
4244 |
msgstr ""
|
4245 |
|
4246 |
+
#: settings.php:3782 settings.php:3802 strings.php:207
|
4247 |
msgid "Warning"
|
4248 |
msgstr ""
|
4249 |
|
4250 |
#. translators: %s: Ad Inserter
|
4251 |
+
#: settings.php:3782
|
4252 |
msgid "%s virtual file ads.txt not found"
|
4253 |
msgstr ""
|
4254 |
|
4255 |
+
#: settings.php:3790
|
4256 |
msgid "IMPORTANT"
|
4257 |
msgstr ""
|
4258 |
|
4259 |
+
#: settings.php:3790
|
4260 |
msgid "ads.txt file must be placed on the root domain"
|
4261 |
msgstr ""
|
4262 |
|
4263 |
+
#: settings.php:3795
|
4264 |
msgid "ads.txt file"
|
4265 |
msgstr ""
|
4266 |
|
4267 |
+
#: settings.php:3795
|
4268 |
msgid "NOT WRITABLE"
|
4269 |
msgstr ""
|
4270 |
|
4271 |
+
#: settings.php:3802
|
4272 |
msgid "file %s not found"
|
4273 |
msgstr ""
|
4274 |
|
4275 |
+
#: settings.php:3812
|
4276 |
msgid "Account IDs found in blocks but not present in the ads.txt file"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
#. translators: %s: Ad Inserter
|
4280 |
+
#: settings.php:3818
|
4281 |
msgid "%s virtual ads.txt file"
|
4282 |
msgstr ""
|
4283 |
|
4284 |
+
#: settings.php:3840
|
4285 |
msgid "Advertising system"
|
4286 |
msgstr ""
|
4287 |
|
4288 |
+
#: settings.php:3841
|
4289 |
msgid "Account ID"
|
4290 |
msgstr ""
|
4291 |
|
4292 |
+
#: settings.php:3843
|
4293 |
msgid "Certification authority ID"
|
4294 |
msgstr ""
|
4295 |
|
4296 |
+
#: settings.php:3858
|
4297 |
msgid "Account ID found in block and present in ads.txt"
|
4298 |
msgstr ""
|
4299 |
|
4300 |
+
#: settings.php:3862
|
4301 |
msgid "Account ID found in block but not present in ads.txt"
|
4302 |
msgstr ""
|
4303 |
|
4304 |
+
#: settings.php:4152
|
4305 |
msgid "Preview block"
|
4306 |
msgstr ""
|
4307 |
|
4308 |
+
#: settings.php:4161
|
4309 |
msgid "Insertion disabled"
|
4310 |
msgstr ""
|
4311 |
|
4312 |
+
#: settings.php:4191
|
4313 |
msgid "Automatic insertion"
|
4314 |
msgstr ""
|
4315 |
|
4316 |
#. translators: %s HTML tags
|
4317 |
+
#: settings.php:4192 settings.php:5191
|
4318 |
msgid "PHP code processing"
|
4319 |
msgstr ""
|
4320 |
|
4321 |
+
#: settings.php:4194
|
4322 |
msgid "Device detection"
|
4323 |
msgstr ""
|
4324 |
|
4325 |
+
#: settings.php:4207
|
4326 |
msgid "Widget positions"
|
4327 |
msgstr ""
|
4328 |
|
4329 |
+
#: settings.php:4217
|
4330 |
+
msgid "No active code block"
|
4331 |
+
msgstr ""
|
4332 |
+
|
4333 |
+
#: settings.php:4218
|
4334 |
+
msgid "No code block matches search keywords"
|
4335 |
+
msgstr ""
|
4336 |
+
|
4337 |
+
#: settings.php:4273
|
4338 |
msgid "Ad unit"
|
4339 |
msgstr ""
|
4340 |
|
4341 |
+
#: settings.php:4275
|
4342 |
msgid "Slot ID"
|
4343 |
msgstr ""
|
4344 |
|
4345 |
+
#: settings.php:4301
|
4346 |
msgid "Copy AdSense code"
|
4347 |
msgstr ""
|
4348 |
|
4349 |
+
#: settings.php:4304
|
4350 |
msgid "Preview AdSense ad"
|
4351 |
msgstr ""
|
4352 |
|
4353 |
+
#: settings.php:4307
|
4354 |
msgid "Get AdSense code"
|
4355 |
msgstr ""
|
4356 |
|
4357 |
#. translators: %s: HTML tags
|
4358 |
+
#: settings.php:4339
|
4359 |
msgid ""
|
4360 |
"Please %s clear authorization %s with the button %s above and once again "
|
4361 |
"authorize access to your AdSense account."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: settings.php:4358
|
4365 |
msgid "AdSense Integration"
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: settings.php:4360
|
4369 |
msgid "AdSense Integration - Step 2"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
#. translators: %s: HTML tags
|
4373 |
+
#: settings.php:4366
|
4374 |
msgid ""
|
4375 |
"Authorize %s to access your AdSense account. Click on the %s Get "
|
4376 |
"Authorization Code %s button to open a new window where you can allow "
|
4379 |
msgstr ""
|
4380 |
|
4381 |
#. translators: %s: HTML tags
|
4382 |
+
#: settings.php:4373
|
4383 |
msgid ""
|
4384 |
"If you get error, can't access ad units or would like to use own Google API "
|
4385 |
"IDs click on the button %s Use own API IDs %s to enter Client ID and Client "
|
4387 |
msgstr ""
|
4388 |
|
4389 |
#. translators: %s: HTML tags
|
4390 |
+
#: settings.php:4375
|
4391 |
msgid ""
|
4392 |
"Now you can authorize %s to access your AdSense account. Click on the %s Get "
|
4393 |
"Authorization Code %s button to open a new window where you can allow "
|
4396 |
msgstr ""
|
4397 |
|
4398 |
#. translators: %s: HTML tags
|
4399 |
+
#: settings.php:4382
|
4400 |
msgid ""
|
4401 |
"If you get error %s invalid client %s click on the button %s Clear and "
|
4402 |
"return to Step 1 %s to re-enter Client ID and Client Secret."
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: settings.php:4393
|
4406 |
msgid "Get Authorization Code"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: settings.php:4396
|
4410 |
msgid "Enter Authorization Code"
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: settings.php:4406
|
4414 |
msgid "Use own API IDs"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: settings.php:4408
|
4418 |
msgid "Clear and return to Step 1"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: settings.php:4412
|
4422 |
msgid "Authorize"
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: settings.php:4428
|
4426 |
msgid "AdSense Integration - Step 1"
|
4427 |
msgstr ""
|
4428 |
|
4429 |
#. translators: %s: Ad Inserter
|
4430 |
+
#: settings.php:4432
|
4431 |
msgid ""
|
4432 |
"Here can %s list configured AdSense ad units and get code for AdSense ads. "
|
4433 |
"To do this you need to authorize %s to access your AdSense account. The "
|
4436 |
msgstr ""
|
4437 |
|
4438 |
#. translators: %s: HTML tags
|
4439 |
+
#: settings.php:4441
|
4440 |
msgid "Go to %s Google APIs and Services console %s"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
#. translators: %1: Ad Inserter, 2, 3: HTML tags
|
4444 |
+
#: settings.php:4442
|
4445 |
msgid ""
|
4446 |
"Create %1$s project - if the project and IDs are already created click on "
|
4447 |
"the %2$s Credentials %3$s in the sidebar and go to step 16"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
#. translators: %s: HTML tags
|
4451 |
+
#: settings.php:4443
|
4452 |
msgid ""
|
4453 |
"Click on project selection and then click on the %s NEW PROJECT %s button to "
|
4454 |
"create a new project"
|
4455 |
msgstr ""
|
4456 |
|
4457 |
#. translators: 1: Ad Inserter, 2, 3: HTML tags
|
4458 |
+
#: settings.php:4444
|
4459 |
msgid "Enter %1$s for project name and click on the %2$s Create %3$s button"
|
4460 |
msgstr ""
|
4461 |
|
4462 |
#. translators: %s: HTML tags
|
4463 |
+
#: settings.php:4445
|
4464 |
msgid ""
|
4465 |
"Click on project selection, wait for the project to be created and then and "
|
4466 |
"select %s as the current project"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
#. translators: %s: HTML tags
|
4470 |
+
#: settings.php:4446
|
4471 |
msgid "Click on %s ENABLE APIS AND SERVICES %s"
|
4472 |
msgstr ""
|
4473 |
|
4474 |
#. translators: %s: HTML tags
|
4475 |
+
#: settings.php:4447
|
4476 |
msgid "Search for adsense and enable %s"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
#. translators: %s: HTML tags
|
4480 |
+
#: settings.php:4448
|
4481 |
msgid "Click on %s CREATE CREDENTIALS %s"
|
4482 |
msgstr ""
|
4483 |
|
4484 |
#. translators: %s: HTML tags
|
4485 |
+
#: settings.php:4449
|
4486 |
msgid "For %s Where will you be calling the API from? %s select %s Other UI %s"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
#. translators: %s: HTML tags
|
4490 |
+
#: settings.php:4450
|
4491 |
msgid "For %s What data will you be accessing? %s select %s User data %s"
|
4492 |
msgstr ""
|
4493 |
|
4494 |
#. translators: %s: HTML tags
|
4495 |
+
#: settings.php:4451
|
4496 |
msgid "Click on %s What credentials do I need? %s"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
#. translators: %s: HTML tags
|
4500 |
+
#: settings.php:4452
|
4501 |
msgid ""
|
4502 |
"Create an OAuth 2.0 client ID: For %s OAuth 2.0 client ID %s name enter %s "
|
4503 |
"Ad Inserter client %s"
|
4504 |
msgstr ""
|
4505 |
|
4506 |
#. translators: %s: HTML tags
|
4507 |
+
#: settings.php:4453
|
4508 |
msgid ""
|
4509 |
"Set up the OAuth 2.0 consent screen: For %s Product name shown to users %s "
|
4510 |
"enter %s"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
#. translators: %s: HTML tags
|
4514 |
+
#: settings.php:4454
|
4515 |
msgid "Click on %s Continue %s"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
#. translators: %s: HTML tags
|
4519 |
+
#: settings.php:4455
|
4520 |
msgid "Click on %s Done %s"
|
4521 |
msgstr ""
|
4522 |
|
4523 |
#. translators: %s: HTML tags
|
4524 |
+
#: settings.php:4456
|
4525 |
msgid ""
|
4526 |
"Click on %s Ad Inserter client %s to get %s Client ID %s and %s Client "
|
4527 |
"secret %s"
|
4528 |
msgstr ""
|
4529 |
|
4530 |
+
#: settings.php:4457
|
4531 |
msgid "Copy them to the appropriate fields below"
|
4532 |
msgstr ""
|
4533 |
|
4534 |
+
#: settings.php:4463
|
4535 |
msgid "Client ID"
|
4536 |
msgstr ""
|
4537 |
|
4538 |
+
#: settings.php:4466
|
4539 |
msgid "Enter Client ID"
|
4540 |
msgstr ""
|
4541 |
|
4542 |
+
#: settings.php:4471
|
4543 |
msgid "Client secret"
|
4544 |
msgstr ""
|
4545 |
|
4546 |
+
#: settings.php:4474
|
4547 |
msgid "Enter Client secret"
|
4548 |
msgstr ""
|
4549 |
|
4550 |
+
#: settings.php:4484
|
4551 |
msgid "Use default API IDs"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: settings.php:4648
|
4555 |
msgid "All posts"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#: settings.php:4649
|
4559 |
msgid "All static pages"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
+
#: settings.php:4804 settings.php:4817 settings.php:4831 settings.php:4847
|
4563 |
msgid "Blank ad blocks? Looking for AdSense alternative?"
|
4564 |
msgstr ""
|
4565 |
|
4566 |
+
#: settings.php:4809 settings.php:4822 settings.php:4836 settings.php:4852
|
4567 |
+
#: settings.php:5081 settings.php:5083 settings.php:5100 settings.php:5104
|
4568 |
+
#: settings.php:5112 settings.php:5113 settings.php:5116 settings.php:5122
|
4569 |
+
#: settings.php:5132 settings.php:5136
|
4570 |
msgid "Looking for AdSense alternative?"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
+
#: settings.php:4864
|
4574 |
msgid "Try Infolinks Ads with Adsense or Media.net ads"
|
4575 |
msgstr ""
|
4576 |
|
4577 |
+
#: settings.php:4869 settings.php:5079 settings.php:5091 settings.php:5119
|
4578 |
+
#: settings.php:5146
|
4579 |
msgid "Use Infolinks ads with Adsense to earn more"
|
4580 |
msgstr ""
|
4581 |
|
4582 |
+
#: settings.php:4879 settings.php:4894
|
4583 |
msgid "Maximize your revenue!"
|
4584 |
msgstr ""
|
4585 |
|
4586 |
+
#: settings.php:4920 settings.php:4970
|
4587 |
msgid "Support plugin development"
|
4588 |
msgstr ""
|
4589 |
|
4590 |
+
#: settings.php:4925 settings.php:4971
|
4591 |
msgid ""
|
4592 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4593 |
"reviewing the plugin on WordPres"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#: settings.php:4925
|
4597 |
msgctxt "Review Ad Inserter"
|
4598 |
msgid "Review"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: settings.php:4930
|
4602 |
msgid ""
|
4603 |
"If you like Ad Inserter and have a moment, please help me spread the word by "
|
4604 |
"rating the plugin on WordPres"
|
4605 |
msgstr ""
|
4606 |
|
4607 |
+
#: settings.php:4930
|
4608 |
msgctxt "Rate Ad Inserter"
|
4609 |
msgid "Rate"
|
4610 |
msgstr ""
|
4611 |
|
4612 |
+
#: settings.php:4935
|
4613 |
msgid ""
|
4614 |
"Support free Ad Inserter development. If you are making money with Ad "
|
4615 |
"Inserter consider donating some small amount. Even 1 dollar counts. Thank "
|
4616 |
"you!"
|
4617 |
msgstr ""
|
4618 |
|
4619 |
+
#: settings.php:4935
|
4620 |
msgid "Donate"
|
4621 |
msgstr ""
|
4622 |
|
4623 |
+
#: settings.php:4942 settings.php:4986
|
4624 |
msgid "Average rating of the plugin - Thank you!"
|
4625 |
msgstr ""
|
4626 |
|
4627 |
#. translators: %s: Ad Inserter, HTML tags
|
4628 |
+
#: settings.php:4953
|
4629 |
msgid ""
|
4630 |
"You've been using %s for a while now, and I hope you're happy with it. "
|
4631 |
"Positive %s reviews %s are a great way to show your appreciation for my "
|
4634 |
"your website. When you rate it with 5 stars it's like saying 'Thank you'."
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: settings.php:4971
|
4638 |
msgid "Review"
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: settings.php:4975
|
4642 |
msgid "Ad Inserter on Twitter"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: settings.php:4976
|
4646 |
msgid "Ad Inserter on Facebook"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: settings.php:4979
|
4650 |
msgid "Follow Ad Inserter"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
#. translators: %s: HTML tags
|
4654 |
+
#: settings.php:5006
|
4655 |
msgid ""
|
4656 |
"Need help with %s settings? %s Check %s Quick Start, %s %s Code Editing %s "
|
4657 |
"and %s Common Settings %s pages"
|
4658 |
msgstr ""
|
4659 |
|
4660 |
#. translators: %s: HTML tags
|
4661 |
+
#: settings.php:5018
|
4662 |
msgid ""
|
4663 |
"%s New to %s AdSense? %s %s %s Connect your site %s - %s In-feed ads, %s %s "
|
4664 |
"Auto ads, %s %s AMP ads %s — How to %s integrate %s Infolinks %s ad "
|
4666 |
msgstr ""
|
4667 |
|
4668 |
#. translators: %s: HTML tags
|
4669 |
+
#: settings.php:5039
|
4670 |
msgid ""
|
4671 |
"Become an %s affiliate %s for Ad Inserter Pro and earn commission for each "
|
4672 |
"purchase you refer to us"
|
4673 |
msgstr ""
|
4674 |
|
4675 |
#. translators: %s: HTML tags
|
4676 |
+
#: settings.php:5046
|
4677 |
msgid ""
|
4678 |
"Ads are not showing? Check %s troubleshooting guide %s to find out how to "
|
4679 |
"diagnose and fix the problem."
|
4680 |
msgstr ""
|
4681 |
|
4682 |
#. translators: %s: HTML tags
|
4683 |
+
#: settings.php:5050
|
4684 |
msgid ""
|
4685 |
"If you need any kind of help or support, please do not hesitate to open a "
|
4686 |
"thread on the %s support forum. %s"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: settings.php:5076 settings.php:5145
|
4690 |
msgid "Code preview with visual CSS editor"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: settings.php:5095 settings.php:5140
|
4694 |
msgid "A/B testing - Track ad impressions and clicks"
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: settings.php:5154
|
4698 |
msgid "Looking for Pro Ad Management plugin?"
|
4699 |
msgstr ""
|
4700 |
|
4701 |
+
#: settings.php:5155
|
4702 |
msgid "To Optimally Monetize your WordPress website?"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
#. Translators: %s: price of Ad Inserter Pro
|
4706 |
+
#: settings.php:5156
|
4707 |
msgid "Different license types starting from %s"
|
4708 |
msgstr ""
|
4709 |
|
4710 |
#. translators: %s HTML tags
|
4711 |
+
#: settings.php:5159
|
4712 |
msgid "%s AdSense Integration %s"
|
4713 |
msgstr ""
|
4714 |
|
4715 |
#. translators: %s HTML tags
|
4716 |
+
#: settings.php:5160
|
4717 |
msgid "Syntax highlighting %s editor %s"
|
4718 |
msgstr ""
|
4719 |
|
4720 |
#. translators: %s HTML tags
|
4721 |
+
#: settings.php:5161
|
4722 |
msgid "%s Code preview %s with visual CSS editor"
|
4723 |
msgstr ""
|
4724 |
|
4725 |
#. translators: %s HTML tags
|
4726 |
+
#: settings.php:5162
|
4727 |
msgid "Simple user interface - all settings on a single page"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
#. translators: %s HTML tags
|
4731 |
+
#: settings.php:5163
|
4732 |
msgid ""
|
4733 |
"%s Automatic insertion %s before or after post / content / %s paragraph %s / "
|
4734 |
"image / excerpt"
|
4735 |
msgstr ""
|
4736 |
|
4737 |
#. translators: %s HTML tags
|
4738 |
+
#: settings.php:5164
|
4739 |
msgid "%s Automatic insertion %s between posts on blog pages"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
#. translators: %s HTML tags
|
4743 |
+
#: settings.php:5165
|
4744 |
msgid "%s Automatic insertion %s before, between and after comments"
|
4745 |
msgstr ""
|
4746 |
|
4747 |
#. translators: %s HTML tags
|
4748 |
+
#: settings.php:5166
|
4749 |
msgid "%s Automatic insertion %s after %s or before %s tag"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
#. translators: %s HTML tags
|
4753 |
+
#: settings.php:5167
|
4754 |
msgid "Automatic insertion at %s custom hook positions %s"
|
4755 |
msgstr ""
|
4756 |
|
4757 |
#. translators: %s HTML tags
|
4758 |
+
#: settings.php:5168
|
4759 |
msgid ""
|
4760 |
"Insertion %s before or after any HTML element on the page %s (using CSS "
|
4761 |
"selectors)"
|
4762 |
msgstr ""
|
4763 |
|
4764 |
#. translators: %s HTML tags
|
4765 |
+
#: settings.php:5169
|
4766 |
msgid "%s Insertion exceptions %s for individual posts and pages"
|
4767 |
msgstr ""
|
4768 |
|
4769 |
#. translators: %s HTML tags
|
4770 |
+
#: settings.php:5170
|
4771 |
msgid "%s Manual insertion: %s widgets, shortcodes, PHP function call"
|
4772 |
msgstr ""
|
4773 |
|
4774 |
#. translators: %s HTML tags
|
4775 |
+
#: settings.php:5171
|
4776 |
msgid ""
|
4777 |
"%s Sticky ads %s with optional close button (ads stay fixed when the page "
|
4778 |
"scrolls)"
|
4779 |
msgstr ""
|
4780 |
|
4781 |
#. translators: %s HTML tags
|
4782 |
+
#: settings.php:5172
|
4783 |
msgid "%s Sticky sidebar ads %s (stick to the screen or to the content)"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
#. translators: %s HTML tags
|
4787 |
+
#: settings.php:5173
|
4788 |
msgid "%s Sticky ad animations %s (fade, slide, turn, flip, zoom)"
|
4789 |
msgstr ""
|
4790 |
|
4791 |
#. translators: %s HTML tags
|
4792 |
+
#: settings.php:5174
|
4793 |
msgid ""
|
4794 |
"%s Sticky ad trigger %s (page scroll in %% or px, HTML element becomes "
|
4795 |
"visible)"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
#. translators: %s HTML tags
|
4799 |
+
#: settings.php:5175
|
4800 |
msgid ""
|
4801 |
"%s Sticky (fixed) widgets %s (sidebar does not move when the page scrolls)"
|
4802 |
msgstr ""
|
4803 |
|
4804 |
#. translators: %s HTML tags
|
4805 |
+
#: settings.php:5176
|
4806 |
msgid "Block %s alignment and style %s customizations"
|
4807 |
msgstr ""
|
4808 |
|
4809 |
#. translators: %s HTML tags
|
4810 |
+
#: settings.php:5177
|
4811 |
msgid ""
|
4812 |
"%s Clearance %s options to avoid insertion near images or headers (AdSense "
|
4813 |
"TOS)"
|
4814 |
msgstr ""
|
4815 |
|
4816 |
#. translators: %s HTML tags
|
4817 |
+
#: settings.php:5178
|
4818 |
msgid ""
|
4819 |
"Options to %s disable insertion %s on Ajax calls, 404 error pages or in RSS "
|
4820 |
"feeds"
|
4821 |
msgstr ""
|
4822 |
|
4823 |
#. translators: %s HTML tags
|
4824 |
+
#: settings.php:5179
|
4825 |
msgid "%s Ad rotation %s (works also with caching)"
|
4826 |
msgstr ""
|
4827 |
|
4828 |
#. translators: %s HTML tags
|
4829 |
+
#: settings.php:5180
|
4830 |
msgid "Create, edit and check %s ads.txt %s file"
|
4831 |
msgstr ""
|
4832 |
|
4833 |
#. translators: %s HTML tags
|
4834 |
+
#: settings.php:5181
|
4835 |
msgid ""
|
4836 |
"Ad impression and click %s tracking %s (works also with Javascript ads like "
|
4837 |
"AdSense)"
|
4838 |
msgstr ""
|
4839 |
|
4840 |
#. translators: %s HTML tags
|
4841 |
+
#: settings.php:5182
|
4842 |
msgid "Internal or external %s tracking %s (via Google Analytics or Matomo)"
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#. translators: %s HTML tags
|
4846 |
+
#: settings.php:5183
|
4847 |
msgid "%s Public web reports %s for clients, export to PDF"
|
4848 |
msgstr ""
|
4849 |
|
4850 |
#. translators: %s HTML tags
|
4851 |
+
#: settings.php:5184
|
4852 |
msgid "Support for %s A/B testing %s"
|
4853 |
msgstr ""
|
4854 |
|
4855 |
#. translators: %s HTML tags
|
4856 |
+
#: settings.php:5185
|
4857 |
msgid "Frequency capping - %s limit impressions or clicks %s"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
#. translators: %s HTML tags
|
4861 |
+
#: settings.php:5186
|
4862 |
msgid "Click fraud %s protection %s"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
#. translators: %s HTML tags
|
4866 |
+
#: settings.php:5187
|
4867 |
msgid "Support for %s lazy loading %s"
|
4868 |
msgstr ""
|
4869 |
|
4870 |
#. translators: %s HTML tags
|
4871 |
+
#: settings.php:5188
|
4872 |
msgid "Support for ads on %s AMP pages %s"
|
4873 |
msgstr ""
|
4874 |
|
4875 |
#. translators: %s HTML tags
|
4876 |
+
#: settings.php:5189
|
4877 |
msgid "Support for contextual %s Amazon Native Shopping Ads %s (responsive)"
|
4878 |
msgstr ""
|
4879 |
|
4880 |
#. translators: %s HTML tags
|
4881 |
+
#: settings.php:5190
|
4882 |
msgid "Custom CSS class name for wrapping divs to avoid ad blockers"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
#. translators: %s HTML tags
|
4886 |
+
#: settings.php:5192
|
4887 |
msgid "%s Banner %s code generator"
|
4888 |
msgstr ""
|
4889 |
|
4890 |
#. translators: %s HTML tags
|
4891 |
+
#: settings.php:5193
|
4892 |
msgid "Support for %s header and footer %s code"
|
4893 |
msgstr ""
|
4894 |
|
4895 |
#. translators: %s HTML tags
|
4896 |
+
#: settings.php:5194
|
4897 |
msgid "Support for Google Analytics, Matomo or any other web analytics code"
|
4898 |
msgstr ""
|
4899 |
|
4900 |
#. translators: %s HTML tags
|
4901 |
+
#: settings.php:5195
|
4902 |
msgid "Desktop, tablet and phone server-side %s device detection %s"
|
4903 |
msgstr ""
|
4904 |
|
4905 |
#. translators: %s HTML tags
|
4906 |
+
#: settings.php:5196
|
4907 |
msgid "Client-side %s mobile device detection %s (works with caching)"
|
4908 |
msgstr ""
|
4909 |
|
4910 |
#. translators: %s HTML tags
|
4911 |
+
#: settings.php:5197
|
4912 |
msgid ""
|
4913 |
"%s Ad blocking detection %s - popup message, ad replacement, content "
|
4914 |
"protection"
|
4915 |
msgstr ""
|
4916 |
|
4917 |
#. translators: %s HTML tags
|
4918 |
+
#: settings.php:5198
|
4919 |
msgid "%s Ad blocking statistics %s"
|
4920 |
msgstr ""
|
4921 |
|
4922 |
#. translators: %s HTML tags
|
4923 |
+
#: settings.php:5199
|
4924 |
msgid ""
|
4925 |
"%s Black/White-list %s categories, tags, taxonomies, users, post IDs, urls, "
|
4926 |
"referrers, operating systems, browsers"
|
4927 |
msgstr ""
|
4928 |
|
4929 |
#. translators: %s HTML tags
|
4930 |
+
#: settings.php:5200
|
4931 |
msgid ""
|
4932 |
"%s Black/White-list %s IP addresses or countries (works also with caching)"
|
4933 |
msgstr ""
|
4934 |
|
4935 |
#. translators: %s HTML tags
|
4936 |
+
#: settings.php:5201
|
4937 |
msgid "%s Multisite options %s to limit settings on the sites"
|
4938 |
msgstr ""
|
4939 |
|
4940 |
#. translators: %s HTML tags
|
4941 |
+
#: settings.php:5202
|
4942 |
msgid "%s Import/Export %s block or plugin settings"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
#. translators: %s HTML tags
|
4946 |
+
#: settings.php:5203
|
4947 |
msgid "%s Insertion scheduling %s with fallback option"
|
4948 |
msgstr ""
|
4949 |
|
4950 |
#. translators: %s HTML tags
|
4951 |
+
#: settings.php:5204
|
4952 |
msgid "Country-level %s GEO targeting %s (works also with caching)"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
#. translators: %s HTML tags
|
4956 |
+
#: settings.php:5205
|
4957 |
msgid "Simple troubleshooting with many %s debugging functions %s"
|
4958 |
msgstr ""
|
4959 |
|
4960 |
#. translators: %s HTML tags
|
4961 |
+
#: settings.php:5206
|
4962 |
msgid "%s Visualization %s of inserted blocks or ads for easier placement"
|
4963 |
msgstr ""
|
4964 |
|
4965 |
#. translators: %s HTML tags
|
4966 |
+
#: settings.php:5207
|
4967 |
msgid "%s Visualization %s of available positions for automatic ad insertion"
|
4968 |
msgstr ""
|
4969 |
|
4970 |
#. translators: %s HTML tags
|
4971 |
+
#: settings.php:5208
|
4972 |
msgid ""
|
4973 |
"%s Visualization %s of HTML tags for easier ad placement between paragraphs"
|
4974 |
msgstr ""
|
4975 |
|
4976 |
#. translators: %s HTML tags
|
4977 |
+
#: settings.php:5209
|
4978 |
msgid "%s Clipboard support %s to easily copy blocks or settings"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
#. translators: %s HTML tags
|
4982 |
+
#: settings.php:5210
|
4983 |
msgid "No ads on the settings page"
|
4984 |
msgstr ""
|
4985 |
|
4986 |
#. translators: %s HTML tags
|
4987 |
+
#: settings.php:5211
|
4988 |
msgid "Premium support"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
#. translators: %s HTML tags
|
4992 |
+
#: settings.php:5214
|
4993 |
msgid ""
|
4994 |
"Ad Inserter Pro is a complete all-in-one ad management plugin for WordPress "
|
4995 |
"website with many advertising features to automatically insert adverts on "
|
5004 |
msgstr ""
|
5005 |
|
5006 |
#. translators: %s HTML tags
|
5007 |
+
#: settings.php:5227
|
5008 |
msgid "Looking for %s Pro Ad Management plugin? %s"
|
5009 |
msgstr ""
|
5010 |
|
5011 |
#. translators: %s HTML tags
|
5012 |
+
#: settings.php:5232
|
5013 |
msgid "Ads between posts"
|
5014 |
msgstr ""
|
5015 |
|
5016 |
#. translators: %s HTML tags
|
5017 |
+
#: settings.php:5233
|
5018 |
msgid "Ads between comments"
|
5019 |
msgstr ""
|
5020 |
|
5021 |
#. translators: %s HTML tags
|
5022 |
+
#: settings.php:5234
|
5023 |
msgid "Support via email"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
#. translators: %s HTML tags
|
5027 |
+
#: settings.php:5240
|
5028 |
msgid "%s Sticky positions %s"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
#. translators: %s HTML tags
|
5032 |
+
#: settings.php:5241
|
5033 |
msgid "%s Limit insertions %s"
|
5034 |
msgstr ""
|
5035 |
|
5036 |
#. translators: %s HTML tags
|
5037 |
+
#: settings.php:5242
|
5038 |
msgid "%s Clearance %s options"
|
5039 |
msgstr ""
|
5040 |
|
5041 |
#. translators: %s HTML tags
|
5042 |
+
#: settings.php:5248
|
5043 |
msgid "Ad rotation"
|
5044 |
msgstr ""
|
5045 |
|
5046 |
#. translators: %s HTML tags
|
5047 |
+
#: settings.php:5249
|
5048 |
msgid "%s A/B testing %s"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
#. translators: %s HTML tags
|
5052 |
+
#: settings.php:5250
|
5053 |
msgid "%s Ad tracking %s"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
#. translators: %s HTML tags
|
5057 |
+
#: settings.php:5256
|
5058 |
msgid "Support for %s AMP pages %s"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
#. translators: %s HTML tags
|
5062 |
+
#: settings.php:5257
|
5063 |
msgid "%s Ad blocking detection %s"
|
5064 |
msgstr ""
|
5065 |
|
5066 |
#. translators: %s HTML tags
|
5067 |
+
#: settings.php:5258
|
5068 |
msgid "%s Mobile device detection %s"
|
5069 |
msgstr ""
|
5070 |
|
5071 |
#. translators: %s HTML tags
|
5072 |
+
#: settings.php:5265
|
5073 |
msgid "64 code blocks"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
#. translators: %s HTML tags
|
5077 |
+
#: settings.php:5266
|
5078 |
msgid "%s GEO targeting %s"
|
5079 |
msgstr ""
|
5080 |
|
5081 |
#. translators: %s HTML tags
|
5082 |
+
#: settings.php:5267
|
5083 |
msgid "%s Scheduling %s"
|
5084 |
msgstr ""
|
5085 |
|
5858 |
msgstr ""
|
5859 |
|
5860 |
#: strings.php:258
|
5861 |
+
msgctxt "Element"
|
5862 |
msgid "Parent"
|
5863 |
msgstr ""
|
5864 |
|
5891 |
msgstr ""
|
5892 |
|
5893 |
#: strings.php:268
|
5894 |
+
msgctxt "Scheduling"
|
5895 |
+
msgid "FALLBACK"
|
5896 |
+
msgstr ""
|
5897 |
+
|
5898 |
+
#: strings.php:269
|
5899 |
msgid "Automatically placed by AdSense Auto ads code"
|
5900 |
msgstr ""
|
5901 |
|
readme.txt
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
=== Ad Inserter - Ad Manager & AdSense Ads ===
|
2 |
|
3 |
-
Contributors: spacetime
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
|
5 |
Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.3
|
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
|
@@ -330,6 +330,18 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
330 |
|
331 |
== Changelog ==
|
332 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
333 |
= 2.6.1 =
|
334 |
- Fix for errors on the settings page
|
335 |
- Fix for non English characters in ads
|
@@ -421,149 +433,24 @@ If you are not happy to reveal this information and you have opted in, simply di
|
|
421 |
- Fix for shortcode processing when blocks were used before init hook
|
422 |
- Many minor bug fixes, cosmetic changes and code improvements
|
423 |
|
424 |
-
= 2.4.23 =
|
425 |
-
- Added support to define custom fields with shortocdes
|
426 |
-
- Added support to delay showing ads for specified number of pageviews (Pro only)
|
427 |
-
- Added support to remember closed ad for specified time period (Pro only)
|
428 |
-
- Added support to automatically close ad after specified time period (Pro only)
|
429 |
-
- Fix for false positive ad blocking detection (Pro only)
|
430 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
431 |
-
|
432 |
-
= 2.4.22 =
|
433 |
-
- Fix for remote code execution vulnerability - credit to Wordfence
|
434 |
-
|
435 |
-
= 2.4.21 =
|
436 |
-
- Fix for possible error Class not found (Pro only)
|
437 |
-
|
438 |
-
= 2.4.20 =
|
439 |
-
- Fix for path traversal vulnerability - credit to Wilfried Becard of Synacktiv (https://synacktiv.com)
|
440 |
-
- Fix for block rearrangement issues
|
441 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
442 |
-
|
443 |
-
= 2.4.19 =
|
444 |
-
- Added support for taxonomy for Yoast primary category
|
445 |
-
- Layout changes to accomodate longer translated texts
|
446 |
-
- Fix for escape character not saved in header, footer and ad blocking message code
|
447 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
448 |
-
|
449 |
-
= 2.4.18 =
|
450 |
-
- Added support for full width responsive AdSense code option
|
451 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
452 |
-
|
453 |
-
= 2.4.17 =
|
454 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
455 |
-
|
456 |
-
= 2.4.16 =
|
457 |
-
- Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress
|
458 |
-
- Few minor bug fixes
|
459 |
-
|
460 |
-
= 2.4.15 =
|
461 |
-
- Fix for improved compatibility with other plugins
|
462 |
-
- Few minor bug fixes and cosmetic changes
|
463 |
-
|
464 |
-
= 2.4.14 =
|
465 |
-
- Fix for ROTATE shortcodes with option name identical to block name
|
466 |
-
- Fix for possible conflict with output buffering in other plugins
|
467 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
468 |
-
|
469 |
-
= 2.4.13 =
|
470 |
-
- Added shortcode to disable ad blocking detection code
|
471 |
-
- Added options to disable ad blocking actions for administrators or logged in users
|
472 |
-
- Added option to change PDF report footer (Pro only)
|
473 |
-
- Added support for public ad impression and click reports (Pro only)
|
474 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
475 |
-
|
476 |
-
= 2.4.12 =
|
477 |
-
- Added ads.txt editor
|
478 |
-
- Added option to prevent disabling caching for logged in administrators
|
479 |
-
- Improved compatibility with PHP 7.2
|
480 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
481 |
-
|
482 |
-
= 2.4.11 =
|
483 |
-
- Fix for saving code with slashes
|
484 |
-
- Fix for rotation editor code import
|
485 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
486 |
-
|
487 |
-
= 2.4.10 =
|
488 |
-
- Added support for counter shortcodes
|
489 |
-
- Added support for code separator selection for code preview
|
490 |
-
- Added support for group rotations
|
491 |
-
- Added support for CHECK separator (Pro only)
|
492 |
-
- Added links to test pages for check for available positions
|
493 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
494 |
-
|
495 |
-
= 2.4.9 =
|
496 |
-
- Added support for HEAD separator
|
497 |
-
- Added support for DoubleClick for Publishers (DFP) ads
|
498 |
-
- Added support to generate statistics reports in PDF format (Pro only)
|
499 |
-
- Fix for ad label when using AMP separator
|
500 |
-
- Fix for AdSense code fixed by viewport
|
501 |
-
- Fix for error when checking for available positions
|
502 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
503 |
-
|
504 |
-
= 2.4.8 =
|
505 |
-
- Added support for automatic insertion before/after image
|
506 |
-
- Added support for theme checker for available positions for automatic insertion
|
507 |
-
|
508 |
-
= 2.4.7 =
|
509 |
-
- Fix for lazy loading in Ajax calls (Pro only)
|
510 |
-
- Fix for country list editor (Pro only)
|
511 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
512 |
-
|
513 |
-
= 2.4.6 =
|
514 |
-
- Improved ad blocking detection (detects Firefox content blocking)
|
515 |
-
- Added support for wildcards for referrers (domains)
|
516 |
-
- Added debugging notice when JavaScript errors are detected
|
517 |
-
- Added support to load blocks in iframes (Pro only)
|
518 |
-
- Added geolocation support for country subdivisions and cities (Pro only)
|
519 |
-
- Added option to hide license key on client websites (Pro only)
|
520 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
521 |
-
|
522 |
-
= 2.4.5 =
|
523 |
-
- Added support for AMP WP - Google AMP For WordPress
|
524 |
-
- Added support to individually disable insertions for debugging purposes
|
525 |
-
- Improved HTML element selection tool
|
526 |
-
- Fix for Call to undefined function wp_get_current_user()
|
527 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
528 |
-
|
529 |
-
= 2.4.4 =
|
530 |
-
- Fix for Fatal error: Call to undefined function mb_strtoupper()
|
531 |
-
|
532 |
-
= 2.4.3 =
|
533 |
-
- Added support for insertion before/after every N paragraphs (%N)
|
534 |
-
- Added support for i18n
|
535 |
-
- Fix for insertion on admin pages
|
536 |
-
- Fix for client-side cookie check
|
537 |
-
- Fix for loaded styles from other plugins/themes on the settings page
|
538 |
-
- Fix for client-side insertion near HTML elements using :eq selector
|
539 |
-
- Fix for deactivation feedback form not closing
|
540 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
541 |
-
|
542 |
-
= 2.4.2 =
|
543 |
-
- Added support for visual HTML element selection
|
544 |
-
- Fix for client-side insertion inside HTML elements
|
545 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
546 |
-
|
547 |
-
= 2.4.1 =
|
548 |
-
- Added option to insert into HTML element (prepend, append, replace content)
|
549 |
-
- Added option to remove HTML element
|
550 |
-
- Added option to not show deactivation feedback form
|
551 |
-
- Added support for negative relative positions for paragraph counting
|
552 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
553 |
-
|
554 |
-
= 2.4.0 =
|
555 |
-
- Improved code for client-side insertion
|
556 |
-
- Added support for usage tracking
|
557 |
-
- Fix for compatibility with older PHP versions (below 5.4)
|
558 |
-
- Few minor bug fixes, cosmetic changes and code improvements
|
559 |
-
|
560 |
-
|
561 |
= Earlier versions =
|
562 |
|
563 |
For the changelog of earlier versions, please refer to the separate changelog.txt file.
|
564 |
|
565 |
== Upgrade Notice ==
|
566 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
567 |
= 2.6.1 =
|
568 |
Fix for errors on the settings page;
|
569 |
Fix for non English characters in ads;
|
@@ -655,139 +542,3 @@ Changed url prefix for public reports to avoid possible url collisions (Pro only
|
|
655 |
Fix for shortcode processing when blocks were used before init hook;
|
656 |
Many minor bug fixes, cosmetic changes and code improvements
|
657 |
|
658 |
-
= 2.4.23 =
|
659 |
-
Added support to define custom fields with shortocdes;
|
660 |
-
Added support to delay showing ads for specified number of pageviews (Pro only);
|
661 |
-
Added support to remember closed ad for specified time period (Pro only);
|
662 |
-
Added support to automatically close ad after specified time period (Pro only);
|
663 |
-
Fix for false positive ad blocking detection (Pro only);
|
664 |
-
Few minor bug fixes, cosmetic changes and code improvements;
|
665 |
-
|
666 |
-
= 2.4.22 =
|
667 |
-
Fix for remote code execution vulnerability
|
668 |
-
|
669 |
-
= 2.4.21 =
|
670 |
-
Fix for possible error Class not found (Pro only)
|
671 |
-
|
672 |
-
= 2.4.20 =
|
673 |
-
Fix for path traversal vulnerability;
|
674 |
-
Fix for block rearrangement issues;
|
675 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
676 |
-
|
677 |
-
= 2.4.19 =
|
678 |
-
Added support for taxonomy for Yoast primary category;
|
679 |
-
Layout changes to accomodate longer translated texts;
|
680 |
-
Fix for escape character not saved in header, footer and ad blocking message code;
|
681 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
682 |
-
|
683 |
-
= 2.4.18 =
|
684 |
-
Added support for full width responsive AdSense code option;
|
685 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
686 |
-
|
687 |
-
= 2.4.17 =
|
688 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
689 |
-
|
690 |
-
= 2.4.16 =
|
691 |
-
Fix for compatibility with AMP for WP - Accelerated Mobile Pages for WordPress;
|
692 |
-
Few minor bug fixes
|
693 |
-
|
694 |
-
= 2.4.15 =
|
695 |
-
Fix for improved compatibility with other plugins;
|
696 |
-
Few minor bug fixes and cosmetic changes
|
697 |
-
|
698 |
-
= 2.4.14 =
|
699 |
-
Fix for ROTATE shortcodes with option name identical to block name;
|
700 |
-
Fix for possible conflict with output buffering in other plugins;
|
701 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
702 |
-
|
703 |
-
= 2.4.13 =
|
704 |
-
Added shortcode to disable ad blocking detection code;
|
705 |
-
Added options to disable ad blocking actions for administrators or logged in users;
|
706 |
-
Added option to change PDF report footer (Pro only);
|
707 |
-
Added support for public ad impression and click reports (Pro only);
|
708 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
709 |
-
|
710 |
-
= 2.4.12 =
|
711 |
-
Added ads.txt editor;
|
712 |
-
Added Added option to prevent disabling caching for logged in administrators;
|
713 |
-
Improved compatibility with PHP 7.2;
|
714 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
715 |
-
|
716 |
-
= 2.4.11 =
|
717 |
-
Fix for saving code with slashes;
|
718 |
-
Fix for rotation editor code import;
|
719 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
720 |
-
|
721 |
-
= 2.4.10 =
|
722 |
-
Added support for counter shortcodes;
|
723 |
-
Added support for code separator selection for code preview;
|
724 |
-
Added support for group rotations;
|
725 |
-
Added support for CHECK separator (Pro only);
|
726 |
-
Added links to test pages for check for available positions;
|
727 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
728 |
-
|
729 |
-
= 2.4.9 =
|
730 |
-
Added support for HEAD separator;
|
731 |
-
Added support for DoubleClick for Publishers (DFP) ads;
|
732 |
-
Added support to generate statistics reports in PDF format (Pro only);
|
733 |
-
Fix for ad label when using AMP separator;
|
734 |
-
Fix for AdSense code fixed by viewport;
|
735 |
-
Fix for error when checking for available positions;
|
736 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
737 |
-
|
738 |
-
= 2.4.8 =
|
739 |
-
Added support for automatic insertion before/after image;
|
740 |
-
Added support for theme checker for available positions for automatic insertion
|
741 |
-
|
742 |
-
= 2.4.7 =
|
743 |
-
Fix for lazy loading in Ajax calls (Pro only);
|
744 |
-
Fix for country list editor (Pro only);
|
745 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
746 |
-
|
747 |
-
= 2.4.6 =
|
748 |
-
Improved ad blocking detection (detects Firefox content blocking);
|
749 |
-
Added support for wildcards for referrers (domains);
|
750 |
-
- Added debugging notice when JavaScript errors are detected
|
751 |
-
Added support to load blocks in iframes (Pro only);
|
752 |
-
Added geolocation support for country subdivisions and cities (Pro only);
|
753 |
-
Added option to hide license key on client websites (Pro only);
|
754 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
755 |
-
|
756 |
-
= 2.4.5 =
|
757 |
-
Added support for AMP WP - Google AMP For WordPress;
|
758 |
-
Added support to individually disable insertions for debugging purposes;
|
759 |
-
Improved HTML element selection tool;
|
760 |
-
Fix for Call to undefined function wp_get_current_user();
|
761 |
-
Few minor bug fixes, cosmetic changes and code improvements;
|
762 |
-
|
763 |
-
= 2.4.4 =
|
764 |
-
Fix for Fatal error: Call to undefined function mb_strtoupper()
|
765 |
-
|
766 |
-
= 2.4.3 =
|
767 |
-
Added support for insertion before/after every N paragraphs (%N);
|
768 |
-
Added support for i18n;
|
769 |
-
Fix for insertion on admin pages;
|
770 |
-
Fix for client-side cookie check;
|
771 |
-
Fix for loaded styles from other plugins/themes on the settings page;
|
772 |
-
Fix for client-side insertion near HTML elements using :eq selector;
|
773 |
-
Fix for deactivation feedback form not closing;
|
774 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
775 |
-
|
776 |
-
= 2.4.2 =
|
777 |
-
Added support for visual HTML element selection;
|
778 |
-
Fix for client-side insertion inside HTML elements;
|
779 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
780 |
-
|
781 |
-
= 2.4.1 =
|
782 |
-
Added option to insert into HTML element (prepend, append, replace content);
|
783 |
-
Added option to remove HTML element;
|
784 |
-
Added option to not show deactivation feedback form;
|
785 |
-
Added support for negative relative positions for paragraph counting;
|
786 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
787 |
-
|
788 |
-
= 2.4.0 =
|
789 |
-
Improved code for client-side insertion;
|
790 |
-
Added support for usage tracking;
|
791 |
-
Fix for compatibility with older PHP versions (below 5.4);
|
792 |
-
Few minor bug fixes, cosmetic changes and code improvements
|
793 |
-
|
1 |
=== Ad Inserter - Ad Manager & AdSense Ads ===
|
2 |
|
3 |
+
Contributors: adinserter, spacetime
|
4 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=LHGZEMRTR7WB4
|
5 |
Tags: ads, adsense, ad rotation, ad manager, amp, amazon, ad blocking detection, header code, banners, adverts, sticky fixed widgets, dfp
|
6 |
Requires at least: 4.6
|
7 |
Tested up to: 5.3
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 2.6.2
|
10 |
License: GPLv3
|
11 |
|
12 |
Manage Google AdSense, Media.net, Amazon banners, ads.txt, ad rotation, sticky widgets, AMP ads, DFP, tracking, AdSense header and footer code
|
330 |
|
331 |
== Changelog ==
|
332 |
|
333 |
+
= 2.6.2 =
|
334 |
+
- Added support to disable caching of block PHP code
|
335 |
+
- Added support to pause blocks on the blocks list
|
336 |
+
- Added support for no url parameters list item
|
337 |
+
- Added support for client-side scheduling (Pro only)
|
338 |
+
- Added support for server-side scheduling using W3TC (Pro only)
|
339 |
+
- Added support for multisite:site-id taxonomy list item (Pro only)
|
340 |
+
- Updated MaxMind GeoLite2 database download using license key (Pro only)
|
341 |
+
- Changed settings format in the database to prevent export/import issues with MySQL/PhpMyAdmin
|
342 |
+
- Fix for [ADINSERTER counter] shortcode not expanding inside HTML tags
|
343 |
+
- Few minor bug fixes, cosmetic changes and code improvements
|
344 |
+
|
345 |
= 2.6.1 =
|
346 |
- Fix for errors on the settings page
|
347 |
- Fix for non English characters in ads
|
433 |
- Fix for shortcode processing when blocks were used before init hook
|
434 |
- Many minor bug fixes, cosmetic changes and code improvements
|
435 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
436 |
= Earlier versions =
|
437 |
|
438 |
For the changelog of earlier versions, please refer to the separate changelog.txt file.
|
439 |
|
440 |
== Upgrade Notice ==
|
441 |
|
442 |
+
= 2.6.2 =
|
443 |
+
Added support to disable caching of block PHP code;
|
444 |
+
Added support to pause blocks on the blocks list;
|
445 |
+
Added support for no url parameters list item;
|
446 |
+
Added support for client-side scheduling (Pro only);
|
447 |
+
Added support for server-side scheduling using W3TC (Pro only);
|
448 |
+
Added support for multisite:site-id taxonomy list item (Pro only);
|
449 |
+
Updated MaxMind GeoLite2 database download using license key (Pro only);
|
450 |
+
Changed settings format in the database to prevent export/import issues with MySQL/PhpMyAdmin;
|
451 |
+
Fix for [ADINSERTER counter] shortcode not expanding inside HTML tags;
|
452 |
+
Few minor bug fixes, cosmetic changes and code improvements
|
453 |
+
|
454 |
= 2.6.1 =
|
455 |
Fix for errors on the settings page;
|
456 |
Fix for non English characters in ads;
|
542 |
Fix for shortcode processing when blocks were used before init hook;
|
543 |
Many minor bug fixes, cosmetic changes and code improvements
|
544 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
settings.php
CHANGED
@@ -166,7 +166,14 @@ function generate_settings_form (){
|
|
166 |
|
167 |
$default_sidebar = isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL]) && $ai_wp_data [AI_DAYS_SINCE_INSTAL] > 19 && count ($used_blocks) >= 4 && function_exists ('ai_settings_side') && function_exists ('ai_admin_settings_notices') ? '1' : '0';
|
168 |
|
169 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
170 |
$warning = false;
|
171 |
if (!empty ($saved_options))
|
172 |
foreach ($saved_options as $block => $block_settings) {
|
@@ -3924,6 +3931,46 @@ function ads_txt ($action) {
|
|
3924 |
}
|
3925 |
}
|
3926 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3927 |
|
3928 |
function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
3929 |
global $block_object, $wpdb, $ai_db_options_extract;
|
@@ -3932,13 +3979,17 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
3932 |
$url_safe_mode = '&ai-safe-mode';
|
3933 |
} else $url_safe_mode = '';
|
3934 |
|
|
|
|
|
|
|
|
|
3935 |
if (isset ($_GET ["blocks-org"]) && isset ($_GET ["blocks-new"])) {
|
3936 |
$blocks_org = json_decode ($_GET ["blocks-org"]);
|
3937 |
$blocks_new = json_decode ($_GET ["blocks-new"]);
|
3938 |
|
3939 |
if (!empty ($blocks_org) && count ($blocks_org) == count ($blocks_new)) {
|
3940 |
// Update widgets
|
3941 |
-
$current_options =
|
3942 |
$new_options = $current_options;
|
3943 |
|
3944 |
$error = false;
|
@@ -3978,7 +4029,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
3978 |
}
|
3979 |
}
|
3980 |
|
3981 |
-
|
3982 |
ai_load_settings ();
|
3983 |
|
3984 |
$new_options [AI_OPTION_EXTRACT] = ai_generate_extract ($new_options);
|
@@ -3989,7 +4040,7 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
3989 |
|
3990 |
$new_options [AI_OPTION_GLOBAL]['TIMESTAMP'] = time ();
|
3991 |
|
3992 |
-
|
3993 |
update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
|
3994 |
ai_load_settings ();
|
3995 |
|
@@ -4139,11 +4190,16 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
4139 |
<tr style="background: <?php echo $row_color; ?>" data-block="<?php echo $block; ?>">
|
4140 |
<td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
|
4141 |
<span class="ai-list-button">
|
4142 |
-
<label class="checkbox-button ai-
|
4143 |
</span>
|
4144 |
<span class="ai-list-button">
|
4145 |
-
<label class="checkbox-button ai-
|
|
|
|
|
|
|
|
|
4146 |
</span>
|
|
|
4147 |
<span class="ai-list-button" style="text-align: right; width: 16px;"><?php echo $block; ?></span>
|
4148 |
</td>
|
4149 |
<?php if ($visible_tab): ?>
|
@@ -4151,12 +4207,11 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
4151 |
<?php else: ?>
|
4152 |
<td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 280px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
|
4153 |
<?php endif ?>
|
4154 |
-
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #f00;" title="<?php _e ('Insertion disabled', 'ad-inserter'); ?>"><?php echo $disabled ? '❚❚' : ''; ?></td>
|
4155 |
<td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
|
4156 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4157 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4158 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4159 |
-
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #
|
4160 |
<?php
|
4161 |
if (function_exists ('get_global_tracking')) {
|
4162 |
?>
|
@@ -4180,12 +4235,12 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
4180 |
<tr>
|
4181 |
<th style="text-align: left;"><?php _e ('Block', 'ad-inserter'); ?></th>
|
4182 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Name', 'ad-inserter'); ?></th>
|
4183 |
-
<th style="text-align: left; padding-left: 10px;"></th
|
4184 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Automatic insertion', 'ad-inserter'); ?></th>
|
4185 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('PHP code processing', 'ad-inserter'); ?>"><span class="checkbox-icon size-img16 icon-php"></span></th>
|
4186 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Exceptions', 'ad-inserter'); ?>"><span class="dashicons dashicons-forms" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4187 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Device detection', 'ad-inserter'); ?>"><span class="dashicons dashicons-desktop" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4188 |
-
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Scheduling', 'ad-inserter'); ?>"
|
4189 |
<?php
|
4190 |
if (function_exists ('get_global_tracking')) {
|
4191 |
?>
|
@@ -4207,8 +4262,8 @@ function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
|
4207 |
<?php
|
4208 |
if ($row_counter == 0) {
|
4209 |
if ($search_text == '')
|
4210 |
-
echo "<div style='margin: 10px 0 0 20px;'
|
4211 |
-
echo "<div style='margin: 10px 0 0 20px;'
|
4212 |
}
|
4213 |
}
|
4214 |
|
166 |
|
167 |
$default_sidebar = isset ($ai_wp_data [AI_DAYS_SINCE_INSTAL]) && $ai_wp_data [AI_DAYS_SINCE_INSTAL] > 19 && count ($used_blocks) >= 4 && function_exists ('ai_settings_side') && function_exists ('ai_admin_settings_notices') ? '1' : '0';
|
168 |
|
169 |
+
if (is_multisite () && multisite_main_for_all_blogs () && defined ('BLOG_ID_CURRENT_SITE')) {
|
170 |
+
$saved_options = get_blog_option (BLOG_ID_CURRENT_SITE, AI_OPTION_NAME);
|
171 |
+
|
172 |
+
if (is_string ($saved_options) && substr ($saved_options, 0, 4) === ':AI:') {
|
173 |
+
$saved_options = unserialize (base64_decode (substr ($saved_options, 4), true));
|
174 |
+
}
|
175 |
+
|
176 |
+
} else $saved_options = ai_get_option (AI_OPTION_NAME);
|
177 |
$warning = false;
|
178 |
if (!empty ($saved_options))
|
179 |
foreach ($saved_options as $block => $block_settings) {
|
3931 |
}
|
3932 |
}
|
3933 |
|
3934 |
+
function ai_change_settings () {
|
3935 |
+
global $block_object, $ai_db_options_extract;
|
3936 |
+
|
3937 |
+
$command = isset ($_GET ["cmd"]) ? $_GET ["cmd"] : null;
|
3938 |
+
$block = isset ($_GET ["cmd-block"]) ? $_GET ["cmd-block"] : null;
|
3939 |
+
$data = isset ($_GET ["cmd-data"]) ? $_GET ["cmd-data"] : null;
|
3940 |
+
|
3941 |
+
if ($block === null || $block < 1 || $block > 96 || $command === null) {
|
3942 |
+
return;
|
3943 |
+
}
|
3944 |
+
|
3945 |
+
$ai_options = ai_get_option (AI_OPTION_NAME);
|
3946 |
+
$update_settings = false;
|
3947 |
+
|
3948 |
+
switch ($command) {
|
3949 |
+
case 'pause':
|
3950 |
+
$value = $block_object [$block]->get_disable_insertion () == AI_DISABLED ? AI_ENABLED : AI_DISABLED;
|
3951 |
+
$ai_options [$block][AI_OPTION_DISABLE_INSERTION] = $value;
|
3952 |
+
|
3953 |
+
$update_settings = true;
|
3954 |
+
break;
|
3955 |
+
}
|
3956 |
+
|
3957 |
+
if ($update_settings) {
|
3958 |
+
ai_update_option (AI_OPTION_NAME, $ai_options);
|
3959 |
+
ai_load_settings ();
|
3960 |
+
|
3961 |
+
$ai_options [AI_OPTION_EXTRACT] = ai_generate_extract ($ai_options);
|
3962 |
+
$ai_db_options_extract = $ai_options [AI_OPTION_EXTRACT];
|
3963 |
+
|
3964 |
+
$ai_options [AI_OPTION_GLOBAL]['VIEWPORT_CSS'] = generate_viewport_css ();
|
3965 |
+
$ai_options [AI_OPTION_GLOBAL]['ALIGNMENT_CSS'] = generate_alignment_css ();
|
3966 |
+
|
3967 |
+
$ai_options [AI_OPTION_GLOBAL]['TIMESTAMP'] = time ();
|
3968 |
+
|
3969 |
+
ai_update_option (AI_OPTION_NAME, $ai_options);
|
3970 |
+
update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
|
3971 |
+
ai_load_settings ();
|
3972 |
+
}
|
3973 |
+
}
|
3974 |
|
3975 |
function code_block_list ($start, $end, $search_text, $show_all_blocks) {
|
3976 |
global $block_object, $wpdb, $ai_db_options_extract;
|
3979 |
$url_safe_mode = '&ai-safe-mode';
|
3980 |
} else $url_safe_mode = '';
|
3981 |
|
3982 |
+
if (isset ($_GET ["cmd"])) {
|
3983 |
+
ai_change_settings ();
|
3984 |
+
}
|
3985 |
+
|
3986 |
if (isset ($_GET ["blocks-org"]) && isset ($_GET ["blocks-new"])) {
|
3987 |
$blocks_org = json_decode ($_GET ["blocks-org"]);
|
3988 |
$blocks_new = json_decode ($_GET ["blocks-new"]);
|
3989 |
|
3990 |
if (!empty ($blocks_org) && count ($blocks_org) == count ($blocks_new)) {
|
3991 |
// Update widgets
|
3992 |
+
$current_options = ai_get_option (AI_OPTION_NAME);
|
3993 |
$new_options = $current_options;
|
3994 |
|
3995 |
$error = false;
|
4029 |
}
|
4030 |
}
|
4031 |
|
4032 |
+
ai_update_option (AI_OPTION_NAME, $new_options);
|
4033 |
ai_load_settings ();
|
4034 |
|
4035 |
$new_options [AI_OPTION_EXTRACT] = ai_generate_extract ($new_options);
|
4040 |
|
4041 |
$new_options [AI_OPTION_GLOBAL]['TIMESTAMP'] = time ();
|
4042 |
|
4043 |
+
ai_update_option (AI_OPTION_NAME, $new_options);
|
4044 |
update_option (AI_EXTRACT_NAME, $ai_db_options_extract);
|
4045 |
ai_load_settings ();
|
4046 |
|
4190 |
<tr style="background: <?php echo $row_color; ?>" data-block="<?php echo $block; ?>">
|
4191 |
<td style="min-width: 55px; color: <?php echo $block_used ? '#444' : '#ccc'; ?>;">
|
4192 |
<span class="ai-list-button">
|
4193 |
+
<label class="checkbox-button ai-preview-block" style="margin-top: -1px;" title="<?php _e ('Preview block', 'ad-inserter'); ?>"><span class="checkbox-icon size-8 icon-preview"></span></label>
|
4194 |
</span>
|
4195 |
<span class="ai-list-button">
|
4196 |
+
<label class="checkbox-button ai-copy-block" style="margin-top: -1px;" title="<?php _e ('Copy block', 'ad-inserter'); ?>"><span class="checkbox-icon size-8 icon-text">▉</span></label>
|
4197 |
+
</span>
|
4198 |
+
|
4199 |
+
<span class="ai-list-button">
|
4200 |
+
<label class="checkbox-button ai-pause-block<?php echo $disabled ? ' ai-paused' : ''; ?>" style="margin-top: -1px;" title="<?php _e ('Pause block', 'ad-inserter'); ?>"><span class="checkbox-icon size-8 icon-text" style="<?php echo $disabled ? 'color: #d00;' : ''; ?>">❚❚</span></label>
|
4201 |
</span>
|
4202 |
+
|
4203 |
<span class="ai-list-button" style="text-align: right; width: 16px;"><?php echo $block; ?></span>
|
4204 |
</td>
|
4205 |
<?php if ($visible_tab): ?>
|
4207 |
<?php else: ?>
|
4208 |
<td style="min-width: 120px; text-align: left; padding-left: 5px; max-width: 280px; white-space: nowrap; overflow: hidden;"><a href="<?php echo $edit_url; ?>" style="text-decoration: none; box-shadow: 0 0 0;"><?php echo $obj->get_ad_name(); ?></a></td>
|
4209 |
<?php endif ?>
|
|
|
4210 |
<td style="min-width: 80px; text-align: left; padding-left: 5px; max-width: 130px; white-space: nowrap; overflow: hidden; color: <?php echo $automatic_insertion ? '#666' : '#ccc'; ?>" title="<?php echo $insertion_title; ?>"><?php echo $obj->get_automatic_insertion_text(), $insertion_parameter; ?></td>
|
4211 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top;"><span class="<?php echo $process_php ? 'checkbox-icon size-img16 icon-php on' : ''; ?>" style="margin-top: 1px;"></span></td>
|
4212 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #66f;"><span class="<?php echo $exceptions ? 'dashicons dashicons-forms' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4213 |
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #0df;"><span class="<?php echo $devices ? 'dashicons dashicons-desktop' : ''; ?>" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px;"></span></td>
|
4214 |
+
<td style="min-width: 15px; text-align: center; padding-left: 5px; vertical-align: top; color: #00f;"><?php echo $scheduling ? '⏰' : ''; ?></td>
|
4215 |
<?php
|
4216 |
if (function_exists ('get_global_tracking')) {
|
4217 |
?>
|
4235 |
<tr>
|
4236 |
<th style="text-align: left;"><?php _e ('Block', 'ad-inserter'); ?></th>
|
4237 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Name', 'ad-inserter'); ?></th>
|
4238 |
+
<!-- <th style="text-align: left; padding-left: 10px;"></th>-->
|
4239 |
<th style="text-align: left; padding-left: 5px;"><?php _e ('Automatic insertion', 'ad-inserter'); ?></th>
|
4240 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('PHP code processing', 'ad-inserter'); ?>"><span class="checkbox-icon size-img16 icon-php"></span></th>
|
4241 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Exceptions', 'ad-inserter'); ?>"><span class="dashicons dashicons-forms" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4242 |
<th style="text-align: center; padding-left: 5px;" title="<?php _e ('Device detection', 'ad-inserter'); ?>"><span class="dashicons dashicons-desktop" style="font-size: 16px; width: 16px; height: 16px; margin-top: 1px; color: #999;"></span></th>
|
4243 |
+
<th style="text-align: center; padding-left: 5px; color: #aaa;" title="<?php _e ('Scheduling', 'ad-inserter'); ?>">⏰</th>
|
4244 |
<?php
|
4245 |
if (function_exists ('get_global_tracking')) {
|
4246 |
?>
|
4262 |
<?php
|
4263 |
if ($row_counter == 0) {
|
4264 |
if ($search_text == '')
|
4265 |
+
echo "<div style='margin: 10px 0 0 20px;'>", __ ('No active block', 'ad-inserter'), "</div>"; else
|
4266 |
+
echo "<div style='margin: 10px 0 0 20px;'>", __ ('No block matches search keywords', 'ad-inserter'), "</div>";
|
4267 |
}
|
4268 |
}
|
4269 |
|
strings.php
CHANGED
@@ -255,7 +255,7 @@ $ai_front_translations = array (
|
|
255 |
'cancel' => __('Cancel', 'ad-inserter'),
|
256 |
'use' => __('Use', 'ad-inserter'),
|
257 |
'add' => __('Add', 'ad-inserter'),
|
258 |
-
'parent' =>
|
259 |
'cancel_element_selection' => __('Cancel element selection', 'ad-inserter'),
|
260 |
'select_parent_element' => __('Select parent element', 'ad-inserter'),
|
261 |
'css_selector' => __('CSS selector', 'ad-inserter'),
|
@@ -265,5 +265,6 @@ $ai_front_translations = array (
|
|
265 |
'selector' => __('SELECTOR', 'ad-inserter'),
|
266 |
'visible' => _x('VISIBLE', 'Block', 'ad-inserter'),
|
267 |
'hidden' => _x('HIDDEN', 'Block', 'ad-inserter'),
|
|
|
268 |
'automatically_placed' => __('Automatically placed by AdSense Auto ads code', 'ad-inserter')
|
269 |
);
|
255 |
'cancel' => __('Cancel', 'ad-inserter'),
|
256 |
'use' => __('Use', 'ad-inserter'),
|
257 |
'add' => __('Add', 'ad-inserter'),
|
258 |
+
'parent' => _x('Parent', 'Element', 'ad-inserter'),
|
259 |
'cancel_element_selection' => __('Cancel element selection', 'ad-inserter'),
|
260 |
'select_parent_element' => __('Select parent element', 'ad-inserter'),
|
261 |
'css_selector' => __('CSS selector', 'ad-inserter'),
|
265 |
'selector' => __('SELECTOR', 'ad-inserter'),
|
266 |
'visible' => _x('VISIBLE', 'Block', 'ad-inserter'),
|
267 |
'hidden' => _x('HIDDEN', 'Block', 'ad-inserter'),
|
268 |
+
'fallback' => _x('FALLBACK', 'Scheduling', 'ad-inserter'),
|
269 |
'automatically_placed' => __('Automatically placed by AdSense Auto ads code', 'ad-inserter')
|
270 |
);
|